pax_global_header00006660000000000000000000000064143427226100014513gustar00rootroot0000000000000052 comment=45969ca9131d4c4200be89b1b71b9ec5d897264a amiri-1.000/000077500000000000000000000000001434272261000126145ustar00rootroot00000000000000amiri-1.000/.github/000077500000000000000000000000001434272261000141545ustar00rootroot00000000000000amiri-1.000/.github/FUNDING.yml000066400000000000000000000013041434272261000157670ustar00rootroot00000000000000# These are supported funding model platforms github: khaledhosny patreon: khaledhosny open_collective: # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] amiri-1.000/.github/workflows/000077500000000000000000000000001434272261000162115ustar00rootroot00000000000000amiri-1.000/.github/workflows/build.yml000066400000000000000000000034451434272261000200410ustar00rootroot00000000000000# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - name: Fetch uses: actions/checkout@v2 - name: Unshallow run: git fetch --prune --unshallow --tags --force - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: | sudo apt-get install -y pandoc python -m pip install --upgrade pip python -m pip install -r requirements.txt - name: Build run: | make -j -B dist - name: Upload artifacts if: github.ref_type == 'tag' uses: actions/upload-artifact@v2 with: name: dist path: Amiri-*.zip if-no-files-found: error deploy: if: github.ref_type == 'tag' needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Download artifacts uses: actions/download-artifact@v2 with: path: dist - name: Extract release notes from annotated tag message run: | # GH checkout action doesn't preserve tag annotations, we must fetch them # https://github.com/actions/checkout/issues/290 git fetch --tags --force echo "$(git tag -l --format='%(contents:body)' ${{ github.ref_name }})" > "${{ runner.temp }}/release_body.md" echo "release_name=$(git tag -l --format='%(contents:subject)' ${{ github.ref_name }})" >> $GITHUB_ENV - name: Publish uses: softprops/action-gh-release@v1 with: name: ${{ env.release_name }} body_path: ${{ runner.temp }}/release_body.md fail_on_unmatched_files: true files: | dist/*/* amiri-1.000/.gitignore000066400000000000000000000000151434272261000146000ustar00rootroot00000000000000/venv /build amiri-1.000/AUTHORS.txt000066400000000000000000000005051434272261000145020ustar00rootroot00000000000000# This is the official list of project authors for copyright purposes. # This file is distinct from the CONTRIBUTORS.txt file. # See the latter for an explanation. # # Names should be added to this file as: # Name or Organization Khaled Hosny Sebastian Kosch amiri-1.000/Makefile000066400000000000000000000060761434272261000142650ustar00rootroot00000000000000.PHONY: all clean ttf web pack check NAME=Amiri LATIN=AmiriLatin TAG=$(shell git describe --tags --abbrev=0) VERSION=$(TAG:v%=%) SRC=sources BUILDDIR=build SCRIPTSDIR=scripts FONTSDIR=fonts DOC=documentation FONTS=$(NAME)-Regular $(NAME)-Bold $(NAME)-Italic $(NAME)-BoldItalic $(NAME)Quran $(NAME)QuranColored DIST=$(NAME)-$(VERSION) LICENSE=OFL.txt BUILD=${SCRIPTSDIR}/build.py MAKEQURAN=${SCRIPTSDIR}/mkquran.py PY ?= python TTF=$(FONTS:%=${FONTSDIR}/%.ttf) HTML=$(DOC)/Documentation-Arabic.html FEA=$(wildcard $(SRC)/*.fea) export SOURCE_DATE_EPOCH ?= 0 all: ttf ttf: $(TTF) doc: $(HTML) $(BUILDDIR)/$(NAME).designspace: $(SRC)/$(NAME).glyphs @echo " UFO $@" @glyphs2ufo --minimal --generate-GDEF --output-dir=$(BUILDDIR) $< $(BUILDDIR)/%.ufo: $(BUILDDIR)/$(NAME).designspace @echo " UFO $@" ${FONTSDIR}/$(NAME)QuranColored.ttf: $(BUILDDIR)/$(NAME)-Regular.ufo $(SRC)/$(LATIN)-Regular.ufo $(SRC)/$(NAME).fea $(FEA) $(LICENSE) $(BUILD) @echo " GEN $@" @$(PY) $(BUILD) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --license $(LICENSE) --quran ${FONTSDIR}/$(NAME)Quran.ttf: ${FONTSDIR}/$(NAME)QuranColored.ttf $(MAKEQURAN) @echo " GEN $@" @$(PY) $(MAKEQURAN) $< $@ ${FONTSDIR}/$(NAME)-Regular.ttf: $(BUILDDIR)/$(NAME)-Regular.ufo $(SRC)/$(LATIN)-Regular.ufo $(SRC)/$(NAME).fea $(FEA) $(LICENSE) $(BUILD) @echo " GEN $@" @$(PY) $(BUILD) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --license $(LICENSE) ${FONTSDIR}/$(NAME)-Italic.ttf: $(BUILDDIR)/$(NAME)-Regular.ufo $(SRC)/$(LATIN)-Italic.ufo $(SRC)/$(NAME).fea $(FEA) $(LICENSE) $(BUILD) @echo " GEN $@" @$(PY) $(BUILD) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --license $(LICENSE) --slant=10 ${FONTSDIR}/$(NAME)-Bold.ttf: $(BUILDDIR)/$(NAME)-Bold.ufo $(SRC)/$(LATIN)-Bold.ufo $(SRC)/$(NAME).fea $(FEA) $(LICENSE) $(BUILD) @echo " GEN $@" @$(PY) $(BUILD) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --license $(LICENSE) ${FONTSDIR}/$(NAME)-BoldItalic.ttf: $(BUILDDIR)/$(NAME)-Bold.ufo $(SRC)/$(LATIN)-BoldItalic.ufo $(SRC)/$(NAME).fea $(FEA) $(LICENSE) $(BUILD) @echo " GEN $@" @$(PY) $(BUILD) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --license $(LICENSE) --slant=10 $(DOC)/Documentation-Arabic.html: $(DOC)/Documentation-Arabic.md @echo " GEN $@" @pandoc $< -o $@ -f markdown-smart -t html -s -c Documentation-Arabic.css check: $(TTF) @$(foreach font,$+,echo " OTS $(font)" && python -m ots --quiet $(font) &&) true clean: rm -rfv $(TTF) $(HTML) distclean: clean rm -rf $(DIST){,.zip} dist: ttf check pack doc @echo " DIST $(DIST)" @rm -rf $(DIST){,.zip} @install -Dm644 -t $(DIST) $(LICENSE) @install -Dm644 -t $(DIST) $(TTF) @install -Dm644 -t $(DIST) README.md @install -Dm644 -t $(DIST) README-Arabic.md @install -Dm644 -t $(DIST) NEWS.md @install -Dm644 -t $(DIST) NEWS-Arabic.md @install -Dm644 -t $(DIST) $(HTML) @echo " DROP GLYPH NAMES" @$(PY) ${SCRIPTSDIR}/no-glyphnames.py $(DIST)/*.ttf @echo " ZIP $(DIST)" @zip -rq $(DIST).zip $(DIST) amiri-1.000/NEWS-Arabic.md000066400000000000000000001027411434272261000150760ustar00rootroot00000000000000أميري ٠٫١١٥ (٢٣-٠٦-٢٠٢٢) ------------------------ * تحسينات مختلفة لملاقاة معايير الجودة في خطوط جوجل. * تحسين تموضع الهمزة الصغيرة تحت الألف المقصورة. * دعم الخط العلوي في كل الخطوط وليس خطوط القرآن فقط. * إضافة المحارف اللاتينية الأساسية للخطوط القرآنية. أميري ٠٫١١٤ (٠٨-٠٣-٢٠٢٢) ------------------------ * استخدام مربع حدود الخط لقيم OS/2.usWinAscent و OS/2.usWinDescent. * تحسين أرقام الكسور * تحسين تموضع الفتحة فوق الضمة (https://github.com/alif-type/amiri/issues/200). * إضافة علامة نهاية الخطاب (U+061D). * إضافة علامتي الجنيه والقرش (U+0890–0891). * ملفات التوثيق صارة بصيغة HTML. * جعل البدائل العربية من المحارف المشتركة هي المبدئية، وجعل الأشكال اللاتينية بدائل عنها. * جعل المزيد من المحارف المشتركة غير مائلة في الخطوط المائلة. * جعل شكل الكاف ذات الحلقة التحتية (U+06AB) مستمدا من الكاف الفارسية لا العربية (https://github.com/aliftype/amiri/issues/196). * دعم علامات التشكيل فوق ألف الوصل (https://github.com/aliftype/amiri/issues/186). * إصلاح تداخل النقاط في كلمة ”الحجى“ (https://github.com/aliftype/amiri/issues/192). * إصلاح الحروف التي تستخدم الهمزة العالية (https://github.com/aliftype/amiri/issues/173). * إصلاح تداخل علامات التشكيل في ”يِحِ يِحٍ يٍحِ يٍحٍ“ (https://github.com/aliftype/amiri/issues/162). * إصلاح تداخل علامات التشكيل في ”لَله“ (https://github.com/aliftype/amiri/issues/184). * إصلاح البسملة في الخط القرآني الملون. * إضافة دعم الفاصلة والفاصلة المنقوطة المعكوستين (U+2E41 و U+204F). * إضافة دعم المحارف U+08BB–08BD. * إصلاح موضع النقطة التحتية في حرف الفاء بنقطق فوقية وتحتية (U+06A3). * دعم وضع الألف الخنجرية فوق المسافة الضيقة غير القاطعة (https://github.com/aliftype/amiri/issues/217). * إصلاح انعكاس شكل علامتي يمين إلى يسار ويسار إلى يمين. * إصلاح موضع الفتحة فوق الهمزة الصغيرة (https://github.com/aliftype/amiri/issues/227). أميري ٠٫١١٣ (٠٢-٠٦-٢٠٢٠) ------------------------ * إضافة U+08BA، و U+08B6، و U+08B7، و U+08B8، و U+08B9. * إصلاح المشاكل: - https://github.com/aliftype/amiri/issues/172 - https://github.com/aliftype/amiri/issues/187 * بناء الخطوط لم يعد يتطلب فونتفورج. أميري ٠٫١١٢ (٢٩-٠٩-٢٠١٩) ------------------------ * إصلاح علامة النقطة التحتية لتكون مستديرة لا مربعة. * إضافة ملف Amiri.fontspec ليستحدم مع حزمة fontspec للاتخ (#139). * إضافة فاصلة وفاصلة منقوطة بديلة للسندية والجاوية، ويمكنتفعيلها أيضا بخاصية “ss08” (#145). * إصلاح تموضع بعض علامات تشكيل الروهينجا (#155). * جعل المسافة الضيقة غير الفاصلة مساوية في العرض للمسافة الرفيعة (#177). * إصلاح الحروف القرآنية الصغيرة لتوافق معايير يونيكود الحديثة. أميري ٠٫١١١ (٣٠-١٢-٢٠١٧) ------------------------ * تحسين اقتران الكافات التي أضيفت في الإصدارة السابقة. * إصلاح خطأ يجعل جرف الهمزة العالية (U+0674) يقترن بالهرف السابق عليه: https://github.com/aliftype/amiri/issues/138. * إزالة الأسماء العربية الداخلية للخط، لتفادي ازدواجية اللغة في اسم الخط في بعض التطبيقات عندما يكون النظام باللغة العربية، مثل ”Amiri عادي“. * السماح بأن تسبق أو تلحق همزة وسط الكلمة بالكشيدة: https://github.com/aliftype/amiri/issues/137 * تلوين علامة الهمزة المنفصلة في الخط القرآني الملون: https://github.com/aliftype/amiri/issues/136 * تغيير شكل الضمة في حرفي U+06C7 و U+0677: https://github.com/aliftype/amiri/issues/123 * تغييرات شغيرة أخرى، و تغييرات على نظام بناء الخط من المصدر. أميري ٠٫١١٠ (٢٠-١٢-٢٠١٧) ----------------------- * محارف جديدة: - علامة سموت (U+0604) - بديل للراء الرياضياتية (U+1EE13) - الأرقام الكشميرية. - بديل للكاف المتبوعة بهاء وسطية. * تحسينات: - إصلاح عرض خط أميري قرآن الملون على وندوز. - تحسين تموضع الهمزة المكسورة في خط أميري قرآن. - جعل علامة نصف القطر تشبه ”نق“ و ليس ”ق“ فقط. - جعل عرض علامة النقطة الموسطة (U+00B7) مثل عرض المسافة. - إبقاء علامة التعجب غير مائلة في الخط المائل. - جعل تركيب لفظ الجلالة يعمل أفضل على بعض البرمجيات المعيبة. - جعل كلمات ”فالله/بالله/تالله/والله“ تأخذ تركيب لفظ الجلالة. - تحسين حرف الهمزة العالية (U+0674). - تحسين علامة U+0600 لتأتي من كلمة ”نمرة“ بالأردية. - تحسين تموضع النون الصغيرة فوق الكشيدة. - السماح بالتشكيل فوق النون و الياء الصغيرتين. - تحسين الكشيدة المقوسة تحسينًا كبيرًا. - إبطال تركيبا ”لبمـ“ و ”ببحـ“ في خط القرآن. * خصائص جديدة: - خاصية `ss07` لتعطيل الكشيدة المقوسة. - بعض التحسينات على التوثيق. أميري ٠٫١٠٩ (٢٠-١١-٢٠١٦) ---------------------- * محارف جديدة: - دعم لعدم الوضع التلقائي للشدة و الألف الصغيرة (◌ّٰ ) فوق لفظ الجلالة مع خاصية `ss06` لله. - نسخة عربية من علامة &. - علامة ”𞻰“ الرياضياتية (U+1EEF0). - علامة ”𞻱“ الرياضياتية (U+1EEF1). - إضافة التنويعات الناقصة لعلامة U+06C2. * تحسينات: - إصلاح اختفاء بعض علامات التشكيل في ميكروسوفت أوفيس. - وضع أسماء للخصائص الاختيارية في الخط. - الكثير من التحسينات على خط القرآن الملون، مع ألوان جديدة مساهمة من منذر طه. - تحسينات و إعادة تصميم للكثير من رموز الرياضيات العربية. - https://github.com/khaledhosny/quran-data/issues/1 - https://github.com/khaledhosny/quran-data/issues/4 - https://github.com/aliftype/amiri/issues/90 - https://github.com/aliftype/amiri/issues/106 أميري ٠٫١٠٨ (٢١-٠٩-٢٠١٥) ------------------------ * محارف جديدة: - تصميم جديد للهاء في ـهي. - تنويعات من الأرقام للاستخدام في الكسور الاعتيادية، عبر خاصيتي `numr` و `dnom`. - علامات التشكيل الجديد من قسم الحروف العربية الممتد-أ، في المدى U+08E4–08FE. - إعادة تصميم أشكال U+06C1 لتتميز عن U+06BE. - رمز ”جل جلاله“، U+FDFB. * تحسينات: - الفتحتين أو الضمتين أو الكسرتين المتتاليتين لن تستبدل بالتنوين المتراكب، إذ الصواب U+08F0، أو U+08F1، أو U+08F2. - الكثير من تحسينات التآلف. - حل مشكلة مع ماك أو إس عشرة كانت تمنع ظهور لفظ الجلالة بشكل سليم. - إزالة النقاط من كل أشكال U+06BA، اتباعًا لمعيار يونيكود. - الأشكال الأولية و الوسطية من الحروف التالية لم تكن موجودة: U+063E، و U+063F، و U+077A، و U+077B. - نقطا أشكال U+06BD الأولي والوسطي يجب أن تُقلب. * الخطوط الجديدة: - نسخة ملونة من خط القرآن يلون فيها التشكيل و العلامات القرآنية. لا تظهر الألون حاليًا إلا على متصفحات فيرفكس (كل المنصات) و إنترنت إكسبلورر\إدج (وندوز 8٫1 فما فوق). - أضيف إلى خطوط الوب WOFF 2.0. أميري ٠٫١٠٧ (٣٠-١٢-٢٠١٣) ------------------------ * محارف جديدة: - الحروف الرياضياتية العربية من قسم الرموز الرياضياتية العربية في يونيكود (U+1EE00–U+1EEFF). - دعم اختياري لوضع الكسرة أسفل الشدة، مع خاصية `ss05`. - إضافة الأرقام متغيرة العرض الناقصة من الخط المائل. * تحسينات: - التراجع عن خفض علامات التشكيل فوق الحروف العريضة، إذ جعلت علامات التشكيل غريبة بالنسبة لباقي الحروف. - إصلاح موضع التشكيل فوق قاف ”قح“. - إلغاء تركيبة ”تمخـ“ إن كانت مشكاة كلها لأنها ضيقة لتستوعب التشكيل. - إصلاح موضع السكون فوق الشدة. - توسيع الفراغ على يمين ”ثر“ و ”ثن“ و أخواتها لكيلا تتعارض مع المحارف السابقة عليها. - إبعاد المسافة بين راء و ياء ”مرين“ و ما جارها. - التأليف بين النقطة و علامة التنصيص الغالقة. أميري ٠٫١٠٦ (٢٨-٠٥-٢٠١٣) ------------------------ * محارف جديدة: - شكل جديد لحرف گاف يتماشى مع المتعارف عليه، الشكل القديم يمكن تفعيله عبر خاصية `ss04`. - إعادة رسم الأرقام الفارسية. - شكل جديد للضمة المقلوبة، الشكل القديم مفعل تلقائي عند اختيار اللغة الأردية. - المزيد من الأشكال المناسبة للحروف المتبوعة بالياء الراجعة النهائية. * تحسينات: - زيادة المسافة بين الألف و الثاء في مثل ”أثر“ و ”أثن“. - تحسن بعض الحروف الثخينة. - إصلاح موضع حلقة U+0620 في عدة مواضع. - خفض علامات التشكيل فوق الحروف العريضة. - إعادة كتابة كود العلامات الضامة للحروف ليكون أسرع. - تقصير الألف النهائية المسبوقة بالتطويل قليلا. - علامات اقتباس أكبر. - زيادة زاوية ميل الخط المائل. - استخدام أرقام متوسطة الحجم بدلا من الصغيرة مع علامة الرقم و الصفحة. - الكثير من التحسينات الصغيرة الأخرى. * الترخيص: - إزالة شرط تغيير اسم الخط في حال تعديله؛ النسخ المعدلة يمكنها استخدام نفس الاسم. * مسودة لدليل الاستخدام (بالعربية فقط حاليًا). أميري ٠٫١٠٥ (٣١-١٢-٢٠١٢) ------------------------ * خط قرآني جديد: تحتوي هذه الإصدارة على خط ”أميري قرآن“ منفصل لتنضيد النصوص القرآنية، وهو فرع من خط ”أميري عادي“ مع بعض الإعدادات والخصائص المبدئية المُطوعة لتناسب تنضيد النص القرآني لكن لا تناسب النصوص العادية. مثلا: - يغطي فقط المحارف المستخدمة في النصوص القرآنية. - ارتفاع السطر أكبر ليستوعب علامات الوقف. - الهمزة المكسورة على نبرة أو واو تذهب تحت كرسيها. - يدعم محرف السطر العلوي (U+0305) الذي يمكن استخدامه لرسم سطر السجدة في حال عدم توفر دعم مناسب للتسطير العلوي. - الشكل الخاص للفظ الجلالة مفعل في كل الأحوال بغض النظر عن الحروف أو علامات التشكيل المحيطة به، كما لا تُدرج شدة فوقه تلقائيا. - بعض التراكيب التي تسبب مشاكل مع التشكيل الكامل مُعطّلة. * الكثير من التحسينات على الأبعاد، وتموضع التشكيل، والتآلف، وأشكال الحروف. راجع سجل مستودع التطوير للاطلاع عليها كلها. أميري ٠٫١٠٤ (١٩-٠٧-٢٠١٢) ------------------------ * محارف جديدة: - شرطة مائلة خاصة لتناسب الأرقام العربية. - شكل جديد أكثر تناسقا لعلامة @ العربية. - إضافة أرقام متناسبة العرض (خاصية `pnum`). * تحسينات: - توسيع المسافة حول الواو الصغيرة المنخفضة. - إصلاح سنة السين عند تفعيل خاصية `ss02`. - إصلاح الراء ذات علامة ٨ فوقها. - تحسين الكاف المتوسطة في ـكما. - جعل العلامات الضامة للأرقام تعمل مع فيرفكس (وغيره من التطبيقات المبنية على حرف‌باز). - علامة العدد العربية (U+0600) تقبل الآن رقما رابعا، كما أصبحت أوسع قليلا لتفادي التلامس مع الأرقام الواسعة. - إصلاح ارتباط علامة المد اللازم مع الضمة المقلوبة. - إزالة ارتباط Th. - إصلاحات متنوعة أخرى. * التآلف. - تأليف اللام ألف النهائية مع الكاف. أميري ٠٫١٠٣ (٣١-٠٥-٢٠١٢) ------------------------ * هذه إصدارة صغيرة لإصلاح بعض العلات: - إصلاح التآلف السيئ بين الأرقام مع علامة نهاية الآية وغيرها من العلامات الضامة. - إضافة رموز ظاهرة لمحارف التحكم في ثنائية الاتجاه. - تأليف المزيد من الكافات عبر الفاصلة المجازية. - إصلاح معالجة ميلان المحارف المشتركة إلى اليمين أو إلى اليسار في الخط المائل ليصبح أكثر منطقية. أميري ٠٫١٠٢ (٢٢-٠٥-٢٠١٢) ------------------------ * محارف جديدة: - أكبر تغيير في هذه الإصدارة هو إضافة دعم نظام الكتابة اللاتيني مبنيًا على خط Crimson يغطي خرائط محارف لاتيني-0 إلى 9 بالإضافة إلى الحروف المستعملة في أنظمة رومنة العربية الشائعة (باستثناء الأبجدية الصوتية الصوتية) و العديد من علامات الترقيم الشائعة الأخرى. - باء مع ٧ صغيرة سفلية (U+08A0). - علامة البسملة (U+FDFD). * تحسينات: - شكل جديد للهاء المفتوحة المتبوعة بالياء النهائية. - شكل جديد للفاء المتوسطة المتبوعة بالياء النهائية. - شكل جديد للهاء المعقودة المتبوعة بالياء الراجعة. - شكل جديد محسن ومفتوح لهمزة الوصل. - شدة وسكون قرآني وعادي أكبر وأوضح. - علامة صلى الله عليه وسلم أكبر وأوضح. - تحسين تموضع نقاط عائلة الباء البادئة. - تحسين تموضع نقاط الباء المسبوقة بكاف ومتبوعة بألف أو لام. - تحسين تموضع الألف الخنجرية على الحروف العادية. - ألف مدة نهائية أوسع لتفادي تعارض المدة مع الحرف التالي. - تحسين شكل الكاف المتبوعة بميم ولام، أو ألف، على الشاشة في الأحجام الصغيرة. - تحسين الكاف المتبوعة بلام ثم ميم نهائية. - تفادي التصاق الباء البادئة أو المتوسطة بنقاط الحرف التالي. - تحسين موضع اتصال الصاد المتوسطة والنهائية. * التآلف: - جدول تآلف أحسن أداء يستخدم التموضع السياقي. - تقليل تآلف الدال أو الراء مع الكاف لتفادي التصاق النقاط. - زيادة تباعد الراء عن الياء البادئة. - جعل التآلف عبر الفاصلة المجازية يعمل في محرك ميكروسوفت. * إصلاح العلات: #1347860، #3471042، #3475146، #3509875 * متفرقات: - تكرار خاصية `locl` في `ccmp` للتحايل على المحركات التي لا تدعم الأولى. - ملفات EOT أصغر مضغوطة بتقنية MTX. أميري ٠٫١٠١ (٢٧-١٢-٢٠١١) ------------------------ * الخطوط الجديدة: - أضيف في هذه الإصدارة خط سميك، وإن كان بحاجة لبعض التحسين ليصل إلى مستوى الخط العادي، لكن حالته لا بأس بها. - خط عريض مائل. * محارف جديدة: - علامة صلى الله عليه وسلم (U+FDFD). - الأقواس المحلات (U+FD3E, U+FD3F). - العلامات التعليمية العربية (U+FBB2-U+FBC1). - غالب محارف قسمي أشكال العرض أ و ب. * تحسينات: - إصلاح تحرك نقاط الياء في بعض برامج أبل. - تفعيل الشكل المحلي من النقطة وأقواس الاقتباس مع اللغتين الأردية والسندية. - إصلاح عدم تفعيل جداول التموضع مع اللغتين الأردية والسندية. - إصلاح خطأ شكل الباء إذا أتبعت بسين ثم هاء متوسطتين كما في ”بسهل“. - إصلاح خطأ تموضع بعض النقاط. - إصلاح خطأ تموضع الهمزة فوق الهاء المتطرفة. - توسيع الألف النهائية لتصبح أقل حدة ولألا تلتصق بتشكيل ما جاورها. - إصلاح تلامس تشكيل اللام المتوسطة مع نقطة الياء النهائية كما في ”هلِي“. - دعم الأرقام الغربية مع العلامات الضامة. - استخدام أرقام أكبر مع علامة السنة ليزيد وضوحها. - منع تكرار الباء العالية إذا وقعت بين سينين كما في ”سببس“. أميري ٠٫١٠٠ (٠٤-١٢-٢٠١١)، بيتا جاما دلتا ---------------------------------------- * تمثل هذه الإصدارة محطة هامة في تطوير الخط إذ يغطى الآن كل المحارف العربية في الإصدار السادس من يونيكود، كما نضُج الخط بشكل كبير وصار من الممكن الاعتماد عليه في أغلب الأغراض الطباعية. * الخطوط الجديدة: - أضيفت نسخة مائلة تميل إلى اليسار وليس إلى اليمين، بحيث تماشي اتجاه الكتابة العربية. * محارف جديدة: - العلامات الضامة (U+0600-0603). - فاصلة التاريخ، أردو (U+060D). - علامة بيت الشعر، أردو (U+060E). - علامات التبجيل (U+0610-0614). - هاء دو چشمی، أردو (U+06BE and U+06FF). - ياء بڑی، أردو (U+06D2 and U+06D3). - أربع أحجام للكشيدة. * تحسينات: - إصلاح مشكلة الكشيدة في إنديزاين. - إمالة رقم أربعة الأردي ليصبح مقبولا أكثر. - إصلاح اختفاء نقطة الخاء المتوسطة إذا سبقتها كاف أو لام، كما في ”كخا“. - تقليل ارتفاع اللام البادئة المتبوعة بحاء وميم متوسطتين -كما في ”لحمد“- لتماثل أطوال اللامات الأخرى. - عين فنجانية وحاء مغلقة إذا تبعت العين أو الحاء بكاف. - خفض الواو الصغيرة بعد الهاء. - توسيع الواو الصغيرة والألف النهائية إذا وضع عليها مدة. - توسيع جوانب الحروف المنقوطة ولمهموزة لئلا تلامس ما جاورها. - المزيد من التنويعات العريضة من الحروف لتفادي تلامس علامات الشكل عند التشكيل الكامل. - راء ثعبانية إذا سبقت الراء بعين بالراء، كما في ”غر“. - شكل جديد للألف النهائية التي تسبقها كشيدة، كما في ”عمـان“. - شكل جديد للياء النهائية المسبوقة بهاء مفتوحة،كما في ”نهى“. - تغيير شكل الكاف النهائية والمتوسطة إلى شكل جديد أفضل لا يلامس مع ما جاورهما من الحروف. - تغيير شكل الواو النهائية إلى شكل أقرب للتصميم الأصلي. - جعل خفض نقاط الباء المسبوقة بواو أو راء اختياري، ونقلها إلى المجموعة التجميلية 01. - جعل الشكل الخاص للميم المتوسطة المتبوعة بألف اختياري، ونقلها إلى المجموعة التجميلية 02. - عرض كل الأرقام موحد الآن. - أخذت الأرقام المغربية وعلامات الترقيم المشتركة من خط Crimson Text. - تغيير المسافات بين السطور قليلا بحيث تناسب الآن النصوص العادية. - المزيد من التحسينات المتنوعة هنا وهناك. أميري ٠٫٠١٦ (٢٢-٠٩-٢٠١١)، بداية النهاية --------------------------------------- * تحتوي هذه الإصدارة على دعم كامل للقرآن الكريم، وهي محطة هامة أخرى في تطوير * هذا الخط. لكن يبقى الكثير من العمل لتحسين التفاعل بين الحروف وخاصة تموضع * علامات الشكل في النصوص تامة التشكيل مثل القرآن. * محارف جديدة: - كل علامات الضبط القرآني في يونيكود 6٫0. - باقي علامات التشكيل العربية في يونيكود 6٫0. - علامة الجذر (U+221A) مع تنويعة معكوسة للاستخدام العربي، بالإضافة إلى الجذور العربية الأخرى (U+0606, U+0607). - علامة نصف القطر (U+0608). - رمز العملة الأفغانية (U+060B). - علامة ”مصرع“ الأردية (U+060F). - تنويعة من الميم الأولية إذا تبعت بهاء متوسطة كما في ”مها“. * التآلف: - انخفض عدد أزواج التآلف من ٤١١٢٤٠ إلى ٥٥٨٥٠ مع الحصول على نفس النتيجة. * تحسينات: - تحسينات عامة على علامات الترقيم، وضبط لتباعد الأقواس مع تسميك الأقواس المجعدة لتتماشى أكثر مع باقي الخط. - أصبح عرض المسافة ٦٠٠ وحدة. - أصلح إدراج الكشائد في أماكن خطأ عند مساواة الفقرات. - أضيفت تنويعات عريضة من بعض الحروف لتفادي تلامس علامات الشكل عند التشكيل الكامل. - ضبط موضع السطر السفلي ليكون أخفض من أغلب الحروف النازلة عن السطر. - إصلاحات عديدة على تموضع علامات التشكيل. - فصلت الحلقة أسفل الياء الكشميرية عن جسم الحرف لتتبع أسلوب الكتابة الكشميري. أميري ٠٫٠١٥ (١٤-٠٧-٢٠١١)، العنقاء --------------------------------- * تمثل هذه الإصدارة محطة هامة في تطوير الخط إذ أعيد برمجة بالكامل للوصول إلى أكبر قدر من التوافقية مع البرمجيات المختلفة التي تدعم أوبن تيب. * تحسينات: - المزيد من توحيد الحروف المتشابهة. - إصلاح العيد من تحذيرات فونت فورج. - ضبط العديد من مواضع النقاط. - ضبط أفضل لتموضع الكثير من علامات التشكيل. - مزيد من التصليحات لتركيب لفظ الجلالة. - تحسين شكل الباء المبتدئة عند اتصالها بالألف النهائية. * المزيد من أزواج التآلف. * اسم الخط يظهر الآن بالإنجليزية في قوائم الخطوط. أميري ٠٫٠١٤ (٠٥-٠٦-٢٠١١)، اكسر ساقا ----------------------------------- * إصدارة فرعية أخرى لإصلاح علتين: - اختفاء لفظ الجلالة في برمجات وندوز وأوفس ميكروسوفت. - عدم تموضع النقاط تحت الياء المتطرفة. أميري ٠٫٠١٣ (٢٧-٠٤-٢٠١١)، أسرع! ------------------------------- * إصدارة لإصلاح تموضع علامات التشكيل فوق الحروف المتآلفة في وندوز. أميري ٠٫٠١٢ (٢٦-٠٤-٢٠١١)، ليلة طويلة -------------------------------------- * محارف جديدة: - إضافة تنويعات الأرقام الأردية والسندية (خاصية `locl`). - إضافة خاصية أرقام الجداول (`tnum`). - إضافة الأرقام المغربية (الأوروبية) وبعض علامات الترقيم من خط Linux Libertine. - إضافة تنويعة عربية تجريبية من علامة @. - إضافة الثلاث نقاط التي تستخدم بدل نقطو نهاية الجملة في بعض اللغات الإفريقية (U+061E). - إضافة النقطة المُوسّطة (U+00B7). - أعيد برمجة تركيب لفظ الجلالة مع إضافة دعم ”فلله“؛ برمجة الخط تحاول قدر الإمكان تفادي استخدام تلك التنويعة في الألفاظ التي تشبه لفظ الجلالة. * تحسينات: - تنظيف شامل للخط وحذف لكثير من المحارف المتشابهة بحيث أصبح الخط أكثر انسجاما وتناغما. - نتج عن هذا التنظيف دعم تراكيب أكثر من ذي قبل مع أن حجم الخط أصبح أصغر وليس أكبر. - صُغّرت علامات التشكيل بنسبة ٨٠٪ لتفادي تلامسها. - الأرقام العربية أكثر اتساقا الآن. - العديد من الإصلاحات المتنوعة في التشكيل ومواضع النقاط. - دعم لتطبيقات أكثر من ذي قبل * المزيد من أزواج التآلف. * إصلاح العلات: 3234138، 3110760، 3087332، 3073139، 3211187، 3211239 و 3078741 أميري ٠٫٠١١ (٣١-٠٣-٢٠١١)، نفخ العجلة ------------------------------------ * محارف جديدة: - `"#'*,-/;[\]{|}¦` - علامات الاقتباس المحدبة المفردة والمزدوجة: `‹›«»،` مع بديل عربي هلالي الشكل. - علامات الاقتباس المجعدة: `‟„”“‛‚’‘` - رمز `⁂` - شرطة الكسور: `⁄` - علامة النسبة المؤوية العربية: `٪؊؉` - الفاصلة العشرية العربية وفاصلة الألوف: `٫٬` - النجمة الخماسية: `٭` - الشرطات الطباعية: `‒ – — ―` - الحروف العربية ذات الشرطة: `ۅ ݛ ݪ` - الحروف العربية ذات الأرقام: `ݳ ݴ ݵ ݶ ݷ ݸ ݹ ݼ ݽ` * إصلاحات متنوعة: - تحديث بيانات الخط. - زيادة حجم الأرقام بنسبة ١٢٠٪ ورفعها لأعلى قليلا. - تحسينات متنوعة على علامات الترقيم والرموز الرياضياتية. - ضبط التشكيل فوق الهمزة على السطر (ء). - توسيط التشكيل تحت الهاء المفردة (ه). أميري ٠٫٠١٠ (٢١-٠٣-٢٠١١)، الاستفتاء ---------------------------------- * محارف جديدة: - لام بثلاث نقاط تحتية U+06B8. * التآلف: - لام ”له“ مع عائلة الراء والواو السابقين لها. - وكذلك كاف ”كتب“. * إصلاحات المحارف: - إصلاح موضع علامة التعجب أفقيا مقارنة مع علامة الاستفهام. - إزالة همزة زائدة خطأ من كاف بداية ووسط الكلمة U+063B و U+063C. - إصلاح سماكة الدال المنفصلة كونها أسمك من باقي الحروف. - إصلاح اتصال اللام بالميم في ”لما“. - تصغير حجم العين المتوسطة لتتناسب رأس العين المتطرفة. أميري ٠٫٠٠٩ (٠٦-٠٢-٢٠١١)، الثورة -------------------------------- * محارف جديدة: - دعم أولي للتشكيل، لكن ما زال ينقصه الكثير من الضبط. - الأرقام العربية والفارسية. - المزيد من علامات الترقيم. - المزيد من الحروف العربية الإضافية - المزيد من التراكيب وخاصة الأزواج المنتهية بالحاء. * محاولة لإصلاح علة عرض الخط في أوبن‌أوفِس، يعمل بشكل أفضل بكثير الآن، لكن الحل الحقيقي للعلة أُرسِل إلى مطوري ليبرأوفِس لكنه لم يلحق الإصدارة 3٫3٫0. * مصدر الخط موفر على شكل ملف SFD بدلا من SFDIR الحالي ليسهل فتحه في فونتفورج لمن يرغب. * زيدت المسافة بين الأسطر لتستوعب التشكيل على نحو أفضل. * الكثير من التحسين والتوسع في أزواج التآلف. * عشرات من الإصلاحات والتحسينات الصغيرة الأخرى. * إصلاحات العلل: - 3085159 التصاق الكاف مع الحرف الذي يليه - 3085165 التصاق همزة الألف مع السابق واللاحق - 3085166 التصاق الراء والزاي مع الياء اللاحقة - 3085172 التصاق الكاف باللام السابقة المتصلة بالميم - 3085174 خطأ في رسم لا إذا سبقتها الكاف المتصلة بالميم - 3085175 تلاصق الحاء والجيم والخاء إذا تتابعت - 3101634 أزواج تآلف منسية - 3101674 العين الفنجانية أميري ٠٫٠٠٣ (١٠-١٠-٢٠١٠) ------------------------ * تحسين أكثر للتآلف وخاصة معالجة تلامس نقاط الحروف المتآلفة. * حل تلامس كثير من الحروف وخاصة اللام مع الكاف، والكاف مع المعجمات الفوقية بعدها، والباء مع الألف. * أضيف دعم اللغة الفارسية وستليها باقي اللغات تباعا. أميري ٠٫٠٠٢ (٢٥-٠٩-٢٠١٠) ------------------------ * تحسين التآلف بين الحروف: حُسن تآلف (تقريب المسافات) بين الحروف أكثر، وأصبح يغطي طيفا أوسع من أشكال الحروف وخاصة التنويعات السياقية، كما حلت مشكلة تحرك بعض النقاط في وندوز بسبب حدوث تعارض بين تموضع النقاط والتأليف. * تحسين تموضع النقاط: حُسن تموضع بعض النقاط، لكن ما تزال بحاجة إلى المزيد من العمل. * تصغير حجم الملف: أصبح حجم ملف الخط غير المضغوط أصغر بحوالي ٢٥٪ عن ذي قبل، وهو ما يفيد في حال استخدامه على الوب. أميري ٠٫٠٠١ (١٩-٠٩-٢٠١٠) ----------------------- أول إصدارة. amiri-1.000/NEWS.md000066400000000000000000000617301434272261000137210ustar00rootroot00000000000000Amiri 0.900 (2022-10-05) ------------------------ This release is in preparation for frozen 1.0 release. * Remove zero-width Kashida hack needed for LibreOffice < 7.5, with this release Kashida justification should be enabled for LibreOffice >= 7.5. * The font sources are now in Glyphs format, FontForge is no longer used for editing the sources. * Remove the uyghur-hyphen PUA glyph. * Drop U+030A and U+0325 that were misused for Quranic symbols, and add U+08D1. * Localize stylistic set names. * Make medial hamza work with lam-alef ligature. Amiri 0.117 (2022-07-01) ------------------------ Fix erroneously colored glyphs in Amiri Quran Colored. Amiri 0.116 (2022-06-25) ------------------------ Fix missing dot colors in Amiri Quran Colored, a regression from 0.115 release. Amiri 0.115 (2022-06-23) ------------------------ * Various technical fixes for Google Fonts QA. * Improvements to small hamza position below alef maksura. * Support extensible overline for all fonts, not only Quran ones. * Add minimal set of Latin glyphs to Quran fonts. Amiri 0.114 (2022-03-08) ------------------------ * Use font bounding box for OS/2.usWinAscent and OS/2.usWinDescent. * Improve fraction digits. * Improve fatha on damma (https://github.com/alif-type/amiri/issues/200). * Add ARABIC END OF TEXT MARK (U+061D). * Add ARABIC POUND MARK ABOVE and ARABIC PIASTRE MARK ABOVE (U+0890–0891). * Documentation is now in HTML format. * Arabic variants of common characters are now the default, and Latin variants are the localized alternates. * More common characters are now upright in the slanted fonts. * Make ARABIC LETTER KAF WITH RING (U+06AB) use gaf not kaf form (https://github.com/aliftype/amiri/issues/196). * Support marks over Alef Wasla (https://github.com/aliftype/amiri/issues/186). * Fix mark collision in “الحجى” (https://github.com/aliftype/amiri/issues/192). * Fix legacy characters that has high hamza (https://github.com/aliftype/amiri/issues/173). * Fix mark collision in “يِحِ يِحٍ يٍحِ يٍحٍ” (https://github.com/aliftype/amiri/issues/162). * Fix mark collision in “لَله” (https://github.com/aliftype/amiri/issues/184). * Fix basmala in Amiri Quran Colored. * Support reversed comma and semicolon (U+2E41 and U+204F). * Add U+08BB–08BD. * Fix below dot position in ARABIC LETTER FEH WITH DOT BELOW (U+06A3). * Allow narrow no break space as base for small alef (https://github.com/aliftype/amiri/issues/217). * Fix swapped LRM and RLM glyphs. * Fix fatha position over small hamza above (https://github.com/aliftype/amiri/issues/227). Amiri 0.113 (2020-06-02) ------------------------ * Add U+08BA, U+08B6, U+08B7, U+08B8, and U+08B9. * Bug fixes: - https://github.com/aliftype/amiri/issues/172 - https://github.com/aliftype/amiri/issues/187 * Add ligature carets to Latin ligatures. * Building the fonts no longer requires FontForge. Amiri 0.112 (2019-09-29) ------------------------ * Fix dot below (U+065C) and make it rounded not rectangular. * Add an Amiri.fontspec file for use with LaTeX fontspec package (#139). * Make the build reproducible. * Fix some misplaced Latin accents. * Add alternate comma and semicolon for Sindhi and Malay, and can be enabled with “ss08” feature as well (#145). * Fix Rohingya tones positioning a bit (#155). * Don’t make rounded guillemots the default as they are meant to be only for Arabic. * Make narrow no break space as wide as thin space (#177). * Fix handling of several Quranic small letters to follow latest Unicode recommendations. Amiri 0.111 (2017-12-30) ------------------------ * Drop TTF files from the web fonts archive, WOFF and WOFF2 should be all one needs now. * Cosmetic changes to the CSS snippet. * Fix kerning of the new Kaf glyphs introduced in the previous release. * Add a font table document for the Quran font since it has different character coverage. * Removed the `ccmp` feature composing decomposed Latin base/accent combinations supported by the font. HarfBuzz does this in a bit smarter way, users of other engines can apply Unicode normalization to the input text if this is needed. * Fix wrong glyph class for U+0674 ARABIC LETTER HIGH HAMZA, causing it to be incorrectly treated as a zero width mark: https://github.com/aliftype/amiri/issues/138. * Drop localized Arabic names from the font (like style names), their support in application is spotty, also it is a bit Ugly to have the font presented with mixed language name, e.g. “Amiri عادي”, in some applications under Arabic locales. * Allow Kashida around floating Hamza: https://github.com/aliftype/amiri/issues/137 * Colorize Hamza above mark in colored Quran font: https://github.com/aliftype/amiri/issues/136 * Change the shape of Damma used in U+06C7 & U+0677: https://github.com/aliftype/amiri/issues/123 * Other smaller fixes. * OpenType layout tables are now compiled with FontTool’s feaLib instead of my FontForge fork. This is an attempt to make building the fonts from source simpler for others and more predictable. * The font can now be built with Python 3, by calling `make PY2=python3`. * The font can be also built with upstream FontForge now, though the result might be slightly different from the pre-built fonts. Amiri 0.110 (2017-12-20) ------------------------ * New Glyphs - U+0604 ARABIC SIGN SAMVAT. - Alternate glyph for U+1EE13 ARABIC MATHEMATICAL REH. - Localized Kashmiri digits. - Alternate Kaf when followed by medial Heh * Fixes: - Fix rendering of Amiri Quran Colored on Windows. - Improve Hamza below positioning in Amiri Quran. - Make U+0608 ARABIC RAY look like نق not just ق. - Make U+00B7 MIDDLE DOT the same width as space. - Keep exclamation mark upright in slanted fonts. - Make the الله combination work in better in some faulty applications. - Allow فالله/بالله/تالله/والله to take the special form. - Improve U+0674 ARABIC LETTER HIGH HAMZA by making it bigger and not zero-width, since it is a variant of Hamza and not a combining mark. - Improve the design of U+0600 ARABIC NUMBER SIGN to derive from the Urdu word نمرة. - Improve small Noon placement over Kashida. - Allow marks over small Yeh and Noon. - Greatly improve the handling of curvilinear Kashida. - Disable “لبمـ” and “ببحـ” combinations in Quran font. * New features: - Add `ss07` to disable curvilinear Kashida. - Small improvements to the documentation. Amiri 0.109 (2016-11-20) ------------------------ * New glyphs: - A new stylistic set (`ss06`) to avoid automatically adding ◌ّٰ above لله. - A localised &. - U+1EEF0 ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL (𞻰). - U+1EEF1 ARABIC MATHEMATICAL OPERATOR HAH WITH DAL (𞻱). - Adding missing forms of U+06C2. * Fixes: - Fix clipping of some vowel marks in Microsoft Office. - Add descriptive stylistic sets names to the font. - Many improvements to Amiri Quran Colored, including revamped color palette by Munzir Taha. - Improve and redo most of the Arabic math alphanumeric symbols. - https://github.com/khaledhosny/quran-data/issues/1 - https://github.com/khaledhosny/quran-data/issues/4 - https://github.com/aliftype/amiri/issues/90 - https://github.com/aliftype/amiri/issues/106 Amiri 0.108 (2015-09-21) ------------------------ * New glyphs: - New design of ه in ـهي combination. - Alternate numbers for use in fractions, accessible with the OpenType features `numr` and `dnom`. - The new Arabic Extended-A vowel marks, in the range U+08E4–08FE. - Redesign the U+06C1 forms to make it distinctive from U+06BE. - Add “جل جلاله” symbol, U+FDFB. * Fixes: - No longer replace two successive *fatha*, *damma* or *kasra* with a sequential *tanween* form, the characters U+08F0, U+08F1 and U+08F2 should be used instead. - Many kerning improvements. - Workaround a bug in Core Text (Mac OS X text layout engine) that break the لله ligature. - All forms of U+06BA are now dotless, per Unicode standard. - Initial and medial forms of U+063E, U+063F, U+077A and U+077B were missing. - The dots in initial and medial forms of U+06BD should be inverted. * New fonts: - A coloured version of the Amiri Quran font that gives the vowels and Quranic annotation marks distinctive colours. This font uses the new `COLR`/`CPAL` font tables which are currently supported only by Firefox (all platforms) and MS Internet Explorer/Edge (Windows 8.1 and above). - The webfonts now include WOFF 2.0 files as well. Amiri 0.107 (2013-12-30) ------------------------ * New glyphs: - Arabic math letters from Arabic Mathematical Alphabetic Symbols block (U+1EE00–U+1EEFF). - Optional support for placing the kasra below the shadda, with `ss05` feature. - Missing proportional LTR digits in the slanted font. * Fixes: - Reverted the lowering of marks above wide isolated glyphs, it made the marks look weird relative to other ones. - Fixed the position of marks above qaf of قح. - Dropped the special combination in تمخـ when it is follow vowelled as it was too crowded. - Fixed the position of sukun over shadda. - Fixed the side bearings of ثر, ثن and sisters so that the dots do not clash with preceding glyphs. - Positive kerning between مرين and likes. - Slight kerning between the period and closing quotes. - Made sure the italic European digits are really tabular. Amiri 0.106 (2013-05-28) ------------------------ * New glyphs: - New, more conventional shape for gaf, the old shape can be activated with `ss04` feature. - Redrawn Persian digits - New inverted damma, the old one moved to Urdu-specific `locl` feature. - More contextual forms for letter followed by final bari yeh. * Fixes: - Add +ve kerning after alef in أثر and أثن. - Cleanup some bold glyphs. - Fix ring position of few U+0620 glyphs. - Lower the marks above wide isolated glyphs. - Rewrite subtending marks lookups to become much faster. - Shorten final Alef with tatweel a bit. - Bigger quotes. - Increase slant angle of slanted font. - Use medium sized digits with safha and number signs instead of small ones. - Many smaller changes. * Latin: - Remove the tooth from italic longs. * License - Drop the OFL reserved font name clause; no need to rename the font when modifying it anymore. * A draft user manual (Arabic only for now) is included. Amiri 0.105 (2012-12-31) ------------------------ * New Quran font: This release features a new separate Amiri Quran font for typesetting Quran. It is basically a subset of Amiri Regular font with some default settings and features tailored for Quran typesetting requirements that are not suitable for general text. For example: - Covers only the subset of characters required for Quran. - Bigger line height to accommodate waqf marks. - Hamza on yeh or waw when followed by kasra is placed bellow its base. - Supports overline mark (U+0305) that can be used to draw sajda lines in situations where proper overline formating is not available. - The Allah ligature is always active, no checking for surrounding letters or vowel marks, also no automatic insertion of shadda above it. - Some ligatures that are problematic for fully vowelled text are disabled. * Lots of metrics, mark positioning, kerning and glyph shape tuning. Check GIT log for complete list. Amiri 0.104 (2012-07-19) ------------------------ * New glyphs: - New localised slash glyph, to align better with Arabic digits. - New, less bulky Arabic @ sign. - Proportional digits (`pnum` feature). * Fixes: - Give some room to the low small waw. - Fix seen tooth with `ss02`. - Fix raa with inverted v above. - Improve medial kaf of kaf-mem-alef - Make subtending marks work with Firefox (and other HarfBuzz based applications). - Arabic number sign (U+0600) now accepts a 4th digits, and is made a bit wider, to avoid collision with wide digits. - Fix combining Qur’anic madda with inverted damma. - Drop the Th ligature. - Other miscellaneous fixes. * Kerning: - Kern final lam-alef with kaf. Amiri 0.103 (2012-05-31) ------------------------ * This is a bug fix release: - Fix wrong kerning of digits inside end of ayah and other Arabic enclosing marks. - Add visible glyphs for BiDi control characters. - Kern more kaf forms accross ZWNJ. - Fix handling of right-slanting and left-slanting common characters in the italic fonts to be more logical. Amiri 0.102 (2012-05-22) ------------------------ * New glyphs: - The largest feature of this release is adding Latin script support based on Crimson font, covering latin-0 to 9 code pages as well as all characters used in common Arabic romanisation schemes (no including IPA) and other common punctuation characters. - Beh with small v below (U+08A0). - Basmala symbol (U+FDFD). * Fixes: - New contextual shape for final open heh-yaa combination. - New contextual shape for final faa-yaa combination. - New contextual shape for knotted heh-yaa baree. - New, improved and more open hmaza wasl. - Larger and more readable shadda, regular and Qur’anic sukun. - Larger and more readable Sallallahou Alayhe Wasallam symbol (U+FDFA). - Improved dot placement of initial baa-like glyphs. - Improved dot placement of kaf-baa-alef combination. - Improved placement of dagger alef on regular glyphs. - Wider final alef with madda to avoid clash between madda and next glyphs. - Improved kaf-meem-alef, kaf-alef combinations at smaller sizes on screen. - Improve kaf-lam-final meem. - Avoid initial/medial kaf clash with next glyph’s dots. - Improved medial and final sad connecting part. * Kerning: - More efficient kerning feature using contextual positioning - Reduce dal/raa-kaf kerning to avoid dot clash - More positive kerning for raa-intial yaa. - Make kerning across ZWNJ work with Uniscribe. * Bug fixes: #1347860, #3471042, #3475146, #3509875 * Misc.: - Duplicate `locl` in `ccmp` to work around engines not supporting the former. - Smaller, MTX compressed EOT files. * Many other subtle improvements here and there. Amiri 0.101 (2011-12-27) ------------------------ * New styles: - This release features a bold font that is, though not as polished as the regular one, quite usable. - Bold Slanted font. * New glyphs: - Sallallahou Alayhe Wasallam symbol (U+FDFD). - Ornate parenthesis (U+FD3E, U+FD3F). - Arabic pedagogical symbols (U+FBB2-U+FBC1). - Most of Presentation Forms-A and B blocks. * Fixes: - Fix misplaced Yaa dots on some Apple applications. - Enable local period and guillemots for Urdu and Sindhi languages. - Fix disabled mark and curs features with Urdu and Sindhi languages. - Fix wrong Baa when followed by Seen then Heh, as in بسهل. - Fix some misplaced dots. - Fix Hamza placement above final Heh. - Widen final Alef to be less acute and avoid touching adjacent glyphs. - Fix clash of medial Lam mark and final Yaa dots, as in هلِي. - Support European digits with subtending marks. - Use larger digits with the year sign to be more usable. - Prevent double high Baa when preceded and followed by Seen, as in سببس. Amiri 0.100 (2011-12-04), beta gamma delta ------------------------------------------ * This release marks another important developmental milestone, with Arabic and Arabic Supplement blocks in Unicode 6.0 being fully covered (which means essentially any Arabic character in Unicode can now be presented with Amiri). Also the font has now matured to great extent and is usable for most of typesetting tasks. * New styles: - Add a slanted style that slants to the left and no to right, to follow Arabic writing direction. * New glyphs: - Subtending marks (U+0600-0603). - Arabic date separator (U+060D). - Arabic poetic verse sign (U+060E). - Honorific marks (U+0610-0614). - Dochashmi Heh (U+06BE and U+06FF). - Bari Yaa (U+06D2 and U+06D3). - 4 sizes of Kashida. * Fixes: - Fix issue with Kashida breaking word shaping in InDesign. - Slant Urdu digit four to look more acceptable. - Fix disappearance of media Khaa dot when preceded by Kaf, as in كخا. - Decrease the hight of initial Lam when followed by Haa and Meem, as in لحمد, to match other Lam glyphs. - Finjani Ayn and closed Haa when followed by Kaf. - Lower small Waw after final Heh. - Widen small Waw and final Alef when a Madda mark is applied to them. - Increase side bearings of many dotted glyphs no avoid clash with their neighbours. - More wider forms of glyphs to avoid mark clash when fully vowelled. - New contextual shape for initial Ain followed by Raa, as in غر. - New contextual shape for final Alef preceded by Kashida, as in عمـان. - New contextual shape for final Yaa when followed by open Heh, as in نهى. - New redrawn initial and medial Kaf that do not clash with their neighbours. - New redrawn final Waw that is more faithful to the original design. - Disable, by default, lowering Baa dots when preceded by Raa or Waw, moved to stylistic set 01. - Disable, by default, contextual form of medial Meem when followed by Alef, moved to stylistic set 02. - Digits are now tabular, removed tnum feature. - Common punctuation and European digits are now from Crimson Text. - Change the default interline spacing to fit better for regular text. - Many more smaller fixes here and there. Amiri 0.016 (2011-09-22), Beginning of the End ---------------------------------------------- * This release features full Quranic support, another major developmental milestone, more work still needed in refining glyph interaction specially mark positioning in fully vocalised text such as Quran. * New glyphs: - All Quranic annotation marks in Unicode 6.0. - All other Arabic vowel marks in Unicode 6.0. - Radical (U+221A) including a RTL variant, and other Arabic radicals (U+0606, U+0607). - Arabic ray (U+0608). - Afghani sign (U+060B). - Arabic sign Misra (U+060F). - New contextual shape for initial meem followed by medial heh, as in مها. * Kerning: - Decreased the number of kerning pairs from 411240 to 55850 while retaining the same functionality. * Fixes: - General cleanup of punctuation marks, fixing spacing of brackets and making curly brackets more bolder to fit wit the rest of the font. - Made the space glyph 600 units wide. - Fixed erroneous tatweel (kashida) insertion in full justification. - Wider forms of some glyphs to avoid mark clash when fully vowelled. - Underline position is now lower than most glyphs with descendants. - Various mark positioning fixes. - Separate the ring of Kashmiri yeh from the body of base glyph, following Kashmiri orthographic traditions. Amiri 0.015 (2011-07-14), Phoenix --------------------------------- * This release represents a major developmental milestone, as the OpenType layout have been rewritten to allow maximum compatibility with various OpenType implementations. * Cleanup: - More unification and tidy up. - Various fixes for FontForge warnings. - Various dot placement fixes. - Various tashkil fine tuning. - Fixes to Lellah form. - Fine tune initial Baa/final Alef combination. * More kerning pairs. * Font name is now shown only in English in font menus. Amiri 0.014 (2011-06-05), Break a Leg ------------------------------------- * Another minor release to fix two bugs: - Lellah bug on Windows and MS Office. - Wrong placement of dots under final Yaa. Amiri 0.013 (2011-04-27), Hurry up! ----------------------------------- * A minor release to fix mark positioning on kerned glyphs in Windows. Amiri 0.012 (2011-04-26), A Long Night -------------------------------------- * New glyphs: - Add localised Urdu and Sindhi digits (`locl` feature). - Add tabular numbers feature (`tnum`). - European numbers and some punctuation marks from Linux Libertine. - Add at sign with experimental Arabic variant (`locl` feature, too). - Add triple dot punctuation mark (U+061E). - Add middle dot (U+00B7). - Reimplement الله igature properly and added فلله ligature; the code now much more careful on when to activate this ligature. * Cleanup: - Massive cleanup removing tens of too similar glyphs, making the font more unified and consistent. - This cleanup results in more contextual variants that were missing before, yet the font is smaller not larger. - Scaled Tashkil marks down by 80%, they are now smaller leading too less mark collision. - The Arabic digits are more polished. - Misc. mark fixes. - Less use of exotic OpenType features to work with even more OpenType implementations. * More kerning pairs. * Bug fixes: 3234138, 3110760, 3087332, 3073139, 3211187, 3211239 and 3078741 Amiri 0.011 (2011-03-31), Inflating the Tire -------------------------------------------- * New glyphs: - `"#'*,-/;[\]{|}¦` - Single and double angle quotation marks: `‹›«»`, in addition to rounded Arabic variant. - Curly quotation marks: `‟„”“‛‚’‘` - Asterism symbol: `⁂` - Fraction slash: `⁄` - Arabic percent signs: `٪؊؉` - Arabic decimal and thousands separators: `٫٬` - Arabic five pointed star: `٭` - Typographic dashes: `‒ – — ―` - Proper support for Arabic characters with traverse stroke: `ۅ ݛ ݪ` - Arabic characters with digit marks: `ݳ ݴ ݵ ݶ ݷ ݸ ݹ ݼ ݽ` * Misc. fixes: - Update font metadata. - Scale all numbers by 120% since they were drawn smaller than what they should, and raise them a bit. - Misc. cleanup of punctuation and math glyphs. - Proper mark support for standalone Hamza. - Visually centralise marks bellow isolated Heh. Amiri 0.010 (2011-03-21), Referendum ------------------------------------ * New glyphs: - Lam with three dots below (U+06B8). * Kerning: - Lam of له with preceding Raa/Waw family. - Kaf of كتب as well. * Glyph fixes: - Fixed exclamation mark’s vertical position as compared to question mark. - Removed stray Hamza from U+063B and U+063C initial and medial forms. - Fixed the weight of isolated Dal, was much bolder than the rest of the font. - Fixed Lam Meem connection in لما, there was a slight mismatch. - Fixed the size of medial Ayn compared to the head of final one. * OpenType code: - Removed DFLT script from `locl` feature which would cause it to be on unconditionally. - Got rid of mark sets in favour of the more widely supported mark classes. Amiri 0.009 (2011-02-06), Revolution ------------------------------------ * New glyphs: - Initial support for vowel marks, still needs more adjustments and fine tuning. - Arabic and Persian digits. - More punctuation marks. - More coverage of extended Arabic characters. - More glyph variants, especially for pairs ending with Haa. * Attempted to get around OOo bugs, it should render much better now. A proper fix have been submitted to LibreOffice developers but didn’t make it into 3.3.0 release. * Packed sfdir into an sfd file in the release, should make it easier for others to open the source in FontForge. * Increased line spacing a bit to give more room for vowel marks. * More coverage and kerning fixes. * Tens of other small fixes here and there. * Bug fixes: - 3085159 Kaf clashes with next letters - 3085165 Hamza on Alef clashes wit next and previous letters - 3085166 Raa and Zay clashes with next Yaa - 3085172 Kaf clashes with next Lam-Meem combination - 3085174 Lam-Alef is broken of preceded by Kaf-Meem - 3085175 Succeeding Haa clash with each other - 3101634 Missing kerning - 3101674 Finjani Ayn Amiri 0.003 (2010-10-10) ----------------------- * More tuning of kerning, especially handling of dot clash between kerned glyphs. * Resolved many glyph clashes especially between ل and ك, between ك and letters with above dots after it, and between marks of ب and ا. * Persian should be now fully supported, other languages to follow. Amiri 0.002 (2010-09-25) ----------------------- * More kerning work: Kerning have been further refined, extended in coverage especially between contextual variants, and mysterious dot movements on Windows resulting from bad interaction between kerning and dot positioning have been fixed. * Refined dot positioning: Some dot placements have been refined, though this area still in need of more work. * Smaller file size: The uncompressed TTF file is now approximately 25% smaller than previous release, saving a bit more bandwidth when used as web font. Amiri 0.001 (2010-9-19) ----------------------- First release. amiri-1.000/OFL.txt000066400000000000000000000104431434272261000137770ustar00rootroot00000000000000Copyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri). This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. amiri-1.000/README-Arabic.md000066400000000000000000000037541434272261000152630ustar00rootroot00000000000000الخط الأميري ============ الخط الأميري خط نسخي موجه لطباعة الكتب و النصوص الطويلة. الخط الأميري هو إحياء و محاكاة للخط الطباعي الجميل الذي تميزت به [مطبعة بولاق] [1] منذ أوائل القرن العشرين، و التي عرفت أيضا بالمطبعة الأميرية، و من هنا أخذ الخط اسمه. يتميز خط المطابع الأميرية بجماليته و مراعاته لفن الخط العربي، بأسلوب نسخي جميل، و في ذات الوقت يراعى متطلبات الطباعة و القيود التي تفرضها، من غير إفراط في جانب على حساب الآخر. و لهذا يتميز بمناسبته للصف الطباعي عموما، و لصف الكتب خصوصا. و قد استُخدِم هذا الخط في طباعة المصحف الأميري، و هو من المصاحف القليلة التي طبعت بالصف المعدني و لم يخطها خطاط بيده، و هذا يجعله مادة خصبة لبناء خط حاسوبي مناسب لصف النصوص القرآنية. يهدف مشروع الخط الأميري إلى إحياء تقاليد و جماليات الطباعة العربية و موائمتها لتقنيات عصر الحواسيب، مع إتاحتها للعموم. الخط الأميري مشروع حر مفتوح المصدر يمكن لأي كان استخدامه و التعديل عليه دون مقابل. يتاح الخط الأميري و فق بنود [رخصة الخطوط المفتوحة] [2]، انظر ملف الرخصة المرفق لمزيد من التفاصيل. يمكن الحصول على آخر إصدارات الخط الأميري من موقعه: > http://amirifont.org [1]: http://www.bibalex.org/bulaqpress/ar/bulaq.htm "مطبعة بولاق" [2]: http://scripts.sil.org/OFL "رخصة الخطوط المفتوحة" amiri-1.000/README.md000066400000000000000000000036141434272261000140770ustar00rootroot00000000000000[![Build](https://github.com/aliftype/amiri/actions/workflows/build.yml/badge.svg)](https://github.com/aliftype/amiri/actions/workflows/build.yml) Amiri Font ========== Amiri (أميري) is a classical Arabic typeface in Naskh style for typesetting books and other running text. Amiri is a revival of the beautiful typeface pioneered in early 20th century by [Bulaq Press][1] in Cairo, also known as Amiria Press, after which the font is named. The uniqueness of this typeface comes from its superb balance between the beauty of Naskh calligraphy on one hand, the constraints and requirements of elegant typography on the other. Also, it is one of the few metal typefaces that were used in typesetting the Koran, making it a good source for a digital typeface to be used in typesetting Koranic verses. Amiri project aims at the revival of the aesthetics and traditions of Arabic typesetting, and adapting it to the era of digital typesetting, in a publicly available form. Amiri is a free and open source project that everyone is encouraged to use and modify. Amiri is available under the terms of [Open Font License][2], see the included license file for more details. Latest version of the Amiri font can be obtained from its web site: > http://amirifont.org Contributing ------------ To edit the font sources, you will need FontForge, preferably the latest version. To install FontForge on Debian and Ubuntu: $ sudo apt-get install fontforge You can then open the source files in FontForge and start editing, either from GUI or from the command line: $ fontforge sources/Amiri-Regular.sfd To build the fonts you need a few Python packages: $ python -m venv amiri $ . amiri/bin/activate $ pip install -r requirements.txt To build the font files run: $ make ttf [1]: http://www.bibalex.org/bulaqpress/en/bulaq.htm "The Bulaq Press" [2]: http://scripts.sil.org/OFL "The Open Font License" amiri-1.000/TODO.md000066400000000000000000000020101434272261000136740ustar00rootroot00000000000000Mark placement issues: * الْحَمْدُ * اِلَيْه * يَبْدُو * مهيّأ * وَلَقَدْ يَسَّرْنَا الْقُرْآنَ لِلذِّكْرِ فَهَلْ مِنْ مُدَّكِرٍ * قَطِعُ * لِحِ * الخَطّ * الحُلَل Glyph clash: * پیر * ثتك * مزعج * كحكي * تثبت * التَشكيلي * بمثناة Needed contextual forms: * Raised Baa: التجسسية. * Heh between Baa and final Yaa: بیٹھی vs بينهي (check if this form is desired here). * Final Raa : عجز هر. * Final Meem: عم نعم جم معجم فم هم لهم. * Revive old narrow Alef and use it after Kaf-Baa or seen/sad: كبا سا صا. * Centered dots in يا يأ بأ پا etc. * Final Yaa: بعجي. * نكو vs نكر. Alternates: * Shorter parenthesis, as a stylistic set, or cap feature? * Alt period. Misc: * Sub and super scripts. * Smooth the top of ß. The manual: * Link from the main website. * HTML version? * Section on the history and development of Amiri. amiri-1.000/documentation/000077500000000000000000000000001434272261000154655ustar00rootroot00000000000000amiri-1.000/documentation/Documentation-Arabic.css000066400000000000000000000032361434272261000221730ustar00rootroot00000000000000@font-face { font-family: Amiri; font-style: normal; font-weight: 400; src: local(Amiri), url('../Amiri-Regular.ttf'); } @font-face { font-family: Amiri; font-style: normal; font-weight: 700; src: local(Amiri Bold), url('../Amiri-Bold.ttf'); } @font-face { font-family: Amiri; font-style: italic; font-weight: 400; src: local(Amiri Italic), url('../Amiri-Italic.ttf'); } @font-face { font-family: Amiri; font-style: italic; font-weight: 700; src: local(Amiri Bold Italic), url('../Amiri-BoldItalic.ttf'); } html { direction: rtl; line-height: 1.8; max-width: 800px; margin: 20px auto; text-align: justify; font-family: Amiri, serif; font-size: 16pt; color: #404040; background-color: #fffef8; font-feature-settings: "pnum" 1; } table { width: 80%; margin: auto; border-collapse: collapse; } a { text-decoration: none; color: #ad000d; } tt, code { background: #E6E6E6; font-family: "NoName Fixed", monospace; font-size: 90%; } table, td, th { /* border:1px solid black;*/ padding:0px 15px 10px; } th { border-bottom: 2px solid #ad000d; } td { padding: 9px 8px 0px; } h1, h2, h3 { font-weight: normal; text-align: center; } h3 { font-style: italic; } .tnum { font-feature-settings: "pnum" 0; font-feature-settings: "tnum" 1; } .ss01 { font-feature-settings: "ss01" 1; } .ss02 { font-feature-settings: "ss02" 1; } .ss03 { font-feature-settings: "ss03" 1; } .ss04 { font-feature-settings: "ss04" 1; } .ss05 { font-feature-settings: "ss05" 1; } .ss06 { font-feature-settings: "ss06" 1; } .ss07 { font-feature-settings: "ss07" 1; } .ss08 { font-feature-settings: "ss08" 1; } amiri-1.000/documentation/Documentation-Arabic.html000066400000000000000000000527151434272261000223550ustar00rootroot00000000000000 الخط الأمیری

الخط الأمیری

الخط الأمیری خط نسخی موجه لطباعة الكتب و النصوص الطویلة، و هو إحیاء و محاكاة للخط الطباعی الجمیل الذی تمیزت به مطبعة بولاق منذ أوائل القرن العشرین.

یتمیز خط المطابع الأمیریة بجمالیته و مراعاته لفن الخط العربی، بأسلوب نسخی جمیل، و فی ذات الوقت یراعی متطلبات الطباعة و القیود التی تفرضها، من غیر إفراط فی جانب علىٰ حساب الآخر. و لهذا یتمیز بمناسبته للصف الطباعی عموما، و لصف الكتب خصوصا. و قد استُخدِم هذا الخط فی طباعة المصحف الأمیری، و هو من المصاحف القلیلة التی طبعت بالصف المعدنی و لم یخطها خطاط بیده، و هذا یجعله مادة خصبة لبناء خط حاسوبی مناسب لصف النصوص القرآنیة.

یهدف مشروع الخط الأمیری إلىٰ إحیاء تقالید و جمالیات الطباعة العربیة و موائمتها لتقنیات عصر الحواسیب، مع إتاحتها للعموم.

الخصائص

یدعم الخط الأمیری كل الحروف و الرموز العربیة فی الإصدارة السادسة من معیار یونیكود مما یجعله مناسبا لكتابة أی لغة من اللغات التی تستخدم الخط العربی و مدعومة فی یونیكود، مثل الكردیة و الفارسیة و الأردیة و الباشتو و الملایویة و الهوسا و الولفیة، علىٰ سبیل المثال لا الحصر. یشمل هذا أیضا كل رموز و علامات الضبط القرآنی فی یونیكود، راجع الملاحظات حول النصوص القرآنیة لمزید من التفاصیل.

أوبن تیب

یستخدم الخط الأمیری تقنیة أوبن تیب للخطوط الحاسوبیة الذكیة التی تتیح تحكما واسعا فی أشكال الحروف حسب السیاق المحیط بها و فی تموضع علامات التشكیل، و هی تقنیة مدعومة فی أغلب أنظمة التشغیل الحدیثة. یستخدم الخط الأمیری تقنیة أوبن تیب بشكل مكثف قلما تجاریه أی من الخطوط الحاسوبیة الأخرىٰ و لذا قد تحدث مشاكل عند استخدامه مع البرمجیات التی لا تطبّق معیار أوبن تیب بدرجة كافیة.

لفظ الجلالة

یأخد لفظ الجلالة فی خط النسخ شكلا خاصا به یختلف عن الشكل العادی للتتابع لام لام هاء. یدعم الخط الأمیری الشكل الخاص للفظ الجلالة سواء أتی منفردا: ”الله“، أو معطوفا بالفاء: ”فلله“، أو مجرورا باللام: ”لله“.

یضع الخط شدة و ألفا صغیرة علىٰ اللام الثانیة إن لم تكن مُشَكَّلة، أما فی حال شُكلت فيُترك تشكیلها كما هو: ”اللَّه“.

یستخدم الخط مجموعة من القواعد تحدد متىٰ یستخدم الشكل الخاص بلفظ الجلالة لتفادی استخدامه مع الألفاظ التی تتركب من نفس تتابع الحروف (راجع هذا النقاش للاطلاع علىٰ تفاصیل أكثر حول أصل الفكرة و صاحبها):

  • یأخذ التتابع لله شكل لفظ الجلالة فی الحالات التالیة:
    • مسبوقا بألف غیر مهموزة أو ألف ممدودة أو ألف وصل: الله، آلله، ٱلله.
      • الألف غیر مسبوقة بأی حرف، أو:
      • مسبوقة بهمزة أو باء أو تاء أو فاء أو كاف أو هاء أو واو: ءالله، بالله، تالله، فالله، كالله، هالله، والله.
    • مسبوقا بفاء: فلله.
      • الفاء غیر مشكلة أو مشكلة بالفتح.
    • اللام الأولىٰ غیر مشكلة أو مشكلة بالكسر.
    • اللام الثانیة غیر مشكلة أو مشكلة بالشدة أو بالشدة و الفتحة أو الشدة و الألف الصغیرة.

فمثلا عبدالله تظهر ”عبدالله“ لأن الألف مسبوقة بدال، و الصواب فصلها بمسافة عبد الله لتظهر ”عبد الله“. و لكتابة كلمة فلَّلَهُ (من الجذر ”فلّ“) یكفی تشكیل اللام الأولىٰ بالشدة لتفادی استخدام شكل لفظ الجلالة: ”فلّله“. و كلمة خالله لن تأخذ شكل لفظ الجلالة ”خالله“، حتىٰ دون تشكیلها.

الأرقام

یدعم الخط الأمیری أربعة مجموعات من الأرقام العربیة المشرقیة:

٠١٢٣٤٥٦٧٨٩
و هی الأرقام المستخدمة فی مصر و غیرها من بلاد المشرق العربی، و یمكن كتابتها باستخدام رموز یونیكود U+0660U+0669 أو مباشرة من لوحة المفاتیح التی تدعمها.
۰۱۲۳۴۵۶۷۸۹
و هی الأرقام المستخدمة فی اللغة الفارسیة، و یمكن كتابتها باستخدام رموز یونیكود U+06F0U+06F9، أو مباشرة من لوحة المفاتیح التی تدعمها.
۰۱۲۳۴۵۶۷۸۹
و هی المستخدمة فی اللغة الأردیة. لا تحتوی یونیكود رموزا مستقلة لهذه الأرقام، و لاستخدامها علیك استخدام الأرقام الفارسیة و جعل لغة النص الأردیة و إذا كان البرنامج یدعم خصائص أوبن تیب المتقدمة فستُفعّل التنویعة الأردیة تلقائيًا.
۰۱۲۳۴۵۶۷۸۹
و هی الأرقام المستخدمة فی اللغة السندیة و ینطبق علیها ما ینطبق علىٰ الأرقام الأردیة مع استخدام اللغة السندیة بالطبع.
۰۱۲۳۴۵۶۷۸۹
مثل سابقتیها، لكن للكشمیریة.

العلامات المحیطة للأرقام

فی یونیكود عدد من العلامات العربیة الخاصة التی تضم الأرقام داخلها، أی إذا تبعت أی من هذه العلامات برقم أو أكثر فإنها تحیط هذا الرقم. یدعم الخط الأمیری هذا العلامات، و الجدول التالی یسرد كل علامة و رقمها فی یونیكود و أقصی عدد من الأرقام یمكن أن تحیطه كل علامة (أی أرقام أكثر من هذا العدد ستكون خارج العلامة). لاحظ أن الأرقام یجب أن تتبع العلامة مباشرة دون أی فاصل بینها و لا حتىٰ مسافة فارغة.

            یونیكود عدد الأرقام مثال
علامة الرقم U+0600 ٤ ؀١٢٣٤
علامة السنة U+0601 ٤ ؁١٢٣٤
علامة الحاشیة U+0602 ٢ ؂١٢
علامة الصفحة U+0603 ٣ ؃١٢٣
علامة سموت U+0604 ٤ ؄١٢٣٤
رقم الآیة U+06DD ٣ ۝١٢٣

الخصائص الاختیاریة

یحتوی الخط الأمیری علىٰ بعض الخصائص غیر المفعلة مبدئیا و التی یمكن تفعیلها من البرمجیات التی تتیح التحكم فی تفعیل و تعطیل خیارات أوبن تیب.

pnum ‏(Proportional Numbers)
الأرقام متغیرة العرض. لكل الأرقام فی الخط الأمیری نفس العرض بحیث تظهر بشكل مناسب فی الجداول و غیرها من الاستخدامات التی لا یلائمها أن یختلف العرض من رقم لآخر. عند تفعیل هذه الخاصیة سيُصبح عرض الأرقام متغیرا بما یناسب شكل كل رقم، لاستخدامها فی الحالات التی لا یناسبها العرض الموحد.
ثابتة متغیرة
٠١٢٣٤٥٦٧٨٩ ٠١٢٣٤٥٦٧٨٩
١١١١١١١١١١ ١١١١١١١١١١
٨٨٨٨٨٨٨٨٨٨ ٨٨٨٨٨٨٨٨٨٨
ss01 ‏(Stylistic Set 1)
إذا أتت الباء (أو ما شابهها من الحروف المنقوطة من أسفل مثل پ) بعد راء أو واو أو ما شابههما من الحروف، تتحرك النقطة إلىٰ ما أسفل الراء أو الواو لتفادی التلامس. فمثلا عند تفعیل هذه الخاصیة: ”وبه“، ”ربها“، ”فربت“، بینما المبدئی هو توسیع المسافة قلیلا بین الراء و الباء: ”وبه“، ”ربها“، ”فربت“.
ss02 ‏(Stylistic Set 2)
عند تفعیل هذه الخاصیة یأخذ تتابع المیم المتوسطة و الألف شكلا خاصا: ”فیما“، ”لضمان“، ”لقمان“، ”السماء“، بینما المبدئی عدم استعمال أی شكل خاص: ”فیما“، ”لضمان“، ”لقمان“، ”السماء“.
ss03 ‏(Stylistic Set 3)
علامتی @ و & معربتین (علامتی @ &).
ss04 ‏(Stylistic Set 4)
عند تفعیل هذه الخاصیة ستُسخدم تنویعة من حرف گاف أقرب لأسلوب خط النسخ من التنویعة المبدئیة الشائعة فی الخطوط الأخرىٰ والمستوحاة من شكل الحرف فی الخط الفارسی، فتحصل علىٰ ”گ“ و ”‍گ“ بدلا من ”گ“ و ”‍گ“.
ss05 ‏(Stylistic Set 5)
عند تفعیل هذه الخاصیة توضع كسرة الحرف المشدد تحت الشدة و لیس الحرف، أی ”بِّ“ بدلا من ”بِّ“.
ss06 ‏(Stylistic Set 6)
تفعیل هذه الخاصیة یمنع إضافة الشدة و الألف الخنجریة تلقائيًا فوق لفظ الجلالة، فمثلا عند كتابة الله و فلله تصبح ”الله“ و ”فلله“ بدلا من ”الله“ و ”فلله“.
ss07 ‏(Stylistic Set 7)
تفعیل هذه الخاصیة یلغی میزة الكشیدة المقوسة، فمثلا محمـــــــد تصبح ”محمـــــــد“ بدلا من ”محمـــــــد“.
ss08 ‏(Stylistic Set 8)
تفعیل هذه الخاصیة یفعل التنویعة المقلوبة من الفاصلة و الفاصلة المنقوطة كالتی تستخدم فی السندیة و الجاویة، فتصبح ”،؛“ بدلا من ”،؛“.

النصوص القرآنیة

تدعم یونیكود أغلب الرموز و العلامات المطلوبة فی رسم المصاحف، لكن توجد بعض المشاكل و العلامات المتشابهة و التی نوضح هنا ما نراه أفضل الطرق لترمیز النص القرآنی فی یونیكود، و التی یدعمها الخط الأمیری.

الهمزة المفردة (ء)

علىٰ خلاف قواعد الإملاء الحدیثة، إذا أتت الهمزة المفردة فی وسط الكلمة بین حرفین یتصل أحدهما بالآخر، فإنها لا ترسم علىٰ نبرة كما فی ”شیءا“، أو تقلب ألف مد مثل ”لءادم“، بل ترسم فی الفراغ بین الحرفین دون التأثیر علىٰ اتصالهما. للأسف، الهمزة المفردة فی یونیكود حرف فاصل، أی إنها إن أتت بین حرفین متصلین تفصلهما، لذا إذا استعملت الهمزة المفردة فی الكلمتین السابقتین مع الخطوط العادیة فستظهران ”شی‌ء‌ا“ و ”ل‌ء‌ادم“. یدعم الخط الأمیری الهمزة فی وسط الكلمة بالمخالفة لقواعد یونیكود الحالیة لخطئها، لذا فی تلك الحالات یكفی استخدام الهمزة المفردة (ء) و رمزها U+0621 و ستظهر الكلمة بشكلها الصحیح، و نأمل فی المستقبل أن تُصوّب قواعد یونیكود.

الحروف الصغیرة

الألف الصغیرة (◌ٰ)
رسم المصاحف المستخدمة فی بلاد المشرق العربی یحتوی نوعین مختلفین من الألف الصغیرة، الأولىٰ توضع فوق الحرف لتدل علىٰ أنه یقلب ألفا، كما فی ”الصلوٰة“ و ”موسىٰ“ و هذا الحرف موجود فی یونیكود، و رمزه U+0670. الألف الصغیرة الأخرىٰ تدل علىٰ الألف المتروكة فی الرسم العثمانی و لذا تأتی بعد الحرف و لیست فوقه، مثل ”هـٰذا“ و ”ذ ٰلك“، لكن لا تحتوی یونیكود علىٰ رمز مستقل لهذه الألف، بل تكتب علىٰ كشیدة إذا أتت بین حرفین متصلین، و علىٰ مسافة غیر فاصلة U+00A0 فی ما عدا ذلك.
الواو (ۥ) و الیاء (ۦ) الصغیرتین
تحتوی یونیكود علىٰ واوین و یائین، واحدة مفردة لتستخدم فی آخر الكلمة كما فی ”رسولهۥ“ و ”رسولهۦ“ أو بعد حرف لا یتصل بما بعده مثل ”داوۥد“، و رمزیهما U+06E5 و U+06E6 علىٰ التوالی، و الأخرىٰ للاستخدام فی وسط الكلمة و توضع فوق تطویل كما فی ”إبراهـۧم“ و ”لیسـࣳءوا“، و رمزیهما U+06E7 و U+08F3 علىٰ التوالی.

علامة المد اللازم (◌ۤ)

تحتوی یونیكود علامتی مدة، الأولىٰ تستخدم مع الألف غیر المهموزة لتكوین ألف المد (آ)، و رمزها U+0653، و هذه لا تأتی فی رسم المصحف، و الأخرىٰ للدلالة علىٰ المد اللازم كما فی ”الۤمۤ“، و رمزها U+06E4، و هی المستخدمة فی رسم المصحف، لذا ینبغی عدم الخط بینهما لأن لكل واحدة خصائص فی الخط تناسب الاستخدام الذی وضعت له.

التنوین

یفرق رسم المصاحف بین نوعین من التنوین، التنوین المتراكب ”◌ً ◌ٌ ◌ٍ“، والتنوین المتتابع ”◌ࣰ ◌ࣱ ◌ࣲ“. التنوین المتراكب هو التنوین المعتاد المتاح فی لوحة المفاتیح و رموزه U+064B و U+064C و U+064D علىٰ التوالی. التنوین المتتابع لم يَضف إلا فی الإصدارة ٦٫١ من معیار یونیكود (صدرت فی ینایر ٢٠١٢)، و رموزه U+08F0 و U+08F1 و U+08F2 علىٰ التوالی.

الیاء

فی أغلب المصاحف لا تنقط الیاء إذا أتت مفردة أو فی آخر الكلمة، أی تكتب ”ی“ و ”‍ی“ (وهو الإملاء الشائع فی مصر أیضا). تحتوی یونیكود علىٰ یاء خاصة رمزها U+06CC لا تختلف عن الیاء العادیة إلا فی عدم نقطها فی هاتین الحالتین، و لذا تناسب هذا الاستخدام. ینبغی عدم الخلط بین هذه الیاء و الألف المقصورة التی لا تنقط بغض النظر عن موقعها فی الكلمة، مثل ”هدىٰهم“ و ”ءاتىٰه“ و ”موسىٰ“.

المشاكل المعروفة

لن یعمل الخط الأمیری بكامل مزایاه مع البرمجیات التی لا تدعم خصائص أوبن تیب بشكل سلیم، أو لا تدعمها علىٰ الإطلاق.

المساواة بالكشیدة فی میكروسوفت أوفیس غیر متوافقة مع الخط الأمیری، و یجب استخدام نوع مساواة آخر للحصول علىٰ نتائج مقبولة.

amiri-1.000/documentation/Documentation-Arabic.md000066400000000000000000000424651434272261000220120ustar00rootroot00000000000000--- title: 'الخط الأمیری' keywords: [خط, عربی, مطبعة, أمیریة, أمیری, یونیكود, أوبن تیب] --- الخط الأمیری خط نسخی موجه لطباعة الكتب و النصوص الطویلة، و هو إحیاء و محاكاة للخط الطباعی الجمیل الذی تمیزت به مطبعة بولاق منذ أوائل القرن العشرین. یتمیز خط المطابع الأمیریة بجمالیته و مراعاته لفن الخط العربی، بأسلوب نسخی جمیل، و فی ذات الوقت یراعی متطلبات الطباعة و القیود التی تفرضها، من غیر إفراط فی جانب علىٰ حساب الآخر. و لهذا یتمیز بمناسبته للصف الطباعی عموما، و لصف الكتب خصوصا. و قد استُخدِم هذا الخط فی طباعة المصحف الأمیری، و هو من المصاحف القلیلة التی طبعت بالصف المعدنی و لم یخطها خطاط بیده، و هذا یجعله مادة خصبة لبناء خط حاسوبی مناسب لصف النصوص القرآنیة. یهدف مشروع الخط الأمیری إلىٰ إحیاء تقالید و جمالیات الطباعة العربیة و موائمتها لتقنیات عصر الحواسیب، مع إتاحتها للعموم. # الخصائص یدعم الخط الأمیری كل الحروف و الرموز العربیة فی الإصدارة السادسة من معیار [یونیكود] مما یجعله مناسبا لكتابة أی لغة من اللغات التی تستخدم الخط العربی و مدعومة فی یونیكود، مثل الكردیة و الفارسیة و الأردیة و الباشتو و الملایویة و الهوسا و الولفیة، علىٰ سبیل المثال لا الحصر. یشمل هذا أیضا كل رموز و علامات الضبط القرآنی فی یونیكود، راجع [الملاحظات حول النصوص القرآنیة](#النصوص-القرآنیة) لمزید من التفاصیل. ## أوبن تیب یستخدم الخط الأمیری تقنیة [أوبن تیب] للخطوط الحاسوبیة الذكیة التی تتیح تحكما واسعا فی أشكال الحروف حسب السیاق المحیط بها و فی تموضع علامات التشكیل، و هی تقنیة مدعومة فی أغلب أنظمة التشغیل الحدیثة. یستخدم الخط الأمیری تقنیة أوبن تیب بشكل مكثف قلما تجاریه أی من الخطوط الحاسوبیة الأخرىٰ و لذا قد تحدث مشاكل عند استخدامه مع البرمجیات التی لا تطبّق معیار أوبن تیب بدرجة كافیة. ### لفظ الجلالة یأخد لفظ الجلالة فی خط النسخ شكلا خاصا به یختلف عن الشكل العادی للتتابع لام لام هاء. یدعم الخط الأمیری الشكل الخاص للفظ الجلالة سواء أتی منفردا: ”الله“، أو معطوفا بالفاء: ”فلله“، أو مجرورا باللام: ”لله“. یضع الخط شدة و ألفا صغیرة علىٰ اللام الثانیة إن لم تكن مُشَكَّلة، أما فی حال شُكلت فيُترك تشكیلها كما هو: ”اللَّه“. یستخدم الخط مجموعة من القواعد تحدد متىٰ یستخدم الشكل الخاص بلفظ الجلالة لتفادی استخدامه مع الألفاظ التی تتركب من نفس تتابع الحروف (راجع [هذا النقاش] للاطلاع علىٰ تفاصیل أكثر حول أصل الفكرة و صاحبها): * یأخذ التتابع `لله` شكل لفظ الجلالة فی الحالات التالیة: * مسبوقا بألف غیر مهموزة أو ألف ممدودة أو ألف وصل: `الله`، `آلله`، `ٱلله`. * الألف غیر مسبوقة بأی حرف، أو: * مسبوقة بهمزة أو باء أو تاء أو فاء أو كاف أو هاء أو واو: `ءالله`، `بالله`، `تالله`، `فالله`، `كالله`، `هالله`، `والله`. * مسبوقا بفاء: `فلله`. * الفاء غیر مشكلة أو مشكلة بالفتح. * اللام الأولىٰ غیر مشكلة أو مشكلة بالكسر. * اللام الثانیة غیر مشكلة أو مشكلة بالشدة أو بالشدة و الفتحة أو الشدة و الألف الصغیرة. فمثلا `عبدالله` تظهر ”عبدالله“ لأن الألف مسبوقة بدال، و الصواب فصلها بمسافة `عبد الله` لتظهر ”عبد الله“. و لكتابة كلمة `فلَّلَهُ` (من الجذر ”فلّ“) یكفی تشكیل اللام الأولىٰ بالشدة لتفادی استخدام شكل لفظ الجلالة: ”فلّله“. و كلمة `خالله` لن تأخذ شكل لفظ الجلالة ”خالله“، حتىٰ دون تشكیلها. ### الأرقام یدعم الخط الأمیری أربعة مجموعات من الأرقام العربیة المشرقیة: [٠١٢٣٤٥٦٧٨٩]{lang=ar .tnum} : و هی الأرقام المستخدمة فی مصر و غیرها من بلاد المشرق العربی، و یمكن كتابتها باستخدام رموز یونیكود `U+0660`–`U+0669` أو مباشرة من لوحة المفاتیح التی تدعمها. [۰۱۲۳۴۵۶۷۸۹]{lang=fa .tnum} : و هی الأرقام المستخدمة فی اللغة الفارسیة، و یمكن كتابتها باستخدام رموز یونیكود `U+06F0`–`U+06F9`، أو مباشرة من لوحة المفاتیح التی تدعمها. [۰۱۲۳۴۵۶۷۸۹]{lang=ur .tnum} : و هی المستخدمة فی اللغة الأردیة. لا تحتوی یونیكود رموزا مستقلة لهذه الأرقام، و لاستخدامها علیك استخدام الأرقام الفارسیة و جعل لغة النص الأردیة و إذا كان البرنامج یدعم خصائص أوبن تیب المتقدمة فستُفعّل التنویعة الأردیة تلقائيًا. [۰۱۲۳۴۵۶۷۸۹]{lang=sd .tnum} : و هی الأرقام المستخدمة فی اللغة السندیة و ینطبق علیها ما ینطبق علىٰ الأرقام الأردیة مع استخدام اللغة السندیة بالطبع. [۰۱۲۳۴۵۶۷۸۹]{lang=ks .tnum} : مثل سابقتیها، لكن للكشمیریة. ### العلامات المحیطة للأرقام فی یونیكود عدد من العلامات العربیة الخاصة التی تضم الأرقام داخلها، أی إذا تبعت أی من هذه العلامات برقم أو أكثر فإنها تحیط هذا الرقم. یدعم الخط الأمیری هذا العلامات، و الجدول التالی یسرد كل علامة و رقمها فی یونیكود و أقصی عدد من الأرقام یمكن أن تحیطه كل علامة (أی أرقام أكثر من هذا العدد ستكون خارج العلامة). لاحظ أن الأرقام یجب أن تتبع العلامة مباشرة دون أی فاصل بینها و لا حتىٰ مسافة فارغة.             یونیكود عدد الأرقام مثال ------------ --------- ------------- ------------ علامة الرقم `U+0600` ٤ ؀١٢٣٤ علامة السنة `U+0601` ٤ ؁١٢٣٤ علامة الحاشیة `U+0602` ٢ ؂١٢ علامة الصفحة `U+0603` ٣ ؃١٢٣ علامة سموت `U+0604` ٤ ؄١٢٣٤ رقم الآیة `U+06DD` ٣ ۝١٢٣ ### الخصائص الاختیاریة یحتوی الخط الأمیری علىٰ بعض الخصائص غیر المفعلة مبدئیا و التی یمكن تفعیلها من البرمجیات التی تتیح التحكم فی تفعیل و تعطیل خیارات أوبن تیب. `pnum` ‏(_Proportional Numbers_) : الأرقام متغیرة العرض. لكل الأرقام فی الخط الأمیری نفس العرض بحیث تظهر بشكل مناسب فی الجداول و غیرها من الاستخدامات التی لا یلائمها أن یختلف العرض من رقم لآخر. عند تفعیل هذه الخاصیة سيُصبح عرض الأرقام متغیرا بما یناسب شكل كل رقم، لاستخدامها فی الحالات التی لا یناسبها العرض الموحد. : ثابتة متغیرة ------------------ ------- [٠١٢٣٤٥٦٧٨٩]{.tnum} ٠١٢٣٤٥٦٧٨٩ [١١١١١١١١١١]{.tnum} ١١١١١١١١١١ [٨٨٨٨٨٨٨٨٨٨]{.tnum} ٨٨٨٨٨٨٨٨٨٨ `ss01` ‏(_Stylistic Set 1_) : إذا أتت الباء (أو ما شابهها من الحروف المنقوطة من أسفل مثل پ) بعد راء أو واو أو ما شابههما من الحروف، تتحرك النقطة إلىٰ ما أسفل الراء أو الواو لتفادی التلامس. فمثلا عند تفعیل هذه الخاصیة: [”وبه“، ”ربها“، ”فربت“]{.ss01}، بینما المبدئی هو توسیع المسافة قلیلا بین الراء و الباء: ”وبه“، ”ربها“، ”فربت“. `ss02` ‏(_Stylistic Set 2_) : عند تفعیل هذه الخاصیة یأخذ تتابع المیم المتوسطة و الألف شكلا خاصا: [”فیما“، ”لضمان“، ”لقمان“، ”السماء“]{.ss02}، بینما المبدئی عدم استعمال أی شكل خاص: ”فیما“، ”لضمان“، ”لقمان“، ”السماء“. `ss03` ‏(_Stylistic Set 3_) : علامتی @ و & معربتین ([علامتی @ &]{.ss03}). `ss04` ‏(_Stylistic Set 4_) : عند تفعیل هذه الخاصیة ستُسخدم تنویعة من حرف گاف أقرب لأسلوب خط النسخ من التنویعة المبدئیة الشائعة فی الخطوط الأخرىٰ والمستوحاة من شكل الحرف فی الخط الفارسی، فتحصل علىٰ [”گ“ و ”‍گ“]{.ss04} بدلا من ”گ“ و ”‍گ“. `ss05` ‏(_Stylistic Set 5_) : عند تفعیل هذه الخاصیة توضع كسرة الحرف المشدد تحت الشدة و لیس الحرف، أی [”بِّ“]{.ss05} بدلا من ”بِّ“. `ss06` ‏(_Stylistic Set 6_) : تفعیل هذه الخاصیة یمنع إضافة الشدة و الألف الخنجریة تلقائيًا فوق لفظ الجلالة، فمثلا عند كتابة `الله` و `فلله` تصبح [”الله“]{.ss06} و [”فلله“]{.ss06} بدلا من ”الله“ و ”فلله“. `ss07` ‏(_Stylistic Set 7_) : تفعیل هذه الخاصیة یلغی میزة الكشیدة المقوسة، فمثلا `محمـــــــد` تصبح [”محمـــــــد“]{.ss07} بدلا من ”محمـــــــد“. `ss08` ‏(_Stylistic Set 8_) : تفعیل هذه الخاصیة یفعل التنویعة المقلوبة من الفاصلة و الفاصلة المنقوطة كالتی تستخدم فی السندیة و الجاویة، فتصبح [”،؛“]{.ss08} بدلا من ”،؛“. ## النصوص القرآنیة تدعم یونیكود أغلب الرموز و العلامات المطلوبة فی رسم المصاحف، لكن توجد بعض المشاكل و العلامات المتشابهة و التی نوضح هنا ما نراه أفضل الطرق لترمیز النص القرآنی فی یونیكود، و التی یدعمها الخط الأمیری. ### الهمزة المفردة (ء) علىٰ خلاف قواعد الإملاء الحدیثة، إذا أتت الهمزة المفردة فی وسط الكلمة بین حرفین یتصل أحدهما بالآخر، فإنها لا ترسم علىٰ نبرة كما فی ”شیءا“، أو تقلب ألف مد مثل ”لءادم“، بل ترسم فی الفراغ بین الحرفین دون التأثیر علىٰ اتصالهما. للأسف، الهمزة المفردة فی یونیكود حرف فاصل، أی إنها إن أتت بین حرفین متصلین تفصلهما، لذا إذا استعملت الهمزة المفردة فی الكلمتین السابقتین مع الخطوط العادیة فستظهران ”شی‌ء‌ا“ و ”ل‌ء‌ادم“. یدعم الخط الأمیری الهمزة فی وسط الكلمة بالمخالفة لقواعد یونیكود الحالیة لخطئها، لذا فی تلك الحالات یكفی استخدام الهمزة المفردة (ء) و رمزها `U+0621` و ستظهر الكلمة بشكلها الصحیح، و نأمل فی المستقبل أن تُصوّب قواعد یونیكود. ### الحروف الصغیرة الألف الصغیرة (◌ٰ) : رسم المصاحف المستخدمة فی بلاد المشرق العربی یحتوی نوعین مختلفین من الألف الصغیرة، الأولىٰ توضع فوق الحرف لتدل علىٰ أنه یقلب ألفا، كما فی ”الصلوٰة“ و ”موسىٰ“ و هذا الحرف موجود فی یونیكود، و رمزه `U+0670`. الألف الصغیرة الأخرىٰ تدل علىٰ الألف المتروكة فی الرسم العثمانی و لذا تأتی بعد الحرف و لیست فوقه، مثل ”هـٰذا“ و ”ذ ٰلك“، لكن لا تحتوی یونیكود علىٰ رمز مستقل لهذه الألف، بل تكتب علىٰ كشیدة إذا أتت بین حرفین متصلین، و علىٰ مسافة غیر فاصلة `U+00A0` فی ما عدا ذلك. الواو (ۥ) و الیاء (ۦ) الصغیرتین : تحتوی یونیكود علىٰ واوین و یائین، واحدة مفردة لتستخدم فی آخر الكلمة كما فی ”رسولهۥ“ و ”رسولهۦ“ أو بعد حرف لا یتصل بما بعده مثل ”داوۥد“، و رمزیهما `U+06E5` و `U+06E6` علىٰ التوالی، و الأخرىٰ للاستخدام فی وسط الكلمة و توضع فوق تطویل كما فی ”إبراهـۧم“ و ”لیسـࣳءوا“، و رمزیهما `U+06E7` و `U+08F3` علىٰ التوالی. ### علامة المد اللازم (◌ۤ) تحتوی یونیكود علامتی مدة، الأولىٰ تستخدم مع الألف غیر المهموزة لتكوین ألف المد (آ)، و رمزها `U+0653`، و هذه لا تأتی فی رسم المصحف، و الأخرىٰ للدلالة علىٰ المد اللازم كما فی ”الۤمۤ“، و رمزها `U+06E4`، و هی المستخدمة فی رسم المصحف، لذا ینبغی عدم الخط بینهما لأن لكل واحدة خصائص فی الخط تناسب الاستخدام الذی وضعت له. ### التنوین یفرق رسم المصاحف بین نوعین من التنوین، التنوین المتراكب ”◌ً ◌ٌ ◌ٍ“، والتنوین المتتابع ”◌ࣰ ◌ࣱ ◌ࣲ“. التنوین المتراكب هو التنوین المعتاد المتاح فی لوحة المفاتیح و رموزه `U+064B` و `U+064C` و `U+064D` علىٰ التوالی. التنوین المتتابع لم يَضف إلا فی الإصدارة ٦٫١ من معیار یونیكود (صدرت فی ینایر ٢٠١٢)، و رموزه `U+08F0` و `U+08F1` و `U+08F2` علىٰ التوالی. ### الیاء فی أغلب المصاحف لا تنقط الیاء إذا أتت مفردة أو فی آخر الكلمة، أی تكتب ”ی“ و ”‍ی“ (وهو الإملاء الشائع فی مصر أیضا). تحتوی یونیكود علىٰ یاء خاصة رمزها `U+06CC` لا تختلف عن الیاء العادیة إلا فی عدم نقطها فی هاتین الحالتین، و لذا تناسب هذا الاستخدام. ینبغی عدم الخلط بین هذه الیاء و الألف المقصورة التی لا تنقط بغض النظر عن موقعها فی الكلمة، مثل ”هدىٰهم“ و ”ءاتىٰه“ و ”موسىٰ“. # المشاكل المعروفة لن یعمل الخط الأمیری بكامل مزایاه مع البرمجیات التی لا تدعم خصائص أوبن تیب بشكل سلیم، أو لا تدعمها علىٰ الإطلاق. المساواة بالكشیدة فی میكروسوفت أوفیس غیر متوافقة مع الخط الأمیری، و یجب استخدام نوع مساواة آخر للحصول علىٰ نتائج مقبولة. [أوبن تیب]: https://ar.wikipedia.org/wiki/%D8%A3%D8%A8%D9%86%E2%80%8C_%D8%AA%D9%8A%D8%A8 "صفحة ویكیبیدیا عن أوبن تیب" [یونیكود]: http://unicode.org/versions/Unicode6.0.0 "یونیكود 6.0" [هذا النقاش]: https://web.archive.org/web/20120724090018/graphics4arab.com/showthread.php?t=3975 amiri-1.000/fonts/000077500000000000000000000000001434272261000137455ustar00rootroot00000000000000amiri-1.000/fonts/Amiri-Bold.ttf000066400000000000000000022270001434272261000164060ustar00rootroot00000000000000pGDEFP^tGPOS@/w$GSUBߠ OS/2szx`cmapChgasptglyfǤ8headΧ&6hhea/4$hmtxYzf8loca2lfhmaxpX name post aprephl_< 1|%As-d,A-+"XKX^2 o CALIF d: l!$:=3XikX iHo$G"n ,U\b/qK<),H~qKAt>4}2a#40+q/++444669900&&>>444>:1[>/<?q/44pzpyry8VWtieryIII\I0I~IlILI=I>Ii++ +:WH}2V0  y4++++++++444444466666666699900&>>>>>>::>k0>111>>>>>>[>[>[>[><?<?<?<?<?` 4q/q/q/q/4444773q/.$o^ICM #|6III\I0I[IQI9I=I>Ii90}2/` +++++++44669>>>>>//<?<?<?[>94494444774991rr+;9+++4>:<?~d:j\\5\\52ly1#1##LM=yz!qKqKs.s.s.s.s.s.3'z3'z4b4b4b4bWWl>Ll>Ll>Ll>Lg:g:{/8 ;-7     + + AA6#LYYYYYYI/  9/o/MMMM00I/R R R R C'C'CC'EJEJE4B'B'''1'1' ,,,%  '^^R 'R 64$8$8$8$8$8$8&&1E00&&1E00&&1E00&&1E00 k%  / '&&1E00I/&&1E00__8___8XX xxxd]]]II //000030303030DDDDDD0000E>>q/q/r r r r W0W0W0W0//////0000444E((%%% 4  4=|/|//4'4''/4'~/?'/w4jA/'H'/H'//'a4T'2'r/r/42'U4z|/l /`' / / /'///// / /|//|//~//~/r//// /////W/|/'2'4//|///(//-(-&'}>//S>,D$p$z$p$y$r$y$8$VG!YI# s.{ s.s.4b4b4bWW7:887:88447'7'nn3'z_!'z6#L7 'g:{/YI/I/--1> 0ns.+63'>z44b{/q/6#a1L7[>N) '/?0g:)<?_!: 27407:8987&'9#8I/4/8:/hBQEQ46Se=].T-Z 2HH_3&2&O3v3? =^5!C )91`&B-C-P/(730#10KbhpE^X|{}k0UAr0p&5E~77P!0mmUWmpW^=UA}mWpIJILIPK=Z% I%%nY-P(7$24PR ,hT(DP i07M-l!- P  LL !G5qnnnnnnns.s.s.s.s.s.s.s.s.s.s.s.s.s.s.s.s.s.s.333333333'''''''''''''zzzzzzzzzzzzz44444444444444444bbbbbbbbbbbbbbbbb{/88{/{ l>l>6#l>6#l>l>l>l>6#6#6#l>l>l>l>l>l>LLLLLLLLLLLLLLLLLL777777 ' ' 'g:g:g:g:g:g:g:g:g:_!_!_!_!WWWWWWWWWWWWWWWW444447:7:7:7:7:7:7:7:7:7:7:8888888888888888888888777'''YYYYYYYYYYYYYI/I/I/I/I/I/I/I/I/II/I#I/I/I//)*)))C=<9<=39C=++++++++++++++++@@@@@@@@@@@@@//////hhhhhhBBBBBBBBBBBBBBBBBQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQEQQQQQ`GuG/44444444444444666666666666666666666666666$6666666666666SSSSSSSSSSSSSSSSS]eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee==========!===]]]]]]]]]]]]]]]]]]p`H}G......T-T-{{TTTTTZZZHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH_3_3_3_3&  //2&2&2&2&2&2&2&2&2&2O2OOOOOOO9OOO99O2################vvvvvvvKvvvKps[L?                           5             ==^==^=^=^=^=^=^=P=!=^=^=^=!=!=P=p!!!!!!!:C:CCCCCCCACCCAAC:              kp)999999999999999991cpYBBBBBBBBBBBBBBBBBeb%b{O=:RlOHHpO=JH 4V@'+%.'X?<%;?#?1';X?'%''-------------------wyFv8vcQNfc\\cQ]\pnCCCCCCCCCCCCCCCCC++++++++++++++++PP$$$$$$$$$$$$$$$$(((((7777777777777777733333333333333333333333333333333333333330000000000/0001###########))))))))))))))))0000000000/000KKKKKKKKKKKKKKKKKKKKKKKKKKKIKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbbbbbbb1bbbbbbbbbbbbb^c{\Lhhhhhhhhhhhhhhhhh^^^^^^^^^^^^^^^^^XXXXXXXXXXX|||||||||||G:2::8:866::8::&&&&&&&&&&&5E8LL8LLLL888L8LL8mL888LLLL7777777777777777777777777777777777PP!!!!!!!0llssslKKKKKKKKKKKKKKKKKK==================Z%Z%Z%Z%Z%Z% ""  5IIIIIIIIIIIIIIIIII%%%%%%%%%%%%%%%%%%%nYnYnYnYnYnY  2vmmtttm==tDDDt=P(PDP-P(P35777777777pYpzz$8&$2222222222222244P44P4P4P4P4P4P4F44P4P4P444F4RRRRRRRR%RRR%%R}o           ,,,,,,,, ,,, ,shhhhhhhhhhhhhhhhh{mTTTTTTTwx((DDPDDPDPDPDPDPDPD9D DPDPDPD D D9D i0'& '#({7777777777777777777777777777777777777777M-M-M-M-M-M-M-M-M-M-M-M-M-M-M-M-M-M-l!l!l!l!l!l!- - - - - - - - - - - - - - - - - - P P P P P P pppppppppppppppppEEEEEEEEEEEEEEEEEaUr0"oH6666666666666666666666]                      wKKKKKKKKKKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbb6 Kb||||-$$$$S$U$$$,$#$$$$"$S$U$$$$$$$$"$ $$|$$W::::>s,888888888887;-7;-7;-7;-7p7wovooo!ooooooooo!oo!o!oooo!ppp7^F{G..`    ;VG."#E;:2"#E,.1  5q s.Q6e -3Kb76 Kbo Y[,<,A H ,-.-0.Y[,<,-! -.-0.! ,$u1u16#16#16#16#16#16#16#16#16#16#16#16#>l> V\87YoYYY878787$$5$$$$$$$$33QQ66ee  HO''\c33KKbb::LL7766  KKbb&YCC{CC{CCCCCCCCCCCCCCC{^RX$S$U$$$,$#$$$$"$S$U$$$$$$$$"$ $$16#,D.C#,5&7  n73r7@/B?9>?7&!?25-\!'!K!!'!_!P!5!u';!'!.kaq}%+Z9 3@ * ^F  %M(  /$0++%G#&}4y*?-}4m!81W%J# $K&"!!zo(K!K!K!K!_!_!_!_'''''5'a9!@3333 FB8((((   ''''!4K!K!K!K!K!''''!9 !9 _3 _3_!3_!3_!3\!P!@ L5!* 5!* O!M 5! :0 FFFF5''''!!!.%.%.%.%kMkMkO((((((a aqqqE-.$i &(0Zz|q\      Z!9 ! !9 u^;  .%.&kMk Mk Mq9 Ma m8m87"99W9,v,vvv!+E)),,&,033,AZX $$S@>8:  )-I-#H#,Yq4OT-3l ,6*ehb}vT3/a29+;9379$$5$$$$$$$$"/Z]z~7  #(%+AWco   " $ & / 0 3 : > B D O t """%.A?rt 0[^{7  #&P $(@V`j   $ & ( 0 2 8 > B D O t """%.APPptv}zTUS ~h)g O;1)j#۵ANML(&`.  123456789:;<=>?@ABCDEFGHIJQRS   T  UVWXYZ%%-k1u~CC/\u  : @2+EWoo=O-E]u-=Ue}Pho<Ne6HZnI2 !!k!"##K#$3$$% %x%%%%&&)&A&S&k&&&&&''1'I'a'y'''''( (!(9(Q(i((((()))1)I)a)y)))))**/*O*g******++'+?+W+o+++++,,,?,_,,,,,---?-O-g------..'.?.Y.s.....///7/Q/i////002%2k3=4458889+99:k:}:;1;;YVYnYYYYYYZZ.ZFZ^ZvZZZZZ[["[2[B[R[j[[[[[\\:\Z\j\\\\\\]]]"]2]B]d]v]]]]]]]^^^*^<^N^^^p^^^^^__"_<_V_p______``8`X`z```aaHaraaabb4bTbtbbbbbcc8c`ccccd d2dXdvdddee*eJejeeeeff,fJfjfffffgg8gVg|gggghh,hThthhhii$iLiliiiij j$jDj\jtjjjjkkk4kTkrkkkkkll:l`llllmmm8m^m|mmmn n(n>nVnnnnnnnoo2oRozooopp.pVpvpppq q2qRqzqqqrr.rVrxrrrsss6sNsnssssstt<t\ttttuu0uPuxuuuvv*vJvjvvvvww:wXw~wwwwxx:xRxxxxxxyyy6yNytyyyyzz.zFzlzzzz{{4{T{r{{{{{| |(|@|X|v||||}},}L}l}}}}}~"~B~b~~~~"Bbz*Jj8Pp(Xp @h*Rt:Z":Zz 2Z"D^x$Dl$Ld_7gCq 1Y )IiAqIi9Y 9aOw%Mu%MmM}-e-U%U Eu%Em=e%UUu/W#5E]m+E]u)AYq 1Iaq-=M]u-=Me} %=M]m}%5GWo?_w|X^y_palãHĞhSe]Uˀr ͳ9AЕьw,պR،@Rnv݈Aޫߒ+*{*nA*g3cil|n)csa%4_&6PM!7`]\UO_ KV|:Dgt Q &    '  >  W `|$4## w-}"2B1AQ6jz}l !!!!!" "B"y"""""""###+#=#O#a#s##$@$%_%&b&'w'()*)*%*+ +,$,-`-./F/0Y01k123C34>45h56i77780899m9:v; ;<-<=:=>#>>?&?<??@[@@A\ABeBCDCDE)EFFGfGHqHIvIJ\JtJJJJJKKK.KNKfK~KKKKKLL&L>LVLnL~LLLLLMM&MFM^M~MMMMMNN6NNN^NvNNNNNOO O8OZOxOOOOPPP4PDPZPrPPPPPQQQ2QRQjQQQQQRR R@R^RnRRRRRSS$S>SVSxSSSSTT$T<TRTbTxTTTTTUU U8UPUpUUUUUVV&VFVdVtVVVVVW W*WBWZWrWWWWWXX"X:XRXjXXXXXXYY*YBYZYjYYYYYYZ Z*ZBZZZrZZZZZZ[["[:[Z[r[[[[[[\\*\B\Z\r\\\\\]],]D]\]t]]]]]]^^,^L^d^|^^^^^__&_>_V_n_____```>`X`p```aa7aGa_aoaaaaaabb'bGbgbbbbbcc'cGc_cwcccccdd'dGdgddddddee'e?e_eweeeeeff/fGf_fwfffffgg'g?gWgggggggghhh7hOhghwhhhhhhii'i?iWigiiiiiijj?j_jwjjjjjkkk7kQkskkkkkll1lCl]lwlllllmm'm?mWmgmmmmmmnn'n?nYnqnnnnoo!o9oIoao{oooopp#pCp[pkpppppq q%qEq]qmqqqqqqrrr9rSrmrrrrrs s%sAsSsmsssssstt)t?tOtgttttttuuu7uIucu{uuuuv v)vKvcvyvvvvvvww/wGw_wwwwwwwxx5xMxexxxxxy y#y3yKykyyyyyz z'zAz[zuzzzzz{{){A{Q{i{{{{{|||7|S|k||||||}}'}?}W}o}}}}}}~~~?~W~o~~~~~ #=Wi-EUm %=Mc{+Cc}9Qi #;Sk3Sk#Cc{#;Sc{?_w !1Iay !AYy9Ii+Ce)?Oe} %=]u+Kk{1Iay )AYq-Mm/G_w/G_?Wo5Me}7Og +Km #;Sk #;[s3K[s5Us3Kc{3Ki )AYi5M]w-=Um1A[q)AQq)9Yq3Kk3Kc{3Kc!AYq)AQi5Me}5M]u%=Uu;Yq+AYq9Qq/?]}-E]u %=Uu%5Meu5Me}5Me7O_w'?Ww 1Iay3Kk?_w+AYq9Qq'GWw'GWw7Ogw7O_3Qi#;Skƒ›³3KkÃÛó#CSqđĩ )AQiŃśŻ +E]ƟƷ1Iaqljǡǹ1Iaȁșȹ !9Yyɉɩ !A[uʏʩ1Keˡ˳/GWw̷̗/?_w͏ͯ1Qk΅Οι!;Umυϕϭ %5Me}ЕЭ-Mgїѯ#;Qqҏұ7Ogӗӯ7OgԝԵ =]uՍ՝յ-E_w֗֯7Ogwח׷7O_ؗد7Qqً٥ٿ /A[uڕڭ 5Me}ۍۭ5Meuܕܭ1Iayݑݡݻ)AYqށޙޱ/G_wߏߧ1Iay)C]u-E]u%=]{7Og3Kc=Um}%=Uu'?Wo?Wo/Og5Me}7Og +Km %=Um %E]u5E]}/Oo/G_w/G_;Sk{ #;[s3Kc{7Ww7Og3Kc!AYq -E[{'?Wo?Wo -Me}5Ee-Me}'?_'?Wo'?Ww5Meu!9Oo3Kc{3Kc?Wo  7 W w        7 O g       ! 9 Q k       ' A [ u        / G W o     !A[u+E]}+C[s-E]w=_w-E]u3Kc !1Ii%?Ue}7Og !9Qi1Qi )9Ww'7Mg)C]w5Oq;[{ +Kk  / O o     !!!1!I!a!y!!!!!""1"I"a"""""##!#A#Y#q#####$ $-$E$]$}$$$$$%%/%G%_%w%%%%%&&'&G&_&w&&&&&''/'O'o'''''(((;([(s(((()))-)E)])u)))))***=*U*u*****+ +-+M+]+}+++++,,-,=,U,m,,,,,---5-U-o------..'.?.W.o.....//)/A/Y/q/////00010I0a0y00000011)1A1Y1y1111122+2C2S2k2222223333K3k33333444+4E4]4}44445 5%555K5e5}55556 6%6E6]6u66666677/7Q7o7777788+8;8Q8i88888899)9I9a999999::7:U:e::::::;;5;M;o;;;;;<<3>>?>_>o>>>>>??%?E?]?m?????@@'@G@_@y@@@@AA!A?AaAyAAAAAABB/BGB_BwBBBBBCC/CMCeC}CCCCD D%D=DMDeDDDDDDE E#E;ESEsEEEEEF F%F=FMFcF{FFFFFGG+GCGcG}GGGGGGH HH5HMHeH}HHHHHII5IOIgIIIIIIJJ/J?JWJgJJJJJJKK/KGK_KKKKKKL L!L9LQLaLLLLLM M!M9MIMiMMMMMNNN)NINiNNNNNOOO1OIOaOOOOPP1PaPPPQ Q)QIQqQQQRRARYRqRRRRRRS S!S9SQSiSSSSSTT!T9TQTiTTTTTTUU1UIUYUqUUUUUUVV)VAVYViVVVVVVW W!W9WQWaW{WWWWWX X#X;XSXkX{XXXXY Y#Y;YSYcYYYYYZZZ3ZCZcZZZZZ[[[+[K[c[{[[[[[\\\3\K\c\s\\\\\\]]/]G]_]u]]]]]]^^;^[^s^^^^^___3_S_k_____``#`;`S`k``````aa+aaaaabbb0bHb`bpbbbbbcc(c@cXchccccccdd d8dHddddee e8ePeheeeeefff0fHf`fxfffffgg0gHg`gxggggghh(h@hXhphhhhhii(i@iXihiiiiijj(j@jXjpjjjjjjkkk.kLkdk|kkkkklll4lLldl|llllmmm6mNm^mnm~mmmmmnn0nHnhnnnnnooo(o8oPohooooopp p8pPphpppppqqq2qTqtqqqqrrr6rFr^rvrrrrrsss6sVsnssssstt&tFtftvtttttuu.uFuVunuuuuuuvv6vNvnvvvvvvww w8wPwhwwwwwwxx(x@x`xxxxxxxyyy(y@yXypyyyyyyz z$z<zLzfz|zzzzz{{{4{L{\{|{{{{|||4|D|d|||||||} }$}<}V}n}}}}~~ ~B~Z~r~~~~~~*BZr2Jb "2Jjz*Jh(@Xp(@^v2JZr,D\t.Nn0H`x0H` @Xp ,D\|.F^v&F^v6Vn6N^v.F^n&>fN~.N~.>Vn&>Nf~Fn.^.^6Nf~.F^v.>Vn&>Nf~6Nf 8P`v&>Vv 8Ph*Ld| "Bbz *Hb,Ld|4Ld0Nn.F^v:\t4Tt<\v *Bbz2Jbz.Fd ,D\t.Pr2Jj2Rp<Tt,D\t*BZz"BZr *Df0H`0Hh6Vn.F^v"D\t<\t$D^*Jbz2Jb0Pp0H`x:\tŒª2RrÊâú:XrĔĶ$<\tŌŬ,D\tƔƴ*BbǂǚǺ *BZrȊȢȺ,NpɈɠ0Hhʈʠʸ0Ppˊˬ>Vv̦̎.F^v͎ͦ;6Nf~ΖήL\tφϞ϶'9K]oЁГХз#5GYk}яѡ_+C[ԂԒԢ$rՂ/ցֽ֣A[}ח׹);^ ڕ/Ic}ۍ۝۽/Og܇ܟܿ'7Rޞ,D\l*BRr6Nf6Nf~.Nf~&6Vv"2Jbr*BRjS[)9Qiy !AYq+C[s<L\5E]'7O_we*:L^p$6HZl~9Qi  ":Rj*BZr2Jbz ":Rj*BZr2J\%5EUeu%5EUeu3Qi7Og/Gg;Ki1Iay-Ec +C[<d$TDl 4\]   i    4 L n       2 H X p        0 H h     >\l">Zl6Vv 8Ph 8Ph$D\t<Tl.vGx0Pp0Pp0Pp0Pp ,Ll  , L l    ! !,!L!l!!!!" ","L"l""""# #,#L#l####$ $,$L$l$$$$% %,%L%l%%%%& &,&L&l&&&&' ','L'l''''( (,(L(l(((() ),)L)l))))+ ++++,F,-S-k-----..#.;.S.k......//3/K/c/{////00030K0c0s000011111E1Y1m11111112 2!252I2]2q222222233=6}67789:;'>?|?@A$ABCCXCDDfDEkFfGsHoI IJLLNyO*OQQS\TfTUViWvX1XYZ[]^1^_2_i_{`D`a}bTbcdefgQhijkl;m,mnopqqstWuJuv?v?vw\xVxzU{Y{k|O} }C}C~~} '?7Oe}+Wo1Iaw,D\tQiO #;SkTl"/G_w/6Nf~)AYq 8PhMe}&>Vnx @6Nf~2Jbx2J`v~4Ld|B~&>Vn5Me J8yQ[ [(@Xp.D\t2Jbz ":Rj‚š²-`ÛLěį+Ig@kU"} !Aj*~ϩEЎѵҳ]KԐ?ձ(֗ m}׍ם׭׽ fڥvߔ&F,>Pbt(:L^p,E^w &?Xq!*3!'3#! f!X:&2#"'&&'&&547647632#"'&   1:m48g0JZ}%&&'&547667[*) )L##L) )*[T#C--C#T}F74'&'7'676[*) )L##L) )*[T#C--C#T3 7676''&7j W'K  =(]95M2#"'&''6766:  vkrL)2672"1&#&'4&5476~ GcbB  ;7DA:8 GcbB  ,9B!=8  T]3&767676'&'&#"! '&&''&763 766$& .28  <Ln< ! MWC5G'"" 6 )*= ( ! $   ^#"'&&'&#"&'&5476327632367632%667632'&7667667&#"'&3?,)   0" 7A0)# gdJ8q(7   #Y7_]P,  #24yXC"" B:42V-% !$   1 %6IPW%.&&'&547632676633##"7&'&S (08"?PR  )  y  9.5!I    g2 %F9.5433276672#"'#"'&67&'#"'&''&!&2676 mQ` ]U 8a `! 3L#*< /!#""+  0# $ J[MT&&''&76! $7367&7676376&'&776'&&''&'&'&'&#"%$k  !,MD:'E64 !$   +-8% # H''  @;c(U    ,)D% 81   ; ' P/s&fP /t&fK9A7667676'&&'&76676'&7'&'&777636%&#"76 O:S)S*R ,=':-@691# & PP>> 8: e  x rR(  < $dNw;[&l %%;D\- 3/ 5M'&'W5''&'Wx'6>%&'&7632%&''&766'&'&76'&'&7"767&b!!$PR  Q ` > H %0 > P0"LXGHRK,|/ kgL L % - #K16632'&'&7676  p$#''D %&  u^%&6A9;8#"'&'&76676 !.+FI6 " I % H*c .5$-7&'&&547676676633#"7&'&Q )07"9^/R  *  y  I  9/5!I    g2 &?J47&767676'&76766766676"''&7767663276'&{j1@%..uNR.#Il#/ =3Q>@<E!B`")6676&''&76'&7767636&. ,d! 'e-    %O%HY) 1J8 )!+o5'&76'&77676&'&7676'&76>   ! 3  /0 /Z,4J8 )3 ,   ) 78?&'47&'567676676'&&'&767676765&'&7o)#: %8 y+P@ 5- # !": &$= 95a  TE(   #"(/U & X 5'&76763&&'&77676J #  7k6E  !0/#*6#&&76277&&'&77676667&k="  S"? 7"$  UB2S ѿ`k& #6* "JH  9!,C,?7327672&'&'&76765&&'&77676"#&76'&77676  4:_I_ P::U (  y   5W"7%   $4  <2 H h16'&&'&567676'41&'&7'6'&&'&7  B%9") (`3 %.  I+dT/   a. -  ~AL 76776 lL  : @:'6''&7667&76&6    (. # 9 &  (02  =n("K^1'lAiD%2#"&&'&&'&&'&&546766766'6654&#"3&&5476(+, , 7(G  =*HH   & 83' 1+! >&3.>Y1#5X.$$QKOH8 ,2#%*_- +" &>6{*:&#"#"'&&'&'&'&7676'&54767647632#"'&GVG8 $n35k6+!1!nB':lY3!  -O>ZGH#-A43 4N&ec2J2'&76'&7&7676;+ '<3  %]7 8J:$2>( 2% 3 /.E*a=&(cQ&( dvL^'cnd#&(d54 s&ed0(+l&//Cq&=+l&/d+lu&/d4&9494&9Vs626&2y5UyZ&U9\9&\0X0e&X5&`&&`6+&+>'th>&h4 T&ek4 &eP4 a&ePh"''&332# 1) ,1#,>&5{O:Fvv&R1XA&B/>) F/K?n&P /Cb=^7cn4 e4?&eeJp>vh6'&776776'&7767M        l  g z@i>E&'&76676'&&''&76'6'&'&7676'&74'&!      .YL )^.!!U   )- !N  s$%.g  p}v[?y@ 6#&'567^     q r8#6'&''&767&764'&&'&6   "M, U2E.)@ ,C 2>',H_ y^80N56''&762376676332766%( ?. 5'.  z  2 &V>  6676'"&#&746766'&#&o%8+'(C|%# 2$!/9 O:! 6'"''&7766 t +  "Z M +/,w)'&7&'&76'&'&276632K5< ,,,3%   >    ,<=$   +wdhWqt<_iD6376"'&  5  ?EH[D6eE"'&776332# E  g'&&'&76667632K 1 .     Q9 $L(+!9 k#"'4676676'&'3 $  '  ,*R& B%  ,>7r6 '&&'''&7667&7667&4D5R +M#     H,'@0C,C&k  y@ 46#&'5677632'&&'&'7632'&&'&57^           q z% C%  w7667&'&76'&'&267632'&'&7676W,,3%   >  %P*7 $-E,<=$   +   > Vc 6''&7&S *[ =&6!b*6 c6'&56'&7') % o RcLX\$\^63276''&''&7{./If 3l  { RVW\ (7%I pI !0N+2''&'&7767676376613(26  |-7 +;&1*KHF &y '$fA@P \ `~@/6'&'&7767&&'&7766! >  A" ;Y\  vX  @++ 3( M  5(# 5 !O =0U$<  =I:jMM6  =aQ -%d en]aW> 6!676'&'''&766  =I:jMM6  >`.%e dn]aWiR!%'&76'&&1&&'&7276Sl?I99F %/8#*ihJI]y  *Q7'&7676763 >I99F"$.8#*ihJJ]y  >#H 373'7ABѩAA{||+l/:FvRWi 6'&'&7o ` > kgL&(H&(oQ&(o2JA10#&(1A'cn1'cn/14?F&e'eJ1+l&/G+lL&/d+l&/+sl&/'d,+ll&/d+l&/+lz&/d+l&/4&9dV4[&9Vs4&9&4&94&9Vs4&94&96T&26}&266&2)6T&2')6&26&26&26&26&2y&Uy&Ujy5&U_Sy5&U(y5&Ujxy5&U'Ey'&Uy&Uy&U9Q&\' Z9&\9&\'0&XvC0&X5&&`7%&+>5>&5>>'{O&5>>`&5{O>&5E>e&5{O:Fv`&R:Fv&R>h0=>&hN\1XA&B'/{1X&B'/{1XA&B'/'>n&h>n'N\&h>n't&h>n' &h>n'&h>' t&h>)s&FjC>) &F=g>)&F>) &FV?n&P' ?P?#&P ?5n&P' ?&P  6U4&9'Vs/C&=dD/Cb=/C&=dD/Cq'=^7'cnu7'cn#^U'cnj^'cn^'cn/^['cnk^'cns^'cns4 e &ei4 N&ej^'cns4&ew4&ee7h7f'q'd3i%##&'&7763 : : i??/Cb=HN&4'&776767676667676''&'76672&'&'&7676%&76`    ?. >JM&$  @R D8  hJIo$5SI37 p    8,B &! " (68 D_&''476676#"'676&'&'&7676'&4'&7767632676'&''&1"&'&'&7$3 "##%CA !@+,S(  hJIo$6  +-/ !    =--7=2" &, p /  +   =%'&76763#&9dZ/9C .a  .B}t% <7@6'&76676'&'&76267&&'''&77676267&&  0 =   $D' )  u/ P  b&#$9`' + 3 "5D276'&767&'&547676326766'&&'&7P D`g B%R)L# ! NNc; 0 $2    E^4  99zo8  # ,   .;+6'&&'&7'6'&&'&776'&&'& 1[1G7 1 52 5b7 4 D'''&'&76763276'&76767667676354&'&576 #, !FPi #Qr2    /.$ ).$#5T--1DEK+3   - $;'&&'&'&7#&'&547672&67667667663"7654'&&''&767&'&''&7&'&'6767&766767&'&'&7666765&'674'&'#"'&'&76#"'&'&76#"'&'&76#"'&'&76$!!; pp$!";  qpu.#!!Aa! C "" /,vv-!%C C!" DJKDDKJD    *        *    #+TfhR #+SigSETۢZ )     6   & Z[ )   5  5    )32.79,3222+;:,22            ~o/27676''''#"77'&7754'&76'&F7 Y-('6lGGl7((-Y 78Y-((7lGGl6'(-YGl7((-Y78 X-('6kFFk7((-X 87Y-((7lGoB 6676'&7676'&#"r 0%-.a    +!%%2   ^HQ!47632#"'&74'&#"3276^!!" z ;%$$%<;%$$%<; (( IM '&54767&'&7676  (P C-2' )  !   w!&'&7676'&&'&76 'h  "  ! 7R '7(H,C6'''&7676V$   8'&  7 !7"'&767632'&763767&'&2 (,D8542   ^ F&3cA) q v )763#"'&#"76'&&'&&'&7676& Ro  = ) (A,,+-#6(  ,*'*O>4 #&5'&767632754'&&'&77676'6'&'&7 $WA!!"  !BB+ x "b%80)7  750 9!!.* ) W , #_| '1;ENW432632#"'&'666'''67632#"'#"54&'&'#"'&54763266767&''&7'&7'&7&547&76&76&7667&'#"'&&54763267666''&%776'&&7766''&776'&&776%76''&&77654'7&76'5432''&#"6#"327776'&776''&%76''&6'&767&67&':/6!3 ,' - )(%%& /" 5!50 /6 4 + & , **'&&/" 650%iKy+ 'n Eu +n'OLi%Lj#h#jL;,,# E,,}!! l D D +o&+ &o^     ) 3   +T '%& /$ *+ ,( .  Y)   3  (( 3   ,S $%& .# +* ,' -  X*   3 (-Lj$ E +n' E:#jLk%iLLi%!!+ 'nw!!,,I++ +o&+ &o DF D+(0(,|o '&776'7'{{{{KKJ  aXU632#"'&54"21!"""1/$""#$./$"""11FbK6&2kIy&UkVcpcq\^r0Ns[5>,676'&#"76''&'&'&77676?vI9 =#m44N6e/# |j ,U+U XC !h".0Q+-''&767&&'&776767617676'&&J`9S8.:j l  6$:U $ XIr)sD 0 o y L5]6O! :`9&@'7&'&767632'&'&7676'&76v '^IT,Gg;;o I4; "Sc1O42@ 6xiRy9&\' Z0e&X'5oZ&+'`2J2&1 </&K n 6k&kX+l&/+lu&/'d+l&/+l&/'d+l&/'d+yl&/k+lc&/j4&9Vs4&96T&2'6&2k5&U#= 9&\&+&+&+>i&5Et>&5D >'th>'th>'h/ &K/&K?n&P' ?&P' ?a&P' j>o &F#y&Uy&Ud9&\4&94&9'$9&\'y&U'a4&9Vb&(1r3 ]&(1s6 4 &erV 4 &esY 4&e( ^'cnrHz ^'cnsH} 7h &r 7h&s 4&9( 9&\(m 9&\k;1XA&B'/{?r#'!&&54672!%.'&&ffl!@=3UO''=8?*bN% LHD53?t,Q$=G!7 ,# u3873 ?r$!7!>7667>3!%&&66& Nb*?8=')OV3=@!li34/53L ?u #, 8"G=$Q, ")'82+ml&/j9[1LR2''&'&&'&&767&676766'&&''&&'&776&74   2$  S}{u  $Pk !U#* &0 ! % 0 45#(V !QG  ,.  A> P", ,X,,8 !-W@! L  6  H 0S?A+l&/'_4+l&/'_4+l&///"yQ&U/P}X4?Q&e'eJ/PXM>5:FvR?P%u3#"'&767676'&&'&76I, Y4  '42 +&-  8!  d|!'&7676''&7674'&F 2  $7 '$ 9 (+J(A  1La  ~qLdv&LdL:d|)/MMj?|'LL\I7632'&&'&_"!  w31 \I@&RxCR5F'"'&''&767667676&1  !"#  +6  Z+, !   , %   9# \ER\E@'Rx?R5BT>6'&77676'&7767M       l   g 2Gi'@}X?Ql0+ ',676'&''&574774766&#"6'(? ; '&,0 & b" gU I0 $! D!    ! 0y@E6#&'5677632'&&'&'7^   4    q &  6#&'567632'&&'&'7       q 0% 1I! ''779Is = :!#D#X!J#G 7'7'#< 9z#JY!N:1E_#C`#G '``G !7'7'77'7'632'&&'&'7#< 9z< 9z  #JY!N:#JY!N:% G 7'7'632'&&'&'7#< 9z  #JY!N:% L8*36'&''&767&76632'&&'&'774'&&'&6   "M, U2E  )@ ,C 2>',HB&  #Dbfs@9afs@9ybfs@9<b&szb&s<Dafs@<@b&s&Y!b/</<s&'&''676& Q `K1&,Bp/?O_o632#"'&5447632#"'&#"'&5476322#"'&5476632#"'&54%#"'&547632%&547632#"%#"'&547632#"'&547632#"'&547632#"'&547632!2#"'&5476%#"'&547632632#"'&54#"'&5476322#"'&5476:     <             6  4            S      f                    ^       {   K1&'&'&7676#"'&% D''#$p  ::@6&%^u :&'1.x&-4&.g&0.&-4&.s&0.&-4&.&0.L&-d[&.UsL&0zd.z&-dX&.SB;&0q%.&-G&.UV&0zG3&3&4q&63&3&4q&64&7[G&8>J&:94&77[G&8,B=J&:'H4&7[G&8,J&:'4&7[G&88J&:4 &1+&1N6G&1N6&1NJ~Z'TnI~g'Tn,>Li`ACC>'lion&A{&CM>'l&ion&A'{&C'M>''li&A'/t&C'/:N:&NL&.UV&0zG/'dI;8^<'bc 3rw r>-i7fH'.'n8d_ gZ 5Z } K  s~u  ny  R n n X989z?#c&?'d2~`&At&Ci}V'bn}'bnj}X'bn,}F'bn5'bn#}'bnk/mm&dx4&.g&04.0 &''.d: &''0d_/Gf&;'.{d/H&;'0{d&f'bn'.ZdqH'bn'0Zd&f'bn/'.ZdqV'bn/'0Zd&f'bn'j'.ZdqH'bn'j'0Zd&f'bn','.ZdqX'bn','0ZdZ&W'w'Pd0p f&'{'dr&'E'd,Z&W'Pd0 f&'dr&'d,/md4&.s &0+&'? &hd&&hd /&['ZdXZ&W'Pd1Z&W'e<'PdC&'? &h5C&&h5e&'&h5 =n&['Z&W'P1&W'e<'P&'? &ht&&ht&'&ht /&['Z&W'P61&W'e<'P6&'? &ht /&['ZG&W'P61G&W'e<'P6M&&h'eG&I'8 4YM&'? h'eG&I8 &'? &hI&&hI'e&I'8 4)&'? h)&he&'hEzj.'r&[85Y&thEzd'r&[85&'? &th-j&&th-j&'&th-jEz/'r&[8'54&7_' &I_ ' &I'_ v&'? '&I* &'? 'Y'`&I'* (&' '(&'(&'=''x&I'4 X&W'Sv1&W'e<'Sv>&''&I'4 {&W'Sv1&W'e<'Sv ,&4+W&' W&W&'=%Q,&3+Z z&[X&WO1&W'e<O&' l&l&'=l &[Y&WU1&W'e<U7&'? h7&he&'h'\M&IJ 0&WR10&W'e<R&'? &ht&&ht&'&ht /o&['Z&W'P61&W'e<'P6&'? '&I< 9&WV19&W'e<VC&'? &hC&&he&'&h qn&['Z,&W'P1&W'e<'P6& &2y&U4 1'de80NS'a8}v'[?a80N'3a80N 'Za8'^a80N/'aP'n'$dP'n''$dEzbf&[8'rd($&'7]'dr0 f&'d0 f&'r'dPF'n'$P'n''$Ezb&[8'r$&'7]'m0* &'i50 &'r'i5PE'n'$PE'n''$Ezb&[8'rB($ &'7]'rk0 &' B0 &'r' BP'n'$P'n''$EzbS&[8'rB($|&'7]'rk0 S&' B0 S&'r' Bj'WU'm'WU'e'mj'WU'm'WU'e'm M&4/%M&3/Z`N&[ !"& !"&'k/h!'["tfV&&'I &'L' &IL P/'n'$P/'n''$Ezb&[8'rB($&'7]'rk0 &'B0 &'r'B/'ddPF'n'$P'n''$Ezb&[8'r$&'7]'o0 &'0 &'r'2p&'=&7dp&&7dp&'X&7d.&w'd&c'adup8&'=&7p8&&7p8&'X&7&w'=&c'a2p&'=&7gp&&7gp&'X&7g&w' &c'avs&w' 7&&7TB&J'H&(&'37&JH(&'3&7T z&J'H\2&'=7 &7 /&'X7 &wK0-&70/&'X7;&wL20&'=&7m0&&7m0&'X&7m&w'Lxb&:_b&L'_F2pv&'=7s&JF2p4&'=&7&J'F2p(&'=&Isp(&&Isp(&'s&Isf &J'Gp>&&Ixf &J'G2W&'=IW&IW&'sI,&-+:&JE2p&'=lIp&lIp&'slI5&&2p&'=7p&7p/&'X72&wM2p&'=&7gp&&7gp&'X&7g&w' &c'aus2p&'=7jL&JI&<28&'=&7 C88&&7 C88&'X&7 C&w'?&c'a/H&L'0dJ&c'bd@ &L'0O&c'bO&L'0A%&c'b@s6&L'0A%&c'b@s. &L]n'b&c.H&L']7nH'b&c';7M&-/Jg&JD&&L'0Jd&c'b@s  &L'0V+&c'b9&T3&a &TZ&a'^&a/J&d_J/J&d'p_J2&WT12&W'e<T&W'Te1&W'e<'Te0.'&0.'&'r0u'&'Fd0u'&'r'Fd&WQ1&W'e<Q&W'QO1&W'e<'QO&W'QX1&W'e<'QX0d'&0d'&'r0/'&'l0/'&'r'l7&'? &h&7&&h&7&'&h&Ezju'r&[8'5d_u'n'*d_.'n* d'n* /'n'*/&daJ/&d'paJ J& J&'k &' &'k'0{'&0{'&'r0{H'&'H70{H'&'r'H7/J&d:J/J&d'p:J/J&d':Jo_/J&d'p':Jo_/&d':J/&d'p':J0['&0['&'r0%'&'`0%'&'r'`4H&7'']74H&7']74H&7'Vs']7EzH'r&[8'57H'n'*7'n*U['n*U%'n'*2&'=&7 &&7 &'X&7 &w'K.'b&cu'b&c'9d&L_TJ&:'%_]bJ&:]b&:'=]bTH&:'%_']b7H&:']b7H&:'=']b7'&La'&L'a& h'[/'<'[_(Ua76''"''&'&&'&7657&&''5&'&'&7676763667'&767667676267667'#"'&&'&&'&67#6676327&'&53267654'&#"7&&'&7677'%66767767&&''&'&'! DY     ZD  -c9+ B[  ZC +9dT / ,&".|,A%_=U$$, .c  x>   > $   =  s \B1 7 C\   YC   8 CY ?   <  FZeFT  <   ? 8. .    ; .    %VBd&'&767276''"'&7767&&'&&#&'&77''&'&'#&77667667667'&4'&766776767'#"'&&'6676327&'"''&'4'&#"327667667&&''&'&&'676%'7'&'&766+e9* C[    [ C *,9c-  CZ     ZC IA,|.$%, . . ,$%.|_  x  ?   ?=  =   s YC "  C Y › \C 8 ! B\ZF  <   ?c?  <       . .B.     . _K&J''nj',4&7'':'0S%T&:'%_'b'gK&J'',K&J''/',@p&'K&{T'zXp&&{T'zXp&'Y&{T'zX4J&7'L':Pu_ &:'Jb'H;/J&d'p'LJ:/J&d'LJ:T&:'%_'b 2&:'b'L= / J&d':J'o_]4&7'L]P&:'wbKT&:'%_'wbK'8 &I'L ]Z&L'wK~4c&7':Y-&:'b'c&I'L Y'H&I': ']m7X&L'' / H&d'p':J'o_']74H&7'Vs'L']Ps7&:'='wb'K'8H&I'L ']7Z&L'w'K~|/)&d':J'Y'^)&I': 'G'Ym&L''('m4&7'LaP2&:'Lb_2&L'L_/q&d'p'LJa' Q&I': '/_,m'vQ&I'L ,ms&L'JF/Q&d'LJ,'v/&I'L ',Y//&d'p'LJ',//&d'LJ','&I': 'G'6mZ@(&L''s'C4&7'L'6P's&I'L '6'Q&I': Gm/&d'p':JG/&d':JG(&'3&F'434&7'':'_G'Q&I': 'GGm^&''4v&7'lp&&:cT&:'%_'b&J'/J&d'p':JL2&:'b'L=&J''T/&:'%_'b'&J''42&:'='b'L=TL&:'%_'JbI;:L&L'JI5&J'',/&d':J'0&d'&I': '/_'0md_5&J''nj',/&d':J'o_'0&d/1&d'p'LJ'0d/1&d'LJ'0d' &I'L '0`+&L'w'~/&d'p':J''0+/&d'p':J'o_'0%/&d':J'o_'0%/&d'p':J''0%/&d':J''0%/1&d'p'LJ'0%/1&d'LJ'0%/J&d'p'LJ':?_/IJ&d':J':_/J&d'LJ':?_/ &d':J']/c&d'p':JY/ H&d'p':J']7/)&d'p':J'Y/&d'p':J'o_G/A&d'p'J7/J&d'p':J'02+/J&d'p':J'o_'02+/1 &d'p'LJ'0+/  &d'p'LJL/&d'p'LJ'6/&d'p':J'0&d &:'Jb'G;=^&'/Q&d'p'LJ,/g&d'p'JJD#2&:'b'L='g/&d'p':J'L^&'''Tg&I'J D'Q&I': '/_Gm4&7':'_'0\d/IJ&d'p':J':_/IJ&d'p':J'o_:/J&d'p':J'o_L/&d'p'LJ'6/J&d'p':J'0+:&L'JE2@v&L''=;&L'wL~/ &d'p':J']/&d'p':J'o_'0&d-&'G;W-&'G;'4r&X&''a)'`'G(m'n'$''A'(&1'J's'&I', 'GyW>>g &F'b'[U/ &;'0{'+'Gp5/hz'["t'f'[cV&'W p%7Sw #6676766'&&''&7632723&'47767267632667632#"'"'5667&'&#"&5476'&3676'&''&'#"'32767676326'476#"'"'#"'##"''"5476554767655'&''&'476767'4776'5477632327767&'#&'#"'&7&'&&'&''&76767'476327&&'&776074&'&'&77632#"'767&&4232676767&'#"547632&'&5#"54&'&&''&67657632677677677676'&'4'&576&#"2767463232763#"'#"54763276327&'767&4&#"%& #4#*  G*4T   _ GD652;!)X.[*%K3' 3I%   &+%iB ! +2o (>( . =  ):E.!"  <'4!PQQ$34`  + ')  $   WWC 16  -,  . ;$ ".q   ] h3F   h3E  c   !" />    77  k% #E u ',"0l@01/4 (*H   <%.    J# %&FK #& R@ 0 4F5I% ,9. . " - 'C= #    T&fE,9<#MlL26 1@(9q:7  ![7B  '(R$ *$I  " C +&4: !'&*6[D*' &65"n  # # *"(  .       $ } m!0976667672#&32#&''&767632767'54766767&776676&'&'&'&'&''&'&766767'&776764'&&'&'&#0&''&77676&5&&'&76676326767&'&'"6776767767&#"677276&#"6772746'&&'&776'&&'&7767   $ '4Y% $V3$( '-)3@U %&I"F(( 5:bQ@ %s;$, L  -  )  : 2%9 "   L3  0D !&    [  ,,( =-b,& :+3!!: 3E4*+        a+''DCGV5?>=  )'4U *;+j+2 10d #b;   dF4%-?=  AKJDJ     d-b;$!%dZ X  x q L   E 5 V5 f>+x &F''\'.A'6UD,' W'*H-'~v' 5>',' ('a!h''a F' vw'a'O'^<'^'^'^ '^ '^T'^+aT'(8'( '(U'Ks'h',f~'f'' e' Fe'k'k'k'H p>vh[h'[Zz@i\p}v[?y@ ^ '^Qr8_'_Gy^j'^80Na&aV> b &b&'bcE&'<dL}Y'bnd &'dz&#&dd$f&.dUH&0dz  '.&-4&.S&0 v&;.&-d&.SB&0q%.u&-dS&.SB6&0q%4&7N[G&8*YTJ&:%_47[G8J:4&7Vs[&8*&:=1&1N6~Tn~'TnI:hZ A[^]:h;&Z * &[=s^H&]#74nV,WcY4<&V6&W6p)&Y\6^_Wa6&^@&_vW&aVO)*Q,&)%`&*/&,3/&3x&4N&6!&Q%&4q&6#c&?d2`ACC7D~EG'<IRMJ L:&NL&.Us&0zd/;< r>}bn/md/m&dp4&.s &0+l&'cU]&'cl&'dnBU&'dm -pl&'dU&'dl-l&U1&>A*6760#$'&'&'&67676   >*ƒ 6C&%"'&7667&7676'&76676 J># 1 5q'&)-.?B"U 6Q e11 ,A5 * , Ie "176&'&67&7676'&7676676S-1 Aj*)]kl(4%m[IX +:/  If M  >&v0/I h;% %L!JdQ!%2#"'#"'&76367&'&7676n& !fUsA$ ?-@1^t: <8i Dff22 )'HB"(%# .!76%6767632#"'#"'&76p  A,)- .=   57BA:4776#"'&&547637&'&3 1h 8>!Som"  +l7&76676!267&'&776\1! $wN #  3 !RvJ=^) &!s+,& X"Os84; 7#"'#"''&7676763284>J  w & @@) 2)%#&'#"76327674&'&'&77632 M ,B-7 ^I'    E L 5.\3z%I6&766767632767&   { jJo  SS/ #  H$?!+ L3%-6276'# 76767667&763&327& F671&YT / ! 4eM j*%$,j12 ' H&{DN >a<=@(F$2'"'&76767&'&'&76"767&fPQz8b!!  RP&h 5" KXGH{, #>)1#'&67676767674''&766'&e ^]i  2=eª25\>( $%c>.B55-2\,I[ , ]F]- $ &,2'#"'&676767&67676&74   2%  T}$9:0, !U#4#(V0PH  --  A-W@/S?A4876727676#"'&776'&77&S};(AC5>) ))XH^$% (*((( u^ _E{  E ' %$$?+8KMC" $^Kw" [G#76763276'&#"'&7676767& %%"T@ :l22[(O= hY###6(> #($ 1@ 4,%76'&77&'&767276^$% (*((( u^ \9  3(AC5;8KMC" $^Kws  EJ4763276'&&'76'&7'"'&76767667&'& hJ1@))P'!" : Q3E RE#Q-[( U<08 l J%V t #- / / )672#"'&''&'&76766767&77&& 4 > &%0" 0I L2>9]%% N9#3)O(''27#"'&7667&7667&'&'&7632'&72'&65&'&U3 #@  22a` /%L'[4 !' O^Y 01 c\\:I7  %$" .: ' /Cb6"'&7676&'&32E nN*v%= !U7Q(@@D89VY9:< r06=6676#"''5#"'&&'&76276676676767&&66" SH+ ! +l'$  :#5% +*%".,8l )\ '"&6-'%/   5_+!c;= G##c2"''&7676676676&'&&5&7767lQ((Q )%  "  !   klr >[6 [LLOB3' {mg: %B7$76$7&'&&'&'&7676%632%66'&'&76iԉ@*YXޅog 'C<<\#y'8;/.%%!]}}+} i  $3  *@I $H.6 +*C77  ! `77&'&'&76%6'&'&&76XZd%l/fmQ iRx' JL"mXCf!q%1XA'6'&&'&5&&7476&'&7 !!x%]88W"E$FZ $*"  ?BB*  4 $ 0C+'467&'&7476676#"'&'#"'&*7My+ ;>cE7 S/!#<1'J]#=(VRW Q4OZU0&7)#"''&7676767&776R'@2 3ned54 J KwS:  x>%D4m8U'S<9kLr qHR P"F~'&&76767&&'&&'&776U( c8 =n#   2*" >) /&&'&776'&'&5476767&&'&&   "U*L#(G / <  W2(+ "Z::Y jT8&g%)rY U+nI\--`7#"'&765&776#"]H1:% 2  EsS<*/)[ '& ) n8%6"'&&'&'&&'&76767&&'&76766766L !P!   B.Z    "  ;Zi%0  +< #(G (-]M(N%KHH  -6<'<!%#&''&'#"'&&'&7676W2 ,O#,:6+6 #%%nf;;_#4d-a;&-#j[\2=RM '&'"'&5476636766766'&J 1 Q4*F  6$'#7M @4 53+Fq" +/%76676'&'&&'&767667&c ^   W < [,%$?+1$`C{:k*-l?GF@  .6#"'#&'"'&767676&6'&& $88H  @AoN34  V0E +  4.-%2'# VG4$^>%0v]2%6676##'&&'&7676%667$76&7&'&7    %bbc c\  J?JV ,53 1;vYS  J{+0 :(%632##'&767676&'&7   .QU::E ,S *  H]67QQ}X%xU8c+),-$'&&'&'&76%$7675&&'&77676g  H3^#E 0JO$%{B+U0$73F++^:P$ >'1J- O ?'&7676767&'&776K@a988  6$#kKP %ʘ,a 66X\R _<:OW T !/7%2##'&'&7667676'&&'&76676&#"76@!  SQ?5'j  R8S)R*R ,=&:    u&n &>ttP(  < $d   :Fv(02'&7676767676''&76&#" O5k55 J ?..kkn6DDR22> !\?=v6%%(9Vz]=:+*V*@$~2,l$'&7667676767667632U55PTa %9$KW"  -@?,"R1F4A 0E$7$%76#'&&'&76767676'&j%  $%"#<=><$:0UCB+DW"  9;8`'N   FE +y5 676'&&'&767676765&'&7  /k>Z!,ED(+Cv L' 8&P   (GC/O 4n8A%''"'&7676327676'&776667632'7"66767&&q:9 E  L61oxj4= ' #XI0a15E%5  P$b^G+X$ )xFFbfSvRID!)k f.;&J$I./[--  D S,+47'"'&76767632667632#"''&7667&%&676L-  5" N(B&.$ a5=  1:H6[K1dK[+ <() p%++10 F# p+F 0066''&767667632767&'&776676&N# NoZ-ho;Q -  3 y\2 .& #RCZZe2MLYd2/V /k 4G{_K bRz>!S<^#;MDC&?c3;'&7665&&'#"'&763276667676'7&676 -7.   :4 %EE(P<.++  0  Ox{M\[AWV1 W:=  +*N"F .H4 -.  (LLT  dEl9HP`(-  E ("TI/rA! '0 A/723763&'&776#''#"'&'&7676 )C-    # F2&=??<$%c+5|#  3)F@@+IBH!2 N9:6'''&'&76676376'&7767674'&7u% ,70P 8u*  1 !S3 *  m  ") ~2a: )M'G >,\*I%O) t&|}Aa N ;^97676767632#"''#"'#"'&&'&7636 l/  %% =Z F&(77 ) k'c2 S!f'/% 1  68>%&'&'&76676&'&&''&76667676&'67&@JV2'*q[   %O(R 2 ;40'&2p5^ci$  ?%  y\\|+ :1:*A 23, =I- => X.-0676'&&'&7676676"'&&767667%67&v   ER2  B #Lwe&AYj#,!! d6ra";/, i` /&7=&'&7676321676&'&'&6776&67&&      d#0CM=$&(`8:gBk-` ,   y ,  ('56+ 9F>9$W4;%'&'&763376&&'&7632676#'&667&M % ./& R4 6C?$]~JV: & E31= 0i9#= C0 Iy 9(#"'&76767&'&76766'&72$-$4SYpp!K ' -1! $F5DF DDT?c*M&t* 87"&%6'&&'&76767667&&''&7&7'/#AA,$F"5 .A  $1pFZ:  +L (6#&''&76767&&547f&& e!S  W-<<Aq++ % :  %'&767674''&7672&'&71;;4ka  !P(0 D* tL@@8   ts#!&&''&776'&&'&7676676 # !# 1 #:A7Q) 7*!# AS 7 $*76763232#"'##"776767&7&74!U#   '0  ^rKDDv` 004;$)''&76676327676'&776h *$%g1 ![\"" ]^ Ik (7A)'* # lkG(L6'&#"'&7676G9/ JKJ +)* H$ 2 KJJK')'2gE"6'&&'&766ōR  -CZ\?Dt/H E 6%$ ,:p wvN 67676IX++65 <;Y%"'&'&76676763276d:00G9 !  :S $&+ +&y99C7*-)a=;.=;=)%&'&76'&7676767&&'& 3C)6 ѣ=.;  1&<.Z ,"  1$36XDvwsrT 636'&'7667676'&7 '41 :29!1 5pS;(p9 4..EWkVu7'&67&&'' Xglm _92_TG= +)*C @z|UJ r 8'&'&327&%&'&&7676%6O," % / **- SC %3 n? #,~([g 7'&767676'&k54 M$ : 7PW/  #" _9#'&'&&&''&76676676      { Uj, -8I-57&76'&'&'&76676y00   3""BD" 9>   ?#3 ))+H75476&6776C"&%*%  #+  v,  &8H- %7&''&776'&'&766$E MthHL,0i8 A !JWBS}mED   1I%&&'&&'&7676767632'&76766H      =   0%%8$  %;s#"'676676'&&'&'&767&&'&'&&L '6.KY&@ 2u-} G<A" # (  276'&'&'&767676*H-:+ G E$ *JR# @m* (I7'&&'"'&7676 @5! 0Y" +E3D99 + $J*767632#"'"#'&767667&&'&'&&O *iY-   =mLq% UD @A;$4L/ ( 7 '667&76763'&547 6 ?// 0= ? e =L.  2,lSu!&''&7676'&'&767676'27&'&9CPm@ `7(. 3  9+ 3-<U$676#&''&767676'&&'&7x  +<"g/$  W  /lF [9 ., :-Hi 3y;%-%#"'&767632767'&7676&76t #s)- $-.cQ, $$.E$)F21Kh~-If C  & $( In , 3''&'&766767'&7676@&] M! + I WD! ? (":}YhI&!MF"'&'&766763276656'&776$),#GI]- 6  -:0+?y|I9**gJ, _xg=i@"O~N;#'&&''&76767&''&767676$76r f\[,?C@ 5F+E4)1>G>M$ bH )@(&.m>+ V/E'!3( / )HOC',T& [15#&'&7632&'&776eT  0E SM Ǫ ^<<J \@0%706766361'#"'"'&76676767676k R  $k344:* '* ])  5H/ &&-.., L%E;3DN] $],F!#"5'"'&767676 p'T5 9, + @2N2):3/&76767&'&776Ba@63#.==?g 2cG fQ0 9&zm, @2O!cZ4,ACu531L > ,-5[ M&&'&&'&&76761'&< 0 XI]$ + *  -  w".:7&767676'&''&766767676'&#"73263&&' 67%)a"   WW<8 ! u)  * .q!,+<= H/%& !E& $ "\'&76767'&76676WPI d  M! /,. G- * ("+'&7676'&,; $*9q9. 4g! =%) .K  -GBwQ+634'&776'&''&''&7667676  & /^ W''&7676'&&''&&'&7676$76 k' *8 N$  Yr 7G$Y5o&N +`' +8["5%'&&'&766767676'&'&776 (/:e'E7,D->=  Oy  /.' F(v)6'&767&'&7676'&&  {! %w :;3J. /N$)7[ %%-7 +3!4512B .:CI"C#"'&&'&&''"#&776767&'&&'&'&76676676$70366C!SQe! -\,N!g$   D@ 9tR/o? /;6% x,4'`!# *g= r(%'&76767667&&'&776  G\.X*>W>  !FH{>}?S;-N3$ <) Ss/q=? 5+ 3SW)62'&'&&'&&'&7+   + /&L  4@::C '&'&'&7$s*+   MH$yU   . 923+p "%76#"'&'&&'"'&7676766'&B 2) \  c+>*R) E%)Y-5x2   U|HAc"E1g%'&'''&5'476 - +WL> Z!<k  &6'&''&767676'&&'&7^  A33-! &%&$   a69%' Y- -" ag B#7'&'&'&4''&76767676 .%4++ @, '&'3,+* ..5@ $$/"l#&'&767&&'&&'&7676,2F)!  " % 22=..Q"!1  /7#'&&''&76327&&''&&'&776760  * )<    #! 3"# "%q#1. '!du%&.8%''&767667'476676'7667&iV_1 24   u)  y    Y$#=*%# #75 E v'&'&76767676  $    9 4z&66763'&'&'&76766766+R'<'' K* 9R8'Z6%8= *< c.C6!! p '#&767676#&'&'&=L4G <+*/ 42$m^*"3 GBw '&764'&776 %;@  :I(26-E537C` -=%'!"'&7676!2767676)!  {H A"h855 #$f  (u7'&676327676)     ,  2&'&'&767632" 5B) 92  ]54 T 3#A$0GBw1#"'.''&'&767&%&'&5476$76thC>}=. N($&G  #% ;& D 9s9!U*(OF1]W** &' _^+19^7'&''&767676n( 8 5 ,-00  E<Y=#&'&&''&7670366764 !0% A"  (%E3($ L@M ;+ (=#%#"'&76767676'&776; 0#Gu!!` E%QMK 6 -"3 %@8tt5I&% -o ?'!A&'67676'&'&'&'&7667&'&623MB**X/#  Bf /a2$9 ;.$@ .'  G $  -%6'&76766767&'&7  6F^- ,F7/' r BR m  !8 (.9&''&767667667&767&"'&767632'&'&'&6OOJ88?   )-  &Y[ h:3k    # !  "L0 8 UV3X* !'  C0632'&'&7632767&&''&&'&'&70    _%      $aHHd89 ny  /,%#"&'&767676'4'&776   -G+/R9}yA$ #94)d,#%  -c4;" F2-.5&&''&76767667667632&''&766726767&2L  9  AWWH$'' ;m5e/   yF)Q\!$e3  1m!ML(),)A     L Xp !'67676'&#"'&76767&&'R)b78f.0(s62c' 34Z!C L  #'32%c7'&'&'&'&7667632"2  F,-.  (-7!$) *?$ ?'C 6,00&'&76676'&7676767&'&& /  3"D ec8> B!?(>m &C   %213VWc kD M D(%'&''&'&7623767676676761  990'! .$$ &,  /(@;3I .%( 16"&'&'#"&'&'&7676767&'&7667676676 U5 !;:534`JJ  5f1  ":O?>   88G#   0 'C&'67667667667632#"'&'&''39L    20,  3*(!/P eJ  8'&'&'&''766767676 {\/!' 2a.F$)h:% % .,HHO@]z!6'&76"'&76766766760   ,fEp!!Fk$ =y3 G'  RQ"( %  F#676'&''767&&'&&'&x';.1~M( ~| .i#2 LH1  B$$$4   #776%6'&'&767'"776xTS ;\"B9QP 4+@yOY/. # QQy-?}"6'&7632674&'&766y    oA%=*   )  /E*$,7]'" 1-676'&'&766766766767667&&"'&76? 7:! ]Q8`& /! ",& L,    I9,+8       #6!.632'&&#"'&7667667&"'&76676e1"#B I+  Bl)ii ! 1W'd5   9 **? !  p%%'&7673&'&7676'&776Y Q/]8)  ?>;;Z Jh'""3A<5< #F)!"X@?V  $ 11 $#=(%%7'&''5676&#"66=5"C6 ;!!:K^ 453N6;= (g #<o*MOvAJE*.'6676232'&76'&&7##&%&6EIH/9&.]580*L! 6Ue7q=? [ E!  ;v5k5.#6'#"'&767676&'&7 $=<,7*-%$    $(c%"$4Y!RF*   -52766767667632#&''"'&5476Q   !  . F%8E)+, i $U*[`0% d7676'&7&'&26%&6Bu-4  n   COA.SFk1 *3 e$ /XR$ P+[.6&'&7667636767276'''&%&676    _m1+-2  $   mu^D0fC@^]   O#*#%(* #(% Li7676'&&'&7&'&7#C"   33 R   Z L'6'&'&7 %0 >  L % {~76'&&''&&'&776 &0 ! % 0  L  6  H z'76'&&''&&'&776'6'&'&7 %0  % 0 6* %0 >   L  1  H$ L % L}v{0=H%$76$%&'&'&'&76676%676$766'&'&'&76ld|0*ff|v -Cz99XEu;I/%%!%ͨ+]i $4   2/WH.7+6!67'-$  O7$76$7&'&'&'&76676%676$76672#"&'&'&7'&'&76_!0Uezylv * By66X"Fu8J//.> &46 ~  i .4  00]H08))D@!-+ 0 (6'&&'&5476762767'&&'&76T    %<5)%7 5 T    A%6%6'&76sa ~t$ML_2 "V2 0W%$76$%&'&&'&'&76676%676$766#"&'&'"'&'&'&76ld|0+ee{{jv -Cz99XEu;I/ ? (4 > ,\i $4   1/WH.7+6!.3!'-$  ~&''&&'&77676''&&'&776 % 0  = 1 6* % / = d L  2 & H$ L & ~'&76676676  Uފ Y$ )P( N-&767676#&''&'&766367&&'&J   "  R(/JI1 5**9 hb 0 p;%,66676#&'&563776&'47667&$  '"< $ ]114<[   2  #`< L'6'&'&77&&'&7* % 0 >    ,  L % /  `GQ &76767&'&76?%$*  % ! IH$,-0O;&RE#"'&76767676'&7767676767632'&'"'xTwfGF;  3 /1GITT(9  RA  *+  ,''B( <05$>XEEqNin-0"#:DTT3*  D <F1( J- '0Ezc'r[8l776'&'&76J  AB i 7  .. L '&76676676   Pԅ VG2g7  "d76'&7676  [߃ #  <, ) B776763'&'&767&'& 7 "Ga >-\0"I *(  "p p 7&76'&''&'&7600   0# ?   D0 G./  'M"676'&#766767&'&'&T,Zy  Cmm/LJ  B#!) _3D  *P7! sEv3'&767'&7676Kd5S &8 + K'Y3O0 < &5 ~W('&'&767667667&&'''&7676%6p DOB%+   +: 7- 1 "(-A#J*[^ F- <6-iP m~&.6'&&''&&'&77&&'&7767&&'  %)0 ! % ,  1     @  L  6  B  H a ) m~U '76'&&''&&''&&'&77676T  > $ %  >  !    @&&  =  Wm]{ 7677636- Xg da y3{wogj/kk/p;)5#"76&'&77676#"'&76&'&77676     "I' *!#D" * "I' *#D" * WsP"667672'&'&'&76776'&'" , ;M#!  -* - +- # &&O  W  "63'&77676'&77677g         D   :  BV763##&776M    P# > ^d~N7?G6''&7667&76'6''&7667&76&67&6O    (!/U   (!/  t  I % '  '1 %  '  '13  b%6''&7667&76&6*    %8, );"  -G ( 2=> ,  6676'&'&&766"7036'4'&W ! !  #    8  m6#'5'4766p     cl + ` 26e |&dB Ug8>m7#"'&547632,[U747632#"'&U@As&L}v{~`m~Wkk/pL'3#k%L[6qrm 8sp >(p >(p J #"'&'&7676676#"'&'"M# VT<-,=I# 0M fRue`ktl#1EKCb t&LoXvPR6767766'&&co6 C8dF{;8Y 4vB-+ ?4Si!3 ,&'&'&767&&'&5467676676)40k-B aP"_'f15 =N+C?@ +=.L2 _v N O$iW0 2$ # AU< &I#"65SD  s60#"'&&''""#&763263&%&'&76676p&1 s6K/ T' 6 Q7$]* v]'- k<(bR5xD5> ;vPG&76676'&'&/ \ F /  >N \%"'&'#"'&5476367&&'&'&776q%A  $&:  0   |/ $6Ob / zp 7Y}/%''&'&6767632767&76767636&+OO\ ( $ APsL F - ".? C(O@ @Gj%-,&# %'&'&'&&54&'&77676K"1   |U13 Ip8EEI 0I=-4J77&76'&776#"'&&'&547667632#"'&567654'&'&#"%Wjll E U!S85A?a64(C,5E"@sKJ10J j?& ?i{98t6oot'8f/ 1  <, )7"DHwO  ,lmmmIH k@Q*+XFtHGccy)6'&'&767&'''&766767676$N  GeBTd[3#=\0  %I--#T_~w@P@A$G6   85yH>;2#"'&&''&7667676767&'&767676%6- Tc?NM9 ,d0 4 @'5",. >EeP;?ED Sa3/A# #1/    !z'< zu(*'&''&'&766767'&776676'&  -/3  (L R  tJf97 zH 27- -<1 )7#&&''&76767676&'&776 $AA+ ]^    !; *E7'1 ` , ZQ+.A'%^/6'&7632263236'&&'&&'&67668 J)    '~G$I% &8'L&__i  $6676'&&'&6776763#"''&&),  # ;* ;,E( ?cN!6#4AA 4 $ $"-%#"''&7667667'&776'765C#5 s% _=% Q *G Z##"  $,6 / .%?Wo* 2$"'&''&'&7676767'&776, "";.  Qr)  &%2 ne=.7*<  + 74?U;!"#Pqg5232#"&&''&'&767667&'&544'&7676%; #_9A Z > _-B(@<)   \fg C(O'(1/ X  + o-  L  !#_xR:56#'&'&76667&'&&'#"'&'&5476766766$}  35 "" %) 4 ?&i8 8 ?94< !4+,(*(&8s)''&767667&'&76676'&761[  +!\R   gs1I*  ZD! !95G;  !E< A 1J6'&76767&''&76&#"762&0 "CDQ6"GP"M $GMb9  Fw"2'&'&'&'&767&'&76:#$"%e  rLKJ$= :LW ;E &% ./HL$.62#"&''&767&767"'&7667&7&%g, Q3?!*"#D*3&  !; #" }#8LAN7-%/ ! $%[8 @- 40( *K%&&'#"'&76327667676'&&+Y,*5 ! ,$ A'. 9:C9 ]!E(6 2:,)$$&,'&7676376&'&776'&''&'&'&2 0X#DA).  # !A*9E0! 8z3!j   73U/ E=  e;*4676''&77&'&'&'&7672767667&͎m#2H0 #h4h6  0    *`  $UU.T((3 *_ (<`,$ +" \_42!'&766567667'&7676sm$ &  &> C.&8- 9 %&&GBw,B+623'&7767&''&&'&'&76676$*?:Y /K  5  K E}o1{-4 <%r` $$%A + A26"'&7767676'&&'&74 9"?f  N3 6ze+F; 5,( c>#'667&'&'&7676'&'&76676:n4#$>  H7\^ $-  '   N =>< 6n  PT'&7676#'&&'676v .:nFF 9>-'< 44% # 67 #&767676''&7676"76'&~J)$.3~ #  ?'/2#Q  oU +/$=2Jst ^+2.#"'&547667&767676'&7632 $pLLg&  "S6: BB133  _ X&u!  :,* (&?*:@A 'Y0<7c,'&767667667&&'&&''&&7667632+.#*     = ?  5wBBW7" 9"*0632'&&'67667&767&'&'&67&'&7&21^/2 .!%S,.\/QM1*1  B(v R c\.JI7% 6$  390 m &  %%6'&6767&#"'&7"C A ]SK/ *'"/ G@#P= ,N" Pz-'&'&76767&'#''&7676676%6l 8  `r9 )  S?<$ ՚-  $Vm QH)  FDm 676'&'&767&'&&'&7 (  ":& 3)      pS!* ! jEV"dn'&'&'&766762Z   <5 )U(  P( ` +7&7676676'&'&76'&7676v ,[F   1\+7  0a ; 4! NGFS "G%.-QDCj67676'&'&761)0 !I Cv+*+*K #  S*4O)'632#"'&'&,-&'G5 E Uk**:;S  c'&'&764675676 Cv+  k  S*4O)4 ^ !D&^]1O&'&'&&'&&'&77676}    &5!2c $8 1!b_%2%4S7&'&7676'&*;,(;Z\I+%8& ,  !x45++#V7'&7676#&'&'&  #2<>E11 _ +`./ / !7'&7'&'&76767666760*)S'B  JE% O :b - e A97K!:'bc."7'&5476766'&&'&&54776'&}50u  J  kY/  u  NB{-"0 y,76'&&'&7676&'&&''4 & G    g*! +B*]A`n#>qU\t()!'&'"'&76767&776w  (B -&"C ./ $  " B X!%8\'E !+ 6 )7&'&&'#"'&7676676766'&776  H'?-H8^%k   +! 2$]bQW)A )L`& +#=? E8~F%' ,92b *7#&'&&'#"'&7676676766'&776   L/ ?-H8^%k   %%HbLW)A )L` X!!B!7'&676676'&&'&77676R <(     -1A 1j " 6D#ִ3+a87V! z!777676&'&&'4776'&&[U =  /B .& C- N"#m5T% ݮQ= X!% $:,7#&''&763276'&&'&&'&677676+ Y*(D5 d 4-Q  :%   %MII[ + Q$'&676676'&&'&77676'&P7(     " * 2 [ " 6D:֝3+2,Rz'&'77676'&&'4776u:( J'S =   ;*R y, N"ASp%  &'dz&  'p&'gsl pg&'gr8 E&'<dL&'bc5 &'o>q &'oz:&'1&)'%%Z&)%&)%-&)%t&)%&)%O)O`&*'Z`&*&*v&*&*&**O/&,'Z/&,&,E&,&,&,Q,.u&-'d.&-.&-'d.&-.&-d.&-'d.u&-d.&-G.&-'d.c&-j.&-.-.z&-d.`&-k.l&-d.&-.x&-.&-.L&-d=4&.(o 4&.&./s} s&.'UskI4&.=A&.jUq&.'Us=6A&.&jUs&./rz s4's.f&.dU4.4&.k4&.s&.UVX&.SB4&.k?J&.SB4&.s4&.g4&.S[&.UsS&.'SSB&.Us&.'rSB4&.r&.SB_&.1x-G&.&kUsS&.SB&.UV&.'SUs&.'Usj=g4.&.'SBkI&.'sUs4&.s4&.g4.4&.s&.'sUs=&0(o &0 &0'+sn &0'zdz;&0P#&0jzc&0'zdb( #&0'+jz &0'+rk '0H&0dz0&0 &0+&0zG;&0q%&0kk-&0q%&0&0&0L&0zd6&0'q%&0zd&0'q%&0&0q% )&0'+kz6&0q%&0zG&0'zd&0'zdjbX0&0'q%z; &0'zd+&0&00 &0+ &0'zd+L&1N6 &1kNz&1;&1NJ&1k&1N61&1'NJ&1N67&1'NJB7&1B>&1N6G&1N6 &1+3&3E3&3D3/&3333&3>)3/'&3>)3&33&3E3&34&4&4&4qx&4N&4q4&4)x&4'N)&4q&4&4qx&4N6&6&6&6&6&66&6)&6')&6&6&6&64&7Vs474&7dV4&74&7Vs4&74[&7Vs4&7Vs4&74&7'i$z4&7i4&74&7'Vs4&7( 4&74&7V4&7[&8*[G8[&8d*[G&88[&8*N[G&8*Y[t&8*[-&8/[G&8>P[G&8'=N[[G&8=7[G&8,B[&8'*,[G&8( [G&8+[ &8*[G&8,&:=J:&:d=J&:4&:CTJ&:%_t&:=-&:CJ&:9VJ&:'8IaJ&:8=J&:'H&:'='J&:( J&:& &:=J&:'/;8%'&'&76676676"sE /! %&i 8,`# &J%%- *8&^/; v&;<< r>'bc>L'i>L&i#c&?'d2~>L&i#c&?d2>']'li>'l&i>'l&i >L&i]#c &?'d2~#c&?'d2~#c&?'d2g>'li>Li>' 'li>&i >L'i>''li`&At`&A`&At`&A`Aon&A'{/\on&A'{Jon&A'{U`&A/\`&At`&At`&Aon&A{`A&A'2t`&At`&At&A'/tC&CiC&CuC&CiC&CtCC&C'>M&C'M8&C'uCMC&C>C&Ci&CiC&Cu&CMCC&C'2&CiC&Ci&C'/7&Dj,y7&D7D7f&D]y7&D%7&D#&Ej'-&E#~E&E_~u&E'&E#;&Gj?&G;G&Gic&G?&G#R'<&I '<I'<&IGR&JxRMJqRM&J|&L4 L &L:&NL:&N'L:N:$&N'L :&NL:&N'L4:&N'L :r&N'Lj4:&NL!6&Q%!&Q%!&Q%!Q~g'Tn,~H'Tnj^~'TndR~'Tn]~'Tnj!R~'Tn']Ej~'TnI~Z'TnI~_'TnI'Tn#~N'Tnk~'TnI~`'Tn'I%~Tn~1'TnI~m'Tnd4n&VE4<&V'6>)4<&V64&V64nV,&W&W'6p&W6p&W6p,Wc&Y)&Y'\)&Y\&Y\cY:h;&Z' * :h&Z *:hZ:h.&Zk :hu&Z(3 :h;&Z *:hA&Z' *:h@&Z *:h&Z' * :kh&Z~:kh;&Z' *~O &['=s=Z [&[=s A[ x&[k= &[(}  &[=s &['=s4O &[=sO &['=s=Z A&[E &['=sE^H&]'#7 ^&]#7^]^<&]k#^&](@ ^H&]#7^N&]'#7^M&]#7^&]'#7 ^&]^H&]'#76&^@6^6&^A&_v_&_tW&aVWaW&aV}F'bn5}Y'bnd}'bn5}'bn5}k'bnrE< }'bnj}V'bn}'bnz'bn#}X'bn,}'bnk}f'bnsE? }bn/m&d(3 /Hm&dp[/&dr /&d/&dk$/Q&d/mm&dx/md/&ds m&dK/md#&dd$/m&dn{/m&dp/&dj$<&fjSJ<&fO<fy&f<&fS<&f#RA/hU["t&h( &h8&h'Cs &h'wb6&hR+4&hjw4&h'w_O8&h'Cjw8&h'Cr 'h4&hdw4hG&h_8&hC4&hwn4&h&hkK4&h&h&hsO&h_Z4t&hwO&h'_Z4&hw-&h'&h4-&h4K&h18&h'Ckw4&h4&hwnO&h'w_Z4 &h'wj_4h-&h'b8&h'wC&h&hs4h8&hC8&h'wC(P'inW(Ps'injP'in_pqP'in|P'injAqP'in'|=(P'int(P'int(P'int('in#(Py'ink(P'int(P'in'tP(Pin(P\'int(P'ind(&jjk1(&jg(j(&j(y&jk(&j#jAq]'knLqp'kndq'knLq'knLq'knrFR q.'knjqt'knq 'kny 'kn#qo'kn-q4'knkq|'knsFU q kn&lj=  &ll/N&lB&l.&l# m&mk&mv&m&m&mm&m&m'&m&m&m&mC'WU( C'WUe.j'WUre| j'WUujz'WUkj'WUu@C'WUwKjCWUj'WUse jH'WUPjCWUj'WUdC'WU%IC'WUejt'WUjk&ojEz&o\o/&oiB\&o&o#$&pjM&p p/&pB&p &p#Ap`&Sp p&d1p &*p&6Tp &_p&Spv&6p &0Vp &'/@ap &/=p &Hp`&'Sp &( p &pT&Sp &&r([ &r+~s&r/s3L &r' ;B|&rqA&rj`&r'%B~A&r'j~x&r/r3I '&rf&rdr&rF~&r`&r%X&rB!&rkeJ&rB&r&8&rC&r*&rBS&r'B&rB&r'!B&r!&rB~G&r'kS&rB`&r%&r'B&r'jIBr&r' ;B~&r'B&r&8&rCr~&r~&r'BEzg[8[&tQ&t'lJ&tl}&tl[t&ujS6&u;u&u}&u;&u#e=&v(o &vE&v's &v'3e&vO&vj`&v'&v'jJ&v'r 'v8&vdv&v&vG2&vu*&v&vko&v&v&v&v&v%&v'&v&v'&v&v&v'k%&vG2&v&v'&v'jv&v'3e&v'&v&vv&v&v'GBw=\&x(o \&x&x's x<&x'L11/\&x&xj6$&x'L3t&x'j6$&x'r \'x&xd6$\x\&x'\&x&xL&xL\&xk&xL\&x\&x;\&x'&xL&x'L'<&xLR&x'L\&xR&xL_&x1d-&x'k6$&xL&xL<&x'L'.&x'Lj3\xxR&x'L11<&x'L\&x\&x;\x\&x<&x'L4;@&y5*4; &yk1z4;$&y;4;&y1J4;$&yk4;&y5*4;$y4;&y'1J4;&y5*4-;&y'1J 84-;$&y 84;2&y5*4;;&y5*4;$&y ! %&z(#R .&z"7&z'&s L&z',kJ&zm L&zj,{L&z',"&z'&j,{"<&z'&r "'zL*&zd,{Lz&z"&z&L$&z,L&z,t&zkL&z,"&z&z&zL&z,&z',L&z,&z',&zL&z,L&z1" &z'&k,{L&z,L$&z,&z',L&z',jLzL&z',kJ"&z',&"&z&zLz"&z&"&z',&{p`&Yp p&dYIp &p&^@p &Kp&Ypv&^p &Bp &'Mp &)p &4p`&'Yxp &( p &pT&Yp &^N&}( N&}KV&}'>s/ &}'?%<] N&}w$&}j?w$&}'?%'$&}'>j?[&}'>r, N'>}wI&}d?wvN}N&}HN&}>w-&}?w;&}0%N&}k4w-&}0%N&}>N&}\&N&}H1w &}?%&6&}'0%H1w&}?%&}'0%=N&}=w&}0%w&}1fU*&}'>k?w6&}0%w-&}?&&}'?%H1w&}'?%j'wvN}&}'0%<&}'?%>N&}>N&}\wvN}N&}>&}'?%>Y&~(V Y&~k)&~'vs &~'A'iY&~^&~jAm&~'A)k&~'vjAmk.&~'vr Y'~&~dAmY~zY&~3kY&~v&~A&~5Y&~kR&~5Y&~%Y&~0Y&~&~A &~'5&~A&~'5 Y&~ &~5k&~'vkAm &~5&~A&~'Av&~'Aj)Y~&~'5'k&~'AvY&~%Y&~0Y~kY&~vk&~'Av=5&(g =|&u=u&rF =Q& @=D&k=& @=&==p&sI &E`=!c&d=&s=&u=>&j&j& &`&&#!u&( .u&IAV&r V&V&k5Vb&Su&i^VuV&s V}&dVuV&d5u&Gau&IV&j58&S8& 8&S8&89f&'/DS9f&'/{)d9f&'/o8&DS8&8-&S8& 9f&/89-&'/S8-&S8&9&'/S= &(o  &m  &'`+s]  &'TkX &* 5&j'p R&'T  5&'`+j'  &'`+rZ  '` Z&dI  &k  &`+ &XO j&OT &kN \&OT &` &v &b <&T e&'OTb &T &'OT_ &_ &OT  ;&'`+k' e&OT &XO &'Tb &'TjG  &'OTkX  &'T`+ &` &v   &`+  &'T`+`_9&j)H_@&_9&i}_9p&G_g&#5`&j64&?&&W&#-p &d- 4g&'s@ 4l&'r=  &dnB &c &oN &ok &puI&jK8I&.I&sI&3I&#[`&j&djI@&xK&j&j&jv&jY&~d&'}ZS&}Z&l3`&'jlF&( 7&kBT&j3&lFV&( &v3&'i>s &'z*zX1&3&&jzU&'zb3&'i>jzU3&'i>r 'i&dzU&13&i>/&z&q&k&q&i&E&1)&z&'q1)l&z&'qh&h&q3&'i>kzU&q/&zl&'z1)^&'zjb&'qzI3&'z*i>&i&E3&i>3l&'zi>&'%&&-&t&&J7$&7 p7 &{'3cS'j3S@l'Sl'SUl'jpSl''pS'i\Sm'i\Sr'i\Sl'#8S$'k3S'3\S'i'_SlSD'3\SC'd3Suu&Du&E>&/(&*&/uqu&%q(&'*%&/u&E&/(&*p&sp p&dp & p&s2p &=p[&sp&sp &4p &'#?p &p &&p&'sip &( p &&p &i& b.&d&1&" 7i&Bi& &" }&19&'0AD&0 &$+&' $o&( &#&O&$U&j<U &UU&U&U&#$3y}&l3y&l3y &l3y;j5&'$j &$j'j)&kjp&(.. j5&$j;&'$j:&$j&'$Vj'&iVj5&'$i3GY&hI(y Y&hIv)&hI'j4s B&hI'dP'Y&hI3}&hIjd,}&hI'dK{)&hI'j4jd,)&hI'j4r Y'ihI}&hIdd,}YhIY&hIh)Y&hIj4}&hId}&hIdY&hIkT}&hIdY&hIiY&hI|Y&hIh}&hId&hI'dh}B&hIdX&hI'diY&hIi}X&hId}&hI1xs)&hI'j4kd,}&hId}&hIdB&hI'dh}5&hI'djK}YhIX&hI'dP)B&hI'dj4Y&hIiY&hI|}YhI)Y&hIj4)B&hI'dj4&!M&Bw&fM&'Bw q&!MF&M&'Bw _&!M&B&!Mu&'Bw*:&}M&'Bw &!M&'Bwj*j&!M&Bw2~h&O~N&;2~h&O~N&:O~NO&'n%O&'nQO8&'n;CO~N&%O~R&9~&O~N&;O&nO~N9&'n9~&O~R&2&'n[n5&( #5& &'+sq &';gXp 5&b1f&j;1f&';g"+ f&'+j; &'+rn 5'1&d;15/5& 5&+1&;J1}&;g5&k}1o&;g5&5&75&B1O&;g7x&';gB1&;g&';g5&1&;g1'&1x l&'+k;1x&;g1&;J7&';gB1&';gj"[15&';gXp &';g+5&5&15 5&+ &';g+g&'4V4)>&4VZ&k4&(_ g&4Vm&'4V*2l&4V&'4V4)&;g&'4V;/,F&(a ,F&,&'s  ,/&',F&|,&j,&'pg,&'j,&'r  ,F',&d,F,F&,F&,&,&,F&k,&,F&,F&,F&,&,&',/&,E&',F&,E&,&'k,&,&,/&',!&'jp,F,E&',/&',F&,F&,F,F&,/&'^'ni^'nj^/'nrpe^/'nzp^/'njg4e^/'n'zp9^''n^'n^'n/'n#^'nk^'n^'n'b^/n^n'n^'nd `&v 1&$ `&v 1&v 1v&'v6&'Av|&'v 1&K J& &v 1&$v&v 1&' &K J&&'p6'n6}'nj1p6'nH)e6'np6'nj4e6'n'p;6Q'ng6'ng6'ng'n#6'nk16;'nb6'n'g]6n6'nb6'ndb$sM&j [S&M&8Mg&Ll&#ww\&4W&d<&GE&4&&4&4T&_&'V+O&V& /&'4 B&( 2&=&x/& B=&(o &;&'s &'@ Z&[ &j@ &'@ ( &'j@@&'r '.&d@&&J&@ &@ &k{&@ &&&&@ &'@ &@  &'@  &&@ &1&'k@&@ J&@&'@ &'@ j(&'@ Z&'@ &&&&'@ GBwQ&'Q &$QQ)&kQp&(!. Q&Q &'Q &Q&'$Q&Q&' }&^/ W&B }&^2 W&=^ W^&'^T&'_^&'^ W&P g&! &^/ W&B^&^ W!&'! &P g&&'pL'nL'nj1 L'n_;kL'nvL'nj;kL'n'vELi'ngL'ngL'ng'n#L'nk1 LS'nbL'n'g]LnL'nbL'ndb= 4&'4&&J&&&v:I3&CI"&l:I3&CI"&kCI"Ce&'TvCe&'T}C8e&'TlCCI"&vCI"&AI&CI"&lCe&TCI"Ae&'TAI&CI"&:e&'T r&(N br&ku &rs & &k, X& r&} r &ss u&: r &d, r&i r&k &j,SW&jZkSc'&SW 0&3SW&pS&#2p/&|p p&d|p &Dp&|Op &5Zp&|pE&|p &IQp &'IY\p &I8p &7Cp/&'|7p &( p &6p#&|p &7"&jU="&S""&8"{&U"&#[ g&dl1g&0s #&/r &dm ]&c&oceg&ol&l?p 4&jY w&f 0& &f &#oB&#BY& &( ;&sFS&&fs, &'_#?V&0!&j_!&'_#G!&&fj_X&&fr) /'fBF&d_vx&.1&fA&_9&d# &kO+&d#/&fB#&B.z&. &_#4&'d#.&_#2&'d#e=2&e=&d# &1Z'&&fk_4&d#A&_&'_#.&'_#jGv&'d#?V&'_#f/&fB#&B.v&f&'_#f &(R &dC&'Ws &'B&!&j&'&'WjH&'Wr 'W6&d&U&W0&)&t&kB&&W&i&U&$&'U&&'V&V&&'Wk$&0&&'U&'j&'B&'W&W&i&W&'Wp/&Lp p&dLp &p&LOp &Zp&LpE&Lp &Qp &'\p &8p &Cp/&'Lp &(* p &p#&Lp &}l&(j v&e.iN&'9sM' &'+[,`&!b&j%&'b.i&'9j{.iS&'9rM$ i'OA&d=:&.i&9=<&:4&A&kR&&i&I&E5&Pl&OE5/&'P&Hd&'d&H&p.i"&'9kO/&=<&E5&'PJ&'jH&'+[.i&'9i&I&.i&9.i&'9GBw8 &(j  &&'xsX n&'Nk' &AM&jM&'N|M&'xj&'xrU  'xr&d  &p &x,l&1 d&N &k] V&N &x & &p 6&N _&'Np &N &'Nw &w &NA&1S&'xk _&N,l&1&'Np &'Nj|B n &'Nk'&'Nx &x &  &x&'Nx-=u&'d-=&-=&'d-=&-=&d-=&'d-=u&d-=&G-==&'d}-=c&j-=&-=-=z&d-o=&k-=l&d-=&-=&-=&-=L&d&( &es]&'X~s6 l&'[-1%wp&"e+&j[+&'[-Cs+&'X~j[sb&'X~r3 'XP&d[u&V;s&X~J&[C&[-&kCY5&[-&X-&j8&V&[->&'[-V&[- &'[-W &W&[-&1s1&'X~k[>&[-J&[&'[-V&'[-jC ul&'[-1%s&'[-X~&X-&j8us&X~s&'[-X~4&(f &4y &''sa m&'-iF &v&jW8&'v &''jW &''ra ''c&dW&% &'Q&N&&kf&&'&9&%&c&'%m&\&'&&&\& &''kWc&Q&m&'%]`&'j\&'-i m&''&'&9 &' m&''GBw&q/& &q/&&'bS&')d&'o&bSq&@&q/& &@&'q/@&q/q&&'q/=&(o &r &'e+s] &'TXI&/5&j'pR&'T 5&'e+j' &'e+rZ 'eZ&dI&X &e+&XOj&OT&kS\&OT&e&{&g<&Te&'OTg&T&'OTd&d&OT ;&'e+k'e&OT&XO&'Tg&'TjG&'OTXI &'Te+&e&{ &e+ &'Te+/=&(a =&\&'Psu &'SkXn=&j&jSj&'Sk:/j&'PjS&'Prr ='P&dS==&N=&P&SN&Sk=&k:s&Sk=&P=&b=&NS&Sk|&'SkN&Sk &'SkO=&O &Skp&'PkS|&Sk&SN&'SkN&'Skj:_= &'SkX&'SkP=&P=&b==&P&'SkP(=&7];=&'7]F(==&'7]e(=`&7%(=[&'7] R=&'7]](=&'7]jP(=n&7]! &Z!A!&dZ A&4!&[OA& Z!}&Z!6&[A&4QA&'3D\A&38A&'C &'Z'A&( A&&!&ZA&'RX'nR9'njR'n_SeR'nppR'nj]4eR'n'ppER'n:RK'n:RP'n:'n#R?'nkR'n:RQ'n':RnR"'n:R^'ndC&jCkC9&?(C/&BC&C(C&#[2,M'nk,@'nj@'nUui@'nkt@'njX9i@'n'ktE,@+'n,@'n,@'n,'n#,@'nk,@'n,C'n'e,@n,@r'n,@'nd-&Q&'mJ&m~&m-p/&Xp p&dXp &p&]2p &=p&XpE&]p &4p &'?p &p &&p/&'Xip &(k p &p#&Xp &bc&(D &zs&'sL c&'bBp&cA&jbcA&'bBIzA&'jbzx&'rI y'cf&dbc"c&z&c`&b%cX&gBc&kcJ&gBy&c&*c&5c*&bB*cS&'gB5c&bBu&'gBu&c&gBzG&'kbcS&gBc`&b%*c&'bB5c&'bBjI6cc&'gBz&'bBy&c&cz&z&'bB0&(6 0K&r^0&r 0&0&k>0j&0p&{00&s &Y 0/&d>0&p~0&r0&j>+&(] ~#&T&/s- s&&X,;$ &b"&j;B&';;$"&'j;Y&/r* q'G&d;&&B&;:&;$~&k},&;$q&&& &;$5&';$&;$t&';$t&&;$ &1(&'k;5&;$B&;&';$"&'j;;$s&&X,;$&';$q&&&&';$D5&'n$)D &m$DD)&kmDp&(. D5&n$D;&'n$dD:&n$D&'m$)D&D5&'n$P-'nP'nj=P'n_@P'nKP'nj@P'n'KEQP'nP 'nP%'nP'n# P'nkP'nP&'n'PnP'nP3'nd0 '&(6 0K '&r^0 '&r 0 '&0 '&k=0 i'&0p '&{0 '0 '&s  '&Y 0 '/ '&d=0 '&p~0 '&r0 '&j=PC&(N# DC&O&'s~ &'Gtnw C&_s&jGs&'Gt.8s&'jG&'r{ 7C'J&dGCC&jC&&GW&GtD$C&k|&Gt7C&J\-C&gC&\&Gt&'Gt&Gt:&'GtE:C&E&Gtw&1xEy&'kG&Gt&GW&'Gt&'Gtj.hC&'Gtnw&'Gt7C&J\-C&gCC&&'Gt%N8&(LW ]8&8P&'Csq &'[gx6G8&+f&j[f&'[gB+8Pf&'Cj[8P&'Crn P8'&d[88&8P8&C&[J}&[gy"8&ko&[gP8&+8&8&O&[gx&'[g&[gK&'[gK8&&[g&1Y8Pl&'Ck[x&[g&[J&'[g&'[gjB[8&'[gnx8P&'[gCP8&+8&88P8&C8P&'[gCuYz&(W cz&'V&'2s 5&'$Mz&]s&j]&'hm'Vs&'2j'V&'2r Vz']&d]z6'z&'Vz&2]&]&-z&k ]&Vz&6z&>"z&I]&>"&'I]5&QK&'Qz&]K&]&1'Vp&'2k]&]&>"5&'I]'&'jh]zK&''V5&'2Vz&6z&]z'Vz&2'V5&'2&/^S&d&c@&/_&j{&/\&/& a&'l&H&S&'/&( &L&s&e&&dN&T&&? &{&&E&'M ^&U&8e&')&( &<Y&&}&jb}/&~}k&~}&}&#ACp@&'pNp@&pp&opV&op&pp&op= &~=(=&d=(&4=&~%=(&%0=f&~=&~=(&9'=(&'8I2=(&8=(&'= &'~'\=(&( =(&&=&=(&'J&JEJ&dJE&%J&4JE&?Jv&J/&JE&*6JE&'*:AJE&*JE&(J&'lJE&( JE&J &JE&O5u&'ldZ5L&ld5.5i&kl5&(n 5u&ld5{&'ldb@5z&ldO5&'ldZ5.&5u&'ldH&'n7)&n7<&kn&(@ H&n7N&'n7eM&n7&'n7)&H&'n7d&/&')/&&d+[&+%&'+%&+&+[=&(o &  &'+s} &'.s;;&UA&jGq&'.s6  A&'+jG  &'+rz  'f&dGi&k  &+&.VX&JB&kXJ&JB &&&kz[&.sS&'JBkz&.s&'JB&&JBA&1P  G&'+kGS&JB&.V&'.sk}&'.sjgi&'JB;;  &'.s+ &&i  &+  &'.s+=&(o &&'s k&'_zu&S&j_U&'_G&'j_U&'r '&d_U&&&_&_&kt&_&&&&_&'_k&_&'_&&_&'k_U&_&_k&'_^&'_jG&'_zuk&'_&&&k&'_&R<&' +#&R& +&R&R/&k &Rv&(4 &R<& +&RB&' +&RA& +&R&' +#&kR&*~&kR<&' +*~Ezc'r[8=&(o )&&/s ~;&'s7Q&M&js&'sZsM&&js&/r '&ds%&& &sL&6&kV&N&&&6&xNG&'6;&sUQ&'&Q&:A&1S&&ksG&6 &s;&'s.&'sjZ~Q&'7;&'s&&&;&'sp&( p p.&d(p &p&( (p &3p&( p&( p &*p &'5p &p &p&'( _p &(J p &p&(Op &p/&,p p&dp &p&#2p &=p&,pE&#p &4p &'?p &p &&p/&',ip &(X p &p#&,p & ' '&kIMm&dkM& Z&pIvM&k1&kI&pIM&$xM&'~M&~_M&rj&'kIrM&( M&q&kM&rM&'&&2&y&&v&=a&d&N& =& %&=& =&&'i$z&i&&&'=&( &&&3l~&y~W&ul~&|~W&t~W~&'c"~&'c"Q~&'c"u~W&~i&s~&y~W&u~&c"~Ws~&'c"s~&~i&l~&'c",&+^,&+q,&+^,&+p,+ &+'n &+' &+'q,&+n,&+^o&+^,&+q &+,+ &+'^o&+^,&+^ &+'^&,'y'eL&,'y'eLqr9&,'eL&,'y'eLpr&,eLd&,'y''keLd&,'y''eL8d&,'y''eLqC&,'k'eLyr#&,'eLr&,'eLr&,'eLqd&,'y'eL&,'yeLd&,'y''eL&,'y'eL&,'y'eLd&,'y''eL&-j6%&-1-&-il&-6&-#HAAC&.jA&.uA.I&.A&.uA&.#HM&/HM&/9HM&/HM&/9HM/H&/'H&/'K8H&/':CHM&/HM&/H&/HM&/9H&/HM/H&/'H&/HM&/H&/'&0j&00&0D&0&0#z&1j>Tz!&19z10&1z&1>z&1#G \&2j&2k2&28&2m&2#t4%&3j,y%&3%3%f&3]y%&3%%&3# "&4d5 4_p&4gsI _u&4grF B&4JdL&4bc5&4o>"&4o3&4;*6&5c*6&5]*6&5c*6&5\*650&5'&Y 0&5'&9P0&5'&][*6&5Y*6&5c*t&5c*6&5]0&5&*650&5'&c*t&5c*6&5c0&5'&cs6&6c/s6&6BBs6&6c2s6&6A=s66s&6'&YTs&6'&T_s&6'&Bs6&6Ys6&6cst&6c/s6&6BBs&6&s66s&6'&cst&6cs6&6cs&6'&cPG7&8j;V#&868&8i&8;&8#>AY}+&9j4Y}&9Y}9YF&9LYY}&9 Y}&9#&:d:D&:`s D~&:`rO @&:\dL&:bc2&:o;v`&:o}&:6my&<y&<pmy&<y&<oy<&<'@= &<'@&<'@py&<= y&<ty&<y&<p&<@y<t&<'@ty&<y&<m&<'@=H>&=H>&=7=H>&=H>&=6H>=a&='Pa&='PIUa&='P7`H>&=tH>&=DH&=H>&=7a&=PH>=Da&='PDH&=tH>&==a&='P(>D76'&'&&7667667+ " ?3!  /!$$+9E'  &J%%--&|(>&>Sd3&?5&?k7d&?#&?7&?k7T&?7?#&?'7j&?#&?'7&?7&?7&?7&?p^&@jY^&@^@&@8^`&@p&@#&Aj%z&AA&Al&Az&A#  $B8c%#'&'&766766761Y%5 /! kB @b" &K$$- &cq&$B&BRN2&C"2&Ck$2I&C2/&C2&Ck2S&C!2C2/&C'2i&C"2/&C'2&C2&C"2&C"2&Cqu&DP/qg&DBqu&DP2qg&D=PqgDPq&D'S%PTq&D'S%_Pq&D'S%Pqg&DFqg&Dq&DP/qg&DBPq&DS%PqgDq&D'S%q&DFqg&Dq&D'S%[&ER:&E[&ER:&ER:ER&E'R&E'R,&E'7R:&ERE&E%&ER:&ER&ER:E%&E'%&ERE&E&E'&F'7&F&F+&Fr&F&FsFJGJ&G$J&G} &G &G&GJGJ&G &G'&GJ&G)o&G &Gz&HH&Hdc2&H[=&H&HM&H&HJ&HaU&H'`KqD&H`K&HO%z&H'N8&H( (&HN3n&H3%&HN8LILIKJ&K'+&KK &Kk|S&K(z &K&K'&K&K'+_&K3r_&K'3re;&Le&L'xe&Lxe&Lxe;L2MGBwB&O,&OB&O,&O,BO,B=&O'V,=&O'V,=&O'V,B&O,B&O B&O,&O,B=&OV,BOB=&O'Vc B&O,B&OB=&O'Vc*&P(( e4&Pp'g&P's@ 2&P'<6&Ps25&Pj<25&P'<6$'5&P'j<'l&P'r= X''kP2Z&Pd<2P&PB'&P2T&P<2L&P)6&Pk`2>&P)6X'&Pk4&P?&P2&P<6G&P')62&P<6["&P')6f["&Pf2&P)62@&P1';&P'k<2G&P)62T&P<&P'<62&P'<6j$*2P2&P')6'&P'<6X'&Pk4&P?2P'&P'&P'<6c>&Q|c>Qc>&QdQ;>&QFc>&Q}>&Qsc>&Q|c>&Q}T>&Q_>&Q'UN>&QU>&Qz/>&Q'|zB>&Q( 2>&Qy=c>v&Q|;/>&QzBPT&RPTRsb&R~7Sn&Sy&S{7&Sv7&Sv7&Sv7S&S&S'v7&Svk&S~m7&Sv7&Sv+&T'e^+&Te^+m&Te^+&Te^+M&Te^+v&Te^+2T7c&Uj.w7o&U7cUf&Uiy7cu&Ux7&U#9V9V&W( &WeV&Wre' 1&W %&Wk&W &WwWQ&Wse* &WPxWD&Wd@&Wc1&We<&Wj&XPsz&XJ&XPvz&XIPzXP&X' BP&X' B%P&X' BJPz&X9&X &XPsz&XJP&X BPzX &X' B &X9&X&X' Bv&Yjk9&Y (mY&YZm&Y(&Y#&?n&Z(q n&Z5!&Z'(,sZ Tdo&Z' n&Zd&ZjXd&Z'!&Z'(,jX!&Z'(,rZ n'(Zd&ZdXdnZwn&Z&!n&Z(,r&Zd&Z~n&Zkd&Zn&Z(n&Z:rn&Z&d&Zr&Z'&do&Z&Z''n&Z'd&Z&Z1^}!&Z'(,kXd&Zr&Zro&Z'&da&Z'jdnZTd&Z' !o&Z'(,n&Z(n&Z:dnZ!n&Z(,!o&Z'(, [j\&]( &]!us&]'sL &]'bBYzr&]ZgA&]jbA&]'bBJuA&]'jbux&]'rI ']f&]db]&]=u&]`&]b%X&]bB&]k{[J&]bB &]/&]:&]*&]bBS&]'bB&]bB &]'bB &]&]bBuG&]'kbS&]bB`&]b%&]'bB&]'bBjJ6]&]'bBYzu&]'bB &]/&]:]u&]u&]'bBc^D&^]1=&`dO`Ok&`esX Ok]&`er. Ok&`edLO~&`bc(O&`o1{&`o8O<&`6%}&a({W &a ${&a'/sb} S&a's"r&aSr&ajbq&a's6${r&a'/j${&a'/rbz {'aY&adSaS&a${&a/z&aVa&asyS&aka{&as{&aZ&aS&aS[&as]&a'sS&asv&a'sv&aa&asA&a1J${x&a'/k]&asz&aVS&a'sS&a'sjgSaa&a's${&a's/{&aZ&aSa${&a/${&a's/-V&b(=_ V&bV&b's-} V&b'sk V&bpVr&bjVq&b's6Vr&b'jV&b'r-z V'bV&bdVbV&bV&bV&bOV&bsV&bkV{&bsV&bV&bV&bV[&bsV&b'sV&bsV&b'sV&bV&bsVx&b'kV&bsV&bOV&b'sV&b'sjgVbV&b'skV&b'sV&bV&bVbV&bV&b'scc'bc'bc.&ejeT.!&e`.eW&e.&ee.&e#hA&fj&fyf&fDyA&f&f#()&gjA)&g=)g)&gi)A&gA)&g#V &hj7% &h5 h &hB e&h7 &h#A-&i'k'Fwh-&i'k'Fb-n &i'Fwh-&i'k'Fa-n&iF-&i'k'C' F-&i'k'C'Ft-,&i'k'C'Fb7-&i' 'Fk-n&i'Fwh-ny&i'Fwh-n&i'Fb-&i'k'CF-&i'kF-&i'k'C'Fwh-&i'k'Fwh-&i'k'Fwh-&i'k'C'Fwh!&jj,y!&j!j!f&j]y!&j%!&j#&lj' &l#l&lQQ&l'&l#4 &mj7%&m5m&mBe&m7&m#A&njA&n=n&niA&nA&n#Q &o'd'ki &o'd'kq \ &o'ki &o'd'kp \&ok (&o'd' R'/k (&o'd' R'k (&o'd' R'kq! &o'/'kd \&o'ki \z&o'ki \&o'kq (&o'd' Rk &o'dk (&o'd' R'ki &o'd'ki &o'd'ki (&o'd' R'ki &pj,y &p p f&p]y &p% &p#iC&qji&quiqi&qi&qui&q#&rj&rr&rD&r&r#z&sjBz&s>zs0&szE&sBz&s#D:C&tj:&tu:tI&t:&tu:&t#&uj&uu&uD&u&u#z&vjBz&v>zv0&vzE&vBz&v#F:& 1e.&dz&h& (:&3:& l& N&*&'5&n&n&' _q&(o i&&On&6&' 6!6.&d'6!&6&' (6!&36&' 6&' 6!&*6!&'56!&6!&6&'' _6!&() 6!&6&'O6!&%@0"&(d7&(o4&.]4'Q.4&.Q4&.EB4&.1M+;&.'Q6;+&.&k;%Q6z4&.( +&./s Q6+&./r Q6+4&.Q6+4&.Q6+&.&j;%Q6B&.'1MQo)4&.Q&.'PQ4&.P4&.k+;&.'Q6;B;&.'1M;4&.Q4&.E&hn'ah&ha&hsB&h_M+&h'wa6+&h'a6kwz&h( +&h'a6s +&h'a6r +&ha6+&ha6+&h'a6jwB&h'_M)&h+-&h'`&h`&hkK+&h'wa6B&h'w_M&ha&hs\&x6\')x\&x)\&x;B\&x'M+<&x'L)6+&x')6k6$z\&x( +&x')6s +&x')6r +\&x)6+\&x)6+&x')6j6$B&x'L'MH)\&xR&x'L(\&x(\&xk+<&x'L)6B<&x'L'M\&x)\&x;.&z"'z"&z&zB&zM+"&z',6+" &z'6k,{z%&z(# +"7&z'6s +"<&z'6r +"&z6+"&z6+"&z'6j,{B&z',M)&zm&z',&z&zk+"&z',6B&z',M"&z&zN&}KN'>}N&}>N&}\BN&}HM+&}'?%>6+*&}'>6k?zN&}( +V&}'>6s/ +[&}'>6r, +N&}>6+N&}>6+$&}'>6j?B6&}'0%HM])N&}&}'0%=N&}=N&}k4+&}'?%>6B&}'?%HMN&}>N&}\Y&hIvY'ihIY&hIiY&hI|BY&hIhM+B&hI'dj6+&hI'j6kd,zY&hI( +&hI'j6s +&hI'j6r +Y&hIj6+Y&hIj6+&hI'j6jd,B&hI'dhM)Y&hI3X&hI'diY&hIiY&hIkT+B&hI'dj6BB&hI'dhMY&hIiY&hI|#5&5'5&5&B5&M+&';g6+l&'6k;z5&( +&'6sq +&'6rn +5&6+5&6+f&'6j;Bx&';gM) 5&b&';g5&5&k}+&';g6B&';gM5&5&&'&&B&M+&'@ 6+&'6k@z&( +;&'6s +@&'6r +&6+&6+ &'6j@B&'@ M)&[ &'@  &&k{+&'@ 6B&'@ M&&&s'g&g&BBz&.M+&'_#g6+'&'g6k_z&( +S&'g6s, +X&'g6r) +&g6+&g6+!&'g6j_B4&'d#.M)&0&'d#f&f&k+&'_#g6B&'_#.M&g&B & 's &s &Q &p\:&'NsE:S&'ksE &( :&/sX sE:&/rU sE: &sE: &sE:M&'jsEQ _&'Np\8 &=- &'Nr &r &k] :&'NsEQ&'Np\ &s &&e'X&X&jB&VM+&'[-X6+1&'X6k[z&( +]&'X6s6 +b&'X6r3 +&X6+&X6++&'X6j[B>&'[-VMw)&"&'[-W&W&kC+&'[-X6B&'[-VM&X&j &'&&B&M+&'F6+"&'6kFz&( +M&'6s& +R&'6r# +&6+&6+&'6jFB.&'FM)&L&'F&&kl+&'F6B&'FM&&]8&P8'P8&+8&B8&M+P&'[g6+Pl&'6k[zN8&(L +P&'6sq +P&'6rn +P8&6+P8&6+Pf&'6j[Bx&'[gM)G8&K&'[gK8&"8&k+P&'[g6B&'[gMP8&+8&cz&Vz'Vz&6z&B"z&M+V5&'6+Vz&'6kzYz&(W +V&'6s +V&'6r +Vz&6+Vz&6+Vz&'6jB"&'M)Mz&QK&'Qz&-z&k+V5&'6B"5&'MVz&6z&& ' &&B&kM+ &'.s6+ G&'6kGz&( + &'6s} + &'6rz + &6+ &6+ A&'6jGBS&'JBkM)&U&'JB&&kX+ &'.s6B&'.skM &&/&"'"&&B&M+";&'s6+"S&'6ksz%&(# +"&'6s +"&'6r +"&6+"&6+"M&'6jsBG&'6M)&nQ&'&&k+";&'s6B;&'sM"&&4&P''P'&P&PB&PM+'&P'<66+';&P'6k<z*&P(( +'g&P'6s@ +'l&P'6r= +'&P6+'&P6+'5&P'6j<BG&P')6M)&Ps"&P')6"&P&Pk+'&P'<66B&P'<6M'&P&Pn&Z5n'(Zn&Z(n&Z:Brn&Z&M+o&Z'(6+&Z'(6kXzn&Z( +&Z'(6sZ +&Z'(6rZ +n&Z(6+n&Z(6+&Z'(6jXBr&Z'&M)n&Z&Z''n&Z'~n&Zk+o&Z'(6Bro&Z'&Mn&Z(n&Z:&a {'a{&aZ&aBS&aM+{&a's6+{x&a'6kz}&a({ +{&a'6sb} +{&a'6rbz +{&a6+{&a6+{r&a'6jB]&a'sM)r&av&a'sv&aS&ak+{&a's6BS&a'sM{&aZ&a:4&.S:&h_:\&x':&z:N&}H:Y&hIh:5&:&:&. &:&V:&:8&:'z&:&k:&:&P:wn&Z&:S&au(&uF'67'&7676'& Bq &8 +%Vl = &8Z uFtuF&-#R7'R!'drd+33Rk %6!&''&7$   *i ,,/S-pX&fUq!&fr!&f"s!&f,zt &f# .u&fv!&ftw &fux!&f"y &fS-pX&fUq!&fr!&f"s!&f8y!&f m &f+y&ftw &fux!&f"y &f (,&fv!&f*!&f"63'&77676'&77677    n     D  # :  B|:632'&554766   %F! ;M #!   #,d4=6''&767&766'&'&7676'&7&6T    ' .6  &V(\ K9& %)2H$!)] '  R0''R' P*%'#"'&'&.177676676760N'9'8W (C-F* 2 d %''&776F!F!U#B$B7'&''&767676#&7&&./g#0!% A'. U#:C9 N= 5+4N 29-+$$&:T[:LT:LT '&76765&76#&'&&.P633L$ #8 >I2L  W3X& @+! -8:TDj&''&76676 "320  ^,' ,>A&i"&'&''&763326766^' Vd2I.  '^, ,Yk#"'"''&7632676.|z  N==N   , ,k#"'"''&7632676ל  NkkN   ,  , '=$'L[ 'G3[  [ 'kL[ ?/( [ '[L 'B'L[ 'Q[ '=$'==[  'E[ 'E'[L'W''6:We'6:We'WLeW7h76'&67662#"'&'&76676767676#"  LL ,&ŝS4U݇;u +DA=1' E  % ,(!,7O&{ [2-i %# 672'&'&7676;2   #4߫ =z Ji=%   ),XF7f4767667667676'&6766#"'&'&76D!,   "  O'1 ,&ŝC2U݇:u  & 3   +(!,nr)6'&''&'&76764'&7H   . ??M AM   2/*Ev8T  %7'&7667&'&76632&77&I !Lu$** O[7k*`97  $;2 9 )'*+V kI!-X&sB1 7f&st -`&rW1 7f &rt -i7f r&'r&rr&kdr;&(@ r&r&'r& r{&'r&r&'4&Q? &'/J&/@&/7f`.66766#"'&'&7667676676676n Q(/ ,&ŝC2U݇;s +A + U #""+(!-7O  %'&'&&'&&'&&'&776376zCD   _E** "#MHg6J1Q/&P;(uK9%< o (G476'&'&'&5 H  P+ P`&N= 1q'&76''&76&#"376w! . N.$-pv,%%J0?>T?!%  &'4&'&&'&&''&76676     k B44M? >55`)7  6:%W,$6354''&&'&'&676760   S@@  2  )ECv3%=~79gp &#3 ?W,& F&W,& 9W,& F)W,& 4W, W& 'MqKW& 'MeVW& 'MW,& qW,& FWW& F&W,& 9W& MW, vW& 'MFWW& FW,& FoW& 'MFohG&( oG&i&']#s !T</&'o oG&'  (&jo (&'oWg&']#jo&']#r oG'] (&doo (GolG&oG&]# (&o (&oo|G&k (&ooG&]oG&8o pG&$ (&o p&'o$! (/&oE&'o\oG&\ (E&oo @m&1;&']#ko (&o (&o! p/&'o$ (!&'ojWo (GT<E&'o !/&'o]#oG&]oG&8o (GoG&]#!/&'o]#ff&s? fk&r< 7f`^ 0& j\F >)&  & &&& 9{ & G g&& #+ 1q )q& 4q&  1W& d 1A& d 1& d 1q q& xA& 'dx 1& d&q& 9 1& d 1A& d.h76167662#"'&'&Z ,&ŝS4U݇;t~+,(!-"Qy&'&'&7676'&'&76"445 B7\^ $_`B O =>< $)_ 'BT.6'&763232'&7667&'&76760% c a%u!   )( cI  @>P  &]1<9 7&6767676'&&'''&'&767667667676'&#"73263& 67%)_# l#=3A3)z'  +C+.<= H.&((   2  "!w'k 3r 3'kz r> &>k 3r.4<''&'&762766766766766676"''7&&#"6:8 CR<&  ^I,  #)vh!  ,B (6b- (] "'(@(&&4* -#'&767632&76'&'4'& 6kJ2G! Q9Eg"5= U 3) (#H&b'bwd0zp^331Hq_33;sDr_338s`33Vb,t_33GKu]33.?v_33"%w_33#$x_33Er:y_330zp^331Hq_33;sDr_338s`33:*_332y^33+^33"%w_33#$x_33Er:y_33,h(e33.?v_331:*_33 6#"'&&'&&'&7O(]  #*!Q &jCDM&bc&<dL&dz& &15&o>q&oz ?g&gr8 ?&gsl gjUA#+57''&7767&76762'&&5&67&7675&FZ#e 6\',>  H#G'+13 / /++? #7@(L-K) '&Q D3# !UA.T&-j4&.j?&0jk&hjK&rje&vjo\&xjh&zjN&}j4Y&~jR &jN&jY&hIjT5&j}v,F&jp&j{&jOh&jB=&j &j]-c=&j &jCY{&j&jSv=&j:c&jr&j}8 C&jm28&j)z&j &jX&jt&j&Pj`zn&Zj &]j{[mS&ajtV&bj4&.j?&hjK\&xj&zjN&}j4Y&hIjT5&j}&j{&jY &j|&jC~&j}28&j)z&j&jX&j&Pjzn&ZjS&ajoxG&jgj/ T3&767676'&'&#"! '&&''&76! 766$& .28  <LA< ! MlWC5G'"" 6 )*= ( ! $   kkYV-cp[/cq,^r,NsA@tHu,oXv.7w06x.RyYV-cp[/cq,^r,Ns->!+@.7w06x.Ry!(,oXv$R*'dL<&1 76#"5432lo))Y8; /(R s'c~s'V/sL }'X&[6u' 'jWQ'X'Wi&jX'Vx'V/rI f&Vy5&dX|&[5'V'Wi''Ot'kM'Of'Vy't'`'X"'O'`'Xi'O'Uti'Ut'OA&1'V&kX"'O'Wi'X'`&j?'X}'O&[6'X'Vf'Vy't'V'X'V'c&V'V'tB'`M+'X'V6+&kX'V6 /(R +s'V6/sL +x'V6/rI +'V6+'V6+&jX'V6B"'O'`Mu)' 'O'U'U'kM+'X'V6B'X'`M'V't#6763&'&7366765&&'&#)$,9$)$,9$/ "  " Z9$)$,9$)$,  "  1(&B')/#&?'od21/';&B')/#L'v&?'od21/'';&B')/#L'S'v&?'od21/'{';&B')/#L'~'v&?'od218/''C';&B')/# L'g+'v&?'od21/'9';&B')/#L'x'v&?'od21/'{';&B')/#L'~'v&?'od21('{&B')/#'~&?'od21('{&B')/#'~&?'od21('&&B')/#'f&?'od21(&B')'/{#&?'o'd2~1(&B')'/'#&?'o'd2g>(%&'&'&76$76#'&6767676Zd&L/@v5 2=dx' JM!E|7XCf!q;-3\,H>L4%&'&7476%6#"'&&'#'&6767676 u" >cE7 T'@v5 2=dJ]!?*(W Q4PZU% &6-3\,H T5&7667676'&'&#"! '&&''&763 766,%& .28   <L< ! MJWC4H%" 5 )*= (! $   (E7/:"'&547&'! '&''&5476! 76632#"'7&#"326766& qBC" h  !]T7a!!- 5( $  04 !#$* $7 m&''&76232676#"&   5   5 ,67f.Y&'&676762#I  5   r   $*;&n(m &n]&n'Q(sn &n''dX;o&n#&nj'c&n''d(#&n&j'Q(&n'Q(rk 'QnH&nd'Yn&n"&nQ(&n'G;&n%&nk-&n%&nQ&n,4&n?L&n'd46&n'%?&n'd&n'%P&nP&n%)&n'Q(k'6&n%&n'G4&n''d?&n''djXYn&n'%X;&n''dQ(&nQ&n,Yn&nQ(&n''dQ(7f3'.st 7f8'.rt 7f.&nj:&(l #&s&/sL (}&&[6 &b&j&'p&'(jx&/rI ('5&d&&( &i'&&kM&&&t4&`?&4"&'`?&&'&&A&1&'k("& &i4&'`?&'jp}&&[6&'(&&t&(&'(&jM[G&8=4[G&8/?[G&8Cs[G&8'BS~[G&8B[G&81([&8'/1k[G&8( [G&80[G&81[G8h&jM&jM&MBU"56763276AL  =   BgP |.s|GPF2#"&&5466"326654&5J":##<$$<#! F`X3S2+S:3T1_EEU.M.EP5Q0754&#"&505&7>3320&&#"&4766766t "='---    P,%#&&'6676654&#""&5>323267632"9 & 1 +;7eI2+&>0 4' #3/3<$ P=22#"&'&&5463232654&#"&545&7>54&#"&&566*! *$/G&*   " (&6P #&#)<   ,'!3& $Q2321#0#"&55#&566763 5f/5iiQ da B:h S@72#"&'&&5463232654&&#""&50>73267#"#1666".F&*   & h -  #3*>#  ,'( .?8 "  R'72#"&&5467667632654&#"+A$9 7!+&S7B   5@"9")B'0R)" I,/" 2".(&:P"2632#"&5>7#"#'>7# &/1  M BY`* +(  K"2D23#"&&54676'.54662654&&'&#""3256654&2 ' %%98#1 "4 K%) +.)#%. ('%0-F * R'667#"&546632&76654&&#"326.7A +@$9!6!+%S H-4@#8")B&1Q(" #1".'%;'s'SB.S's'SB. 'q%'+0 6'q%'+08-''Ch8''Ch~''Br~S''Br''v%''vR'L'x'L'x"','&z"','&z'0%'>}6'0%'>}k'5'v~k '5'v~  'OT'`+  e'OT'`+3'q'i>3'q'i>)X'd'j4hI)'d'j4hI ';g'+ x';g'+,E'','''@ ''@ ''d#&f4'd#&f''W$''WH.i''9O.i/''9 'N'x _'N'xs'[-'X~s>'[-'X~\ '''c ''' 'OT'e+ e'OT'e+ 'Sk'P|'Sk'Pz'gB'zS'gB''';$5'';$'Gt''Gt'8P'[g'C8Px'[g'C'VK''2'V''2  'JB'+  S'JB'+'_''_'Q''G''6'')6'P'G')6'P!''(,Z!''(,Zu'bB']uS'bB']${'s'/a${'s'/aV's'bV's'b+'Q6'SB.+S'Q6'SB.+-''a6h+''a6h+R'L')6x+'L')6x+"','6z+"','6z+'0%'>6}+6'0%'>6}+X'd'j6hI+'d'j6hI+';g'6+x';g'6+'@ '6+'@ '6+'d#'g6+4'd#'g6: 'sE'N: _'sE'N+'[-'X6+>'[-'X6+';$'6+5';$'6+P'[g'6+Px'[g'6+VK''6+V''6+ 'JB'6+ S'JB'6+"Q''6+"G'6'6+'')6'6P+'G')6'6P+''(6Z+''(6Z+{'s'6a+{'s'6aE'o']#'o']#&'OV"&'OV+&'V6O+"&'V6O'%'Q(n6'%'Q(n'('"'('&M3V^727&&''&676#"'&767667&547676'"'47674'&&'&&7674'j p5#3&% " )8 0 )  !&!=)d  P2%$  ?1  @*? +FE55-Xf7.4741U0 2Q'+ '/%V24!!@;% \NU/ ,91 9 X&'ay)~j! '"''&7632676̜  N皚N   ,  ,k%6#"$'&''&76632$X  Fc  ?)i  + ,  Aj%6#"$'&''&76632$   DDi ,,*4)'&7676676'&'''&7676676676676 F.~ !(Bf "  . `@At4=.2U#Ҷs/@5%'-&4%'67&'&767$#"''&&'&t###fp<3"D f(+:q#MhY~FLn#r_g P٪/.!{*4&_{*4&_{*4&_{*4&_*4_*&_'5 *&_'5v8*&_'5C*4&_ *4&_{*&_{*4&_*&_5*4_*&_'5{*&_{*4&_{{*&_'5{4&`/A4&` 4&`/A4&`"4`<&`'2G<&`'2/8<&`'2C4&`G4&`/A4R&`/A4&` <&`24`^T&`'J4R&`/A4&`/ART&`'Ja/PeXd//G$5Z:Scp&fUqW&frW&f"sW&f,tV&f#CduQ&fvW&fwV&fxW&f" yV&fScp&fUqW&frW&f"sW&f8W&f V&f+U&fwV&fxW&f" yV&f %(b&fvW&f*W&f1xXA'%1&B/#[c'n&?d2D,/g'''&'%$''&''"'&7667'&76676676$%6676767676367676&''&76762'&'''&&'&&'&&'&&'667%67&'&776767667637667&'&76762'&''&''&'&&'&76675&7667676"&'&%&&&,#b::B/W!??/ km,T/3@tEe(  76ZY>B  7  1  BS ) -  YO"8:= kZYXw%:,5qno%  :83!};QT6  ''<U: " _p])T/ 13=Jf) /^I A; P D  (' 6' W0wD> &7; #8 ,7 L$B!!@C !$#  " ' `h;+,/@u:74 62Dlg(+`?5# 7 # !4 A% 1  $ %/ 4AAV1/# &  ;21 G& V@&6 *W'%.b'7'0661D.. B.. D##2"'&&5466#2"'&&5466   8DB >X& 8DB>X&,;?#32##"&17##"&17#"66737#"6673766323766323237;@ < v @ :C = u < wKy n wn w y nxnx yy5GQ[2372#0#"&'.'#"'"&57&&'.'66327&&'.5466326654&'7"#"  1!  1);]43  &" ">(;\*" *3)%!r %L+2. '54&#"#&4767"326672#"&'#"&&54667&&546.'326"6654&& Jc,A $*&  BB! "   )/(0!V1(R6.@'S )/+ :,:#  v>3,>' 192  &$ %* ' %F19J/=1BU8A<+" C..#&>5"," 2"'&&546h  !) .v2 +Y" 2 $g6602'.'0&'&&7>704'&&'&67670676'&1.'&6760267>( " #$ !!    %  \ &   '     !(    663232##"55#"54673    g72&&5>54.5466t '="  !  #.T?+ "780>32"546E*@C5  MZ-  !  3b2#"&&54>"326654& ;`99`;:d<#3320&&#"&&7>766 / 8eB KJI   -,/..7s3%!&&'>76654&&#""&5>3232667632&BA""/"/ 2B)/M.("(]2!  954&#"&&56611 %# /3$.L\//E #../!C1/,/\s 0%0# 9,4R9 # IB%?( -"-?$</u2321#0#"&55#&5667663- 1$ XN[u  naBwC2#"&'&&5463232654&&#""&54>73267"#1660Z9,J[//F $..,?.$  1  &L #;3U44U=! # IB-A$ 3MSC )&$+ ?v-2#"&&54667>76632654&&#""0Q2<^46[7!4*[T!\m+J$')# &UG9^9Do?6aR-6&yJ M:)T8MB*I-9r-26632#"&&5>7#"&'>7:622}'   .;@? ,@E>&n  Ol{~8%IB>j#8K2#"&&546676'.54662654.'&#"#""3276654&&-T5B*,,=`41\;&:4(8V4$%%$ $! (  j>/.E!.:!4L)D:)<( ,B.+@$/!1(@%6#. !3 30!?v,7667#"&&546632&&6654&&#"326c\l((/R2<_47Z6!4*[T!$(*" &yJ%UG9_8Dn@6aQ,7$;)T8MB)J- 7 74632#"&4632#"&7+**++**+@+-,,=*-,-&g$72&&5>54.5466'4632#"&  &="  !:,('+ '.T?+ "**00%#"'%&&5467%63210  l 8,  8?I !"667!2!"667!2t  t  27461%%0&7632#"&&27 m ,8 5dx2>"&54676632#"&'&&54667>54&#"4632#"&q  )$ 182!(90  %/##E+*(0(  ';)+7%   9) &&F)*-*-4L[2#"&5467#"&&54>3232>54&&#"#"&'.54>"32677&&`{<#=M+$< +8+#=MU*B7,(/hUK}]3%<##  -N0:iR3&:4ML8hR0'-4(43+YR@& #=P.BrE?i@9^E  LoEHvG)ES*`PcR`766323&&#"&&63267654.10&#&"#""#"""03&&#"&&7266766033267261\  !F 83 #   ' - "%0 "/ S2! !  ,+&,  b!;8J[23'""#*#&&7>76654&'.#&673260326654&&#'32654&#"G.Z=$# 54#9.+j6G<!LL'%/!5/22%/+&D9."*;&0T.g -';2%E.&;7F;'u62#"&'.#"3267>72#".54>y0p+  *E4ET&3P7,:  .dDEz\55]z +5+ --KyE9nX56, -7+0VvEGz\4!+E2#""#*#&&7>76654&'.#&67326032654&&#"Gq];iOEC3 !LL'&wq@oIKdV}Q'.g -nt `@!7o2>3#"'&&##"332667632#"'&&'&#"033267667632*#&&7>76654&'.#&67 =ORC --Q3    9 !(@/    HfoeG !L%J!)9 # ,!>:.g -! b2>3#"'&&##"332667632#"'&&'&#".#"&&7>76654&'.#&67 =ORC --Q3   9 !!67N!L%J!)9 #( .g -'S%454&'.#"&673267#"#".54>32#"&'.#"3267665&J%=& .iDEz]45]zF0p+  *D46K,4M4$    h  0VvEEy^5 +5+ ---Ma39lX3 !267"13267065'4&'.#&673267"&&#"&&7>766554&1&&#"1&&#"&&7>76654&'.#&67O9!=OOQM862QNP ( - (( .( .g -!?;267"&&#"&&7>76654&'.#&67OQNP (( .g -+92267"#"&'&&54632326654&'.#&67OFY" $  P- oT ( KQq -!z267"67>76654&&#&47327"013#"&'.'&#"&&#"&&7>76654&'.#&67OA$)$IC6(0$9@=6"$H2M8K ,52QNP (3&*(  %:A $RI..( 0 :GB( .g -!7E7033267667632!"#&&7>76654&'.#&673267"(@/   4N PO ,!>:.g - (b267032650>7>123267"3&&#"&&7266766544'4&#"#"'3&&#"&472667>5>74&'&&#&671 '29$' +0 <%H "V"  < "6"$$, Xr>;\f,3&cxx/3' T/=U?:C./  #&"`h`G  \26764554&&'.#"&73267"#"&'3&&#"&6326676654&'.#"&67:CYb-"#"3" >$%r$$> "3"#! 5[ov8 5.  ,3+8& 9  ;Z6''2#".54>"32>54.sAw]77]wA@x]77]x)+;#.K7,;$/L3[xEEw[33[wEEx[3*.KZ,8q_:-JZ,8r`:!(Q#"&'&&54332654&&#"&&#"&&7>76654&'.#&6732632(9Y2% $.1!QN!LM+=f=:V/G8'C*x( .g -)M't(<2326321#".'.54>"32>54.sAw]7>iA"1,5%$ FI(GDF'FtE7]x)+;#.K7,;$/L3[xEI~\ "0. \MEx[3*.KZ,8q_:-JZ,8r`:!M`213#"&''0&##&&#"&&7>76654&'.#&673264&&#"3266H=`8*-$@)$H2M8K QN!LMo*(,1(O;5+0S3.( 0( .g -'C* :.B2#0#"&'.#"#"&'.'663232654.'.5466,K-"-&.A C->a6+c,  )7!&9.2#B)>` 'N-2.%!911I:5R. D? 53!+4/(" 2D33O.c@26632#"'.##&&#"&&7>7665#"#"&'766323#%  ,[PN[,  %#  8#7..#8  L267"3266554&'.#&673267"#"&'&&554&'.#&67N78'H/ #5" 4"KyG=n#P- 1O'+' 1jU H  G c=*,$iL -L267"10>76654&&#&673267"#"&'&&'.#&67O '' "&#0" /  2/0  P )'YWG+,EPK4+ *IxlrD  , k267"10>7663210>76654&&#&673267"#"&'0#"&'&&'.#&67O"-,% !$#/" / &%' !" O (-]O1,HUSA1rp\7'?ID1+ (EslqD 0P`c* + r267#">7654&#"&67327#"3.#"&&6326654''3.#"&4726677'&&'.#"&67$Km5-0MK*$0@8'($;:)H)",' '/0&:'0  $Q A9 .`R8 /;8  -pd754'.1&&'&&'&673267">76654&&#&673267"&&#"&&7>766" . POu'("#)" /"-/&QM 7?9$  +CJ   6IMA ( .X="#"&'667376671327667632**1"&745 %,$>h=!6CHC6 ;"   ?[heT2 T)=+_.2SeleP0"%!=9?%E2#.10"&5>76 $% ,%%,%% +B?) .**. )?B+  0663!21!0&N +9F23267#"&'#"&&5467>754&#"#"&5467>2655)B(  (+)0%:! BG  #4> #(&C,   #7+ .%<1!   %1B"&#""&56654&'.#"&7>307>32"326654&&&B 7T1 !'9\6-L\'!-260   :) 6^<:Y=v $0H$CL *#"&'&#"3267#"&&54>32 &-A+2 0I/6^9)H[3)2 u( *?DO !   .$1[@-VF* ?N226554&'.#"&7>30323#"554&#"&&54>"3266554&7S1  53% %1/Q16RW%5.-Y  :)6   6\9>[;2*D'Pf %673267#"&&54>32'2>76654&&#",/+2 0I/6^9$=N*0B' !RT#!+&  3A" !   .$1[@.WE(.3& ,()H2#"&'&#"32#&&#"&&7>76655#&&5667354>+  r^KJF +*@E+ -#"G ( . 2ZE(+ESe%#"&54667&&54667&&54663237&&'"#"&'322322#326654&"32665454&&>-:,J]2H\&!&*1/P2!3z   .P3  8-l B3/2>[ ^(1,I5?1$ :  C*)B'   (C( m05& ,7%*7$ 6f2&&#"&&766766554&&#"&&#"&&7>76654454&'.#"&7>3027>g89K> % (DJ7S1 063gM?(  .M#?' 2 (   "."%4@&&#"&&7>766554&&'.#&&63>74632#"&DI%I> ****.2.p!# ' ('))**++7754&&'.#&&63>7#&&547>4632#"&W%I> A< %+**+>!# ' (=t(!3 7bg**++ Ck7&&#"&&7>76654454&'.#"&7>306676654&&#&47032673#"&'0&&'&&1KJ7S1  $3" ),1!7D-#)" ;+E%6 . (   ".,'   @(' !)=  34&'.#"&7>30&&#"&&7>7665445V7S1 KJ!   ".\. ([2>32&&#"&&766766554&&#"&&#"&&766766544554&&#"&&#"&&7>766554&&'.#&&63>727>s/99;89K> % +I@ ' (DI%I> /5%/'3gM?(  .M#?' .?. (M#?' 2.p!# "Cd2&&#"&&766766544554&&#"&&#"&&7>766554&&'.#&&63>7227>s89K> % (DI%I> /53gM?. (M#?' 2.p!# "#2#"&&5466"32>54.Dg:=h>:d=>f=)29 E;%19!E<% +GU2#"&#"&&#"&&7>76654454&&'.#&&63>7766"326654&>;V.,GT("KJ%I> : *+!.;`68X= 4. (A!#  #H G8L`+8H23267&&#"&&7>766554&#"&&54>"32654&&%*(JJ$-1R1.M] "%,%   52..T 6Z49\A"3-D#(U9M2#"&'&&#"&&#"&&7>766554&&'.#&&63>727>c    !UI%I>  !. $ % w2.p!#  ".%f@2#"&'.#"#"&'.5463232654&&'&&54>#2  *" /05X3 @ $,.+=#7?3, - 0*1;&+"*.! <1%3 DB-32#3267#"&&55#&&56673566762o_!,;&E +5 '#  ?6 4:Z%4&&'.#&&63>7323#"554&#"&&554&&'.#&&63>73265[%I> 53% '8"/7%J> .*!# ' (   1P.T!# ' (XNQ  A267"10>76654&&#&473267"#"&'&&'.#&67J "! "5; !!+S1 04  B=(!3< 7Xe|2667"10>54&'&&#&67267"106676654&&#&473267"#"&'0.'1#"&'.'.#&67}3.  !   ,KJ "52 ,,  ! +') ,1  @<&-.#  >8#1J#  ?cb?)BKDMJ07YSU2l267">54&&#&4732667"3&&'"&4726654&''3&&#"&&7267667.'&&#&67J>#"51) 03$++-MKF-  "45+3$3$&&.N P&   8)"66"  U.  #9%!45! + W267"10>76654&&#&473267"0#"&54672667667.1.#&67J "! "5; !!$*,!&?" '9- (-( 04  B=(!3< -KZ['/G&0!! !Q[Q4532673266766321!0&5470&"#"#"5>70(8o+  &0  , ".//! S +2>/e&&#"&'466323267#"&;!/ $7#=;!. $7"= " ,  " . 03#"&54>766724632#"&u&   '_*++*#;RZP KYXE"5,, *-+1;2#"&'&'3267#"'"&'7&&54>7&#"&.  -+2 0I/AY$>R-  ( !   .$fQ)QD-5*?5E+mY2#"&'&&#"3#663232676#".#""&546676654&'#&6633&&54>5  ! "#) !-&#(   D %(?Km  D2 4 $@. #   ')O$& 2YD'Gb'576'#"&'&'7&5467'&676322654&&#"9: 5 359453 3*9 8Q%*)%-,6 7-7<.851 2,8 :76L7-H)N7-G(tz735#&6633&'.1&&'&&'&673267">7654&&#&673267"3#3#&&#"&&7>76655#&66M` L#! - OOu'("#)" 0"./%[ T_ UPN` %7B<&  +DJ  6JN@%..#~B\2#"&'&#"#"&'&54632326654&&'.54>7666654&&'.5459  #+;5!--J+   #+;5!--J@ !38( !47(~  <:7B-A=/    ;:7B-A=/  )A72:! (B72:!&f94%J:#R4>32#".7326654&&#"#"&546632#0#"'.#"32766724)Ia77aJ**Ja77aI),e<=e<O.>O)B&0  #(+!  07aI))Ia77aI**Ia6=f<d<754&#"#"&547>2655,?  .!" (6 04 (;     :-z    3&   V   -#"&15!0&50663)}4WJl#iw4>32#".7326654&&#"72131#"&''0&##3&"#""&4726766554&'&&#&4723264&#"3264)Ia77aJ**Ja77aI),e<=e<%5 '!  :  !  / b7aI))Ia77aI**Ia6=f<d<76654&#""&5>323267632/ "#% "5"3>3,m  u &)  '*!5! )"42(A&&#)s>22#"&'&&5463232654&#"&&5467>54&#"&&766, "  #6P&+    (($ Cs$! &+:  (("5 !'i"Y`732665.54&'663232672#.'#"&&'#"&&54>74.546766323     #:).    1#/ ++ 5 B &(% & 4&#83L.B Hek+>[e\ -5-  /& ~GSf3&&#"&632667665455"&54>323261"26612'5&&#"266326766545 R--M^t$:B1D ; !   $  ZX3E) & %,  KJ 4632#"&K**(+**--h*%6632#"&'&&54332654&#""&5667302-  "0    &r34&#"&&5447>33232.#"&43267>5o #E/  $ &% && $   . $"j2#"&&5466"326654&&1J*+J/0J*+J& !&A))E)'B))D("2<("1<)HU\23#0#"&55#&&56676%32.#"&43267>554&#"&&7>30&1676%5u "7p/P$ %% '& $ #F0  Q  Q y XUB: $  . `y #(!/_l23267632#&&'>76654&#""&5>%32.#"&43267>554&#"&&7>3%&1676>3>3,m   "#% "5# %% '& $ #E0  x Q  y42(A&& &)  ')!5! )" $  .m` !Wdk23#0#"&55#&&56676%22#"&'&&5463232654&#"&&5467>54&#"&&766%&16765x #7p/<, "  #6P&+    (($ C Q  ! y XUB:$! &+:  (("5 !'"` y #(/O2>%326632#".546676676654566327#"&54632$0 !#!  *$ 182!(9/   1**(/ 9* &%(  ';)+7%  ().+Q'KQ'LwR'MLB'OFL'T E'NNZ2>3#"'&&##"332667632#"'&&'&&#"33267667632!"#&&7>76655&#""#"""03&&#"&&726676674'.#&67503326 =OQC ,-Q4     & !'A/   6P   (  3 "/ ! !L'+ %J!)9  #" ,!>:.N(*  (^v'R!7Q'K!7Q'L=!7R'M!7L&Ta !?Q'K!?Q'L!?R'MUL&T 1Q2#""#*#&&7>76655#"47354&'.#&67326#032654&&#"32Kq];iOEC3 PO!LLV}&wq@oI}KdV}Q'.  - `@ B'Oj'Q'K='Q'L'R'Mm'B'Og'L'T 5=.7'46320763201#"'0.1#"#"&&5** '(** )))* **'!-92#"&'.77&&54>3232>54&''"&&FZ7]wA'K#AR7]x@EB@+,;$+;#< (,YEw[3- --TEx[3$-JZ,<{0].KZ,7p.Q'KYQ'LR'MyL'T pQ'Lx!$]267"6632#"&'&&54332654&&#"1&&#"&&7>76654&'.#&67O*=d;7W2% $12!QNP ")M8:V.G8'D*( .g -%b2#"&'&5463232654&'.54676654&&#"&&#"&&7>76655#&&5667354>A*O2!*#.,4M%4 5+!"0 6J9 *DP!<'#)"*(<-1H& +% $<(/%)"9&WJ. . 2ZE(' ' ' p'|'&mGNar23267#"&'#"&&5467>766544'&&#"#"&5467>326632665&&5447%"2>76654&&0A( 16-.+3 0I/1Q;4%:! 2;7/ #4> H*?(  1!+&  .33A" !   .$$# #7+ *01!  5 % 1 ()  ,h& ' ' ' |'(' (' (' <|' /A#".54>32&&'1&&77&&'&67"326654&'&&f\-,:9cA'OC(&=I$ %`V3O*"(+!$  ?&0WJuD5S:9T8@A; 9W-8M'8U,&M Cp'' '( ' p'|'8  $7"5467!24632#"&4632#"&>#$$##$$# $$####$$)52#"'&&77&&54663232>54&'"7&&l 17 a:>f=m1976654&'.#"&7>30766"326654&,;V/,HT(!KJ7T1 ; )+!.;`68X= 4..d   ".$H G8L`+ |''PI >'*('QLi' +n|%"""03&&#"&&7266766766323&&'326672#"&54667#"&&63267654.10&#&"#""'267261'03$- "%0 "/    !(. $11(=83 #   ' !QS2&*   ! $  "&&:.   ,+/+Ta%326672#"&54667&&'#"&&5467>754&#"#"&5467>323267'2655 '($10&5 )0%:! BG  #4> )B( #(-    "&&5,  #7+ .%<1!  &C,    %'uQ'L' 'uR'Mz' 'uF'''uP'U' !P'Uw'6#JY#323#"554&#"&&54>322655#"4734&'.#"&7>3032"3266554&653% %1/Q16RW!7S1  6%5.-f   6\9>[;;   :) *D'Pf !7'P >'*!7('Qi' !7F''!+72>3#"'&&##"332667632#"'&&'&#"033267667632326672#"&54667!"#&&7>76654&'.#&67 =ORC --Q3    9 !(@/   9($10&9/F !L%J!)9 # ,!>:'  "&&6, .g -+?P%326672#"&5467#"&&54>323267'2>76654&&#"l4#$10,6^9$=N*0B' !RT$,/+2!+&  $)>   "&&)G1[@.WE(.33A" !    ,()!7P&Up' 'R'Mu+' '('Qe+i' 'F'+''+'+'!R'Me 6R'M!2#&&#"&&7>766554&1&&#"1&&#"&&7>7665#"&546734&'.#&673267"34&'.#&673267"13267065'4QM862QNCBPOOO9!= ( .( .P $  $$  $,ts 6t34&'.#"&7>3032#27>32&&#"&&766766554&&#"&&#"&&7>7665445#"546#37S1 0689K> % (DJ4'   ".  "3gM?(  .M#?' 2 (uqB'O 7p'I'P (>'*!?('Q(i' !+?W267"&&'326672#"&54667#"&&7>76654&'.#&67O&- $10':NP ((  $  "&&9. .g -+%P\&&'326672#"&54667#"&&7>766554&&'.#&&63>74632#"&-$10(:I%I> ****.2 $  "&&9. .p!# ' ('))**!?F'%4&&#"&&7>766554&&'.#&&63>7DI%I> .2.p!# ' (!+E' +'+9R'M+'~ !+'r +C'*Ol7676654&&#&47032673#"&'0&&'&&1&&#"&&7>766554&&'.#&&63>713# ),1!8D-#)! :+E%6 KI%I> *,'   @(' !)=6..p!# ' ).$!7Q'L  Q'L!+7'5 + '!@' 'W!7' '<S7&'&&7754&'.#&673267"7033267667632!"#&&7>76655']POr(@/   4N @ - (O\ ,!>:.U ?A70'&&774&'.#"&7>307&&#"&&7>76654455#F7S1 ReKJ1   ".:G. (cQ'LC'R +'+C'0P'UC'% E'+f%#"&'&&5463232653&&#"&6326676654&'.#"&67326764554&'.#"&73267"uGY# $ /B''> "3"%$ 5":BYb.$%"3" >'&pR (wd*  ,$[ox; ,  ++X%54&&#"&&#"&&7>766554&&'.#&&63>7227>32#&547>y (DI%I> /589A< &>#?' 2.p!# "3gMX=t(!3 7b''Pp >'*'('Qmi' 'Q'Lk'L' ' '^t2>3#"'&&##"332667632#"'&&'&#"33267667632"""##".54>32"32676654'&&D =OQC --Q4    9 "(@/    Hen2@w^66\w@Il+<&0M7? @%J!)9  #" ,!>:1XuEEvZ2#-JZ,8p^8 #D@"/CT%267#"&'#"&&5466326632"32>54.!"2>76654&&e+3 0H/*KL+Dh:=g@3UH'0B' 16-. & &!+&  I!   .$:d=>f="#.33A" C29 E;%19!E<%()  ,!Q'LO' !+'{+'!P&Um' .T'L.%f' .U'M%f' .[&R%gf& .S&U[%f' cc&R@gDB& cW'U 'kcL#&&#"&&7>76655#"473#"#"&'766323!26632#"'.##32gPNfe[,  %#E#%  ,[g-.. #8   8# DB9#3267#"&&55#"4735#&&5667356676232#32?p!,;&CBE +5o_p '#  ?6E 4: EE'qp''Pz >'*('Qzi' 'N'GQ'LX'L'o ' +k%#".554&'.#&673267"3266554454&'.#&673267"326672#"&546*7cL+OO,1-.H) !#0" .#9/2$109DtU -- 1O' $']P( ' q /0  "&&)K+u"&&554&&'.#&&63>7326554&&'.#&&63>7323"326672#"&5467#"554&/7%J> .*%I>  -$10;,+ '81P.T!# ' (XNQ !# ' (  ,3  "&&)Q R'M' pR'M8+ ' pL'T XQ'Lb' XF'J'XP'U' =7&&#"&&7>76655#&&5667354>32#"&'&#"KJF +*@E  ( . 2ZE(* -#-P'U+' ++754&&'.#&&63>7#&&547>W%I> A< %>!# ' (=t(!3 7bxKS2#&72654&#&&)77( %% (9:&7 !5"3"&&5466 $$ '88 5! 7&:9({$ iEi &0+GhN4632#".  !,,j,+ $"[2#"&54>766+-    "$ +,{.'&&5667667632). -)  " !(  ($zb$2326672#"&'&&#""&54676"'  &!%  b      0| 463!21!0&|  &$5!2X22q\2#"&'&54633266 6((>  )#\'33' Hj 4632#"&&&&&(''((qn 2#"&546#2#"&546((((''((n'))''))'g 4632#"&732654&#"9((88((9-F(77((99(z>32#"'&&'&&'4632.)  (/B "$(  ("_"&'&&54667 #8   0&   A2"&56654&&546 6($)Y% - DP 4632#"&****s**+++<2&&5>54&&5466 #8  * 1%   hU%0632#"&'&&5463232654&#""&76673  2- "*      ! +j'326672#"&54667. $21(= $  "&&:. :L&e&p L&Ae& 5&S & &:& `&RVk&  L&f&!5&S &5&!`&R n6&!L&ag L5&gbL&[k& 'L& +k&.L&%fj&..&Se& g&cP&DD&s 5d&S EB& d&2EB&Q&K&MQ&L&P&T$q&e8X&S & 5&)&l`pQ&K+ &877463373210&8  # $ 877463373210&8  # $ 774663!21!0&7c  )974663!21!0&9b  )9c74663!21!0&9  )9!74663!21!0&9-  ),4>32#"&'&,$1(# +)B.#  &##I476632#".+ #(1$i7&  #.B,o'##b/##S/#I#IW1476632#".7476632#".+ #(1$+ #(1$i7&  #.B)7&  #.B!bE2674&&'463232672#&'"&&'.'6674&#"&5463    )3      3) 0,  ,0  #3JJ`GG`JJ3& +lx3672#&&#"#"&5>5&&#""&5463265&&'6654&'6674&#"&546332674&&'463232672#&'"  3)    )3   3)    )3    #  0+  +0  &  &  0,  ,0  #ExV46632#"&&E%?%&=%%=&%?%&>&&>&%?%%?) 7#"&54632++++>,,+-) #%#"&54632#"&54632#"&54632*,,*++++*++*>,,+-,,+-,,+-,v/<L\l2#"&&54662#"&&5466!2#"&&5466#"&16632"326654&&!"326654&&"326654&&-F')E+-E'(EM-F')E+-E'(Ev-F')E+-E'(E  3z r&B*)E)'C))D)&B*)E)'B))E)&B*)E)'B))E)C q#2<)"2=)#2<)"2=)I#2<)"2=),2#"54>766f  01+ %57 ,%2#"54>766#2#"54>766#  u#  C> %57 C> %57 0bz72.'&&'>76 #>)".+ +.")?"z2F&!" "!&F2G747>7.'&@Z1+**+1Z@'E. &31 03& .G&,G%&&'>7.'667@Z0++ ++0Z@&G. &30 13& .E'Z$ <''www&f$sS34547#&6633>32#"&'.#"3#3#3267>72#"&&'#&66;* ]L/o+  *D3:N-   4S;,8  .`CP\, Ck> )3) +,5Y6 9a:4* +6)CrH@70663!0321!0&@B) 8  @0A%0#"554##0&54676213255067663213321#"0!0&7667621D!#  Jʹ #"p # P+7&&5467>766>10#"'  ,/%W  8     $Fj|b:Ctg j:s#2"&'.5464632#"&%   '3+**+s" ;RZP  KYXE"+-,, z.54>7,-OM33MO-,*UhB  Ajccj@  Bh z&&7>54.'&673LO----OL3*cjA  BhUUhB  @j) 74632#"&)++++@+-,, 2#"&166m  !Iy*2672#&&#&&546\Lb*) )*bL        :}6320#"&'&+595+ U ?klA sy""5467>7.'&&543 Lb )) )) b        sD4&'&&54>72#2#.54676654&'&&54766h *=<  % () )( %  <=* 66$&C4"1    6'(6 ! 2!4D&# '5  5H|#"74504766321| iSsD"&7>54&'&&54>3".54676654&&'&6!<=* 77 *=< # () )( # 4C&""'5  5' "&D4!2 ! 6('6 ##  1"G7747>7.'&747>7.'&@Z1+**+1Z@@Z1+**+1Z@'E. &31 03& .G&'E. &31 03& .G&,G7%&&'>7.'667&&'>7.'667@Z0*+ +*0Z@@Z0++ ++0Z@&G. &30 13& .E'&G. &30 13& .E'fQ#".546632 &32!  (%  $%aQ4>76632#"&%( !23& %$  P.'&&5667667632-32,! !"     g 4632#"&732654&#"9((88((9-((77((99(Y=$2326672#"&'&&#""&54676),! /)(" &=        /q 463!21!0&q   r(#"&'&546732688 .,("$$"]@&6632#"&'&&54332654&#""&566730 6/  ! %3    " OP 4632#"&O*++*h++**b@ 4632#"&74632#"&&&&&&&&&%%''%%''-+7>32#"'&&'&&'46323-"" "-3  " ! 3bLtss uw,vr6j*vj{6632#"&'&#"32#&&#"&&7>76655#&&#"&&7>76655#&&566734>765467.'&&!P  s_KJKJF +'32'.'&&#"3267&&#"&&7>766554&&'.##&&#"&&7>76655#&&566726a  ,#r:h DJ! ^KJF _{;0(, 4LM' (2.p!# ( . 6632'.'&&#"3267&&#"&&7>766554&&'.##&&#"&&7>7665044&5#&&#"&&7>76655#&&566734>76.'&&346[5)V>  ,#s:h DI _KJKJF +'76655#&&56673546672>300&&#"&&7>7665445454&'&&r^KJF +5Y6 .5 KJ 2(: ( . CmA ".7[or1. ((G !56672>300&&#"&&7>76654&&'&&32#&&#"&&7>76655#&&#"&&7>76655#&&566734>765467.'&&K+ .5 KI 2(s_KJKJF +'32#"&#""&5665454&'&&32#&&#"&&7>76655#&&56673546672>30"326654&&!(9\6-L]0&B  2(r^KJF +5Y6 .5 6"-22 6^<:Y=60"G !5(: ( . CmA ". $0H$CL x6672>307>32#"&#""&56654&&'&&32#&&#"&&7>76655#&&#"&&7>76655#&&566734>76"326654&&%5467.'&&K+ .5  (9\7-L]0&B  2(s_KJKJF +'7665445454&'&&32#&&#"&&7>76655#&&56673546672>30 $3" ),1!7D-#)" ;+E%6 KJ 2(r^KJF +5Y6 .5 2,'   @(' !)=6. ((G !5(: ( . CmA ".#&&#"&&7>76655#&&566734>766672>30676654&&#&47032673#"&'0&&'&&1&&#"&&7>76654&&'&&32#&&#"&&7>7665.'&&3546KJF +'32&&#"&&766766554&&#"&&#"&&7>7665445454&'&&32#&&#"&&7>76655#&&56673546672>30/789K> % (DJ 2(r^KJF +5Y6 .5 2"3gM?(  .M#?' 2 ((G !5(: ( . CmA ".#&&#"&&7>76655#&&566734>766672>3027>32&&#"&&766766554&&#"&&#"&&7>76654&&'&&32#&&#"&&7>7665.'&&3546KJF +' $ (DI 2(s_KJ #t( . G[2!#) "."3gM?. .M#?' 2.(./ !5(: ..m  '8<%+g#&547>554&&'.##&&#"&&7>76655#&&5667267>32'.'&&#"326  A< & ^KJF   ,#r:h' (=t(!3 7bK!# ( . _{;0(, 4LM+S267#&&547>554&&'.##&&#"&&7>7665044&5#&&#"&&7>76655#&&566734>766632'.'&&#"'.'&&34:h A< % _KJKJF +'  ,#q#' (=t(!3 7bK!# ..*CK!( . G_7 ,)0(, 4LMh  +=@9%/0233a/U(23322(2339-|(233+.)233;-{+2339-~*2333)'2337-~ 2339-~*233 |65 66  6 6  6  66  6  6a'7#53'7D!_^ D  Db '7'77/////// ///00//$53222$5!2L22~$5!222-$5!2-P22$5!222F$5!2x22$5!2@22r$5!222$5!222:$5!2l22$5!222$5!2,22$5!2422$5!222^$5!222$5!222&$5!2X22$5!222$5!2 22R$5!222$5!222n     *    " : 0H 0H "x 6  * 6 \ DP ` 2 H& dn $ * >  F^ R , * " L LCopyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri).AmiriBold1.000;ALIF;Amiri-BoldAmiri BoldVersion 1.000Amiri-BoldKhaled HosnyAmiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named.http://www.amirifont.orgThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttps://scripts.sil.org/OFL5PAR .NDRBN .NHR/M CNEP+RDP qD4QNER3P %P0R (N2N:N*R JN-R8NIp qD6QN,PJ9O (PGN' FN,RDN'!N EP9R7N'1P.Inverted Arabic commaDisable curvilinear KashidaNo automatic vowel insertion above name of GodLow Baa dot following a Raa or WawAlternate medial Meem and final Alef combinationLocalised @ and & symbolsAlternate, more naskh-like, Gaf formKasra is placed below Shadda instead of base glyphA'5D) 91(J) EBDH()*97JD 'DC4J/) 'DEBH3)DA8 'D,D'D) (/HF 4/) H#DA 5:J1).A6 FB7) 'D('! 'DE3(HB) (1'! #H H'H4CD (/JD DDEJE 'DE*H37) E9 'D#DA 'DEF*GJ)4CD 91(J D9D'E*J @ H &4CD (/JD F3.J  DD'AH69 'DC31) *-* 'D4/) (/D' EF *-* 'D-1A2 >?@^_`      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]abcdefghjikmlnoqprsutvwxzy{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~nbspace number-aryear-arfootnotemarker-ar pagenumber-ar samvat-ar cuberoot-ar fourthroot-array-arperthousand-arpertenthousand-ar afghani-arcomma-ardateseparator-ar verseComma-ar misraComma-ar!sallallahouAlayheWassallamcomb-aralayheAssallamcomb-arrehHahabove-arrehDadabove-artakhallusabove-ar tahabove-aralefLamYehabove-ar zainabove-ar fathasmall-ar dammasmall-ar kasrasmall-ar semicolon-armark-ar endoftext-ar threedots-ar question-aryehKashmiri-arhamza-ar alefMadda-aralefHamzaabove-arwawHamzaabove-aralefHamzabelow-aryehHamzaabove-aralef-arbeh-ar tehMarbuta-arteh-artheh-arjeem-arhah-arkhah-ardal-arthal-arreh-arzain-arseen-arsheen-arsad-ardad-artah-arzah-arain-arghain-arkehehTwodotshorizontalabove-arkehehThreedotsbelow-aryehFarsiVinverted-aryehFarsiTwodotsabove-aryehFarsiThreedotsabove-ar kashida-arfeh-arqaf-arkaf-arlam-armeem-arnoon-arheh-arwaw-aralefMaksura-aryeh-ar fathatan-ar dammatan-ar kasratan-arfatha-ardamma-arkasra-ar shadda-arsukun-armadda-ar hamzaabove-ar hamzabelow-ar alefbelow-ardammainverted-arnoonghunnaabove-arfathaHorizont-ar vabove-arvinvertedabove-ardotvowelbelow-ardammareversed-arfathatwodots-arwavyhamzabelow-arzero-arone-artwo-arthree-arfour-arfive-arsix-arseven-areight-arnine-ar percent-ardecimalseparator-arthousandseparator-ar asterisk-ar behDotless-ar qafDotless-ar alefabove-ar alefWasla-aralefWavyhamzaabove-aralefWavyhamzabelow-ar highhamza-arhighhamzaAlef-arhighhamzaWaw-aruHamzaabove-arhighhamzaYeh-artteh-ar tteheh-arbeeh-ar tehRing-artehThreedotsdown-arpeh-arteheh-arbeheh-arhahHamzaabove-arhahTwodotsverticalabove-arnyeh-ardyeh-arhahThreedotsabove-artcheh-ar tcheheh-arddal-ar dalRing-ardalDotbelow-ardalDotbelowTah-ardahal-ar ddahal-ardul-ardalThreedotsdown-ardalFourdots-arrreh-arrehv-ar rehRing-arrehDotbelow-ar rehVbelow-arrehDotbelowdotabove-ar rehTwodots-arjeh-arrehFourdots-arseenDotbelowDotabove-arseenThreedotsbelow-arsheenThreedotsbelow-arsadTwodotsbelow-arsadThreedots-artahThreedots-arainThreedots-ar fehDotless-arfehDotmovedbelow-arfehDotbelow-arveh-arfehThreedotsbelow-arpeheh-arqafDotabove-arqafThreedotsabove-arkeheh-ar kafswash-ar kafRing-arkafDotabove-arng-arkafThreedotsbelow-argaf-ar gafRing-arngoeh-argafTwodotsbelow-argueh-argafThreedots-ar lamVabove-arlamDotabove-arlamThreedotsabove-arlamThreedotsbelow-arnoonDotbelow-ar noonghunna-arrnoon-ar noonRing-arnoonThreedotsabove-arhehDoachashmee-artchehDotabove-arhehHamzaabove-ar hehgoal-arhehgoalHamzaabove-artehMarbutagoal-ar wawring-ar kirghizoe-aroe-aru-aryu-ar kirghizyu-ar wawTwodots-arve-ar yehFarsi-ar yehTail-ar yehVabove-arwawDotabove-are-aryehThreedotsbelow-ar yehbarree-aryehbarreeHamzaabove-ar fullstop-arae-arsadLamAlefMaksuraabove-arqafLamAlefMaksuraabove-ar meemabove-arlamAlefabove-ar jeemabove-arthreedotsabove-ar seenabove-ar endofayah-arhizb-ar sukunround-ar sukunoval-ar hahabove-armeemStopabove-ar seenbelow-ar maddalong-ar wawSmall-ar yehSmall-ar yehabove-ar noonabove-ar sajdah-arrhombusStopbelow-arrhombusStopabove-ardotStopabove-ar meembelow-ardalVinvertedabove-arrehVinvertedabove-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-arsheenDotbelow-ardadDotbelow-arghainDotbelow-arsindhiampersand-arsindhipostpositionmen-arhehVinvertedabove-arbehThreedotshorizontalbelow-arbehThreedotsupabove-arbehThreedotsupbelow-artehThreedotsupbelow-arbehTwodotsbelowDotabove-arbehVinvertedbelow-ar behVabove-arhahTwodotshorizontalabove-arhahThreedotsupbelow-ardalTwodotsverticalbelowTah-ardalVinvertedbelow-ar rehStroke-arseenFourdotsabove-arainTwodotshorizontalabove-arainThreedotsdownabove-arainTwodotsverticalabove-arfehTwodotsbelow-arfehThreedotsupbelow-arkehehDotabove-arkehehThreedotsabove-arkehehThreedotsupbelow-armeemDotabove-armeemDotbelow-arnoonTwodotsbelow-arnoonTahabove-ar noonVabove-ar lamBar-arrehTwodotsverticalabove-arrehHamzaabove-arseenTwodotsverticalabove-arhahTahbelow-arhahTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar$rehTwodotshorizontalaboveTahabove-arhahTahabove-aralefTwoabove-aralefThreeabove-aryehFarsiTwoabove-aryehFarsiThreeabove-aryehFarsiFourbelow-arwawTwoabove-arwawThreeAbove-aryehbarreeTwoabove-aryehbarreeThreeabove-arhahFourbelow-arseenFourabove-arseenVinvertedabove-arkafTwodotshorizontalabove-arpound-ar piastre-ar behVbelow-aryehRohingya-arbehMeemabove-arpehMeemabove-artehTehabove-arrehNoonabove-aryehTwodotsbelowNoonabove-ar fehAfrican-ar qafAfrican-arnoonAfrican-ar fathaCurly-ar dammaCurly-ar kasraCurly-arfathatanCurly-ardammatanCurly-arkasratanCurly-artoneonedotabove-artonetwodotsabove-artoneloopabove-artoneonedotbelow-artonetwodotsbelow-artoneloopbelow-aropenfathatan-aropendammatan-aropenkasratan-ar highwaw-ar fathaRing-arfathaDotabove-arkasraDotbelow-arleftarrowheadabove-arrightarrowheadabove-arleftarrowheadbelow-arrightarrowheadbelow-ardoublerightarrowheadabove-ardoublerightarrowheadDotabove-arrightarrowheadDotabove-ar dammaDot-arenquademquadenspaceemspacethreeperemspacefourperemspace sixperemspace figurespacepunctuationspace thinspace hairspacezerowidthspacezerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark lineseparatorparagraphseparatorlefttorightembeddingrighttoleftembeddingpopdirectionalformattinglefttorightoverriderighttoleftoverride narrownbspacereversedsemicolon dottedCircle commareverseduniFB51uniFB53uniFB54uniFB55uniFB57uniFB58uniFB59uniFB5BuniFB5CuniFB5DuniFB5FuniFB60uniFB61uniFB63uniFB64uniFB65uniFB67uniFB68uniFB69uniFB6BuniFB6CuniFB6DuniFB6FuniFB70uniFB71uniFB73uniFB74uniFB75uniFB77uniFB78uniFB79uniFB7BuniFB7CuniFB7DuniFB7FuniFB80uniFB81uniFB83uniFB85uniFB87uniFB89uniFB8BuniFB8DuniFB8FuniFB90uniFB91uniFB93uniFB94uniFB95uniFB97uniFB98uniFB99uniFB9BuniFB9CuniFB9DuniFB9FuniFBA1uniFBA2uniFBA3uniFBA5uniFBA7uniFBA8uniFBA9uniFBABuniFBACuniFBADuniFBAFuniFBB1dotaboveSymbol-ardotbelowSymbol-artwodotshorizontalaboveSymbol-artwodotshorizontalbelowSymbol-arthreedotsupaboveSymbol-arthreedotsupbelowSymbol-arthreedotsdownaboveSymbol-arthreedotsdownbelowSymbol-arfourdotsaboveSymbol-arfourdotsbelowSymbol-ardoubleverticalbarbelowSymbol-artwodotsverticalaboveSymbol-artwodotsverticalbelowSymbol-ar ringSymbol-aruniFBC0tahbelowSymbol-aruniFBD4uniFBD5uniFBD6uniFBD8uniFBDAuniFBDCuniFBDFuniFBE1uniFBE3uniFBE5uniFBE6uniFBE7uniFBE8uniFBE9uniFBEAuniFBEBuniFBECuniFBEDuniFBEEuniFBEFuniFBF0uniFBF1uniFBF2uniFBF3uniFBF4uniFBF5uniFBF6uniFBF7uniFBF8uniFBF9uniFBFAuniFBFBuniFBFDuniFBFEuniFBFFuniFC00uniFC01uniFC02uniFC03uniFC04uniFC05uniFC06uniFC07uniFC08uniFC09uniFC0AuniFC0BuniFC0CuniFC0DuniFC0EuniFC0FuniFC10uniFC11uniFC12uniFC13uniFC14uniFC15uniFC16uniFC17uniFC18uniFC19uniFC1AuniFC1BuniFC1CuniFC1DuniFC1EuniFC1FuniFC20uniFC21uniFC22uniFC23uniFC24uniFC25uniFC26uniFC27uniFC28uniFC29uniFC2AuniFC2BuniFC2CuniFC2DuniFC2EuniFC2FuniFC30uniFC31uniFC32uniFC33uniFC34uniFC35uniFC36uniFC37uniFC38uniFC39uniFC3AuniFC3BuniFC3CuniFC3DuniFC3EuniFC3FuniFC40uniFC41uniFC42uniFC43uniFC44uniFC45uniFC46uniFC47uniFC48uniFC49uniFC4AuniFC4BuniFC4CuniFC4DuniFC4EuniFC4FuniFC50uniFC51uniFC52uniFC53uniFC54uniFC55uniFC56uniFC57uniFC58uniFC59uniFC5AthalAlefabove-arrehAlefabove-aralefMaksuraAlefabove-aruniFC5EuniFC5FuniFC60uniFC61uniFC62uniFC63uniFC64uniFC65uniFC66uniFC67uniFC68uniFC69uniFC6AuniFC6BuniFC6CuniFC6DuniFC6EuniFC6FuniFC70uniFC71uniFC72uniFC73uniFC74uniFC75uniFC76uniFC77uniFC78uniFC79uniFC7AuniFC7BuniFC7CuniFC7DuniFC7EuniFC7FuniFC80uniFC81uniFC82uniFC83uniFC84uniFC85uniFC86uniFC87uniFC88uniFC89uniFC8AuniFC8BuniFC8CuniFC8DuniFC8EuniFC8FalefMaksuraAlefabove-ar.finauniFC91uniFC92uniFC93uniFC94uniFC95uniFC96uniFC97uniFC98uniFC99uniFC9AuniFC9BuniFC9CuniFC9DuniFC9EuniFC9FuniFCA0uniFCA1uniFCA2uniFCA3uniFCA4uniFCA5uniFCA6uniFCA7uniFCA8uniFCA9uniFCAAuniFCABuniFCACuniFCADuniFCAEuniFCAFuniFCB0uniFCB1uniFCB2uniFCB3uniFCB4uniFCB5uniFCB6uniFCB7uniFCB8uniFCB9uniFCBAuniFCBBuniFCBCuniFCBDuniFCBEuniFCBFuniFCC0uniFCC1uniFCC2uniFCC3uniFCC4uniFCC5uniFCC6uniFCC7uniFCC8uniFCC9uniFCCAuniFCCBuniFCCCuniFCCDuniFCCEuniFCCFuniFCD0uniFCD1uniFCD2uniFCD3uniFCD4uniFCD5uniFCD6uniFCD7uniFCD8hehAlefabove-ar.inituniFCDAuniFCDBuniFCDCuniFCDDuniFCDEuniFCDFuniFCE0uniFCE1uniFCE2uniFCE3uniFCE4uniFCE5uniFCE6uniFCE7uniFCE8uniFCE9uniFCEAuniFCEBuniFCECuniFCEDuniFCEEuniFCEFuniFCF0uniFCF1uniFCF2uniFCF3uniFCF4uniFCF5uniFCF6uniFCF7uniFCF8uniFCF9uniFCFAuniFCFBuniFCFCuniFCFDuniFCFEuniFCFFuniFD00uniFD01uniFD02uniFD03uniFD04uniFD05uniFD06uniFD07uniFD08uniFD09uniFD0AuniFD0BuniFD0CuniFD0DuniFD0EuniFD0FuniFD10uniFD11uniFD12uniFD13uniFD14uniFD15uniFD16uniFD17uniFD18uniFD19uniFD1AuniFD1BuniFD1CuniFD1DuniFD1EuniFD1FuniFD20uniFD21uniFD22uniFD23uniFD24uniFD25uniFD26uniFD27uniFD28uniFD29uniFD2AuniFD2BuniFD2CuniFD2DuniFD2EuniFD2FuniFD30uniFD31uniFD32uniFD33uniFD34uniFD35uniFD36uniFD37uniFD38uniFD39uniFD3AuniFD3BalefFathatan-ar.finaalefFathatan-ar parenleft-ar parenright-aruniFD50uniFD51uniFD52uniFD53uniFD54uniFD55uniFD56uniFD57uniFD58uniFD59uniFD5AuniFD5BuniFD5CuniFD5DuniFD5EuniFD5FuniFD60uniFD61uniFD62uniFD63uniFD64uniFD65uniFD66uniFD67uniFD68uniFD69uniFD6AuniFD6BuniFD6CuniFD6DuniFD6EuniFD6FuniFD70uniFD71uniFD72uniFD73uniFD74uniFD75uniFD76uniFD77uniFD78uniFD79uniFD7AuniFD7BuniFD7CuniFD7DuniFD7EuniFD7FuniFD80uniFD81uniFD82uniFD83uniFD84uniFD85uniFD86uniFD87uniFD88uniFD89uniFD8AuniFD8BuniFD8CuniFD8DuniFD8EuniFD8FuniFD92uniFD93uniFD94uniFD95uniFD96uniFD97uniFD98uniFD99uniFD9AuniFD9BuniFD9CuniFD9DuniFD9EuniFD9FuniFDA0uniFDA1uniFDA2uniFDA3uniFDA4uniFDA5uniFDA6uniFDA7uniFDA8uniFDA9uniFDAAuniFDABuniFDACuniFDADuniFDAEuniFDAFuniFDB0uniFDB1uniFDB2uniFDB3uniFDB4uniFDB5uniFDB6uniFDB7uniFDB8uniFDB9uniFDBAuniFDBBuniFDBCuniFDBDuniFDBEuniFDBFuniFDC0uniFDC1uniFDC2uniFDC3uniFDC4uniFDC5uniFDC6uniFDC7uniFDF0uniFDF1uniFDF2uniFDF3uniFDF4uniFDF5uniFDF6uniFDF7uniFDF8uniFDF9uniFDFAuniFDFBrial bismillah-aruniFE70uniFE71uniFE72uniFE74uniFE76uniFE77uniFE78uniFE79uniFE7AuniFE7BuniFE7CuniFE7DuniFE7EuniFE7FuniFE82uniFE84uniFE86uniFE88uniFE8AuniFE8BuniFE8CuniFE8EuniFE90uniFE91uniFE92uniFE94uniFE96uniFE97uniFE98uniFE9AuniFE9BuniFE9CuniFE9EuniFE9FuniFEA0uniFEA2uniFEA3uniFEA4uniFEA6uniFEA7uniFEA8uniFEAAuniFEACuniFEAEuniFEB0uniFEB2uniFEB3uniFEB4uniFEB6uniFEB7uniFEB8uniFEBAuniFEBBuniFEBCuniFEBEuniFEBFuniFEC0uniFEC2uniFEC3uniFEC4uniFEC6uniFEC7uniFEC8uniFECAuniFECBuniFECCuniFECEuniFECFuniFED0uniFED2uniFED3uniFED4uniFED6uniFED7uniFED8uniFEDAuniFEDBuniFEDCuniFEDEuniFEDFuniFEE0uniFEE2uniFEE3uniFEE4uniFEE6uniFEE7uniFEE8uniFEEAuniFEEBuniFEECuniFEEEuniFEF0uniFEF2uniFEF3uniFEF4uniFEF5uniFEF6uniFEF7uniFEF8uniFEF9uniFEFAuniFEFBuniFEFCzeroWidthNoBreakSpace aAlf.fina.alt aAlf.fina aAlf.isol aAyn.fina aAyn.init aAyn.isol aAyn.medi aBaa.fina aBaa.init aBaa.isol aBaa.medi aDal.fina aDal.isol aFaa.fina aFaa.init aFaa.isol aFaa.medi aHaa.fina aHaa.init aHaa.isol aHaa.medi aHeh.fina aHeh.init aHeh.isol aHeh.medi aKaf.fina aKaf.init.alt aKaf.init aKaf.isol aKaf.medi aLam.fina aLam.init aLam.isol aLam.medi aMem.fina.alt aMem.fina aMem.init aMem.isol aMem.medi aNon.fina.alt aNon.fina aNon.isol.alt aNon.isol aQaf.fina aQaf.isolaRaa.fina.alt2 aRaa.fina aRaa.isol aSad.fina aSad.init aSad.isol aSad.medi aSen.fina aSen.init aSen.isol aSen.medi aTaa.fina aTaa.init aTaa.isol aTaa.medi aWaw.fina aWaw.isol aYaa.fina aYaa.isolaLam.medi.LamMemFinaaMem.fina.LamMemFinaaBaa.init.BaaRaaIsolaRaa.fina.BaaRaaIsolaLam.medi.LamWawFinaaWaw.fina.LamWawFinaaLam.init.LamHaaInitaFaa.medi.FaaYaaFinaaYaa.fina.FaaYaaFinaaLam.init.LamLamHaaInitaLam.medi.LamLamHaaInitaHaa.medi.LamLamHaaInitaBaa.medi.BaaMemFinaaMem.fina.BaaMemFinaaSad.init.AboveHaaaLam.init.LamBaaMemInitaBaa.medi.LamBaaMemInitaMem.medi.LamBaaMemInitaBaa.init.BaaDalaDal.fina.BaaDalaBaa.init.BaaMemHaaInitaMem.medi.BaaMemHaaInitaHaa.medi.BaaMemHaaInitaBaa.init.BaaBaaYaaaBaa.medi.BaaBaaYaaaYaa.fina.BaaBaaYaaaLam.medi.LamYaaFinaaYaa.fina.LamYaaFinaaKaf.init.KafBaaInitaBaa.medi.KafBaaInitaLam.init.LamMemInitaMem.medi.LamMemInitaLam.init.LamAlfIsolaAlf.fina.LamAlfIsolaLam.init.LamHaaMemInitaHaa.medi.LamHaaMemInitaMem.medi.LamHaaMemInitaBaa.medi.BaaBaaInitaAyn.medi.AynYaaFinaaMem.init.MemRaaIsolaRaa.fina.MemRaaIsolaFaa.init.FaaHaaInitaHaa.medi.FaaHaaInitaHaa.init.HaaHaaInitaLam.medi.LamQafFinaaQaf.fina.LamQafFinaaSen.init.AboveHaaaMem.init.MemHaaInitaBaa.init.BaaNonIsolaNon.fina.BaaNonIsolaKaf.medi.KafMemFinaaMem.fina.KafMemFinaaBaa.init.BaaSenInitaSen.medi.BaaSenInitaBaa.medi.BaaRaaFinaaRaa.fina.BaaRaaFinaaKaf.medi.KafRaaFinaaRaa.fina.KafRaaFinaaLam.init.LamHehInitaHeh.medi.LamHehInitaMem.init.MemHaaMemInitaHaa.medi.MemHaaMemInitaBaa.init.BaaMemInitaMem.medi.BaaMemInitaSen.init.SenHaaInitaKaf.init.KafRaaIsolaRaa.fina.KafRaaIsolaAyn.init.AynHaaInitaKaf.medi.KafYaaFinaaYaa.fina.KafYaaFinaaLam.init.LamMemHaaInitaMem.medi.LamMemHaaInitaHaa.medi.LamMemHaaInitaLam.medi.LamAlfFinaaAlf.fina.LamAlfFinaaLam.medi.LamMemMediaMem.medi.LamMemMedilam-ar.init.Lellahlam-ar.medi.Lellahheh-ar.fina.LellahaBaa.init.BaaBaaHaaInitaBaa.medi.BaaBaaHaaInitaHaa.medi.BaaBaaHaaInitaBaa.medi.SenBaaMemInitaMem.medi.SenBaaMemInitaBaa.init.BaaBaaIsolaBaa.fina.BaaBaaIsolaBaa.init.BaaBaaMemInitaBaa.medi.BaaBaaMemInitaMem.medi.BaaBaaMemInitaKaf.medi.KafBaaMediaBaa.medi.KafBaaMediaBaa.medi.BaaNonFinaaNon.fina.BaaNonFinaaHaa.init.HaaRaaIsolaRaa.fina.HaaRaaIsolaHeh.init.HehHaaInitaLam.init.LamRaaIsolaRaa.fina.LamRaaIsolaSad.init.SadHaaInitaHaa.medi.SadHaaInitaBaa.medi.BaaYaaFinaaYaa.fina.BaaYaaFinaaBaa.init.BaaSenAltInitaSen.medi.BaaSenAltInitaRaa.fina.PostToothaYaa.fina.PostToothaBaa.init.AboveHaaaBaa.init.BaaHaaInitaBaa.init.BaaHaaMemInitaHaa.medi.BaaHaaMemInitaHaa.fina.AboveHaaIsolaLam.init.LamHaaHaaInitaHaa.medi.1LamHaaHaaInitaHaa.medi.2LamHaaHaaInitaAyn.init.FinjaniaHaa.init.FinjaniaHaa.medi.FinjaniaSen.init.PreYaaaSen.medi.PreYaaaSad.init.PreYaaaSad.medi.PreYaaaBaa.init.High dotabove-artwodotshorizontalabove-arthreedotsupabove-ar dotbelow-artwodotshorizontalbelow-arthreedotsupbelow-ar aKaf.isol.alt aKaf.medi.alt miniKeheh-ardash.kaf aKaf.fina.altthreedotsdownabove-arthreedotsdownbelow-argafsarkashabove-araBaa.medi.Highsmalltaa.abovetwodotsverticalabove-artwodotsverticalbelow-ar ring.belowaSen.fina.BaaSenaMem.fina.PostToothkashida-ar.LamKaf.1dot.alt1gafsarkashabove-ar.alt2gafsarkashabove-ar.alt1aBaa.init.WideaHaa.medi.HaaHaaInitaHaa.medi.AynHaaInitaMem.medi.LamMemInitTatweelaHeh.init.AboveHaaaHaa.init.AboveHaaaAyn.init.AboveHaaaHaa.fina.AboveHaaIsol2aMem.init.AboveHaaaKaf.init.AboveHaafourdotsabove-arfourdotsbelow-arthreedotshorizontalabove-arthreedotshorizontalbelow-ar aYaa.tailwavyhamzaabove-ar vbelow-arvinvertedbelow-ar tahbelow-artwostrokes.belowwasla-arfathatan-ar.smallfatha-ar.smallopendammatan-ar.smalldamma-ar.smallsukun-ar.small2kasra-ar.small2 damma.markhamzadamma.mark aAlf.daggerdot.1dot.2 dash.kaf_gaf dotbelow-ar.ltwodotshorizontalbelow-ar.lthreedotsupbelow-ar.lthreedotsdownbelow-ar.ltwodotsverticalbelow-ar.lfourdotsbelow-ar.lthreedotshorizontalbelow-ar.lvinvertedbelow-ar.low stroke-ar twoabove-ar threeabove-ar fourabove-ar fourbelow-arfourFarsi-ar.urdsixFarsi-ar.urdsevenFarsi-ar.urdaKaf.init.KafLamaKaf.fina.KafKafFinaaLam.medi.KafLamaLam.medi.KafLamMemMediaKaf.medi.KafLamaLam.medi.KafLamHehIsolaLam.medi.KafLamYaaaLam.medi.KafLamAlfaLam.fina.KafLamaAlf.fina.KafAlfaKaf.init.KafMemAlfaKaf.medi.KafMemAlfaMem.medi.KafMemAlfaLam.medi.KafMemLamaLam.fina.KafMemLamaAlf.fina.KafMemAlfat.araaKaf.init.KafHehaKaf.medi.KafHehaHeh.fina.KafHehaDal.fina.KafDalaLam.init.LamHehaLam.medi.LamHehaHeh.fina.LamHehaDal.fina.LamDalaKaf.medi.KafMemMediaKaf.init.KafMemInitaAyn.init.AynMemInitaFaa.init.FaaMemInitaHaa.init.HaaMemInitaHeh.init.HehMemInitaMem.medi.KafMemMediaSen.init.SenMemInitaSad.init.SadMemInitaMem.init.MemMemInitaMem.medi.SenMemInitaKaf.init.KafYaaIsolaBaa.init.BaaYaaIsolaHaa.init.HaaYaaIsolaMem.init.MemYaaIsolaFaa.init.FaaYaaIsolaAyn.init.AynYaaIsolaLam.init.LamYaaIsolaHeh.init.HehYaaIsolaYaa.fina.KafYaaIsolaKaf.init.KafMemIsolaLam.init.LamMemIsolaBaa.init.BaaMemIsolaMem.fina.KafMemIsolaMem.medi.MemAlfFinaaBaa.medi.BaaMemAlfFinaaMem.medi.BaaMemAlfFinaaMem.medi.AlfPostToothaAlf.fina.MemAlfFinaaBaa.init.BaaHehInitaBaa.medi.BaaHehMediaHeh.medi.BaaHehMediaHeh.medi.PostToothaLam.medi.KafLamMemFinaaLam.init.LamLamInitaLam.medi.LamLamInitaLam.medi.LamLamAlfIsolaKaf.fina.LamKafIsolaLam.fina.LamLamIsollam-ar.medi.FaLellahaLam.medi.LamLamMediaLam.medi.LamLamAlefFinaaLam.medi.LamLamMedi2aKaf.fina.LamKafFinaaLam.fina.LamLamFinaaLam.medi.LamLamMemInitaLam.medi.LamLamHehIsolaLam.medi.LamLamYaaIsolaLam.medi.LamLamMemMediaLam.medi.LamLamHehFinaaLam.medi.LamLamYaaFinaalefHamzabelow-ar.fina alef-ar.finaalefThreeabove-ar.finaalefTwoabove-ar.finaalefHamzaabove-ar.finaalefMadda-ar.finaalefWavyhamzaabove-ar.finaalefWavyhamzabelow-ar.finaalefWasla-ar.finaghainDotbelow-ar.fina ghain-ar.finaainThreedotsdownabove-ar.fina!ainTwodotshorizontalabove-ar.finaainTwodotsverticalabove-ar.finaainThreedots-ar.fina ain-ar.finaghainDotbelow-ar.init ghain-ar.initainThreedotsdownabove-ar.init!ainTwodotshorizontalabove-ar.initainTwodotsverticalabove-ar.initainThreedots-ar.init ain-ar.initghainDotbelow-ar.medi ghain-ar.mediainThreedotsdownabove-ar.medi!ainTwodotshorizontalabove-ar.mediainTwodotsverticalabove-ar.mediainThreedots-ar.medi ain-ar.medibehThreedotsupabove-ar.fina#behThreedotshorizontalbelow-ar.finatehThreedotsupbelow-ar.fina beheh-ar.fina teh-ar.finabehTwodotsbelowDotabove-ar.fina theh-ar.fina tteh-ar.finatehRing-ar.finabehVabove-ar.finabehThreedotsupbelow-ar.finabehDotless-ar.fina teheh-ar.finabehVinvertedbelow-ar.finatehThreedotsdown-ar.fina peh-ar.fina beeh-ar.fina beh-ar.finatteheh-ar.finayehFarsiFourbelow-ar.init beheh-ar.inityehFarsiThreeabove-ar.initnoonRing-ar.init#behThreedotshorizontalbelow-ar.initbehVabove-ar.initnoonTahabove-ar.inityehVabove-ar.inityehFarsiTwoabove-ar.initnoonThreedotsabove-ar.inityehHamzaabove-ar.initbehDotless-ar.inityehKashmiri-ar.init yeh-ar.init rnoon-ar.init teheh-ar.initbehVinvertedbelow-ar.inittehThreedotsdown-ar.init peh-ar.init beeh-ar.init beh-ar.inittteheh-ar.initbehThreedotsupabove-ar.init noon-ar.inittehThreedotsupbelow-ar.initbehThreedotsupbelow-ar.init teh-ar.inithighhamzaYeh-ar.inityehFarsiVinverted-ar.init theh-ar.init tteh-ar.initnoonDotbelow-ar.initnoonVabove-ar.initalefMaksura-ar.inittehRing-ar.initbehTwodotsbelowDotabove-ar.inityehThreedotsbelow-ar.init e-ar.initnoonghunna-ar.inityehFarsi-ar.initnoonTwodotsbelow-ar.inityehFarsiFourbelow-ar.medi beheh-ar.mediyehFarsiThreeabove-ar.medinoonRing-ar.medi#behThreedotshorizontalbelow-ar.medibehVabove-ar.medinoonTahabove-ar.mediyehVabove-ar.mediyehFarsiTwoabove-ar.medinoonThreedotsabove-ar.mediyehHamzaabove-ar.medibehDotless-ar.mediyehKashmiri-ar.medi yeh-ar.medi rnoon-ar.medi teheh-ar.medibehVinvertedbelow-ar.meditehThreedotsdown-ar.medi peh-ar.medi beeh-ar.medi beh-ar.meditteheh-ar.medibehThreedotsupabove-ar.medi noon-ar.meditehThreedotsupbelow-ar.medibehThreedotsupbelow-ar.medi teh-ar.mediyehFarsiVinverted-ar.medi theh-ar.medi tteh-ar.medinoonDotbelow-ar.medinoonVabove-ar.medialefMaksura-ar.meditehRing-ar.medibehTwodotsbelowDotabove-ar.mediyehThreedotsbelow-ar.medi e-ar.medinoonghunna-ar.mediyehFarsi-ar.medinoonTwodotsbelow-ar.medidalFourdots-ar.finadalVinvertedabove-ar.finadalRing-ar.fina ddal-ar.finadalVinvertedbelow-ar.fina thal-ar.fina dal-ar.fina"dalTwodotsverticalbelowTah-ar.fina dahal-ar.finadalDotbelowTah-ar.finadalDotbelow-ar.finadalThreedotsdown-ar.fina dul-ar.finaddahal-ar.finafehTwodotsbelow-ar.finafehThreedotsupbelow-ar.fina feh-ar.finafehDotless-ar.finafehDotmovedbelow-ar.finafehDotbelow-ar.fina veh-ar.finafehThreedotsbelow-ar.fina peheh-ar.finaqafDotless-ar.initfehThreedotsupbelow-ar.initfehTwodotsbelow-ar.init qaf-ar.init feh-ar.initqafThreedotsabove-ar.initfehDotless-ar.initfehDotmovedbelow-ar.initfehDotbelow-ar.init veh-ar.initfehThreedotsbelow-ar.init peheh-ar.initqafDotabove-ar.initqafDotless-ar.medifehThreedotsupbelow-ar.medifehTwodotsbelow-ar.medi qaf-ar.medi feh-ar.mediqafThreedotsabove-ar.medifehDotless-ar.medifehDotmovedbelow-ar.medifehDotbelow-ar.medi veh-ar.medifehThreedotsbelow-ar.medi peheh-ar.mediqafDotabove-ar.medi khah-ar.fina hah-ar.finahahHamzaabove-ar.finatcheheh-ar.finahahThreedotsabove-ar.fina jeem-ar.finahahTwodotsverticalabove-ar.fina!hahTwodotshorizontalabove-ar.fina dyeh-ar.fina$hahTahTwodotshorizontalabove-ar.finahahTahbelow-ar.fina nyeh-ar.finatchehDotabove-ar.finahahFourbelow-ar.finahahThreedotsupbelow-ar.finahahTahabove-ar.fina tcheh-ar.fina khah-ar.init hah-ar.inithahHamzaabove-ar.inittcheheh-ar.inithahThreedotsabove-ar.init jeem-ar.inithahTwodotsverticalabove-ar.init!hahTwodotshorizontalabove-ar.init dyeh-ar.init$hahTahTwodotshorizontalabove-ar.inithahTahbelow-ar.init nyeh-ar.inittchehDotabove-ar.inithahFourbelow-ar.inithahThreedotsupbelow-ar.inithahTahabove-ar.init tcheh-ar.init khah-ar.medi hah-ar.medihahHamzaabove-ar.meditcheheh-ar.medihahThreedotsabove-ar.medi jeem-ar.medihahTwodotsverticalabove-ar.medi!hahTwodotshorizontalabove-ar.medi dyeh-ar.medi$hahTahTwodotshorizontalabove-ar.medihahTahbelow-ar.medi nyeh-ar.meditchehDotabove-ar.medihahFourbelow-ar.medihahThreedotsupbelow-ar.medihahTahabove-ar.medi tcheh-ar.medi heh-ar.finahehgoal-ar.finatehMarbutagoal-ar.fina ae-ar.finatehMarbuta-ar.fina heh-ar.inithehgoal-ar.init heh-ar.medihehgoal-ar.medi#kehehTwodotshorizontalabove-ar.finakehehThreedotsbelow-ar.fina!kafTwodotshorizontalabove-ar.finakehehThreedotsupbelow-ar.fina kaf-ar.finagafRing-ar.fina gueh-ar.finagafTwodotsbelow-ar.finakafRing-ar.finakafDotabove-ar.fina ng-ar.finakafThreedotsbelow-ar.fina gaf-ar.fina keheh-ar.finagafThreedots-ar.finakehehThreedotsabove-ar.finakehehDotabove-ar.fina ngoeh-ar.fina#kehehTwodotshorizontalabove-ar.initkehehThreedotsbelow-ar.init!kafTwodotshorizontalabove-ar.initkehehThreedotsupbelow-ar.init kaf-ar.initgafRing-ar.init gueh-ar.initgafTwodotsbelow-ar.initkafRing-ar.initkafDotabove-ar.init ng-ar.initkafThreedotsbelow-ar.init gaf-ar.init keheh-ar.initgafThreedots-ar.initkehehThreedotsabove-ar.initkehehDotabove-ar.init ngoeh-ar.init#kehehTwodotshorizontalabove-ar.medikehehThreedotsbelow-ar.medi!kafTwodotshorizontalabove-ar.medikehehThreedotsupbelow-ar.medi kaf-ar.medigafRing-ar.medi gueh-ar.medigafTwodotsbelow-ar.medikafRing-ar.medikafDotabove-ar.medi ng-ar.medikafThreedotsbelow-ar.medi gaf-ar.medi keheh-ar.medigafThreedots-ar.medikehehThreedotsabove-ar.medikehehDotabove-ar.medi ngoeh-ar.medilamVabove-ar.finalamThreedotsabove-ar.fina lam-ar.finalamThreedotsbelow-ar.finalamDotabove-ar.finalamBar-ar.finalamVabove-ar.initlamThreedotsabove-ar.init lam-ar.initlamThreedotsbelow-ar.initlamDotabove-ar.initlamBar-ar.initlamVabove-ar.medilamThreedotsabove-ar.medi lam-ar.medilamThreedotsbelow-ar.medilamDotabove-ar.medilamBar-ar.medimeemDotabove-ar.fina meem-ar.finameemDotbelow-ar.finameemDotabove-ar.init meem-ar.initmeemDotbelow-ar.initmeemDotabove-ar.medi meem-ar.medimeemDotbelow-ar.medi noon-ar.finanoonTwodotsbelow-ar.finanoonghunna-ar.finanoonRing-ar.fina rnoon-ar.finanoonTahabove-ar.finanoonDotbelow-ar.finanoonVabove-ar.finanoonThreedotsabove-ar.finaqafThreedotsabove-ar.finaqafDotabove-ar.fina qaf-ar.finaqafDotless-ar.fina rreh-ar.fina rehv-ar.finarehRing-ar.finarehDotbelow-ar.finarehVbelow-ar.finarehDotbelowdotabove-ar.finarehTwodots-ar.fina jeh-ar.finarehFourdots-ar.finarehStroke-ar.finarehVinvertedabove-ar.fina zain-ar.fina)rehTwodotshorizontalaboveTahabove-ar.fina reh-ar.finarehTwodotsverticalabove-ar.finarehHamzaabove-ar.finasadTwodotsbelow-ar.finadadDotbelow-ar.fina dad-ar.finasadThreedots-ar.fina sad-ar.finasadTwodotsbelow-ar.initdadDotbelow-ar.init dad-ar.initsadThreedots-ar.init sad-ar.initsadTwodotsbelow-ar.medidadDotbelow-ar.medi dad-ar.medisadThreedots-ar.medi sad-ar.medisheenDotbelow-ar.fina seenTwodotsverticalabove-ar.fina seen-ar.finaseenVinvertedabove-ar.finaseenFourabove-ar.fina sheen-ar.fina%seenTahTwodotshorizontalabove-ar.finaseenFourdotsabove-ar.finaseenDotbelowDotabove-ar.finaseenThreedotsbelow-ar.finasheenThreedotsbelow-ar.finasheenDotbelow-ar.init seenTwodotsverticalabove-ar.init seen-ar.initseenVinvertedabove-ar.initseenFourabove-ar.init sheen-ar.init%seenTahTwodotshorizontalabove-ar.initseenFourdotsabove-ar.initseenDotbelowDotabove-ar.initseenThreedotsbelow-ar.initsheenThreedotsbelow-ar.initsheenDotbelow-ar.medi seenTwodotsverticalabove-ar.medi seen-ar.mediseenVinvertedabove-ar.mediseenFourabove-ar.medi sheen-ar.medi%seenTahTwodotshorizontalabove-ar.mediseenFourdotsabove-ar.mediseenDotbelowDotabove-ar.mediseenThreedotsbelow-ar.medisheenThreedotsbelow-ar.medi zah-ar.fina tah-ar.finatahThreedots-ar.fina zah-ar.init tah-ar.inittahThreedots-ar.init zah-ar.medi tah-ar.meditahThreedots-ar.medi ve-ar.finawawHamzaabove-ar.finawawTwodots-ar.finawawDotabove-ar.finawawTwoabove-ar.fina oe-ar.fina u-ar.finawawring-ar.finakirghizoe-ar.fina yu-ar.finakirghizyu-ar.finawawThreeAbove-ar.fina waw-ar.finayehFarsiFourbelow-ar.finayehThreedotsbelow-ar.finayehFarsiTwoabove-ar.finayehFarsiThreedotsabove-ar.finayehFarsiVinverted-ar.finayehFarsiTwodotsabove-ar.fina e-ar.finaalefMaksura-ar.finayehFarsiThreeabove-ar.finayehTail-ar.finayehFarsi-ar.finayehHamzaabove-ar.finayehKashmiri-ar.fina yeh-ar.finayehVabove-ar.finalamVabove-ar.medi.LamMemFina$lamThreedotsabove-ar.medi.LamMemFinalam-ar.medi.LamMemFina$lamThreedotsbelow-ar.medi.LamMemFinalamDotabove-ar.medi.LamMemFinalamBar-ar.medi.LamMemFinameem-ar.fina.LamMemFina$yehFarsiFourbelow-ar.init.BaaRaaIsolbeheh-ar.init.BaaRaaIsol%yehFarsiThreeabove-ar.init.BaaRaaIsolnoonRing-ar.init.BaaRaaIsol.behThreedotshorizontalbelow-ar.init.BaaRaaIsolbehVabove-ar.init.BaaRaaIsolnoonTahabove-ar.init.BaaRaaIsolyehVabove-ar.init.BaaRaaIsol#yehFarsiTwoabove-ar.init.BaaRaaIsol%noonThreedotsabove-ar.init.BaaRaaIsol yehHamzaabove-ar.init.BaaRaaIsolbehDotless-ar.init.BaaRaaIsolyehKashmiri-ar.init.BaaRaaIsolyeh-ar.init.BaaRaaIsolrnoon-ar.init.BaaRaaIsolteheh-ar.init.BaaRaaIsol$behVinvertedbelow-ar.init.BaaRaaIsol#tehThreedotsdown-ar.init.BaaRaaIsolpeh-ar.init.BaaRaaIsolbeeh-ar.init.BaaRaaIsolbeh-ar.init.BaaRaaIsoltteheh-ar.init.BaaRaaIsol&behThreedotsupabove-ar.init.BaaRaaIsolnoon-ar.init.BaaRaaIsol&tehThreedotsupbelow-ar.init.BaaRaaIsol&behThreedotsupbelow-ar.init.BaaRaaIsolteh-ar.init.BaaRaaIsolhighhamzaYeh-ar.init.BaaRaaIsol$yehFarsiVinverted-ar.init.BaaRaaIsoltheh-ar.init.BaaRaaIsoltteh-ar.init.BaaRaaIsolnoonDotbelow-ar.init.BaaRaaIsolnoonVabove-ar.init.BaaRaaIsolalefMaksura-ar.init.BaaRaaIsoltehRing-ar.init.BaaRaaIsol*behTwodotsbelowDotabove-ar.init.BaaRaaIsol$yehThreedotsbelow-ar.init.BaaRaaIsole-ar.init.BaaRaaIsolnoonghunna-ar.init.BaaRaaIsolyehFarsi-ar.init.BaaRaaIsol#noonTwodotsbelow-ar.init.BaaRaaIsolrreh-ar.fina.BaaRaaIsolrehv-ar.fina.BaaRaaIsolrehRing-ar.fina.BaaRaaIsolrehDotbelow-ar.fina.BaaRaaIsolrehVbelow-ar.fina.BaaRaaIsol&rehDotbelowdotabove-ar.fina.BaaRaaIsolrehTwodots-ar.fina.BaaRaaIsoljeh-ar.fina.BaaRaaIsolrehFourdots-ar.fina.BaaRaaIsolrehStroke-ar.fina.BaaRaaIsol$rehVinvertedabove-ar.fina.BaaRaaIsolzain-ar.fina.BaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsolreh-ar.fina.BaaRaaIsol*rehTwodotsverticalabove-ar.fina.BaaRaaIsol rehHamzaabove-ar.fina.BaaRaaIsollamVabove-ar.medi.LamWawFina$lamThreedotsabove-ar.medi.LamWawFinalam-ar.medi.LamWawFina$lamThreedotsbelow-ar.medi.LamWawFinalamDotabove-ar.medi.LamWawFinalamBar-ar.medi.LamWawFinave-ar.fina.LamWawFina wawHamzaabove-ar.fina.LamWawFinawawTwodots-ar.fina.LamWawFinawawDotabove-ar.fina.LamWawFinawawTwoabove-ar.fina.LamWawFinaoe-ar.fina.LamWawFinau-ar.fina.LamWawFinawawring-ar.fina.LamWawFinakirghizoe-ar.fina.LamWawFinayu-ar.fina.LamWawFinakirghizyu-ar.fina.LamWawFina wawThreeAbove-ar.fina.LamWawFinawaw-ar.fina.LamWawFinalamVabove-ar.init.LamHaaInit$lamThreedotsabove-ar.init.LamHaaInitlam-ar.init.LamHaaInit$lamThreedotsbelow-ar.init.LamHaaInitlamDotabove-ar.init.LamHaaInitlamBar-ar.init.LamHaaInitqafDotless-ar.medi.FaaYaaFina&fehThreedotsupbelow-ar.medi.FaaYaaFina"fehTwodotsbelow-ar.medi.FaaYaaFinaqaf-ar.medi.FaaYaaFinafeh-ar.medi.FaaYaaFina$qafThreedotsabove-ar.medi.FaaYaaFinafehDotless-ar.medi.FaaYaaFina#fehDotmovedbelow-ar.medi.FaaYaaFinafehDotbelow-ar.medi.FaaYaaFinaveh-ar.medi.FaaYaaFina$fehThreedotsbelow-ar.medi.FaaYaaFinapeheh-ar.medi.FaaYaaFinaqafDotabove-ar.medi.FaaYaaFina$yehFarsiFourbelow-ar.fina.FaaYaaFina$yehThreedotsbelow-ar.fina.FaaYaaFina#yehFarsiTwoabove-ar.fina.FaaYaaFina)yehFarsiThreedotsabove-ar.fina.FaaYaaFina$yehFarsiVinverted-ar.fina.FaaYaaFina'yehFarsiTwodotsabove-ar.fina.FaaYaaFinae-ar.fina.FaaYaaFinaalefMaksura-ar.fina.FaaYaaFina%yehFarsiThreeabove-ar.fina.FaaYaaFinayehTail-ar.fina.FaaYaaFinayehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFinayehKashmiri-ar.fina.FaaYaaFinayeh-ar.fina.FaaYaaFinayehVabove-ar.fina.FaaYaaFinalamVabove-ar.init.LamLamHaaInit'lamThreedotsabove-ar.init.LamLamHaaInitlam-ar.init.LamLamHaaInit'lamThreedotsbelow-ar.init.LamLamHaaInit!lamDotabove-ar.init.LamLamHaaInitlamBar-ar.init.LamLamHaaInitlamVabove-ar.medi.LamLamHaaInit'lamThreedotsabove-ar.medi.LamLamHaaInitlam-ar.medi.LamLamHaaInit'lamThreedotsbelow-ar.medi.LamLamHaaInit!lamDotabove-ar.medi.LamLamHaaInitlamBar-ar.medi.LamLamHaaInitkhah-ar.medi.LamLamHaaInithah-ar.medi.LamLamHaaInit#hahHamzaabove-ar.medi.LamLamHaaInittcheheh-ar.medi.LamLamHaaInit'hahThreedotsabove-ar.medi.LamLamHaaInitjeem-ar.medi.LamLamHaaInit-hahTwodotsverticalabove-ar.medi.LamLamHaaInit/hahTwodotshorizontalabove-ar.medi.LamLamHaaInitdyeh-ar.medi.LamLamHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit!hahTahbelow-ar.medi.LamLamHaaInitnyeh-ar.medi.LamLamHaaInit#tchehDotabove-ar.medi.LamLamHaaInit"hahFourbelow-ar.medi.LamLamHaaInit)hahThreedotsupbelow-ar.medi.LamLamHaaInit!hahTahabove-ar.medi.LamLamHaaInittcheh-ar.medi.LamLamHaaInit$yehFarsiFourbelow-ar.medi.BaaMemFinabeheh-ar.medi.BaaMemFina%yehFarsiThreeabove-ar.medi.BaaMemFinanoonRing-ar.medi.BaaMemFina.behThreedotshorizontalbelow-ar.medi.BaaMemFinabehVabove-ar.medi.BaaMemFinanoonTahabove-ar.medi.BaaMemFinayehVabove-ar.medi.BaaMemFina#yehFarsiTwoabove-ar.medi.BaaMemFina%noonThreedotsabove-ar.medi.BaaMemFina yehHamzaabove-ar.medi.BaaMemFinabehDotless-ar.medi.BaaMemFinayehKashmiri-ar.medi.BaaMemFinayeh-ar.medi.BaaMemFinarnoon-ar.medi.BaaMemFinateheh-ar.medi.BaaMemFina$behVinvertedbelow-ar.medi.BaaMemFina#tehThreedotsdown-ar.medi.BaaMemFinapeh-ar.medi.BaaMemFinabeeh-ar.medi.BaaMemFinabeh-ar.medi.BaaMemFinatteheh-ar.medi.BaaMemFina&behThreedotsupabove-ar.medi.BaaMemFinanoon-ar.medi.BaaMemFina&tehThreedotsupbelow-ar.medi.BaaMemFina&behThreedotsupbelow-ar.medi.BaaMemFinateh-ar.medi.BaaMemFina$yehFarsiVinverted-ar.medi.BaaMemFinatheh-ar.medi.BaaMemFinatteh-ar.medi.BaaMemFinanoonDotbelow-ar.medi.BaaMemFinanoonVabove-ar.medi.BaaMemFinaalefMaksura-ar.medi.BaaMemFinatehRing-ar.medi.BaaMemFina*behTwodotsbelowDotabove-ar.medi.BaaMemFina$yehThreedotsbelow-ar.medi.BaaMemFinae-ar.medi.BaaMemFinanoonghunna-ar.medi.BaaMemFinayehFarsi-ar.medi.BaaMemFina#noonTwodotsbelow-ar.medi.BaaMemFinameem-ar.fina.BaaMemFina sadTwodotsbelow-ar.init.AboveHaadadDotbelow-ar.init.AboveHaadad-ar.init.AboveHaasadThreedots-ar.init.AboveHaasad-ar.init.AboveHaalamVabove-ar.init.LamBaaMemInit'lamThreedotsabove-ar.init.LamBaaMemInitlam-ar.init.LamBaaMemInit'lamThreedotsbelow-ar.init.LamBaaMemInit!lamDotabove-ar.init.LamBaaMemInitlamBar-ar.init.LamBaaMemInit'yehFarsiFourbelow-ar.medi.LamBaaMemInitbeheh-ar.medi.LamBaaMemInit(yehFarsiThreeabove-ar.medi.LamBaaMemInitnoonRing-ar.medi.LamBaaMemInit1behThreedotshorizontalbelow-ar.medi.LamBaaMemInitbehVabove-ar.medi.LamBaaMemInit"noonTahabove-ar.medi.LamBaaMemInityehVabove-ar.medi.LamBaaMemInit&yehFarsiTwoabove-ar.medi.LamBaaMemInit(noonThreedotsabove-ar.medi.LamBaaMemInit#yehHamzaabove-ar.medi.LamBaaMemInit behDotless-ar.medi.LamBaaMemInit!yehKashmiri-ar.medi.LamBaaMemInityeh-ar.medi.LamBaaMemInitrnoon-ar.medi.LamBaaMemInitteheh-ar.medi.LamBaaMemInit'behVinvertedbelow-ar.medi.LamBaaMemInit&tehThreedotsdown-ar.medi.LamBaaMemInitpeh-ar.medi.LamBaaMemInitbeeh-ar.medi.LamBaaMemInitbeh-ar.medi.LamBaaMemInittteheh-ar.medi.LamBaaMemInit)behThreedotsupabove-ar.medi.LamBaaMemInitnoon-ar.medi.LamBaaMemInit)tehThreedotsupbelow-ar.medi.LamBaaMemInit)behThreedotsupbelow-ar.medi.LamBaaMemInitteh-ar.medi.LamBaaMemInit'yehFarsiVinverted-ar.medi.LamBaaMemInittheh-ar.medi.LamBaaMemInittteh-ar.medi.LamBaaMemInit"noonDotbelow-ar.medi.LamBaaMemInit noonVabove-ar.medi.LamBaaMemInit!alefMaksura-ar.medi.LamBaaMemInittehRing-ar.medi.LamBaaMemInit-behTwodotsbelowDotabove-ar.medi.LamBaaMemInit'yehThreedotsbelow-ar.medi.LamBaaMemInite-ar.medi.LamBaaMemInit noonghunna-ar.medi.LamBaaMemInityehFarsi-ar.medi.LamBaaMemInit&noonTwodotsbelow-ar.medi.LamBaaMemInitmeem-ar.medi.LamBaaMemInit yehFarsiFourbelow-ar.init.BaaDalbeheh-ar.init.BaaDal!yehFarsiThreeabove-ar.init.BaaDalnoonRing-ar.init.BaaDal*behThreedotshorizontalbelow-ar.init.BaaDalbehVabove-ar.init.BaaDalnoonTahabove-ar.init.BaaDalyehVabove-ar.init.BaaDalyehFarsiTwoabove-ar.init.BaaDal!noonThreedotsabove-ar.init.BaaDalyehHamzaabove-ar.init.BaaDalbehDotless-ar.init.BaaDalyehKashmiri-ar.init.BaaDalyeh-ar.init.BaaDalrnoon-ar.init.BaaDalteheh-ar.init.BaaDal behVinvertedbelow-ar.init.BaaDaltehThreedotsdown-ar.init.BaaDalpeh-ar.init.BaaDalbeeh-ar.init.BaaDalbeh-ar.init.BaaDaltteheh-ar.init.BaaDal"behThreedotsupabove-ar.init.BaaDalnoon-ar.init.BaaDal"tehThreedotsupbelow-ar.init.BaaDal"behThreedotsupbelow-ar.init.BaaDalteh-ar.init.BaaDalhighhamzaYeh-ar.init.BaaDal yehFarsiVinverted-ar.init.BaaDaltheh-ar.init.BaaDaltteh-ar.init.BaaDalnoonDotbelow-ar.init.BaaDalnoonVabove-ar.init.BaaDalalefMaksura-ar.init.BaaDaltehRing-ar.init.BaaDal&behTwodotsbelowDotabove-ar.init.BaaDal yehThreedotsbelow-ar.init.BaaDale-ar.init.BaaDalnoonghunna-ar.init.BaaDalyehFarsi-ar.init.BaaDalnoonTwodotsbelow-ar.init.BaaDaldalFourdots-ar.fina.BaaDal dalVinvertedabove-ar.fina.BaaDaldalRing-ar.fina.BaaDalddal-ar.fina.BaaDal dalVinvertedbelow-ar.fina.BaaDalthal-ar.fina.BaaDaldal-ar.fina.BaaDal)dalTwodotsverticalbelowTah-ar.fina.BaaDaldahal-ar.fina.BaaDaldalDotbelowTah-ar.fina.BaaDaldalDotbelow-ar.fina.BaaDaldalThreedotsdown-ar.fina.BaaDaldul-ar.fina.BaaDalddahal-ar.fina.BaaDal'yehFarsiFourbelow-ar.init.BaaMemHaaInitbeheh-ar.init.BaaMemHaaInit(yehFarsiThreeabove-ar.init.BaaMemHaaInitnoonRing-ar.init.BaaMemHaaInit1behThreedotshorizontalbelow-ar.init.BaaMemHaaInitbehVabove-ar.init.BaaMemHaaInit"noonTahabove-ar.init.BaaMemHaaInityehVabove-ar.init.BaaMemHaaInit&yehFarsiTwoabove-ar.init.BaaMemHaaInit(noonThreedotsabove-ar.init.BaaMemHaaInit#yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInit!yehKashmiri-ar.init.BaaMemHaaInityeh-ar.init.BaaMemHaaInitrnoon-ar.init.BaaMemHaaInitteheh-ar.init.BaaMemHaaInit'behVinvertedbelow-ar.init.BaaMemHaaInit&tehThreedotsdown-ar.init.BaaMemHaaInitpeh-ar.init.BaaMemHaaInitbeeh-ar.init.BaaMemHaaInitbeh-ar.init.BaaMemHaaInittteheh-ar.init.BaaMemHaaInit)behThreedotsupabove-ar.init.BaaMemHaaInitnoon-ar.init.BaaMemHaaInit)tehThreedotsupbelow-ar.init.BaaMemHaaInit)behThreedotsupbelow-ar.init.BaaMemHaaInitteh-ar.init.BaaMemHaaInit"highhamzaYeh-ar.init.BaaMemHaaInit'yehFarsiVinverted-ar.init.BaaMemHaaInittheh-ar.init.BaaMemHaaInittteh-ar.init.BaaMemHaaInit"noonDotbelow-ar.init.BaaMemHaaInit noonVabove-ar.init.BaaMemHaaInit!alefMaksura-ar.init.BaaMemHaaInittehRing-ar.init.BaaMemHaaInit-behTwodotsbelowDotabove-ar.init.BaaMemHaaInit'yehThreedotsbelow-ar.init.BaaMemHaaInite-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInityehFarsi-ar.init.BaaMemHaaInit&noonTwodotsbelow-ar.init.BaaMemHaaInitmeem-ar.medi.BaaMemHaaInitkhah-ar.medi.BaaMemHaaInithah-ar.medi.BaaMemHaaInit#hahHamzaabove-ar.medi.BaaMemHaaInittcheheh-ar.medi.BaaMemHaaInit'hahThreedotsabove-ar.medi.BaaMemHaaInitjeem-ar.medi.BaaMemHaaInit-hahTwodotsverticalabove-ar.medi.BaaMemHaaInit/hahTwodotshorizontalabove-ar.medi.BaaMemHaaInitdyeh-ar.medi.BaaMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit!hahTahbelow-ar.medi.BaaMemHaaInitnyeh-ar.medi.BaaMemHaaInit#tchehDotabove-ar.medi.BaaMemHaaInit"hahFourbelow-ar.medi.BaaMemHaaInit)hahThreedotsupbelow-ar.medi.BaaMemHaaInit!hahTahabove-ar.medi.BaaMemHaaInittcheh-ar.medi.BaaMemHaaInit#yehFarsiFourbelow-ar.init.BaaBaaYaabeheh-ar.init.BaaBaaYaa$yehFarsiThreeabove-ar.init.BaaBaaYaanoonRing-ar.init.BaaBaaYaa-behThreedotshorizontalbelow-ar.init.BaaBaaYaabehVabove-ar.init.BaaBaaYaanoonTahabove-ar.init.BaaBaaYaayehVabove-ar.init.BaaBaaYaa"yehFarsiTwoabove-ar.init.BaaBaaYaa$noonThreedotsabove-ar.init.BaaBaaYaayehHamzaabove-ar.init.BaaBaaYaabehDotless-ar.init.BaaBaaYaayehKashmiri-ar.init.BaaBaaYaayeh-ar.init.BaaBaaYaarnoon-ar.init.BaaBaaYaateheh-ar.init.BaaBaaYaa#behVinvertedbelow-ar.init.BaaBaaYaa"tehThreedotsdown-ar.init.BaaBaaYaapeh-ar.init.BaaBaaYaabeeh-ar.init.BaaBaaYaabeh-ar.init.BaaBaaYaatteheh-ar.init.BaaBaaYaa%behThreedotsupabove-ar.init.BaaBaaYaanoon-ar.init.BaaBaaYaa%tehThreedotsupbelow-ar.init.BaaBaaYaa%behThreedotsupbelow-ar.init.BaaBaaYaateh-ar.init.BaaBaaYaahighhamzaYeh-ar.init.BaaBaaYaa#yehFarsiVinverted-ar.init.BaaBaaYaatheh-ar.init.BaaBaaYaatteh-ar.init.BaaBaaYaanoonDotbelow-ar.init.BaaBaaYaanoonVabove-ar.init.BaaBaaYaaalefMaksura-ar.init.BaaBaaYaatehRing-ar.init.BaaBaaYaa)behTwodotsbelowDotabove-ar.init.BaaBaaYaa#yehThreedotsbelow-ar.init.BaaBaaYaae-ar.init.BaaBaaYaanoonghunna-ar.init.BaaBaaYaayehFarsi-ar.init.BaaBaaYaa"noonTwodotsbelow-ar.init.BaaBaaYaa#yehFarsiFourbelow-ar.medi.BaaBaaYaabeheh-ar.medi.BaaBaaYaa$yehFarsiThreeabove-ar.medi.BaaBaaYaanoonRing-ar.medi.BaaBaaYaa-behThreedotshorizontalbelow-ar.medi.BaaBaaYaabehVabove-ar.medi.BaaBaaYaanoonTahabove-ar.medi.BaaBaaYaayehVabove-ar.medi.BaaBaaYaa"yehFarsiTwoabove-ar.medi.BaaBaaYaa$noonThreedotsabove-ar.medi.BaaBaaYaayehHamzaabove-ar.medi.BaaBaaYaabehDotless-ar.medi.BaaBaaYaayehKashmiri-ar.medi.BaaBaaYaayeh-ar.medi.BaaBaaYaarnoon-ar.medi.BaaBaaYaateheh-ar.medi.BaaBaaYaa#behVinvertedbelow-ar.medi.BaaBaaYaa"tehThreedotsdown-ar.medi.BaaBaaYaapeh-ar.medi.BaaBaaYaabeeh-ar.medi.BaaBaaYaabeh-ar.medi.BaaBaaYaatteheh-ar.medi.BaaBaaYaa%behThreedotsupabove-ar.medi.BaaBaaYaanoon-ar.medi.BaaBaaYaa%tehThreedotsupbelow-ar.medi.BaaBaaYaa%behThreedotsupbelow-ar.medi.BaaBaaYaateh-ar.medi.BaaBaaYaa#yehFarsiVinverted-ar.medi.BaaBaaYaatheh-ar.medi.BaaBaaYaatteh-ar.medi.BaaBaaYaanoonDotbelow-ar.medi.BaaBaaYaanoonVabove-ar.medi.BaaBaaYaaalefMaksura-ar.medi.BaaBaaYaatehRing-ar.medi.BaaBaaYaa)behTwodotsbelowDotabove-ar.medi.BaaBaaYaa#yehThreedotsbelow-ar.medi.BaaBaaYaae-ar.medi.BaaBaaYaanoonghunna-ar.medi.BaaBaaYaayehFarsi-ar.medi.BaaBaaYaa"noonTwodotsbelow-ar.medi.BaaBaaYaa#yehFarsiFourbelow-ar.fina.BaaBaaYaa#yehThreedotsbelow-ar.fina.BaaBaaYaa"yehFarsiTwoabove-ar.fina.BaaBaaYaa(yehFarsiThreedotsabove-ar.fina.BaaBaaYaa#yehFarsiVinverted-ar.fina.BaaBaaYaa&yehFarsiTwodotsabove-ar.fina.BaaBaaYaae-ar.fina.BaaBaaYaaalefMaksura-ar.fina.BaaBaaYaa$yehFarsiThreeabove-ar.fina.BaaBaaYaayehTail-ar.fina.BaaBaaYaayehFarsi-ar.fina.BaaBaaYaayehHamzaabove-ar.fina.BaaBaaYaayehKashmiri-ar.fina.BaaBaaYaayeh-ar.fina.BaaBaaYaayehVabove-ar.fina.BaaBaaYaalamVabove-ar.medi.LamYaaFina$lamThreedotsabove-ar.medi.LamYaaFinalam-ar.medi.LamYaaFina$lamThreedotsbelow-ar.medi.LamYaaFinalamDotabove-ar.medi.LamYaaFinalamBar-ar.medi.LamYaaFina$yehFarsiFourbelow-ar.fina.LamYaaFina$yehThreedotsbelow-ar.fina.LamYaaFina#yehFarsiTwoabove-ar.fina.LamYaaFina)yehFarsiThreedotsabove-ar.fina.LamYaaFina$yehFarsiVinverted-ar.fina.LamYaaFina'yehFarsiTwodotsabove-ar.fina.LamYaaFinae-ar.fina.LamYaaFinaalefMaksura-ar.fina.LamYaaFina%yehFarsiThreeabove-ar.fina.LamYaaFinayehTail-ar.fina.LamYaaFinayehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFinayehKashmiri-ar.fina.LamYaaFinayeh-ar.fina.LamYaaFinayehVabove-ar.fina.LamYaaFina.kehehTwodotshorizontalabove-ar.init.KafBaaInit&kehehThreedotsbelow-ar.init.KafBaaInit,kafTwodotshorizontalabove-ar.init.KafBaaInit(kehehThreedotsupbelow-ar.init.KafBaaInitkaf-ar.init.KafBaaInitgafRing-ar.init.KafBaaInitgueh-ar.init.KafBaaInit"gafTwodotsbelow-ar.init.KafBaaInitkafRing-ar.init.KafBaaInitkafDotabove-ar.init.KafBaaInitng-ar.init.KafBaaInit$kafThreedotsbelow-ar.init.KafBaaInitgaf-ar.init.KafBaaInitkeheh-ar.init.KafBaaInitgafThreedots-ar.init.KafBaaInit&kehehThreedotsabove-ar.init.KafBaaInit kehehDotabove-ar.init.KafBaaInitngoeh-ar.init.KafBaaInit$yehFarsiFourbelow-ar.medi.KafBaaInitbeheh-ar.medi.KafBaaInit%yehFarsiThreeabove-ar.medi.KafBaaInitnoonRing-ar.medi.KafBaaInit.behThreedotshorizontalbelow-ar.medi.KafBaaInitbehVabove-ar.medi.KafBaaInitnoonTahabove-ar.medi.KafBaaInityehVabove-ar.medi.KafBaaInit#yehFarsiTwoabove-ar.medi.KafBaaInit%noonThreedotsabove-ar.medi.KafBaaInit yehHamzaabove-ar.medi.KafBaaInitbehDotless-ar.medi.KafBaaInityehKashmiri-ar.medi.KafBaaInityeh-ar.medi.KafBaaInitrnoon-ar.medi.KafBaaInitteheh-ar.medi.KafBaaInit$behVinvertedbelow-ar.medi.KafBaaInit#tehThreedotsdown-ar.medi.KafBaaInitpeh-ar.medi.KafBaaInitbeeh-ar.medi.KafBaaInitbeh-ar.medi.KafBaaInittteheh-ar.medi.KafBaaInit&behThreedotsupabove-ar.medi.KafBaaInitnoon-ar.medi.KafBaaInit&tehThreedotsupbelow-ar.medi.KafBaaInit&behThreedotsupbelow-ar.medi.KafBaaInitteh-ar.medi.KafBaaInit$yehFarsiVinverted-ar.medi.KafBaaInittheh-ar.medi.KafBaaInittteh-ar.medi.KafBaaInitnoonDotbelow-ar.medi.KafBaaInitnoonVabove-ar.medi.KafBaaInitalefMaksura-ar.medi.KafBaaInittehRing-ar.medi.KafBaaInit*behTwodotsbelowDotabove-ar.medi.KafBaaInit$yehThreedotsbelow-ar.medi.KafBaaInite-ar.medi.KafBaaInitnoonghunna-ar.medi.KafBaaInityehFarsi-ar.medi.KafBaaInit#noonTwodotsbelow-ar.medi.KafBaaInitlamVabove-ar.init.LamMemInit$lamThreedotsabove-ar.init.LamMemInitlam-ar.init.LamMemInit$lamThreedotsbelow-ar.init.LamMemInitlamDotabove-ar.init.LamMemInitlamBar-ar.init.LamMemInitmeem-ar.medi.LamMemInitlamVabove-ar.init.LamAlfIsol$lamThreedotsabove-ar.init.LamAlfIsollam-ar.init.LamAlfIsol$lamThreedotsbelow-ar.init.LamAlfIsollamDotabove-ar.init.LamAlfIsollamBar-ar.init.LamAlfIsol!alefHamzabelow-ar.fina.LamAlfIsolalef-ar.fina.LamAlfIsol!alefThreeabove-ar.fina.LamAlfIsolalefTwoabove-ar.fina.LamAlfIsol!alefHamzaabove-ar.fina.LamAlfIsolalefMadda-ar.fina.LamAlfIsol%alefWavyhamzaabove-ar.fina.LamAlfIsol%alefWavyhamzabelow-ar.fina.LamAlfIsolalefWasla-ar.fina.LamAlfIsollamVabove-ar.init.LamHaaMemInit'lamThreedotsabove-ar.init.LamHaaMemInitlam-ar.init.LamHaaMemInit'lamThreedotsbelow-ar.init.LamHaaMemInit!lamDotabove-ar.init.LamHaaMemInitlamBar-ar.init.LamHaaMemInitkhah-ar.medi.LamHaaMemInithah-ar.medi.LamHaaMemInit#hahHamzaabove-ar.medi.LamHaaMemInittcheheh-ar.medi.LamHaaMemInit'hahThreedotsabove-ar.medi.LamHaaMemInitjeem-ar.medi.LamHaaMemInit-hahTwodotsverticalabove-ar.medi.LamHaaMemInit/hahTwodotshorizontalabove-ar.medi.LamHaaMemInitdyeh-ar.medi.LamHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit!hahTahbelow-ar.medi.LamHaaMemInitnyeh-ar.medi.LamHaaMemInit#tchehDotabove-ar.medi.LamHaaMemInit"hahFourbelow-ar.medi.LamHaaMemInit)hahThreedotsupbelow-ar.medi.LamHaaMemInit!hahTahabove-ar.medi.LamHaaMemInittcheh-ar.medi.LamHaaMemInitmeem-ar.medi.LamHaaMemInit$yehFarsiFourbelow-ar.medi.BaaBaaInitbeheh-ar.medi.BaaBaaInit%yehFarsiThreeabove-ar.medi.BaaBaaInitnoonRing-ar.medi.BaaBaaInit.behThreedotshorizontalbelow-ar.medi.BaaBaaInitbehVabove-ar.medi.BaaBaaInitnoonTahabove-ar.medi.BaaBaaInityehVabove-ar.medi.BaaBaaInit#yehFarsiTwoabove-ar.medi.BaaBaaInit%noonThreedotsabove-ar.medi.BaaBaaInit yehHamzaabove-ar.medi.BaaBaaInitbehDotless-ar.medi.BaaBaaInityehKashmiri-ar.medi.BaaBaaInityeh-ar.medi.BaaBaaInitrnoon-ar.medi.BaaBaaInitteheh-ar.medi.BaaBaaInit$behVinvertedbelow-ar.medi.BaaBaaInit#tehThreedotsdown-ar.medi.BaaBaaInitpeh-ar.medi.BaaBaaInitbeeh-ar.medi.BaaBaaInitbeh-ar.medi.BaaBaaInittteheh-ar.medi.BaaBaaInit&behThreedotsupabove-ar.medi.BaaBaaInitnoon-ar.medi.BaaBaaInit&tehThreedotsupbelow-ar.medi.BaaBaaInit&behThreedotsupbelow-ar.medi.BaaBaaInitteh-ar.medi.BaaBaaInit$yehFarsiVinverted-ar.medi.BaaBaaInittheh-ar.medi.BaaBaaInittteh-ar.medi.BaaBaaInitnoonDotbelow-ar.medi.BaaBaaInitnoonVabove-ar.medi.BaaBaaInitalefMaksura-ar.medi.BaaBaaInittehRing-ar.medi.BaaBaaInit*behTwodotsbelowDotabove-ar.medi.BaaBaaInit$yehThreedotsbelow-ar.medi.BaaBaaInite-ar.medi.BaaBaaInitnoonghunna-ar.medi.BaaBaaInityehFarsi-ar.medi.BaaBaaInit#noonTwodotsbelow-ar.medi.BaaBaaInit ghainDotbelow-ar.medi.AynYaaFinaghain-ar.medi.AynYaaFina(ainThreedotsdownabove-ar.medi.AynYaaFina,ainTwodotshorizontalabove-ar.medi.AynYaaFina*ainTwodotsverticalabove-ar.medi.AynYaaFinaainThreedots-ar.medi.AynYaaFinaain-ar.medi.AynYaaFinameemDotabove-ar.init.MemRaaIsolmeem-ar.init.MemRaaIsolmeemDotbelow-ar.init.MemRaaIsolrreh-ar.fina.MemRaaIsolrehv-ar.fina.MemRaaIsolrehRing-ar.fina.MemRaaIsolrehDotbelow-ar.fina.MemRaaIsolrehVbelow-ar.fina.MemRaaIsol&rehDotbelowdotabove-ar.fina.MemRaaIsolrehTwodots-ar.fina.MemRaaIsoljeh-ar.fina.MemRaaIsolrehFourdots-ar.fina.MemRaaIsolrehStroke-ar.fina.MemRaaIsol$rehVinvertedabove-ar.fina.MemRaaIsolzain-ar.fina.MemRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsolreh-ar.fina.MemRaaIsol*rehTwodotsverticalabove-ar.fina.MemRaaIsol rehHamzaabove-ar.fina.MemRaaIsolqafDotless-ar.init.FaaHaaInit&fehThreedotsupbelow-ar.init.FaaHaaInit"fehTwodotsbelow-ar.init.FaaHaaInitqaf-ar.init.FaaHaaInitfeh-ar.init.FaaHaaInit$qafThreedotsabove-ar.init.FaaHaaInitfehDotless-ar.init.FaaHaaInit#fehDotmovedbelow-ar.init.FaaHaaInitfehDotbelow-ar.init.FaaHaaInitveh-ar.init.FaaHaaInit$fehThreedotsbelow-ar.init.FaaHaaInitpeheh-ar.init.FaaHaaInitqafDotabove-ar.init.FaaHaaInitkhah-ar.medi.FaaHaaInithah-ar.medi.FaaHaaInit hahHamzaabove-ar.medi.FaaHaaInittcheheh-ar.medi.FaaHaaInit$hahThreedotsabove-ar.medi.FaaHaaInitjeem-ar.medi.FaaHaaInit*hahTwodotsverticalabove-ar.medi.FaaHaaInit,hahTwodotshorizontalabove-ar.medi.FaaHaaInitdyeh-ar.medi.FaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.FaaHaaInithahTahbelow-ar.medi.FaaHaaInitnyeh-ar.medi.FaaHaaInit tchehDotabove-ar.medi.FaaHaaInithahFourbelow-ar.medi.FaaHaaInit&hahThreedotsupbelow-ar.medi.FaaHaaInithahTahabove-ar.medi.FaaHaaInittcheh-ar.medi.FaaHaaInitkhah-ar.init.HaaHaaInithah-ar.init.HaaHaaInit hahHamzaabove-ar.init.HaaHaaInittcheheh-ar.init.HaaHaaInit$hahThreedotsabove-ar.init.HaaHaaInitjeem-ar.init.HaaHaaInit*hahTwodotsverticalabove-ar.init.HaaHaaInit,hahTwodotshorizontalabove-ar.init.HaaHaaInitdyeh-ar.init.HaaHaaInit/hahTahTwodotshorizontalabove-ar.init.HaaHaaInithahTahbelow-ar.init.HaaHaaInitnyeh-ar.init.HaaHaaInit tchehDotabove-ar.init.HaaHaaInithahFourbelow-ar.init.HaaHaaInit&hahThreedotsupbelow-ar.init.HaaHaaInithahTahabove-ar.init.HaaHaaInittcheh-ar.init.HaaHaaInitlamVabove-ar.medi.LamQafFina$lamThreedotsabove-ar.medi.LamQafFinalam-ar.medi.LamQafFina$lamThreedotsbelow-ar.medi.LamQafFinalamDotabove-ar.medi.LamQafFinalamBar-ar.medi.LamQafFina$qafThreedotsabove-ar.fina.LamQafFinaqafDotabove-ar.fina.LamQafFinaqaf-ar.fina.LamQafFinaqafDotless-ar.fina.LamQafFinasheenDotbelow-ar.init.AboveHaa)seenTwodotsverticalabove-ar.init.AboveHaaseen-ar.init.AboveHaa#seenVinvertedabove-ar.init.AboveHaaseenFourabove-ar.init.AboveHaasheen-ar.init.AboveHaa.seenTahTwodotshorizontalabove-ar.init.AboveHaa"seenFourdotsabove-ar.init.AboveHaa%seenDotbelowDotabove-ar.init.AboveHaa#seenThreedotsbelow-ar.init.AboveHaa$sheenThreedotsbelow-ar.init.AboveHaameem-ar.init.MemHaaInit$yehFarsiFourbelow-ar.init.BaaNonIsolbeheh-ar.init.BaaNonIsol%yehFarsiThreeabove-ar.init.BaaNonIsolnoonRing-ar.init.BaaNonIsol.behThreedotshorizontalbelow-ar.init.BaaNonIsolbehVabove-ar.init.BaaNonIsolnoonTahabove-ar.init.BaaNonIsolyehVabove-ar.init.BaaNonIsol#yehFarsiTwoabove-ar.init.BaaNonIsol%noonThreedotsabove-ar.init.BaaNonIsol yehHamzaabove-ar.init.BaaNonIsolbehDotless-ar.init.BaaNonIsolyehKashmiri-ar.init.BaaNonIsolyeh-ar.init.BaaNonIsolrnoon-ar.init.BaaNonIsolteheh-ar.init.BaaNonIsol$behVinvertedbelow-ar.init.BaaNonIsol#tehThreedotsdown-ar.init.BaaNonIsolpeh-ar.init.BaaNonIsolbeeh-ar.init.BaaNonIsolbeh-ar.init.BaaNonIsoltteheh-ar.init.BaaNonIsol&behThreedotsupabove-ar.init.BaaNonIsolnoon-ar.init.BaaNonIsol&tehThreedotsupbelow-ar.init.BaaNonIsol&behThreedotsupbelow-ar.init.BaaNonIsolteh-ar.init.BaaNonIsolhighhamzaYeh-ar.init.BaaNonIsol$yehFarsiVinverted-ar.init.BaaNonIsoltheh-ar.init.BaaNonIsoltteh-ar.init.BaaNonIsolnoonDotbelow-ar.init.BaaNonIsolnoonVabove-ar.init.BaaNonIsolalefMaksura-ar.init.BaaNonIsoltehRing-ar.init.BaaNonIsol*behTwodotsbelowDotabove-ar.init.BaaNonIsol$yehThreedotsbelow-ar.init.BaaNonIsole-ar.init.BaaNonIsolnoonghunna-ar.init.BaaNonIsolyehFarsi-ar.init.BaaNonIsol#noonTwodotsbelow-ar.init.BaaNonIsolnoon-ar.fina.BaaNonIsol#noonTwodotsbelow-ar.fina.BaaNonIsolnoonghunna-ar.fina.BaaNonIsolnoonRing-ar.fina.BaaNonIsolrnoon-ar.fina.BaaNonIsolnoonTahabove-ar.fina.BaaNonIsolnoonDotbelow-ar.fina.BaaNonIsolnoonVabove-ar.fina.BaaNonIsol%noonThreedotsabove-ar.fina.BaaNonIsol.kehehTwodotshorizontalabove-ar.medi.KafMemFina&kehehThreedotsbelow-ar.medi.KafMemFina,kafTwodotshorizontalabove-ar.medi.KafMemFina(kehehThreedotsupbelow-ar.medi.KafMemFinakaf-ar.medi.KafMemFinagafRing-ar.medi.KafMemFinagueh-ar.medi.KafMemFina"gafTwodotsbelow-ar.medi.KafMemFinakafRing-ar.medi.KafMemFinakafDotabove-ar.medi.KafMemFinang-ar.medi.KafMemFina$kafThreedotsbelow-ar.medi.KafMemFinagaf-ar.medi.KafMemFinakeheh-ar.medi.KafMemFinagafThreedots-ar.medi.KafMemFina&kehehThreedotsabove-ar.medi.KafMemFina kehehDotabove-ar.medi.KafMemFinangoeh-ar.medi.KafMemFinameem-ar.fina.KafMemFina$yehFarsiFourbelow-ar.init.BaaSenInitbeheh-ar.init.BaaSenInit%yehFarsiThreeabove-ar.init.BaaSenInitnoonRing-ar.init.BaaSenInit.behThreedotshorizontalbelow-ar.init.BaaSenInitbehVabove-ar.init.BaaSenInitnoonTahabove-ar.init.BaaSenInityehVabove-ar.init.BaaSenInit#yehFarsiTwoabove-ar.init.BaaSenInit%noonThreedotsabove-ar.init.BaaSenInit yehHamzaabove-ar.init.BaaSenInitbehDotless-ar.init.BaaSenInityehKashmiri-ar.init.BaaSenInityeh-ar.init.BaaSenInitrnoon-ar.init.BaaSenInitteheh-ar.init.BaaSenInit$behVinvertedbelow-ar.init.BaaSenInit#tehThreedotsdown-ar.init.BaaSenInitpeh-ar.init.BaaSenInitbeeh-ar.init.BaaSenInitbeh-ar.init.BaaSenInittteheh-ar.init.BaaSenInit&behThreedotsupabove-ar.init.BaaSenInitnoon-ar.init.BaaSenInit&tehThreedotsupbelow-ar.init.BaaSenInit&behThreedotsupbelow-ar.init.BaaSenInitteh-ar.init.BaaSenInithighhamzaYeh-ar.init.BaaSenInit$yehFarsiVinverted-ar.init.BaaSenInittheh-ar.init.BaaSenInittteh-ar.init.BaaSenInitnoonDotbelow-ar.init.BaaSenInitnoonVabove-ar.init.BaaSenInitalefMaksura-ar.init.BaaSenInittehRing-ar.init.BaaSenInit*behTwodotsbelowDotabove-ar.init.BaaSenInit$yehThreedotsbelow-ar.init.BaaSenInite-ar.init.BaaSenInitnoonghunna-ar.init.BaaSenInityehFarsi-ar.init.BaaSenInit#noonTwodotsbelow-ar.init.BaaSenInit sheenDotbelow-ar.medi.BaaSenInit+seenTwodotsverticalabove-ar.medi.BaaSenInitseen-ar.medi.BaaSenInit%seenVinvertedabove-ar.medi.BaaSenInit seenFourabove-ar.medi.BaaSenInitsheen-ar.medi.BaaSenInit0seenTahTwodotshorizontalabove-ar.medi.BaaSenInit$seenFourdotsabove-ar.medi.BaaSenInit'seenDotbelowDotabove-ar.medi.BaaSenInit%seenThreedotsbelow-ar.medi.BaaSenInit&sheenThreedotsbelow-ar.medi.BaaSenInit$yehFarsiFourbelow-ar.medi.BaaRaaFinabeheh-ar.medi.BaaRaaFina%yehFarsiThreeabove-ar.medi.BaaRaaFinanoonRing-ar.medi.BaaRaaFina.behThreedotshorizontalbelow-ar.medi.BaaRaaFinabehVabove-ar.medi.BaaRaaFinanoonTahabove-ar.medi.BaaRaaFinayehVabove-ar.medi.BaaRaaFina#yehFarsiTwoabove-ar.medi.BaaRaaFina%noonThreedotsabove-ar.medi.BaaRaaFina yehHamzaabove-ar.medi.BaaRaaFinabehDotless-ar.medi.BaaRaaFinayehKashmiri-ar.medi.BaaRaaFinayeh-ar.medi.BaaRaaFinarnoon-ar.medi.BaaRaaFinateheh-ar.medi.BaaRaaFina$behVinvertedbelow-ar.medi.BaaRaaFina#tehThreedotsdown-ar.medi.BaaRaaFinapeh-ar.medi.BaaRaaFinabeeh-ar.medi.BaaRaaFinabeh-ar.medi.BaaRaaFinatteheh-ar.medi.BaaRaaFina&behThreedotsupabove-ar.medi.BaaRaaFinanoon-ar.medi.BaaRaaFina&tehThreedotsupbelow-ar.medi.BaaRaaFina&behThreedotsupbelow-ar.medi.BaaRaaFinateh-ar.medi.BaaRaaFina$yehFarsiVinverted-ar.medi.BaaRaaFinatheh-ar.medi.BaaRaaFinatteh-ar.medi.BaaRaaFinanoonDotbelow-ar.medi.BaaRaaFinanoonVabove-ar.medi.BaaRaaFinaalefMaksura-ar.medi.BaaRaaFinatehRing-ar.medi.BaaRaaFina*behTwodotsbelowDotabove-ar.medi.BaaRaaFina$yehThreedotsbelow-ar.medi.BaaRaaFinae-ar.medi.BaaRaaFinanoonghunna-ar.medi.BaaRaaFinayehFarsi-ar.medi.BaaRaaFina#noonTwodotsbelow-ar.medi.BaaRaaFinarreh-ar.fina.BaaRaaFinarehv-ar.fina.BaaRaaFinarehRing-ar.fina.BaaRaaFinarehDotbelow-ar.fina.BaaRaaFinarehVbelow-ar.fina.BaaRaaFina&rehDotbelowdotabove-ar.fina.BaaRaaFinarehTwodots-ar.fina.BaaRaaFinajeh-ar.fina.BaaRaaFinarehFourdots-ar.fina.BaaRaaFinarehStroke-ar.fina.BaaRaaFina$rehVinvertedabove-ar.fina.BaaRaaFinazain-ar.fina.BaaRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFinareh-ar.fina.BaaRaaFina*rehTwodotsverticalabove-ar.fina.BaaRaaFina rehHamzaabove-ar.fina.BaaRaaFina.kehehTwodotshorizontalabove-ar.medi.KafRaaFina&kehehThreedotsbelow-ar.medi.KafRaaFina,kafTwodotshorizontalabove-ar.medi.KafRaaFina(kehehThreedotsupbelow-ar.medi.KafRaaFinakaf-ar.medi.KafRaaFinagafRing-ar.medi.KafRaaFinagueh-ar.medi.KafRaaFina"gafTwodotsbelow-ar.medi.KafRaaFinakafRing-ar.medi.KafRaaFinakafDotabove-ar.medi.KafRaaFinang-ar.medi.KafRaaFina$kafThreedotsbelow-ar.medi.KafRaaFinagaf-ar.medi.KafRaaFinakeheh-ar.medi.KafRaaFinagafThreedots-ar.medi.KafRaaFina&kehehThreedotsabove-ar.medi.KafRaaFina kehehDotabove-ar.medi.KafRaaFinangoeh-ar.medi.KafRaaFinarreh-ar.fina.KafRaaFinarehv-ar.fina.KafRaaFinarehRing-ar.fina.KafRaaFinarehDotbelow-ar.fina.KafRaaFinarehVbelow-ar.fina.KafRaaFina&rehDotbelowdotabove-ar.fina.KafRaaFinarehTwodots-ar.fina.KafRaaFinajeh-ar.fina.KafRaaFinarehFourdots-ar.fina.KafRaaFinarehStroke-ar.fina.KafRaaFina$rehVinvertedabove-ar.fina.KafRaaFinazain-ar.fina.KafRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFinareh-ar.fina.KafRaaFina*rehTwodotsverticalabove-ar.fina.KafRaaFina rehHamzaabove-ar.fina.KafRaaFinalamVabove-ar.init.LamHehInit$lamThreedotsabove-ar.init.LamHehInitlam-ar.init.LamHehInit$lamThreedotsbelow-ar.init.LamHehInitlamDotabove-ar.init.LamHehInitlamBar-ar.init.LamHehInitheh-ar.medi.LamHehInithehgoal-ar.medi.LamHehInitmeem-ar.init.MemHaaMemInitkhah-ar.medi.MemHaaMemInithah-ar.medi.MemHaaMemInit#hahHamzaabove-ar.medi.MemHaaMemInittcheheh-ar.medi.MemHaaMemInit'hahThreedotsabove-ar.medi.MemHaaMemInitjeem-ar.medi.MemHaaMemInit-hahTwodotsverticalabove-ar.medi.MemHaaMemInit/hahTwodotshorizontalabove-ar.medi.MemHaaMemInitdyeh-ar.medi.MemHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit!hahTahbelow-ar.medi.MemHaaMemInitnyeh-ar.medi.MemHaaMemInit#tchehDotabove-ar.medi.MemHaaMemInit"hahFourbelow-ar.medi.MemHaaMemInit)hahThreedotsupbelow-ar.medi.MemHaaMemInit!hahTahabove-ar.medi.MemHaaMemInittcheh-ar.medi.MemHaaMemInit$yehFarsiFourbelow-ar.init.BaaMemInitbeheh-ar.init.BaaMemInit%yehFarsiThreeabove-ar.init.BaaMemInitnoonRing-ar.init.BaaMemInit.behThreedotshorizontalbelow-ar.init.BaaMemInitbehVabove-ar.init.BaaMemInitnoonTahabove-ar.init.BaaMemInityehVabove-ar.init.BaaMemInit#yehFarsiTwoabove-ar.init.BaaMemInit%noonThreedotsabove-ar.init.BaaMemInit yehHamzaabove-ar.init.BaaMemInitbehDotless-ar.init.BaaMemInityehKashmiri-ar.init.BaaMemInityeh-ar.init.BaaMemInitrnoon-ar.init.BaaMemInitteheh-ar.init.BaaMemInit$behVinvertedbelow-ar.init.BaaMemInit#tehThreedotsdown-ar.init.BaaMemInitpeh-ar.init.BaaMemInitbeeh-ar.init.BaaMemInitbeh-ar.init.BaaMemInittteheh-ar.init.BaaMemInit&behThreedotsupabove-ar.init.BaaMemInitnoon-ar.init.BaaMemInit&tehThreedotsupbelow-ar.init.BaaMemInit&behThreedotsupbelow-ar.init.BaaMemInitteh-ar.init.BaaMemInithighhamzaYeh-ar.init.BaaMemInit$yehFarsiVinverted-ar.init.BaaMemInittheh-ar.init.BaaMemInittteh-ar.init.BaaMemInitnoonDotbelow-ar.init.BaaMemInitnoonVabove-ar.init.BaaMemInitalefMaksura-ar.init.BaaMemInittehRing-ar.init.BaaMemInit*behTwodotsbelowDotabove-ar.init.BaaMemInit$yehThreedotsbelow-ar.init.BaaMemInite-ar.init.BaaMemInitnoonghunna-ar.init.BaaMemInityehFarsi-ar.init.BaaMemInit#noonTwodotsbelow-ar.init.BaaMemInitmeem-ar.medi.BaaMemInit sheenDotbelow-ar.init.SenHaaInit+seenTwodotsverticalabove-ar.init.SenHaaInitseen-ar.init.SenHaaInit%seenVinvertedabove-ar.init.SenHaaInit seenFourabove-ar.init.SenHaaInitsheen-ar.init.SenHaaInit0seenTahTwodotshorizontalabove-ar.init.SenHaaInit$seenFourdotsabove-ar.init.SenHaaInit'seenDotbelowDotabove-ar.init.SenHaaInit%seenThreedotsbelow-ar.init.SenHaaInit&sheenThreedotsbelow-ar.init.SenHaaInit.kehehTwodotshorizontalabove-ar.init.KafRaaIsol&kehehThreedotsbelow-ar.init.KafRaaIsol,kafTwodotshorizontalabove-ar.init.KafRaaIsol(kehehThreedotsupbelow-ar.init.KafRaaIsolkaf-ar.init.KafRaaIsolgafRing-ar.init.KafRaaIsolgueh-ar.init.KafRaaIsol"gafTwodotsbelow-ar.init.KafRaaIsolkafRing-ar.init.KafRaaIsolkafDotabove-ar.init.KafRaaIsolng-ar.init.KafRaaIsol$kafThreedotsbelow-ar.init.KafRaaIsolgaf-ar.init.KafRaaIsolkeheh-ar.init.KafRaaIsolgafThreedots-ar.init.KafRaaIsol&kehehThreedotsabove-ar.init.KafRaaIsol kehehDotabove-ar.init.KafRaaIsolngoeh-ar.init.KafRaaIsolrreh-ar.fina.KafRaaIsolrehv-ar.fina.KafRaaIsolrehRing-ar.fina.KafRaaIsolrehDotbelow-ar.fina.KafRaaIsolrehVbelow-ar.fina.KafRaaIsol&rehDotbelowdotabove-ar.fina.KafRaaIsolrehTwodots-ar.fina.KafRaaIsoljeh-ar.fina.KafRaaIsolrehFourdots-ar.fina.KafRaaIsolrehStroke-ar.fina.KafRaaIsol$rehVinvertedabove-ar.fina.KafRaaIsolzain-ar.fina.KafRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsolreh-ar.fina.KafRaaIsol*rehTwodotsverticalabove-ar.fina.KafRaaIsol rehHamzaabove-ar.fina.KafRaaIsol ghainDotbelow-ar.init.AynHaaInitghain-ar.init.AynHaaInit(ainThreedotsdownabove-ar.init.AynHaaInit,ainTwodotshorizontalabove-ar.init.AynHaaInit*ainTwodotsverticalabove-ar.init.AynHaaInitainThreedots-ar.init.AynHaaInitain-ar.init.AynHaaInit.kehehTwodotshorizontalabove-ar.medi.KafYaaFina&kehehThreedotsbelow-ar.medi.KafYaaFina,kafTwodotshorizontalabove-ar.medi.KafYaaFina(kehehThreedotsupbelow-ar.medi.KafYaaFinakaf-ar.medi.KafYaaFinagafRing-ar.medi.KafYaaFinagueh-ar.medi.KafYaaFina"gafTwodotsbelow-ar.medi.KafYaaFinakafRing-ar.medi.KafYaaFinakafDotabove-ar.medi.KafYaaFinang-ar.medi.KafYaaFina$kafThreedotsbelow-ar.medi.KafYaaFinagaf-ar.medi.KafYaaFinakeheh-ar.medi.KafYaaFinagafThreedots-ar.medi.KafYaaFina&kehehThreedotsabove-ar.medi.KafYaaFina kehehDotabove-ar.medi.KafYaaFinangoeh-ar.medi.KafYaaFina$yehFarsiFourbelow-ar.fina.KafYaaFina$yehThreedotsbelow-ar.fina.KafYaaFina#yehFarsiTwoabove-ar.fina.KafYaaFina)yehFarsiThreedotsabove-ar.fina.KafYaaFina$yehFarsiVinverted-ar.fina.KafYaaFina'yehFarsiTwodotsabove-ar.fina.KafYaaFinae-ar.fina.KafYaaFinaalefMaksura-ar.fina.KafYaaFina%yehFarsiThreeabove-ar.fina.KafYaaFinayehTail-ar.fina.KafYaaFinayehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFinayehKashmiri-ar.fina.KafYaaFinayeh-ar.fina.KafYaaFinayehVabove-ar.fina.KafYaaFinalamVabove-ar.init.LamMemHaaInit'lamThreedotsabove-ar.init.LamMemHaaInitlam-ar.init.LamMemHaaInit'lamThreedotsbelow-ar.init.LamMemHaaInit!lamDotabove-ar.init.LamMemHaaInitlamBar-ar.init.LamMemHaaInitmeem-ar.medi.LamMemHaaInitkhah-ar.medi.LamMemHaaInithah-ar.medi.LamMemHaaInit#hahHamzaabove-ar.medi.LamMemHaaInittcheheh-ar.medi.LamMemHaaInit'hahThreedotsabove-ar.medi.LamMemHaaInitjeem-ar.medi.LamMemHaaInit-hahTwodotsverticalabove-ar.medi.LamMemHaaInit/hahTwodotshorizontalabove-ar.medi.LamMemHaaInitdyeh-ar.medi.LamMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit!hahTahbelow-ar.medi.LamMemHaaInitnyeh-ar.medi.LamMemHaaInit#tchehDotabove-ar.medi.LamMemHaaInit"hahFourbelow-ar.medi.LamMemHaaInit)hahThreedotsupbelow-ar.medi.LamMemHaaInit!hahTahabove-ar.medi.LamMemHaaInittcheh-ar.medi.LamMemHaaInitlamVabove-ar.medi.LamAlfFina$lamThreedotsabove-ar.medi.LamAlfFinalam-ar.medi.LamAlfFina$lamThreedotsbelow-ar.medi.LamAlfFinalamDotabove-ar.medi.LamAlfFinalamBar-ar.medi.LamAlfFina!alefHamzabelow-ar.fina.LamAlfFinaalef-ar.fina.LamAlfFina!alefThreeabove-ar.fina.LamAlfFinaalefTwoabove-ar.fina.LamAlfFina!alefHamzaabove-ar.fina.LamAlfFinaalefMadda-ar.fina.LamAlfFina%alefWavyhamzaabove-ar.fina.LamAlfFina%alefWavyhamzabelow-ar.fina.LamAlfFinaalefWasla-ar.fina.LamAlfFinalamVabove-ar.medi.LamMemMedi$lamThreedotsabove-ar.medi.LamMemMedilam-ar.medi.LamMemMedi$lamThreedotsbelow-ar.medi.LamMemMedilamDotabove-ar.medi.LamMemMedilamBar-ar.medi.LamMemMedimeemDotabove-ar.medi.LamMemMedimeem-ar.medi.LamMemMedimeemDotbelow-ar.medi.LamMemMedi'yehFarsiFourbelow-ar.init.BaaBaaHaaInitbeheh-ar.init.BaaBaaHaaInit(yehFarsiThreeabove-ar.init.BaaBaaHaaInitnoonRing-ar.init.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitbehVabove-ar.init.BaaBaaHaaInit"noonTahabove-ar.init.BaaBaaHaaInityehVabove-ar.init.BaaBaaHaaInit&yehFarsiTwoabove-ar.init.BaaBaaHaaInit(noonThreedotsabove-ar.init.BaaBaaHaaInit#yehHamzaabove-ar.init.BaaBaaHaaInit behDotless-ar.init.BaaBaaHaaInit!yehKashmiri-ar.init.BaaBaaHaaInityeh-ar.init.BaaBaaHaaInitrnoon-ar.init.BaaBaaHaaInitteheh-ar.init.BaaBaaHaaInit'behVinvertedbelow-ar.init.BaaBaaHaaInit&tehThreedotsdown-ar.init.BaaBaaHaaInitpeh-ar.init.BaaBaaHaaInitbeeh-ar.init.BaaBaaHaaInitbeh-ar.init.BaaBaaHaaInittteheh-ar.init.BaaBaaHaaInit)behThreedotsupabove-ar.init.BaaBaaHaaInitnoon-ar.init.BaaBaaHaaInit)tehThreedotsupbelow-ar.init.BaaBaaHaaInit)behThreedotsupbelow-ar.init.BaaBaaHaaInitteh-ar.init.BaaBaaHaaInit"highhamzaYeh-ar.init.BaaBaaHaaInit'yehFarsiVinverted-ar.init.BaaBaaHaaInittheh-ar.init.BaaBaaHaaInittteh-ar.init.BaaBaaHaaInit"noonDotbelow-ar.init.BaaBaaHaaInit noonVabove-ar.init.BaaBaaHaaInit!alefMaksura-ar.init.BaaBaaHaaInittehRing-ar.init.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit'yehThreedotsbelow-ar.init.BaaBaaHaaInite-ar.init.BaaBaaHaaInit noonghunna-ar.init.BaaBaaHaaInityehFarsi-ar.init.BaaBaaHaaInit&noonTwodotsbelow-ar.init.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.BaaBaaHaaInitbeheh-ar.medi.BaaBaaHaaInit(yehFarsiThreeabove-ar.medi.BaaBaaHaaInitnoonRing-ar.medi.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInitbehVabove-ar.medi.BaaBaaHaaInit"noonTahabove-ar.medi.BaaBaaHaaInityehVabove-ar.medi.BaaBaaHaaInit&yehFarsiTwoabove-ar.medi.BaaBaaHaaInit(noonThreedotsabove-ar.medi.BaaBaaHaaInit#yehHamzaabove-ar.medi.BaaBaaHaaInit behDotless-ar.medi.BaaBaaHaaInit!yehKashmiri-ar.medi.BaaBaaHaaInityeh-ar.medi.BaaBaaHaaInitrnoon-ar.medi.BaaBaaHaaInitteheh-ar.medi.BaaBaaHaaInit'behVinvertedbelow-ar.medi.BaaBaaHaaInit&tehThreedotsdown-ar.medi.BaaBaaHaaInitpeh-ar.medi.BaaBaaHaaInitbeeh-ar.medi.BaaBaaHaaInitbeh-ar.medi.BaaBaaHaaInittteheh-ar.medi.BaaBaaHaaInit)behThreedotsupabove-ar.medi.BaaBaaHaaInitnoon-ar.medi.BaaBaaHaaInit)tehThreedotsupbelow-ar.medi.BaaBaaHaaInit)behThreedotsupbelow-ar.medi.BaaBaaHaaInitteh-ar.medi.BaaBaaHaaInit'yehFarsiVinverted-ar.medi.BaaBaaHaaInittheh-ar.medi.BaaBaaHaaInittteh-ar.medi.BaaBaaHaaInit"noonDotbelow-ar.medi.BaaBaaHaaInit noonVabove-ar.medi.BaaBaaHaaInit!alefMaksura-ar.medi.BaaBaaHaaInittehRing-ar.medi.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit'yehThreedotsbelow-ar.medi.BaaBaaHaaInite-ar.medi.BaaBaaHaaInit noonghunna-ar.medi.BaaBaaHaaInityehFarsi-ar.medi.BaaBaaHaaInit&noonTwodotsbelow-ar.medi.BaaBaaHaaInitkhah-ar.medi.BaaBaaHaaInithah-ar.medi.BaaBaaHaaInit#hahHamzaabove-ar.medi.BaaBaaHaaInittcheheh-ar.medi.BaaBaaHaaInit'hahThreedotsabove-ar.medi.BaaBaaHaaInitjeem-ar.medi.BaaBaaHaaInit-hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit/hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInitdyeh-ar.medi.BaaBaaHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit!hahTahbelow-ar.medi.BaaBaaHaaInitnyeh-ar.medi.BaaBaaHaaInit#tchehDotabove-ar.medi.BaaBaaHaaInit"hahFourbelow-ar.medi.BaaBaaHaaInit)hahThreedotsupbelow-ar.medi.BaaBaaHaaInit!hahTahabove-ar.medi.BaaBaaHaaInittcheh-ar.medi.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.SenBaaMemInitbeheh-ar.medi.SenBaaMemInit(yehFarsiThreeabove-ar.medi.SenBaaMemInitnoonRing-ar.medi.SenBaaMemInit1behThreedotshorizontalbelow-ar.medi.SenBaaMemInitbehVabove-ar.medi.SenBaaMemInit"noonTahabove-ar.medi.SenBaaMemInityehVabove-ar.medi.SenBaaMemInit&yehFarsiTwoabove-ar.medi.SenBaaMemInit(noonThreedotsabove-ar.medi.SenBaaMemInit#yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInit!yehKashmiri-ar.medi.SenBaaMemInityeh-ar.medi.SenBaaMemInitrnoon-ar.medi.SenBaaMemInitteheh-ar.medi.SenBaaMemInit'behVinvertedbelow-ar.medi.SenBaaMemInit&tehThreedotsdown-ar.medi.SenBaaMemInitpeh-ar.medi.SenBaaMemInitbeeh-ar.medi.SenBaaMemInitbeh-ar.medi.SenBaaMemInittteheh-ar.medi.SenBaaMemInit)behThreedotsupabove-ar.medi.SenBaaMemInitnoon-ar.medi.SenBaaMemInit)tehThreedotsupbelow-ar.medi.SenBaaMemInit)behThreedotsupbelow-ar.medi.SenBaaMemInitteh-ar.medi.SenBaaMemInit'yehFarsiVinverted-ar.medi.SenBaaMemInittheh-ar.medi.SenBaaMemInittteh-ar.medi.SenBaaMemInit"noonDotbelow-ar.medi.SenBaaMemInit noonVabove-ar.medi.SenBaaMemInit!alefMaksura-ar.medi.SenBaaMemInittehRing-ar.medi.SenBaaMemInit-behTwodotsbelowDotabove-ar.medi.SenBaaMemInit'yehThreedotsbelow-ar.medi.SenBaaMemInite-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInityehFarsi-ar.medi.SenBaaMemInit&noonTwodotsbelow-ar.medi.SenBaaMemInitmeem-ar.medi.SenBaaMemInit$yehFarsiFourbelow-ar.init.BaaBaaIsolbeheh-ar.init.BaaBaaIsol%yehFarsiThreeabove-ar.init.BaaBaaIsolnoonRing-ar.init.BaaBaaIsol.behThreedotshorizontalbelow-ar.init.BaaBaaIsolbehVabove-ar.init.BaaBaaIsolnoonTahabove-ar.init.BaaBaaIsolyehVabove-ar.init.BaaBaaIsol#yehFarsiTwoabove-ar.init.BaaBaaIsol%noonThreedotsabove-ar.init.BaaBaaIsol yehHamzaabove-ar.init.BaaBaaIsolbehDotless-ar.init.BaaBaaIsolyehKashmiri-ar.init.BaaBaaIsolyeh-ar.init.BaaBaaIsolrnoon-ar.init.BaaBaaIsolteheh-ar.init.BaaBaaIsol$behVinvertedbelow-ar.init.BaaBaaIsol#tehThreedotsdown-ar.init.BaaBaaIsolpeh-ar.init.BaaBaaIsolbeeh-ar.init.BaaBaaIsolbeh-ar.init.BaaBaaIsoltteheh-ar.init.BaaBaaIsol&behThreedotsupabove-ar.init.BaaBaaIsolnoon-ar.init.BaaBaaIsol&tehThreedotsupbelow-ar.init.BaaBaaIsol&behThreedotsupbelow-ar.init.BaaBaaIsolteh-ar.init.BaaBaaIsolhighhamzaYeh-ar.init.BaaBaaIsol$yehFarsiVinverted-ar.init.BaaBaaIsoltheh-ar.init.BaaBaaIsoltteh-ar.init.BaaBaaIsolnoonDotbelow-ar.init.BaaBaaIsolnoonVabove-ar.init.BaaBaaIsolalefMaksura-ar.init.BaaBaaIsoltehRing-ar.init.BaaBaaIsol*behTwodotsbelowDotabove-ar.init.BaaBaaIsol$yehThreedotsbelow-ar.init.BaaBaaIsole-ar.init.BaaBaaIsolnoonghunna-ar.init.BaaBaaIsolyehFarsi-ar.init.BaaBaaIsol#noonTwodotsbelow-ar.init.BaaBaaIsol&behThreedotsupabove-ar.fina.BaaBaaIsol.behThreedotshorizontalbelow-ar.fina.BaaBaaIsol&tehThreedotsupbelow-ar.fina.BaaBaaIsolbeheh-ar.fina.BaaBaaIsolteh-ar.fina.BaaBaaIsol*behTwodotsbelowDotabove-ar.fina.BaaBaaIsoltheh-ar.fina.BaaBaaIsoltteh-ar.fina.BaaBaaIsoltehRing-ar.fina.BaaBaaIsolbehVabove-ar.fina.BaaBaaIsol&behThreedotsupbelow-ar.fina.BaaBaaIsolbehDotless-ar.fina.BaaBaaIsolteheh-ar.fina.BaaBaaIsol$behVinvertedbelow-ar.fina.BaaBaaIsol#tehThreedotsdown-ar.fina.BaaBaaIsolpeh-ar.fina.BaaBaaIsolbeeh-ar.fina.BaaBaaIsolbeh-ar.fina.BaaBaaIsoltteheh-ar.fina.BaaBaaIsol'yehFarsiFourbelow-ar.init.BaaBaaMemInitbeheh-ar.init.BaaBaaMemInit(yehFarsiThreeabove-ar.init.BaaBaaMemInitnoonRing-ar.init.BaaBaaMemInit1behThreedotshorizontalbelow-ar.init.BaaBaaMemInitbehVabove-ar.init.BaaBaaMemInit"noonTahabove-ar.init.BaaBaaMemInityehVabove-ar.init.BaaBaaMemInit&yehFarsiTwoabove-ar.init.BaaBaaMemInit(noonThreedotsabove-ar.init.BaaBaaMemInit#yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInit!yehKashmiri-ar.init.BaaBaaMemInityeh-ar.init.BaaBaaMemInitrnoon-ar.init.BaaBaaMemInitteheh-ar.init.BaaBaaMemInit'behVinvertedbelow-ar.init.BaaBaaMemInit&tehThreedotsdown-ar.init.BaaBaaMemInitpeh-ar.init.BaaBaaMemInitbeeh-ar.init.BaaBaaMemInitbeh-ar.init.BaaBaaMemInittteheh-ar.init.BaaBaaMemInit)behThreedotsupabove-ar.init.BaaBaaMemInitnoon-ar.init.BaaBaaMemInit)tehThreedotsupbelow-ar.init.BaaBaaMemInit)behThreedotsupbelow-ar.init.BaaBaaMemInitteh-ar.init.BaaBaaMemInit"highhamzaYeh-ar.init.BaaBaaMemInit'yehFarsiVinverted-ar.init.BaaBaaMemInittheh-ar.init.BaaBaaMemInittteh-ar.init.BaaBaaMemInit"noonDotbelow-ar.init.BaaBaaMemInit noonVabove-ar.init.BaaBaaMemInit!alefMaksura-ar.init.BaaBaaMemInittehRing-ar.init.BaaBaaMemInit-behTwodotsbelowDotabove-ar.init.BaaBaaMemInit'yehThreedotsbelow-ar.init.BaaBaaMemInite-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInityehFarsi-ar.init.BaaBaaMemInit&noonTwodotsbelow-ar.init.BaaBaaMemInit'yehFarsiFourbelow-ar.medi.BaaBaaMemInitbeheh-ar.medi.BaaBaaMemInit(yehFarsiThreeabove-ar.medi.BaaBaaMemInitnoonRing-ar.medi.BaaBaaMemInit1behThreedotshorizontalbelow-ar.medi.BaaBaaMemInitbehVabove-ar.medi.BaaBaaMemInit"noonTahabove-ar.medi.BaaBaaMemInityehVabove-ar.medi.BaaBaaMemInit&yehFarsiTwoabove-ar.medi.BaaBaaMemInit(noonThreedotsabove-ar.medi.BaaBaaMemInit#yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInit!yehKashmiri-ar.medi.BaaBaaMemInityeh-ar.medi.BaaBaaMemInitrnoon-ar.medi.BaaBaaMemInitteheh-ar.medi.BaaBaaMemInit'behVinvertedbelow-ar.medi.BaaBaaMemInit&tehThreedotsdown-ar.medi.BaaBaaMemInitpeh-ar.medi.BaaBaaMemInitbeeh-ar.medi.BaaBaaMemInitbeh-ar.medi.BaaBaaMemInittteheh-ar.medi.BaaBaaMemInit)behThreedotsupabove-ar.medi.BaaBaaMemInitnoon-ar.medi.BaaBaaMemInit)tehThreedotsupbelow-ar.medi.BaaBaaMemInit)behThreedotsupbelow-ar.medi.BaaBaaMemInitteh-ar.medi.BaaBaaMemInit'yehFarsiVinverted-ar.medi.BaaBaaMemInittheh-ar.medi.BaaBaaMemInittteh-ar.medi.BaaBaaMemInit"noonDotbelow-ar.medi.BaaBaaMemInit noonVabove-ar.medi.BaaBaaMemInit!alefMaksura-ar.medi.BaaBaaMemInittehRing-ar.medi.BaaBaaMemInit-behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit'yehThreedotsbelow-ar.medi.BaaBaaMemInite-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInityehFarsi-ar.medi.BaaBaaMemInit&noonTwodotsbelow-ar.medi.BaaBaaMemInitmeem-ar.medi.BaaBaaMemInit.kehehTwodotshorizontalabove-ar.medi.KafBaaMedi&kehehThreedotsbelow-ar.medi.KafBaaMedi,kafTwodotshorizontalabove-ar.medi.KafBaaMedi(kehehThreedotsupbelow-ar.medi.KafBaaMedikaf-ar.medi.KafBaaMedigafRing-ar.medi.KafBaaMedigueh-ar.medi.KafBaaMedi"gafTwodotsbelow-ar.medi.KafBaaMedikafRing-ar.medi.KafBaaMedikafDotabove-ar.medi.KafBaaMeding-ar.medi.KafBaaMedi$kafThreedotsbelow-ar.medi.KafBaaMedigaf-ar.medi.KafBaaMedikeheh-ar.medi.KafBaaMedigafThreedots-ar.medi.KafBaaMedi&kehehThreedotsabove-ar.medi.KafBaaMedi kehehDotabove-ar.medi.KafBaaMedingoeh-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.KafBaaMedibeheh-ar.medi.KafBaaMedi%yehFarsiThreeabove-ar.medi.KafBaaMedinoonRing-ar.medi.KafBaaMedi.behThreedotshorizontalbelow-ar.medi.KafBaaMedibehVabove-ar.medi.KafBaaMedinoonTahabove-ar.medi.KafBaaMediyehVabove-ar.medi.KafBaaMedi#yehFarsiTwoabove-ar.medi.KafBaaMedi%noonThreedotsabove-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedibehDotless-ar.medi.KafBaaMediyehKashmiri-ar.medi.KafBaaMediyeh-ar.medi.KafBaaMedirnoon-ar.medi.KafBaaMediteheh-ar.medi.KafBaaMedi$behVinvertedbelow-ar.medi.KafBaaMedi#tehThreedotsdown-ar.medi.KafBaaMedipeh-ar.medi.KafBaaMedibeeh-ar.medi.KafBaaMedibeh-ar.medi.KafBaaMeditteheh-ar.medi.KafBaaMedi&behThreedotsupabove-ar.medi.KafBaaMedinoon-ar.medi.KafBaaMedi&tehThreedotsupbelow-ar.medi.KafBaaMedi&behThreedotsupbelow-ar.medi.KafBaaMediteh-ar.medi.KafBaaMedi$yehFarsiVinverted-ar.medi.KafBaaMeditheh-ar.medi.KafBaaMeditteh-ar.medi.KafBaaMedinoonDotbelow-ar.medi.KafBaaMedinoonVabove-ar.medi.KafBaaMedialefMaksura-ar.medi.KafBaaMeditehRing-ar.medi.KafBaaMedi*behTwodotsbelowDotabove-ar.medi.KafBaaMedi$yehThreedotsbelow-ar.medi.KafBaaMedie-ar.medi.KafBaaMedinoonghunna-ar.medi.KafBaaMediyehFarsi-ar.medi.KafBaaMedi#noonTwodotsbelow-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.BaaNonFinabeheh-ar.medi.BaaNonFina%yehFarsiThreeabove-ar.medi.BaaNonFinanoonRing-ar.medi.BaaNonFina.behThreedotshorizontalbelow-ar.medi.BaaNonFinabehVabove-ar.medi.BaaNonFinanoonTahabove-ar.medi.BaaNonFinayehVabove-ar.medi.BaaNonFina#yehFarsiTwoabove-ar.medi.BaaNonFina%noonThreedotsabove-ar.medi.BaaNonFina yehHamzaabove-ar.medi.BaaNonFinabehDotless-ar.medi.BaaNonFinayehKashmiri-ar.medi.BaaNonFinayeh-ar.medi.BaaNonFinarnoon-ar.medi.BaaNonFinateheh-ar.medi.BaaNonFina$behVinvertedbelow-ar.medi.BaaNonFina#tehThreedotsdown-ar.medi.BaaNonFinapeh-ar.medi.BaaNonFinabeeh-ar.medi.BaaNonFinabeh-ar.medi.BaaNonFinatteheh-ar.medi.BaaNonFina&behThreedotsupabove-ar.medi.BaaNonFinanoon-ar.medi.BaaNonFina&tehThreedotsupbelow-ar.medi.BaaNonFina&behThreedotsupbelow-ar.medi.BaaNonFinateh-ar.medi.BaaNonFina$yehFarsiVinverted-ar.medi.BaaNonFinatheh-ar.medi.BaaNonFinatteh-ar.medi.BaaNonFinanoonDotbelow-ar.medi.BaaNonFinanoonVabove-ar.medi.BaaNonFinaalefMaksura-ar.medi.BaaNonFinatehRing-ar.medi.BaaNonFina*behTwodotsbelowDotabove-ar.medi.BaaNonFina$yehThreedotsbelow-ar.medi.BaaNonFinae-ar.medi.BaaNonFinanoonghunna-ar.medi.BaaNonFinayehFarsi-ar.medi.BaaNonFina#noonTwodotsbelow-ar.medi.BaaNonFinanoon-ar.fina.BaaNonFina#noonTwodotsbelow-ar.fina.BaaNonFinanoonghunna-ar.fina.BaaNonFinanoonRing-ar.fina.BaaNonFinarnoon-ar.fina.BaaNonFinanoonTahabove-ar.fina.BaaNonFinanoonDotbelow-ar.fina.BaaNonFinanoonVabove-ar.fina.BaaNonFina%noonThreedotsabove-ar.fina.BaaNonFinakhah-ar.init.HaaRaaIsolhah-ar.init.HaaRaaIsol hahHamzaabove-ar.init.HaaRaaIsoltcheheh-ar.init.HaaRaaIsol$hahThreedotsabove-ar.init.HaaRaaIsoljeem-ar.init.HaaRaaIsol*hahTwodotsverticalabove-ar.init.HaaRaaIsol,hahTwodotshorizontalabove-ar.init.HaaRaaIsoldyeh-ar.init.HaaRaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaRaaIsolhahTahbelow-ar.init.HaaRaaIsolnyeh-ar.init.HaaRaaIsol tchehDotabove-ar.init.HaaRaaIsolhahFourbelow-ar.init.HaaRaaIsol&hahThreedotsupbelow-ar.init.HaaRaaIsolhahTahabove-ar.init.HaaRaaIsoltcheh-ar.init.HaaRaaIsolrreh-ar.fina.HaaRaaIsolrehv-ar.fina.HaaRaaIsolrehRing-ar.fina.HaaRaaIsolrehDotbelow-ar.fina.HaaRaaIsolrehVbelow-ar.fina.HaaRaaIsol&rehDotbelowdotabove-ar.fina.HaaRaaIsolrehTwodots-ar.fina.HaaRaaIsoljeh-ar.fina.HaaRaaIsolrehFourdots-ar.fina.HaaRaaIsolrehStroke-ar.fina.HaaRaaIsol$rehVinvertedabove-ar.fina.HaaRaaIsolzain-ar.fina.HaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsolreh-ar.fina.HaaRaaIsol*rehTwodotsverticalabove-ar.fina.HaaRaaIsol rehHamzaabove-ar.fina.HaaRaaIsolheh-ar.init.HehHaaInithehgoal-ar.init.HehHaaInitlamVabove-ar.init.LamRaaIsol$lamThreedotsabove-ar.init.LamRaaIsollam-ar.init.LamRaaIsol$lamThreedotsbelow-ar.init.LamRaaIsollamDotabove-ar.init.LamRaaIsollamBar-ar.init.LamRaaIsolrreh-ar.fina.LamRaaIsolrehv-ar.fina.LamRaaIsolrehRing-ar.fina.LamRaaIsolrehDotbelow-ar.fina.LamRaaIsolrehVbelow-ar.fina.LamRaaIsol&rehDotbelowdotabove-ar.fina.LamRaaIsolrehTwodots-ar.fina.LamRaaIsoljeh-ar.fina.LamRaaIsolrehFourdots-ar.fina.LamRaaIsolrehStroke-ar.fina.LamRaaIsol$rehVinvertedabove-ar.fina.LamRaaIsolzain-ar.fina.LamRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsolreh-ar.fina.LamRaaIsol*rehTwodotsverticalabove-ar.fina.LamRaaIsol rehHamzaabove-ar.fina.LamRaaIsol"sadTwodotsbelow-ar.init.SadHaaInitdadDotbelow-ar.init.SadHaaInitdad-ar.init.SadHaaInitsadThreedots-ar.init.SadHaaInitsad-ar.init.SadHaaInitkhah-ar.medi.SadHaaInithah-ar.medi.SadHaaInit hahHamzaabove-ar.medi.SadHaaInittcheheh-ar.medi.SadHaaInit$hahThreedotsabove-ar.medi.SadHaaInitjeem-ar.medi.SadHaaInit*hahTwodotsverticalabove-ar.medi.SadHaaInit,hahTwodotshorizontalabove-ar.medi.SadHaaInitdyeh-ar.medi.SadHaaInit/hahTahTwodotshorizontalabove-ar.medi.SadHaaInithahTahbelow-ar.medi.SadHaaInitnyeh-ar.medi.SadHaaInit tchehDotabove-ar.medi.SadHaaInithahFourbelow-ar.medi.SadHaaInit&hahThreedotsupbelow-ar.medi.SadHaaInithahTahabove-ar.medi.SadHaaInittcheh-ar.medi.SadHaaInit$yehFarsiFourbelow-ar.medi.BaaYaaFinabeheh-ar.medi.BaaYaaFina%yehFarsiThreeabove-ar.medi.BaaYaaFinanoonRing-ar.medi.BaaYaaFina.behThreedotshorizontalbelow-ar.medi.BaaYaaFinabehVabove-ar.medi.BaaYaaFinanoonTahabove-ar.medi.BaaYaaFinayehVabove-ar.medi.BaaYaaFina#yehFarsiTwoabove-ar.medi.BaaYaaFina%noonThreedotsabove-ar.medi.BaaYaaFina yehHamzaabove-ar.medi.BaaYaaFinabehDotless-ar.medi.BaaYaaFinayehKashmiri-ar.medi.BaaYaaFinayeh-ar.medi.BaaYaaFinarnoon-ar.medi.BaaYaaFinateheh-ar.medi.BaaYaaFina$behVinvertedbelow-ar.medi.BaaYaaFina#tehThreedotsdown-ar.medi.BaaYaaFinapeh-ar.medi.BaaYaaFinabeeh-ar.medi.BaaYaaFinabeh-ar.medi.BaaYaaFinatteheh-ar.medi.BaaYaaFina&behThreedotsupabove-ar.medi.BaaYaaFinanoon-ar.medi.BaaYaaFina&tehThreedotsupbelow-ar.medi.BaaYaaFina&behThreedotsupbelow-ar.medi.BaaYaaFinateh-ar.medi.BaaYaaFina$yehFarsiVinverted-ar.medi.BaaYaaFinatheh-ar.medi.BaaYaaFinatteh-ar.medi.BaaYaaFinanoonDotbelow-ar.medi.BaaYaaFinanoonVabove-ar.medi.BaaYaaFinaalefMaksura-ar.medi.BaaYaaFinatehRing-ar.medi.BaaYaaFina*behTwodotsbelowDotabove-ar.medi.BaaYaaFina$yehThreedotsbelow-ar.medi.BaaYaaFinae-ar.medi.BaaYaaFinanoonghunna-ar.medi.BaaYaaFinayehFarsi-ar.medi.BaaYaaFina#noonTwodotsbelow-ar.medi.BaaYaaFina$yehFarsiFourbelow-ar.fina.BaaYaaFina$yehThreedotsbelow-ar.fina.BaaYaaFina#yehFarsiTwoabove-ar.fina.BaaYaaFina)yehFarsiThreedotsabove-ar.fina.BaaYaaFina$yehFarsiVinverted-ar.fina.BaaYaaFina'yehFarsiTwodotsabove-ar.fina.BaaYaaFinae-ar.fina.BaaYaaFinaalefMaksura-ar.fina.BaaYaaFina%yehFarsiThreeabove-ar.fina.BaaYaaFinayehTail-ar.fina.BaaYaaFinayehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFinayehKashmiri-ar.fina.BaaYaaFinayeh-ar.fina.BaaYaaFinayehVabove-ar.fina.BaaYaaFina'yehFarsiFourbelow-ar.init.BaaSenAltInitbeheh-ar.init.BaaSenAltInit(yehFarsiThreeabove-ar.init.BaaSenAltInitnoonRing-ar.init.BaaSenAltInit1behThreedotshorizontalbelow-ar.init.BaaSenAltInitbehVabove-ar.init.BaaSenAltInit"noonTahabove-ar.init.BaaSenAltInityehVabove-ar.init.BaaSenAltInit&yehFarsiTwoabove-ar.init.BaaSenAltInit(noonThreedotsabove-ar.init.BaaSenAltInit#yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInit!yehKashmiri-ar.init.BaaSenAltInityeh-ar.init.BaaSenAltInitrnoon-ar.init.BaaSenAltInitteheh-ar.init.BaaSenAltInit'behVinvertedbelow-ar.init.BaaSenAltInit&tehThreedotsdown-ar.init.BaaSenAltInitpeh-ar.init.BaaSenAltInitbeeh-ar.init.BaaSenAltInitbeh-ar.init.BaaSenAltInittteheh-ar.init.BaaSenAltInit)behThreedotsupabove-ar.init.BaaSenAltInitnoon-ar.init.BaaSenAltInit)tehThreedotsupbelow-ar.init.BaaSenAltInit)behThreedotsupbelow-ar.init.BaaSenAltInitteh-ar.init.BaaSenAltInit"highhamzaYeh-ar.init.BaaSenAltInit'yehFarsiVinverted-ar.init.BaaSenAltInittheh-ar.init.BaaSenAltInittteh-ar.init.BaaSenAltInit"noonDotbelow-ar.init.BaaSenAltInit noonVabove-ar.init.BaaSenAltInit!alefMaksura-ar.init.BaaSenAltInittehRing-ar.init.BaaSenAltInit-behTwodotsbelowDotabove-ar.init.BaaSenAltInit'yehThreedotsbelow-ar.init.BaaSenAltInite-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInityehFarsi-ar.init.BaaSenAltInit&noonTwodotsbelow-ar.init.BaaSenAltInit#sheenDotbelow-ar.medi.BaaSenAltInit.seenTwodotsverticalabove-ar.medi.BaaSenAltInitseen-ar.medi.BaaSenAltInit(seenVinvertedabove-ar.medi.BaaSenAltInit#seenFourabove-ar.medi.BaaSenAltInitsheen-ar.medi.BaaSenAltInit3seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit'seenFourdotsabove-ar.medi.BaaSenAltInit*seenDotbelowDotabove-ar.medi.BaaSenAltInit(seenThreedotsbelow-ar.medi.BaaSenAltInit)sheenThreedotsbelow-ar.medi.BaaSenAltInitrreh-ar.fina.PostToothrehv-ar.fina.PostToothrehRing-ar.fina.PostToothrehDotbelow-ar.fina.PostToothrehVbelow-ar.fina.PostTooth%rehDotbelowdotabove-ar.fina.PostToothrehTwodots-ar.fina.PostToothjeh-ar.fina.PostToothrehFourdots-ar.fina.PostToothrehStroke-ar.fina.PostTooth#rehVinvertedabove-ar.fina.PostToothzain-ar.fina.PostTooth3rehTwodotshorizontalaboveTahabove-ar.fina.PostToothreh-ar.fina.PostTooth)rehTwodotsverticalabove-ar.fina.PostToothrehHamzaabove-ar.fina.PostTooth#yehFarsiFourbelow-ar.fina.PostTooth#yehThreedotsbelow-ar.fina.PostTooth"yehFarsiTwoabove-ar.fina.PostTooth(yehFarsiThreedotsabove-ar.fina.PostTooth#yehFarsiVinverted-ar.fina.PostTooth&yehFarsiTwodotsabove-ar.fina.PostToothe-ar.fina.PostToothalefMaksura-ar.fina.PostTooth$yehFarsiThreeabove-ar.fina.PostToothyehTail-ar.fina.PostToothyehFarsi-ar.fina.PostToothyehHamzaabove-ar.fina.PostToothyehKashmiri-ar.fina.PostToothyeh-ar.fina.PostToothyehVabove-ar.fina.PostTooth"yehFarsiFourbelow-ar.init.AboveHaabeheh-ar.init.AboveHaa#yehFarsiThreeabove-ar.init.AboveHaanoonRing-ar.init.AboveHaa,behThreedotshorizontalbelow-ar.init.AboveHaabehVabove-ar.init.AboveHaanoonTahabove-ar.init.AboveHaayehVabove-ar.init.AboveHaa!yehFarsiTwoabove-ar.init.AboveHaa#noonThreedotsabove-ar.init.AboveHaayehHamzaabove-ar.init.AboveHaabehDotless-ar.init.AboveHaayehKashmiri-ar.init.AboveHaayeh-ar.init.AboveHaarnoon-ar.init.AboveHaateheh-ar.init.AboveHaa"behVinvertedbelow-ar.init.AboveHaa!tehThreedotsdown-ar.init.AboveHaapeh-ar.init.AboveHaabeeh-ar.init.AboveHaabeh-ar.init.AboveHaatteheh-ar.init.AboveHaa$behThreedotsupabove-ar.init.AboveHaanoon-ar.init.AboveHaa$tehThreedotsupbelow-ar.init.AboveHaa$behThreedotsupbelow-ar.init.AboveHaateh-ar.init.AboveHaahighhamzaYeh-ar.init.AboveHaa"yehFarsiVinverted-ar.init.AboveHaatheh-ar.init.AboveHaatteh-ar.init.AboveHaanoonDotbelow-ar.init.AboveHaanoonVabove-ar.init.AboveHaaalefMaksura-ar.init.AboveHaatehRing-ar.init.AboveHaa(behTwodotsbelowDotabove-ar.init.AboveHaa"yehThreedotsbelow-ar.init.AboveHaae-ar.init.AboveHaanoonghunna-ar.init.AboveHaayehFarsi-ar.init.AboveHaa!noonTwodotsbelow-ar.init.AboveHaa$yehFarsiFourbelow-ar.init.BaaHaaInitbeheh-ar.init.BaaHaaInit%yehFarsiThreeabove-ar.init.BaaHaaInitnoonRing-ar.init.BaaHaaInit.behThreedotshorizontalbelow-ar.init.BaaHaaInitbehVabove-ar.init.BaaHaaInitnoonTahabove-ar.init.BaaHaaInityehVabove-ar.init.BaaHaaInit#yehFarsiTwoabove-ar.init.BaaHaaInit%noonThreedotsabove-ar.init.BaaHaaInit yehHamzaabove-ar.init.BaaHaaInitbehDotless-ar.init.BaaHaaInityehKashmiri-ar.init.BaaHaaInityeh-ar.init.BaaHaaInitrnoon-ar.init.BaaHaaInitteheh-ar.init.BaaHaaInit$behVinvertedbelow-ar.init.BaaHaaInit#tehThreedotsdown-ar.init.BaaHaaInitpeh-ar.init.BaaHaaInitbeeh-ar.init.BaaHaaInitbeh-ar.init.BaaHaaInittteheh-ar.init.BaaHaaInit&behThreedotsupabove-ar.init.BaaHaaInitnoon-ar.init.BaaHaaInit&tehThreedotsupbelow-ar.init.BaaHaaInit&behThreedotsupbelow-ar.init.BaaHaaInitteh-ar.init.BaaHaaInithighhamzaYeh-ar.init.BaaHaaInit$yehFarsiVinverted-ar.init.BaaHaaInittheh-ar.init.BaaHaaInittteh-ar.init.BaaHaaInitnoonDotbelow-ar.init.BaaHaaInitnoonVabove-ar.init.BaaHaaInitalefMaksura-ar.init.BaaHaaInittehRing-ar.init.BaaHaaInit*behTwodotsbelowDotabove-ar.init.BaaHaaInit$yehThreedotsbelow-ar.init.BaaHaaInite-ar.init.BaaHaaInitnoonghunna-ar.init.BaaHaaInityehFarsi-ar.init.BaaHaaInit#noonTwodotsbelow-ar.init.BaaHaaInit'yehFarsiFourbelow-ar.init.BaaHaaMemInitbeheh-ar.init.BaaHaaMemInit(yehFarsiThreeabove-ar.init.BaaHaaMemInitnoonRing-ar.init.BaaHaaMemInit1behThreedotshorizontalbelow-ar.init.BaaHaaMemInitbehVabove-ar.init.BaaHaaMemInit"noonTahabove-ar.init.BaaHaaMemInityehVabove-ar.init.BaaHaaMemInit&yehFarsiTwoabove-ar.init.BaaHaaMemInit(noonThreedotsabove-ar.init.BaaHaaMemInit#yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInit!yehKashmiri-ar.init.BaaHaaMemInityeh-ar.init.BaaHaaMemInitrnoon-ar.init.BaaHaaMemInitteheh-ar.init.BaaHaaMemInit'behVinvertedbelow-ar.init.BaaHaaMemInit&tehThreedotsdown-ar.init.BaaHaaMemInitpeh-ar.init.BaaHaaMemInitbeeh-ar.init.BaaHaaMemInitbeh-ar.init.BaaHaaMemInittteheh-ar.init.BaaHaaMemInit)behThreedotsupabove-ar.init.BaaHaaMemInitnoon-ar.init.BaaHaaMemInit)tehThreedotsupbelow-ar.init.BaaHaaMemInit)behThreedotsupbelow-ar.init.BaaHaaMemInitteh-ar.init.BaaHaaMemInit"highhamzaYeh-ar.init.BaaHaaMemInit'yehFarsiVinverted-ar.init.BaaHaaMemInittheh-ar.init.BaaHaaMemInittteh-ar.init.BaaHaaMemInit"noonDotbelow-ar.init.BaaHaaMemInit noonVabove-ar.init.BaaHaaMemInit!alefMaksura-ar.init.BaaHaaMemInittehRing-ar.init.BaaHaaMemInit-behTwodotsbelowDotabove-ar.init.BaaHaaMemInit'yehThreedotsbelow-ar.init.BaaHaaMemInite-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInityehFarsi-ar.init.BaaHaaMemInit&noonTwodotsbelow-ar.init.BaaHaaMemInitkhah-ar.medi.BaaHaaMemInithah-ar.medi.BaaHaaMemInit#hahHamzaabove-ar.medi.BaaHaaMemInittcheheh-ar.medi.BaaHaaMemInit'hahThreedotsabove-ar.medi.BaaHaaMemInitjeem-ar.medi.BaaHaaMemInit-hahTwodotsverticalabove-ar.medi.BaaHaaMemInit/hahTwodotshorizontalabove-ar.medi.BaaHaaMemInitdyeh-ar.medi.BaaHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit!hahTahbelow-ar.medi.BaaHaaMemInitnyeh-ar.medi.BaaHaaMemInit#tchehDotabove-ar.medi.BaaHaaMemInit"hahFourbelow-ar.medi.BaaHaaMemInit)hahThreedotsupbelow-ar.medi.BaaHaaMemInit!hahTahabove-ar.medi.BaaHaaMemInittcheh-ar.medi.BaaHaaMemInitkhah-ar.fina.AboveHaaIsolhah-ar.fina.AboveHaaIsol"hahHamzaabove-ar.fina.AboveHaaIsoltcheheh-ar.fina.AboveHaaIsol&hahThreedotsabove-ar.fina.AboveHaaIsoljeem-ar.fina.AboveHaaIsol,hahTwodotsverticalabove-ar.fina.AboveHaaIsol.hahTwodotshorizontalabove-ar.fina.AboveHaaIsoldyeh-ar.fina.AboveHaaIsol1hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol hahTahbelow-ar.fina.AboveHaaIsolnyeh-ar.fina.AboveHaaIsol"tchehDotabove-ar.fina.AboveHaaIsol!hahFourbelow-ar.fina.AboveHaaIsol(hahThreedotsupbelow-ar.fina.AboveHaaIsol hahTahabove-ar.fina.AboveHaaIsoltcheh-ar.fina.AboveHaaIsollamVabove-ar.init.LamHaaHaaInit'lamThreedotsabove-ar.init.LamHaaHaaInitlam-ar.init.LamHaaHaaInit'lamThreedotsbelow-ar.init.LamHaaHaaInit!lamDotabove-ar.init.LamHaaHaaInitlamBar-ar.init.LamHaaHaaInitghainDotbelow-ar.init.Finjanighain-ar.init.Finjani%ainThreedotsdownabove-ar.init.Finjani)ainTwodotshorizontalabove-ar.init.Finjani'ainTwodotsverticalabove-ar.init.FinjaniainThreedots-ar.init.Finjaniain-ar.init.Finjanikhah-ar.init.Finjanihah-ar.init.FinjanihahHamzaabove-ar.init.Finjanitcheheh-ar.init.Finjani!hahThreedotsabove-ar.init.Finjanijeem-ar.init.Finjani'hahTwodotsverticalabove-ar.init.Finjani)hahTwodotshorizontalabove-ar.init.Finjanidyeh-ar.init.Finjani,hahTahTwodotshorizontalabove-ar.init.FinjanihahTahbelow-ar.init.Finjaninyeh-ar.init.FinjanitchehDotabove-ar.init.FinjanihahFourbelow-ar.init.Finjani#hahThreedotsupbelow-ar.init.FinjanihahTahabove-ar.init.Finjanitcheh-ar.init.Finjanikhah-ar.medi.Finjanihah-ar.medi.FinjanihahHamzaabove-ar.medi.Finjanitcheheh-ar.medi.Finjani!hahThreedotsabove-ar.medi.Finjanijeem-ar.medi.Finjani'hahTwodotsverticalabove-ar.medi.Finjani)hahTwodotshorizontalabove-ar.medi.Finjanidyeh-ar.medi.Finjani,hahTahTwodotshorizontalabove-ar.medi.FinjanihahTahbelow-ar.medi.Finjaninyeh-ar.medi.FinjanitchehDotabove-ar.medi.FinjanihahFourbelow-ar.medi.Finjani#hahThreedotsupbelow-ar.medi.FinjanihahTahabove-ar.medi.Finjanitcheh-ar.medi.FinjanisheenDotbelow-ar.init.PreYaa'seenTwodotsverticalabove-ar.init.PreYaaseen-ar.init.PreYaa!seenVinvertedabove-ar.init.PreYaaseenFourabove-ar.init.PreYaasheen-ar.init.PreYaa,seenTahTwodotshorizontalabove-ar.init.PreYaa seenFourdotsabove-ar.init.PreYaa#seenDotbelowDotabove-ar.init.PreYaa!seenThreedotsbelow-ar.init.PreYaa"sheenThreedotsbelow-ar.init.PreYaasheenDotbelow-ar.medi.PreYaa'seenTwodotsverticalabove-ar.medi.PreYaaseen-ar.medi.PreYaa!seenVinvertedabove-ar.medi.PreYaaseenFourabove-ar.medi.PreYaasheen-ar.medi.PreYaa,seenTahTwodotshorizontalabove-ar.medi.PreYaa seenFourdotsabove-ar.medi.PreYaa#seenDotbelowDotabove-ar.medi.PreYaa!seenThreedotsbelow-ar.medi.PreYaa"sheenThreedotsbelow-ar.medi.PreYaasadTwodotsbelow-ar.init.PreYaadadDotbelow-ar.init.PreYaadad-ar.init.PreYaasadThreedots-ar.init.PreYaasad-ar.init.PreYaasadTwodotsbelow-ar.medi.PreYaadadDotbelow-ar.medi.PreYaadad-ar.medi.PreYaasadThreedots-ar.medi.PreYaasad-ar.medi.PreYaayehFarsiFourbelow-ar.init.Highbeheh-ar.init.HighyehFarsiThreeabove-ar.init.HighnoonRing-ar.init.High(behThreedotshorizontalbelow-ar.init.HighbehVabove-ar.init.HighnoonTahabove-ar.init.HighyehVabove-ar.init.HighyehFarsiTwoabove-ar.init.HighnoonThreedotsabove-ar.init.HighyehHamzaabove-ar.init.HighbehDotless-ar.init.HighyehKashmiri-ar.init.Highyeh-ar.init.Highrnoon-ar.init.Highteheh-ar.init.HighbehVinvertedbelow-ar.init.HightehThreedotsdown-ar.init.Highpeh-ar.init.Highbeeh-ar.init.Highbeh-ar.init.Hightteheh-ar.init.High behThreedotsupabove-ar.init.Highnoon-ar.init.High tehThreedotsupbelow-ar.init.High behThreedotsupbelow-ar.init.Highteh-ar.init.HighhighhamzaYeh-ar.init.HighyehFarsiVinverted-ar.init.Hightheh-ar.init.Hightteh-ar.init.HighnoonDotbelow-ar.init.HighnoonVabove-ar.init.HighalefMaksura-ar.init.HightehRing-ar.init.High$behTwodotsbelowDotabove-ar.init.HighyehThreedotsbelow-ar.init.Highe-ar.init.Highnoonghunna-ar.init.HighyehFarsi-ar.init.HighnoonTwodotsbelow-ar.init.HighyehFarsiFourbelow-ar.medi.Highbeheh-ar.medi.HighyehFarsiThreeabove-ar.medi.HighnoonRing-ar.medi.High(behThreedotshorizontalbelow-ar.medi.HighbehVabove-ar.medi.HighnoonTahabove-ar.medi.HighyehVabove-ar.medi.HighyehFarsiTwoabove-ar.medi.HighnoonThreedotsabove-ar.medi.HighyehHamzaabove-ar.medi.HighbehDotless-ar.medi.HighyehKashmiri-ar.medi.Highyeh-ar.medi.Highrnoon-ar.medi.Highteheh-ar.medi.HighbehVinvertedbelow-ar.medi.HightehThreedotsdown-ar.medi.Highpeh-ar.medi.Highbeeh-ar.medi.Highbeh-ar.medi.Hightteheh-ar.medi.High behThreedotsupabove-ar.medi.Highnoon-ar.medi.High tehThreedotsupbelow-ar.medi.High behThreedotsupbelow-ar.medi.Highteh-ar.medi.HighyehFarsiVinverted-ar.medi.Hightheh-ar.medi.Hightteh-ar.medi.HighnoonDotbelow-ar.medi.HighnoonVabove-ar.medi.HighalefMaksura-ar.medi.HightehRing-ar.medi.High$behTwodotsbelowDotabove-ar.medi.HighyehThreedotsbelow-ar.medi.Highe-ar.medi.Highnoonghunna-ar.medi.HighyehFarsi-ar.medi.HighnoonTwodotsbelow-ar.medi.HighsheenDotbelow-ar.fina.BaaSen'seenTwodotsverticalabove-ar.fina.BaaSenseen-ar.fina.BaaSen!seenVinvertedabove-ar.fina.BaaSenseenFourabove-ar.fina.BaaSensheen-ar.fina.BaaSen,seenTahTwodotshorizontalabove-ar.fina.BaaSen seenFourdotsabove-ar.fina.BaaSen#seenDotbelowDotabove-ar.fina.BaaSen!seenThreedotsbelow-ar.fina.BaaSen"sheenThreedotsbelow-ar.fina.BaaSenmeem-ar.fina.PostToothyehFarsiFourbelow-ar.init.Widebeheh-ar.init.WideyehFarsiThreeabove-ar.init.WidenoonRing-ar.init.Wide(behThreedotshorizontalbelow-ar.init.WidebehVabove-ar.init.WidenoonTahabove-ar.init.WideyehVabove-ar.init.WideyehFarsiTwoabove-ar.init.WidenoonThreedotsabove-ar.init.WideyehHamzaabove-ar.init.WidebehDotless-ar.init.WideyehKashmiri-ar.init.Wideyeh-ar.init.Widernoon-ar.init.Wideteheh-ar.init.WidebehVinvertedbelow-ar.init.WidetehThreedotsdown-ar.init.Widepeh-ar.init.Widebeeh-ar.init.Widebeh-ar.init.Widetteheh-ar.init.Wide behThreedotsupabove-ar.init.Widenoon-ar.init.Wide tehThreedotsupbelow-ar.init.Wide behThreedotsupbelow-ar.init.Wideteh-ar.init.WidehighhamzaYeh-ar.init.WideyehFarsiVinverted-ar.init.Widetheh-ar.init.Widetteh-ar.init.WidenoonDotbelow-ar.init.WidenoonVabove-ar.init.WidealefMaksura-ar.init.WidetehRing-ar.init.Wide$behTwodotsbelowDotabove-ar.init.WideyehThreedotsbelow-ar.init.Widee-ar.init.Widenoonghunna-ar.init.WideyehFarsi-ar.init.WidenoonTwodotsbelow-ar.init.Widekhah-ar.medi.HaaHaaInithah-ar.medi.HaaHaaInit hahHamzaabove-ar.medi.HaaHaaInittcheheh-ar.medi.HaaHaaInit$hahThreedotsabove-ar.medi.HaaHaaInitjeem-ar.medi.HaaHaaInit*hahTwodotsverticalabove-ar.medi.HaaHaaInit,hahTwodotshorizontalabove-ar.medi.HaaHaaInitdyeh-ar.medi.HaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.HaaHaaInithahTahbelow-ar.medi.HaaHaaInitnyeh-ar.medi.HaaHaaInit tchehDotabove-ar.medi.HaaHaaInithahFourbelow-ar.medi.HaaHaaInit&hahThreedotsupbelow-ar.medi.HaaHaaInithahTahabove-ar.medi.HaaHaaInittcheh-ar.medi.HaaHaaInitkhah-ar.medi.AynHaaInithah-ar.medi.AynHaaInit hahHamzaabove-ar.medi.AynHaaInittcheheh-ar.medi.AynHaaInit$hahThreedotsabove-ar.medi.AynHaaInitjeem-ar.medi.AynHaaInit*hahTwodotsverticalabove-ar.medi.AynHaaInit,hahTwodotshorizontalabove-ar.medi.AynHaaInitdyeh-ar.medi.AynHaaInit/hahTahTwodotshorizontalabove-ar.medi.AynHaaInithahTahbelow-ar.medi.AynHaaInitnyeh-ar.medi.AynHaaInit tchehDotabove-ar.medi.AynHaaInithahFourbelow-ar.medi.AynHaaInit&hahThreedotsupbelow-ar.medi.AynHaaInithahTahabove-ar.medi.AynHaaInittcheh-ar.medi.AynHaaInitmeem-ar.medi.LamMemInitTatweelheh-ar.init.AboveHaahehgoal-ar.init.AboveHaakhah-ar.init.AboveHaahah-ar.init.AboveHaahahHamzaabove-ar.init.AboveHaatcheheh-ar.init.AboveHaa"hahThreedotsabove-ar.init.AboveHaajeem-ar.init.AboveHaa(hahTwodotsverticalabove-ar.init.AboveHaa*hahTwodotshorizontalabove-ar.init.AboveHaadyeh-ar.init.AboveHaa-hahTahTwodotshorizontalabove-ar.init.AboveHaahahTahbelow-ar.init.AboveHaanyeh-ar.init.AboveHaatchehDotabove-ar.init.AboveHaahahFourbelow-ar.init.AboveHaa$hahThreedotsupbelow-ar.init.AboveHaahahTahabove-ar.init.AboveHaatcheh-ar.init.AboveHaaghainDotbelow-ar.init.AboveHaaghain-ar.init.AboveHaa&ainThreedotsdownabove-ar.init.AboveHaa*ainTwodotshorizontalabove-ar.init.AboveHaa(ainTwodotsverticalabove-ar.init.AboveHaaainThreedots-ar.init.AboveHaaain-ar.init.AboveHaakhah-ar.fina.AboveHaaIsol2hah-ar.fina.AboveHaaIsol2#hahHamzaabove-ar.fina.AboveHaaIsol2tcheheh-ar.fina.AboveHaaIsol2'hahThreedotsabove-ar.fina.AboveHaaIsol2jeem-ar.fina.AboveHaaIsol2-hahTwodotsverticalabove-ar.fina.AboveHaaIsol2/hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2dyeh-ar.fina.AboveHaaIsol22hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2!hahTahbelow-ar.fina.AboveHaaIsol2nyeh-ar.fina.AboveHaaIsol2#tchehDotabove-ar.fina.AboveHaaIsol2"hahFourbelow-ar.fina.AboveHaaIsol2)hahThreedotsupbelow-ar.fina.AboveHaaIsol2!hahTahabove-ar.fina.AboveHaaIsol2tcheh-ar.fina.AboveHaaIsol2meem-ar.init.AboveHaa,kehehTwodotshorizontalabove-ar.init.AboveHaa$kehehThreedotsbelow-ar.init.AboveHaa*kafTwodotshorizontalabove-ar.init.AboveHaa&kehehThreedotsupbelow-ar.init.AboveHaakaf-ar.init.AboveHaagafRing-ar.init.AboveHaagueh-ar.init.AboveHaa gafTwodotsbelow-ar.init.AboveHaakafRing-ar.init.AboveHaakafDotabove-ar.init.AboveHaang-ar.init.AboveHaa"kafThreedotsbelow-ar.init.AboveHaagaf-ar.init.AboveHaakeheh-ar.init.AboveHaagafThreedots-ar.init.AboveHaa$kehehThreedotsabove-ar.init.AboveHaakehehDotabove-ar.init.AboveHaangoeh-ar.init.AboveHaa*kehehTwodotshorizontalabove-ar.init.KafLam"kehehThreedotsbelow-ar.init.KafLam(kafTwodotshorizontalabove-ar.init.KafLam$kehehThreedotsupbelow-ar.init.KafLamkaf-ar.init.KafLamgafRing-ar.init.KafLamgueh-ar.init.KafLamgafTwodotsbelow-ar.init.KafLamkafRing-ar.init.KafLamkafDotabove-ar.init.KafLamng-ar.init.KafLam kafThreedotsbelow-ar.init.KafLamgaf-ar.init.KafLamkeheh-ar.init.KafLamgafThreedots-ar.init.KafLam"kehehThreedotsabove-ar.init.KafLamkehehDotabove-ar.init.KafLamngoeh-ar.init.KafLam.kehehTwodotshorizontalabove-ar.fina.KafKafFina&kehehThreedotsbelow-ar.fina.KafKafFina,kafTwodotshorizontalabove-ar.fina.KafKafFina(kehehThreedotsupbelow-ar.fina.KafKafFinakaf-ar.fina.KafKafFinagafRing-ar.fina.KafKafFinagueh-ar.fina.KafKafFina"gafTwodotsbelow-ar.fina.KafKafFinakafRing-ar.fina.KafKafFinakafDotabove-ar.fina.KafKafFinang-ar.fina.KafKafFina$kafThreedotsbelow-ar.fina.KafKafFinagaf-ar.fina.KafKafFinakeheh-ar.fina.KafKafFinagafThreedots-ar.fina.KafKafFina&kehehThreedotsabove-ar.fina.KafKafFina kehehDotabove-ar.fina.KafKafFinangoeh-ar.fina.KafKafFinalamVabove-ar.medi.KafLam lamThreedotsabove-ar.medi.KafLamlam-ar.medi.KafLam lamThreedotsbelow-ar.medi.KafLamlamDotabove-ar.medi.KafLamlamBar-ar.medi.KafLamlamVabove-ar.medi.KafLamMemMedi'lamThreedotsabove-ar.medi.KafLamMemMedilam-ar.medi.KafLamMemMedi'lamThreedotsbelow-ar.medi.KafLamMemMedi!lamDotabove-ar.medi.KafLamMemMedilamBar-ar.medi.KafLamMemMedi*kehehTwodotshorizontalabove-ar.medi.KafLam"kehehThreedotsbelow-ar.medi.KafLam(kafTwodotshorizontalabove-ar.medi.KafLam$kehehThreedotsupbelow-ar.medi.KafLamkaf-ar.medi.KafLamgafRing-ar.medi.KafLamgueh-ar.medi.KafLamgafTwodotsbelow-ar.medi.KafLamkafRing-ar.medi.KafLamkafDotabove-ar.medi.KafLamng-ar.medi.KafLam kafThreedotsbelow-ar.medi.KafLamgaf-ar.medi.KafLamkeheh-ar.medi.KafLamgafThreedots-ar.medi.KafLam"kehehThreedotsabove-ar.medi.KafLamkehehDotabove-ar.medi.KafLamngoeh-ar.medi.KafLamlamVabove-ar.medi.KafLamHehIsol'lamThreedotsabove-ar.medi.KafLamHehIsollam-ar.medi.KafLamHehIsol'lamThreedotsbelow-ar.medi.KafLamHehIsol!lamDotabove-ar.medi.KafLamHehIsollamBar-ar.medi.KafLamHehIsollamVabove-ar.medi.KafLamYaa#lamThreedotsabove-ar.medi.KafLamYaalam-ar.medi.KafLamYaa#lamThreedotsbelow-ar.medi.KafLamYaalamDotabove-ar.medi.KafLamYaalamBar-ar.medi.KafLamYaalamVabove-ar.medi.KafLamAlf#lamThreedotsabove-ar.medi.KafLamAlflam-ar.medi.KafLamAlf#lamThreedotsbelow-ar.medi.KafLamAlflamDotabove-ar.medi.KafLamAlflamBar-ar.medi.KafLamAlflamVabove-ar.fina.KafLam lamThreedotsabove-ar.fina.KafLamlam-ar.fina.KafLam lamThreedotsbelow-ar.fina.KafLamlamDotabove-ar.fina.KafLamlamBar-ar.fina.KafLamalefHamzabelow-ar.fina.KafAlfalef-ar.fina.KafAlfalefThreeabove-ar.fina.KafAlfalefTwoabove-ar.fina.KafAlfalefHamzaabove-ar.fina.KafAlfalefMadda-ar.fina.KafAlf!alefWavyhamzaabove-ar.fina.KafAlf!alefWavyhamzabelow-ar.fina.KafAlfalefWasla-ar.fina.KafAlf-kehehTwodotshorizontalabove-ar.init.KafMemAlf%kehehThreedotsbelow-ar.init.KafMemAlf+kafTwodotshorizontalabove-ar.init.KafMemAlf'kehehThreedotsupbelow-ar.init.KafMemAlfkaf-ar.init.KafMemAlfgafRing-ar.init.KafMemAlfgueh-ar.init.KafMemAlf!gafTwodotsbelow-ar.init.KafMemAlfkafRing-ar.init.KafMemAlfkafDotabove-ar.init.KafMemAlfng-ar.init.KafMemAlf#kafThreedotsbelow-ar.init.KafMemAlfgaf-ar.init.KafMemAlfkeheh-ar.init.KafMemAlfgafThreedots-ar.init.KafMemAlf%kehehThreedotsabove-ar.init.KafMemAlfkehehDotabove-ar.init.KafMemAlfngoeh-ar.init.KafMemAlf-kehehTwodotshorizontalabove-ar.medi.KafMemAlf%kehehThreedotsbelow-ar.medi.KafMemAlf+kafTwodotshorizontalabove-ar.medi.KafMemAlf'kehehThreedotsupbelow-ar.medi.KafMemAlfkaf-ar.medi.KafMemAlfgafRing-ar.medi.KafMemAlfgueh-ar.medi.KafMemAlf!gafTwodotsbelow-ar.medi.KafMemAlfkafRing-ar.medi.KafMemAlfkafDotabove-ar.medi.KafMemAlfng-ar.medi.KafMemAlf#kafThreedotsbelow-ar.medi.KafMemAlfgaf-ar.medi.KafMemAlfkeheh-ar.medi.KafMemAlfgafThreedots-ar.medi.KafMemAlf%kehehThreedotsabove-ar.medi.KafMemAlfkehehDotabove-ar.medi.KafMemAlfngoeh-ar.medi.KafMemAlfmeem-ar.medi.KafMemAlflamVabove-ar.medi.KafMemLam#lamThreedotsabove-ar.medi.KafMemLamlam-ar.medi.KafMemLam#lamThreedotsbelow-ar.medi.KafMemLamlamDotabove-ar.medi.KafMemLamlamBar-ar.medi.KafMemLamlamVabove-ar.fina.KafMemLam#lamThreedotsabove-ar.fina.KafMemLamlam-ar.fina.KafMemLam#lamThreedotsbelow-ar.fina.KafMemLamlamDotabove-ar.fina.KafMemLamlamBar-ar.fina.KafMemLam alefHamzabelow-ar.fina.KafMemAlfalef-ar.fina.KafMemAlf alefThreeabove-ar.fina.KafMemAlfalefTwoabove-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlfalefMadda-ar.fina.KafMemAlf$alefWavyhamzaabove-ar.fina.KafMemAlf$alefWavyhamzabelow-ar.fina.KafMemAlfalefWasla-ar.fina.KafMemAlf*kehehTwodotshorizontalabove-ar.init.KafHeh"kehehThreedotsbelow-ar.init.KafHeh(kafTwodotshorizontalabove-ar.init.KafHeh$kehehThreedotsupbelow-ar.init.KafHehkaf-ar.init.KafHehgafRing-ar.init.KafHehgueh-ar.init.KafHehgafTwodotsbelow-ar.init.KafHehkafRing-ar.init.KafHehkafDotabove-ar.init.KafHehng-ar.init.KafHeh kafThreedotsbelow-ar.init.KafHehgaf-ar.init.KafHehkeheh-ar.init.KafHehgafThreedots-ar.init.KafHeh"kehehThreedotsabove-ar.init.KafHehkehehDotabove-ar.init.KafHehngoeh-ar.init.KafHeh*kehehTwodotshorizontalabove-ar.medi.KafHeh"kehehThreedotsbelow-ar.medi.KafHeh(kafTwodotshorizontalabove-ar.medi.KafHeh$kehehThreedotsupbelow-ar.medi.KafHehkaf-ar.medi.KafHehgafRing-ar.medi.KafHehgueh-ar.medi.KafHehgafTwodotsbelow-ar.medi.KafHehkafRing-ar.medi.KafHehkafDotabove-ar.medi.KafHehng-ar.medi.KafHeh kafThreedotsbelow-ar.medi.KafHehgaf-ar.medi.KafHehkeheh-ar.medi.KafHehgafThreedots-ar.medi.KafHeh"kehehThreedotsabove-ar.medi.KafHehkehehDotabove-ar.medi.KafHehngoeh-ar.medi.KafHehheh-ar.fina.KafHehhehgoal-ar.fina.KafHehtehMarbutagoal-ar.fina.KafHehae-ar.fina.KafHehtehMarbuta-ar.fina.KafHehdalFourdots-ar.fina.KafDal dalVinvertedabove-ar.fina.KafDaldalRing-ar.fina.KafDalddal-ar.fina.KafDal dalVinvertedbelow-ar.fina.KafDalthal-ar.fina.KafDaldal-ar.fina.KafDal)dalTwodotsverticalbelowTah-ar.fina.KafDaldahal-ar.fina.KafDaldalDotbelowTah-ar.fina.KafDaldalDotbelow-ar.fina.KafDaldalThreedotsdown-ar.fina.KafDaldul-ar.fina.KafDalddahal-ar.fina.KafDallamVabove-ar.init.LamHeh lamThreedotsabove-ar.init.LamHehlam-ar.init.LamHeh lamThreedotsbelow-ar.init.LamHehlamDotabove-ar.init.LamHehlamBar-ar.init.LamHehlamVabove-ar.medi.LamHeh lamThreedotsabove-ar.medi.LamHehlam-ar.medi.LamHeh lamThreedotsbelow-ar.medi.LamHehlamDotabove-ar.medi.LamHehlamBar-ar.medi.LamHehheh-ar.fina.LamHehhehgoal-ar.fina.LamHehtehMarbutagoal-ar.fina.LamHehae-ar.fina.LamHehtehMarbuta-ar.fina.LamHehdalFourdots-ar.fina.LamDal dalVinvertedabove-ar.fina.LamDaldalRing-ar.fina.LamDalddal-ar.fina.LamDal dalVinvertedbelow-ar.fina.LamDalthal-ar.fina.LamDaldal-ar.fina.LamDal)dalTwodotsverticalbelowTah-ar.fina.LamDaldahal-ar.fina.LamDaldalDotbelowTah-ar.fina.LamDaldalDotbelow-ar.fina.LamDaldalThreedotsdown-ar.fina.LamDaldul-ar.fina.LamDalddahal-ar.fina.LamDal.kehehTwodotshorizontalabove-ar.medi.KafMemMedi&kehehThreedotsbelow-ar.medi.KafMemMedi,kafTwodotshorizontalabove-ar.medi.KafMemMedi(kehehThreedotsupbelow-ar.medi.KafMemMedikaf-ar.medi.KafMemMedigafRing-ar.medi.KafMemMedigueh-ar.medi.KafMemMedi"gafTwodotsbelow-ar.medi.KafMemMedikafRing-ar.medi.KafMemMedikafDotabove-ar.medi.KafMemMeding-ar.medi.KafMemMedi$kafThreedotsbelow-ar.medi.KafMemMedigaf-ar.medi.KafMemMedikeheh-ar.medi.KafMemMedigafThreedots-ar.medi.KafMemMedi&kehehThreedotsabove-ar.medi.KafMemMedi kehehDotabove-ar.medi.KafMemMedingoeh-ar.medi.KafMemMedi.kehehTwodotshorizontalabove-ar.init.KafMemInit&kehehThreedotsbelow-ar.init.KafMemInit,kafTwodotshorizontalabove-ar.init.KafMemInit(kehehThreedotsupbelow-ar.init.KafMemInitkaf-ar.init.KafMemInitgafRing-ar.init.KafMemInitgueh-ar.init.KafMemInit"gafTwodotsbelow-ar.init.KafMemInitkafRing-ar.init.KafMemInitkafDotabove-ar.init.KafMemInitng-ar.init.KafMemInit$kafThreedotsbelow-ar.init.KafMemInitgaf-ar.init.KafMemInitkeheh-ar.init.KafMemInitgafThreedots-ar.init.KafMemInit&kehehThreedotsabove-ar.init.KafMemInit kehehDotabove-ar.init.KafMemInitngoeh-ar.init.KafMemInit ghainDotbelow-ar.init.AynMemInitghain-ar.init.AynMemInit(ainThreedotsdownabove-ar.init.AynMemInit,ainTwodotshorizontalabove-ar.init.AynMemInit*ainTwodotsverticalabove-ar.init.AynMemInitainThreedots-ar.init.AynMemInitain-ar.init.AynMemInitqafDotless-ar.init.FaaMemInit&fehThreedotsupbelow-ar.init.FaaMemInit"fehTwodotsbelow-ar.init.FaaMemInitqaf-ar.init.FaaMemInitfeh-ar.init.FaaMemInit$qafThreedotsabove-ar.init.FaaMemInitfehDotless-ar.init.FaaMemInit#fehDotmovedbelow-ar.init.FaaMemInitfehDotbelow-ar.init.FaaMemInitveh-ar.init.FaaMemInit$fehThreedotsbelow-ar.init.FaaMemInitpeheh-ar.init.FaaMemInitqafDotabove-ar.init.FaaMemInitkhah-ar.init.HaaMemInithah-ar.init.HaaMemInit hahHamzaabove-ar.init.HaaMemInittcheheh-ar.init.HaaMemInit$hahThreedotsabove-ar.init.HaaMemInitjeem-ar.init.HaaMemInit*hahTwodotsverticalabove-ar.init.HaaMemInit,hahTwodotshorizontalabove-ar.init.HaaMemInitdyeh-ar.init.HaaMemInit/hahTahTwodotshorizontalabove-ar.init.HaaMemInithahTahbelow-ar.init.HaaMemInitnyeh-ar.init.HaaMemInit tchehDotabove-ar.init.HaaMemInithahFourbelow-ar.init.HaaMemInit&hahThreedotsupbelow-ar.init.HaaMemInithahTahabove-ar.init.HaaMemInittcheh-ar.init.HaaMemInitheh-ar.init.HehMemInithehgoal-ar.init.HehMemInitmeem-ar.medi.KafMemMedi sheenDotbelow-ar.init.SenMemInit+seenTwodotsverticalabove-ar.init.SenMemInitseen-ar.init.SenMemInit%seenVinvertedabove-ar.init.SenMemInit seenFourabove-ar.init.SenMemInitsheen-ar.init.SenMemInit0seenTahTwodotshorizontalabove-ar.init.SenMemInit$seenFourdotsabove-ar.init.SenMemInit'seenDotbelowDotabove-ar.init.SenMemInit%seenThreedotsbelow-ar.init.SenMemInit&sheenThreedotsbelow-ar.init.SenMemInit"sadTwodotsbelow-ar.init.SadMemInitdadDotbelow-ar.init.SadMemInitdad-ar.init.SadMemInitsadThreedots-ar.init.SadMemInitsad-ar.init.SadMemInitmeem-ar.init.MemMemInitmeem-ar.medi.SenMemInit.kehehTwodotshorizontalabove-ar.init.KafYaaIsol&kehehThreedotsbelow-ar.init.KafYaaIsol,kafTwodotshorizontalabove-ar.init.KafYaaIsol(kehehThreedotsupbelow-ar.init.KafYaaIsolkaf-ar.init.KafYaaIsolgafRing-ar.init.KafYaaIsolgueh-ar.init.KafYaaIsol"gafTwodotsbelow-ar.init.KafYaaIsolkafRing-ar.init.KafYaaIsolkafDotabove-ar.init.KafYaaIsolng-ar.init.KafYaaIsol$kafThreedotsbelow-ar.init.KafYaaIsolgaf-ar.init.KafYaaIsolkeheh-ar.init.KafYaaIsolgafThreedots-ar.init.KafYaaIsol&kehehThreedotsabove-ar.init.KafYaaIsol kehehDotabove-ar.init.KafYaaIsolngoeh-ar.init.KafYaaIsol$yehFarsiFourbelow-ar.init.BaaYaaIsolbeheh-ar.init.BaaYaaIsol%yehFarsiThreeabove-ar.init.BaaYaaIsolnoonRing-ar.init.BaaYaaIsol.behThreedotshorizontalbelow-ar.init.BaaYaaIsolbehVabove-ar.init.BaaYaaIsolnoonTahabove-ar.init.BaaYaaIsolyehVabove-ar.init.BaaYaaIsol#yehFarsiTwoabove-ar.init.BaaYaaIsol%noonThreedotsabove-ar.init.BaaYaaIsol yehHamzaabove-ar.init.BaaYaaIsolbehDotless-ar.init.BaaYaaIsolyehKashmiri-ar.init.BaaYaaIsolyeh-ar.init.BaaYaaIsolrnoon-ar.init.BaaYaaIsolteheh-ar.init.BaaYaaIsol$behVinvertedbelow-ar.init.BaaYaaIsol#tehThreedotsdown-ar.init.BaaYaaIsolpeh-ar.init.BaaYaaIsolbeeh-ar.init.BaaYaaIsolbeh-ar.init.BaaYaaIsoltteheh-ar.init.BaaYaaIsol&behThreedotsupabove-ar.init.BaaYaaIsolnoon-ar.init.BaaYaaIsol&tehThreedotsupbelow-ar.init.BaaYaaIsol&behThreedotsupbelow-ar.init.BaaYaaIsolteh-ar.init.BaaYaaIsolhighhamzaYeh-ar.init.BaaYaaIsol$yehFarsiVinverted-ar.init.BaaYaaIsoltheh-ar.init.BaaYaaIsoltteh-ar.init.BaaYaaIsolnoonDotbelow-ar.init.BaaYaaIsolnoonVabove-ar.init.BaaYaaIsolalefMaksura-ar.init.BaaYaaIsoltehRing-ar.init.BaaYaaIsol*behTwodotsbelowDotabove-ar.init.BaaYaaIsol$yehThreedotsbelow-ar.init.BaaYaaIsole-ar.init.BaaYaaIsolnoonghunna-ar.init.BaaYaaIsolyehFarsi-ar.init.BaaYaaIsol#noonTwodotsbelow-ar.init.BaaYaaIsolkhah-ar.init.HaaYaaIsolhah-ar.init.HaaYaaIsol hahHamzaabove-ar.init.HaaYaaIsoltcheheh-ar.init.HaaYaaIsol$hahThreedotsabove-ar.init.HaaYaaIsoljeem-ar.init.HaaYaaIsol*hahTwodotsverticalabove-ar.init.HaaYaaIsol,hahTwodotshorizontalabove-ar.init.HaaYaaIsoldyeh-ar.init.HaaYaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaYaaIsolhahTahbelow-ar.init.HaaYaaIsolnyeh-ar.init.HaaYaaIsol tchehDotabove-ar.init.HaaYaaIsolhahFourbelow-ar.init.HaaYaaIsol&hahThreedotsupbelow-ar.init.HaaYaaIsolhahTahabove-ar.init.HaaYaaIsoltcheh-ar.init.HaaYaaIsolmeemDotabove-ar.init.MemYaaIsolmeem-ar.init.MemYaaIsolmeemDotbelow-ar.init.MemYaaIsolqafDotless-ar.init.FaaYaaIsol&fehThreedotsupbelow-ar.init.FaaYaaIsol"fehTwodotsbelow-ar.init.FaaYaaIsolqaf-ar.init.FaaYaaIsolfeh-ar.init.FaaYaaIsol$qafThreedotsabove-ar.init.FaaYaaIsolfehDotless-ar.init.FaaYaaIsol#fehDotmovedbelow-ar.init.FaaYaaIsolfehDotbelow-ar.init.FaaYaaIsolveh-ar.init.FaaYaaIsol$fehThreedotsbelow-ar.init.FaaYaaIsolpeheh-ar.init.FaaYaaIsolqafDotabove-ar.init.FaaYaaIsol ghainDotbelow-ar.init.AynYaaIsolghain-ar.init.AynYaaIsol(ainThreedotsdownabove-ar.init.AynYaaIsol,ainTwodotshorizontalabove-ar.init.AynYaaIsol*ainTwodotsverticalabove-ar.init.AynYaaIsolainThreedots-ar.init.AynYaaIsolain-ar.init.AynYaaIsollamVabove-ar.init.LamYaaIsol$lamThreedotsabove-ar.init.LamYaaIsollam-ar.init.LamYaaIsol$lamThreedotsbelow-ar.init.LamYaaIsollamDotabove-ar.init.LamYaaIsollamBar-ar.init.LamYaaIsolheh-ar.init.HehYaaIsolhehgoal-ar.init.HehYaaIsol$yehFarsiFourbelow-ar.fina.KafYaaIsol$yehThreedotsbelow-ar.fina.KafYaaIsol#yehFarsiTwoabove-ar.fina.KafYaaIsol)yehFarsiThreedotsabove-ar.fina.KafYaaIsol$yehFarsiVinverted-ar.fina.KafYaaIsol'yehFarsiTwodotsabove-ar.fina.KafYaaIsole-ar.fina.KafYaaIsolalefMaksura-ar.fina.KafYaaIsol%yehFarsiThreeabove-ar.fina.KafYaaIsolyehTail-ar.fina.KafYaaIsolyehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsolyehKashmiri-ar.fina.KafYaaIsolyeh-ar.fina.KafYaaIsolyehVabove-ar.fina.KafYaaIsol.kehehTwodotshorizontalabove-ar.init.KafMemIsol&kehehThreedotsbelow-ar.init.KafMemIsol,kafTwodotshorizontalabove-ar.init.KafMemIsol(kehehThreedotsupbelow-ar.init.KafMemIsolkaf-ar.init.KafMemIsolgafRing-ar.init.KafMemIsolgueh-ar.init.KafMemIsol"gafTwodotsbelow-ar.init.KafMemIsolkafRing-ar.init.KafMemIsolkafDotabove-ar.init.KafMemIsolng-ar.init.KafMemIsol$kafThreedotsbelow-ar.init.KafMemIsolgaf-ar.init.KafMemIsolkeheh-ar.init.KafMemIsolgafThreedots-ar.init.KafMemIsol&kehehThreedotsabove-ar.init.KafMemIsol kehehDotabove-ar.init.KafMemIsolngoeh-ar.init.KafMemIsollamVabove-ar.init.LamMemIsol$lamThreedotsabove-ar.init.LamMemIsollam-ar.init.LamMemIsol$lamThreedotsbelow-ar.init.LamMemIsollamDotabove-ar.init.LamMemIsollamBar-ar.init.LamMemIsol$yehFarsiFourbelow-ar.init.BaaMemIsolbeheh-ar.init.BaaMemIsol%yehFarsiThreeabove-ar.init.BaaMemIsolnoonRing-ar.init.BaaMemIsol.behThreedotshorizontalbelow-ar.init.BaaMemIsolbehVabove-ar.init.BaaMemIsolnoonTahabove-ar.init.BaaMemIsolyehVabove-ar.init.BaaMemIsol#yehFarsiTwoabove-ar.init.BaaMemIsol%noonThreedotsabove-ar.init.BaaMemIsol yehHamzaabove-ar.init.BaaMemIsolbehDotless-ar.init.BaaMemIsolyehKashmiri-ar.init.BaaMemIsolyeh-ar.init.BaaMemIsolrnoon-ar.init.BaaMemIsolteheh-ar.init.BaaMemIsol$behVinvertedbelow-ar.init.BaaMemIsol#tehThreedotsdown-ar.init.BaaMemIsolpeh-ar.init.BaaMemIsolbeeh-ar.init.BaaMemIsolbeh-ar.init.BaaMemIsoltteheh-ar.init.BaaMemIsol&behThreedotsupabove-ar.init.BaaMemIsolnoon-ar.init.BaaMemIsol&tehThreedotsupbelow-ar.init.BaaMemIsol&behThreedotsupbelow-ar.init.BaaMemIsolteh-ar.init.BaaMemIsolhighhamzaYeh-ar.init.BaaMemIsol$yehFarsiVinverted-ar.init.BaaMemIsoltheh-ar.init.BaaMemIsoltteh-ar.init.BaaMemIsolnoonDotbelow-ar.init.BaaMemIsolnoonVabove-ar.init.BaaMemIsolalefMaksura-ar.init.BaaMemIsoltehRing-ar.init.BaaMemIsol*behTwodotsbelowDotabove-ar.init.BaaMemIsol$yehThreedotsbelow-ar.init.BaaMemIsole-ar.init.BaaMemIsolnoonghunna-ar.init.BaaMemIsolyehFarsi-ar.init.BaaMemIsol#noonTwodotsbelow-ar.init.BaaMemIsolmeem-ar.fina.KafMemIsolmeem-ar.medi.MemAlfFina'yehFarsiFourbelow-ar.medi.BaaMemAlfFinabeheh-ar.medi.BaaMemAlfFina(yehFarsiThreeabove-ar.medi.BaaMemAlfFinanoonRing-ar.medi.BaaMemAlfFina1behThreedotshorizontalbelow-ar.medi.BaaMemAlfFinabehVabove-ar.medi.BaaMemAlfFina"noonTahabove-ar.medi.BaaMemAlfFinayehVabove-ar.medi.BaaMemAlfFina&yehFarsiTwoabove-ar.medi.BaaMemAlfFina(noonThreedotsabove-ar.medi.BaaMemAlfFina#yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFina!yehKashmiri-ar.medi.BaaMemAlfFinayeh-ar.medi.BaaMemAlfFinarnoon-ar.medi.BaaMemAlfFinateheh-ar.medi.BaaMemAlfFina'behVinvertedbelow-ar.medi.BaaMemAlfFina&tehThreedotsdown-ar.medi.BaaMemAlfFinapeh-ar.medi.BaaMemAlfFinabeeh-ar.medi.BaaMemAlfFinabeh-ar.medi.BaaMemAlfFinatteheh-ar.medi.BaaMemAlfFina)behThreedotsupabove-ar.medi.BaaMemAlfFinanoon-ar.medi.BaaMemAlfFina)tehThreedotsupbelow-ar.medi.BaaMemAlfFina)behThreedotsupbelow-ar.medi.BaaMemAlfFinateh-ar.medi.BaaMemAlfFina'yehFarsiVinverted-ar.medi.BaaMemAlfFinatheh-ar.medi.BaaMemAlfFinatteh-ar.medi.BaaMemAlfFina"noonDotbelow-ar.medi.BaaMemAlfFina noonVabove-ar.medi.BaaMemAlfFina!alefMaksura-ar.medi.BaaMemAlfFinatehRing-ar.medi.BaaMemAlfFina-behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina'yehThreedotsbelow-ar.medi.BaaMemAlfFinae-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFinayehFarsi-ar.medi.BaaMemAlfFina&noonTwodotsbelow-ar.medi.BaaMemAlfFinameem-ar.medi.BaaMemAlfFinameem-ar.medi.AlfPostTooth!alefHamzabelow-ar.fina.MemAlfFinaalef-ar.fina.MemAlfFina!alefThreeabove-ar.fina.MemAlfFinaalefTwoabove-ar.fina.MemAlfFina!alefHamzaabove-ar.fina.MemAlfFinaalefMadda-ar.fina.MemAlfFina%alefWavyhamzaabove-ar.fina.MemAlfFina%alefWavyhamzabelow-ar.fina.MemAlfFinaalefWasla-ar.fina.MemAlfFina$yehFarsiFourbelow-ar.init.BaaHehInitbeheh-ar.init.BaaHehInit%yehFarsiThreeabove-ar.init.BaaHehInitnoonRing-ar.init.BaaHehInit.behThreedotshorizontalbelow-ar.init.BaaHehInitbehVabove-ar.init.BaaHehInitnoonTahabove-ar.init.BaaHehInityehVabove-ar.init.BaaHehInit#yehFarsiTwoabove-ar.init.BaaHehInit%noonThreedotsabove-ar.init.BaaHehInit yehHamzaabove-ar.init.BaaHehInitbehDotless-ar.init.BaaHehInityehKashmiri-ar.init.BaaHehInityeh-ar.init.BaaHehInitrnoon-ar.init.BaaHehInitteheh-ar.init.BaaHehInit$behVinvertedbelow-ar.init.BaaHehInit#tehThreedotsdown-ar.init.BaaHehInitpeh-ar.init.BaaHehInitbeeh-ar.init.BaaHehInitbeh-ar.init.BaaHehInittteheh-ar.init.BaaHehInit&behThreedotsupabove-ar.init.BaaHehInitnoon-ar.init.BaaHehInit&tehThreedotsupbelow-ar.init.BaaHehInit&behThreedotsupbelow-ar.init.BaaHehInitteh-ar.init.BaaHehInithighhamzaYeh-ar.init.BaaHehInit$yehFarsiVinverted-ar.init.BaaHehInittheh-ar.init.BaaHehInittteh-ar.init.BaaHehInitnoonDotbelow-ar.init.BaaHehInitnoonVabove-ar.init.BaaHehInitalefMaksura-ar.init.BaaHehInittehRing-ar.init.BaaHehInit*behTwodotsbelowDotabove-ar.init.BaaHehInit$yehThreedotsbelow-ar.init.BaaHehInite-ar.init.BaaHehInitnoonghunna-ar.init.BaaHehInityehFarsi-ar.init.BaaHehInit#noonTwodotsbelow-ar.init.BaaHehInit$yehFarsiFourbelow-ar.medi.BaaHehMedibeheh-ar.medi.BaaHehMedi%yehFarsiThreeabove-ar.medi.BaaHehMedinoonRing-ar.medi.BaaHehMedi.behThreedotshorizontalbelow-ar.medi.BaaHehMedibehVabove-ar.medi.BaaHehMedinoonTahabove-ar.medi.BaaHehMediyehVabove-ar.medi.BaaHehMedi#yehFarsiTwoabove-ar.medi.BaaHehMedi%noonThreedotsabove-ar.medi.BaaHehMedi yehHamzaabove-ar.medi.BaaHehMedibehDotless-ar.medi.BaaHehMediyehKashmiri-ar.medi.BaaHehMediyeh-ar.medi.BaaHehMedirnoon-ar.medi.BaaHehMediteheh-ar.medi.BaaHehMedi$behVinvertedbelow-ar.medi.BaaHehMedi#tehThreedotsdown-ar.medi.BaaHehMedipeh-ar.medi.BaaHehMedibeeh-ar.medi.BaaHehMedibeh-ar.medi.BaaHehMeditteheh-ar.medi.BaaHehMedi&behThreedotsupabove-ar.medi.BaaHehMedinoon-ar.medi.BaaHehMedi&tehThreedotsupbelow-ar.medi.BaaHehMedi&behThreedotsupbelow-ar.medi.BaaHehMediteh-ar.medi.BaaHehMedi$yehFarsiVinverted-ar.medi.BaaHehMeditheh-ar.medi.BaaHehMeditteh-ar.medi.BaaHehMedinoonDotbelow-ar.medi.BaaHehMedinoonVabove-ar.medi.BaaHehMedialefMaksura-ar.medi.BaaHehMeditehRing-ar.medi.BaaHehMedi*behTwodotsbelowDotabove-ar.medi.BaaHehMedi$yehThreedotsbelow-ar.medi.BaaHehMedie-ar.medi.BaaHehMedinoonghunna-ar.medi.BaaHehMediyehFarsi-ar.medi.BaaHehMedi#noonTwodotsbelow-ar.medi.BaaHehMediheh-ar.medi.BaaHehMedihehgoal-ar.medi.BaaHehMediheh-ar.medi.PostToothhehgoal-ar.medi.PostToothlamVabove-ar.medi.KafLamMemFina'lamThreedotsabove-ar.medi.KafLamMemFinalam-ar.medi.KafLamMemFina'lamThreedotsbelow-ar.medi.KafLamMemFina!lamDotabove-ar.medi.KafLamMemFinalamBar-ar.medi.KafLamMemFinalamVabove-ar.init.LamLamInit$lamThreedotsabove-ar.init.LamLamInitlam-ar.init.LamLamInit$lamThreedotsbelow-ar.init.LamLamInitlamDotabove-ar.init.LamLamInitlamBar-ar.init.LamLamInitlamVabove-ar.medi.LamLamInit$lamThreedotsabove-ar.medi.LamLamInitlam-ar.medi.LamLamInit$lamThreedotsbelow-ar.medi.LamLamInitlamDotabove-ar.medi.LamLamInitlamBar-ar.medi.LamLamInitlamVabove-ar.medi.LamLamAlfIsol'lamThreedotsabove-ar.medi.LamLamAlfIsollam-ar.medi.LamLamAlfIsol'lamThreedotsbelow-ar.medi.LamLamAlfIsol!lamDotabove-ar.medi.LamLamAlfIsollamBar-ar.medi.LamLamAlfIsol.kehehTwodotshorizontalabove-ar.fina.LamKafIsol&kehehThreedotsbelow-ar.fina.LamKafIsol,kafTwodotshorizontalabove-ar.fina.LamKafIsol(kehehThreedotsupbelow-ar.fina.LamKafIsolkaf-ar.fina.LamKafIsolgafRing-ar.fina.LamKafIsolgueh-ar.fina.LamKafIsol"gafTwodotsbelow-ar.fina.LamKafIsolkafRing-ar.fina.LamKafIsolkafDotabove-ar.fina.LamKafIsolng-ar.fina.LamKafIsol$kafThreedotsbelow-ar.fina.LamKafIsolgaf-ar.fina.LamKafIsolkeheh-ar.fina.LamKafIsolgafThreedots-ar.fina.LamKafIsol&kehehThreedotsabove-ar.fina.LamKafIsol kehehDotabove-ar.fina.LamKafIsolngoeh-ar.fina.LamKafIsollamVabove-ar.fina.LamLamIsol$lamThreedotsabove-ar.fina.LamLamIsollam-ar.fina.LamLamIsol$lamThreedotsbelow-ar.fina.LamLamIsollamDotabove-ar.fina.LamLamIsollamBar-ar.fina.LamLamIsollamVabove-ar.medi.LamLamMedi$lamThreedotsabove-ar.medi.LamLamMedilam-ar.medi.LamLamMedi$lamThreedotsbelow-ar.medi.LamLamMedilamDotabove-ar.medi.LamLamMedilamBar-ar.medi.LamLamMedi lamVabove-ar.medi.LamLamAlefFina(lamThreedotsabove-ar.medi.LamLamAlefFinalam-ar.medi.LamLamAlefFina(lamThreedotsbelow-ar.medi.LamLamAlefFina"lamDotabove-ar.medi.LamLamAlefFinalamBar-ar.medi.LamLamAlefFinalamVabove-ar.medi.LamLamMedi2%lamThreedotsabove-ar.medi.LamLamMedi2lam-ar.medi.LamLamMedi2%lamThreedotsbelow-ar.medi.LamLamMedi2lamDotabove-ar.medi.LamLamMedi2lamBar-ar.medi.LamLamMedi2.kehehTwodotshorizontalabove-ar.fina.LamKafFina&kehehThreedotsbelow-ar.fina.LamKafFina,kafTwodotshorizontalabove-ar.fina.LamKafFina(kehehThreedotsupbelow-ar.fina.LamKafFinakaf-ar.fina.LamKafFinagafRing-ar.fina.LamKafFinagueh-ar.fina.LamKafFina"gafTwodotsbelow-ar.fina.LamKafFinakafRing-ar.fina.LamKafFinakafDotabove-ar.fina.LamKafFinang-ar.fina.LamKafFina$kafThreedotsbelow-ar.fina.LamKafFinagaf-ar.fina.LamKafFinakeheh-ar.fina.LamKafFinagafThreedots-ar.fina.LamKafFina&kehehThreedotsabove-ar.fina.LamKafFina kehehDotabove-ar.fina.LamKafFinangoeh-ar.fina.LamKafFinalamVabove-ar.fina.LamLamFina$lamThreedotsabove-ar.fina.LamLamFinalam-ar.fina.LamLamFina$lamThreedotsbelow-ar.fina.LamLamFinalamDotabove-ar.fina.LamLamFinalamBar-ar.fina.LamLamFinalamVabove-ar.medi.LamLamMemInit'lamThreedotsabove-ar.medi.LamLamMemInitlam-ar.medi.LamLamMemInit'lamThreedotsbelow-ar.medi.LamLamMemInit!lamDotabove-ar.medi.LamLamMemInitlamBar-ar.medi.LamLamMemInitlamVabove-ar.medi.LamLamHehIsol'lamThreedotsabove-ar.medi.LamLamHehIsollam-ar.medi.LamLamHehIsol'lamThreedotsbelow-ar.medi.LamLamHehIsol!lamDotabove-ar.medi.LamLamHehIsollamBar-ar.medi.LamLamHehIsollamVabove-ar.medi.LamLamYaaIsol'lamThreedotsabove-ar.medi.LamLamYaaIsollam-ar.medi.LamLamYaaIsol'lamThreedotsbelow-ar.medi.LamLamYaaIsol!lamDotabove-ar.medi.LamLamYaaIsollamBar-ar.medi.LamLamYaaIsollamVabove-ar.medi.LamLamMemMedi'lamThreedotsabove-ar.medi.LamLamMemMedilam-ar.medi.LamLamMemMedi'lamThreedotsbelow-ar.medi.LamLamMemMedi!lamDotabove-ar.medi.LamLamMemMedilamBar-ar.medi.LamLamMemMedilamVabove-ar.medi.LamLamHehFina'lamThreedotsabove-ar.medi.LamLamHehFinalam-ar.medi.LamLamHehFina'lamThreedotsbelow-ar.medi.LamLamHehFina!lamDotabove-ar.medi.LamLamHehFinalamBar-ar.medi.LamLamHehFinalamVabove-ar.medi.LamLamYaaFina'lamThreedotsabove-ar.medi.LamLamYaaFinalam-ar.medi.LamLamYaaFina'lamThreedotsbelow-ar.medi.LamLamYaaFina!lamDotabove-ar.medi.LamLamYaaFinalamBar-ar.medi.LamLamYaaFinakhah-ar.medi.1LamHaaHaaInithah-ar.medi.1LamHaaHaaInit$hahHamzaabove-ar.medi.1LamHaaHaaInittcheheh-ar.medi.1LamHaaHaaInit(hahThreedotsabove-ar.medi.1LamHaaHaaInitjeem-ar.medi.1LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInitdyeh-ar.medi.1LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit"hahTahbelow-ar.medi.1LamHaaHaaInitnyeh-ar.medi.1LamHaaHaaInit$tchehDotabove-ar.medi.1LamHaaHaaInit#hahFourbelow-ar.medi.1LamHaaHaaInit*hahThreedotsupbelow-ar.medi.1LamHaaHaaInit"hahTahabove-ar.medi.1LamHaaHaaInittcheh-ar.medi.1LamHaaHaaInitkhah-ar.medi.2LamHaaHaaInithah-ar.medi.2LamHaaHaaInit$hahHamzaabove-ar.medi.2LamHaaHaaInittcheheh-ar.medi.2LamHaaHaaInit(hahThreedotsabove-ar.medi.2LamHaaHaaInitjeem-ar.medi.2LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInitdyeh-ar.medi.2LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit"hahTahbelow-ar.medi.2LamHaaHaaInitnyeh-ar.medi.2LamHaaHaaInit$tchehDotabove-ar.medi.2LamHaaHaaInit#hahFourbelow-ar.medi.2LamHaaHaaInit*hahThreedotsupbelow-ar.medi.2LamHaaHaaInit"hahTahabove-ar.medi.2LamHaaHaaInittcheh-ar.medi.2LamHaaHaaInitkafswash-ar.initkafswash-ar.medikafswash-ar.finaalefHamzabelow-ar.LowHamzaalefWavyhamzabelow-ar.LowHamzabeheh-ar.init.LDnoonThreedotsabove-ar.init.LDpeh-ar.init.LDbeeh-ar.init.LDbeh-ar.init.LDnoonTwodotsbelow-ar.init.LDyehFarsiVinverted-ar.init.LDyehFarsiFourbelow-ar.init.LDyehFarsiThreeabove-ar.init.LDyehFarsiTwoabove-ar.init.LDyehFarsi-ar.init.LDyeh-ar.init.LDyehVabove-ar.init.LDbehThreedotsupabove-ar.init.LD&behThreedotshorizontalbelow-ar.init.LDtehThreedotsupbelow-ar.init.LDbehThreedotsupbelow-ar.init.LDbehVinvertedbelow-ar.init.LD"behTwodotsbelowDotabove-ar.init.LDnoonDotbelow-ar.init.LDyehThreedotsbelow-ar.init.LD e-ar.init.LDbeheh-ar.init.BaaRaaIsolLD'noonThreedotsabove-ar.init.BaaRaaIsolLDpeh-ar.init.BaaRaaIsolLDbeeh-ar.init.BaaRaaIsolLDbeh-ar.init.BaaRaaIsolLD%noonTwodotsbelow-ar.init.BaaRaaIsolLD&yehFarsiVinverted-ar.init.BaaRaaIsolLD&yehFarsiFourbelow-ar.init.BaaRaaIsolLD'yehFarsiThreeabove-ar.init.BaaRaaIsolLD%yehFarsiTwoabove-ar.init.BaaRaaIsolLDyehFarsi-ar.init.BaaRaaIsolLDyeh-ar.init.BaaRaaIsolLDyehVabove-ar.init.BaaRaaIsolLD(behThreedotsupabove-ar.init.BaaRaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD(tehThreedotsupbelow-ar.init.BaaRaaIsolLD(behThreedotsupbelow-ar.init.BaaRaaIsolLD&behVinvertedbelow-ar.init.BaaRaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD!noonDotbelow-ar.init.BaaRaaIsolLD&yehThreedotsbelow-ar.init.BaaRaaIsolLDe-ar.init.BaaRaaIsolLDbeheh-ar.init.BaaDalLD#noonThreedotsabove-ar.init.BaaDalLDpeh-ar.init.BaaDalLDbeeh-ar.init.BaaDalLDbeh-ar.init.BaaDalLD!noonTwodotsbelow-ar.init.BaaDalLD"yehFarsiVinverted-ar.init.BaaDalLD"yehFarsiFourbelow-ar.init.BaaDalLD#yehFarsiThreeabove-ar.init.BaaDalLD!yehFarsiTwoabove-ar.init.BaaDalLDyehFarsi-ar.init.BaaDalLDyeh-ar.init.BaaDalLDyehVabove-ar.init.BaaDalLD$behThreedotsupabove-ar.init.BaaDalLD,behThreedotshorizontalbelow-ar.init.BaaDalLD$tehThreedotsupbelow-ar.init.BaaDalLD$behThreedotsupbelow-ar.init.BaaDalLD"behVinvertedbelow-ar.init.BaaDalLD(behTwodotsbelowDotabove-ar.init.BaaDalLDnoonDotbelow-ar.init.BaaDalLD"yehThreedotsbelow-ar.init.BaaDalLDe-ar.init.BaaDalLDbeheh-ar.init.BaaMemHaaInitLD*noonThreedotsabove-ar.init.BaaMemHaaInitLDpeh-ar.init.BaaMemHaaInitLDbeeh-ar.init.BaaMemHaaInitLDbeh-ar.init.BaaMemHaaInitLD(noonTwodotsbelow-ar.init.BaaMemHaaInitLD)yehFarsiVinverted-ar.init.BaaMemHaaInitLD)yehFarsiFourbelow-ar.init.BaaMemHaaInitLD*yehFarsiThreeabove-ar.init.BaaMemHaaInitLD(yehFarsiTwoabove-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLDyeh-ar.init.BaaMemHaaInitLD!yehVabove-ar.init.BaaMemHaaInitLD+behThreedotsupabove-ar.init.BaaMemHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD+tehThreedotsupbelow-ar.init.BaaMemHaaInitLD+behThreedotsupbelow-ar.init.BaaMemHaaInitLD)behVinvertedbelow-ar.init.BaaMemHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD$noonDotbelow-ar.init.BaaMemHaaInitLD)yehThreedotsbelow-ar.init.BaaMemHaaInitLDe-ar.init.BaaMemHaaInitLDbeheh-ar.init.BaaBaaYaaLD&noonThreedotsabove-ar.init.BaaBaaYaaLDpeh-ar.init.BaaBaaYaaLDbeeh-ar.init.BaaBaaYaaLDbeh-ar.init.BaaBaaYaaLD$noonTwodotsbelow-ar.init.BaaBaaYaaLD%yehFarsiVinverted-ar.init.BaaBaaYaaLD%yehFarsiFourbelow-ar.init.BaaBaaYaaLD&yehFarsiThreeabove-ar.init.BaaBaaYaaLD$yehFarsiTwoabove-ar.init.BaaBaaYaaLDyehFarsi-ar.init.BaaBaaYaaLDyeh-ar.init.BaaBaaYaaLDyehVabove-ar.init.BaaBaaYaaLD'behThreedotsupabove-ar.init.BaaBaaYaaLD/behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD'tehThreedotsupbelow-ar.init.BaaBaaYaaLD'behThreedotsupbelow-ar.init.BaaBaaYaaLD%behVinvertedbelow-ar.init.BaaBaaYaaLD+behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD noonDotbelow-ar.init.BaaBaaYaaLD%yehThreedotsbelow-ar.init.BaaBaaYaaLDe-ar.init.BaaBaaYaaLDbeheh-ar.init.BaaNonIsolLD'noonThreedotsabove-ar.init.BaaNonIsolLDpeh-ar.init.BaaNonIsolLDbeeh-ar.init.BaaNonIsolLDbeh-ar.init.BaaNonIsolLD%noonTwodotsbelow-ar.init.BaaNonIsolLD&yehFarsiVinverted-ar.init.BaaNonIsolLD&yehFarsiFourbelow-ar.init.BaaNonIsolLD'yehFarsiThreeabove-ar.init.BaaNonIsolLD%yehFarsiTwoabove-ar.init.BaaNonIsolLDyehFarsi-ar.init.BaaNonIsolLDyeh-ar.init.BaaNonIsolLDyehVabove-ar.init.BaaNonIsolLD(behThreedotsupabove-ar.init.BaaNonIsolLD0behThreedotshorizontalbelow-ar.init.BaaNonIsolLD(tehThreedotsupbelow-ar.init.BaaNonIsolLD(behThreedotsupbelow-ar.init.BaaNonIsolLD&behVinvertedbelow-ar.init.BaaNonIsolLD,behTwodotsbelowDotabove-ar.init.BaaNonIsolLD!noonDotbelow-ar.init.BaaNonIsolLD&yehThreedotsbelow-ar.init.BaaNonIsolLDe-ar.init.BaaNonIsolLDbeheh-ar.init.BaaSenInitLD'noonThreedotsabove-ar.init.BaaSenInitLDpeh-ar.init.BaaSenInitLDbeeh-ar.init.BaaSenInitLDbeh-ar.init.BaaSenInitLD%noonTwodotsbelow-ar.init.BaaSenInitLD&yehFarsiVinverted-ar.init.BaaSenInitLD&yehFarsiFourbelow-ar.init.BaaSenInitLD'yehFarsiThreeabove-ar.init.BaaSenInitLD%yehFarsiTwoabove-ar.init.BaaSenInitLDyehFarsi-ar.init.BaaSenInitLDyeh-ar.init.BaaSenInitLDyehVabove-ar.init.BaaSenInitLD(behThreedotsupabove-ar.init.BaaSenInitLD0behThreedotshorizontalbelow-ar.init.BaaSenInitLD(tehThreedotsupbelow-ar.init.BaaSenInitLD(behThreedotsupbelow-ar.init.BaaSenInitLD&behVinvertedbelow-ar.init.BaaSenInitLD,behTwodotsbelowDotabove-ar.init.BaaSenInitLD!noonDotbelow-ar.init.BaaSenInitLD&yehThreedotsbelow-ar.init.BaaSenInitLDe-ar.init.BaaSenInitLDbeheh-ar.init.BaaMemInitLD'noonThreedotsabove-ar.init.BaaMemInitLDpeh-ar.init.BaaMemInitLDbeeh-ar.init.BaaMemInitLDbeh-ar.init.BaaMemInitLD%noonTwodotsbelow-ar.init.BaaMemInitLD&yehFarsiVinverted-ar.init.BaaMemInitLD&yehFarsiFourbelow-ar.init.BaaMemInitLD'yehFarsiThreeabove-ar.init.BaaMemInitLD%yehFarsiTwoabove-ar.init.BaaMemInitLDyehFarsi-ar.init.BaaMemInitLDyeh-ar.init.BaaMemInitLDyehVabove-ar.init.BaaMemInitLD(behThreedotsupabove-ar.init.BaaMemInitLD0behThreedotshorizontalbelow-ar.init.BaaMemInitLD(tehThreedotsupbelow-ar.init.BaaMemInitLD(behThreedotsupbelow-ar.init.BaaMemInitLD&behVinvertedbelow-ar.init.BaaMemInitLD,behTwodotsbelowDotabove-ar.init.BaaMemInitLD!noonDotbelow-ar.init.BaaMemInitLD&yehThreedotsbelow-ar.init.BaaMemInitLDe-ar.init.BaaMemInitLDbeheh-ar.init.BaaBaaHaaInitLD*noonThreedotsabove-ar.init.BaaBaaHaaInitLDpeh-ar.init.BaaBaaHaaInitLDbeeh-ar.init.BaaBaaHaaInitLDbeh-ar.init.BaaBaaHaaInitLD(noonTwodotsbelow-ar.init.BaaBaaHaaInitLD)yehFarsiVinverted-ar.init.BaaBaaHaaInitLD)yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD*yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD(yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD yehFarsi-ar.init.BaaBaaHaaInitLDyeh-ar.init.BaaBaaHaaInitLD!yehVabove-ar.init.BaaBaaHaaInitLD+behThreedotsupabove-ar.init.BaaBaaHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD+tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD+behThreedotsupbelow-ar.init.BaaBaaHaaInitLD)behVinvertedbelow-ar.init.BaaBaaHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD$noonDotbelow-ar.init.BaaBaaHaaInitLD)yehThreedotsbelow-ar.init.BaaBaaHaaInitLDe-ar.init.BaaBaaHaaInitLDbeheh-ar.init.BaaBaaIsolLD'noonThreedotsabove-ar.init.BaaBaaIsolLDpeh-ar.init.BaaBaaIsolLDbeeh-ar.init.BaaBaaIsolLDbeh-ar.init.BaaBaaIsolLD%noonTwodotsbelow-ar.init.BaaBaaIsolLD&yehFarsiVinverted-ar.init.BaaBaaIsolLD&yehFarsiFourbelow-ar.init.BaaBaaIsolLD'yehFarsiThreeabove-ar.init.BaaBaaIsolLD%yehFarsiTwoabove-ar.init.BaaBaaIsolLDyehFarsi-ar.init.BaaBaaIsolLDyeh-ar.init.BaaBaaIsolLDyehVabove-ar.init.BaaBaaIsolLD(behThreedotsupabove-ar.init.BaaBaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD(tehThreedotsupbelow-ar.init.BaaBaaIsolLD(behThreedotsupbelow-ar.init.BaaBaaIsolLD&behVinvertedbelow-ar.init.BaaBaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD!noonDotbelow-ar.init.BaaBaaIsolLD&yehThreedotsbelow-ar.init.BaaBaaIsolLDe-ar.init.BaaBaaIsolLDbeheh-ar.init.BaaBaaMemInitLD*noonThreedotsabove-ar.init.BaaBaaMemInitLDpeh-ar.init.BaaBaaMemInitLDbeeh-ar.init.BaaBaaMemInitLDbeh-ar.init.BaaBaaMemInitLD(noonTwodotsbelow-ar.init.BaaBaaMemInitLD)yehFarsiVinverted-ar.init.BaaBaaMemInitLD)yehFarsiFourbelow-ar.init.BaaBaaMemInitLD*yehFarsiThreeabove-ar.init.BaaBaaMemInitLD(yehFarsiTwoabove-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLDyeh-ar.init.BaaBaaMemInitLD!yehVabove-ar.init.BaaBaaMemInitLD+behThreedotsupabove-ar.init.BaaBaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD+tehThreedotsupbelow-ar.init.BaaBaaMemInitLD+behThreedotsupbelow-ar.init.BaaBaaMemInitLD)behVinvertedbelow-ar.init.BaaBaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD$noonDotbelow-ar.init.BaaBaaMemInitLD)yehThreedotsbelow-ar.init.BaaBaaMemInitLDe-ar.init.BaaBaaMemInitLDbeheh-ar.init.BaaSenAltInitLD*noonThreedotsabove-ar.init.BaaSenAltInitLDpeh-ar.init.BaaSenAltInitLDbeeh-ar.init.BaaSenAltInitLDbeh-ar.init.BaaSenAltInitLD(noonTwodotsbelow-ar.init.BaaSenAltInitLD)yehFarsiVinverted-ar.init.BaaSenAltInitLD)yehFarsiFourbelow-ar.init.BaaSenAltInitLD*yehFarsiThreeabove-ar.init.BaaSenAltInitLD(yehFarsiTwoabove-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLDyeh-ar.init.BaaSenAltInitLD!yehVabove-ar.init.BaaSenAltInitLD+behThreedotsupabove-ar.init.BaaSenAltInitLD3behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD+tehThreedotsupbelow-ar.init.BaaSenAltInitLD+behThreedotsupbelow-ar.init.BaaSenAltInitLD)behVinvertedbelow-ar.init.BaaSenAltInitLD/behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD$noonDotbelow-ar.init.BaaSenAltInitLD)yehThreedotsbelow-ar.init.BaaSenAltInitLDe-ar.init.BaaSenAltInitLDbeheh-ar.init.BaaHaaInitLD'noonThreedotsabove-ar.init.BaaHaaInitLDpeh-ar.init.BaaHaaInitLDbeeh-ar.init.BaaHaaInitLDbeh-ar.init.BaaHaaInitLD%noonTwodotsbelow-ar.init.BaaHaaInitLD&yehFarsiVinverted-ar.init.BaaHaaInitLD&yehFarsiFourbelow-ar.init.BaaHaaInitLD'yehFarsiThreeabove-ar.init.BaaHaaInitLD%yehFarsiTwoabove-ar.init.BaaHaaInitLDyehFarsi-ar.init.BaaHaaInitLDyeh-ar.init.BaaHaaInitLDyehVabove-ar.init.BaaHaaInitLD(behThreedotsupabove-ar.init.BaaHaaInitLD0behThreedotshorizontalbelow-ar.init.BaaHaaInitLD(tehThreedotsupbelow-ar.init.BaaHaaInitLD(behThreedotsupbelow-ar.init.BaaHaaInitLD&behVinvertedbelow-ar.init.BaaHaaInitLD,behTwodotsbelowDotabove-ar.init.BaaHaaInitLD!noonDotbelow-ar.init.BaaHaaInitLD&yehThreedotsbelow-ar.init.BaaHaaInitLDe-ar.init.BaaHaaInitLDbeheh-ar.init.BaaHaaMemInitLD*noonThreedotsabove-ar.init.BaaHaaMemInitLDpeh-ar.init.BaaHaaMemInitLDbeeh-ar.init.BaaHaaMemInitLDbeh-ar.init.BaaHaaMemInitLD(noonTwodotsbelow-ar.init.BaaHaaMemInitLD)yehFarsiVinverted-ar.init.BaaHaaMemInitLD)yehFarsiFourbelow-ar.init.BaaHaaMemInitLD*yehFarsiThreeabove-ar.init.BaaHaaMemInitLD(yehFarsiTwoabove-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLDyeh-ar.init.BaaHaaMemInitLD!yehVabove-ar.init.BaaHaaMemInitLD+behThreedotsupabove-ar.init.BaaHaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD+tehThreedotsupbelow-ar.init.BaaHaaMemInitLD+behThreedotsupbelow-ar.init.BaaHaaMemInitLD)behVinvertedbelow-ar.init.BaaHaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD$noonDotbelow-ar.init.BaaHaaMemInitLD)yehThreedotsbelow-ar.init.BaaHaaMemInitLDe-ar.init.BaaHaaMemInitLDbeheh-ar.init.HighLD!noonThreedotsabove-ar.init.HighLDpeh-ar.init.HighLDbeeh-ar.init.HighLDbeh-ar.init.HighLDnoonTwodotsbelow-ar.init.HighLD yehFarsiVinverted-ar.init.HighLD yehFarsiFourbelow-ar.init.HighLD!yehFarsiThreeabove-ar.init.HighLDyehFarsiTwoabove-ar.init.HighLDyehFarsi-ar.init.HighLDyeh-ar.init.HighLDyehVabove-ar.init.HighLD"behThreedotsupabove-ar.init.HighLD*behThreedotshorizontalbelow-ar.init.HighLD"tehThreedotsupbelow-ar.init.HighLD"behThreedotsupbelow-ar.init.HighLD behVinvertedbelow-ar.init.HighLD&behTwodotsbelowDotabove-ar.init.HighLDnoonDotbelow-ar.init.HighLD yehThreedotsbelow-ar.init.HighLDe-ar.init.HighLDbeheh-ar.init.WideLD!noonThreedotsabove-ar.init.WideLDpeh-ar.init.WideLDbeeh-ar.init.WideLDbeh-ar.init.WideLDnoonTwodotsbelow-ar.init.WideLD yehFarsiVinverted-ar.init.WideLD yehFarsiFourbelow-ar.init.WideLD!yehFarsiThreeabove-ar.init.WideLDyehFarsiTwoabove-ar.init.WideLDyehFarsi-ar.init.WideLDyeh-ar.init.WideLDyehVabove-ar.init.WideLD"behThreedotsupabove-ar.init.WideLD*behThreedotshorizontalbelow-ar.init.WideLD"tehThreedotsupbelow-ar.init.WideLD"behThreedotsupbelow-ar.init.WideLD behVinvertedbelow-ar.init.WideLD&behTwodotsbelowDotabove-ar.init.WideLDnoonDotbelow-ar.init.WideLD yehThreedotsbelow-ar.init.WideLDe-ar.init.WideLDbeheh-ar.init.BaaYaaIsolLD'noonThreedotsabove-ar.init.BaaYaaIsolLDpeh-ar.init.BaaYaaIsolLDbeeh-ar.init.BaaYaaIsolLDbeh-ar.init.BaaYaaIsolLD%noonTwodotsbelow-ar.init.BaaYaaIsolLD&yehFarsiVinverted-ar.init.BaaYaaIsolLD&yehFarsiFourbelow-ar.init.BaaYaaIsolLD'yehFarsiThreeabove-ar.init.BaaYaaIsolLD%yehFarsiTwoabove-ar.init.BaaYaaIsolLDyehFarsi-ar.init.BaaYaaIsolLDyeh-ar.init.BaaYaaIsolLDyehVabove-ar.init.BaaYaaIsolLD(behThreedotsupabove-ar.init.BaaYaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD(tehThreedotsupbelow-ar.init.BaaYaaIsolLD(behThreedotsupbelow-ar.init.BaaYaaIsolLD&behVinvertedbelow-ar.init.BaaYaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD!noonDotbelow-ar.init.BaaYaaIsolLD&yehThreedotsbelow-ar.init.BaaYaaIsolLDe-ar.init.BaaYaaIsolLDbeheh-ar.init.BaaMemIsolLD'noonThreedotsabove-ar.init.BaaMemIsolLDpeh-ar.init.BaaMemIsolLDbeeh-ar.init.BaaMemIsolLDbeh-ar.init.BaaMemIsolLD%noonTwodotsbelow-ar.init.BaaMemIsolLD&yehFarsiVinverted-ar.init.BaaMemIsolLD&yehFarsiFourbelow-ar.init.BaaMemIsolLD'yehFarsiThreeabove-ar.init.BaaMemIsolLD%yehFarsiTwoabove-ar.init.BaaMemIsolLDyehFarsi-ar.init.BaaMemIsolLDyeh-ar.init.BaaMemIsolLDyehVabove-ar.init.BaaMemIsolLD(behThreedotsupabove-ar.init.BaaMemIsolLD0behThreedotshorizontalbelow-ar.init.BaaMemIsolLD(tehThreedotsupbelow-ar.init.BaaMemIsolLD(behThreedotsupbelow-ar.init.BaaMemIsolLD&behVinvertedbelow-ar.init.BaaMemIsolLD,behTwodotsbelowDotabove-ar.init.BaaMemIsolLD!noonDotbelow-ar.init.BaaMemIsolLD&yehThreedotsbelow-ar.init.BaaMemIsolLDe-ar.init.BaaMemIsolLDbeheh-ar.init.BaaHehInitLD'noonThreedotsabove-ar.init.BaaHehInitLDpeh-ar.init.BaaHehInitLDbeeh-ar.init.BaaHehInitLDbeh-ar.init.BaaHehInitLD%noonTwodotsbelow-ar.init.BaaHehInitLD&yehFarsiVinverted-ar.init.BaaHehInitLD&yehFarsiFourbelow-ar.init.BaaHehInitLD'yehFarsiThreeabove-ar.init.BaaHehInitLD%yehFarsiTwoabove-ar.init.BaaHehInitLDyehFarsi-ar.init.BaaHehInitLDyeh-ar.init.BaaHehInitLDyehVabove-ar.init.BaaHehInitLD(behThreedotsupabove-ar.init.BaaHehInitLD0behThreedotshorizontalbelow-ar.init.BaaHehInitLD(tehThreedotsupbelow-ar.init.BaaHehInitLD(behThreedotsupbelow-ar.init.BaaHehInitLD&behVinvertedbelow-ar.init.BaaHehInitLD,behTwodotsbelowDotabove-ar.init.BaaHehInitLD!noonDotbelow-ar.init.BaaHehInitLD&yehThreedotsbelow-ar.init.BaaHehInitLDe-ar.init.BaaHehInitLDyehKashmiri-ar.initLD yehKashmiri-ar.init.BaaRaaIsolLDyehKashmiri-ar.init.BaaDalLD#yehKashmiri-ar.init.BaaMemHaaInitLDyehKashmiri-ar.init.BaaBaaYaaLD yehKashmiri-ar.init.BaaNonIsolLD yehKashmiri-ar.init.BaaSenInitLD yehKashmiri-ar.init.BaaMemInitLD#yehKashmiri-ar.init.BaaBaaHaaInitLD yehKashmiri-ar.init.BaaBaaIsolLD#yehKashmiri-ar.init.BaaBaaMemInitLD#yehKashmiri-ar.init.BaaSenAltInitLD yehKashmiri-ar.init.BaaHaaInitLD#yehKashmiri-ar.init.BaaHaaMemInitLDyehKashmiri-ar.init.HighLDyehKashmiri-ar.init.WideLD yehKashmiri-ar.init.BaaYaaIsolLD yehKashmiri-ar.init.BaaMemIsolLD yehKashmiri-ar.init.BaaHehInitLDmeemDotabove-ar.init.MemHehInitaMem.init.MemHehInitmeem-ar.init.MemHehInitmeemDotbelow-ar.init.MemHehInitalefabove-ar.isolalefabove-ar.medi hamza-ar.medihamza-ar.floatkashida-ar.long1 zero-ar.small one-ar.small two-ar.smallthree-ar.small four-ar.small five-ar.small six-ar.smallseven-ar.smalleight-ar.small nine-ar.smallzeroFarsi-ar.smalloneFarsi-ar.smalltwoFarsi-ar.smallthreeFarsi-ar.smallfourFarsi-ar.smallfiveFarsi-ar.smallsixFarsi-ar.smallsevenFarsi-ar.smalleightFarsi-ar.smallnineFarsi-ar.smallfourFarsi-ar.urd.smallsixFarsi-ar.urd.smallsevenFarsi-ar.urd.smallopenfathatan-ar.smallfatha-ar.small2dammatan-ar.smallhighwaw-ar.mediyehabove-ar.medi radical.rtlm dot.percentmeem-ar.medi.KafMemMediTatweelmeem-ar.fina.LamMemFinaExtendedmeem-ar.fina.KafMemFinaExtendedaMem.fina.Extendedmeem-ar.fina.KafMemIsolExtended kashida-ar.1alef-ar.fina.Tatweel kashida-ar.2 kashida-ar.3 kashida-ar.4#sheenDotbelow-ar.init.SenBaaMemInit.seenTwodotsverticalabove-ar.init.SenBaaMemInitseen-ar.init.SenBaaMemInit(seenVinvertedabove-ar.init.SenBaaMemInit#seenFourabove-ar.init.SenBaaMemInitsheen-ar.init.SenBaaMemInit3seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit'seenFourdotsabove-ar.init.SenBaaMemInit*seenDotbelowDotabove-ar.init.SenBaaMemInit(seenThreedotsbelow-ar.init.SenBaaMemInit)sheenThreedotsbelow-ar.init.SenBaaMemInit%sadTwodotsbelow-ar.init.SenBaaMemInit!dadDotbelow-ar.init.SenBaaMemInitdad-ar.init.SenBaaMemInit"sadThreedots-ar.init.SenBaaMemInitsad-ar.init.SenBaaMemInit aYaaBari.isol aYaaBari.finaaYaaBari.fina.PostToothaSen.init.YaaBariaSad.init.YaaBariyehbarreeThreeabove-ar.fina%yehbarreeThreeabove-ar.fina.PostToothyehbarreeTwoabove-ar.fina#yehbarreeTwoabove-ar.fina.PostToothyehbarree-ar.finayehbarree-ar.fina.PostToothsheenDotbelow-ar.init.YaaBari(seenTwodotsverticalabove-ar.init.YaaBariseen-ar.init.YaaBari"seenVinvertedabove-ar.init.YaaBariseenFourabove-ar.init.YaaBarisheen-ar.init.YaaBari-seenTahTwodotshorizontalabove-ar.init.YaaBari!seenFourdotsabove-ar.init.YaaBari$seenDotbelowDotabove-ar.init.YaaBari"seenThreedotsbelow-ar.init.YaaBari#sheenThreedotsbelow-ar.init.YaaBarisadTwodotsbelow-ar.init.YaaBaridadDotbelow-ar.init.YaaBaridad-ar.init.YaaBarisadThreedots-ar.init.YaaBarisad-ar.init.YaaBariaYaaBari.fina.PostAscenderalef-ar.fina.WideaBaa.init.YaaBariaFaa.init.YaaBariwawSmall-ar.lowaLam.init.YaaBariaKaf.init.YaaBari+kehehTwodotshorizontalabove-ar.init.YaaBari#kehehThreedotsbelow-ar.init.YaaBari)kafTwodotshorizontalabove-ar.init.YaaBari%kehehThreedotsupbelow-ar.init.YaaBarikaf-ar.init.YaaBarigafRing-ar.init.YaaBarigueh-ar.init.YaaBarigafTwodotsbelow-ar.init.YaaBarikafRing-ar.init.YaaBarikafDotabove-ar.init.YaaBaring-ar.init.YaaBari!kafThreedotsbelow-ar.init.YaaBarigaf-ar.init.YaaBarikeheh-ar.init.YaaBarigafThreedots-ar.init.YaaBari#kehehThreedotsabove-ar.init.YaaBarikehehDotabove-ar.init.YaaBaringoeh-ar.init.YaaBari!yehFarsiFourbelow-ar.init.YaaBaribeheh-ar.init.YaaBari"yehFarsiThreeabove-ar.init.YaaBarinoonRing-ar.init.YaaBari+behThreedotshorizontalbelow-ar.init.YaaBaribehVabove-ar.init.YaaBarinoonTahabove-ar.init.YaaBariyehVabove-ar.init.YaaBari yehFarsiTwoabove-ar.init.YaaBari"noonThreedotsabove-ar.init.YaaBariyehHamzaabove-ar.init.YaaBaribehDotless-ar.init.YaaBariyehKashmiri-ar.init.YaaBariyeh-ar.init.YaaBarirnoon-ar.init.YaaBariteheh-ar.init.YaaBari!behVinvertedbelow-ar.init.YaaBari tehThreedotsdown-ar.init.YaaBaripeh-ar.init.YaaBaribeeh-ar.init.YaaBaribeh-ar.init.YaaBaritteheh-ar.init.YaaBari#behThreedotsupabove-ar.init.YaaBarinoon-ar.init.YaaBari#tehThreedotsupbelow-ar.init.YaaBari#behThreedotsupbelow-ar.init.YaaBariteh-ar.init.YaaBarihighhamzaYeh-ar.init.YaaBari!yehFarsiVinverted-ar.init.YaaBaritheh-ar.init.YaaBaritteh-ar.init.YaaBarinoonDotbelow-ar.init.YaaBarinoonVabove-ar.init.YaaBarialefMaksura-ar.init.YaaBaritehRing-ar.init.YaaBari'behTwodotsbelowDotabove-ar.init.YaaBari!yehThreedotsbelow-ar.init.YaaBarie-ar.init.YaaBarinoonghunna-ar.init.YaaBariyehFarsi-ar.init.YaaBari noonTwodotsbelow-ar.init.YaaBari(yehbarreeThreeabove-ar.fina.PostAscender&yehbarreeTwoabove-ar.fina.PostAscenderyehbarree-ar.fina.PostAscenderlamVabove-ar.init.YaaBari!lamThreedotsabove-ar.init.YaaBarilam-ar.init.YaaBari!lamThreedotsbelow-ar.init.YaaBarilamDotabove-ar.init.YaaBarilamBar-ar.init.YaaBariqafDotless-ar.init.YaaBari#fehThreedotsupbelow-ar.init.YaaBarifehTwodotsbelow-ar.init.YaaBariqaf-ar.init.YaaBarifeh-ar.init.YaaBari!qafThreedotsabove-ar.init.YaaBarifehDotless-ar.init.YaaBari fehDotmovedbelow-ar.init.YaaBarifehDotbelow-ar.init.YaaBariveh-ar.init.YaaBari!fehThreedotsbelow-ar.init.YaaBaripeheh-ar.init.YaaBariqafDotabove-ar.init.YaaBariaYaaBari.fina.PostAynaHaa.init.YaaBariaAyn.init.YaaBariaMem.init.YaaBari#yehbarreeThreeabove-ar.fina.PostAyn!yehbarreeTwoabove-ar.fina.PostAynyehbarree-ar.fina.PostAynmeemDotabove-ar.init.YaaBarimeem-ar.init.YaaBarimeemDotbelow-ar.init.YaaBarikhah-ar.init.YaaBarihah-ar.init.YaaBarihahHamzaabove-ar.init.YaaBaritcheheh-ar.init.YaaBari!hahThreedotsabove-ar.init.YaaBarijeem-ar.init.YaaBari'hahTwodotsverticalabove-ar.init.YaaBari)hahTwodotshorizontalabove-ar.init.YaaBaridyeh-ar.init.YaaBari,hahTahTwodotshorizontalabove-ar.init.YaaBarihahTahbelow-ar.init.YaaBarinyeh-ar.init.YaaBaritchehDotabove-ar.init.YaaBarihahFourbelow-ar.init.YaaBari#hahThreedotsupbelow-ar.init.YaaBarihahTahabove-ar.init.YaaBaritcheh-ar.init.YaaBarighainDotbelow-ar.init.YaaBarighain-ar.init.YaaBari%ainThreedotsdownabove-ar.init.YaaBari)ainTwodotshorizontalabove-ar.init.YaaBari'ainTwodotsverticalabove-ar.init.YaaBariainThreedots-ar.init.YaaBariain-ar.init.YaaBariaHeh.init.YaaBariheh-ar.init.YaaBarihehgoal-ar.init.YaaBariaTaa.init.YaaBareezah-ar.init.YaaBaritah-ar.init.YaaBaritahThreedots-ar.init.YaaBariaHehKnotted.isolhehDoachashmee-ar.inithehVinvertedabove-ar.inithehDoachashmee-ar.finahehVinvertedabove-ar.finahehDoachashmee-ar.medihehVinvertedabove-ar.mediaHehKnotted.finaaHeh.medi.HehYaaFinaheh-ar.medi.HehYaaFinahehgoal-ar.medi.HehYaaFinaheh-ar.medi.PostToothHehYaahehgoal-ar.medi.PostToothHehYaa hamza.abovezero-ar.medium one-ar.medium two-ar.mediumthree-ar.mediumfour-ar.mediumfive-ar.medium six-ar.mediumseven-ar.mediumeight-ar.mediumnine-ar.mediumzeroFarsi-ar.mediumoneFarsi-ar.mediumtwoFarsi-ar.mediumthreeFarsi-ar.mediumfourFarsi-ar.mediumfiveFarsi-ar.mediumsixFarsi-ar.mediumsevenFarsi-ar.mediumeightFarsi-ar.mediumnineFarsi-ar.mediumfourFarsi-ar.urd.mediumsixFarsi-ar.urd.mediumsevenFarsi-ar.urd.mediumaAlf.fina.NarrowalefMadda-ar.fina.NarrowalefHamzaabove-ar.fina.NarrowalefHamzabelow-ar.fina.Narrowalef-ar.fina.NarrowalefWasla-ar.fina.Narrow!alefWavyhamzaabove-ar.fina.Narrow!alefWavyhamzabelow-ar.fina.NarrowalefTwoabove-ar.fina.NarrowalefThreeabove-ar.fina.Narrow smallv.aboveaHehKnotted.init.YaaBarihehDoachashmee-ar.init.YaaBaribehVbelow-ar.finabehVbelow-ar.initbehVbelow-ar.medibehVbelow-ar.init.BaaRaaIsolbehVbelow-ar.medi.BaaMemFinabehVbelow-ar.medi.LamBaaMemInitbehVbelow-ar.init.BaaDalbehVbelow-ar.init.BaaMemHaaInitbehVbelow-ar.init.BaaBaaYaabehVbelow-ar.medi.BaaBaaYaabehVbelow-ar.medi.KafBaaInitbehVbelow-ar.medi.BaaBaaInitbehVbelow-ar.init.BaaNonIsolbehVbelow-ar.init.BaaSenInitbehVbelow-ar.medi.BaaRaaFinabehVbelow-ar.init.BaaMemInitbehVbelow-ar.init.BaaBaaHaaInitbehVbelow-ar.medi.BaaBaaHaaInitbehVbelow-ar.medi.SenBaaMemInitbehVbelow-ar.init.BaaBaaIsolbehVbelow-ar.fina.BaaBaaIsolbehVbelow-ar.init.BaaBaaMemInitbehVbelow-ar.medi.BaaBaaMemInitbehVbelow-ar.medi.KafBaaMedibehVbelow-ar.medi.BaaNonFinabehVbelow-ar.medi.BaaYaaFinabehVbelow-ar.init.BaaSenAltInitbehVbelow-ar.init.AboveHaabehVbelow-ar.init.BaaHaaInitbehVbelow-ar.init.BaaHaaMemInitbehVbelow-ar.init.HighbehVbelow-ar.medi.HighbehVbelow-ar.init.WidebehVbelow-ar.init.BaaYaaIsolbehVbelow-ar.init.BaaMemIsolbehVbelow-ar.medi.BaaMemAlfFinabehVbelow-ar.init.BaaHehInitbehVbelow-ar.medi.BaaHehMedibehVbelow-ar.init.LDbehVbelow-ar.init.BaaRaaIsolLDbehVbelow-ar.init.BaaDalLD!behVbelow-ar.init.BaaMemHaaInitLDbehVbelow-ar.init.BaaBaaYaaLDbehVbelow-ar.init.BaaNonIsolLDbehVbelow-ar.init.BaaSenInitLDbehVbelow-ar.init.BaaMemInitLD!behVbelow-ar.init.BaaBaaHaaInitLDbehVbelow-ar.init.BaaBaaIsolLD!behVbelow-ar.init.BaaBaaMemInitLD!behVbelow-ar.init.BaaSenAltInitLDbehVbelow-ar.init.BaaHaaInitLD!behVbelow-ar.init.BaaHaaMemInitLDbehVbelow-ar.init.HighLDbehVbelow-ar.init.WideLDbehVbelow-ar.init.BaaYaaIsolLDbehVbelow-ar.init.BaaMemIsolLDbehVbelow-ar.init.BaaHehInitLDbehVbelow-ar.init.YaaBari vbelow-ar.low number-ar.4smallv.above.inverted zero-ar.prop one-ar.prop two-ar.prop three-ar.prop four-ar.prop five-ar.prop six-ar.prop seven-ar.prop eight-ar.prop nine-ar.propzeroFarsi-ar.proponeFarsi-ar.proptwoFarsi-ar.propthreeFarsi-ar.propfourFarsi-ar.propfiveFarsi-ar.propsixFarsi-ar.propsevenFarsi-ar.propeightFarsi-ar.propnineFarsi-ar.propfourFarsi-ar.urd.propsixFarsi-ar.urd.propsevenFarsi-ar.urd.propalefHamzaabove-ar.fina.WidealefWasla-ar.fina.WideaBaa.init.BaaBaaHeh#yehFarsiFourbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHeh$yehFarsiThreeabove-ar.init.BaaBaaHehnoonRing-ar.init.BaaBaaHeh-behThreedotshorizontalbelow-ar.init.BaaBaaHehbehVabove-ar.init.BaaBaaHehnoonTahabove-ar.init.BaaBaaHehyehVabove-ar.init.BaaBaaHeh"yehFarsiTwoabove-ar.init.BaaBaaHeh$noonThreedotsabove-ar.init.BaaBaaHehyehHamzaabove-ar.init.BaaBaaHehbehDotless-ar.init.BaaBaaHehyehKashmiri-ar.init.BaaBaaHehyeh-ar.init.BaaBaaHehrnoon-ar.init.BaaBaaHehteheh-ar.init.BaaBaaHeh#behVinvertedbelow-ar.init.BaaBaaHeh"tehThreedotsdown-ar.init.BaaBaaHehpeh-ar.init.BaaBaaHehbeeh-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehtteheh-ar.init.BaaBaaHeh%behThreedotsupabove-ar.init.BaaBaaHehnoon-ar.init.BaaBaaHeh%tehThreedotsupbelow-ar.init.BaaBaaHeh%behThreedotsupbelow-ar.init.BaaBaaHehteh-ar.init.BaaBaaHehhighhamzaYeh-ar.init.BaaBaaHeh#yehFarsiVinverted-ar.init.BaaBaaHehtheh-ar.init.BaaBaaHehtteh-ar.init.BaaBaaHehnoonDotbelow-ar.init.BaaBaaHehnoonVabove-ar.init.BaaBaaHehalefMaksura-ar.init.BaaBaaHehtehRing-ar.init.BaaBaaHeh)behTwodotsbelowDotabove-ar.init.BaaBaaHeh#yehThreedotsbelow-ar.init.BaaBaaHehe-ar.init.BaaBaaHehnoonghunna-ar.init.BaaBaaHehyehFarsi-ar.init.BaaBaaHeh"noonTwodotsbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHehLD&noonThreedotsabove-ar.init.BaaBaaHehLDpeh-ar.init.BaaBaaHehLDbeeh-ar.init.BaaBaaHehLDbeh-ar.init.BaaBaaHehLD$noonTwodotsbelow-ar.init.BaaBaaHehLD%yehFarsiVinverted-ar.init.BaaBaaHehLD%yehFarsiFourbelow-ar.init.BaaBaaHehLD&yehFarsiThreeabove-ar.init.BaaBaaHehLD$yehFarsiTwoabove-ar.init.BaaBaaHehLDyehFarsi-ar.init.BaaBaaHehLDyeh-ar.init.BaaBaaHehLDyehVabove-ar.init.BaaBaaHehLD'behThreedotsupabove-ar.init.BaaBaaHehLD/behThreedotshorizontalbelow-ar.init.BaaBaaHehLD'tehThreedotsupbelow-ar.init.BaaBaaHehLD'behThreedotsupbelow-ar.init.BaaBaaHehLD%behVinvertedbelow-ar.init.BaaBaaHehLD+behTwodotsbelowDotabove-ar.init.BaaBaaHehLD noonDotbelow-ar.init.BaaBaaHehLD%yehThreedotsbelow-ar.init.BaaBaaHehLDe-ar.init.BaaBaaHehLDcirclebelow-ar keheh-ar.altkeheh-ar.alt.fina gaf-ar.altgaf-ar.alt.finagafRing-ar.altgafRing-ar.alt.fina ngoeh-ar.altngoeh-ar.alt.finagafTwodotsbelow-ar.altgafTwodotsbelow-ar.alt.fina gueh-ar.altgueh-ar.alt.finagafThreedots-ar.altgafThreedots-ar.alt.finakehehDotabove-ar.altkehehDotabove-ar.alt.finakehehThreedotsabove-ar.altkehehThreedotsabove-ar.alt.finakehehThreedotsupbelow-ar.alt!kehehThreedotsupbelow-ar.alt.fina"kehehTwodotshorizontalabove-ar.alt'kehehTwodotshorizontalabove-ar.alt.finakehehThreedotsbelow-ar.altkehehThreedotsbelow-ar.alt.fina aGaf.isol aGaf.fina number-ar.3pagenumber-ar.3 kashida-ar.05aYaaBari.fina.PostToothFinaaBaa.medi.YaaBari!yehFarsiFourbelow-ar.medi.YaaBaribeheh-ar.medi.YaaBari"yehFarsiThreeabove-ar.medi.YaaBarinoonRing-ar.medi.YaaBari+behThreedotshorizontalbelow-ar.medi.YaaBaribehVabove-ar.medi.YaaBarinoonTahabove-ar.medi.YaaBariyehVabove-ar.medi.YaaBari yehFarsiTwoabove-ar.medi.YaaBari"noonThreedotsabove-ar.medi.YaaBariyehHamzaabove-ar.medi.YaaBaribehDotless-ar.medi.YaaBariyehKashmiri-ar.medi.YaaBariyeh-ar.medi.YaaBarirnoon-ar.medi.YaaBariteheh-ar.medi.YaaBari!behVinvertedbelow-ar.medi.YaaBari tehThreedotsdown-ar.medi.YaaBaripeh-ar.medi.YaaBaribeeh-ar.medi.YaaBaribeh-ar.medi.YaaBaritteheh-ar.medi.YaaBari#behThreedotsupabove-ar.medi.YaaBarinoon-ar.medi.YaaBari#tehThreedotsupbelow-ar.medi.YaaBari#behThreedotsupbelow-ar.medi.YaaBariteh-ar.medi.YaaBari!yehFarsiVinverted-ar.medi.YaaBaritheh-ar.medi.YaaBaritteh-ar.medi.YaaBarinoonDotbelow-ar.medi.YaaBarinoonVabove-ar.medi.YaaBarialefMaksura-ar.medi.YaaBaritehRing-ar.medi.YaaBari'behTwodotsbelowDotabove-ar.medi.YaaBari!yehThreedotsbelow-ar.medi.YaaBarie-ar.medi.YaaBarinoonghunna-ar.medi.YaaBariyehFarsi-ar.medi.YaaBari noonTwodotsbelow-ar.medi.YaaBari)yehbarreeThreeabove-ar.fina.PostToothFina'yehbarreeTwoabove-ar.fina.PostToothFinayehbarree-ar.fina.PostToothFinabehVbelow-ar.medi.YaaBariaBaa.init.BaaBaaYaaBari'yehFarsiFourbelow-ar.init.BaaBaaYaaBaribeheh-ar.init.BaaBaaYaaBari(yehFarsiThreeabove-ar.init.BaaBaaYaaBarinoonRing-ar.init.BaaBaaYaaBari1behThreedotshorizontalbelow-ar.init.BaaBaaYaaBaribehVabove-ar.init.BaaBaaYaaBari"noonTahabove-ar.init.BaaBaaYaaBariyehVabove-ar.init.BaaBaaYaaBari&yehFarsiTwoabove-ar.init.BaaBaaYaaBari(noonThreedotsabove-ar.init.BaaBaaYaaBari#yehHamzaabove-ar.init.BaaBaaYaaBari behDotless-ar.init.BaaBaaYaaBari!yehKashmiri-ar.init.BaaBaaYaaBariyeh-ar.init.BaaBaaYaaBarirnoon-ar.init.BaaBaaYaaBariteheh-ar.init.BaaBaaYaaBari'behVinvertedbelow-ar.init.BaaBaaYaaBari&tehThreedotsdown-ar.init.BaaBaaYaaBaripeh-ar.init.BaaBaaYaaBaribeeh-ar.init.BaaBaaYaaBaribeh-ar.init.BaaBaaYaaBaritteheh-ar.init.BaaBaaYaaBari)behThreedotsupabove-ar.init.BaaBaaYaaBarinoon-ar.init.BaaBaaYaaBari)tehThreedotsupbelow-ar.init.BaaBaaYaaBari)behThreedotsupbelow-ar.init.BaaBaaYaaBariteh-ar.init.BaaBaaYaaBari"highhamzaYeh-ar.init.BaaBaaYaaBari'yehFarsiVinverted-ar.init.BaaBaaYaaBaritheh-ar.init.BaaBaaYaaBaritteh-ar.init.BaaBaaYaaBari"noonDotbelow-ar.init.BaaBaaYaaBari noonVabove-ar.init.BaaBaaYaaBari!alefMaksura-ar.init.BaaBaaYaaBaritehRing-ar.init.BaaBaaYaaBari-behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari'yehThreedotsbelow-ar.init.BaaBaaYaaBarie-ar.init.BaaBaaYaaBari noonghunna-ar.init.BaaBaaYaaBariyehFarsi-ar.init.BaaBaaYaaBari&noonTwodotsbelow-ar.init.BaaBaaYaaBaribehVbelow-ar.init.BaaBaaYaaBaritcheheh-ar.init.BaaYaaBarijeem-ar.init.BaaYaaBaridyeh-ar.init.BaaYaaBari/hahTahTwodotshorizontalabove-ar.init.BaaYaaBarihahTahbelow-ar.init.BaaYaaBarinyeh-ar.init.BaaYaaBari tchehDotabove-ar.init.BaaYaaBarihahFourbelow-ar.init.BaaYaaBari&hahThreedotsupbelow-ar.init.BaaYaaBaritcheh-ar.init.BaaYaaBariaHaa.init.BaaYaaBaribehVbelow-ar.init.BaaBaaHehbehVbelow-ar.init.BaaBaaHehLDyehKashmiri-ar.init.BaaBaaHehLDdammainverted-ar.urddammainverted-ar.smallkasra-ar.smallkasratan-ar.small zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.smallyehFarsiTwodotsabove-ar.inityehFarsiThreedotsabove-ar.inityehFarsiTwodotsabove-ar.mediyehFarsiThreedotsabove-ar.medi'yehFarsiTwodotsabove-ar.init.BaaRaaIsol)yehFarsiThreedotsabove-ar.init.BaaRaaIsol'yehFarsiTwodotsabove-ar.medi.BaaMemFina)yehFarsiThreedotsabove-ar.medi.BaaMemFina*yehFarsiTwodotsabove-ar.medi.LamBaaMemInit,yehFarsiThreedotsabove-ar.medi.LamBaaMemInit#yehFarsiTwodotsabove-ar.init.BaaDal%yehFarsiThreedotsabove-ar.init.BaaDal*yehFarsiTwodotsabove-ar.init.BaaMemHaaInit,yehFarsiThreedotsabove-ar.init.BaaMemHaaInit&yehFarsiTwodotsabove-ar.init.BaaBaaYaa(yehFarsiThreedotsabove-ar.init.BaaBaaYaa&yehFarsiTwodotsabove-ar.medi.BaaBaaYaa(yehFarsiThreedotsabove-ar.medi.BaaBaaYaa'yehFarsiTwodotsabove-ar.medi.KafBaaInit)yehFarsiThreedotsabove-ar.medi.KafBaaInit'yehFarsiTwodotsabove-ar.medi.BaaBaaInit)yehFarsiThreedotsabove-ar.medi.BaaBaaInit'yehFarsiTwodotsabove-ar.init.BaaNonIsol)yehFarsiThreedotsabove-ar.init.BaaNonIsol'yehFarsiTwodotsabove-ar.init.BaaSenInit)yehFarsiThreedotsabove-ar.init.BaaSenInit'yehFarsiTwodotsabove-ar.medi.BaaRaaFina)yehFarsiThreedotsabove-ar.medi.BaaRaaFina'yehFarsiTwodotsabove-ar.init.BaaMemInit)yehFarsiThreedotsabove-ar.init.BaaMemInit*yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.SenBaaMemInit,yehFarsiThreedotsabove-ar.medi.SenBaaMemInit'yehFarsiTwodotsabove-ar.init.BaaBaaIsol)yehFarsiThreedotsabove-ar.init.BaaBaaIsol*yehFarsiTwodotsabove-ar.init.BaaBaaMemInit,yehFarsiThreedotsabove-ar.init.BaaBaaMemInit*yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit,yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit'yehFarsiTwodotsabove-ar.medi.KafBaaMedi)yehFarsiThreedotsabove-ar.medi.KafBaaMedi'yehFarsiTwodotsabove-ar.medi.BaaNonFina)yehFarsiThreedotsabove-ar.medi.BaaNonFina'yehFarsiTwodotsabove-ar.medi.BaaYaaFina)yehFarsiThreedotsabove-ar.medi.BaaYaaFina*yehFarsiTwodotsabove-ar.init.BaaSenAltInit,yehFarsiThreedotsabove-ar.init.BaaSenAltInit%yehFarsiTwodotsabove-ar.init.AboveHaa'yehFarsiThreedotsabove-ar.init.AboveHaa'yehFarsiTwodotsabove-ar.init.BaaHaaInit)yehFarsiThreedotsabove-ar.init.BaaHaaInit*yehFarsiTwodotsabove-ar.init.BaaHaaMemInit,yehFarsiThreedotsabove-ar.init.BaaHaaMemInit!yehFarsiTwodotsabove-ar.init.High#yehFarsiThreedotsabove-ar.init.High!yehFarsiTwodotsabove-ar.medi.High#yehFarsiThreedotsabove-ar.medi.High!yehFarsiTwodotsabove-ar.init.Wide#yehFarsiThreedotsabove-ar.init.Wide'yehFarsiTwodotsabove-ar.init.BaaYaaIsol)yehFarsiThreedotsabove-ar.init.BaaYaaIsol'yehFarsiTwodotsabove-ar.init.BaaMemIsol)yehFarsiThreedotsabove-ar.init.BaaMemIsol*yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina,yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina'yehFarsiTwodotsabove-ar.init.BaaHehInit)yehFarsiThreedotsabove-ar.init.BaaHehInit'yehFarsiTwodotsabove-ar.medi.BaaHehMedi)yehFarsiThreedotsabove-ar.medi.BaaHehMediyehFarsiTwodotsabove-ar.init.LD!yehFarsiThreedotsabove-ar.init.LD)yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD%yehFarsiTwodotsabove-ar.init.BaaDalLD'yehFarsiThreedotsabove-ar.init.BaaDalLD,yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD(yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD*yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD)yehFarsiTwodotsabove-ar.init.BaaNonIsolLD+yehFarsiThreedotsabove-ar.init.BaaNonIsolLD)yehFarsiTwodotsabove-ar.init.BaaSenInitLD+yehFarsiThreedotsabove-ar.init.BaaSenInitLD)yehFarsiTwodotsabove-ar.init.BaaMemInitLD+yehFarsiThreedotsabove-ar.init.BaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD)yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD,yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD.yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD)yehFarsiTwodotsabove-ar.init.BaaHaaInitLD+yehFarsiThreedotsabove-ar.init.BaaHaaInitLD,yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD#yehFarsiTwodotsabove-ar.init.HighLD%yehFarsiThreedotsabove-ar.init.HighLD#yehFarsiTwodotsabove-ar.init.WideLD%yehFarsiThreedotsabove-ar.init.WideLD)yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD)yehFarsiTwodotsabove-ar.init.BaaMemIsolLD+yehFarsiThreedotsabove-ar.init.BaaMemIsolLD)yehFarsiTwodotsabove-ar.init.BaaHehInitLD+yehFarsiThreedotsabove-ar.init.BaaHehInitLD$yehFarsiTwodotsabove-ar.init.YaaBari&yehFarsiThreedotsabove-ar.init.YaaBari&yehFarsiTwodotsabove-ar.init.BaaBaaHeh(yehFarsiThreedotsabove-ar.init.BaaBaaHeh(yehFarsiTwodotsabove-ar.init.BaaBaaHehLD*yehFarsiThreedotsabove-ar.init.BaaBaaHehLD$yehFarsiTwodotsabove-ar.medi.YaaBari&yehFarsiThreedotsabove-ar.medi.YaaBari*yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari,yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari ampersand.aralam-ar.medi.Lellah2 kashida-ar.5 kashida-ar.6 kashida-ar.7aKaf.init.PreHehaKaf.medi.PreHeh*kehehTwodotshorizontalabove-ar.init.PreHeh"kehehThreedotsbelow-ar.init.PreHeh(kafTwodotshorizontalabove-ar.init.PreHeh$kehehThreedotsupbelow-ar.init.PreHehkaf-ar.init.PreHehgafRing-ar.init.PreHehgueh-ar.init.PreHehgafTwodotsbelow-ar.init.PreHehkafRing-ar.init.PreHehkafDotabove-ar.init.PreHehng-ar.init.PreHeh kafThreedotsbelow-ar.init.PreHehgaf-ar.init.PreHehkeheh-ar.init.PreHehgafThreedots-ar.init.PreHeh"kehehThreedotsabove-ar.init.PreHehkehehDotabove-ar.init.PreHehngoeh-ar.init.PreHeh*kehehTwodotshorizontalabove-ar.medi.PreHeh"kehehThreedotsbelow-ar.medi.PreHeh(kafTwodotshorizontalabove-ar.medi.PreHeh$kehehThreedotsupbelow-ar.medi.PreHehkaf-ar.medi.PreHehgafRing-ar.medi.PreHehgueh-ar.medi.PreHehgafTwodotsbelow-ar.medi.PreHehkafRing-ar.medi.PreHehkafDotabove-ar.medi.PreHehng-ar.medi.PreHeh kafThreedotsbelow-ar.medi.PreHehgaf-ar.medi.PreHehkeheh-ar.medi.PreHehgafThreedots-ar.medi.PreHeh"kehehThreedotsabove-ar.medi.PreHehkehehDotabove-ar.medi.PreHehngoeh-ar.medi.PreHehsmallnoon.abovesmallteh.abovesmallmeem.above zero-ar.numr one-ar.numr two-ar.numr three-ar.numr four-ar.numr five-ar.numr six-ar.numr seven-ar.numr eight-ar.numr nine-ar.numrzeroFarsi-ar.numroneFarsi-ar.numrtwoFarsi-ar.numrthreeFarsi-ar.numrfourFarsi-ar.numrfiveFarsi-ar.numrsixFarsi-ar.numrsevenFarsi-ar.numreightFarsi-ar.numrnineFarsi-ar.numrfourFarsi-ar.urd.numrsixFarsi-ar.urd.numrsevenFarsi-ar.urd.numrkafRing-ar.altkafRing-ar.alt.fina_FDFD _arrowheaduni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsGcarongcaronuni0237uni02BBuni02BCuni02BEuni02BF gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307uni0308uni030Auni030Cuni0312uni0315 dotbelowcombuni0326uni0327uni0328uni1E02uni1E03uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E1Euni1E1Funi1E24uni1E25uni1E28uni1E29uni1E2Auni1E2Buni1E40uni1E41uni1E56uni1E57uni1E60uni1E61uni1E62uni1E63uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6FWgravewgraveWacutewacute Wdieresis wdieresisuni1E92uni1E93uni1E96uni1E97Ygraveygraveuni2010uni2011 figuredashuni2015 quotereverseduni201Fonedotenleaderuni202Fminuteseconduni2038uni203Euni2042uni2074Eurouni2213 exclam.latnparenleft.latnparenright.latn period.latn slash.latnbracketleft.latnbackslash.latnbracketright.latnbraceleft.latnbar.latnbraceright.latnguillemotleft.latnguillemotright.latn gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0323.cap uni0308.cap uni030C.cap zero.propone.proptwo.prop three.prop four.prop five.propsix.prop seven.prop eight.prop nine.propf_ff_if_f_if_lf_f_lf_bf_f_bf_kf_f_kf_hf_f_hf_jf_f_ji.TRK zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numrone.numrtwo.numr three.numr four.numr five.numrsix.numr seven.numr eight.numr nine.numr _arrowhead2_x uni0305.100 uni0305.1000 uni0305.1100 uni0305.11500 uni0305.1200 uni0305.1300 uni0305.1500 uni0305.1600 uni0305.1700 uni0305.1800 uni0305.1900 uni0305.200 uni0305.2000 uni0305.2200 uni0305.300 uni0305.400 uni0305.500 uni0305.600 uni0305.700 uni0305.800 uni0305.900PJ *013Z[o~  ?BCLf&'+:<{} J L | ~RT NOOPilY\JKUV (Z,Z,:BLPZ^lt`l  ;o@8s.*p  :nB <~"t]eZ'[\^_abdgjkLMOXY\`f O]`aeloNQZ^O DDFLTarablatncurskernkernmarkmkmkss055 *4 (08@HPX`hpx>HR\fpzd`TRK `*`40123,-./DARA DKSH DMLY DSND DURD D !"#$&() !"#$&()+@\D  nP& 0 fHRn.8 &$.8FNV^ 9 4hI4^I4T@4B5a3Y3fbI3~3RI33>I22325&6P7x523P2334344XZ3<2TI4:32 I432I3~2[2zI322xI7688l2&22N2I2f[2h2j523| 2Z12n5z651124<2j2^12g2N2Z2`%2@12<1~H|SS922 2h%2l2J1@2nn3 2`3F2j282t2>2~3X231 8 nn963nn==333zzzI9$59nn'';;==6p6TMrXX==yy==IIFExEE~EEEEEEEEEEEEEEEEEEEEEEExExExExExEEEEEEEE~E~E~E~E~E~E~E~E~E~E~EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE.QE ,,  - -<P&#0   $$k+Xz= .e]Zjppv|nw^a1A^ x  ¼(c1bc$1 eo$%&o(VW)py (*#znttz x y]`aeloNQZ^Obg`ʻ\޻jx.Լ tzWh 7xO 77  ccĻܻ軎ĻĻܻʻлֻܻbc (+[\^_adgjkLMOXY\f Opy (*.EOnwYpy (*nw 99WWss]a{!*]`defloNQUVWZ^ab O":(@FLL.^RLX4:^   @Ajjkk?@AN%*[o#'(*Lf-HILOOMNKL"$ x    !1C.UWhgy ar}} }}KL"$x   !.Wh ar3&()[\^_abcdghijkmnLMOPRSTXY[\]_`cdefKL"$x   !.Wh ar!1144?BXX"#%+,(11*89+-; KYhXo{hANu " 1  . 7 F 44?BXX!"$+,'11)89*,: JYhWo{gANt " 1  . 7 F ++KL"$x     ! G K.ar3xxxR*$*#45ABXX+,1189ww ~~!" 2Yh?o{O F F\ M M] ^ n " 1~ x x    . 7 F NNUU,013Z~*,  ?BC&+:<{} J L | ~R }T Y,/01 C E  NPiTlnY\Nw0013OQZ~)+  ?BC&+:<vx{}} J L | ~R {T WR'*+, NPiPmjY_IoR::4@FLL4RRX^djp|v|844 (>>>>.4DVJ,PV22o06MNOPXYZ567'(-./012789:Z[\]bcdehknqrvxyz|}~4:?CHKPQWZ]`abx !"#$%&'(=Q{%9\p  1 t  @ T t K L M N O P Q R S T U V W X Y " 6 ^ r j } '1FZ =Q*>vwxyz{|}~1D,BXn4J`v,@^_1Dlmn|\]^8APW~'(*+,-./0123456789:;<=?BMNOPQRSTUVWXYZ[\]bcdehikmnqrtvxyz|}~,4:>?BCFGHIKLPQSTVWZ]`abcdio]^`bce;=BDf#%*,Z\ac   # % r t y {  > @ E G r t y { / " ' ) I M O \ ^ c e , / 0 D h j o q "$DFKM ;=BD|}{|~(*/1tu /168LMNO #%,9;BOQXegn{}+-4ACJWY`mov *,13J^_`d"$;=Dlmnz|\]^jjS7h'$*SS*tt    ..11\\``qqstvv  % 21  D 2 8O V L \_ ps|  <= 024479<=@@BDFFHILLOOSUWX!$%((*,..014477;=?@OQSSVX[\__aceeghkknnrtvw                 3 5 7 7 : < ? @ C C E G I I K L O O R R V X Z [                                ! " % % ' ) + + - . 1 1 4 4 8 : < = Q S U U X Z ] ^ a a c e g g i j m m p p t v x y              "$&&(),,//357;==@BEFIIKMOOQRUUXX\^`a024479<=@@BDFFHILLOOSUWX!!$&)*--/1335699<<@BDE    "#  "$&&(),,//3578 #&'RSKL"$x024479<=@@BDFFHILLOOSUWX!$%((*,..014477;=?@OQSSVX[\__aceeghkknnrtvw                   3 5 7 7 : < ? @ C C E G I I K L O O R R V X Z [                 !                   ! " % % ' ) + + - . 1 1 4 4 8 : < = Q S U U X Z ] ^ a a c e g g i j m m p p t v x y G K              "$&&(),,//357;==@BEFIIKMOOQRUUXX\^`a024479<=@@BDFFHILLOOSUWX|.Wh !!$&)*--/1335699<<@BDE    "#  "$&&(),,//3578 #&'RSar. ^ġ >"(.4:@FL RX^d&j$,pv|*206z<8>BDĠJʠPVО ֠\HNbThnZtz` $**fơ"06lr̡(x.<<BBHHNNTZZ`` fl4~ҡ:rrx~̟ء@؟ޡFL &&&&,,,,2222zzzz8888>DDDDJPVV \bbbbhhhhnnnttttzzzz""""((((....4444::::@@@@FFFFLLLL """(((...444:::@@@FFFLLL R2,X^dpjppppvv|8ġģ&ʣУoPV\bhntz ʘИ蘪06 <*06<BHƘ˜NNښZfrTx暄Z̚`fҚlƚr ޗX"(.4: ,@8FLRX^djpv|$>ꙈJPVbnz****ʚ***֚06` <$00BBBB0*0B00B006BHHHH<HHBHƚHNNTZ`flTrƚx~ZZZZZZZZZZZZZZZ̚`fDҚlDƚrҚޚxxxxxxxؚ~~~~~~~ &,28>DJPV\bhntzԛԛ "( .&&4,,q ||zDzz888ҀҚ~~rr**ҙtDz|"|zzzzzzzz8888888FҀҋFҀҀҀҀҚ~~~rr(.*Ќ*ҙҌ*****4ttt88DDDDtD:@Қ~r8zzzzzzz88FҚ~LR*X^t~88dj8p􋠋tt8~~ҙzvxV|tzzLҌ|>8ڙ8~4DҌ0tHt:`f8րrr8~~8ttL (:>8\ &ƚ.Ԛ:쓞ƁPD\ƀ \LƎȏ*ƏN~4LL \L򐆐ƙ\ȋĚF.@ƙ.:Jƙ܋ʘN:>t X`d&2J|ēP\hЗFj“ȖzƓ":XƙtƔƔƔĔ‮ 0Bf~ ƙƖ ,Vvtz"\|P":暂tրƗtXX\nhbtttttttzzzzzzzzzzzzzzzzzzzܙ|||||||||||||>>>>>>>>>>>>>88888888888888888 ~4~4~4"******š**$*000000000000000000tttttt6>>>>>>>>>>>>888888888888888\\\ &&& &,28>DJP\V\bƚ......h...n................t....z........444—șԍԍԍԍԍԍԍԍԍԍԍԍԍԍԍ΍Ԛ:::::ښ:::::::::::::::::::::::::: 쓞ƀƎ"ƁPPPPPPPPPPP(PPP:D:DDDDDD4.DDD..4:đĚ@FL\RX^ƙ\djpvƎ| \LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL֎֎֎֎֎ĎʎЎ֎܎◈ƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƎȓȏȏ$ $$*ƀƀƀƀƀƏ0ƀƀƏ6ƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƏ<ƀƀƀƏBƀƀƀƀƀƀƀƏNNNNNHNNN``ZTTTZ`ę@f@ʙlrx~Й@Џ򏜙򏢙򏮏~4~4~4~4~4~4~4~4~4~4ƚ ̏ҏؙޙLLLLLLLLLLLLLLLL֚   22,&&&,2 8>>DJPV\hLhLLLLLLLbLLLbbLhntz򐀙򐆐ƙ\Ɛș\\\\rrrFFܚFFFΚFFԚFFFښFFFFFFFFFFFFFFFFFFFF ................."(4.4:@LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRFRLdRX^Rdj......p...v....................|........:JJJJJJJJJJđĚƀƀƀƀƀƑʀƀƀƑЀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƙܑܑܑܑܑܑܑܑܑܑܑܑܑܑܑܑܑ֙NN:::  ttttttttttttttttt $ *XX0XXXTX6XJJDJĔĔĔĔĔĔĔĔĔĔĔĔĔĔĔĔēPPPPPPPPPPPPPPPPP\\\\\\V\\\\bhhhhhntzFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFjjjj““““““““““““““““ȓȓȓȓȓȓȓȓȓȓȓȓȓȓȓȓȚLƀƓΓԓړ  """""""""""""""..(((.4:::@::@FFFFLXXRXLRX^dƀƔjƙttttttƀƔpv|bƙƀƔƔƙ\ƙ֔Ĕ֔ĔĔĔĔĔĔДʔĔĔĔʔʔД֔ܔܔܔ耮   $$$6060000000*000**06HBHBBBBBBB,>,,,,,,82,,,228>DJVVPVvvvvvv\vvvbvvvvvvvvvvvvvvvvhvvvvnvvvvvvvvtz""""""""""""""""""""""""""""""""""""""\\\||||||||||||||||||||||||||||||||||||||PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP"":Ț::Κ:Ԗږ"(. tttttt  "(.444tttttt:@FLXXRX^dj:@FLXXRX^djp|||||||||||||||v|((((((((((((((((((((((......................44:::::::::::::::::::ƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƀƙ@ėʙ@Й֚FFFFFFFFܗFFFFFFFFFFFLLLLLLLLLLLLLLLLLLLLLLRRXXXXXXXXXXXXXXXXXXXXNNNNNN^N NN^NNNNNNNNddddd6dd$ddd*d0dd66ddjjjjjjjjjjjjjjjjjjjjjjp>DDDJJJPPV\bhnttzL(.:Lƙ򚎚Fƙ.ƚ XdFjv"|P(.:ƙFƙXdjv|ҚҚҚҚҚҚ€Қ€ҚҚҚș΀Ԛ̙̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀ڙڙڙڙڙڙڙڙڙڙښ((..44::LLƀƚ@@򚎚FFLLRR..ƀƚ XX^^FFppvv""||PP((..44::ƀƚ@@FFLLRRXX^^ddjjppvv||̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̀̚̚Қ #=>)?+IWKv %)')/562??4AD5FG9IJ;Vl=*M*L! '-- 21&0/.#ON "% $< 43D:; PA E$ &&0   @ F###       2"1%/.$       )(!)(!,+=!7HKIJ,+'>56BC89G?% ""#A#@% ())3? +* CB  $4 -,2 D 9     +                *$      "!"!'&85/>;=<'&%. 7(01:6yll$l*Ql6~llq.lllTllMMll~~~~uull|n~~~ll~~~n4{lq.Q~l0l~lll6l<lQQ~lllHlllBllHllllNllllTMMMMMMMMMlllZl`ll`lll~~~~~ulllllll~~|m|~~~|||nn|~~~lf{l{l{l{l{l~llq.q.q.q.QQQQQQQQ~~~Qlrlxlq.Ml~~l~~tllllllllMll~lllll||nn4n4{l{l{l~ll~ll~llll~~lQQlll~~~lll}{Zlm2rfl{s}pl}vMMm{lmm~l{l{~q.~~w:ox~n"vt~X\{l~~n4Mln4m{l{l~l~l~~~~nF{l~~~MuQ~unp~Qq|}|~~q^nnn~M{Qoo}}~}M~oxp}oovnp{~vvp p,~{X\}~pDlp\{pzv~pp}{B{l{$}{B}m~lp~pp}}q(q.vuMq^qduBqvvRvn~m mmXt}q}{}Xb}}v}}}rfrx~rw.{Brrrs }{ms }m~vbtv{fw.sz{lXhvsss~mw@wF~ sst"tFt^utttttttt}~tv~tvv~~}}u v~u0~uB}uT~u`M~uf}uxM~u~u|u{~~{luu}vuuuv~~{vVv\vbvn~$~*~~{Tv}pvvvm vm&}pvv~v~~v~{`{Z{f{f|{Z{`{Tm,m2m2m2m2m2m2rfrfrfrfrfrfrf{{{{{{{sm8mDm>ssssssmDssmJsmPmVssm\mb}p}p}p}p}p}p}pmn}p}p}p}p}p}p}p}pmnmt}p}p}p}pmhmh}p}p}p}p}p}p}p}p}p}pmnmt}p}p}pmz}v}v}v}v}v}v}v}v}v}v}v}v}v}v}vm}v}vm}v}v}v}v}v}v}v}v}v}v}v}v}v}v}v}vm}v}v}vMMMMMMMMMMMMMMmmmmmmmmm{m{{{{{{{{m{{mmmmmmmmmmmmmmmmmmmmmmmmmmmmmm~~~~~~~~~m~~~m~~~{l{l{l{l{l{l{l{l{lm{l{l{lm{l{l{l{nn {{~~~~|n~n~|nn|~~~||||||oxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxn"n"n"n"n"n"n"n"n"n"n"n"n"n"n"n"n"n"vvvvvvttttttX\X\X\X\X\X\~~~~~~MMMn4n(n4n4n4n4n.n4n4{l{l{l{lMMMn@n:n@MMMMMMMMMM~~~~~~~~~~~~~~~nFnFnFnFnFnFnFnFnFnFnF{l{l{l{l{l{l{l{l{l{l{l~~~~~~~~~nLnL~~~MMMQQQMMMMMMMMMMMMMnRnXnpnpnpnpn^npnpnpnpnpndnjnpQQQQQQq|nv}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|~~~nn|n~~~~~~~~~~~~~~~~t^t^t^t^t^t^t^t^t^t^t^t^t^nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn~~~~~~MMMMMM{{{{{{{{{n{{{n{{{nn}QnQQ}}oQQn}QQnQoo oQoQnnQ}QQoQQQ}oo Q}}oooooo}}}}}}oo$}}}}}}}o6}}}}}}o*}o6o<}}}}o0o0}}}}}}}}}o6o<}}}~oB{}}}}}}}oT}}}}}}oH}oToZ}}}}oNoN}}}}}}}}}}oToZ}}}MMMMo`MMMMMMMMMof~~~~~~~~~~~~~~~ol~~or~~~~~~~~~~~~~~~~~or~~~oxpppppppppo~pppopppo}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}oo}oooo}}oooo}ooooooooooooo}oooooo}ooo}}ooooooooooooooovnvnvnyvnvnooppppopppppopp{{{{{{{{{{{{{{{{{{p~~~~~~~~p~~~~~~~~pp~~~~~~~~~~~~~~~pp~~~vvvvvvvp p p p p p p&p,{{p,p,p&p,~~~~~~{{{{{{{{{{{{{p2{{{X\p8}}}}}}}}}}}}}}}p>}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~pDpDpDpppJpVpPpVppppppppppp\p\p\p\p\p\p\p\p\p\p\p\p\{{{{{{{{{pb{{{ph{{{pzpzpzpzpzpzpzpzpzpnpzpzpzptpzpzpzvvvvvv~~~~ppppppppppppp}}}}}}}}}}}}}}}p}}}}}}}}}}}}}}}}}}}}}}}}{Bp{B{B{B{Bp{B{B{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{$p}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}{B{B{B{B{B{B{B{B{B{B{Bps}}}}}}}p}}}}}}p}pp}}}}pp}}}}}}}}}pp}}}{${${$ppp{${${${${${${${${${$~~~~~~~~~~~~~~~~~~pppppppppppppppppppppp~~ppppppppppppppppppqq }}}}}}}q}}}}}}q}qq"}}}}qq}}}}}}}}}}qq"}}}}q(q(q(q(q(q(q(q(q(q(q(q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.QQQq:q4q:QQQQQQQQQQuuuuuuuMMMMMMMMMMMMMMMMMMq@qFq^q^q^q^qLq^q^q^q^q^qRqXq^qdqdqdqdqdqduBqvqvqvqvqvqvqvqvqvqjqvqvqvqpqvqvqvvvvvvvqRq|q|RRqRvnvnvnvnvnvn~~~qXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtqq}}}}}}}q}}}}}}q}qq}}}}qq}}}}}}}}}qq}}}qqqqqqqqqqqqqqqqqq}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}{qq}}}}}}}q}}}}}}}}qq}}}}qq}}}}}}}}}}qq}}}XbuqqXbXbXbXbXbXbqXbXbqXbqrXbXbr}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}r }}}}}}}}r}}}}}}r}rr$}}}}rr}}}}}}}}}rr$}}}v}}}}}}}}}}}}}}}}}}r*}}}}}}}}r0}}}}}}}}r0r6}}}}}}}}}}}}}}}r0r6}}}r<}}}}}}}}rN}}}}}}rB}rNrT}}}}rHrH}}}}}}}}}rNrT}}}rfrZrfrfrfrfr`rfrfrxrxrxrxrxrxrxrxrxrlrxrxrxrrrxrxrx~~~r~xr~~~~~~~~~~~rrw.w.w.w.w.w.sssrrrssssssssssrrrrrrrrrrrrrrrrrrrrrrrr}rrrr}}rrrr}rrrrrrrrrrrrr}rrrrrr}rrr}}sss s s s ss s s s s sss }}}}}}}}}r}}}}}}}}rr}}}}rr}}}}}}}}}}rr}}}{{{{{{{{{{{{${${$rrr{${${${${${${${${${$sss s s s ss s s s s sss s&}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}s,}}}}}}}}}}}}}}}s2}}s8}}}}}}}}}}}}}}}}}s8}}}s>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~vbvbvbvbvbvbvbvbvbsDvbvbvbsJvbvbvbshshshsPshtshshsbtsVts\tsbshsnvvvstvvszszszszszszsz{l{l{l{l{l{l{l{l{ls{l{lsss{lsXhXhXhXhXhXhXhXhXhsXhXhXhsXhXhXhvvvvvvvvvvvssssssssssssssssssssss~~~~~~~~~~~~~~~s~~s~~~~~~~~~~~~~~~~~s~~~ss~ ~ ~ ~ ~ ~ ~ s~ ~ ~ ~ ~ ~ s~ ss~ ~ ~ ~ ss~ ~ ~ ~ ~ ~ ~ ~ ~ ss~ ~ ~ ssssssssssssss~*ut"t"t"~*~*tt"t"s~*t"t"tt"ttut"ut"t tt"t"~*t"t"ut"t"u~*ttt"~*~*tFtFtFt4tFu`tFtFt.t(t.t4tLt:t@tFtLt^t^t^t^t^t^t^t^t^tRt^t^t^tXt^t^t^{Zttttttdtttttjtptvt|tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt}}}}}}~~~~~~ttttttttttttttttttvvvvvv~~~v~~ttttttvvvvvvtv}}tvtu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}u u u uu u uv~~uvuu~u*~u$~~~~~~~u*~~~~~~u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0~~~~~uBuBuBuBu6uBuBu<uBuBuBuBuBuB}}}uH}}uTuTuTuNuTuT~~~~~u`u`u`u`uZu`u`u`u`u`u`u`u`u`MMMMMMMMMMMMMMMMMM~~~~~~~~~~~~~~~~~~ufufufufufufuf}{{}}}}{{}{}}uxuxuxuxuxuxuxuxuxuluxuxuxuruxuxuxMM~u~u~u~u~u~u~u~u~u~u~u~uuuuu|u{u{u{{{{{{{u{{{{{{uu~~~~~~~u~~~~~~u~uu~~~~uu~~~~~~~~~~uu~~~~~~~~~~~~~~~~~~~~{l{l{luuuuuuuuuuuuuuuuuuuu}v}v}vu}v}vuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuvvvvvvv~~~~~~~~~~~~~~~v~~v~~~~~~~~~~~~~~~~~v~~~~{v v&~vVv,vVvV~~vJvVvVv2~vVvVv8vVvJvPvDvVvDvVv>v>vV~vVvVvDvVvVvV~vJvPvV~~v\vbvtvn}vh}vnvtXnvz~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$v~$~$v~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$v~$~$~$v~*~*~*~*~*~*~*~*v~*~*~*~*~*~*v~*vv~*~*~*~*vv~*~*~*~*~*~*~*~*~*vv~*~*~*~~~~{T{T{Tv{T{Tvvvvvv}p}p}p}p}p}pvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv}p}p}p}p}p}pvvvvvvvvvvvvvvvvvvvvvvvv~~~~~~vvvvvv~~~v~~~~~~~~vvvvvv~~~v~~{f{f{f{f{f{f{f{f{fv{f{fwvv{fww.w.w.ww.w w.w.wwwww4w"w(w.w4w:w@wFwLwLwRwvwvw|wp~0~0wX~0~0~0~0~0wpw^wdwdwj~0wpwvw|Nwwww~6~6w~6~6~6~6~6wwwww~6wwwwwwww~<~<w~<~<~<~<~<wwwww~<wwwwz z zz~B~By~B~B~B~B~Bzyyyy~Bzz z|,xxxw~H~Hw~H~H~H~H~Hwwwww~Hwxxx x0x0x~x*~N~Nx~N~N~N~N~Nx*xxxx$~Nx*x0x~x6xZxZx`xT~T~Tx<~T~T~T~T~TxTxBxHxHxN~TxTxZx`xfxxxx~Z~Zxl~Z~Z~Z~Z~Zxxrxxxxx~~Zxxxxxxxx~`~`x~`~`~`~`~`xxxxx~`xxxxxxxx~f~fx~f~f~f~f~fxxxxx~fxxxxyyy y~l~lx~l~l~l~l~lyyyyy~lyyy y&yJyJyPyD~r~ry,~r~r~r~r~ryDy2y8y8y>~ryDyJyPyVyzyzyyt~x~xy\~x~x~x~x~xytybyhyhyn~xytyzyyyyyy~~~~y~~~~~~~~~~yyyyy~~yyyyyyyy~~y~~~~~yyyyy~yyyyz z zz~~y~~~~~zyyyy~zz zzz:z:z@z4~~z~~~~~z4z"z(z(z.~z4z:z@zFzjzjzpzd~~zL~~~~~zdzRzXzXz^~zdzjzpzvzzzz~~z|~~~~~zzzzz~zzzzzzzzzzzzzzzzzzz{{{ {{{{{{{{{l{l{ll}l R8l{l{l{l{l{l{l{l{l{l{l{l~~~~~{lM{${*MMM{${${${${${${${${${${${*{*{*{*{*{T~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{T{T{T~~~~~~~~~~~~~~~~~~~{T{6{<{l{T{T{T{l{l{l{6{6{6{6{6{6{6{6{6{0{6{6{6{6{6{6{6{<{<{<{<{<{<{<{l{l{l~~~~~~~{B{B~~{B{H{H{H{N{N{Z|{`{Z{T{Z{`{f{f{l{l{r{x{~}|{{{{}{{{{}{{Xt{}{{}{{{{{}{~{{|||||| |&|,|2|z|8|>|D|J|P|V|\|b|h|n|t|z|||~|~||~~~~~~~|~~}d~~~}d~||~~~~||~~~~~~~~~~||~~~|||||~~|~~~~~||||}j~|||~~~~~~~~~~~~~~~~~~~~~~~~||lM~||~~~~~~~|~~|~~~~~|}~~~~||~~~~~~~~~|}~~~MMM} ~}}~~~~~~~}(~~}~~~~~}(}.~~~~}"}"~~~~~~~~~~}(}.~~~}4}:}^}@}F}^}^}X}L}R}X}^}d}j}j}p}p}v}v}|}|}}}}}}~~}}}}~~}}}}}}}}}}XtXt}}}}}}}}}}}}}}}}}}}}}}~~~~~ ~ ~*~*~~~~~~~$~$~*~*~0~0~6~6~<~<~B~B~H~H~N~N~T~T~Z~Z~`~`~f~f~l~l~r~r~x~x~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*Gx{'le ''   !pNN}n     &={! Wz!  [$-u]$$2S222K},    pcV%V!o!!5+ &$xn/}!!Xzm!!!!!k!!!!!!!!!  !!y$! !!!!TQYUziN{NJJN2{JV=d2/QLL2 iA665\9J1S65o1JYjdcBOBB?x |LI{7V7%ZVfHXmETsO'OpG(O,keL>; ! 3|;1FkGzGN@,9W%Azcc?i'`GXOSNVHkEGW_8SRb%OUVwnL,?d;J@_1[;sJ.Vs<VQsVsdo!sy>XVWi'i'G%GVi/- n= #{Wy[X4n{LYA=z%Wb'S G_%dbw,K?jd;@O_g[q;hss<{(]s%o-].!8q$nn/d%=%c% |w{jii5l'23 miwNw%tl owk_aMsDbSU]%zUii==n_=c'U82!HusM%bGbXh_1PvFFbi4.FNU8@NpPbV%KNFIyCp% ]1kU,QpUIcd&WkDUL.]Qs4$By!zv1 `8D.G'u`/-V]w9dA_]tCV!>e!b!2! !!!!'!!?!,IJXW!!,{*tNe1[;6CF!!*!\!{!|!!!'|'!?'j!L!b4!C! P!S;K_k-S!Y ?V|!S'1&MMV94 3PO7:!I+vI&EVY!&'hJ2h');)g,Jx6]o?oUhK11VVb#!_/lL33_QK !G mX!]=Iw!s4!8KKVwB!}Zrh""t'V'"o]p!`RjIou!D (MM-M(] !eoI <T!=y&!7!U=0!/!TpdqVv3$GeGHeLCGKKU3VV`C>!/-Co>RC9oHMC%7?yg6T1H1y6`CdD'l: ]!T!}C8+J!p}!I X\;\"fIf4'DQ>!!R duG.).3d 3./hB=BtGVGBUpdhmmhI?![!D.j !!O~l!QP!t.3G#GD=!!GZ!!ZO!D!6YW9W!m9i!,;pn!\B6t> %~1Uxx[xob!s8!;""4L!y["!b{!<!g!t!1ZVi>e5yl!op!E!!)P1VY7$y [Czy)V$!!qTu}!kbVMn~8bC&#&X!6!6CJn!y[`~t+t& LHd!=x`!'X7m"!A)IbydLV!B*LN!!!!J?,?#\^?^5X;w^C}[_[*3ye[e!=cVFVx[!wGwUh<Yo<oF[!Mb!!g!n =!4!!p?!??2CoWRW[5[eOW6(IOQ9!vV4V!!G!x!!1!%[jy%!!!!{!![!n!![]!0!I/!;!S!`!p!!!!b!G!!w!L!,&?!;_!z![MF![!s!<V! !I!W!h!!d!]!!s!.!cDm6,_ o}wntc|%WbTOz`b1WdDnnx]1n4FVky\}pS+?qMQgp+kClxVF*tQL%y~)=yJ8y;nFenwV_ti$0$IDcw%mKVyHLy\ 0 Jw+o'+8;p 8fHKIp  5s#zs|BLp,iKGP=b+upuIj1Dp6p@L**WH/]rTh5T\t\]~g\\X+{ci `|isiaG5tcl_.UdBpU~iGtkp&kvy}~k~V%!%N9g+zpN:~Nwa1!JLG t \Xza*WP#5ko 8pIgpyptcW|wqiQ%J%NB,Zk+X+tQiQ+p~~i M*W~nzUkpx1o\_D;sD/I\Z6nyy_7xMM+#DRV+ztd:cmwc6m'c=&-:kRy{& t|Z`xnd%G M MNE[]1, O?:xD_= _Km:r6' '6:P;H <4V:e[vhE hTv:s }:l {:s.B e=:ApNq]IeV4 VCe:j^ l: : :kg Xz: : :5& &5:O:   :$S0_0'0H0h000.0V0000k000&00MGrzz%??pkpoppRNpTypa{pBR]kMfSp:a}]WXptppq{W_?K4T}{|DC}iXc!T0}4tRc{`2To }tII(]m1O{x,`(m{tM=mB[8/Y/{X/MRMSu_t'Ha1h$IV%g 8ky&kX!i!1!!F!q!!!n!{0`!!!!!!!0!!b`^h!-!!4B*/V DFLTarablatncaltcaltHccmp,dnomfinainitligaloclloclloclloclloclloclmarkmedinumrpnumrlig:rtlmss01ss02ss03ss04$ss05ss06 ss07ss08rrzJ "* X2:BJRZb jrz  d J "*2:BJ RZbjr Tz "*2:BJRZbjrz "*2:BJRZbjr &z p ^ "*2:BJRZbj hrz | r    " * 2 : B |    & 0 : D N TRK * ARA PKSH ~MLY SND URD    $     .    4 1#*+,1279;=?BEGIK2#*+,1279;=?BEGIK    L D =j\#T(P5t%"Nn .35.f !n- v.N< %X,"6; *.d Z P F   ,;0N      "  v  T  J  NTZ=.VD  J \ d  l ~  | ||xtplhd`\XTPLHD@<840 : R j  *  j 0  6 H Z ` f P  b   0  J 4 \ l J p !|T(t4$@VXpx"Fj7'h'''####$$$2$H''((,$^(H$t(d$$'((($!$$$(%%$'6'N%:%P%f%|%%%%%&(&&,&B) &X&n&        ~~=<<<=== = <>^>L>?v::;-<":z5C4:88?:V>>?h;FF>\>rH:XK>:::<: ?E799:@??8:@3?98379JJ9Bh__7BVa`;H9;69;689889r9:X;;0 98@K:D77;*777L88JJ=99N9:0;0:0;f8|8^88R8886=uu: :6\6]]]=7r88>6.7: ::00:;D85v85vrH5L;:,7B;;7*7J5L;__5~54;a`@9BD: PQRSTUPQRSTU:           9V9|9|:D468<9< :p >?@ABCDEFGHIJ89 ?rDD:H4J4P489^484>499(4$4*4: x y z { | } ~  r s t u v w: F G H I J K L M N @ A B C D E8r35:z357;;8;;  8^8x83`3f48h8b8N3J3P37j779BCCD: 5R8V8\8b8h8n8t8z8888888888M223z))7223`));  ;J9F2z4F8j:b:b:bL7N2(2.2)):Dijklmnopqrstuvwxyz{:( ! " # $ % & ' ( ) * + , - . / 0 1 2<6999!   :^:> 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F:9z8888"    ;h a b c d e f g h i j k l m n o p q Z [ \ ] ^ _ `;2 U V W X Y Z [ \ ] ^ _ ` a b c d e O P Q R S T f9 2 3 4 5 6 7 8jklmnopqrstuvwxyz>~dfPRTVXZ\^`begcU[YSQ]a_W;,;2668888888888888888999 9999$9*90969<9B9H9N9T5999"9(9.949:9@9F9L9R9X8^9^9d9j9p9v9|9999999999996!    VWXYZ[\]^_6!xyz{|}~6R!6 !nopqrstuvw:v!                   ! " # $ % & ' ( ) * + , - .:!/9" YZ[\]^_`abcdefghi9" 9r"                 ! " # $ % & ' ( ) * + , - . / 0 19>" 9b"NO."7X7^7d7j7p7v7|777777777777777777777888 8889$ :$yz{|}~hijklmnopqrstuvwxefgbcd9%/*n7n*t+"/*Z+*`+8( 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y/)6)+0*/)+)+*.)++F)*x,).|)V6V)\*6* .d)>*~)D*~6).L)&*f*),*f).4)*N*)*N6)(()'(%-,0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWX7*,,R, !"#$%&'()*+,-./012345678RS,R,6,,$%''(B''(%&3&''(%&(H&'z'(%+&&'\&(%5r-    &*&0'j3&'(%& 3 &'J&'(%%'l%'*&'(%%' 'L%&~'(%*%%&&^&(%*2%%&>&(%*%p&%p&&(%%J2J%P&2%'(%%(&%.&h2%'(%%&F&% &F%'(%)$$&$2n%&(%)1$$&%v&(%)$&"$%%T&(%)1~$&$%2&(%$\%%$b%1%'(%)P18$>$>%x1$&(%),$%$%T1$&(%)0#%r#%0$&(%(0#%N#% 1V$&(%<02@<;|b!LMQd   22     2&4         2 5                          ?@ABCDEFGHIJKLMN1.:NOPQRSTUV !"#$%&'()*+,-./0123456789:;<=>?@HIJKLMBCDEFGA0: ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  !.0d; g h i j k l m n o p q r s t u v w x y z { | } ~  2<0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh:<jlqrsz{|}~VWXYZ[\]^_`abcdefgutmyonvxwkhip4<               ,pi:R=|{w%xa/+* j]!'$ !LMQd  0=                ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8           0=   2>OPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwyz{|}~x+PP~QQ,JnRR3R4SSfTT+H+xUUH*VV*WW*\\bbddtee)Tii*jjj0n`kk* ll^nnoo2*qq)MqtrrBsstt00uu)nLvv(ww):xxz)JyyV/\CC) {{||0L)%)-?  eeN(nup6(Vup(,uLU,V}}}'-MMMrNNOVXXX:TYYYtj':uZyX'(u[Q$^^^*cccfffDggg(hhh&'|tmmXzzz-'D<~~,B 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [$%&'()*+,-. \ ] ^ _ ` a b c d e f-.E"#2:K,L,P !"#$%&'()*+,-./012345678 L M N O P Q R S T U V W X Y Z [ \ / 0 G H I J K      ,"Q -T !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGQRSTUVWXYZ[\] KLMNOPHIJPQ*2W      !"#)X Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~     ,Y NO/ ) \      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLM&'()*f*&h )lk > ? @ A B C D E F G H I J K L M N O P            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = g h i j k l m n o p q r s t u v w x y z { | } ~  .>z9:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrbcdefghijklmnopqr9:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a-x}ghijklm !"#$%&'()*+,-./0123456789:;<=>?@ABCDEZ[\]^_`abcdefFGHIJKLMNOPQRSTUVtu   nopqrsWXYvwxyz{|}~ !0x(( ($(((,(0(4(8(<(@(D(H(L(P(T(X(\(`(d(h(l(p(t(x(|(*$((((((((((((((((((((((((((((*((()* ))) ))))) )$)(),)0)4)8)<)@)D)H)L)P)T)X)\)`)d*()h)l)p)t)x)|)))))))))))))))))))))))))))))))**)**** ***** *$/))))")&)*).)2)6):)>)B)F)J)N)R)V)Z)^)b)f)j)n)r)v)z+")~))))))))))))))))))))))))))))+))))+*** ******"*&***.*2*6*:*>*B*F*J*N*R*V*Z*^*b+&*f*j*n*r*v*z*~*******************************+**+++ ++++++"*       stuvwxyz{|}~~|}|}~ )opqrstuvwxyz{|}~opqrstuvwxyz{|}~VWVWXY-(()))) ))))) )$)(),)0)4)8)<)@)D)H)L)P)T)X)\)`)d)h)l)p)t)x)|))))))))+))))))))))))))))))))))))**** ***** *$*(*,*0*4*8*<*@*D*H+*L*P*T*X*\*`*d*h*l*p*t*x*|***********+*****+*+***************+++++ +++++ +$+(+,+0+4+8+<+@+D+H+L+P+T+X+\+`+d+h+l+p+t+x+|+++++++++++++++++++++++++++++      (!)/-*",2#$%.01'4356+&>7?EC@8BH9:;DFG=JIKLA<TMU[YVNX^OPQZ\]S`_abWRjckqoldntefgprsivuwxmhyz{|}~     !$ "#&%'(0)1752*4:+,-689/<;=>3.F?GMKH@JPABCLNOERQSTID\U]ca^V`fWXYbde[hgij_Zrksywtlv|mnoxz{q~}up@9AGEB:DJ;<=FHI?LKMNC>*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOTU=@@A[dx1@LOxL\+17T7{ 5]`]^]`Z]`Z@\@B@6@,@$???@@8~AZ@@8@F@r@Pag t / ]`ZDHPP`deWcPPP /w(+g^_`b PPPPa  t { t  *:^_bPPPxPPPPP]`l?V?A&?@@"?hx?Z@A@*@>@R?l?n@VA"@j@~@??@A(@@@?x}PPPPPPT L \;\  >f>n>v>~>>>>> >&>,>2>8\]^PPPPPPPP\]^]`lZ\^de@ @L@@d@|@@6[\^_gXY)*$K(())X0X)*() 9W]^_`awx27QTV |                  r w).  27Xx   =)* g ();Kbc%x' >@CDEFGHIK QSUWY[]_acegw w  \ f ? ?  BG\ax 1  9 J$iz6sH5ew~ F M x NU3d{} J L | ~RT)x6HNO;Kbc   g (PQRTpy (* =L=Z=h=v== ? f   { LMNObc)+,1<= 3 [)*(L\L\{BCDEFG\]^_`aBCDEFG\]^_`aL\ hhjjoq  r w #;FQRS)( (2 g HpqrtL\ l l l l l l l l l l l l l l l l l Ll Ml Nl Ol Pl Ql Rl Sl Tl Ul Vl Wl Xl Yl Zl [l \l;\ fgiiknrw 1 1 9 JC/@Uizgsy;Kx^*:L\"()*[\^_abghijkmnXY de ^ ;FQ$K\() (*[\^_abgkmnXYL\  L \]a\a(KL"#$fgiklmnrstuvw()*()*)*+e ;Kbc  !"#(12]ax(./0)23 )x;K \a (]aw x )78wx 39((78(89x L\ L \(*[\]]^_``abgkllmnXYZZ(*[\]]^_``abgkllmnXYZZ(*[\]]^_``abgkllmnXYZZ44ABXX+,1189 .Yh;o{K X h " 1x  . 7 F =68:;<=>CDEFGHIJPQRSTUVWYZ *+/]j!$%'\]^)9:x(:;(:;(*[\]]^_``abgkllmnXYZZw (*[\]]^_``abgkllmnXYZZx(0(*[\^_abgkmnXYfgiiknrwL\):;<x);AB;<=de(().9:whh jj oq )4?@8)RSTVI23456789:;<=>?@ABCDEFGHIJPQRSTUVWXYZ;<@b|\]^x);ABC ;K0bcACDITU 0;K=bcNxPbhkl;Kbc%x'KQS268:;<=>CDEFGHIJQRSTUVWYZ *+/]j!$%'QRTw   3 fNOL\)bc:<=BMNdeQSVX"w ]ahhjjoq!9).?inEK Q 1W g i 9 J r w ##/@5izGY_qwxyz|~s6hjopq r s t u v w QSUWY[]_aceg002OQZ~)+.atuv  9<?BBw*:]ahh jj oq 8C (Fb )x6HNOPQRde)+,<(GVW(Q`bL\Qbddg<hjopq r s t u v w QSUWY[]_aceg=23456789:;<=>?@ABCDEFGHIJQRSTUVWXYZ;<@b|whh jj oq x8QQ>SS?UU@WWAYYB[[C]]D__EaaFccGeeHggIJQML  ! dNRWTP\O #%&'("XeSZVU[Y$)e@<;xy|b=AFC?K> }~GcBI{EDJHzcL\) L \:8Ktuvx 0;K=bcNxPbh(kz{ 0*K=bc_xasyz>>(@@)CI*KK1 g 2  =Z&|{w%xa/+*fg j]!'}~,052.:-   snopqrkwmlt6^_ $#( `18vui439zy"7h `^006688:>COQWYZ~ /UWXY  [^*h-0w22{57|:?BBIK006688:>COQWYZ~ 0VXYZ  \_*i-0x22|57}:?BBIK 002OQZ~)+.  ?BBIK0124789<=@BCDFHILOSTUWX !$%(*+,.0147;<=?@OPQSVWX[\_abceghknrstvw           3 4 5 7 : ; < ? @ C E F G I K L O R V W X Z [          ! " % ' ( ) + - . 1 4 8 9 : < = Q R S U X Y Z ] ^ a c d e g i j m p t u v x y  "#$&(),/345789:;=@ABEFIKLMOQRUX\]^`a0124789<=@BCDFHILOSTUWX!$%&)*-/013569<@ABDE   "# "#$&(),/34578  !"#&'RS    ++--./0011234455667788 99:; <>?BCD EF GHIJKL MOPPQQ RSTTUUVVWXYZpyzz{|}}~~                 &&'()+,,-- ..// 00112233 4455 667789::;;<<=>??@@ ABCDEEFFGGHHIIJJKLMM NNOOPQRRSTUUVV WWXX YYZZ [[\\ ]]^^__``aabcddeeffghiijjkkllmmnnooppqqrrssttuuvvwxyyz{||}}~~  (+,,--..//0233445566778899::;<==>>??@@AABBCCDDEFGGHIJJKKLLMMNNOOPPQQRRSSTTUUVVWWXXYYZZ[[\\]]^^__``aabbccddehiijjknooppqqrsttuxy|}~  )*:;KL\]abcddeefg hhii jjkn oqrw x    ()./123445899::;=>?@@AABDEHIIJJKKLNOOPPQQRRSXY{|2334@ANOijjkxy   > ? ? @ G H I J N O T U f g                                          1 2 M N N O [ \ f g             ! " 1 2 Y Z ` a q r w x y z { |          ! " $ % % & ( ) ) * / 0 0 1 5 6 6 7 : ; ; < = > P Q k l l m         . / 0 1 6 7 F G K L \ ]         *++,89STTUabrs#$. //03445JKKLXYz{{|}~ ./@AABGHMNOPSTVWhiz{     7889EFVWYZfgmnstuv#$KLMNOPghyz 67LM()>?jk     GHJK]^^_a bde      *++,NPPQQRRSSTTUUVVWWXXYYZZ[[\\]]^^__``aabbccddeeffgghh ii jjkk llmmn!"#$%&'()*/012789:ABCDEFGHKLOPQRWXYZZ[[\\ ]] ^^__``ars>@AABBCCDDEFGGHHIJRR SSTTUUVVWWX\]]^_``aabb ccde ff gg hh ii jj kkll mmnwxo7xT7Pd[ P~PPPPP\PPPP]PPPPP6^PPPPPPP66e`iakgcAA@@fjblhdQQkkddQQQQkkkkddddQkdooooooo     amiri-1.000/fonts/Amiri-BoldItalic.ttf000066400000000000000000022221201434272261000175320ustar00rootroot00000000000000pGDEF'&$qGPOSU,t:GSUBROS/2sGx`cmapӦh gaspqglyf&d7H>qOqOr"r"r"r"WLWLWLWLOOOOOOLLLL'''m((%%1k '  '=|O|OO'0'00O'0~O?0/w'jAO0H0OH0OO0a'T020rOrO'20U'z|Ol O`0 O O O0OOOOO O O|OO|OO~OO~OrOOOO OOOOOWO|O020'OO|OOO(OOU(U0}ZS,R$$$$$0$!$$-$bG!~YIs{ss'b'b'bWW7Y887Y88@@7'7'[n[n+'z_''z6LW 0gR{YIOIOV_[ns<+'z'5b{q"6aLW[N` 0/?=gR<_'7 ]`@;7Y8B87'^#YIO+ZQ^/<ihBQmQ{)6QSe2]t%.TzZ ]HH_;&2.;LW:?M q= Z!"D)9`BtzCDPE(73L#^LKbMh^pE^X|syykU|BrllhN5m~ 77P!0@OOEKohKzO=UBylOKsxassI II_KW=TlZJI3%6%nwB.P,Ic-4wIp }thTY(D`i07MlJ- PK~~LcL!~Gd[[KR[X[nnnnnnnsssssssssssssssssssAiRiy+++++++++''''''''''''i'zzzzzzzzzzzzz'''''''''''''''''bbbbbbbbbbbbbbbbb{B{{l(l(6l(6l(l(l(l(666l(l(l(l(l(l(<3LkLLkLLLLLLLLqLLLL:LqLL1>)WWWWLU44hk 0 0 0gRgRgRgRgRgOgRgRgR_'_'_'_'WWWWWWWWWWWWWWWW@@@@@7Y7Y7Y7Y7Y7Y7Y7Y7Y7Y7Y8888888888888888888888777'''YYYYYYYYYYYYYIOIOIOIOIHIOIOIOIOIIOIIOIOI @@t_Z)*_)))C=<9<=39Cp=++++++++++++++++\\w@@@@@@@@@@@@@//////<<<<<<<<<<<<<ii%-hhhhhhBBBVBB\BBBVBBBBBBBB\BQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQmQQQQQC2_{{S{4{{{{{{{{0#S{?#S{S{{{{SsMW,WQmOlyssym=s")))))))))))))6Q6Q66M6Q6666-6Q6 6Q6Q6Q666Q66Q6Q6Q6*66M66Q6$Q68666M66Q66M6Q6Q6Q6Q6MSSSmSSSSS~SSSSSSSSbSQzK KhEO;dHBBsHOBeee[eeeUeeUereeOeeeeYe+eeHeeeeneUeeOeeOe}eUeYee&eeOeeeeee222222222222 ?=]t]t]t]t]t]t]t]t]t]t]t]t]t]t]t]t]t]t"X009LX5R5_XYYX_XXYXX%%.7.....TT{N{eTVTTTT9;"WtzzzzzzzzzzzzzzzzzZZZ,,,,,,,,,,,,,,,,HHHH,H]H2HHH]H2HHH]HHHHHHHHHHHHHHHHHut_;_;_;_;&C  }/f/T2.2.2.2.2.2-2.2.2.;Bx;;X5<;UHxBBcH<x Bxxl|################F::?MMM*M2$MMMMMMMM q q W q q Q  Q n q K q q q K 3 q P q q q j ] q W q W5q q ] K q " q W q q q q q q== == = = = = = === = = ====A{!!!!!!!""""""""""""DD )99999999999999999Zq_ ?rk,kelSp}ww}l=wBBBiBB{BBBuBBBBBBBB^Bttttttttttttttttt 4V@'+%.'X?<%;?#?1';X?'%''lf&f`fHerllrf7lzz5czzzzzzzz5z!5z5zzzz5"X009LX5R5_XYYX_XXYXX?zbPCCCCCCCCCCCCCCCCC++++++++++++++++PP**^k$$$$$$$$$$$$$$$$(((((777u7777777777777j73333333V333333333}3333333333333333f33333333LLLLLLLLLLLL'NGGGdAG)F`SMM1oSGGM#######r####))))))))))))))))LLLLLLLLLLLL'KKKKKKKKKKKKKKKKKKKKKKKKKKKIKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbbbbbbb1bbbbbbbbbbbbb"MMMMMMM"MMMhhhhhhhhhhhhhhhhh^^^^^^^^^^^^^^^^^^^^^^^XXXXXXXdX|XXX|||||||o||||G:`2{:{:v8u:Z`}8s66:Z+:8::~w8wqwYv}}wI}NNNNNNNNNNN5m8LL8SLLLL888L8LL8mL88d8LLLL7u77377E77R7?77777u777(7777:77R77h7L77777777>7PP!!!!!!!0@@@@@KKWKKWKWKWKWKWKWKNKKWKWKWKKKNK==================)(]U  @!T!TTTTTTT'TTT''T!ll3+)(]ZZ>Z)ZJZJZJZJ"i"ndI I3I I3I3I3I3I3I3I3II3I3I3III3I % %6% %6%6%6%6%6%6%6%%6%6%6%%%6% %&$YKn?n)nwnwn[nw _ ~}dBBBBBBBBBB..........PPXPPP,,,,,IIcc$!R!----------444444444444444444wwwwwwwIII: II: I:ppppppppppppppppp } } } } } } } } } } }t}}\VKEEb?E1^>88sm>E8hhhhhhhhhhhhhhhhh: : :TTTTTTTYY!((DrDDrDDDDDDDDxDDDDxDxDDr``*:iWxg0'f&'|#d7777777777777777777777777777777777777777POuJJ<<prMMMMMMMMMMMMMMMMMMl>l)lJlJlJlJSK<<pm- - - - - - - - - - - - - - - - - - P>P)PKPKPKPK  @~~37<<pa  @~~3<<<pcpppppppppppppppppEtEE2EEDEEQE>EEEEEtEEE'EaUrby[~xsWys6Q6Q6Q6Q6Q6M686Q66-6Q6Q666Q66Q6Q6M6M6Q6QsQhKHBxcBX;HBxx q q q q q q q q W n q q Q ] q W q q q q q qrk}wlfrl{ZqS`ZKKKKKKKKKKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbb`v{mKbE>86Q qKb||||$$X$$1$$$$$$$$$$$1$$$$$$$$$$$$$ $$WbUUIs,888888888881;U1;U;U+;U1p1w !UUUUUUUU+UUU+  k e%e _   eG d   ~qk k qe6 k    ppp1]cc9&&`   !]> ]> ,~dc'sQ{6Qe qtz3Kb76Q qKb O:<  --':< --' 3~d~Cn1e~C666666666666(l(V\8V>>[``r"Z>U9V"nc]/]cU&>]">8:8P8V$$$$$$$$$$33QQ#sy66BHeOeUY_BH W ]w}''lrY_33MSKKbb::}LL8>77sy66BHBH W ]w}lrMSKKbb8>kq]c$YCoCCoCCoCoCoCoCoCoC9C CoCoCoC C C9C<<rBBr|4w$$$$$$$$$$$$$$$$$$$$$$$6,R.:C#,5&  n73r7@/B?9>?7&!?25-]?v3.3XHF01uF5Rd6X82BQ}%4 "p 6v.     e@   7$05h[#P}46=,}4 M81W%J#! $o&"!!z]]]]]]Kv3....XXXX0000050RRRR2Bu      Pp....  B8] ] ] v3pv3pv3pv3p  .../.3333X.X.X.X/ X. ? H_ '    0002u u u eeeeF4@ F5* F5VRRRRRR X82B2BQQQ6v3 .< 'Lc|og ?"    6vF eeF5@ F5@ F5@X8X8X8Q@ 2Bm8m87"99W9,v,vvv!+E)),,&,033,A|X $VS@>8  )-I-#H#,XmWI,wGv4vEvJv\vvv$v6v%v7vv$v. 3;*#$/a29+;9379$$$$$$$$$$/Z]z~7  (%+AWco   " $ & / 0 3 : > B D O t """%.A?rt 0[^{7  &P $(@V`j   $ & ( 0 2 8 > B D O t """%.APPptv~{UUT ~h+g O;1+j%۵ANML(&`.  123456789:;<=>?@ABCDEFGHIJQRS   T  UVWXYZ((0n4xFF2`}  : e E2oFje0 zKc2JZr "2JZr2Jb'9Ia4u*q  !!C!"9"#5##$f$%%Y%%%%&1&I&a&y&&&&'''1'I'i''''''(()(A(Y(q((((() )!)9)Q)i))))))**/*O*g******++/+G+_+w++++++,,?,W,w,,,,--'-?-W-w-----.../.G._.w.....////?/W/o/////0(08142a23x4U4589(99:N::;;<< <@A4AFAAAAAAABBC8CCCCD D,DLDdD|DDDDEE$E<ETElEEEEEFFF4FLFdF|FFFFFGG<GTGlGGGGGHH,HFH`HzHHHHIII4INIfIJJJKKKL L-LYLiLyLLM|MMMMNN(NNNNO\OvOOP*PQQ1Q[QmQQRRiSSSSSSSSSSSSSS/SIScSSSSSSSTTTYTyW{WWXXX3XKXcX{XXXXXY Y#Y;YSYkYYYYYYZZ+ZCZ[ZsZZZZZ[[[3[K[c[{[[[[[[\\'\?\W\w\\\\]]']?]W]o]]]]]]]]^!^3^E^W^i^{^^^^^^^_ __-_?___w_____``-`E`]`u`````aa7aYaaabb/bYbbbbcc1cAcYcqccccddCdaddddee3eYeyeeeff'fOfmffffgg'gEg[gygggghh9hahyhhhhii1iYiyiiij j)jIjijjjjkkk1kIkikkkkkll/lElcl{llllmm=m]mmmmmnn9n_nnnnnoo+oCo[osoooopp7pWppppqq3q[q}qqqrr7rYrrrrss5s_ssssst t+tEt]t}ttttuuAuauuuuv v5vUv}vvvww'wMwkwwwwxx;x[x{xxxxyy5yUysyyyyyz z1zOzuzzzz{{){I{o{{{{||/|E|c|{|||||}}3}I}g}}}}~ ~)~G~_~u~~~~?_7Ww'Gg -Mu-Mm%M}1Ke?_7_Go5W})Aay !AYqGo!Iq 1Qq9a!Iq9Y 1a9Y'Oo%M}Em-U}E}5]5e%M}EuEu5U}%M/_w 1AYk1I_w/G_w7G_q#3Kc{#;Sk#3CScs -E]u5MeeM+W2O6H;±H{t=ǯȥ)ɷ!C̵3xϜй[UӖ<ճր؍[ ۓܢ8CUޥzerO_h@p^V8o78W;KA{m0@4r0uM]%#"*qm}#mZF2DT    l  `    (2]RdtTBRM qp1A{E . p!\!"O""""##?#W#g#w#######$$$-$A$$% %&/&'9'(V()x**+ ++,o- -m.T./0701L12c234@45756\67^8 889"99:^:;i;<==>&>}??o?@@)@@AFAABJBCUCDE7EF"FGGHcHItIJzJKfK~KKKKKL L"L8LXLpLLLLLMMM0MHM`MxMMMMMNN N0NPNhNNNNNOO(O@OXOhOOOOOOPP*PBPdPPPPPQQ(Q>QNQdQ|QQQQQR R$R<R\RtRRRRRSS*SJShSxSSSSSTT.THT`TTTTTUU2UJUbUrUUUUUVVV2VJVbVVVVVW W"W:WZWxWWWWWXXX>XVXnXXXXXXYY6YNYfY~YYYYYZZ&Z>ZVZnZ~ZZZZZ[[[>[V[n[[[[[[\\&\6\N\n\\\\\\]]&]>]V]n]]]]]^^(^@^X^p^^^^^^__(_@_`_x_____``*`:`R`j`````aaa2aRalaaaab0bHbXbpbbbbbbcc c8cXcxccccdd(d8dXdpdddddeee8eXexeeeeeff f8fPfpfffffgg g@gXgpggggghhh8hPhhhxhhhhhiii0iHi`ixiiiiiijj(j8jPjhjxjjjjjkk0kPkpkkkkkkll.lHlblllllmm mBmTmnmmmmmnnn8nPnhnxnnnnnoo(o8oPojooooopp2pJpZprpppppqq4qTqlq|qqqqqrr6rVrnr~rrrrrrss0sJsds~ssssttt8tTtfttttttuu"u<uRubuzuuuuuvvv2vJv\vvvvvvvww<w^wvwwwwwwxx*xBxZxrxxxxxyy*yHy`yxyyyyzzz6zFz^z~zzzz{{ {:{T{n{{{{{| |$|<|T|d|||||||}}0}J}f}}}}}}~~,~<~T~l~~~~~~ 4Tl8Rl~*BZj ":Rbx(@Xx .Nf~ 8Ph0Hh(8Xx8Phx2Tt6F^v6Vn.N^~&@Xz&>Tdz ":Rr(@`&F^v>Vn*Bb,D\t ,D\t4Tl2Jbz4Ld| @` 8Ph 8Pp0H`p4Jj0H`x0H`~>Vn~2Jbr*BRj.FVp&>Vf&>Nn0H`0H`x(H`x6Vn&>Vf~0Jbz2Jbr:Rj.Pn0@Vn.Nf&DTr *BZr ":Rj:Jbz*Jbz2Jbz4Ldt<Tl.F^v.H`2Tt0@Vn.Nf<\l$<\l4Ld|4Ldt&Hf~–¶(8PhÀØð(H`ĀĘİ8XhņŦž>Vf~Ƙư @ZrǔǴ$F^vȆȞȶ.F^vɖɮ6Nnʎʞʾ6Vpˊˤ˾,F`z̶̔,D\l͌ͬ,DTtΌΤ,FfπϚϴ$6PjЂКЪ":JbzђѪ*Bb|ҔҬ8PfӆӤ4Ld|ԔԬ,Ld|Քղ"2Rr֊ֲ֢2BZt׌׬4Ld|،ج4Ldtٔ٬2Lfچڠں"DVpۊ۪ "2Jbzܒܢ2Jbz݊ݪ,F^vގަ޶&>Vn߆ߖ߮,D\t ,F^v.>Xr*BZr$:Rr4Ld|0H`x4Rj:Rj $<Tl4Tl$Dd|2Jbz4Ld| @` ":Rj ":Zr2JZr,Dd,D\t ,D\t0Ph 8Pp0H`x4Ll4Ld|0H`x6Vn"BZp$<Tl4Tl"Bbz2JZz2Bbz$<Tt $<Tl<Tl *Jbz6Nd0H`x(H`x   4 T l        4 L l        4 L d |       6 N f       " < V p      ,D\l6Vp&@Zr(@Xp*BZr4Rt*BZr*H`x6F^~*:Tjz .Ld|6Nf~.Ff~>Nl$<Lb|$>Xr0Jd0Pp   @ `     !!,!D!d!!!!!!""."F"^"v"""""##.#F#^#v####$$$6$V$n$$$$$%%"%B%Z%r%%%%&&&,&D&\&t&&&&&''$'<'\'t'''''((4(D(d(((((()).)P)p))))***2*B*Z*r*****+++2+R+j+++++, ,",B,b,r,,,,,- -*-B-R-j------..2.J.j....../ /$/</T/l/////0 0&0>0V0n00000011.1F1^1v11111122&2>2V2n2222233(3@3X3h3333334404H4`44444555*5@5Z5r555566"6:6J6`6z666677"7:7Z7r77777888,8D8f8888899*9@9P9f9~99999::&:>:^:v:::::;;,;L;j;z;;;;;<<0>.>F>^>~>>>>???4?T?t?????@@@:@Z@r@@@@@AA$A<A\AtAAAAABB4BRBtBBBBBBCC*CBCZCrCCCCCDD*DBD`DxDDDDDEE6ENE^EvEEEEEFFF4FLFdFFFFFGGG6GNG^GtGGGGGHH$H<HTHtHHHHHHIII.IFI^IvIIIIIJJ&JFJ`JxJJJJJKK(K@KPKhKxKKKKKLL L@LXLpLLLLLMMM0MHM^MnMMMMMNN,NDNTNtNNNNNO O$O4OTOtOOOOOP PP<PTPlPPPPQ$Q<QlQQQRR4RTR|RRRSSLSdS|SSSSSTTT,TDT\TtTTTTTU U,UDU\UtUUUUUVV$V<VTVdV|VVVVVWWW4WLWdWtWWWWWWXX,XDX\XlXXXXXYYY.YFY^YvYYYYYZZ.ZFZ^ZnZZZZZ[[&[>[N[n[[[[[\\&\6\V\n\\\\\\]]&]>]V]n]~]]]]]^^"^:^R^j^^^^^^__&_F_f_~_____``&`>`^`v`````aa.aFa^avaaaaabb&b6bbbbbc c#c;cSckc{ccccddd3dKdcdsddddddee+eCeSeeeeff(f@fXfpfffffgg g8gPghggggghh h8hPhhhhhhhhii0iHi`ixiiiijjj0jHj`jpjjjjkkk0kHk`kxkkkkkkll l8lXlpllllllmm(m@mXmpmmmmmnn*nBnZnjnznnnnnooo<oTotooooopp$p4pDp\ptpppppqq,qDq\qtqqqqqr r&r>r`rrrrrss*sBsRsjsssssstt*tBtbtzttttuuu2uRuruuuuuvvv:vRvbvzvvvvvw w*wBwZwzwwwwwxxx,xDx\xtxxxxxyyy4yLylyyyyyyz z$z4zLzdz|zzzzz{{{0{H{X{r{{{{{{||(|@|X|h|||||}}(}@}P}p}}}}}~~~0~H~b~z~~~~ ,Nf~6Nf~>Vn.>Vv 6Vt4Ld|4Lj&>Vf~ 8Ph~ 8Xx ":Rj":Rj *Jbz6Nf 8Ph0Ph @`x(@Xh 8Phx0Hp(X8X 8H`x0HXp(Px8h8h(@Xp(8Ph 8H`x0HXp(@Xp*BZj0H`*BZr4Vn,Ll4Rl6Vn&>Vn ":Xx 8Ph"Df~&>^~&Ff4Ll $<Tl 8Pn6Nf~8Z|$<Tt $<\z&F^~6Nf~4Ld ,Ld|4Np:Rj ":Rr @`x 8Ph ,Nf~&Ff~.Nh4Tl $<Tl ":Zz":Rj‚š²"Df~Öô $<\|ĔĬ $Db|Ş.Ff~Ɩƶ6Nf~ǞǾ4LlȌȤ4Ld|ɔɬ6Xzʒʪ":Rr˒˪ ":Zz̶̔(H`̀͘Ͱ 8Ph΀Θΰ(@XpψϠϸVf~АШ 1CUgyыѝѯ -?Qcu҇ҙҫh5Me"Ցաձ$4օ֕Bד׵1Sm؏ة!;Ml۟9Sm܇ܗܧ!9Yqݑݩ1AYߥ+CYi%=Mm1Ia1Iay)Iay!1Qq-E]m !9IaHO*BZj2Jb4Ld|,<L&6N(@PhxU,>Pbt(:L^p)AYq ,D\t4Ld| $<Tl,D\t4Ld| $<N(8HXhx(8HXhx'E]u+C[s#;[s/?]} %=Um !9Ww7O 1YIy 9a)Qy P   c    . F h       , B R j      *Bbz8Vf8Tf~0Pp2Jbz2Jb>Vn~6Nf(p%=w:Zz:Zz:Zz:Zz  6 V v    !!6!V!v!!!!""6"V"v""""##6#V#v####$$6$V$v$$$$%%6%V%v%%%%&&6&V&v&&&&''6'V'v''''((6(V(v(((())6)V)v))))**6*V*v****++6,^,|,-6-......//(/H/h//////00(0@0`0x000001101H1`1x1111122(2F2d2v222222333*3>3R3f3z333333444.4B4b4778W89~:;k<<=>D>>?;?@hA%ABABCUD0DEEoEFFaGHI"J/JKLMNPQIQSITUVW"XXYZ[y\i]O^~_`aab$b6bcd defFg[heiijk:lzmcmnotp#pqTrKrstu_v;vvvwxyez{{|}]}}~~<?"Se\i $:Pf| "F\t'?Wo1IayKc{I0H`{$5Me} 8Pf~ 3Kc{ ":Rj} 8Pf~(@XG*BZp0d| "8Pf~,D\t #;Qi Tdt%7I[mo/YKg} #9Qg %=Sk #;Sk)AWo¢KÆ$8ĈĠľo6}ǵLLɈ<ʗNˊˬ̨͍ _γz'%Ғ=zӺa\"֖9׏غgmN<D/?O_o#5GYk}0Haz)B[t #<*3!'3#!u ujf!X:&2#"'&&'&&547647632#"'&   1:m48g0JZ}%&&'&547667[*) )L##L) )*[T#C--C#T}F74'&'7'676[*) )L##L) )*[T#C--C#T3 7676''&7j W'K  =(]95M2#"'&''6766:  vkrL)2672"1&#&'4&5476~ GcbB  ;7DA:8 GcbB  ,9B!=8 TL3&767676'&'&#"! '&&''&763 766# #$ 5*: BFn@ &OUC5G'"" 6 )*= ( ! $   %^#"'&&'&#"&'&'&763276323676327667632'&7667667&#"'& %?,0   0 # A!"/*(liD4i)7     R4daP,  #24yXC"" B:42V-% !$   1 %6IP!W%.&&'&'&7632676633##"'&'&m   '=& @QO   $  t   9.5!I    g2 %O9.5&33276672#"'#"'&&7&'#"'&''&%&2676"pQW FU$" 1a X#& @<#)< /!#""+  0# $ J[MgV&&''&76! $7367&7676376&'&776'&&''&'&'&'&#"%$%",MC9( D6% $$ # -$8%% % O$$  @;c(U   ,)D% 81   ; ' P/sS&fP /tO&f19A7667676'&&'&76676'&7'&'&7''&36%&#"76  %&'&7632%&''&766'&'&76'&'&7"767& ]$^ =  7s  L < ( # D x0"LXGHRK,|/ kgL L % - #+)6632'&'&'&76}  [,## ('N  u^%&6A9;#"'&'&76676 ! 5K8 " I % H*c .o5$-7&'&&'&7676676633#"'&'&D  !'<& ;]/~O   %  u I  9/5!I    g2 UC?J&7&'&7676'&76766766676"''&7767663276'&!cs!;"32  y=GX 5;*X-e*K"yU%5?WQ" *VO OQ)[093(Z  c: #' 4 <&W,>R.#Il#/ =3Q>@<EN!`")6676&''&76'&5767676& &X0 c-)   !O%HY) 1J8 )N!yo5'&76'&57676&'&7676'&76c )  !  ;  2. !* Q,4J8 )3 ,   ) 7Q8 A&'&7&''&767676676'&&'&767676745&'&7d*!  '8  v&G  &)+ % $4 -$= 5a  TE(   #"(N/U` &  X F5'&'4763&&'&77676> &!  6k6E  !0/$+6#&'&'&277&&'&77676667&~: XD& I#$# 7!%  81Nѿ`k& #6 "JH  9!C",?7327672&'&'&7676'&&'&77676"#&'&'&776763-:`I] O:9V #   |8  * 5W"7%   $4  <2 Z i16'&&'&'&76745&1&'&7'6'&&'&7/37$,+^"-V    I+dT/   a. -  A 76'54  lL  : @'6''&7667&76&4Q      3 % # 9 &  (02  =(+^/l@@`D%2#"&&'.'&&'&&'&6766766'66'&&#"3&&'&76(6( 1%/4 !P% , .%EH! + #B07#2)1$>&3.*B< #5X.$$QKOH8 /C#%*_- +" &9({*:&#"#"'&&'&'&'&7676'&54767647632#"'&GVG8 $n35k6+!1!nB':lY3!  -O>ZGH#-A43 +N&e+2'&76'&7&'&76; 2+A. #T1 0P.2>( 2% 3 /.E*&(cR\&( d;LJ'cnd9&(d5 s&ed(:&/&q&=b:&/d:u&/d5=&95=95=&9s<p2p&2rx6UxZ&UNB\B&\;YX;Ye&X`&` + &+W('th(&h+ T&ek+ &eP+ a&ePh"''&332# 2),1#,q&5O7Fcv&RDA&B/ F/nKn&P"&b=J7cn+ e+?&eJ>h6'&5'4776'&7767       l  g @>E&'&76676'&&''&76'6'&'&7676'&7&'&^%    !  U H%!L1   S   )- !N  s$%.g  }[?@ 6#&''&7    q 8#6'&''&767&76&'&&'&k!   A'L'L ?)@ ,C 2>',H_ ^054''&762176676332744w ' D 5'.  z  2  &>v !6676'"&#&'&54546'&#&?>1 ")E$&% 2$!/9 O :! }P6'"''&7766 f  3#] M +/,!)'&7&'&76'&'&27663237 & !!4%  $?     ,<=$   +dhqA <_Dq6376"'&& 6  >E H[D6E"'&776332#    E  ''&&'&76667632& " #;   Q9 $L(+!9 O#"'4&76676'&' 3"   4'*R& B%  ,>7=86 '&&'''&7667&7667& 5+>AZ 0Y*  # -  H,'@0C,C&k  @ 46#&''&7'632'&&'&'7632'&&'&'5         q z% C%  S7667&'&76'&'&267632'&'&7676 " !!4%    $>   $K'; 0E,<=$   +   > Vac 6''&7+\-e=&6!b*6 uc6'&'&'&78+F3*RcLX\$^63276''&''&7<>Jf&n., > RVW\ (7%I pI !N+2''&'&77676543'& 409!1`   ;8E +9 & 1*KHF &y '$fA@P \ `L@-6'&'&7767&&'&7766 ;#G#+4c]!yb6// (( M 5(# 5 !O =0U$< -9BTYFGI*-`MCcr$V7 '&'&'&&'&''476667676L  XbK  x)&.8Q -%d en]aW56!676'&'''&766  WaL y)&.8.%e dn]aW&R!%'&76'&&1&&'&72764 T1FN%EHP08&IPP6=ra!j4"4;  5z@@&&76'&'&767&#'&'&&5iDP,+F p1 8#*ihJI]y  Q7'&'&76763EP,-Ep0 8#*ihJJ]y  >H 373'7Feѓd{||:/7FcRi4 6'&'&7^t  L kgLG&(i&(ot9&(o}A1&(1A'cn1`'cn/1`+?&e'J1:&/G:L&/d:&/;s:&/'d,:l&/d:&/+:z&/d:&/75=&9dZ5=[&9s5=&9&5=&95=&9s5=&95=&9pT&2n<}p&26<p&2)pT&2'n)p&2r<&2 p&2rp&2rp&2rx&USx&Ujx6&U~S6&UL(6&Ujx6&U'LWx'&Usx&Usx&UsBQ&\'*ZB&\HB&\'H;Y&XC;Y&X&` %&+Wq5&5S'O&5Sq`&5O&5oqe&5O7Fc`&R7Fc&R(h(&h\DA&B'/{D&B'/{DA&B'/Z(n&h&(n'\&h&(n't&h&(n' &h&(n'&h&('t&h&s&Fj &Fg&F &Fn&P'JP#&P5n&P'&P#U5=&9's&&=dD"&b=&&=dD&q'b=J7'cnw7'cn#!JU'cnjJ'cnJ'cnJ['cnkJ'cnsJ'cns+ e &eO N&ejJ'cns+&e+&e1VT'q'd2i%##&'&7763  /  / i??"&b=HN&&'&776767676667676''&'76672&'&'&7676%&74  &  6- =HT !)  AQ C7  gIIo% /I$?46 p    8,B &! " (68 E`&''&76676#"'676&'&'&7676'&&'&7767632676'&''&1"&'&'&7 3   +, BB @+,S'  gIIo% /   +-d %  $   !   =--7=2" &, p Vc /  +   <%'&767430#&.(` S#:C  .a  .B}t% 7@6'&76676'&'&76267&&'''&''676267&&!$   =!    %U. 1  %R P  b&#$9`' + 3 "5D276'&767&'&'&7676326766'&&'&7 B[['G(S)L"  XXY=0 %4     E^4  99zo8  # ,   =I+6'&&'&7'6'&&'&776'&&'&  "( d !(  6- "(  52 5b7 4 D'''&'&7676327&'&767676676763'4&'&576 &- "6l&78 F$.//\F H{> 7l&Gl7((-Y78 X-('6kFFk7((-X 87Y-((7lGB[ &676'&7676'&#".6*.0X   +!%%2   HfQ!&7632#"'&7&'&#"3276N !! !!!o   ;%$$%<;%$$%<; (( Mv'&'&767&'&7676U! "T B'4$ *# !   qw!&'&7676'&&'&'&< +f% "  ! 7R '7(H3,9$6'''&7676 M *  8'&    !7"'&767632'&763767&'&5 1%B=50/   ^ F&3cA) q n )763#"'&#"76'&&'&&'&7676 '  Ks < !) ,;,,+-#6(  ,*'\*>H4d#w&6'&'&763275&'&&'&77676'6'&&'&7-  V@&' BB#      b%80)7  750 9!!.* ) W ,  _i )3=GOX&32632#"'&'666'''&7632#"'#"'&&'&'#"'&'&76326676'&&''&5'&7'&7&'&7&76&76&7667&&'#"'&&'&7632656&6''&%776'&6''&&776776'&&776%76''&&7765&''&76''&32''&#"4#"3256'&776''&%56''&776'&67&47&'  &6 !+/""',*&) '"!%,! <!59 &6 +/#"'+,), '! ",  -59W*v]"^)"bf-z+1:\ Y9\d(x_ -+}Y-+|U! , !,)"cW,{* 1) 3   +T '%& /$ *+ ,( .  Y)   3  (( 3  ,S $%& .# +* ,' -  -A   3 (-Lj$ EE E +n'O#jLk%iLLi%!!+ 'nw!!,,I++$ D+ &o D~ +o&G3%(0(,o '&576'7'VV4a4  aXNI632#"'&'&21((10)( "#$./$"""11FKp&2kIx&UkVacpucq^rNs>,676'&#"76''&'&'&77676'tIK D$m<5N'd/$   < $!j ,U+U XC !h 00H+0''&'&7&&'&''&76767676'&&WsM P7$&;l Q  B) #CG  # $iIr)sD 0 o y L5]6O! :`$@'7&'&767632'&'&7676'&76~%  KHU@ Hg/Gu >17 NT+? 2@<&2kl6&U#; B&\ &+W &+W &+Wi&5^t&5o (':th(';th('h/n &K/n&K0n&P'P&P'|a&P'j &F#x&UNx&UdB&\5=&95=&9'$B&\'kx&U'sCa5=&9 fb&(1r[3 O]&(1sZ6 + &erbV + &esaY +&e(J J'cnrz J'cns} 1V &rQ 1V&sQ 5=&9(7 B&\( B&\k;DA&B'/{Y?$'!&&'&672!%.'&&-zl!/ 3=3[X. -E>D.bb L;<581?t,Q$=G!7 ,# u38')" m?#!7!>7667>3!%&&6&&y:b'925!"FP3=M lO32;?L?u #, 8"G=$Q, 3782m:&/jh&Y1LR2''&'&&'&&'&7&&76766'&&''&&'&776&7&   5$  Rpx  &SfI+ ) #  )" # 57K  !QG  ,.  A> P", ,X,,8 !-W@! L  6  H 0S?A:&/'4:&/'+4:&///"xQ&U/PAX+?Q&e'J/PXq57FcRP%3#"'&767676'&&'&764V2   1 20   +&-  8!  d!)&7676''&767&'&gM 2!  (.$+&(+J(A  1L_  L&LdLid)/M4M?'LLI(7632'&&'&=&   w31 I&RlCRFv'"'&''&767667676&1U !&'<   P1+ #   , %   9# E REw'RO?R~BXT>6'&5'476'&7767      l   g Gi'M}X?DQ9$0+%*676'&'''&77&546&#"6' G 5"&-+#e"kM"I0 $! D!    ! 0@E6#&''&77632'&&'&'7      q & 1 6#&''&7632'&&'&'5      q 0% Iw! ''77^3C75!#D#X!JoG] 7'7'63u#JY!N:kEY_QC?`oG '``G !7'7'77'7'632'&&'&'763u63u   #JY!N:#JY!N:% G] 7'7'632'&&'&'763u   #JY!N:% 8*36'&''&767&76632'&&'&'57&'&&'&k!   A'L'L    )@ ,C 2>',HB&  #Dbfs@9afs@9ybfs@9<b&szb&s<Dafs@<@b&s&Y!b/</<s'&''676  `7)&B@@pp/?O_o632#"'&'&&7632#"'&#"'&'&76322#"'&'&76632#"'&'&&'&7632#"%#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&76322#"'&&'&76#"'&'&76327#"'&'&7632632#"'&'&#"'&'&76322#"'&'&76I   _    x        Q  g        I          c             r   6    S      f    >                ^       {   9)&'&'&7676#"'$//#;''""#$  ::@6&%^u d0&'1x&-4&.&0&- 4&.&0&-*4&.5&0L&-dw[&.sL&0;dz&-diX&.B;&0=%&-G&.V&0@G+&3g&4&6n+&3gi&4&6n'=&73G&8lJ&:f'=&773G&8NB=J&:GH'=&73G&8_J&:Y'=&73G&8jJ&:e &1+&16G&16&1JZ'TntIg'Tny,(LiAsKC('in&As&C('&in&A's&C'(''i3&A't41s&C'RNR&N*&.V&0@G'dI;B^<'bc *rw r>UiVyH'%.'n8dqg?5|}@9Kr Hv7~tb7u%n4nQy(  s+02n X8xz?\&?'.2%~&Atqs&CuV'bnu'bnjuX'bnuF'bn5'bn#u'bnkOmm&dx4&.&0w4.0a&''.dG&''0dqf&;'.{dH&;'0{df'bn'.ZdhH'bn'0Zdf'bn/'.ZdhV'bn/'0Zdf'bn'j'.ZdhH'bn'j'0Zdf'bn''.ZdhX'bn''0ZdZ&W''PdLpf&'{'d_r&'{'d7Z&W'PdLf&'d_r&'d7Omd 4&. &0+E&'j &hdE&&hd&['ZdXZ&W'Pd1Z&W'<'PdEC&'j &h@EC&&h@Ee&'L&h@Yn&['Z&W'P1&W'<'PE&'j &h@tE&&h@tE&'L&h@t&['ZP&W'P61&W'<'P6E&'j &h@t&['ZPG&W'P61G&W'<'P6EM&&h0=G&I'8 QYEM&'j h0=G&I8 E&'j &hlIE&&hlI0=&I'8 E)&'j hE)&hEe&'Lhmz@.'r&[N5EY&thmzd'r&[N5E&'j &thjE&&thjE&'L&thjmz/'r&[N'5}'V&7_0&I_ 0&I'_ 6Ev&'j 0&I* E&'j '0`&I'* IE(&' '>E(&'>E(&'='>0x&I'4 &W'Smv1&W'<'SmvE>&'C0&I'4 $&W'Smv1&W'<'Smv$,&4+EW&' EW&EW&'=J,&3+ZLz&[X&WO1&W'<OE&' lE&lE&'=lq&[Y&WU1&W'<UE7&'j gE7&gEe&'Lg0EM&IJ &WR1&W'<RE&'j &h@tE&&h@tE&'L&h@to&['ZP&W'P61&W'<'P6E&'j 0&I< 9&WV19&W'<VEC&'j &h EC&&h Ee&'L&h n&['Z,'&W'P1'&W'<'Pp& &2rx&U+ 1'e0S'a}'[?a0'3a0 'Za'^a0/'aD'n'$dD'n'h'$dmz\f&[N'rd(&']'dxLf&'dLf&''dDF'n'$D'n'h'$mz\&[N'r&']'L*&'5L&''5DE'n'$hDE'n'h'$hmz\&[N'rYB( &']'2kL&'BL&''BD'n'$hD'n'h'$hmz\S&[N'rYB(|&']'2kLS&'BLS&''B&&I1 &J'Gj2LW&' =ILW&ILW&'sI(,&-+E:&JE2L&' =lIL&lIL&'slI)&&2L&' =;L&;L/&';B2&wM2L&' =&7&gL&&7&gL&'&7&gB&w' &c'a4s2L&' =7/L&JIj&<28&' =&7*C88&&7*C88&'&7*C&w'i!&c'a/H&L'0d\&c'bdD &L'0y&c'b|&L'0 %&c'bs6&L'0 %&c'bs' &L]h'b&c'H&L']7hH'b&c'7M&-/8g&JD&&L'0 d&c'bs  &L'0|+&c'bb-&K3&a- &DZ&a-7'^m&aO &d_JO &d'_J2&WT12&W'<T&W'Tqe1&W'<'TqeL.'&L.'&'Lu'&'dLu'&''d&WQ1&W'<Q&W'Q[1&W'<'Q[&W'Q1&W'<'QLd'&Ld'&'L/'&'"L/'&''"E7&'j &h&E7&&h&E7&'L&h&mz@u'r&[N'5bd5u'n'*Wd5.'n*d'n*/'n'*rO&daJO&d'aJ"J&"J&'"&'`"&''`Lu'&Lu'&'LuH'&'7LuH'&''7OJ&d:JOJ&d':JOJ&d':J_OJ&d'':J_O&d':JAO&d'':JAL['&L['&'L%'&'L%'&'''H&7'']l7'H&7']l7'H&7's']l7mzH'r&[N'5l7H'n'*a7'n*O['n*O%'n'*h2L&' =&5 }L&&5 }L&'&5 }C&w'KY.'b&cu'b&c'd&L_TJ&:'A_]bJ&:]b&:']bTH&:'A_']bN7H&:']bN7H&:'']bN7'&La'&L'ah'[/'1<'[g(kUb76''"''&'&&'&76'7&&''5&'&'&7674763667'&76766767626767'#"'&&'&&'&67#6676327&'&'3276'&'&#"7&&'&'&77'%66547767&&''&'&'" 4M  eT K|#\-3P "  fS )| K  :  !'#L8^%=C19 $"6  #Dn 6   F   E    s \B1 7 C\    YC   8 CY  ?   <  FZeFT  <   ? 8. .    ; .    V%_{&'&767276''"'&7767&&'&&1&77''&'&'#&7766767667'&4'&766756767'#"'&&'6676327&'"''&'&'&#"327667667&&''&'&&'6'4%'7'&'&766I~#[- 3O  f R(+|K  3 O   fS % c#$7  # 89 "&%Lz    |   7   GE    5   s  YC "  C Y ›  \C 8 5 B\ZF  <  ?c?  <       . .B.     . _K&J''j''&7'':'0%T&:'A_'b'gK&J''K&J''R/'@L&'K&{T'zXL&&{T'zXL&'&{T'zX'J&7'L':P_&:'Jb'H;OJ&d''LJ:OJ&d'LJ:T&:'A_'b 2&:'b'n= OJ&d':J'_]'&7'L]P&:'wbKT&:'A_'wbK01 &I'L ]&L'wK~'c&7':Y?-&:'b0c&I'L Y0H&I': ']mY7&L'' MOH&d'':J'_']7'H&7's'L']P<7&:''wb'K01H&I'L ']7&L'w'K~)O)&d':J'Y0\)&I': ''Ym&L'''Dm'&7'LaP&:'Lb_2v&L'L_Oq&d''LJa0Q&I': 'K_,m0mQ&I'L ,%s&L'JFOQ&d'LJ,0m/&I'L ',O/&d''LJ',OO/&d'LJ',O0&I': ''6m(&L''ws''&7'L'6P0q&I'L '6H0M&I': GmO&d'':JGO&d':JG(&'3&F'X3'&7'':'_G0M&I': 'Gm'&'''m&7'lL&&:cT&:'A_'b&J'OJ&d'':JL2&:'b'n=&J''T/&:'A_'b'p&J''42&:''b'n=TL&:'A_'JbI;L&L'JI5&J''O&d':J'0d0{&I': 'K_'0md_5&J''j'O&d':J'_'0dO(&d''LJ'0UdO(&d'LJ'0Ud0 &I'L '0+&L'w'~9O&d'':J'A'0UO&d'':J'_'0%O&d':J'_'0%O&d'':J'A'0%O&d':J'A'0%O(&d''LJ'0W%O(&d'LJ'0W%OJ&d''LJ':[_O7J&d':J':_OJ&d'LJ':[_O&d':J'A]Oc&d'':JYOH&d'':J']7O)&d'':J'YO&d'':J'_GO8&d''J7OJ&d'':J'0X+OJ&d'':J'_'0X+O2 &d''LJ'0+O  &d''LJLO&d''LJ'6O&d'':J'0d &:'Jb'G;'&'OQ&d''LJ,Og&d''JJD#2&:'b'n='gO&d'':J'ALG&'' 0Bg&I'J D0M&I': 'K_Gm'&7':'_'0dO7J&d'':J':_O7J&d'':J'_:OJ&d'':J'_LO&d''LJ'6OJ&d'':J'0U:&L'JE2v&L''=;&L'wL~O&d'':J'A]O&d'':J'_'0dU\&'G;WU&'G;'4X&''a)'`'G(['n'$''A'(l&1'J's0&I', 'GyW>f &F'b'[U ~&;'0{''+'Gp5Zhf'[;t'f'[cV&'W p7Rv #467676&'&&''&7632723&'&7767267632667632#"'"'5&67&'&#"&'&76'&3676'&''&'#"'32767676326'&76#"'"'#"'##"''"'&76''&7676/&''&'&76767'&776'5477632327767&'#&'#"'&7&'&&'&''&76767'&76327&&'&77607&&'&'&776#"'767&&&232676767&'#"'&7632&'&'#"'&&'&&''&4745763267767'677676'&'&'&576&#"2767463232'&3#"'#"'&763276327&'767&&&#"%& #M%%4  !,  <+ .T   *a;Q9224 %U.[+'C3)??   &!*%"eB; !(2g # B *+ D ,:<8 <55 FPR*>!  a * ')  " 3 %VV9 4  &% . / #/  !'6,a0B a0A     "0=  A  4  $ &0u ',"0l@01/4 (*H   <%.    &6 %&FK #& R@ 0 4F5I% ,9. . " - 'C= #    T&fE,9<#MlL26 1@(9q:7  ![7B  '(R$ *$I " C +&4: !'&*6[D*' &65"n  # # *"(  .       $ } l.776667672#&32#&''&'&7632767''&766767&7766'&&'&'&'&'&''&'&766767'&77676&'&&'&'&#0&''&''6764'&&'&76676326767&'&'"6776767767&#"677276&#"6772746'&&'&774'&&'&776'+ $@!  )7]&%T0%)(+'/> T&  BFF./)+ &aP5#n5 (o  H    ,  ."  6  #5 0D  '  Y? " A[ $ ,Y   o  Y1(<*L1%9)? 1E4*+        a+6('DCGV5?>=  )'4U *;+j+2 10d #b;   dF4%-?=  AKJDJ     d-b;$!%dZ X  x q L   E 5 V5 f+w &F''\'.A'6UR-+' W'*-'iv' *>'' 'aih'''a F' w'a''^<'^'^ '^ '^ '^:'^,aT'( 8'( '(U'ds'',~'r'' e' ae'k'k'k'H >h[$h'[Z@\}[?@ ^0 '^Q8_!'_G^7j'^m0a-&a>v bb &ba&'bc~;&'<d]LuY'bnd&'d&&dd$|f&.dbH&0d'&-4&.}&0v&;;&-d&.B&0=%u&-dS&.B6&0=%'=&7N3G&8GYTJ&:A_'=73G8J:'=&7s3&8&:1&16Tn'TnuIYVZA[W]YV;&Z*&[sWH&]7@nV[,WcY@<&V[&Wp)&Y6^_Wa6&^&_,W&a [:O)*Q,[:&)`&*?/&,5+/&3bx&4&6'&Q%&4&6n\&?.2AsKCWDbEG0)I;MJ LR&N!w&.s&0;d;< r>ubnOmdOm&d 4&. &0+&'cU]&'cV&'d5BU_&'d> p&'dU&'d&U&6(676#$'&'&'&&'&76! )-VHl& oWv>&  C4M 7 x?D%j*6#"'&&'&&'&71 6 [ !* #*!N jJDM6'&'&&''&7 CW 1*2+?U-&[:O.#"'%6'$&7&&'&'&7676z; ,** ,XoI+6sf    &\ !! DgnD8 >  >*ƒ 6C'%"'&7667&7676'&"76676{ D:#. =g+)1.7? 'a 0Q e11 ,A5 * , Ie " 176&'&&7&'&76'&7676676(X+t/@k, Ht`#9) qISX &4+ CYz  M  >&v0/I h;% %L!JdQ!%2#"'#"'&76367&'&5676[' !fgb@$ ?)B*Q@6:i Dff22 )'HB"(%# !76%6765432#"'#"'&76D   6B ,3D#  .=   57BA:w4776#"'&&'&7637&'&  @g9 >!Som"  :7&76676!267&'&776O<  (xF(  BItJ=^) &!s+,& X"Os84; 7#"'#"''&76767632& 9?3I v & @@) 2)%#&'#"7632767&&'&'&77632 N1(A- aC% $5 E L 5.\3z%I<p&766767632767&3 cHm  RQ+ #  H$?!+ L+%-6276'# '&767667&'43&327&4>@ 1  %X[! EeHk*%#,j12 ' H&{DN >a<=@(F$2'"'&76767&'&'&76"767&_?z / ^! RP&h 5" KXGH{, #q)1#'&&76767676'&''&766'&+ TTz}i0 #EsԽ. 3X- * !%c>.B55-2\,I[ , ]F]- $ &,2'#"'&&56767&&7676&7&   5%  R!67 /*I47K 0PH  --  A-W@/S?A'=87&727676#"'&'76'&'7&8~<)BB3<'" //TAU4''&## ۅla?{  E ' %$$?+8KMC" $^Kw" 3G#'6763276'&#"'&7676767&!"WF   #($ 1@ 5=,%76'&'7&'&'&7276U4''&## ۅl^4   4)BB3;8KMC" $^Kws  EJ4'63276'&&'76'&7'"'&76767667&'&hM6C*+P&! ": P6I PA!J)S(S7-3 l J%V t #- / (672#"'&''&'&'&76767&77&&G4 >  %1&  'A "H6; 9]%% N9#& 3)O('&17#"'&767&7667&'&'&7632'&'2'&6'&'&zD32>(# 23pq&&M !b3 ( O^Y 01 c\\:I7  %$" .: ' "&b6"'&767&&'&32Z"L#$nN /=U7Q(@@D89VY9:< r06=6676#"/#"'&&'&76276676676767&&66 "CF*  ! +l>(" 8!% 6.-!-*,(2l )\ '"&6-'%/   5_+!c;= G#\/"''&7676764'&&'&&5&776:m-.;<>  ${3  *""  klr >[6[LLOB33H {mg: A'$76$7&'&&'&'&76767632%66'&'&76h҇~'A+WWڃqh%}q7S%y#9;75 \{{*~i  $3  *@I $H%76 +*C77  ! '7&'&'&76%6'&'&&76JpjX )aiS iRx' JL"mXCf!q%DA'6'&&'&'&&'&7&&'&7H  @K  v$]98X $G$?$*"  ?BB*  4 $ 0sK('&7&'&'&76676#"'&'#"'&58G"  ,ݲ4útF8 S7&# <1 LJ]#=(VR'W Q4OZU0&W)#"''&'&76767&776PCU(@>+_ed?>6 8'-uF x>%D4m8U'S<9kLr qHR P"Fb'&&'&767&&'&&'&776\ _ 8 BA   =n#   2*"  /&&'&776'&'&'&76767&&'&&N "N&I#;7  /) W2(+ "Z::Y jT8&g%)rY U+nI\--`7#"'&76'&776#"IG '/6 ]4("4  EsS< */)[ '& ` n8%6"'&&'&'&&'&76767&&'&76766569 X%%  D.Y76#  ci%0  +< #(G (-]M(N%KHH  -m0)!7#&''&'#"'&&'&7676i2,R&&D5# v ,$He f;;_#4d-a;&-#j[\2=;M '&'"'&'&7663676676&'&J=& T>E6)9!!M @4 53+Fq" +/n$7&676'&'&&'&'&7667&L<F3(% (eP)*$?X $`C{:k*-l?GF@  .6#"'#&'"'&767676&6'&& -@@I!  AG p]'3  U P .  4.-%2'# VG4$^>%=v]3%6676##'&&'&'&76%667$725&7&'&7   K^c tj  CJ<=@  ,43 1;vYS  J{+0 R(%632##'&'&767&&'&7 "4UCD . D  *  H]67QQ}X%xU8c+,-$'&&'&'&76%$7675&&'&77676$! ?/a'M>CuH& {B+U0$73F++^:P$ >'1J- O '&'&76767&'&776wg ._CB* $.-k=gʘ0'a 66X\R _<:OW T '08%2##'&'&7667674'&&'&76676&#"76B-!  @OF:!;P =E$U+O(M,@-)  (  u&n &>ttP(  < $d   7Fc(02'&'&767676'&''&76&#"/ E/d5N4  / 65kj_/9IXY !\?=v6%%(9Vz]=:+*V*@$~]"l$'&'&67676767667632L**8Xc  <&3K   -@?,"R1F4A 0E$`%%76#'&&'&76767676'&'&^ % $" 0.;=@!(  <.R672DW"  9;oPN   FE +x6 676'&&'&76767674'&'&7 &LR0V0JG')ox^/P".Y'RU0)5(5  OcOE*V! )xFFbfSvRID!)k f.;MGI ./[--  D S[,+47'"'&76767632667632#"''&5467&%&676?, 3 R! nB&5) U5?4BF6OJ1bK[+ <() p%++10 F# p+F ;Y066''&'&7667632767&'&776676&N4 @m]%UnD]   !&yQ-9-"S5NN9JJNd2/V /k 4G{_K bRz>!S<^#;MDC&?c5='&766741&&'#"'&763276667676'7&6763'. :* ,G7"C:,101  NnWRR@SR1  W:=  +*N"F .H4 -.  (LLT  dEl9HP`(-  E ("TI/rA! '0A1723763&'&776#''#"'&'&767676y  )C     E::=J/$   a5|#  3)F@@+IBH!  NB:6'''&'&7667637&'&776767&'&72 *>"Q 0fE 7=D   p%) ~2a: )M'G >,\*I%O) t&|}Aa N ;W87676767632#"''#"'#"'&&'&7636br&&  .= [1  F.!87%#(j'c2 S!f'/% !1  68>%&'&'&7667&&'&&''&76667676&'67&  X.-067&'&&'&5&76676"'&&567667767&Z,   tBNC  @ "Kf`/AYj#,!! d6ra";/, i` /7=&'&7676321676&'&'&677&&67&     !$b"6 ~@L?(,)`80 4b7b%-` ,   y ,  ('56+ 9F>9$W4;%'&'&76337&&&'&7632676#'&667&K'! .&[  5W6'.F= "\LT5 & E31= 0i9#= C0 Iy ^(#"'&76767&'&76766'&72)$4`_ddK$,)+)% [5DF DDT?c*M&t* Y7"&%6'&&'&76767667&&''&7&/$#"34+#I#7 >P'C"'!?H$k-+87\[NN   E#7 6\/+Om-&676767&'&&'&'&7676#"'&R10Ei? & "q '' vRD}/d4 Dcc *)G +) @'(F9+ +&'&7676767&'&'&7676i8PAnn./ @.;cLd PC?= .%6'0_,w \d7) ThW249|C8^(-#7'&'&76'&&'&'&7762#&I3!j(  @4 6J 0l5O ')pG- ("QZhU[;t4s76'&32'&77476022#L55  #M Q(%'&'&5476767'&5767676 4A1h47K W@0PH  .- 8FP8 A<(t/S?A5Z>[('!!CE < $)fU F $76@+&H @6 JR76'&'&76327&&'&'&W +M  F&$ /(2%De C45 - # of'{|'&767672'&'&'&T#$0  1# ,,'(* +(BB$6'&&#"#"'&76767&76C% 1=1(H1@((!#  L  OK%j\7&'&776'&765-,J''' 11|L>DDv` 00)9$)''&'&476327676'&776 0A! ."dQVX&& YZ11 Ik (7A)'* # lkG(QLK6'&#"'&'&76087   V? P')); 2 K  JJK')'2gE"s6'&&'&766^1GYR9!=/\ ,"  1$36XDvwsrT 636'&''667674'&7q C"D95bXI= +)*C @z|UJ r t'&'&327&%&'&&'&76%6] .$ % 1 >+  x* SC %3 n? #,~([g7'&'&7676'&]%3M#= 8PW/  #" %_##'&'&&&''&76676676b /#   L   { Uj, -8I-)7&76'&'&'&76676a44  <$#;<%9>   ?#3 ))+H7'&76&&776;&$&s  +  v,  &8H%7&''&''&'&'&76 5@ %R[[k).h: A !JWBS}mED   1IB%&&'&&'&5676767632'&76766   $9$ 0%%8$  %;s#"z&&7676'&&'&'&767&&'&'&&751Q_'A3w*x L8 A"# (  276'&'&'&767676Y2U.=6 FC  *JR# @m* (I7'&&'"'&7676#44!.W1E3D99 + $J*747632#"'"#'&747667&&'&'&&0%^c3 " ={Hh! O? @A;$4L/ (  '667&76763'&'&73 @43,9:e =L.  ]"lSu!&''&7676'&'&767676'27&'&f+?K /0A )+   cOf 0B1)o"L %#676'&&'&'&'67&'&'456T4YCL %N*|:?Gx< `7(. 3  9+ 3-<E$676#&''&767676'&&'&7  :' +?h9-# U) /lF [9 ., :-Hi ;g;$,%#"'&767632767'&7676&76X+`>"  36cE&)45,' F2e/h~6G S !$]>-IfC  & $( In , _3''&'&766767'&7676u !Q| S(! I WD! ? )!:}\YhI.!@F#'&'&76676327256'&'&7765 @A^?- (B  +?y|I9**gJ, _xg=i@"N;#'&&''&'&767&''&767676$76cXX)GOF!7 F3Q +#2@F6&[ Z9 )@(&.m>+ V/E'!3( / )HOC',T& ;[15#&'&'&32&'&776 x  0U %Yh Ǫ ^<<J \@3%70676616'#"'"'&76676767676FX w)44(/( 4& \ 4H&&-.., L%E;3DN] $] F!#"''"'&767676  p"T5 : , + @2N2):L/&76767&'&776]e;z%@ 1@00=f 2cG f?+ 8$M'_8 1$rj+ @2O!c ,-5[ :!&&'&&'&&5&7600'&y  " ;4#XI]$ + *  -  w".:7&767676'&''&766767676'&#"73263&& +,$'i)  WX?3! o%  *4q!,+<= H/%& !E& $ "\_'&76767'&7676OAW  T' /,. G- =("+Mq'&7676'&6!'o76 <g! =%) .K  -BBw *63&'&776'&''&''&767676l  0%1A2/U^ +YE)4M    2?76'@ Ws 0f > {V('&7676'&&''&&'&7676676{~wh5 +3_,! Rh7G$Y5o&N +`' +8["Z%'&&'&766767676'&'&576u 6 `)J;-C*65 Oy  /.' F(v(6'&767&'&7676'&&z *q  n 224J:1N47] %J7 +3!4512B .: "C#"'&&'&&''"#&''4767&'&&'&'&76676676$70366 /~\\i# -g1W&" a5    =-9tR/o? /;6% x,4'`!# *g="r(%'&76767667&&'&''&-  Y-5x2   U|HAc"Eg%'&'''&''&76G /b k> Z!<k &6'&''&76767&'&&'&7 $6D.114('&%":a69%' Y- -! ag I#7'&'&'&&''&767676768 &6324+##&3,+* ..5@ $$/"_#&'&767&&'&&'&7676)\  G) #   % 22=..Q"!1 /7#'&&''&&76327&&''&&'&77676  /! * *; )    !/#! 3"""%q#1. '!du%.8%''&767667'&76676'7667&T T-\8 */    &  y    Y$#=*%# #75 E ('&'&7676'476&  $ 9 4z&66763'&'&'&76766766J'I!21'K;1F4$Z6%8= *< c.C6!! L t'#&'&7676#&'&'&E*MEF  =1 3 / 42$m^*"3 BBw '&76&'&776') !BB  8G(26-E537C` )%'!"'&7676!2767676. "9  {zE A"h855 #$f  (,''&&76327676'  ,  z2&'&'&767632#5Q (.2 (]55T 3#A$0BBw2#"'.''&'&767&%&'&'&76$76 ^KE<.N8L """6  0  D 9s9!U*(OF1]  W** &' _^,19^7'&''&767676U,":8%!, %/1  E<Y=#&'&&''&5672366765 /$C)%E3($ L@M ;+ (2"%#"'&76767676'&776$;=u56D .$2RFD I4"3 K68tt5I&% -o ?'!A&'67676'&'&'&'&7667&'&Y11VG--Z0# Di ,]2(: 9,"@ .'  G $  D%6'&76766767&'&7+7], 2F2)!!r BR m  !8 (/:&''&767667667&767&"'&767632'&'&'&6aQTC34:   &*  &hj  9o"!   # !  "L0 8 UV3X* !'  C0632'&'&7632767&&''&&'&'&7X   Z&+%)     $aHHd89 ny  E,%#"&'&767676'&'&776 ?'/X?h8*  #94)d,#%  -c4;" F2--4&&''&7676767667632&''&766726767&$:} &FJII$../j3f1 lE(Nk!$e3  1m!ML(),)A     L XL !'67676'&#"'&76767&+$%X,e99f.0 m3.\'34` C L  #'32%S 71'&'&'&'&767632 "5G7 (*  -/!$) *  ?$ ?'CB*,L{2&'&76676'&5&7676767&'&&& ! #5#F \Z}S- .:@)@m $?   %213VWc  kD M  ((%'&''&'&762376767667676 8D''  /""-+ /(A;3I .%( ^7"&'&'#"&'&'&7676767&&'&7667676676 T0//558 _@@ 3a/     ":O?>   88G    L'`C$'676767667632#"'&'&''C.i   &  x,1B$'-(!/P eJ  ~8'&'&'&''766767676z  ^V+#*  /X*>$) h:% % .,HHO@]hz!6'&5&"'&76766766761 ,WBi$$ Ce  1y3 G'  RQ"( %  FM!676'&''767&&'&&'& ">14O'xv# )f%3 LH1B$$$4   E#776%6'&'&'&7'"776vkF P 7U ?9__ 4 @yOY/. # QPy-?^}a#6'&763267&&'&766     n@ <*    % /E*$,7]'" .676'&'&766766766767667&&"'&76 5eGaQ7Y# 1 )$#M,   I  9,+8       #!.632'&&#"'&7667667&"'&76676j3$%E !K+  Dl(ba!0T%j4   9 **? !  I%%'&'&73&'&7676'&776=  J-X9+ 439:iOa%++5;6/< #F)!"X@?V  $ 11 $#(%%7'&/676&#"668#G5 : 8FZ &'3S:;>'d #<o*MOvA7E*.'6676232'&76'&&'##&7&61MI/ :$1Z5"3-'I! "#Te7q=? [ E!  ;v5k .#6'#"'&767676&'&7*'6'&'&7- ( # D  L % sl56'&&''&&'&776 ) #  )" #  L  6  H yh)'6'&&''&&'&776'6'&'&7 ( # )" # yryG7$76$%&'&'&'&76676%676$766'&'&'&56lbv)0+dezw!  ?s4g6Ju '48 i .4  00]H08))D@!-+ 0 |(6'&&'&'&76762767'&&'&76#    *-6+%6  5 T    B^%6%6'&76evP  xl! ML_2 "V2 V7$76$%&'&&'&'&76676%676$766#"&'&'"'&'&'&56kbv)0,cdzykw!  ?s4g6Ju'6'&'&77&&'&7Q )  # D    ,  L % /  b$Gf &'&76'&'&76A 0  % "!IH$,-0O;NEF#"'&74767676'&7767676767632'&'"&'~IhfSR) 67GJNOH  #  O@ /) 9**D5  9-$>XEEqNin-0"#:DTT3*  D <F1( J- 0mz]'r[Nl'76'&'&76L  @C i  7  .. > '&76676676   G{ PG2g7  "d76'&7676  Y|    <, ) B$77676'&'&547&'&i# *#I\ > -\0"I *(  "L L 7&76'&''&'&7644  8& ?   D0 G./ '`M"676'&#766767&'&'&6S+c  Ell,BJ }G%#% _3D  *P7! sEvEf3'&767'&7676T,Fy *>!K'Y3O0 < &5 @W('&'&767667667&&'''&7676%6 >\'R,   *7C5 < (-A#J*[^ F- <6-iP Ol&.6'&&''&&'&77&&'&7767&&'# )  #  )"   $     @  L  6  B  H a ) OlE '76'&&''&&''&&'&776768 #2   $ 3      @&&  =  KoK{76''&7636 Cd da y3 {o^j/k/h;''#"'&&'&77676#"'&&'&77676        "I' *!#D" * "I' *!#D" * P"667672'&'&'&7676776'"B  ,-N#%    , ,)# &&O  A #"63'&5'476'&55677d         D   :  BV763##&'5&  P # > dN7?G6''&7667&76'6''&7667&76&4'&6   !  4 V   "  4  ~  I % '  '1 %  '  '11  %6''&7667&76&4   )+( "@-   -G ( 2=> ,P 6676'&'&&766"7216'&'& '%!! %   7  m6#/&766     Zb + ` 26K[ z|/&d2 O8>m7#"'&547632,[U747632#"'&U@B^s&>yrylZb$OlKk/sL'3#xL[x63rmm a8Lslp s>6(mp s>6(mp   #"'&'&7676676#"'&'"s4 URQ&4> ENRue`ktl#1EKDa t&oXv_R6747766'&&kF 7074>3P 6xA-+ ?4Si!3 Wh,&'&'&767&&'&'&&7676676p@; f+CcF*d [-29G+C?@ +=.L2 _vY $  $ n " ( Cyc!64 45 z"7'&''76'&&'&&'&776$C-K4  M83l "  J* N!zz % N47'&'&''&7676'4&'&&7767632 4,**'k.dM   ,,!"K(P S!G? 2^]]+TJ{.%'&'&7632767&77676'&CIahiGH; ;*3~hI   I;6'$ AU< &I#"65SD  6a60#"'&&''""#&5&3263&%&'&76676bɁ,8 7KU/*5%sGߗ3$]* v]'- k<(bR5xD5> ;vPG&76676'&'&- $_  V /  >N \%"'&'#"'&'&76367&&'&'&776jI .#: 0;|/ $6Ob / zp 7w}/%''&'&&767632767&76767636!#!IJ]0   HXkG  GQ- ".? C(O@ @Gj%-,&" %'&'&'&&'&&'&77676>+[">$ &  $ |U13 Ip8EEI 0I=4J77&76'&776#"'&&'&'&767632#"'&'676'&'&&'&#"s.TYX;]#K2 -;:a6;1* 541F!C!z^^$$Dg,9%~{,+t6oot'8f/ 1  <, )7"CIwO& ,lmmmIH k@Q*+-O"tHGccB)6'&'&767&'''&'4&'&7676$ `{vXpV`7"CP59  @-#T_~w@P@A$G6   85y.><2#"'&&''&7667676767&%&'&7676%6 f7XJ[Y;,u:!/>-> &*,)z>EePkM?ED Sa3/A# #1/    !z'< zu{)'&''&'&76767'&776676'&%$$ 2- 03" G MtJf97 zH e - -<1 ),#&&''&'&76767&&'&776, @?.  [\PB *E7'1 ` , ZQ+.A'%If/6'&7632263236'&&'&&'&&766  13 I(   0$#)'~G$I% &8'L&__i  c$&676'&&'&&776763#"''&& -  BJ   ((*;6C&?cN!6#4AA 4 $ #.%#"'&'&7667667'&776'76'-27 rE  /@# 5"  ".X/B Z##"  $,6 / .%?Wo* -$"'&''&'&767676''&776+&'43.  OoK  J4$4 ne=.7*<  + 74?U;!"#_g5232#"&&''&'&'47667&'&'&&'&7676% X@J b ? `"4$9#E:' &  LPg C(O'(1/ X  + o-  L  !#_xl:56#'&'&76667&'&&'#"'&'&'&76766766@s568 "" .1 < 8#c8 8 ?94< !4+,(*(&8w|s(''&767667&'&7676'&764- U  $7O] mg< 6n  P!'&7676#'&&'676F  3B l<= 0>-'< 44% # 67 #&767676''&7676"76'&.] .$ {+ 82(2#=  !oU +/$=2Jst ^2.#"'&'&7667&767676'&7632 !iFG`#  L2E67078O)Z'k :,* (&?*:@A 'Y0<Y7>,'&767667667&&'&&''&&7667632:7<+ *  ( = ?  5wBBW7" 9"*0632'&&'67667&767&'&'&67&'&7&Q31n6@ $!&V/*U-Q G-- ) $E ({Wc\.JI7% 6$  390 m &  #%6'$6767&#"'&7!C!B$$    . 'F  #P= ,N" z-'&'&54767&'#''&7676676%6}f 6   YG  ! t S?<$ ՚-  $Vm QH)  FD`6 676'&'&767&'&&'&7- @  =(0(/    pS!* ! jEV",n'&'&'&766762(   ={0 #V'$#  P( `q+7&7676676'&'&'&'&7676e  .`O2\(5 Za ; 4! NGFS "G%.-QDCj&7676'&'&760(0'MH8*+*K #  S*4O)'632#"'&'&; ' 'HC A Uk**:;S  c'&'&76&67'476H8 ! k  S*4O)4 ^ !G&^]1O&'&'&&'&&'&77676 ' ; -4&->)c $8 1!b_%2%4C7&'&7676'&*:'  %QSN/ 8& ,  !x45++#N7'&7676#&'&'&# 55G29` +`./ / !7'&7'&'&7676766676"A e<  J3    O :b - e A97K!:'bc("7'&'&76'&&'&&'&&'&776'&^,2!o  OOO"  nY/  u  NB{-"0 Y,76'&&'&767&&'&&''&k    D ! g*! +B*]A`n#>qU\t(!'&'"'&7676'&776&7%*D ,, B+- h " B X!%8\'E !+ 6)7&'&&'#"'&'47667676&'&776 I7 '(&<5W ^  3W! 2$]bQW)A )L` X!!B~#7'&&7676676'&&'&77676Q;'  >4  v3E 0j " ( D#ִ3+a87V! z !7'76'&&'&&'&776'&&OM7"   9,%2D -,C- N"#m5T% ݮQ= X!% $=,7#&''&763276'&&'&&'&&776763ZL $??' c   ?+4-Q  :%   %MII[ + Q~&'&&7676676'&&'&77676'&R5' >-  DN 2 4 [ " ( D:֝3+2,Rz'&''76'&'&&'&776(ND0 K=K7/  ;*R y, N"ASp% &'d&'cf&'gsnl fg&'grw8 ~;&'<d]La&'bc&'oa&'oXd0&'1[:&)'BZ[:&)K:&)R:-&)[:t&)X:&)[:O)O`&*'? Z`&*?&*@v&*@&*?&*@*O/&,'5Z/&,5&,5E&,5&,5&,5Q,u&-'d&-&-'d&-&-d&-'du&-d&-G&-'dc&-j&--z&-d`&-k<l&-d&-x&-&-L&-d=4&.(o *4&. &./s} &.'s^I 4&.pwA&.jbAwq&.'s6 A&.&jb &./rz  4'.|f&.dbw4.4&. 4&.&.ViX&.B4&.kwJ&.B 4&.4&.4&.}w[&.sS&.'}Bw&.s&.'B4&.&.Bn_&.1C- G&.&kbS&.B&.V&.'}sRw&.'sj+gw4.&.'B^I &.'s 4&.4&.w4. 4&. &.'s=&0(Go 5&0 &0'+sn &0';dp;&0z#&0jic&0';d( #&0'+j &0'+rk '0H&0d0&0 &0+&0@G;&0=%&0k-&0=%&0&0&0L&0;d6&0'=%&0;d%&0'=%%&0&0=% )&0'+k6&0=%&0@G&0';dy&0';djRX0&0'=%p; &0';d+&0&00 &0+ &0';d+L&16 &1k8z&1;&1J&1kg&161&1'J:&167&1'JB7&1B>&16G&16 &1++&3o+&3+/&3b+3+&3d)+/'b&3d)+&3g+&3+&3g4=&40&4&4x&4&44&4)x&4')&4/&4i&4x&46&6&6&6n&6&6n6&6)&6')&6n&6&6n&6'=&7s'=7'=&7dZ'=&7'=&7s'=&7'=[&7s'=&7s'=&7'=&7'$'=&7'=&7'=&7's'=&7( '=&7'=&7 '=&73&83G83&8d*3G&8j3&8N3G&8GY3t&83-&83G&8lP3G&8'm[3G&8m73G&8NB3&8'_3G&8( 3G&8_3 &83G&8_&:J:&:d=J&:e&:TJ&:A_t&:-&:J&:fVJ&:'gaJ&:g=J&:GH&:'YJ&:( J&:Y &:J&:Y;B%'&'&76676676  "qV  "%**i 8,` 2# &J%%- *&^;v&;;<< r>'bc(L'i(L&i\&?'.2%~(L&i\&?.2(''i('&i('&i (L&i\ &?'.2%~\&?'.2%~\&?'.2('i(Li(''i(&i(L'i(''i&At&A&At&AAn&A'\n&A'Jn&A'U&A\&At&At&An&AA<&A'4t&At&At3&A't4ksK&CsK&CksK&CsK&CsKCs&C's&C'8s&C'CsK&CsK&Cqs&CsK&Cs&CsKC:s&C'qs&CsK&C1s&C'>&Djy)&DWDWf&DyW&DW&D#b&Ej-b&EbE&ELbu&EUe&E#4&Gj 4&GG&Ghc&Gk&G#0)&I 0)I0)&I;&Jx;MJqDM&J|&L4 L &LR&N!R&N'!tRNR$&N'!>R&N*O&N'!R&N'!mRr&N'!j8R&N!'6&Q%'&Q%'&Q%'Qg'Tny,H'Tnj^'TnR'Tn]'Tnjn!R'Tn']_j'TntIZ'TntI_'TntI'Tn#N'Tnk'TnuI`'Tn'tID%Tn1'TnuIm'Tnd@n&Vo@<&V'd)@<&V@&V@nV[,&W[&W'p[&Wp[&Wp[,Wc&Y)&Y')&Y&YcYYV;&Z'*<YV&Z*YVZYV.&ZkYVu&Z(V3 YV;&Z*YVA&Z'*YV@&Z*YV&Z'*<YkV&ZY~YkV;&Z'*Y~O&['sZZ[&[sA[x&[kA&[({} &[s&['sO&[sO&['sZZA&[x&['sxWH&]'7<W&]7W]W<&]k2W&](l@ WH&]7WN&]'7WM&]7W&]'7<W&]OWH&]'7O6&^6^6&^&_,_&_*W&a WaW&a uF'bn5uY'bndu'bn5u'bn5uk'bnr < u'bnjuV'bnu'bn'bn#uX'bnu'bnkuf'bns ? ubnOm&d(m3 OHm&d[O&drc O&dH&dk$OQ&dOmm&dxOmdO&dsb m&dMOmd&dd$Om&d{Om&d &dj$@-&fjJ@-&f-f&f.t-&f_-&f#AZhU[;t&h( 3&h8&h'Cs &h'1K6&hx+4t&hjw_4&h'1O8&h'Cjw8&h'Cr 'h4&hdw4shG&h_8&hC4&h6n4&h@&hk4&h@&h&hO&h|Z4st&h1O&h'@|Z4s&h1#-&h'@#&h4-&h@4{K&h1P8&h'Ckw4&h@4&h6nO&h'1|Zp4s &h'1jI4sh-&h'@K8&h'1C&h&h4sh8&hC8&h'1C(J'inkW(Js'injJ'inxpqJ'in|J'inj4AqJ'in'|J(J'inet(J'inet(J'inet('in#(Jy'ink(J'indt(J'in'et5P(Jin(J\'indt(J'ind\&jj51\&jj&jy&jw&j#AT]'knLTp'kndT'knLT'knLT'knr R T.'knjTt'knT 'kn 'kn##To'knT4'knkT|'kns U T kn&lj_= &l l/L&lB&l&l#B m&mtk&mbv&m&m&mm&mV&m'V&m&mt&m&m<C'WU(j <C'WU.HL`&'PL &( L &P\LT&L &P~&r( &r/+~~s&r/sL }&r';zB|}&rq}A&rj}`&r'%zB~~A&r'j~~x&r/rI ~'$&r}f&rd}r}&rF~~&r}`&r%}X&rzB!}&rkje}J&rzB~&r$&8}&r&j &j &G&?`&=&#u&(P .u&AV&ry V&V&k5Vb&Su&^VuV&sx V}&dVuV&d5u&au&V&j5t&t$& t&t2&ttf&'Stf&')td%f&'ot&St&t-&t$& tf&tt-&'t-&t&t&'=&(*o &" &'+s-] X&'T[X&T05&j R&'Tu0 5&'+j 9 &'+r.Z 'LZ&d+&v &+X&O5j&T&kR\&T&&&5<&T_e&'TX&TY&'T&Y&TX ;&'+k _e&TX&OX&'T&'TjGY&'T[XX &'T+&& &+X &'T+_#&j)_#&C%_#%&_#p&H_#&#)7`&j&8J&&6&#lp&dN8g&'sY@ e8l&'rZ= V&d5B&c&oN&ok9&[u;IB&j8"IB&IB&WIB&tI&#z`&zz&d]Iz@&Kz&z&uz&zv&zY&dz2&'ZzS"&Zz&{z3`&'Fz&( z:&BzT& z3&FV&( &3&'>s &'E*jX1&Y&&jU&'R3&'>jU3&'>r '&dU&:3&>/&O&I&k&I&&{&W)&R&'IW)l&R&'I&&I3&'>kU&I/&Ol&'RW)^&'Rjj&'ImI3&'E*>&&{3&>3l&'R>&'\&&-&t&&J$&{ p" &{,'cS,'jFS,@l'S,l'S,Ul'j5S,l''pS,',\S,m',\S,r',\S,l'#NS,$'kFS,'\S,'@'S,lS,D'\S,C'dFSuu&%u&,>&](&2&u;u&];(&'2&u&%&](&L&sL L&dL &DL&|s2L & =L[&sL&|sL &E4L &'Gr?L &GL &&&L&'s8iL &( L &8L&L &8%& %%.&d&g.& 7}&?B%& 2& &c9&'cD&c &J+&' [o&( &[=&O&[uE&jN&VZ&k>&(w_ g&Vm&'V2l&V&'VZ)&ng&'Vn/ F&('a 7F& &'s  /&'?]CF& &jl &'?g &'j &'r  F' &d F F& F& &D &D)F&k &D F& F& F& &? &'D /&?(E&'D(F& E&D &'k &D &D /&'?| !&'?jU F E&'D] /&'? F& F& F F& /&'?H'nmiH'njH/'npeH/'npH/'nj4eH/'n'pGH''nhH'nhH'nh}/'n#H'nkH'nhH'n'h7bH/nHn'nhH'nd`&0&$`&0&0&'R6&'A|&'0&RJ&&0&$&0&'&J&&'F%'n%}'nj`p%'nn)ee'n'pt'njw4ee'n''pQ%Q'nH%'nH%'nH'n#%'nk`%;'nC%'n'H%n%'nC%'nd$&j &X::&gg&]&#ww\_M&4MW&dM<&6G*E&4M&2&4$&4MT&7_M&'8VdMO&8VM&M/&'4+BM&( M5&*=&xM/&+Bq= &(Wo qE&W';&'sb q&' q$&Q &j* &' Q' &'j*n'@&'rc q&'K.&d*qq&q'&KJ&3 & q&k P& q&&q&q&j& ]&' q& W4&' q4&W& q&1aq'&'k*]& KJ&q&' "&' jqW&' q'&' q&&q&qq'&q'&' BBw &'H  &?$  )&k p&(.  &H  &'H  &H &'?$D&D&'H{}& /{V&B{}& 5V&= {V {&'P T{&'_ {&' {V&P{g&{& /{V&B {& {V{&'{&{g&{&'AG'nG'nj\ G'n;kq'n3v'nj;kq'n'3vYGi'nDG'nDG'nD'n#G'nk\ GS'n?{G'n'DGnG'n?G'nd=4&'Y4&Y&YJ&Y&Y&Yv 3&K "& 3&K "& " &'rv &'8 &'C "&rv "&J &K "& & " &'K &K "&J &'K"r&(dN "br&u"&rQ "&"&k,"X&"r&"r"&sQ u&;"r&d,"r&"r&&j,S&jZS'&^DSD 0&3 S&bS &#2L/&2L L&dxL &vL&2OL &RZL&2LE&2L &wQL &'x\L &x8L &XCL/&'2jL &( L &jL#&&L &j&j=&&g{&&# g&dgZ&0se q#&/rf _&d> ]&c &oeg&oU?&a?4&jw&kf;&&of&#I&S#I~&@&( ;&FrS&&vs}, i&'#V&DkA!&jD,L!&'#k!&&vjDX&&vr}) /'Be^F&dD(x&%1&vlA&Sp9&# &kOp^+&#/&B#&g.&C= &#}4&'#C=&#w5&'#=5&=wp&#2 &1'&&vkD}l4&#lA&&'#C==&'#j(wp&'#V&'#v/&B#&g.(&v&'#v &("R  &C&'s" &'&O&j&'h&'jH&'r" '6&d&g&0&)&t&k&&&&&$&'&&'&&&'k$&0&&'&'j&'&'&&&&'L/&L iL&dHL &{L&OL &ZL&uLE&L &QL &'\L &8L &CL/&'L &(d L &^L#&L &t}n&( t&,.zN&'9s' &'m[t,w&!&j&'m3.z&'9j.zS&'9r$ tz' A&dtt=Q&t.z&9<&s4&mtm&kZ&&mtz& tj&,tEF&P&mEF/&'mP&m&'mt&&m.z"&'9k/&m<&sEF&'mP&'mjt&'m[.z&'m9tz& tj&,tt.z&9.z&'m9BBw8 &(9j 0 &&'sX n&'YNd' &tM&jM&'YNM&'j&'rU  'r&d  &~ &l&^1d&TN &kV&TN & & & 6&YN_&'TN &YN &'TN  &&TNA&1S&'k_&TNl&^1&'YN &'YNjpB n&'TNd'&'YN & &  &&'YN)u&'hd)&)&'hd)&)&hd)&'hd)u&hd)&mG=)&'hd)c&j)&))z&hdo)&k!)l&hd)&)&)&)L&hd&( &ls]&'o~sw6 lc&'-%p&=ef<+&j?&F+&'-fs+&'o~j?sb&'o~rx3 '`YP&d?,&L;s&o~fJ&HeC&-&kYeS5&-&-&8&i7&-r>&'-i7&-l&'-&le&-c&18s1&'o~k?ra>&-fJ&&'-i77&'-j ,lle&'-%s&'-o~&-&8,s&o~s&'-o~z4&(f z&n &'Ps  5m&'ic &&jW&'P &'PjW &'Pr  z'b&dWzz&4z &P&&z&k&z&bz&uz&Q&&'Q5m&&'az&a&! &'PkW&&5m&'Q`&'jz&'i5 m&'Pz&bz&uzz &P5 m&'PBBw&/& &/&&' S&' )d&' o&Sq&T@&/& & @&' /@&/q&T&' /=&(/o &" &'+s-] X&'TKI&Y05&j R&'Tu0 5&'+j 9 &'+r.Z 'LZ&d+&c &+X&O5j&T&kR\&T&&&5<&T_e&'TX&TY&'T&Y&TX ;&'+k _e&TX&OX&'T&'TjGY&'TKIX &'T+&& &+X &'T+/=&(a =&&'xsu &'k5=&Ej&jY?j&'k/j&'xjY&'xrr ='z&dY==&^=&x&Nb&k=&ks&k=&=&=&{S&k|&'k{&k &'k=& &kp&'xkY|&k&N&'k{P&'kj)_= &'k5&'kx=&=&==&x&'kx(2&];2&']bF(22&']-e(2`&%(2[&'] R2&']\](2&']jP(2n&]! &!A!&dX A&f!&OA&=Z!}&!6&A&bQA&'b\A&b8A&HC &'ZA&( A&Z!&A&ZGX'nyG9'njG'n~SeG'npG'nj4eG'n'pWG'nu:GK'nu:GP'nu:'n#%G?'nkG'nu:GQ'n'u:EGnG"'nu:G^'nd*C&jk*C9&(C/&B^C&(kC&#2,0'nuk,0'nj0'nnui0'nt0'nj9i0'n'tP,0+'np,0'np,0'np,'n#,0'nk,0'np,0'n'p?e,0n,0r'np,0'nd-&a&'=mV&=m~&=m-L/&L uL&dTL &0L&2L & =L&LE&L &14L &'3^?L &3L &&L/&'$iL &( L &$jL#&L &$bz&( &ns&'QsL S&')B&SA&joVSA&')BA&'Qjox&'QrI 'aSf&doS"]&&QS`&.%}SX&.By&kfSJ&.B&av&8*S&5S*&)B*SS&'.B5S&)B&'.Bb&bS&.BG&'QkoSS&.BS`&.%*S&')B5fS&')Bj?6SS&'.B&')BQ&av&8S&Q&')BQL{&(o6 LK{&^L&rj L&L&k>Lj&Lp{&{L{L&sj &W L{&d>L{&~L{&'&j>+%& (\] ~S& N6T& /sY- s& &P,$3& G"& j GB& '$G6"& 'j d6Y& /rY* q5' AG& d  & 6& GB& ):& $~"& kF,& $q5& !& & ` & $S5& '$& $MwC& '$wC& M& $ & 1ao6(& 'k S5& $GB& & '$G"& 'j $ Ms& &P,$6& '$q5& !&  6& 6& '$(5&';$)( &:$(()&k(p&(. (5&;$r(;&';$ (:&;$(&':$)3&35&';$H-'nH'nj=H'n@H'nIKH'nj@H'n'IKdQH'nH 'nH%'nH'n#0H'nkH'nH&'n'RHnH'nH3'ndL'&(o6 LK'&^L'&rk L'&L'&k=Li'&Lp'&{L'L'&sj '&W L''&d=L'&~L'&''&j=>C&(u# D,C&O&'sW~ &'t,w C&r`s&j`s&'t8s&'j&'rW{ 7C'J`&d`C C&jC&e&W`&tD;C&k(`|&t7C&J\:C&gC&`\&t&'t`&t=&'tE=C&E`&t=w&1Ey&'k`&te&W&'t`&'tjh`C&'t,w&'t7C&J\:C&g`CC&&'t%`8&(W }8&8_&'Csmq &'gEx6]8&+~f&j4~f&'g+8_f&'Cj48_&'Crmn _8'~&d4~8B8&8_8&C~&J~}&gy]8&kJ~o&g_8&\8&88&~O&g8x&'g~&gm&'gm8&~&g&1bY8_l&'Ck4~x&g~&J8&'g~&'gj[~8&'g,x8_&'gC_8&\8&~88_8&C8_&'gCu]z&( z&'h&'2s 5&' 1$fz&]hs&jY]h&' m'hs&'2jY'h&'2r hz']{&da]hz6?z&'hz&2]&]u& Zz&kG ]h& hz&Yz&>4z&I]h& >4&' I]h5& vK&' vz&]uK& ]j&1?'hp&'2kY]q& ]&>45&' I]h'&' j]hzK&' 1'h5&' 2hz&Yz&]hz'hz&2'h5&' 2"&y/MS&dM&@&~/M_&j&y/&~/M& Ma&'lM&MH&S"&'y/M&(M M&&msM&Ee&LEE&dNE&E&QE&j E&LE{&QE&zE&'x E&E&eEe&'LeE&( E&vEY&@E&Z^}a&jDb^}a/&^}a^k&~^}a&^}&#&ACI@&'#NI@&#I&"IV&"I&#I&"I &r~(&d(&m&r~%(&J0f&r~&r~(&n'(&'o2(&o(&P &'r~a\(&( (&a&f(&a7&`7E7&d7E&\7&a47E&8?7v&`7/&a7E&\67E&'^A7E&^7E&?(7&'`Ql7E&( 7E&P7 &T7E&QO u&'-dZ L&-d . i&ks &(n  u&-dd {&'-d@| z&-dO &'-dZ1.&1u&'-dH&'77)&77<&k}&(@ H&77oN&'77M&77&'77)&H&'77d&&/&'H)/&H&Hd%[&*%%&'>%%&>%&>%[=&(3o :&` &'+sk} &'s1;&{QA&jTQq&'s6{ A&'+jTv &'+rkz 'unf&dTQ&x &+Zz&V`}X&B&k}kJ&B&&&sQ[&sS&'BQ&s*&'B*&}&BKA&1  G&'+kTyS&BZz&V&'s+Q&'sjgQ&'B1; &'s+&&Q &+ &'s+=&(Oo =&~&'s k&' eu&w&jPU8&' w&'jPU&'r 'q&dPU&&w&Y& &kv& &&&& &' k& },&' ,&}& &'kPU& w&k&' I^&' j"}&' euk&' &&&k&' NE<&'+RNE&+NENE/&kNEv&(U4 NE<&+NEB&'+NEA&+NE&'+RNkE&n~NkE<&'+n~mz]'r[N=$&(Io V$&6&/s ~;&''|7t$&M&j~S&''s6M&&j~6&/r /$'&dl%$$&6$&&,L&R6($&kV&NN/$&$&$&6&=NG&'R6;&'Q&'=I$&Q&=A&16S&&k~G&R6&,;&''d.&''j=$~Q&'=|76;&''/$&$&$6$&6;&''uL& L 3L.&dL &EL& (L &3RL& ?L& L &*L &'>5L &L &uL&' _L &( L &(L&OL &L/&L :L&dL &RL&2L &=hL&LLE&L &4L &'J?L &L &&L/&'iL &( L &>L#&L &''`&I`Mcm&dIM& qZ& IvM&`1&Iu& IM&$x>M&'.M&_M&j&'IM&( M&&M&&']&]&]2&]y&]&]vE&=EEa&dE&EN&=E& E%&=E&=E&E&'$E&E&&E&'=E&(B E&E&E&f3&pyW&쉌&pW&㉇@W@&'"&'"`&'"x@W&i&o&pyW&쉌@&"@W&'"p&pi&o&'"ph,&+^Wh,&+h,&+^Wh,&+Wh,+Wk&+'nWk&+'Wk&+'Wh,&+nNh,&+^ho&+^Wh,&+Wk&+Wh,+k&+'^ho&+^Nh,&+^k&+'^R&,''*L!R&,''*Le9&,'*L!R&,''*Le&,*LRd&,''~'Ek*LRd&,''~'*L8Rd&,''~'*LCR&,'Ek'*Le#&,'*L!e&,'*L!e&,'*LRd&,''~*LR&,'*LRd&,''~'*L!R&,''*L!R&,''*L!Rd&,''~'*L!)&-j%(&--&-]l&-U&-#A DC&.j D&.uD.[&.@D&.uD&.#;!7M&/T7M&/l!7M&/T7M&/mT7M/T7&/'T7&/'yT87&/'[CT7M&/T7M&/'7&/T7M&/lT7&/T7M/'7&/''7&/T7M&/!7&/'&0j&0l0l&03D&0+&0#)z&1jT(z!&1z1i&1]z&1Zz&1# \&2j&22&2g&2&2#4>{&3jy){&3J{3Jf{&3yJ{&3J{&3#C&4d)54iap&4gstI au&4grtF nD&4JdML\&4bc&4oaC&4od5&4; 6&5c36&5 6&5c36&53653&5'tY3 &5'b3P&5'z[36&5tY36&5ct&5c36&53&5365&5'ct&5c36&5c &5'c a6&6c6/a6&6dB a6&6c65a6&6c=6a666a&6'tY6Ta&6'p_6a&6'R6a6&6tY6a6&6cat&6c6/a6&6dB6a&66a66a&6'cat&6c6a6&6c a&6'cPG7&&8jV$#&88&8Y&8K&8#A?}+&9j)}&9w}9wF&9Y[}&9w}&9#v%&:d :_E&:`sj ~E~&:`rsO }A&:\d\LG&:bc&:o^`%&:oi}d&:6&<sB&<&<sB&<B<B&<'@ B&<'@B&<'@B&< &<r&<sB&<B&<@B<&<'@s&<s&<r&<'@s>&=N.>&=e>&=N.>&=e.>=.&='.&='r.U&='S`.>&=>&=N&=N.>&=e.&=.>=&='N&=N>&=N&='N{>X76'&'&&766766 ;. C?"$$+9E'  &J%%-&|{>{&>d&?u&?k,d&?#&?<,&?kbT&?u,?#&?'<6j&?u#&?'<,&?&?u&?u,&?f&@jf&@WIf@I&@vf`&@[f&@#&Aj%&AvcAc"&A$l&A{!&A# BRc%#'&'&76676676=[& F  "kB @b 2" &K$$- cq&B&BN!&C-&Ck$-I&C/&C-&Ckj-S&C-C/&C'=-i&C/&C'-&C-&C-&C-&C_u&D/_g&DB_u&D5_g&D=_gD_&D'%T_&D'% __&D'%_g&D_g&D_&D/_g&DB_&D%_gD_&D'%_&D_g&D_&D'%l[&E(l:&El[&E(l:&El:El&E'g?l&E'g,l&E'g7l:&E?lE&E'l&E(l:&El&Egl:El&E'g(l&E(lE&E'l&E'g(w|&F'32w|&F3w|&F3w|+&F3w|r&F3w|&F3w|sFIEJGIJ&G$IJ&GE &G:E &G E&GIEJGIJ&G: &G' E&GIJ&G)E&G:E &Gpz&H,pHp&Hdrcp2&H}=p&H,p&H[p&H,p&H,pJ&HUp&H'KpD&HKp&Hap%z&H',q8p&H( p+&Hr3pn&H 3p%&Hq8VLIVLI1J}&K'/}&K}K} &Kk|}S&K( }&K}&K'z}&K}&K'/}_&KLr}_&K'Lr;&L&L'x&Lx&Lx;Lt2MBBw}B+&O &O6}B+&O &O7B+OB+=&O')VK=&O')V =&O')V&B+&OB+&O B+&O &O6B+=&O)VB+O\B+=&O')VB+&O B+&O VB+=&O')VL&P( ei&PpKKg&P'sV@ 2&P'6H&PE25&Pj25&P'6EK5&P'jbKl&P'rW= XJ'kP?2Z&Pd2P/&PBK&PE2T&P2L&P6K&Pk8`12>&P6XJ&Pk4H&P ?$&P^2&P6>$G&P'62&P68^X&P'6f^X&Pf82&P62&P1mK;&P'k>2G&P6E2T&P$&P'62&P'6j*2P82&P'6K&P'6XJ&Pk4H&P ?2PK&PK&P'6c &Q#c Qc &QdQ;&QFc &Q$ &Qc &Q#c &Q$T &Q_9&Q'UN*&QU &Q/ &Q'#B &Q( 5 &Q=c v&Q;/ &QBP!&RUP!Rsk&R-~7SqF&Sy9&S7&Sv:7&Sv 7&Sv7S&S:&S'v 7&Svk8&S~7&Sv:7&Sv&T'e^&Te^m&Te^&Te^M&Te^v&Te^2T7>&Uj.7>&UqY7>UYf&Uy7>u&Uv!7>&U#9V9V&W(L &WV&Wr1' 1&W %&Wk&W &WWQ&Ws0* &W;xWD&Wd@&W1&W<&Wjr&Xsz&X2r&Xyz&X2zX&X'wBb&X'wB&X'wB!z&Xb&Xx&Xsz&X2&XwBzXx&X'wBx&X&Xr&X'wB6&Yjk69&Y|(`6Y`&Y*6&Y(:J&Y#?n&Z(q n&Zk!&Z'M,s T?o&Z' n&Z,&ZjX,&Z'I!&Z'M,jX!&Z'M,r n'_Z,&ZdX,nZn&Z3!n&ZM,,&Z,&Zn&Zk,&Zn&Z_n&Ztn&ZP,&Z&Z'P,o&Z&Z'_n&Z_,&ZF&Z1}!&Z'M,kX,&Z,&Zo&Z'P,a&Z'j,nZT?&Z' !o&Z'M,n&Z_n&Zt,nZ!n&ZM,!o&Z'M,q[j\4&](k ]&]!u@s&]'sL &]')BCzr=&]gA&]joWA&]')Bu@A&]'jou@x&]'rI ?']f&]do]&]=u@&]`&].%xX&])B3&]k [J&])B ?&]/0&]:&]*&])BS&]')B&])BM&]')BM&]&])Bu@G&]'koS&])B`&].%&]')Bg&]')Bj@6]&]')BCzu@&]')B ?&]/0&]:]u@&]u@&]')Bc^G&^]1=6&`dO`fO{&`esqX O{]&`ery. |O{&`ed[LOx&`bcO&`oT6&`oz8dOL&`6%&a(W &a?$&a'"/s} C&a's"&aCr&ajCq&a'sf6$r&a'"/j$&a'"/rz '3aC&adCaq&a $&a"/C&aVC&asy&akzC{&as&a3&aMg&a)C[&asg&a's)C&as&a's3&a3C&asEA&a1$x&a'"/kC&asC&aVg&a's)C&a'sjgCaC&a's$&a's"/&a3&aMCa$&a"/$&a's"/-P&b(_ X&bN&b's} N&b'lsk N&bNr&bjNq&b'ls16Nr&b'jN&b'rz N'bN&bdNbN&bN&bN&brON&blsN&bk;N{&blsN&bN&bN&bN[&blsN&b'lsN&blsN&b'lsN&bN&blsNx&b'kN&blsN&brON&b'lsN&b'lsjgNbN&b'lskN&b'lsN&bN&bNbN&bN&b'lscc'bc'bcP(&ej)TO(!&e(e&e6(&eu(&e#AY&fjY&fYf&fsJYA&fJZ&f#<&gj<&gg&gpA&gr&g#&hj%&hh&hqe&h&h#Q&i'' hQ&i''m &i' hQ&i''m&iQ&i''}C'D Q&i''}C',Q&i''}C'7Q&i'D 'm&i' hmy&i' hm&i'Q&i''}CQ&i'Q&i''}C' hQ&i'' hQ&i'' hQ&i''}C' h>&jjy)&jJjJf&jyJ&jJ&j#&lj &ll&lSQ&lK&l# &mj%&mm&mqe&m&m#<&nj<&nn&npA&nm&n# H&o''9/i H&o''9 a &o'9/i H&o''9 a&o9 H(&o''sR':/9 H(&o''sR'9 H(&o''sR'9! H&o':/'9 a&o'9/i az&o'9/i a&o'9 H(&o''sR9 H&o'9 H(&o''sR'9/i H&o''9/i H&o''9/i H(&o''sR'9/i>&pjy)&pKpKf&pyK&pK&p# YC&qj Y&quYq[&q@Y&quY&q#5&rj&r~r~&r3D&r7&r#& !&*!&'E5!&!&t&'  _!&(j !& '&O!& @we&(dK7e&(o*4&. 4'. 4&.4&.B4&.~M+;&.'6+&.&k4%6z4&.( b+&./sm 6y+&./rn 6+4&.6+4&.6[+&.&j4%6~B&.'~M) 4&.oxQ&.'4&.4&.k+;&.'6B;&.'~M 4&.4&.;&h'h&h&hB&hM+&h'16+&h'6kwz&h(I +&h'6s +&h'6r +&h6+&h6+&h'6jwB&h'@M)&h+-&h'@+&h&hk+&h'16B&h'1M&h&h\&x\'x\&x\&xB\&xtM+<&x'z6+&x'z6k0$z\&x( s+&x'z6s~ +&x'z6r +\&xz6+\&xz6W+&x'z6j0$yB&x'tM)\&xHsR&x'\&x\&xk+<&x'z6B<&x'tM\&x\&xQ}&zQ`'zQ`&zQQ&zQB-&zMM+a&z'68+a &z'6k{QzU&z( +a7&z'6s" -+a<&z'6r" Q+a&z6Q+a&z6+a&z'6j{B-&z'MQ)]&zn&z'Qn&zQR&zk?M+a&z'6MB-&z'MQ`&zQQ&zN&}N'}N&}N&}BN&}M+&}'%6s+*&}'6k$zN&}(2 Q+V&}'6s\/ h+[&}'6r], +N&}6+N&}6K+$&}'6j$HB6&}'%M)N&}]B&}'%N&}N&}k+&}'%6B&}'%MN&}N&}CY&hI%Y'hI%Y&hIY&hIBY&hIM+'B&hI'6+'&hI'6k\,zY&hI(R +'&hI'6s +'&hI'6r +'Y&hI6+'Y&hI6+'&hI'6j\,B&hI'M)#Y&hI4X&hI'4Y&hIY&hIk+'B&hI'6BB&hI'M%Y&hIY&hIr5&T5'T5&@5&B5&Mx+U&'g6c+Ul&'6kzD5&({ B+U&'6sMq X+U&'6rMn +U5&6+U5&6;+Uf&'6jHBx&'gM)R5&Bb&'gb5&A5&k.x+U&'g6xB&'gMT5&@5&qk&qM'qM&q>&qB&Mq+N&' 6q+N&'6k*qzB&(y W+N;&'6sb n+N@&'6rc q+N&6q+N&6Q+N &'6j*]B&' Mq)K&W[&' q[&q?&k,q+N&' 6qB&' MqM&q>&@&#'#&&B&{M+$&'#6+$'&'6kDz&( r+$S&'6s}, +$X&'6r}) +$&6+$&6k+$!&'6jD}B4&'#{M) &w1&'#1&&k+$&'#6B&'#{M#&&J &- '- & &Q &\:-&'YNE:-S&'kE  &(W :-&/sX E:-&/rU E:- &E:- &E:-M&'jEQ_&'TN\8* &-:&'TN: & &k :-&'YNEQ&'YN\- & &2&'&&B&M+&'-6+1&'6k?z &(@ l+]&'6sw6 +b&'6rx3 +&6+&6f++&'6j?rB>&'-M)&wl"&'-"&&k+&'-6B&'-M&&\& >' >& /& B & M+?& '6{+?"& '6k,z3& (j Z+?M& '6se& q+?R& '6rf# +?& 6+?& 6S+?& '6j,`B .& 'M)<& ZL& 'L& 0& k+?& '6B & 'M>& /& 8&@8'48&4z8&B2G&P'6M)c&P8s&P'6 s&P X&PkE+f&P'66B2&P'6Me&P V&Pn&Zn'Zn&Zn&ZBn&ZsM+o&Z'y6+&Z'y6kXzn&Z( +&Z'y6s +&Z'y6r +n&Zy6+n&Zy6+&Z'y6jXB&Z'sM)n&ZG&Z'n&Zn&Zk+o&Z'y6Bo&Z'sMn&Zn&Z&ak'_a&a_&akB&aGM+&a'sN6+x&a'N6kz&a( +&a'N6s} +&a'N6rz +&aN6+&aN6+r&a'N6jB&a'sGM)&a&a's_&a_&ak+&a'sN6B&a'sGM&a_&ak:4&.:&h:\&xVQ:7&z:N&}w:Y&hI:&5&q:$&:&]8 &:&:& :`8&:kz&:&:7$&:<&P:n&ZU:&a)N(&NF'67'&7676'&/k )>" $Fl = &8Z NFtpF&2^*#D7'ID!'drXd 33Dk %6!&''&7  )i ,,/1-pX&f$q!&fr!&fs!&fzt &f .u&fv!&ftw &fux!&fy &f1-pX&f$q!&fr!&fs!&fy!&fm &fy&ftw &fux!&fy &f(,&fv!&f*!&f"63'&5'476'&55677%    t    D  # :  Bu632'&''&766   "@ 5D #!   #, d4=6''&767&766'&'&7676'&7&6    ! 3 )  F+   X  K9& %)2H$!)] '  D0''D' P*%'#"'&'&.177676656760VcIlJ/ 73 -L -F* 2 zd %''&776 L!  M  U#B$B7'&''&767676#&7&&*+i $' @/ V @J: N= 5+4N 24+$$&bY[ ULLULL '&7676'&76#&'&&!K3~ *,N0 $8!EJ(2L  W3X& @+! -8I@Dj&''&76676  410 ^,' ,6&i"&'&''&763326766^'  Wd2I-  '^, ,Lk#"'"''&76326761|z  P==L  , ,k#"'"''&7632676מ  PkkL  ,  ,'7$'['3[ ['k5[?/(s ['[''['['7$'=[ 'T['T'[7'W7'':We7':We7'We7W1V6&'&67662#"'&'&7676767676#"   FF,&ŜS4 U܆:v# .?= (2(  E  % ,(!,o0&{ [2Ui %# 672'&'&7676(3 $4ߪ   =z$>i=%   ),XF1T376766767676'&6766#"'&'&76n?(    J$-,&ŜD2 U܆9v$  %& 3   +(!,n3)632'&''&'&7676&'&7   /'3BP  BN  2/*Ev8T  %7'&7667&'&76632&77&( %)  Rxu#21?X6kS%96  $;2 9 )'*+V kI!UX&s1 T&s  U`&r1 +T &r  Ui1T >&'p3&h33&kd3;&( 3&p3&'p?3&p >{&'hl&l&'p4&s? &'G/s&G/@&G/1T`-66766#"'&'&7676766766762K%*,&ŜD2 U܆;t# .='  U #""+(!-o0  %'&'&&'&&'&&'&776376|HJ   # cF**  "#MHg6J1Q/&P;(uK9%<   G&76'&'&'&'&V !\+ P`&N= q'&5&''&76&#"376; L Epv,%%J0?>T?!%! &'4&'&&'&&''&76676x $ (k B44M? >55`)7  6:%U,"63'&''&&'&'&&7676t JGJ  9 ) ECv3%=~79gp &#3 ?,& FU&,& 9,& FU,,& 4U, U& 'zqUK& 'VVU& 'mU,& zq+,& FW& FU&,& 9U& U, & '`FW& F+,& F& '`F hG&(  G&k&'#sv T"/&' G&R e &j>% &'ge&'#j>&'#rw G'_ &d>  G G&. G&#e &G & G&kd & G& G&k G&M~ &q &'M /&kE&' G&k E&  m&1;&'#k>q &e & /&'M6 !&'j  GkT"E&' /&'# G& G&k  G G&#/&'#Tf&s? Tk&r< 1T` & j\ )& 8 & &&& 9 & = && #u+ q ,q& 4q& m] W&  A& c &  q q& XA& 'Xc & &q& 99 &  A& &V76167662#"'&'&D,&ŜS4 U܆;t$~+,(!-"Q> &'&'&7676'&'&76770 ?5gi!~NIBO =>< $)_ 'BT.6'&763232'&7667&'&76764) R)c'j "! SC#53P  &]1<9 667'&7676'&7661# 4? $IB"-  7  = )4 '%  )@Vf&^s? Vk&^r< &V^R>e&aR>aR]&a]Q>Z&_Q>_Q>&_dD&_eQ>&_ &_JQ>&_Q>p&_&_o &_'v&_v.&_G9Z&_'YB&_(t &_XQKO&_&_Y4&`'r?B&`rB&`qB(&`qBo&`rB&`qBT`PK&/632'&&''&767&767&'&'&&'6'&'&31nl%' M,v&$T&& ,A(  %c\[:H8S)(?5/;0 f. ,PKPKYY0:'&767667&&'&&'&76676676667675&1:    0T2/?%=]AU_=C^&1+$ #tQSd'! #"` 56l< 62"~' .YY&JYYYY&#U(4>7&&767676'&&'''&'&767667667676'&#"73263&+,$'g* m$?-?8(q$  +C+.<= H.&((    2  "!w'k *r *'k{ r> &>k *r.4<''&'&762766766766766676"''7&&#"68?AP *   &NG* ")u>k#"&* ( = (6b- (] "'(@(&&4* -#'&767632&76'&'&'&  \@Hq_33Dr_33F8s`33N,t_33KGu]33o?v_33J%w_33 ~$x_33Z:y_33]zp^33>Hq_33Dr_33F8s`33j*_33X^33_+^33J%w_33 ~$x_33Z:y_33 h(e33o?v_33,:*_336#"'&&'&&'&71 6 ( ]!  + #*!Q &jCDM0&bc~ &<d]L&d&d&1&oa&oX5g&grw8 c5&gsnl 'jUA#+57''&7767&76762'&&'&67&7675&z$YT$ 0F I#H(' 2080*V' #7@(L-K)'&Q D3# !UAT&-j<4&.j&0j&hj}&rjje{&vj\&xjQh&zj"N&}jzY&~jhR&j&jY&hIj5&jv F&jq&j &jOh&jtW&jZ &jc)&j! &jYz{&j&jv=&jc&jfr & j8%C&j(m[8&j^Dz&jG &j&jC$&jF5&Pj8`n&Zj &]j [mw&ajztN&bj;4&.j&hj\&xjQ<&zj?N&}jY&hIj+5&j.q)&j,&jY= &j@&j~7& j:y8&j|pz&js&j <$&j?B&PjEn&Zj&aj G&jj/T3&767676'&'&#"! '&&''&76! 766# #$ 5*: BFA@ &OmUC5G'"" 6 )*= ( ! $   Ok:Vcp-cq[^rNs@tuoXv7w'6xRy:Vcp-cq[^rNs>+@7w'6xRyh(oXv3R*~'d]L<d&1r 76#"'&32No) )X8; /(-R s'~~s'/sL }'(&Q6'XCr'jQ'('i&jn'x'/rI f&y5&dnr|&5''in''t'ky'f'y''r'("''r'(l''tl't'A&1'&kn"''i'('er&j>'(r}'&Q6'('f'y'r''('0'&''B'M+'('6+&kn'6 /(-R ~+s'6/sL +x'6/rI +'6+'6+&jn'6B"''M)'u '' ''k+'('6B'('M''CJ#&763&'&736676'&&'&#K#,9+# #,:*%' "  " Z9$)$,9$)$,  "  e(&B')/L&?'.2e'&B')/LL'xv&?'.2e'X'&B')/LL'?S'xv&?'.2e'{'&B')/LL'%~'xv&?'.28e'HC'&B')/ LL'+'xv&?'.2e'g'&B')/LL''xv&?'.2e'{'&B')/LL'%~'xv&?'.2e('{&B')/L'%~&?'.2e('{&B')/L'%~&?'.2e('Z&B')/L'&?'.2e(&B')'/{L&?''.2%~e(&B')'/ZL&?''.2('%&'&'&76%6#'&&767676pj W )=s61  "Eqx' JM!mXCf!q;-3\,H(L4%&'&'&76%6#"'&&'#'&&767676"  Wd4ŹtF8 T.=s6/  "EqݨI^!?)(W Q4PZU% &6-3\,HT5&7667676'&'&#"! '&&''&763 7668"  $$ 5*:  BF@ &OMUC4H%" 5 )*= (! $   (N7/:"'&'&7&'! '&''&'&76! 76632#"'7&#"326766LhCC$& _ !FS##0` !"" 5( $  04 !#$* $7 m&''&76232676#"&    4  5 ,6Vy%.>&'&76762#L 5    r  $*>;&n(>m -&n[&n'(sfn &n'dN; &nr`#&nj9c&n'd(`#&n&j9(r&n'(rgk "'nZH&nd9>n&n[&n(U&nG9;&n%&nkV-&n%"&n&n4&ng?nL&ndc46&n'%g?&nd]&n'%/&n]&n%)&n'(k9c6&n%U&nG4&n'dg?&&n'djX>n]&n'%N;&n'd("&n&n>n&n(&n'd(:y3'%.sE Py8'%.rE Vy%.&njr:&(Ul u& Ws&/sL (}&&Q6YU&&j&'YW&'(jWx&/rI (W'5&drk&W&(&Hi'&O&k&OW&&4&?&Y4"&'?O&Ye&'Oe&&OA&1W&'k("&O&Hi4&'?Y&'Yjor}&&Q6OW&'(YW&&rW&(W&'(Y&j3G&843G&8~?3G&8s]G&8'~NG&83G&8(3&8'k3G&8( 3G&83G&83G8h&j&j&B"'&763276rA 6 (   BgP |.sGPF2#"&&'&66"326&'&&[4[ 1##C3 3' / (F`X3S2+S:3T1_EEU.M.EPQ07'&&#"&'05&7>3320&&#"&&76676&l#8%(.--    P,%#&&'66766'&&#""&'>323267632/-  ,!+D,eI2+&>0 4' #3/3<$P=22#"&'&&'&632326'&&#"&'45&5>'&&#"&&'66_,' ,+%B%,     + &#! 0P #&#)<   ,'!3& $ Q2321#0#"&''#&'66763'(P%#RiQ da B:hS@72#"&'&&'&632326'.#""&'2646'3267#"#166p;,#A%-     !*h-  "3*>#  ,'( .?8 " R'72#"&&'&676676326'&&#"}+J 3!>,M35$ 5@"9")B'0R)" I,/" 2".(&:P$2632#"&'>7#"#'>5#d   M  BY`* +( K"2D23#"&&'&676'.'&6626'.'&#""32'6&'&&V5'  +&5:*) $0] $  $K%) +.)#%. ('%0-F *R'667#"&'&6632&74&'.#"326334+I 2!>, Lq$H-4@#8")B&1Q(" #1".'%; ''B. S''B. '=%'+0 6'=%'+08-'@'Ch8'@'Ch~~''zBr~~S''zBr''v#%''vsR'';xy'';x6''&z6''&zB'%'g}H6'%'g}Ok''Sv~Uk ''Sv~Y 'T'+_ e'T'+3'I'>3'I'>)X''4hI)''4hIB *'g'+H *x'g'+ E'D' 'D'W'' ']'' 'w'#&v}4'#&v''$''.z'm'9.z/'m'9'TN'_'TN'ls'-'o~rs>'-'o~ ''P ''PY 'T'+_ e'T'+ 'k'x|'k'x'.B'QS'.B'QM6''$ S65''$ 't''t'8_'g'C8_x'g'C'hK' '2'h' '2 'B'+ S'B'+}' '' '6Q''=6G''R68K'6'P>KG'6'P!''M,Z!''M,Zu@')B']u@S')B']$'s'"/a$'s'"/aN'ls'bN'ls'b+'6'B.+S'6'B.+-'@'6h+'@'6hs+R''z6xy+''z6x+a''6z+a''6zB+'%'6}H+6'%'6}+'X''6hI+'''6hIB+U'g'6H+Ux'g'6W+N' '6]+N' '6w+$'#'6}+$4'#'6:-'E'TN:-_'E'TNl+'-'6r+>'-'6M+?'$'6 S+?5'$'6 +'g'#6+x'g'#6+K' ')6+' ')6+H'B'6+HS'B'6+aQ'='6+aG'R6'68+f'6'6P>+fG'6'6P+''y6Z+''y6Z+'s'N6a+'s'N6akE''#q''#&'"&'+&'6+"&'6]'%'(nc6'%'(nW'('OW"'('OM3V^727&&''&676#"'&5&7667&'&7676'"'&767&'&&'&&'67&'K%o5 3  ) ) *$'% '2 (.%  7%d  7A - !,  ( ?1  @*? +FE55-Xf7.4741U0 2Q'+ '/%V24!!@;% \NU/ ,91 9$X&'a)j! '"''&7632676̞  P蚚L  ,  ,xl%6#"$'&''&7632$EEd  A'i  + ,  4k%6#"$'&''&7632$  GAi ,,o4('&547667&'&'''&547676676676  @ x&= . 8X<}@  7  1 $Dn  8 ZW57?I̛Z]^#+C5@ +uom ;9-GJ ]5 ""?\;  ,Wpc*V6 -/= C\!#%uJ H< ""S" G  (' 6' W0wD> &7; #8 ,7 L$B!!@C  $#  " ' `h;+,/@u:74 62Dlg(+`?5# 7 # !4 A% 1  $ %/ 4AAV1/# &  ;21 G& V@&6 *W'%.b'7'0661D.. B.. D:s#2"&'.5464632#"&%   '3+**+s" ;RZP  KYXE"+-,,##2"'&&5466#2"'&&5466   8DB >X& 8DB>X&,;?#32##"&17##"&17#"66737#"6673766323766323237;@ < v @ :C = u < wKy n wn w y nxnx yy5GQ[2372#0#"&'.'#"'"&57&&'.'66327&&'.5466326654&'7"#"  1!  1);]43  &" ">(;\*" *3)%!r %L+2. '56#".5#"&'&&546767>>54&#"#58Xa)]L.T7 6# 8*!E/ !&="/Ob4/^N/$   A: 8Uk#>'* +#/D1 Xl"A-  %*#7T? :#)?. 2Q; 6O5    ' 5N2bO/ %7'7W 2"'&&546h  !) .v2 +Y" 2 $g6602'.'0&'&&7>704'&&'&67670676'&1.'&6760267>( " #$ !!    %  \ &   '     !(    663232##"55#"54673    g72&&5>54.5466t '="  !  #.T?+ "780>32"546E*@C5  MZ-  !  3b2#"&&54>"326654& ;`99`;:d<#3320&&#"&&7>766 / 8eB KJI   -,/..7s3%!&&'>76654&&#""&5>3232667632&BA""/"/ 2B)/M.("(]2!  954&#"&&56611 %# /3$.L\//E #../!C1/,/\s 0%0# 9,4R9 # IB%?( -"-?$</u2321#0#"&55#&5667663- 1$ XN[u  naBwC2#"&'&&5463232654&&#""&54>73267"#1660Z9,J[//F $..,?.$  1  &L #;3U44U=! # IB-A$ 3MSC )&$+ ?v-2#"&&54667>76632654&&#""0Q2<^46[7!4*[T!\m+J$')# &UG9^9Do?6aR-6&yJ M:)T8MB*I-9r-26632#"&&5>7#"&'>7:622}'   .;@? ,@E>&n  Ol{~8%IB>j#8K2#"&&546676'.54662654.'&#"#""3276654&&-T5B*,,=`41\;&:4(8V4$%%$ $! (  j>/.E!.:!4L)D:)<( ,B.+@$/!1(@%6#. !3 30!?v,7667#"&&546632&&6654&&#"326c\l((/R2<_47Z6!4*[T!$(*" &yJ%UG9_8Dn@6aQ,7$;)T8MB)J- 7 74632#"&4632#"&7+**++**+@+-,,=*-,-&g$72&&5>54.5466'4632#"&  &="  !:,('+ '.T?+ "**00%#"'%&&5467%63210  l 8,  8?I !"667!2!"667!2t  t  27461%%0&7632#"&&27 m ,8 5dx2>"&54676632#"&'&&54667>54&#"4632#"&q  )$ 182!(90  %/##E+*(0(  ';)+7%   9) &&F)*-*-4L[2#"&5467#"&&54>3232>54&&#"#"&'.54>"32677&&`{<#=M+$< +8+#=MU*B7,(/hUK}]3%<##  -N0:iR3&:4ML8hR0'-4(43+YR@& #=P.BrE?i@9^E  LoEHvG)ES*`Pc=R`766323&&#"&663267676.10&#&"#""#"""03&&#"&67266766033267261< Z?S ! #+ ",,s, ! ,+&,  b':LZ23'""#*#&67>766766766'.#&67326326676&&#'32676&#"*O+ 25 ,( E/.c2B7  FGGc*"1* )+'/"6 #D9'8!*;&0T.g& %;2%E.&;7F; 3o5"3267>72#".54>32#"'.@nD%@0#=& )[?GiD"ErA-j'   8aXg"NF,6, ,7+1Qb1\b2 )3( -.,B2#""#*#&67>766766766'.#&6732632676&&#"i:{b$XI  FGG:M"o!ZDTdr=.g& nt 1 `E  m2>3#"'&&##"332667632#"5&&'&#"3326767632!"#&67>766766766'.#&67 9JL? *K"0  $   5 $<. #  /E  FG;)9  # 1 ?>:.g&  f2>3#"'&&##"332667632#"5&&'&&#".#"&67>766766766'.#&67 9JL? *L#0  $  # 23K FG;)9  #& .g& 3X2#"'.#"3267667>74566'.#"4673267#"#".54>-j'   7+@nD%@0 #J"2    'V?GiD"Er )3( -.Xg"NF, *5  A 1Qb1\b2267"13267065766766'.#&673267"&&#"&67>766774&1&&#"1&&#"&67>766766766'.#&67I 49KI FKJ 52. KK FK- & - ,.& .g& z;267"&&#"&67>766766766'.#&67I EKK FK- & .g& +t,267"&&54766766766'.#&67I F :JL@LSGK- CkR:" )yq& %301#"&&'.'&&#"&&#"&67>766766766'.#&673267"667>76676&&#&67327"0%:# 0A/!'%KK FKI !#9!/* D>3'1,EL --7. *# 3=<& .g& - -*(  )?E *DAC73326767632!"#&67>766766766'.#&673267"$<. #  0G  FKI  1 ?>:.g& - V267032650>7>123267"3&&#"&6726676766766#"#"&'3&&#"&672667>7>764'&&#&67- $,, ), 8% BQ  9 h  "$55 "% '  $Xr>'@NQ#3&cxx/3' T/=U?:C./  #&"`h`G  _2676677>'.#"673267"#"&'3&&#"&632667667>76&'.#"4677,>D#/;"$ @ D"91  !!  2[ov8 5.  ,3+8& 9  ;@mm@("0$2#"&&54>"32>54&&<]?!Fq=Dm?Dm'3L4:.2L39/N_/^e5IyG[h7*Ep<8^8Do<8_::Q#"&'&&543326676&&#"&&#"&67>766766766'.#&6732632/ Ld. 1' $LKK FGH(9T):N' "7 ,K. x& .g& 4W1w$6232672#".'&&54>"32>54&&<]?!/O_/'% (-#X[h7*Ep<8^8Do<8_:oTd26323#".''0&##&&#"&67>766766766'.#&67326766&&#"H(9P# )31:. 8H+] KK FG*'A 1X= 0#$/%$*+"$ & .g& 57:3  H2#0#"&56.#"#"&'4667663232676&&'&&'&'.7>D)C(  %9 4. Jc2(Y' -#= 0/ Ia 'N-2.$191/F65R. D? 53!+48-1B13O.5pC26632#"56&&##&&#"&67>7667#"#"&'766323!$ "UYJK YU0' : !   8#7& .#8  RO267"32667766'.#&673267"#"&'&&7766766'.#&67I "  ,2$MA  12%_|B9^(K- 1O'+' 1jU H  G c=*,$iL& 6N267"10>76676&&'"#&673267"#"&'&&'.#&67J '-* " +- *E@C'$e J )'YWG+,EPK4+ *IxlrD  , 8m267"10>7663210>76676&&'"1&673267"#"&'0#"&'&&'.#&67I &,+# #"   +.  ":7:# G(22DK$-]O1,HUSA1rp\7'?ID1+ (EslqD 0P`c*  p267#">7656&#"467327#"3.#"&66326676''3&&#"&6726677'&&'.#"667"F &E>4 'GF(#0)$ " 66&D&S)5/ # H#7&0V!I A9 .`R8 /;8  -Be776'.1&&'&&'&673267">767676&&'"1&673267"&&#"&67>766 ( KIC/2 &- *9:/ JJ  8?8$   (?G  6JMA ..l<"#"&'667376671327667632*""1"&70:#$")!9b:'CSXRB'6'   Ljrd> T)=+_.2SeleP0"%!=9?%E2#.10"&5>76 $% ,%%,%% +B?) .**. )?B+  0663!21!0&N 4 *92326672#"&5467667#"&54>"326677&7?= #.0$ -9)+:[i ,"'$    &(!   0#F1Bu[45)ET+#"9Z0c "+<>32#"&54676654&&#"#&67>7"32>54&6=)07W`*.CL 65)#%",# H4%85Ey]4<2 "     #8C :(5QX#(h+2#"&'&&#"326672#"&&54>/    ,#396"+GW % (BO'1*&);.9nZ5 CW6654&&#"#&67>7326672#"'&&5467#"&54>76234&#"32>7066D 65)\ #.0  -9)+3Sa- ," #    5 &(0#F1=oZ9])ET+#"&72#"&54>2>54&#"2!#9?: !(7;4<-HWN&$ '"4('%)KD6kX4)3)=<v+A2#"'&&#"32#0#"&'&&5463232667#"546633>O'ad  K['' 6?  5CC   ht>`l.PzD   .bM<70&&'&&54>7.54663267663#4.'3266&6676&&c+. %87%BqHP^*-./7#1Q0.*   15B,/"'"#)&"7) ).T4D.$   4&1O0  /-*@!"=$94&b0>32326672#"&54677>54&#"#"&'>56654&&#"#&67>7   (00)   #/0% $($ ((    65)L'?F@+ :5"**2/ c &(!% )t  (EV/YAbrp]:     1=6654&#""&5>32326672#"&54672#"&546h !",/%$ #.0% .-.  &(#" ( &(!% )'# 3% 2+,86654&#""&5>320"&5>72#"&546q !",/$  +4:/ 4;# - -.  &(#" ('=C=X).*(McI?$ 3% 3MY2326672#".'1#"&'>56654&&#"#&67>7>"26654&o+%6M% +1/% ((    65)0 0:**"C0 $" 8+ 1/ %',CFF@*Abrp]:     #$I,' *16654&&#"#&67>7326672#"&5467z 65)Z  #.0&#    5 &(!% ) w%>1>54&#"#"&'7>54&#"#"&'6654&#""&5>321>32>32326672#"&546  $(# (( 2 $($ ') : !",/% (00)7:)   #.0&x6(  (EV/Y  (EV/Y.  &(#" ( ":5"** #!D/**1. = &(!% ) T>32326672#"&54677>54&#"#"&'6654&#""&5>32 (00)   #.0& $($ ') : !",/%7 ;4"**2/ c &(!% )t  (EV/Y.  &(#" ("2#"&54>"32>54&& )A&/LZ,=N-JY!,, @:5iV4KF5jW5'7V`( +#7V]&,"*?R2#"&'2321"&#"&672767&&546?>32>"132>54&j/16Vb-  EF I/ 2).7+* /$C3=u\7{  `// #R 6=,847SU( )/C"&"#"&4636677#"&&54>321326&&#"32>766]! +O$+ +6$5Xk726  I ," *#7;t_9 '=C<&   (DR*(""8C! <2#"&'&&#"#"&'6654&#""&5>32>n  %  $'# ') : !",/% %//#$*HX/Y.  &(#" (!C7!P92#"&'&&#"#"&'&&5463232654&&'&&5466'4  ,&2Q09 #.+K "%%1.+@" ! ()*,'=# >-17>3232#326672#"&54677#"54663s & U Y/  #/0%0H N &(!% % Z%667#"&546676676654&#""&5>32132>776632326672#"&546,3.%    ",/%  %)$ &) 9 #.0&n<2'-0/ +  &(#" (%,   0M]-D &(!% 276676654&'46632#.554&#""&5>32/ 0%32667667> 4 0$:GF<   0>@  !,/  * %!&[*.B 0!2,'2LOJ;": 2&:8, Zr;+ '' 35_> 68 W276632#"&'&&#"326672#"&'4&'#"&'&&5463232677'&&#""&5>'/+   3' #/0 &/    .% !,/!^L"&  (W &((/"K"& *S{! ''+B2>54&'46632#"&546732667>5454.#"&&7>~!. #! 12Ufk^!% :!   &)/M\[K;KR(( '39~qW3 06*f]=&*N2326726632326672#"&'&&#""&'4>5#"&'&&#""&'>+'' +DLD, + # %(* '( +DLE, & # %)   -AG?))(   ,AH?()(7_23267#".#"&5466 1+1 **= 1,1 )-?_ ) (03#"&54>766724632#"&u&   '_*++*#;RZP KYXE"5,, *-r,62#"&'326672"&77&&54>7&#" Y ,"07  $5*FU+   % $(& @:8mY6; (BO'rX3&67>32#".#"3#63232676#".#""&7>766766'#&66R& 8GJ   #  ~ 8"). '0'%)  A U A\; 'I227I#   ')  @$&5b.>76'#"&''&&'7&767'&766763226676&&#"@ A '& %61: : *% %-6/' ) "6 7.6;/851 2+9B/76&>$-J,'>%-I+[s}7"547376'.1&&'&&'&673267">7676&&#&673267"32#32#&&#"&67>7667#"54737T & IG@ /3$+ )78. _^ `^HG VT  5>7#  *BH  4HJ? ,'  ',#~B\2#"&'&#"#"&'&54632326654&&'.54>7666654&&'.5459  #+;5!--J+   #+;5!--J@ !38( !47(~  <:7B-A=/    ;:7B-A=/  )A72:! (B72:!Bf4%J:#R4>32#".7326654&&#"#"&546632#0#"'.#"32766724)Ia77aJ**Ja77aI),e<=e<O.>O)B&0  #(+!  07aI))Ia77aI**Ia6=f<d<3232667"326677&!)*CL"/ +'01(   .",P=#  &+F'/'= ;,#0&'5!0&50663 u4WJl#iw4>32#".7326654&&#"72131#"&''0&##3&"#""&4726766554&'&&#&4723264&#"3264)Ia77aJ**Ja77aI),e<=e<%5 '!  :  !  / b7aI))Ia77aI**Ia6=f<d<76654&#""&5>323267632/ "#% "5"3>3,m  u &)  '*!5! )"42(A&&#)s>22#"&'&&5463232654&#"&&5467>54&#"&&766, "  #6P&+    (($ Cs$! &+:  (("5 !'!i"Z23267>166132672#.7#"&&'#"&&54>7667>766 &+    $6 *1    # CA*:HD+/BA, QA(@& .&;"='' >E=!.Jbc&;.7 ~GSf3&&#"&632667665455"&54>323261"26612'5&&#"266326766545 R--M^t$:B1D ; !   $  ZX3E) & %,   J 746632#"&&%'!)#oa&r34&#"&&5447>33232.#"&43267>5o #E/  $ &% && $   . $"j2#"&&5466"326654&&1J*+J/0J*+J& !&A))E)'B))D("2<("1<)HU\23#0#"&55#&&56676%32.#"&43267>554&#"&&7>30&1676%5u "7p/P$ %% '& $ #F0  Q  Q y XUB: $  . `y #(!/_l23267632#&&'>76654&#""&5>%32.#"&43267>554&#"&&7>3%&1676>3>3,m   "#% "5# %% '& $ #E0  x Q  y42(A&& &)  ')!5! )" $  .m` !Wdk23#0#"&55#&&56676%22#"&'&&5463232654&#"&&5467>54&#"&&766%&16765x #7p/<, "  #6P&+    (($ C Q  ! y XUB:$! &+:  (("5 !'"` y #(/O2>%326632#".546676676654566327#"&54632$0 !#!  *$ 182!(9/   1**(/ 9* &%(  ';)+7%  ().+=:&L ?:'M=Q&N`=!&PFFO&Ww =E&Op*2>3#"'&&##"332667632#"5&&'&&#"33267667632!"#&67>76677&&#&"#""#"""03&&#"&&726676670654&#&67033223227261766 9JL?  $*K0  # %<-  /E     !9,4L.! %J!)9  #" ,!>:.u,) ,  X3Yo'S -&L -'M Q&N1 O&WQ z-&L-&MQ&NO&W 5S3766766'.#&6732672#""#*#&67>76677#"&766732#32676&&#";A GG(i:{b$XI  @'"o!ZDO& Tdr=. 1 `E !&PY0-&L/0-'M0Q&Nh0!&PS0O'W 5=.7'46320763201#"'0.1#"#"&&5** '(** )))* **0*5&&77&&54>327#"&'32>54'"&&f*"&Dm<(C!+-Fq=)Ik6+2L33L4+2 5%b7[h7*((o7^e5(0Do<:Ep<*#|%R-&LcR-'MRQ'NRO'W B-'Md2#"&'&&543326676&&#"&&#"&67>766766766'.#&673267"0326366c:W* Ld. 1' $0KK FGI  %4W4:P( "7 ,K. & .g&  - u+e#"&'&&5463232667#"546633>32#"&'&&5463232654&&'&&54667>54.#"  K['' 6?  9JK ?),*  !*D',    ! ' +6Etn>PzD   .bM<#":$(*4")$"2$| y'  y'[  '8 N' {'  'DM_l26632#32>72#"'#"&&76676676776454&#"#"&767>&4673266"2>54& / B2!#9?: !(7;E&1+ +$^0 $3:   &$ '"4('%)>#7+  / ,1!/2  " =)=<)3ah'`ry' y'( u' {'y' (y' 'gx&XA *=&&77&&'6637#"&&7>324&'>'&&#"3266 T2#!Dv h%7 8KN!;B 0EO'  ,*!7& "NE$b|J6`I):_5'TH,@"@2 ;Y.0N.2Q N'y' y'- '!N'{'8  $7"5467!24632#"&4632#"&>#$$##$$# $$####$$)42#"'&'7&&54>32"&&32>544F#/LZ, !(-JY,>, ,@75iV4C15jW5"7V`(  Q7V]&y' y'I '!{'+y'F *Re>32#"&'2321"&#"&672767&&546776654&&#"#&67>7"132>54&  .7/16Vb-  DF I/ 26 55)* /$M/@?+#C3=u\7{  `//     6=,847SU(+{'='Qu ,'/#=='R h'3+=^l%"32667#"&54676654.10&#&"#""#"""03&&#"&67266766766323&&033267261B.#@5" #+ ",,  Z?s,$8!*&0C"#*4'&,   ! +?N%32667#"&54667&&5467667#"&54>32326672"326677&':&#@+ -9)+:[i.?= ,"'$  m +23!*&3-   0#F1Bu[4 )ET+#"9Z0c 3o:'My'- 3oQ'Ns'3oP'Th''3oO&Y>' O&Y s'$ Th376654&&#"#&67>732#326672#"'&&5467#"&54>76237#"&7664&#"32>7066| 65) <>K #.0  -9)+3Sa- |V ,"     - &(0#F1=oZ9C)ET+#"&766766766'.#&6732>3#"'&&##"332667632#"5&&'&#"3326767632"32667#"&5"1y61G  FG 9JL? *K"0  $   5 $<. #  "F.#A=3.g& ;)9  # 1 ?>:%6!*&+r<I467#"&54>32#32>7232667#"&2>54&#"=84<-HW*2!#9?: !# ;%#@Q&$ +L!KD6kX4'"4(' ;<!*&)3)=< O&Y' 3N'N#'3='R#j'3P'T#'3+'9#&V-Q&N|Q&N346766'.#&673267"346766'.#&673267"32#&&#"&67>766774&1&&#"1&&#"&67>7667#"&766132670657h4KI KI 55?KJ 52. KK ?449& ,& ,,.& .D hgs3616654&&#"#&67>7032#>32326672#"&54677>54&#"#"&'>7#"4766F0 65)  (00)   #/0% $($ ((  0    C<' :5"**2/ c &(!% )t  (EV/Y>]mn^!&PXM''Q5'|=&R/i'+zU%"#""32667#"&54667"&67>766766766'.#&673267" !6%#A*631 FKI E "2!*&&B/ .g& - &  +FR%32667#"&54667&&546776654&#""&5>323266722#"&54606##@*$ !",/%$ C .-m000!*&3- " )  &(#" (-# 3% 2zP&T 16654&#""&5>32326672#"&5467h !",/%$ #.0%.  &(#" ( &(!% )+j' +'+~N&N_+'pֵ+'4+' LX6654&#""&5>32>32326672#".'1#"&'>7"26654&h !",/%0:+&6M% +0/% ')   *"D0 .  &(#"  #$$" 8+ 1/ %',CFF@*1EI?(?,' *-&Me-&M+'+'L['p'''J O7766766'.#&673267"73326767632!"#&67>76677&&273KI   $<. #  0G   # #& - iu 1 ?>:.6=776654&&#"#&67>77326672#"&54677&& C+ 65)#  0/  #.0&!5+     &(!% )!:'M 'V%+' +'O&Y6 '! &+d%3&&#"&632667667>766'.#"46732676677>'.#"673267"&&54766D"91  !!  27,>D#/;"$ @ :KK@CtC9  ;@mm@6[ov8 5.  ,3CkP9! ${ +K%"&5>77>54&#"#"&'6654&#""&5>32>32 *4:/ 4;# $($ ') : !",/% (00) u=X).*(McI  (EV/Y.  &(#" ( :5"**2/ 0'Q'0='Ri'0-'Vy&'  2d|"#"&&54>3232>3#"'&&##"332667632#"5&&'&#"33267667632"32670>76&'&& G'>&Dm?:cEp<8^8=+.JWU!=q0BO2#32>72#"'#"&54>3266"32>54&&2>54&#"2!#9?: !(7:BF!=N-JY,(AA,, {'$ '"4('%)9KF5jW5 '7V`( +#7V]&,")3)=<o-'M 'G%+o' +'VoO&Y ' ='Mh'%Q&N!P'V&S`P'hR&Yd' 4`o&S= e>-'T5pX&Y '5pT3#"#"&'766323!26632#"56&&##32#&&#"&67>76677#"&766_3U0' : ! .!$ "U3egJK ]O#8   8#& .U-B37#"5466337>3232#32#326672#"&54677#"&766!U H $ & U Y EG  #/0%T7:N: &(!% % R!&PkM'R'Q'R='Ri'R'OB'R-'Vy&'  R+g32667#"&54667#"&'&&7766766'.#&673267"32667766'.#&673267"3#@,9^(KI "  ,2$MA  12%T78)w!*&5/*,$iL& - 1O'+' 1jU H  G [{!4;+o4667&&5467667#"&546676676654&#""&5>32132>77663232667232667#"&+,3.%    ",/%  %)$ &) 9 ':&#@3-!<2'-0/ +  &(#" (%,   0M]-D +23!*&8N'N'BN&NZ+'BN&We l:'M'0&lN&Tqz' lO&Y' v+60#"&'&&5463232667>1>32#"'&&#"  K[''  5DC'$q>`l.PzD   .bM$^aS3320"&5>7q !",/$  +4:/ 4;#.  &(#" ('=C=X).*(McIl2#&672676&#&6?)/(>( / (9:&7 !5"3"&&7> . '0'@ 5! 7&:9( {<~r\eE'+# Lt9Po'\Vo.54632#.,    &* `o&&'>7632  ,.# *&  l2.'&7>766,!" .* (4 .K   !+9|9%232667#"&'&&#"&&766766  ' '9   #0&546332&$5!2X22U267432#"&746566323  B%%, - ':8* Ne 6632#"&-*$&&**f 2#"&766#2#"&766..--f'((''(('j 6632#"&732676&#"@%%*A%%)1#"?(88((88("&'&&'667>7+ # .+ )3 .K  ,9 ol2"&'&54>  ' !%l  +)g46654&54663#"&g+%. #   >0 +I4663#"&546654&&&4)+c$   a[$332#"&'&5463232654&#""&546#!6      '   +# '2326632#"&&7>_&j55p&Ui %>-'AF5p'>-'T8\&LU&;8\&MOu&8Q'Wp' 8l&U+'wL' m'nB\&LN+p'877463373210&8  # $ 877463373210&8  # $ 774663!21!0&7c  )974663!21!0&9b  )9c74663!21!0&9  )9!74663!21!0&9-  ),4>32#"&'&,$1(# +)B.#  &%%I476632#".+ #(1$i7&  #.B,o'%%b/%%S/%I%IW1476632#".7476632#".+ #(1$+ #(1$i7&  #.B)7&  #.B!bE2674&&'463232672#&'"&&'.'6674&#"&5463    )3      3) 0,  ,0  #3JJ`GG`JJ3& +lx3672#&&#"#"&5>5&&#""&5463265&&'6654&'6674&#"&546332674&&'463232672#&'"  3)    )3   3)    )3    #  0+  +0  &  &  0,  ,0  #ExV46632#"&&E%?%&=%%=&%?%&>&&>&%?%%?) 7#"&54632++++>,,+-) #%#"&54632#"&54632#"&54632*,,*++++*++*>,,+-,,+-,,+-,v/<L\l2#"&&54662#"&&5466!2#"&&5466#"&16632"326654&&!"326654&&"326654&&-F')E+-E'(EM-F')E+-E'(Ev-F')E+-E'(E  3z r&B*)E)'C))D)&B*)E)'B))E)&B*)E)'B))E)C q#2<)"2=)#2<)"2=)I#2<)"2=),2#"54>766f  01+ %57 ,%2#"54>766#2#"54>766#  u#  C> %57 C> %57 0bz72.'&&'>76 #>)".+ +.")?"z2F&!" "!&F2G747>7.'&@Z1+**+1Z@'E. &31 03& .G&,G%&&'>7.'667@Z0++ ++0Z@&G. &30 13& .E'|4663!21!0&|8 & <''www&fwU"32#32#3267>72#".'#"5467367#"54673>32#"'.1VA#7((;$ )[?>_A%,#$%Mcl2-k'   8a7eD!I?'5, ,7++HZ.@cD# )3( -.@70663!0321!0&@B) 8  @0A%0#"554##0&54676213255067663213321#"0!0&7667621D!#  Jʹ #"p # P+7&&5467>766>10#"'  ,/%W  8     $Fj|b:Ctg j z.54>7,-OM33MO-,*UhB  Ajccj@  Bh z&&7>54.'&673LO----OL3*cjA  BhUUhB  @j) 74632#"&)++++@+-,, 2#"&166m  !Iy*2672#&&#&&546\Lb*) )*bL        :}6320#"&'&+595+ U ?klA sy""5467>7.'&&543 Lb )) )) b        sD4&'&&54>72#2#.54676654&'&&54766h *=<  % () )( %  <=* 66$&C4"1    6'(6 ! 2!4D&# '5  5H|#"74504766321| iSsD"&7>54&'&&54>3".54676654&&'&6!<=* 77 *=< # () )( # 4C&""'5  5' "&D4!2 ! 6('6 ##  1"G7747>7.'&747>7.'&@Z1+**+1Z@@Z1+**+1Z@'E. &31 03& .G&'E. &31 03& .G&,G7%&&'>7.'667&&'>7.'667@Z0*+ +*0Z@@Z0++ ++0Z@&G. &30 13& .E'&G. &30 13& .E'=.54632*97$& ."   *$d=&&5>76632"/ %$79)$*   82.'&7>76F $$  *.707+ 8,)   -% E 6632#"&732676&#"?%%+A%%)1#"(88((88(!%232667#"&'&&#"&&546766" &" &!     J #0&546332  {'267432#"&746566323  B%%, % ';9* IX$332#"&'&5463232654&#""&546    )   gN 6632#"&-* ''**,P 6632#"&2//h++**=%&&5>76632&&5>76632\". &$79)"/ %$79)$*   $*   C 6632#"&'6632#"&O,*,+&&++&&++w7 6632#"&76632#"&|,*,*&&**&&**R"&'.'67>7z %$  )/ 717+ ,*   -$ v+bk2#"'&&#"32#0#"&'&&5463232667#0#"&'&&5463232667#"546633>3266667&'&`(be  K['' 7  K['' 6? Pl8*B >#:&>   ht>`l.PzD   .bM<>`l.PzD   .bM<Pq< !&EIkhv+g2326672#"&546774766&0#"&'&&5463232667#"546633>32&'.#">   #.0&l  K['' 4@  Ln@3" & )@3KI326632&'.#">67&'&   #/0%m  K['' 4  K['' 4@ Qn8,D M*3" % )@3KI)#:&AItov+K^&&#&32#0#"&'&&5463232667#"546633>32667326672#"&546764 2&>ad  K['' 6? Pl8%!-Q Z  #/0%S0!kh>`l.PzD   .bM<Pq< ! 5 &(!% )v+\632667326672#"&5467647&&#&32#0#"&'&&5463232667#0#"&'&&5463232667#"546633>32&'&366EQ%!-P Z  #.0&S 2&>be  K['' 7  K['' 6? Pl8,F.$:&>b9 ! 5 &(!% )!kh>`l.PzD   .bM<>`l.PzD   .bM<Pq<%RJkh'Cv+Vg>32#"&54677&&#&32#0#"&'&&5463232667#"546633>32667"32>54&6=)07V`*.CM 3&>ad  K['' 6? Pl8%!(Q#%",# H4%85Ey]4<2 "  !kh>`l.PzD   .bM<Pq< ! #8C :(5QX#(v+x>32#"&54677&&#&32#0#"&'&&5463232667#0#"&'&&5463232667#"546633>32632667&'&366"32>54&6>)07W`*.CL 3&>be  K['' 7  K['' 6? Pl8,F EQ%!(P|$:&>%",# H4%85Ey]4<2 "  !kh>`l.PzD   .bM<>`l.PzD   .bM<Pq<%9 ! (Jkh'C#8C :(5QX#(v+x2326672#".'1#"&'>57&&#&32#0#"&'&&5463232667#"546633>32667>"26654&+%6M% +0/% ')    3&>ad  K['' 6? Pl8%!&O0 0:+*"D0 $" 8+ 1/ %',CFF@*Abrp]: !kh>`l.PzD   .bM<Pq< !" #$I,' *v+2326672#".'1#"&'>57&&#&32#0#"&'&&5463232667#0#"&'&&5463232667#"546633>32632667>%&'&366"26654&+%6M% +1/% ((    3&>be  K['' 7  K['' 6? Pl8,F EQ%!&N0 0:$:&>*"C0 $" 8+ 1/ %',CFF@*Abrp]: !kh>`l.PzD   .bM<>`l.PzD   .bM<Pq<%9 !" #$nJkh'C,' *v+ 0>32326672#"&54677>54&#"#"&'>57&&#&32#0#"&'&&5463232667#"546633>32667+   (00)  #.0& $($ ')    3&>ad  K['' 6? Pl8%!(PL'?F@+ :5"**2/ c &(!% )t  (EV/YAbrp]: !kh>`l.PzD   .bM<Pq< !"v+0>32326672#"&54677>54&#"#"&'>57&&#&32#0#"&'&&5463232667#0#"&'&&5463232667#"546633>32632667&'&366<   (00)   #/0% $($ ((    3&>be  K['' 7  K['' 6? Pl8,F EQ%!(Oz$:&>L'?F@+ :5"**2/ c &(!% )t  (EV/YAbrp]: !kh>`l.PzD   .bM<>`l.PzD   .bM<Pq<%9 !"/Jkh'Cv+^%74766&0#"&'&&5463232667#"546633>32&'.#">32"&5>F!l  K['' 4@  Ln@3" & )@3KI- +4:/ 4;#b%9[g.PzD   .bM-PyD # wk"56G5=X).*(Mcv+%74766&0#"&'&&5463232667#0#"&'&&5463232667#"546633>326632&'.#">32"&5>67&'&X!m  K['' 4  K['' 4@ Qn8,D M*3" % )@3KI- +590 4<#)#:&Ab%9[g.PzD   .bM-9[g.PzD   .bM-Zw<$ # wk"56G5=X).*(McuY>Ito 3b4tssuw*vr#j$v/0233a/U(23322(2339-|(233+.)233;-{+2339-~*2333)'2337-~ 2339-~*233 |6 66 6  6 6 66 6 6a'7#53'7D!_^ D  Db '7'77/////// ///00//$53222$5!2L22~$5!222-$5!2-P22$5!222F$5!2x22$5!2@22r$5!222$5!222:$5!2l22$5!222$5!2,22$5!2422$5!222^$5!222$5!222&$5!2X22$5!222$5!2 22R$5!222$5!222n     6 "   6 V n 0| 0| " 6  * 6 \( D ` 2( HZ d $ ** >T F R , * * V L Copyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri).AmiriBold Italic1.000;ALIF;Amiri-BoldItalicAmiri Bold ItalicVersion 1.000Amiri-BoldItalicKhaled HosnyAmiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named.http://www.amirifont.orgThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttps://scripts.sil.org/OFL5PAR .NDRBN .NHR/M CNEP+RDP qD4QNER3P %P0R (N2N:N*R JN-R8NIp qD6QN,PJ9O (PGN' FN,RDN'!N EP9R7N'1P.Inverted Arabic commaDisable curvilinear KashidaNo automatic vowel insertion above name of GodLow Baa dot following a Raa or WawAlternate medial Meem and final Alef combinationLocalised @ and & symbolsAlternate, more naskh-like, Gaf formKasra is placed below Shadda instead of base glyphA'5D) 91(J) EBDH()*97JD 'DC4J/) 'DEBH3)DA8 'D,D'D) (/HF 4/) H#DA 5:J1).A6 FB7) 'D('! 'DE3(HB) (1'! #H H'H4CD (/JD DDEJE 'DE*H37) E9 'D#DA 'DEF*GJ)4CD 91(J D9D'E*J @ H &4CD (/JD F3.J  DD'AH69 'DC31) *-* 'D4/) (/D' EF *-* 'D-1A 2 >?@^_`      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]abcdefghjikmlnoqprsutvwxzy{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~nbspace number-aryear-arfootnotemarker-ar pagenumber-ar samvat-ar cuberoot-ar fourthroot-array-arperthousand-arpertenthousand-ar afghani-arcomma-ardateseparator-ar verseComma-ar misraComma-ar!sallallahouAlayheWassallamcomb-aralayheAssallamcomb-arrehHahabove-arrehDadabove-artakhallusabove-ar tahabove-aralefLamYehabove-ar zainabove-ar fathasmall-ar dammasmall-ar kasrasmall-ar semicolon-armark-ar endoftext-ar threedots-ar question-aryehKashmiri-arhamza-ar alefMadda-aralefHamzaabove-arwawHamzaabove-aralefHamzabelow-aryehHamzaabove-aralef-arbeh-ar tehMarbuta-arteh-artheh-arjeem-arhah-arkhah-ardal-arthal-arreh-arzain-arseen-arsheen-arsad-ardad-artah-arzah-arain-arghain-arkehehTwodotshorizontalabove-arkehehThreedotsbelow-aryehFarsiVinverted-aryehFarsiTwodotsabove-aryehFarsiThreedotsabove-ar kashida-arfeh-arqaf-arkaf-arlam-armeem-arnoon-arheh-arwaw-aralefMaksura-aryeh-ar fathatan-ar dammatan-ar kasratan-arfatha-ardamma-arkasra-ar shadda-arsukun-armadda-ar hamzaabove-ar hamzabelow-ar alefbelow-ardammainverted-arnoonghunnaabove-arfathaHorizont-ar vabove-arvinvertedabove-ardotvowelbelow-ardammareversed-arfathatwodots-arwavyhamzabelow-arzero-arone-artwo-arthree-arfour-arfive-arsix-arseven-areight-arnine-ar percent-ardecimalseparator-arthousandseparator-ar asterisk-ar behDotless-ar qafDotless-ar alefabove-ar alefWasla-aralefWavyhamzaabove-aralefWavyhamzabelow-ar highhamza-arhighhamzaAlef-arhighhamzaWaw-aruHamzaabove-arhighhamzaYeh-artteh-ar tteheh-arbeeh-ar tehRing-artehThreedotsdown-arpeh-arteheh-arbeheh-arhahHamzaabove-arhahTwodotsverticalabove-arnyeh-ardyeh-arhahThreedotsabove-artcheh-ar tcheheh-arddal-ar dalRing-ardalDotbelow-ardalDotbelowTah-ardahal-ar ddahal-ardul-ardalThreedotsdown-ardalFourdots-arrreh-arrehv-ar rehRing-arrehDotbelow-ar rehVbelow-arrehDotbelowdotabove-ar rehTwodots-arjeh-arrehFourdots-arseenDotbelowDotabove-arseenThreedotsbelow-arsheenThreedotsbelow-arsadTwodotsbelow-arsadThreedots-artahThreedots-arainThreedots-ar fehDotless-arfehDotmovedbelow-arfehDotbelow-arveh-arfehThreedotsbelow-arpeheh-arqafDotabove-arqafThreedotsabove-arkeheh-ar kafswash-ar kafRing-arkafDotabove-arng-arkafThreedotsbelow-argaf-ar gafRing-arngoeh-argafTwodotsbelow-argueh-argafThreedots-ar lamVabove-arlamDotabove-arlamThreedotsabove-arlamThreedotsbelow-arnoonDotbelow-ar noonghunna-arrnoon-ar noonRing-arnoonThreedotsabove-arhehDoachashmee-artchehDotabove-arhehHamzaabove-ar hehgoal-arhehgoalHamzaabove-artehMarbutagoal-ar wawring-ar kirghizoe-aroe-aru-aryu-ar kirghizyu-ar wawTwodots-arve-ar yehFarsi-ar yehTail-ar yehVabove-arwawDotabove-are-aryehThreedotsbelow-ar yehbarree-aryehbarreeHamzaabove-ar fullstop-arae-arsadLamAlefMaksuraabove-arqafLamAlefMaksuraabove-ar meemabove-arlamAlefabove-ar jeemabove-arthreedotsabove-ar seenabove-ar endofayah-arhizb-ar sukunround-ar sukunoval-ar hahabove-armeemStopabove-ar seenbelow-ar maddalong-ar wawSmall-ar yehSmall-ar yehabove-ar noonabove-ar sajdah-arrhombusStopbelow-arrhombusStopabove-ardotStopabove-ar meembelow-ardalVinvertedabove-arrehVinvertedabove-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-arsheenDotbelow-ardadDotbelow-arghainDotbelow-arsindhiampersand-arsindhipostpositionmen-arhehVinvertedabove-arbehThreedotshorizontalbelow-arbehThreedotsupabove-arbehThreedotsupbelow-artehThreedotsupbelow-arbehTwodotsbelowDotabove-arbehVinvertedbelow-ar behVabove-arhahTwodotshorizontalabove-arhahThreedotsupbelow-ardalTwodotsverticalbelowTah-ardalVinvertedbelow-ar rehStroke-arseenFourdotsabove-arainTwodotshorizontalabove-arainThreedotsdownabove-arainTwodotsverticalabove-arfehTwodotsbelow-arfehThreedotsupbelow-arkehehDotabove-arkehehThreedotsabove-arkehehThreedotsupbelow-armeemDotabove-armeemDotbelow-arnoonTwodotsbelow-arnoonTahabove-ar noonVabove-ar lamBar-arrehTwodotsverticalabove-arrehHamzaabove-arseenTwodotsverticalabove-arhahTahbelow-arhahTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar$rehTwodotshorizontalaboveTahabove-arhahTahabove-aralefTwoabove-aralefThreeabove-aryehFarsiTwoabove-aryehFarsiThreeabove-aryehFarsiFourbelow-arwawTwoabove-arwawThreeAbove-aryehbarreeTwoabove-aryehbarreeThreeabove-arhahFourbelow-arseenFourabove-arseenVinvertedabove-arkafTwodotshorizontalabove-arpound-ar piastre-ar behVbelow-aryehRohingya-arbehMeemabove-arpehMeemabove-artehTehabove-arrehNoonabove-aryehTwodotsbelowNoonabove-ar fehAfrican-ar qafAfrican-arnoonAfrican-ar fathaCurly-ar dammaCurly-ar kasraCurly-arfathatanCurly-ardammatanCurly-arkasratanCurly-artoneonedotabove-artonetwodotsabove-artoneloopabove-artoneonedotbelow-artonetwodotsbelow-artoneloopbelow-aropenfathatan-aropendammatan-aropenkasratan-ar highwaw-ar fathaRing-arfathaDotabove-arkasraDotbelow-arleftarrowheadabove-arrightarrowheadabove-arleftarrowheadbelow-arrightarrowheadbelow-ardoublerightarrowheadabove-ardoublerightarrowheadDotabove-arrightarrowheadDotabove-ar dammaDot-arenquademquadenspaceemspacethreeperemspacefourperemspace sixperemspace figurespacepunctuationspace thinspace hairspacezerowidthspacezerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark lineseparatorparagraphseparatorlefttorightembeddingrighttoleftembeddingpopdirectionalformattinglefttorightoverriderighttoleftoverride narrownbspacereversedsemicolon dottedCircle commareverseduniFB51uniFB53uniFB54uniFB55uniFB57uniFB58uniFB59uniFB5BuniFB5CuniFB5DuniFB5FuniFB60uniFB61uniFB63uniFB64uniFB65uniFB67uniFB68uniFB69uniFB6BuniFB6CuniFB6DuniFB6FuniFB70uniFB71uniFB73uniFB74uniFB75uniFB77uniFB78uniFB79uniFB7BuniFB7CuniFB7DuniFB7FuniFB80uniFB81uniFB83uniFB85uniFB87uniFB89uniFB8BuniFB8DuniFB8FuniFB90uniFB91uniFB93uniFB94uniFB95uniFB97uniFB98uniFB99uniFB9BuniFB9CuniFB9DuniFB9FuniFBA1uniFBA2uniFBA3uniFBA5uniFBA7uniFBA8uniFBA9uniFBABuniFBACuniFBADuniFBAFuniFBB1dotaboveSymbol-ardotbelowSymbol-artwodotshorizontalaboveSymbol-artwodotshorizontalbelowSymbol-arthreedotsupaboveSymbol-arthreedotsupbelowSymbol-arthreedotsdownaboveSymbol-arthreedotsdownbelowSymbol-arfourdotsaboveSymbol-arfourdotsbelowSymbol-ardoubleverticalbarbelowSymbol-artwodotsverticalaboveSymbol-artwodotsverticalbelowSymbol-ar ringSymbol-aruniFBC0tahbelowSymbol-aruniFBD4uniFBD5uniFBD6uniFBD8uniFBDAuniFBDCuniFBDFuniFBE1uniFBE3uniFBE5uniFBE6uniFBE7uniFBE8uniFBE9uniFBEAuniFBEBuniFBECuniFBEDuniFBEEuniFBEFuniFBF0uniFBF1uniFBF2uniFBF3uniFBF4uniFBF5uniFBF6uniFBF7uniFBF8uniFBF9uniFBFAuniFBFBuniFBFDuniFBFEuniFBFFuniFC00uniFC01uniFC02uniFC03uniFC04uniFC05uniFC06uniFC07uniFC08uniFC09uniFC0AuniFC0BuniFC0CuniFC0DuniFC0EuniFC0FuniFC10uniFC11uniFC12uniFC13uniFC14uniFC15uniFC16uniFC17uniFC18uniFC19uniFC1AuniFC1BuniFC1CuniFC1DuniFC1EuniFC1FuniFC20uniFC21uniFC22uniFC23uniFC24uniFC25uniFC26uniFC27uniFC28uniFC29uniFC2AuniFC2BuniFC2CuniFC2DuniFC2EuniFC2FuniFC30uniFC31uniFC32uniFC33uniFC34uniFC35uniFC36uniFC37uniFC38uniFC39uniFC3AuniFC3BuniFC3CuniFC3DuniFC3EuniFC3FuniFC40uniFC41uniFC42uniFC43uniFC44uniFC45uniFC46uniFC47uniFC48uniFC49uniFC4AuniFC4BuniFC4CuniFC4DuniFC4EuniFC4FuniFC50uniFC51uniFC52uniFC53uniFC54uniFC55uniFC56uniFC57uniFC58uniFC59uniFC5AthalAlefabove-arrehAlefabove-aralefMaksuraAlefabove-aruniFC5EuniFC5FuniFC60uniFC61uniFC62uniFC63uniFC64uniFC65uniFC66uniFC67uniFC68uniFC69uniFC6AuniFC6BuniFC6CuniFC6DuniFC6EuniFC6FuniFC70uniFC71uniFC72uniFC73uniFC74uniFC75uniFC76uniFC77uniFC78uniFC79uniFC7AuniFC7BuniFC7CuniFC7DuniFC7EuniFC7FuniFC80uniFC81uniFC82uniFC83uniFC84uniFC85uniFC86uniFC87uniFC88uniFC89uniFC8AuniFC8BuniFC8CuniFC8DuniFC8EuniFC8FalefMaksuraAlefabove-ar.finauniFC91uniFC92uniFC93uniFC94uniFC95uniFC96uniFC97uniFC98uniFC99uniFC9AuniFC9BuniFC9CuniFC9DuniFC9EuniFC9FuniFCA0uniFCA1uniFCA2uniFCA3uniFCA4uniFCA5uniFCA6uniFCA7uniFCA8uniFCA9uniFCAAuniFCABuniFCACuniFCADuniFCAEuniFCAFuniFCB0uniFCB1uniFCB2uniFCB3uniFCB4uniFCB5uniFCB6uniFCB7uniFCB8uniFCB9uniFCBAuniFCBBuniFCBCuniFCBDuniFCBEuniFCBFuniFCC0uniFCC1uniFCC2uniFCC3uniFCC4uniFCC5uniFCC6uniFCC7uniFCC8uniFCC9uniFCCAuniFCCBuniFCCCuniFCCDuniFCCEuniFCCFuniFCD0uniFCD1uniFCD2uniFCD3uniFCD4uniFCD5uniFCD6uniFCD7uniFCD8hehAlefabove-ar.inituniFCDAuniFCDBuniFCDCuniFCDDuniFCDEuniFCDFuniFCE0uniFCE1uniFCE2uniFCE3uniFCE4uniFCE5uniFCE6uniFCE7uniFCE8uniFCE9uniFCEAuniFCEBuniFCECuniFCEDuniFCEEuniFCEFuniFCF0uniFCF1uniFCF2uniFCF3uniFCF4uniFCF5uniFCF6uniFCF7uniFCF8uniFCF9uniFCFAuniFCFBuniFCFCuniFCFDuniFCFEuniFCFFuniFD00uniFD01uniFD02uniFD03uniFD04uniFD05uniFD06uniFD07uniFD08uniFD09uniFD0AuniFD0BuniFD0CuniFD0DuniFD0EuniFD0FuniFD10uniFD11uniFD12uniFD13uniFD14uniFD15uniFD16uniFD17uniFD18uniFD19uniFD1AuniFD1BuniFD1CuniFD1DuniFD1EuniFD1FuniFD20uniFD21uniFD22uniFD23uniFD24uniFD25uniFD26uniFD27uniFD28uniFD29uniFD2AuniFD2BuniFD2CuniFD2DuniFD2EuniFD2FuniFD30uniFD31uniFD32uniFD33uniFD34uniFD35uniFD36uniFD37uniFD38uniFD39uniFD3AuniFD3BalefFathatan-ar.finaalefFathatan-ar parenleft-ar parenright-aruniFD50uniFD51uniFD52uniFD53uniFD54uniFD55uniFD56uniFD57uniFD58uniFD59uniFD5AuniFD5BuniFD5CuniFD5DuniFD5EuniFD5FuniFD60uniFD61uniFD62uniFD63uniFD64uniFD65uniFD66uniFD67uniFD68uniFD69uniFD6AuniFD6BuniFD6CuniFD6DuniFD6EuniFD6FuniFD70uniFD71uniFD72uniFD73uniFD74uniFD75uniFD76uniFD77uniFD78uniFD79uniFD7AuniFD7BuniFD7CuniFD7DuniFD7EuniFD7FuniFD80uniFD81uniFD82uniFD83uniFD84uniFD85uniFD86uniFD87uniFD88uniFD89uniFD8AuniFD8BuniFD8CuniFD8DuniFD8EuniFD8FuniFD92uniFD93uniFD94uniFD95uniFD96uniFD97uniFD98uniFD99uniFD9AuniFD9BuniFD9CuniFD9DuniFD9EuniFD9FuniFDA0uniFDA1uniFDA2uniFDA3uniFDA4uniFDA5uniFDA6uniFDA7uniFDA8uniFDA9uniFDAAuniFDABuniFDACuniFDADuniFDAEuniFDAFuniFDB0uniFDB1uniFDB2uniFDB3uniFDB4uniFDB5uniFDB6uniFDB7uniFDB8uniFDB9uniFDBAuniFDBBuniFDBCuniFDBDuniFDBEuniFDBFuniFDC0uniFDC1uniFDC2uniFDC3uniFDC4uniFDC5uniFDC6uniFDC7uniFDF0uniFDF1uniFDF2uniFDF3uniFDF4uniFDF5uniFDF6uniFDF7uniFDF8uniFDF9uniFDFAuniFDFBrial bismillah-aruniFE70uniFE71uniFE72uniFE74uniFE76uniFE77uniFE78uniFE79uniFE7AuniFE7BuniFE7CuniFE7DuniFE7EuniFE7FuniFE82uniFE84uniFE86uniFE88uniFE8AuniFE8BuniFE8CuniFE8EuniFE90uniFE91uniFE92uniFE94uniFE96uniFE97uniFE98uniFE9AuniFE9BuniFE9CuniFE9EuniFE9FuniFEA0uniFEA2uniFEA3uniFEA4uniFEA6uniFEA7uniFEA8uniFEAAuniFEACuniFEAEuniFEB0uniFEB2uniFEB3uniFEB4uniFEB6uniFEB7uniFEB8uniFEBAuniFEBBuniFEBCuniFEBEuniFEBFuniFEC0uniFEC2uniFEC3uniFEC4uniFEC6uniFEC7uniFEC8uniFECAuniFECBuniFECCuniFECEuniFECFuniFED0uniFED2uniFED3uniFED4uniFED6uniFED7uniFED8uniFEDAuniFEDBuniFEDCuniFEDEuniFEDFuniFEE0uniFEE2uniFEE3uniFEE4uniFEE6uniFEE7uniFEE8uniFEEAuniFEEBuniFEECuniFEEEuniFEF0uniFEF2uniFEF3uniFEF4uniFEF5uniFEF6uniFEF7uniFEF8uniFEF9uniFEFAuniFEFBuniFEFCzeroWidthNoBreakSpace aAlf.fina.alt aAlf.fina aAlf.isol aAyn.fina aAyn.init aAyn.isol aAyn.medi aBaa.fina aBaa.init aBaa.isol aBaa.medi aDal.fina aDal.isol aFaa.fina aFaa.init aFaa.isol aFaa.medi aHaa.fina aHaa.init aHaa.isol aHaa.medi aHeh.fina aHeh.init aHeh.isol aHeh.medi aKaf.fina aKaf.init.alt aKaf.init aKaf.isol aKaf.medi aLam.fina aLam.init aLam.isol aLam.medi aMem.fina.alt aMem.fina aMem.init aMem.isol aMem.medi aNon.fina.alt aNon.fina aNon.isol.alt aNon.isol aQaf.fina aQaf.isolaRaa.fina.alt2 aRaa.fina aRaa.isol aSad.fina aSad.init aSad.isol aSad.medi aSen.fina aSen.init aSen.isol aSen.medi aTaa.fina aTaa.init aTaa.isol aTaa.medi aWaw.fina aWaw.isol aYaa.fina aYaa.isolaLam.medi.LamMemFinaaMem.fina.LamMemFinaaBaa.init.BaaRaaIsolaRaa.fina.BaaRaaIsolaLam.medi.LamWawFinaaWaw.fina.LamWawFinaaLam.init.LamHaaInitaFaa.medi.FaaYaaFinaaYaa.fina.FaaYaaFinaaLam.init.LamLamHaaInitaLam.medi.LamLamHaaInitaHaa.medi.LamLamHaaInitaBaa.medi.BaaMemFinaaMem.fina.BaaMemFinaaSad.init.AboveHaaaLam.init.LamBaaMemInitaBaa.medi.LamBaaMemInitaMem.medi.LamBaaMemInitaBaa.init.BaaDalaDal.fina.BaaDalaBaa.init.BaaMemHaaInitaMem.medi.BaaMemHaaInitaHaa.medi.BaaMemHaaInitaBaa.init.BaaBaaYaaaBaa.medi.BaaBaaYaaaYaa.fina.BaaBaaYaaaLam.medi.LamYaaFinaaYaa.fina.LamYaaFinaaKaf.init.KafBaaInitaBaa.medi.KafBaaInitaLam.init.LamMemInitaMem.medi.LamMemInitaLam.init.LamAlfIsolaAlf.fina.LamAlfIsolaLam.init.LamHaaMemInitaHaa.medi.LamHaaMemInitaMem.medi.LamHaaMemInitaBaa.medi.BaaBaaInitaAyn.medi.AynYaaFinaaMem.init.MemRaaIsolaRaa.fina.MemRaaIsolaFaa.init.FaaHaaInitaHaa.medi.FaaHaaInitaHaa.init.HaaHaaInitaLam.medi.LamQafFinaaQaf.fina.LamQafFinaaSen.init.AboveHaaaMem.init.MemHaaInitaBaa.init.BaaNonIsolaNon.fina.BaaNonIsolaKaf.medi.KafMemFinaaMem.fina.KafMemFinaaBaa.init.BaaSenInitaSen.medi.BaaSenInitaBaa.medi.BaaRaaFinaaRaa.fina.BaaRaaFinaaKaf.medi.KafRaaFinaaRaa.fina.KafRaaFinaaLam.init.LamHehInitaHeh.medi.LamHehInitaMem.init.MemHaaMemInitaHaa.medi.MemHaaMemInitaBaa.init.BaaMemInitaMem.medi.BaaMemInitaSen.init.SenHaaInitaKaf.init.KafRaaIsolaRaa.fina.KafRaaIsolaAyn.init.AynHaaInitaKaf.medi.KafYaaFinaaYaa.fina.KafYaaFinaaLam.init.LamMemHaaInitaMem.medi.LamMemHaaInitaHaa.medi.LamMemHaaInitaLam.medi.LamAlfFinaaAlf.fina.LamAlfFinaaLam.medi.LamMemMediaMem.medi.LamMemMedilam-ar.init.Lellahlam-ar.medi.Lellahheh-ar.fina.LellahaBaa.init.BaaBaaHaaInitaBaa.medi.BaaBaaHaaInitaHaa.medi.BaaBaaHaaInitaBaa.medi.SenBaaMemInitaMem.medi.SenBaaMemInitaBaa.init.BaaBaaIsolaBaa.fina.BaaBaaIsolaBaa.init.BaaBaaMemInitaBaa.medi.BaaBaaMemInitaMem.medi.BaaBaaMemInitaKaf.medi.KafBaaMediaBaa.medi.KafBaaMediaBaa.medi.BaaNonFinaaNon.fina.BaaNonFinaaHaa.init.HaaRaaIsolaRaa.fina.HaaRaaIsolaHeh.init.HehHaaInitaLam.init.LamRaaIsolaRaa.fina.LamRaaIsolaSad.init.SadHaaInitaHaa.medi.SadHaaInitaBaa.medi.BaaYaaFinaaYaa.fina.BaaYaaFinaaBaa.init.BaaSenAltInitaSen.medi.BaaSenAltInitaRaa.fina.PostToothaYaa.fina.PostToothaBaa.init.AboveHaaaBaa.init.BaaHaaInitaBaa.init.BaaHaaMemInitaHaa.medi.BaaHaaMemInitaHaa.fina.AboveHaaIsolaLam.init.LamHaaHaaInitaHaa.medi.1LamHaaHaaInitaHaa.medi.2LamHaaHaaInitaAyn.init.FinjaniaHaa.init.FinjaniaHaa.medi.FinjaniaSen.init.PreYaaaSen.medi.PreYaaaSad.init.PreYaaaSad.medi.PreYaaaBaa.init.High dotabove-artwodotshorizontalabove-arthreedotsupabove-ar dotbelow-artwodotshorizontalbelow-arthreedotsupbelow-ar aKaf.isol.alt aKaf.medi.alt miniKeheh-ardash.kaf aKaf.fina.altthreedotsdownabove-arthreedotsdownbelow-argafsarkashabove-araBaa.medi.Highsmalltaa.abovetwodotsverticalabove-artwodotsverticalbelow-ar ring.belowaSen.fina.BaaSenaMem.fina.PostToothkashida-ar.LamKaf.1dot.alt1gafsarkashabove-ar.alt2gafsarkashabove-ar.alt1aBaa.init.WideaHaa.medi.HaaHaaInitaHaa.medi.AynHaaInitaMem.medi.LamMemInitTatweelaHeh.init.AboveHaaaHaa.init.AboveHaaaAyn.init.AboveHaaaHaa.fina.AboveHaaIsol2aMem.init.AboveHaaaKaf.init.AboveHaafourdotsabove-arfourdotsbelow-arthreedotshorizontalabove-arthreedotshorizontalbelow-ar aYaa.tailwavyhamzaabove-ar vbelow-arvinvertedbelow-ar tahbelow-artwostrokes.belowwasla-arfathatan-ar.smallfatha-ar.smallopendammatan-ar.smalldamma-ar.smallsukun-ar.small2kasra-ar.small2 damma.markhamzadamma.mark aAlf.daggerdot.1dot.2 dash.kaf_gaf dotbelow-ar.ltwodotshorizontalbelow-ar.lthreedotsupbelow-ar.lthreedotsdownbelow-ar.ltwodotsverticalbelow-ar.lfourdotsbelow-ar.lthreedotshorizontalbelow-ar.lvinvertedbelow-ar.low stroke-ar twoabove-ar threeabove-ar fourabove-ar fourbelow-arfourFarsi-ar.urdsixFarsi-ar.urdsevenFarsi-ar.urdaKaf.init.KafLamaKaf.fina.KafKafFinaaLam.medi.KafLamaLam.medi.KafLamMemMediaKaf.medi.KafLamaLam.medi.KafLamHehIsolaLam.medi.KafLamYaaaLam.medi.KafLamAlfaLam.fina.KafLamaAlf.fina.KafAlfaKaf.init.KafMemAlfaKaf.medi.KafMemAlfaMem.medi.KafMemAlfaLam.medi.KafMemLamaLam.fina.KafMemLamaAlf.fina.KafMemAlfat.araaKaf.init.KafHehaKaf.medi.KafHehaHeh.fina.KafHehaDal.fina.KafDalaLam.init.LamHehaLam.medi.LamHehaHeh.fina.LamHehaDal.fina.LamDalaKaf.medi.KafMemMediaKaf.init.KafMemInitaAyn.init.AynMemInitaFaa.init.FaaMemInitaHaa.init.HaaMemInitaHeh.init.HehMemInitaMem.medi.KafMemMediaSen.init.SenMemInitaSad.init.SadMemInitaMem.init.MemMemInitaMem.medi.SenMemInitaKaf.init.KafYaaIsolaBaa.init.BaaYaaIsolaHaa.init.HaaYaaIsolaMem.init.MemYaaIsolaFaa.init.FaaYaaIsolaAyn.init.AynYaaIsolaLam.init.LamYaaIsolaHeh.init.HehYaaIsolaYaa.fina.KafYaaIsolaKaf.init.KafMemIsolaLam.init.LamMemIsolaBaa.init.BaaMemIsolaMem.fina.KafMemIsolaMem.medi.MemAlfFinaaBaa.medi.BaaMemAlfFinaaMem.medi.BaaMemAlfFinaaMem.medi.AlfPostToothaAlf.fina.MemAlfFinaaBaa.init.BaaHehInitaBaa.medi.BaaHehMediaHeh.medi.BaaHehMediaHeh.medi.PostToothaLam.medi.KafLamMemFinaaLam.init.LamLamInitaLam.medi.LamLamInitaLam.medi.LamLamAlfIsolaKaf.fina.LamKafIsolaLam.fina.LamLamIsollam-ar.medi.FaLellahaLam.medi.LamLamMediaLam.medi.LamLamAlefFinaaLam.medi.LamLamMedi2aKaf.fina.LamKafFinaaLam.fina.LamLamFinaaLam.medi.LamLamMemInitaLam.medi.LamLamHehIsolaLam.medi.LamLamYaaIsolaLam.medi.LamLamMemMediaLam.medi.LamLamHehFinaaLam.medi.LamLamYaaFinaalefHamzabelow-ar.fina alef-ar.finaalefThreeabove-ar.finaalefTwoabove-ar.finaalefHamzaabove-ar.finaalefMadda-ar.finaalefWavyhamzaabove-ar.finaalefWavyhamzabelow-ar.finaalefWasla-ar.finaghainDotbelow-ar.fina ghain-ar.finaainThreedotsdownabove-ar.fina!ainTwodotshorizontalabove-ar.finaainTwodotsverticalabove-ar.finaainThreedots-ar.fina ain-ar.finaghainDotbelow-ar.init ghain-ar.initainThreedotsdownabove-ar.init!ainTwodotshorizontalabove-ar.initainTwodotsverticalabove-ar.initainThreedots-ar.init ain-ar.initghainDotbelow-ar.medi ghain-ar.mediainThreedotsdownabove-ar.medi!ainTwodotshorizontalabove-ar.mediainTwodotsverticalabove-ar.mediainThreedots-ar.medi ain-ar.medibehThreedotsupabove-ar.fina#behThreedotshorizontalbelow-ar.finatehThreedotsupbelow-ar.fina beheh-ar.fina teh-ar.finabehTwodotsbelowDotabove-ar.fina theh-ar.fina tteh-ar.finatehRing-ar.finabehVabove-ar.finabehThreedotsupbelow-ar.finabehDotless-ar.fina teheh-ar.finabehVinvertedbelow-ar.finatehThreedotsdown-ar.fina peh-ar.fina beeh-ar.fina beh-ar.finatteheh-ar.finayehFarsiFourbelow-ar.init beheh-ar.inityehFarsiThreeabove-ar.initnoonRing-ar.init#behThreedotshorizontalbelow-ar.initbehVabove-ar.initnoonTahabove-ar.inityehVabove-ar.inityehFarsiTwoabove-ar.initnoonThreedotsabove-ar.inityehHamzaabove-ar.initbehDotless-ar.inityehKashmiri-ar.init yeh-ar.init rnoon-ar.init teheh-ar.initbehVinvertedbelow-ar.inittehThreedotsdown-ar.init peh-ar.init beeh-ar.init beh-ar.inittteheh-ar.initbehThreedotsupabove-ar.init noon-ar.inittehThreedotsupbelow-ar.initbehThreedotsupbelow-ar.init teh-ar.inithighhamzaYeh-ar.inityehFarsiVinverted-ar.init theh-ar.init tteh-ar.initnoonDotbelow-ar.initnoonVabove-ar.initalefMaksura-ar.inittehRing-ar.initbehTwodotsbelowDotabove-ar.inityehThreedotsbelow-ar.init e-ar.initnoonghunna-ar.inityehFarsi-ar.initnoonTwodotsbelow-ar.inityehFarsiFourbelow-ar.medi beheh-ar.mediyehFarsiThreeabove-ar.medinoonRing-ar.medi#behThreedotshorizontalbelow-ar.medibehVabove-ar.medinoonTahabove-ar.mediyehVabove-ar.mediyehFarsiTwoabove-ar.medinoonThreedotsabove-ar.mediyehHamzaabove-ar.medibehDotless-ar.mediyehKashmiri-ar.medi yeh-ar.medi rnoon-ar.medi teheh-ar.medibehVinvertedbelow-ar.meditehThreedotsdown-ar.medi peh-ar.medi beeh-ar.medi beh-ar.meditteheh-ar.medibehThreedotsupabove-ar.medi noon-ar.meditehThreedotsupbelow-ar.medibehThreedotsupbelow-ar.medi teh-ar.mediyehFarsiVinverted-ar.medi theh-ar.medi tteh-ar.medinoonDotbelow-ar.medinoonVabove-ar.medialefMaksura-ar.meditehRing-ar.medibehTwodotsbelowDotabove-ar.mediyehThreedotsbelow-ar.medi e-ar.medinoonghunna-ar.mediyehFarsi-ar.medinoonTwodotsbelow-ar.medidalFourdots-ar.finadalVinvertedabove-ar.finadalRing-ar.fina ddal-ar.finadalVinvertedbelow-ar.fina thal-ar.fina dal-ar.fina"dalTwodotsverticalbelowTah-ar.fina dahal-ar.finadalDotbelowTah-ar.finadalDotbelow-ar.finadalThreedotsdown-ar.fina dul-ar.finaddahal-ar.finafehTwodotsbelow-ar.finafehThreedotsupbelow-ar.fina feh-ar.finafehDotless-ar.finafehDotmovedbelow-ar.finafehDotbelow-ar.fina veh-ar.finafehThreedotsbelow-ar.fina peheh-ar.finaqafDotless-ar.initfehThreedotsupbelow-ar.initfehTwodotsbelow-ar.init qaf-ar.init feh-ar.initqafThreedotsabove-ar.initfehDotless-ar.initfehDotmovedbelow-ar.initfehDotbelow-ar.init veh-ar.initfehThreedotsbelow-ar.init peheh-ar.initqafDotabove-ar.initqafDotless-ar.medifehThreedotsupbelow-ar.medifehTwodotsbelow-ar.medi qaf-ar.medi feh-ar.mediqafThreedotsabove-ar.medifehDotless-ar.medifehDotmovedbelow-ar.medifehDotbelow-ar.medi veh-ar.medifehThreedotsbelow-ar.medi peheh-ar.mediqafDotabove-ar.medi khah-ar.fina hah-ar.finahahHamzaabove-ar.finatcheheh-ar.finahahThreedotsabove-ar.fina jeem-ar.finahahTwodotsverticalabove-ar.fina!hahTwodotshorizontalabove-ar.fina dyeh-ar.fina$hahTahTwodotshorizontalabove-ar.finahahTahbelow-ar.fina nyeh-ar.finatchehDotabove-ar.finahahFourbelow-ar.finahahThreedotsupbelow-ar.finahahTahabove-ar.fina tcheh-ar.fina khah-ar.init hah-ar.inithahHamzaabove-ar.inittcheheh-ar.inithahThreedotsabove-ar.init jeem-ar.inithahTwodotsverticalabove-ar.init!hahTwodotshorizontalabove-ar.init dyeh-ar.init$hahTahTwodotshorizontalabove-ar.inithahTahbelow-ar.init nyeh-ar.inittchehDotabove-ar.inithahFourbelow-ar.inithahThreedotsupbelow-ar.inithahTahabove-ar.init tcheh-ar.init khah-ar.medi hah-ar.medihahHamzaabove-ar.meditcheheh-ar.medihahThreedotsabove-ar.medi jeem-ar.medihahTwodotsverticalabove-ar.medi!hahTwodotshorizontalabove-ar.medi dyeh-ar.medi$hahTahTwodotshorizontalabove-ar.medihahTahbelow-ar.medi nyeh-ar.meditchehDotabove-ar.medihahFourbelow-ar.medihahThreedotsupbelow-ar.medihahTahabove-ar.medi tcheh-ar.medi heh-ar.finahehgoal-ar.finatehMarbutagoal-ar.fina ae-ar.finatehMarbuta-ar.fina heh-ar.inithehgoal-ar.init heh-ar.medihehgoal-ar.medi#kehehTwodotshorizontalabove-ar.finakehehThreedotsbelow-ar.fina!kafTwodotshorizontalabove-ar.finakehehThreedotsupbelow-ar.fina kaf-ar.finagafRing-ar.fina gueh-ar.finagafTwodotsbelow-ar.finakafRing-ar.finakafDotabove-ar.fina ng-ar.finakafThreedotsbelow-ar.fina gaf-ar.fina keheh-ar.finagafThreedots-ar.finakehehThreedotsabove-ar.finakehehDotabove-ar.fina ngoeh-ar.fina#kehehTwodotshorizontalabove-ar.initkehehThreedotsbelow-ar.init!kafTwodotshorizontalabove-ar.initkehehThreedotsupbelow-ar.init kaf-ar.initgafRing-ar.init gueh-ar.initgafTwodotsbelow-ar.initkafRing-ar.initkafDotabove-ar.init ng-ar.initkafThreedotsbelow-ar.init gaf-ar.init keheh-ar.initgafThreedots-ar.initkehehThreedotsabove-ar.initkehehDotabove-ar.init ngoeh-ar.init#kehehTwodotshorizontalabove-ar.medikehehThreedotsbelow-ar.medi!kafTwodotshorizontalabove-ar.medikehehThreedotsupbelow-ar.medi kaf-ar.medigafRing-ar.medi gueh-ar.medigafTwodotsbelow-ar.medikafRing-ar.medikafDotabove-ar.medi ng-ar.medikafThreedotsbelow-ar.medi gaf-ar.medi keheh-ar.medigafThreedots-ar.medikehehThreedotsabove-ar.medikehehDotabove-ar.medi ngoeh-ar.medilamVabove-ar.finalamThreedotsabove-ar.fina lam-ar.finalamThreedotsbelow-ar.finalamDotabove-ar.finalamBar-ar.finalamVabove-ar.initlamThreedotsabove-ar.init lam-ar.initlamThreedotsbelow-ar.initlamDotabove-ar.initlamBar-ar.initlamVabove-ar.medilamThreedotsabove-ar.medi lam-ar.medilamThreedotsbelow-ar.medilamDotabove-ar.medilamBar-ar.medimeemDotabove-ar.fina meem-ar.finameemDotbelow-ar.finameemDotabove-ar.init meem-ar.initmeemDotbelow-ar.initmeemDotabove-ar.medi meem-ar.medimeemDotbelow-ar.medi noon-ar.finanoonTwodotsbelow-ar.finanoonghunna-ar.finanoonRing-ar.fina rnoon-ar.finanoonTahabove-ar.finanoonDotbelow-ar.finanoonVabove-ar.finanoonThreedotsabove-ar.finaqafThreedotsabove-ar.finaqafDotabove-ar.fina qaf-ar.finaqafDotless-ar.fina rreh-ar.fina rehv-ar.finarehRing-ar.finarehDotbelow-ar.finarehVbelow-ar.finarehDotbelowdotabove-ar.finarehTwodots-ar.fina jeh-ar.finarehFourdots-ar.finarehStroke-ar.finarehVinvertedabove-ar.fina zain-ar.fina)rehTwodotshorizontalaboveTahabove-ar.fina reh-ar.finarehTwodotsverticalabove-ar.finarehHamzaabove-ar.finasadTwodotsbelow-ar.finadadDotbelow-ar.fina dad-ar.finasadThreedots-ar.fina sad-ar.finasadTwodotsbelow-ar.initdadDotbelow-ar.init dad-ar.initsadThreedots-ar.init sad-ar.initsadTwodotsbelow-ar.medidadDotbelow-ar.medi dad-ar.medisadThreedots-ar.medi sad-ar.medisheenDotbelow-ar.fina seenTwodotsverticalabove-ar.fina seen-ar.finaseenVinvertedabove-ar.finaseenFourabove-ar.fina sheen-ar.fina%seenTahTwodotshorizontalabove-ar.finaseenFourdotsabove-ar.finaseenDotbelowDotabove-ar.finaseenThreedotsbelow-ar.finasheenThreedotsbelow-ar.finasheenDotbelow-ar.init seenTwodotsverticalabove-ar.init seen-ar.initseenVinvertedabove-ar.initseenFourabove-ar.init sheen-ar.init%seenTahTwodotshorizontalabove-ar.initseenFourdotsabove-ar.initseenDotbelowDotabove-ar.initseenThreedotsbelow-ar.initsheenThreedotsbelow-ar.initsheenDotbelow-ar.medi seenTwodotsverticalabove-ar.medi seen-ar.mediseenVinvertedabove-ar.mediseenFourabove-ar.medi sheen-ar.medi%seenTahTwodotshorizontalabove-ar.mediseenFourdotsabove-ar.mediseenDotbelowDotabove-ar.mediseenThreedotsbelow-ar.medisheenThreedotsbelow-ar.medi zah-ar.fina tah-ar.finatahThreedots-ar.fina zah-ar.init tah-ar.inittahThreedots-ar.init zah-ar.medi tah-ar.meditahThreedots-ar.medi ve-ar.finawawHamzaabove-ar.finawawTwodots-ar.finawawDotabove-ar.finawawTwoabove-ar.fina oe-ar.fina u-ar.finawawring-ar.finakirghizoe-ar.fina yu-ar.finakirghizyu-ar.finawawThreeAbove-ar.fina waw-ar.finayehFarsiFourbelow-ar.finayehThreedotsbelow-ar.finayehFarsiTwoabove-ar.finayehFarsiThreedotsabove-ar.finayehFarsiVinverted-ar.finayehFarsiTwodotsabove-ar.fina e-ar.finaalefMaksura-ar.finayehFarsiThreeabove-ar.finayehTail-ar.finayehFarsi-ar.finayehHamzaabove-ar.finayehKashmiri-ar.fina yeh-ar.finayehVabove-ar.finalamVabove-ar.medi.LamMemFina$lamThreedotsabove-ar.medi.LamMemFinalam-ar.medi.LamMemFina$lamThreedotsbelow-ar.medi.LamMemFinalamDotabove-ar.medi.LamMemFinalamBar-ar.medi.LamMemFinameem-ar.fina.LamMemFina$yehFarsiFourbelow-ar.init.BaaRaaIsolbeheh-ar.init.BaaRaaIsol%yehFarsiThreeabove-ar.init.BaaRaaIsolnoonRing-ar.init.BaaRaaIsol.behThreedotshorizontalbelow-ar.init.BaaRaaIsolbehVabove-ar.init.BaaRaaIsolnoonTahabove-ar.init.BaaRaaIsolyehVabove-ar.init.BaaRaaIsol#yehFarsiTwoabove-ar.init.BaaRaaIsol%noonThreedotsabove-ar.init.BaaRaaIsol yehHamzaabove-ar.init.BaaRaaIsolbehDotless-ar.init.BaaRaaIsolyehKashmiri-ar.init.BaaRaaIsolyeh-ar.init.BaaRaaIsolrnoon-ar.init.BaaRaaIsolteheh-ar.init.BaaRaaIsol$behVinvertedbelow-ar.init.BaaRaaIsol#tehThreedotsdown-ar.init.BaaRaaIsolpeh-ar.init.BaaRaaIsolbeeh-ar.init.BaaRaaIsolbeh-ar.init.BaaRaaIsoltteheh-ar.init.BaaRaaIsol&behThreedotsupabove-ar.init.BaaRaaIsolnoon-ar.init.BaaRaaIsol&tehThreedotsupbelow-ar.init.BaaRaaIsol&behThreedotsupbelow-ar.init.BaaRaaIsolteh-ar.init.BaaRaaIsolhighhamzaYeh-ar.init.BaaRaaIsol$yehFarsiVinverted-ar.init.BaaRaaIsoltheh-ar.init.BaaRaaIsoltteh-ar.init.BaaRaaIsolnoonDotbelow-ar.init.BaaRaaIsolnoonVabove-ar.init.BaaRaaIsolalefMaksura-ar.init.BaaRaaIsoltehRing-ar.init.BaaRaaIsol*behTwodotsbelowDotabove-ar.init.BaaRaaIsol$yehThreedotsbelow-ar.init.BaaRaaIsole-ar.init.BaaRaaIsolnoonghunna-ar.init.BaaRaaIsolyehFarsi-ar.init.BaaRaaIsol#noonTwodotsbelow-ar.init.BaaRaaIsolrreh-ar.fina.BaaRaaIsolrehv-ar.fina.BaaRaaIsolrehRing-ar.fina.BaaRaaIsolrehDotbelow-ar.fina.BaaRaaIsolrehVbelow-ar.fina.BaaRaaIsol&rehDotbelowdotabove-ar.fina.BaaRaaIsolrehTwodots-ar.fina.BaaRaaIsoljeh-ar.fina.BaaRaaIsolrehFourdots-ar.fina.BaaRaaIsolrehStroke-ar.fina.BaaRaaIsol$rehVinvertedabove-ar.fina.BaaRaaIsolzain-ar.fina.BaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsolreh-ar.fina.BaaRaaIsol*rehTwodotsverticalabove-ar.fina.BaaRaaIsol rehHamzaabove-ar.fina.BaaRaaIsollamVabove-ar.medi.LamWawFina$lamThreedotsabove-ar.medi.LamWawFinalam-ar.medi.LamWawFina$lamThreedotsbelow-ar.medi.LamWawFinalamDotabove-ar.medi.LamWawFinalamBar-ar.medi.LamWawFinave-ar.fina.LamWawFina wawHamzaabove-ar.fina.LamWawFinawawTwodots-ar.fina.LamWawFinawawDotabove-ar.fina.LamWawFinawawTwoabove-ar.fina.LamWawFinaoe-ar.fina.LamWawFinau-ar.fina.LamWawFinawawring-ar.fina.LamWawFinakirghizoe-ar.fina.LamWawFinayu-ar.fina.LamWawFinakirghizyu-ar.fina.LamWawFina wawThreeAbove-ar.fina.LamWawFinawaw-ar.fina.LamWawFinalamVabove-ar.init.LamHaaInit$lamThreedotsabove-ar.init.LamHaaInitlam-ar.init.LamHaaInit$lamThreedotsbelow-ar.init.LamHaaInitlamDotabove-ar.init.LamHaaInitlamBar-ar.init.LamHaaInitqafDotless-ar.medi.FaaYaaFina&fehThreedotsupbelow-ar.medi.FaaYaaFina"fehTwodotsbelow-ar.medi.FaaYaaFinaqaf-ar.medi.FaaYaaFinafeh-ar.medi.FaaYaaFina$qafThreedotsabove-ar.medi.FaaYaaFinafehDotless-ar.medi.FaaYaaFina#fehDotmovedbelow-ar.medi.FaaYaaFinafehDotbelow-ar.medi.FaaYaaFinaveh-ar.medi.FaaYaaFina$fehThreedotsbelow-ar.medi.FaaYaaFinapeheh-ar.medi.FaaYaaFinaqafDotabove-ar.medi.FaaYaaFina$yehFarsiFourbelow-ar.fina.FaaYaaFina$yehThreedotsbelow-ar.fina.FaaYaaFina#yehFarsiTwoabove-ar.fina.FaaYaaFina)yehFarsiThreedotsabove-ar.fina.FaaYaaFina$yehFarsiVinverted-ar.fina.FaaYaaFina'yehFarsiTwodotsabove-ar.fina.FaaYaaFinae-ar.fina.FaaYaaFinaalefMaksura-ar.fina.FaaYaaFina%yehFarsiThreeabove-ar.fina.FaaYaaFinayehTail-ar.fina.FaaYaaFinayehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFinayehKashmiri-ar.fina.FaaYaaFinayeh-ar.fina.FaaYaaFinayehVabove-ar.fina.FaaYaaFinalamVabove-ar.init.LamLamHaaInit'lamThreedotsabove-ar.init.LamLamHaaInitlam-ar.init.LamLamHaaInit'lamThreedotsbelow-ar.init.LamLamHaaInit!lamDotabove-ar.init.LamLamHaaInitlamBar-ar.init.LamLamHaaInitlamVabove-ar.medi.LamLamHaaInit'lamThreedotsabove-ar.medi.LamLamHaaInitlam-ar.medi.LamLamHaaInit'lamThreedotsbelow-ar.medi.LamLamHaaInit!lamDotabove-ar.medi.LamLamHaaInitlamBar-ar.medi.LamLamHaaInitkhah-ar.medi.LamLamHaaInithah-ar.medi.LamLamHaaInit#hahHamzaabove-ar.medi.LamLamHaaInittcheheh-ar.medi.LamLamHaaInit'hahThreedotsabove-ar.medi.LamLamHaaInitjeem-ar.medi.LamLamHaaInit-hahTwodotsverticalabove-ar.medi.LamLamHaaInit/hahTwodotshorizontalabove-ar.medi.LamLamHaaInitdyeh-ar.medi.LamLamHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit!hahTahbelow-ar.medi.LamLamHaaInitnyeh-ar.medi.LamLamHaaInit#tchehDotabove-ar.medi.LamLamHaaInit"hahFourbelow-ar.medi.LamLamHaaInit)hahThreedotsupbelow-ar.medi.LamLamHaaInit!hahTahabove-ar.medi.LamLamHaaInittcheh-ar.medi.LamLamHaaInit$yehFarsiFourbelow-ar.medi.BaaMemFinabeheh-ar.medi.BaaMemFina%yehFarsiThreeabove-ar.medi.BaaMemFinanoonRing-ar.medi.BaaMemFina.behThreedotshorizontalbelow-ar.medi.BaaMemFinabehVabove-ar.medi.BaaMemFinanoonTahabove-ar.medi.BaaMemFinayehVabove-ar.medi.BaaMemFina#yehFarsiTwoabove-ar.medi.BaaMemFina%noonThreedotsabove-ar.medi.BaaMemFina yehHamzaabove-ar.medi.BaaMemFinabehDotless-ar.medi.BaaMemFinayehKashmiri-ar.medi.BaaMemFinayeh-ar.medi.BaaMemFinarnoon-ar.medi.BaaMemFinateheh-ar.medi.BaaMemFina$behVinvertedbelow-ar.medi.BaaMemFina#tehThreedotsdown-ar.medi.BaaMemFinapeh-ar.medi.BaaMemFinabeeh-ar.medi.BaaMemFinabeh-ar.medi.BaaMemFinatteheh-ar.medi.BaaMemFina&behThreedotsupabove-ar.medi.BaaMemFinanoon-ar.medi.BaaMemFina&tehThreedotsupbelow-ar.medi.BaaMemFina&behThreedotsupbelow-ar.medi.BaaMemFinateh-ar.medi.BaaMemFina$yehFarsiVinverted-ar.medi.BaaMemFinatheh-ar.medi.BaaMemFinatteh-ar.medi.BaaMemFinanoonDotbelow-ar.medi.BaaMemFinanoonVabove-ar.medi.BaaMemFinaalefMaksura-ar.medi.BaaMemFinatehRing-ar.medi.BaaMemFina*behTwodotsbelowDotabove-ar.medi.BaaMemFina$yehThreedotsbelow-ar.medi.BaaMemFinae-ar.medi.BaaMemFinanoonghunna-ar.medi.BaaMemFinayehFarsi-ar.medi.BaaMemFina#noonTwodotsbelow-ar.medi.BaaMemFinameem-ar.fina.BaaMemFina sadTwodotsbelow-ar.init.AboveHaadadDotbelow-ar.init.AboveHaadad-ar.init.AboveHaasadThreedots-ar.init.AboveHaasad-ar.init.AboveHaalamVabove-ar.init.LamBaaMemInit'lamThreedotsabove-ar.init.LamBaaMemInitlam-ar.init.LamBaaMemInit'lamThreedotsbelow-ar.init.LamBaaMemInit!lamDotabove-ar.init.LamBaaMemInitlamBar-ar.init.LamBaaMemInit'yehFarsiFourbelow-ar.medi.LamBaaMemInitbeheh-ar.medi.LamBaaMemInit(yehFarsiThreeabove-ar.medi.LamBaaMemInitnoonRing-ar.medi.LamBaaMemInit1behThreedotshorizontalbelow-ar.medi.LamBaaMemInitbehVabove-ar.medi.LamBaaMemInit"noonTahabove-ar.medi.LamBaaMemInityehVabove-ar.medi.LamBaaMemInit&yehFarsiTwoabove-ar.medi.LamBaaMemInit(noonThreedotsabove-ar.medi.LamBaaMemInit#yehHamzaabove-ar.medi.LamBaaMemInit behDotless-ar.medi.LamBaaMemInit!yehKashmiri-ar.medi.LamBaaMemInityeh-ar.medi.LamBaaMemInitrnoon-ar.medi.LamBaaMemInitteheh-ar.medi.LamBaaMemInit'behVinvertedbelow-ar.medi.LamBaaMemInit&tehThreedotsdown-ar.medi.LamBaaMemInitpeh-ar.medi.LamBaaMemInitbeeh-ar.medi.LamBaaMemInitbeh-ar.medi.LamBaaMemInittteheh-ar.medi.LamBaaMemInit)behThreedotsupabove-ar.medi.LamBaaMemInitnoon-ar.medi.LamBaaMemInit)tehThreedotsupbelow-ar.medi.LamBaaMemInit)behThreedotsupbelow-ar.medi.LamBaaMemInitteh-ar.medi.LamBaaMemInit'yehFarsiVinverted-ar.medi.LamBaaMemInittheh-ar.medi.LamBaaMemInittteh-ar.medi.LamBaaMemInit"noonDotbelow-ar.medi.LamBaaMemInit noonVabove-ar.medi.LamBaaMemInit!alefMaksura-ar.medi.LamBaaMemInittehRing-ar.medi.LamBaaMemInit-behTwodotsbelowDotabove-ar.medi.LamBaaMemInit'yehThreedotsbelow-ar.medi.LamBaaMemInite-ar.medi.LamBaaMemInit noonghunna-ar.medi.LamBaaMemInityehFarsi-ar.medi.LamBaaMemInit&noonTwodotsbelow-ar.medi.LamBaaMemInitmeem-ar.medi.LamBaaMemInit yehFarsiFourbelow-ar.init.BaaDalbeheh-ar.init.BaaDal!yehFarsiThreeabove-ar.init.BaaDalnoonRing-ar.init.BaaDal*behThreedotshorizontalbelow-ar.init.BaaDalbehVabove-ar.init.BaaDalnoonTahabove-ar.init.BaaDalyehVabove-ar.init.BaaDalyehFarsiTwoabove-ar.init.BaaDal!noonThreedotsabove-ar.init.BaaDalyehHamzaabove-ar.init.BaaDalbehDotless-ar.init.BaaDalyehKashmiri-ar.init.BaaDalyeh-ar.init.BaaDalrnoon-ar.init.BaaDalteheh-ar.init.BaaDal behVinvertedbelow-ar.init.BaaDaltehThreedotsdown-ar.init.BaaDalpeh-ar.init.BaaDalbeeh-ar.init.BaaDalbeh-ar.init.BaaDaltteheh-ar.init.BaaDal"behThreedotsupabove-ar.init.BaaDalnoon-ar.init.BaaDal"tehThreedotsupbelow-ar.init.BaaDal"behThreedotsupbelow-ar.init.BaaDalteh-ar.init.BaaDalhighhamzaYeh-ar.init.BaaDal yehFarsiVinverted-ar.init.BaaDaltheh-ar.init.BaaDaltteh-ar.init.BaaDalnoonDotbelow-ar.init.BaaDalnoonVabove-ar.init.BaaDalalefMaksura-ar.init.BaaDaltehRing-ar.init.BaaDal&behTwodotsbelowDotabove-ar.init.BaaDal yehThreedotsbelow-ar.init.BaaDale-ar.init.BaaDalnoonghunna-ar.init.BaaDalyehFarsi-ar.init.BaaDalnoonTwodotsbelow-ar.init.BaaDaldalFourdots-ar.fina.BaaDal dalVinvertedabove-ar.fina.BaaDaldalRing-ar.fina.BaaDalddal-ar.fina.BaaDal dalVinvertedbelow-ar.fina.BaaDalthal-ar.fina.BaaDaldal-ar.fina.BaaDal)dalTwodotsverticalbelowTah-ar.fina.BaaDaldahal-ar.fina.BaaDaldalDotbelowTah-ar.fina.BaaDaldalDotbelow-ar.fina.BaaDaldalThreedotsdown-ar.fina.BaaDaldul-ar.fina.BaaDalddahal-ar.fina.BaaDal'yehFarsiFourbelow-ar.init.BaaMemHaaInitbeheh-ar.init.BaaMemHaaInit(yehFarsiThreeabove-ar.init.BaaMemHaaInitnoonRing-ar.init.BaaMemHaaInit1behThreedotshorizontalbelow-ar.init.BaaMemHaaInitbehVabove-ar.init.BaaMemHaaInit"noonTahabove-ar.init.BaaMemHaaInityehVabove-ar.init.BaaMemHaaInit&yehFarsiTwoabove-ar.init.BaaMemHaaInit(noonThreedotsabove-ar.init.BaaMemHaaInit#yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInit!yehKashmiri-ar.init.BaaMemHaaInityeh-ar.init.BaaMemHaaInitrnoon-ar.init.BaaMemHaaInitteheh-ar.init.BaaMemHaaInit'behVinvertedbelow-ar.init.BaaMemHaaInit&tehThreedotsdown-ar.init.BaaMemHaaInitpeh-ar.init.BaaMemHaaInitbeeh-ar.init.BaaMemHaaInitbeh-ar.init.BaaMemHaaInittteheh-ar.init.BaaMemHaaInit)behThreedotsupabove-ar.init.BaaMemHaaInitnoon-ar.init.BaaMemHaaInit)tehThreedotsupbelow-ar.init.BaaMemHaaInit)behThreedotsupbelow-ar.init.BaaMemHaaInitteh-ar.init.BaaMemHaaInit"highhamzaYeh-ar.init.BaaMemHaaInit'yehFarsiVinverted-ar.init.BaaMemHaaInittheh-ar.init.BaaMemHaaInittteh-ar.init.BaaMemHaaInit"noonDotbelow-ar.init.BaaMemHaaInit noonVabove-ar.init.BaaMemHaaInit!alefMaksura-ar.init.BaaMemHaaInittehRing-ar.init.BaaMemHaaInit-behTwodotsbelowDotabove-ar.init.BaaMemHaaInit'yehThreedotsbelow-ar.init.BaaMemHaaInite-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInityehFarsi-ar.init.BaaMemHaaInit&noonTwodotsbelow-ar.init.BaaMemHaaInitmeem-ar.medi.BaaMemHaaInitkhah-ar.medi.BaaMemHaaInithah-ar.medi.BaaMemHaaInit#hahHamzaabove-ar.medi.BaaMemHaaInittcheheh-ar.medi.BaaMemHaaInit'hahThreedotsabove-ar.medi.BaaMemHaaInitjeem-ar.medi.BaaMemHaaInit-hahTwodotsverticalabove-ar.medi.BaaMemHaaInit/hahTwodotshorizontalabove-ar.medi.BaaMemHaaInitdyeh-ar.medi.BaaMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit!hahTahbelow-ar.medi.BaaMemHaaInitnyeh-ar.medi.BaaMemHaaInit#tchehDotabove-ar.medi.BaaMemHaaInit"hahFourbelow-ar.medi.BaaMemHaaInit)hahThreedotsupbelow-ar.medi.BaaMemHaaInit!hahTahabove-ar.medi.BaaMemHaaInittcheh-ar.medi.BaaMemHaaInit#yehFarsiFourbelow-ar.init.BaaBaaYaabeheh-ar.init.BaaBaaYaa$yehFarsiThreeabove-ar.init.BaaBaaYaanoonRing-ar.init.BaaBaaYaa-behThreedotshorizontalbelow-ar.init.BaaBaaYaabehVabove-ar.init.BaaBaaYaanoonTahabove-ar.init.BaaBaaYaayehVabove-ar.init.BaaBaaYaa"yehFarsiTwoabove-ar.init.BaaBaaYaa$noonThreedotsabove-ar.init.BaaBaaYaayehHamzaabove-ar.init.BaaBaaYaabehDotless-ar.init.BaaBaaYaayehKashmiri-ar.init.BaaBaaYaayeh-ar.init.BaaBaaYaarnoon-ar.init.BaaBaaYaateheh-ar.init.BaaBaaYaa#behVinvertedbelow-ar.init.BaaBaaYaa"tehThreedotsdown-ar.init.BaaBaaYaapeh-ar.init.BaaBaaYaabeeh-ar.init.BaaBaaYaabeh-ar.init.BaaBaaYaatteheh-ar.init.BaaBaaYaa%behThreedotsupabove-ar.init.BaaBaaYaanoon-ar.init.BaaBaaYaa%tehThreedotsupbelow-ar.init.BaaBaaYaa%behThreedotsupbelow-ar.init.BaaBaaYaateh-ar.init.BaaBaaYaahighhamzaYeh-ar.init.BaaBaaYaa#yehFarsiVinverted-ar.init.BaaBaaYaatheh-ar.init.BaaBaaYaatteh-ar.init.BaaBaaYaanoonDotbelow-ar.init.BaaBaaYaanoonVabove-ar.init.BaaBaaYaaalefMaksura-ar.init.BaaBaaYaatehRing-ar.init.BaaBaaYaa)behTwodotsbelowDotabove-ar.init.BaaBaaYaa#yehThreedotsbelow-ar.init.BaaBaaYaae-ar.init.BaaBaaYaanoonghunna-ar.init.BaaBaaYaayehFarsi-ar.init.BaaBaaYaa"noonTwodotsbelow-ar.init.BaaBaaYaa#yehFarsiFourbelow-ar.medi.BaaBaaYaabeheh-ar.medi.BaaBaaYaa$yehFarsiThreeabove-ar.medi.BaaBaaYaanoonRing-ar.medi.BaaBaaYaa-behThreedotshorizontalbelow-ar.medi.BaaBaaYaabehVabove-ar.medi.BaaBaaYaanoonTahabove-ar.medi.BaaBaaYaayehVabove-ar.medi.BaaBaaYaa"yehFarsiTwoabove-ar.medi.BaaBaaYaa$noonThreedotsabove-ar.medi.BaaBaaYaayehHamzaabove-ar.medi.BaaBaaYaabehDotless-ar.medi.BaaBaaYaayehKashmiri-ar.medi.BaaBaaYaayeh-ar.medi.BaaBaaYaarnoon-ar.medi.BaaBaaYaateheh-ar.medi.BaaBaaYaa#behVinvertedbelow-ar.medi.BaaBaaYaa"tehThreedotsdown-ar.medi.BaaBaaYaapeh-ar.medi.BaaBaaYaabeeh-ar.medi.BaaBaaYaabeh-ar.medi.BaaBaaYaatteheh-ar.medi.BaaBaaYaa%behThreedotsupabove-ar.medi.BaaBaaYaanoon-ar.medi.BaaBaaYaa%tehThreedotsupbelow-ar.medi.BaaBaaYaa%behThreedotsupbelow-ar.medi.BaaBaaYaateh-ar.medi.BaaBaaYaa#yehFarsiVinverted-ar.medi.BaaBaaYaatheh-ar.medi.BaaBaaYaatteh-ar.medi.BaaBaaYaanoonDotbelow-ar.medi.BaaBaaYaanoonVabove-ar.medi.BaaBaaYaaalefMaksura-ar.medi.BaaBaaYaatehRing-ar.medi.BaaBaaYaa)behTwodotsbelowDotabove-ar.medi.BaaBaaYaa#yehThreedotsbelow-ar.medi.BaaBaaYaae-ar.medi.BaaBaaYaanoonghunna-ar.medi.BaaBaaYaayehFarsi-ar.medi.BaaBaaYaa"noonTwodotsbelow-ar.medi.BaaBaaYaa#yehFarsiFourbelow-ar.fina.BaaBaaYaa#yehThreedotsbelow-ar.fina.BaaBaaYaa"yehFarsiTwoabove-ar.fina.BaaBaaYaa(yehFarsiThreedotsabove-ar.fina.BaaBaaYaa#yehFarsiVinverted-ar.fina.BaaBaaYaa&yehFarsiTwodotsabove-ar.fina.BaaBaaYaae-ar.fina.BaaBaaYaaalefMaksura-ar.fina.BaaBaaYaa$yehFarsiThreeabove-ar.fina.BaaBaaYaayehTail-ar.fina.BaaBaaYaayehFarsi-ar.fina.BaaBaaYaayehHamzaabove-ar.fina.BaaBaaYaayehKashmiri-ar.fina.BaaBaaYaayeh-ar.fina.BaaBaaYaayehVabove-ar.fina.BaaBaaYaalamVabove-ar.medi.LamYaaFina$lamThreedotsabove-ar.medi.LamYaaFinalam-ar.medi.LamYaaFina$lamThreedotsbelow-ar.medi.LamYaaFinalamDotabove-ar.medi.LamYaaFinalamBar-ar.medi.LamYaaFina$yehFarsiFourbelow-ar.fina.LamYaaFina$yehThreedotsbelow-ar.fina.LamYaaFina#yehFarsiTwoabove-ar.fina.LamYaaFina)yehFarsiThreedotsabove-ar.fina.LamYaaFina$yehFarsiVinverted-ar.fina.LamYaaFina'yehFarsiTwodotsabove-ar.fina.LamYaaFinae-ar.fina.LamYaaFinaalefMaksura-ar.fina.LamYaaFina%yehFarsiThreeabove-ar.fina.LamYaaFinayehTail-ar.fina.LamYaaFinayehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFinayehKashmiri-ar.fina.LamYaaFinayeh-ar.fina.LamYaaFinayehVabove-ar.fina.LamYaaFina.kehehTwodotshorizontalabove-ar.init.KafBaaInit&kehehThreedotsbelow-ar.init.KafBaaInit,kafTwodotshorizontalabove-ar.init.KafBaaInit(kehehThreedotsupbelow-ar.init.KafBaaInitkaf-ar.init.KafBaaInitgafRing-ar.init.KafBaaInitgueh-ar.init.KafBaaInit"gafTwodotsbelow-ar.init.KafBaaInitkafRing-ar.init.KafBaaInitkafDotabove-ar.init.KafBaaInitng-ar.init.KafBaaInit$kafThreedotsbelow-ar.init.KafBaaInitgaf-ar.init.KafBaaInitkeheh-ar.init.KafBaaInitgafThreedots-ar.init.KafBaaInit&kehehThreedotsabove-ar.init.KafBaaInit kehehDotabove-ar.init.KafBaaInitngoeh-ar.init.KafBaaInit$yehFarsiFourbelow-ar.medi.KafBaaInitbeheh-ar.medi.KafBaaInit%yehFarsiThreeabove-ar.medi.KafBaaInitnoonRing-ar.medi.KafBaaInit.behThreedotshorizontalbelow-ar.medi.KafBaaInitbehVabove-ar.medi.KafBaaInitnoonTahabove-ar.medi.KafBaaInityehVabove-ar.medi.KafBaaInit#yehFarsiTwoabove-ar.medi.KafBaaInit%noonThreedotsabove-ar.medi.KafBaaInit yehHamzaabove-ar.medi.KafBaaInitbehDotless-ar.medi.KafBaaInityehKashmiri-ar.medi.KafBaaInityeh-ar.medi.KafBaaInitrnoon-ar.medi.KafBaaInitteheh-ar.medi.KafBaaInit$behVinvertedbelow-ar.medi.KafBaaInit#tehThreedotsdown-ar.medi.KafBaaInitpeh-ar.medi.KafBaaInitbeeh-ar.medi.KafBaaInitbeh-ar.medi.KafBaaInittteheh-ar.medi.KafBaaInit&behThreedotsupabove-ar.medi.KafBaaInitnoon-ar.medi.KafBaaInit&tehThreedotsupbelow-ar.medi.KafBaaInit&behThreedotsupbelow-ar.medi.KafBaaInitteh-ar.medi.KafBaaInit$yehFarsiVinverted-ar.medi.KafBaaInittheh-ar.medi.KafBaaInittteh-ar.medi.KafBaaInitnoonDotbelow-ar.medi.KafBaaInitnoonVabove-ar.medi.KafBaaInitalefMaksura-ar.medi.KafBaaInittehRing-ar.medi.KafBaaInit*behTwodotsbelowDotabove-ar.medi.KafBaaInit$yehThreedotsbelow-ar.medi.KafBaaInite-ar.medi.KafBaaInitnoonghunna-ar.medi.KafBaaInityehFarsi-ar.medi.KafBaaInit#noonTwodotsbelow-ar.medi.KafBaaInitlamVabove-ar.init.LamMemInit$lamThreedotsabove-ar.init.LamMemInitlam-ar.init.LamMemInit$lamThreedotsbelow-ar.init.LamMemInitlamDotabove-ar.init.LamMemInitlamBar-ar.init.LamMemInitmeem-ar.medi.LamMemInitlamVabove-ar.init.LamAlfIsol$lamThreedotsabove-ar.init.LamAlfIsollam-ar.init.LamAlfIsol$lamThreedotsbelow-ar.init.LamAlfIsollamDotabove-ar.init.LamAlfIsollamBar-ar.init.LamAlfIsol!alefHamzabelow-ar.fina.LamAlfIsolalef-ar.fina.LamAlfIsol!alefThreeabove-ar.fina.LamAlfIsolalefTwoabove-ar.fina.LamAlfIsol!alefHamzaabove-ar.fina.LamAlfIsolalefMadda-ar.fina.LamAlfIsol%alefWavyhamzaabove-ar.fina.LamAlfIsol%alefWavyhamzabelow-ar.fina.LamAlfIsolalefWasla-ar.fina.LamAlfIsollamVabove-ar.init.LamHaaMemInit'lamThreedotsabove-ar.init.LamHaaMemInitlam-ar.init.LamHaaMemInit'lamThreedotsbelow-ar.init.LamHaaMemInit!lamDotabove-ar.init.LamHaaMemInitlamBar-ar.init.LamHaaMemInitkhah-ar.medi.LamHaaMemInithah-ar.medi.LamHaaMemInit#hahHamzaabove-ar.medi.LamHaaMemInittcheheh-ar.medi.LamHaaMemInit'hahThreedotsabove-ar.medi.LamHaaMemInitjeem-ar.medi.LamHaaMemInit-hahTwodotsverticalabove-ar.medi.LamHaaMemInit/hahTwodotshorizontalabove-ar.medi.LamHaaMemInitdyeh-ar.medi.LamHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit!hahTahbelow-ar.medi.LamHaaMemInitnyeh-ar.medi.LamHaaMemInit#tchehDotabove-ar.medi.LamHaaMemInit"hahFourbelow-ar.medi.LamHaaMemInit)hahThreedotsupbelow-ar.medi.LamHaaMemInit!hahTahabove-ar.medi.LamHaaMemInittcheh-ar.medi.LamHaaMemInitmeem-ar.medi.LamHaaMemInit$yehFarsiFourbelow-ar.medi.BaaBaaInitbeheh-ar.medi.BaaBaaInit%yehFarsiThreeabove-ar.medi.BaaBaaInitnoonRing-ar.medi.BaaBaaInit.behThreedotshorizontalbelow-ar.medi.BaaBaaInitbehVabove-ar.medi.BaaBaaInitnoonTahabove-ar.medi.BaaBaaInityehVabove-ar.medi.BaaBaaInit#yehFarsiTwoabove-ar.medi.BaaBaaInit%noonThreedotsabove-ar.medi.BaaBaaInit yehHamzaabove-ar.medi.BaaBaaInitbehDotless-ar.medi.BaaBaaInityehKashmiri-ar.medi.BaaBaaInityeh-ar.medi.BaaBaaInitrnoon-ar.medi.BaaBaaInitteheh-ar.medi.BaaBaaInit$behVinvertedbelow-ar.medi.BaaBaaInit#tehThreedotsdown-ar.medi.BaaBaaInitpeh-ar.medi.BaaBaaInitbeeh-ar.medi.BaaBaaInitbeh-ar.medi.BaaBaaInittteheh-ar.medi.BaaBaaInit&behThreedotsupabove-ar.medi.BaaBaaInitnoon-ar.medi.BaaBaaInit&tehThreedotsupbelow-ar.medi.BaaBaaInit&behThreedotsupbelow-ar.medi.BaaBaaInitteh-ar.medi.BaaBaaInit$yehFarsiVinverted-ar.medi.BaaBaaInittheh-ar.medi.BaaBaaInittteh-ar.medi.BaaBaaInitnoonDotbelow-ar.medi.BaaBaaInitnoonVabove-ar.medi.BaaBaaInitalefMaksura-ar.medi.BaaBaaInittehRing-ar.medi.BaaBaaInit*behTwodotsbelowDotabove-ar.medi.BaaBaaInit$yehThreedotsbelow-ar.medi.BaaBaaInite-ar.medi.BaaBaaInitnoonghunna-ar.medi.BaaBaaInityehFarsi-ar.medi.BaaBaaInit#noonTwodotsbelow-ar.medi.BaaBaaInit ghainDotbelow-ar.medi.AynYaaFinaghain-ar.medi.AynYaaFina(ainThreedotsdownabove-ar.medi.AynYaaFina,ainTwodotshorizontalabove-ar.medi.AynYaaFina*ainTwodotsverticalabove-ar.medi.AynYaaFinaainThreedots-ar.medi.AynYaaFinaain-ar.medi.AynYaaFinameemDotabove-ar.init.MemRaaIsolmeem-ar.init.MemRaaIsolmeemDotbelow-ar.init.MemRaaIsolrreh-ar.fina.MemRaaIsolrehv-ar.fina.MemRaaIsolrehRing-ar.fina.MemRaaIsolrehDotbelow-ar.fina.MemRaaIsolrehVbelow-ar.fina.MemRaaIsol&rehDotbelowdotabove-ar.fina.MemRaaIsolrehTwodots-ar.fina.MemRaaIsoljeh-ar.fina.MemRaaIsolrehFourdots-ar.fina.MemRaaIsolrehStroke-ar.fina.MemRaaIsol$rehVinvertedabove-ar.fina.MemRaaIsolzain-ar.fina.MemRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsolreh-ar.fina.MemRaaIsol*rehTwodotsverticalabove-ar.fina.MemRaaIsol rehHamzaabove-ar.fina.MemRaaIsolqafDotless-ar.init.FaaHaaInit&fehThreedotsupbelow-ar.init.FaaHaaInit"fehTwodotsbelow-ar.init.FaaHaaInitqaf-ar.init.FaaHaaInitfeh-ar.init.FaaHaaInit$qafThreedotsabove-ar.init.FaaHaaInitfehDotless-ar.init.FaaHaaInit#fehDotmovedbelow-ar.init.FaaHaaInitfehDotbelow-ar.init.FaaHaaInitveh-ar.init.FaaHaaInit$fehThreedotsbelow-ar.init.FaaHaaInitpeheh-ar.init.FaaHaaInitqafDotabove-ar.init.FaaHaaInitkhah-ar.medi.FaaHaaInithah-ar.medi.FaaHaaInit hahHamzaabove-ar.medi.FaaHaaInittcheheh-ar.medi.FaaHaaInit$hahThreedotsabove-ar.medi.FaaHaaInitjeem-ar.medi.FaaHaaInit*hahTwodotsverticalabove-ar.medi.FaaHaaInit,hahTwodotshorizontalabove-ar.medi.FaaHaaInitdyeh-ar.medi.FaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.FaaHaaInithahTahbelow-ar.medi.FaaHaaInitnyeh-ar.medi.FaaHaaInit tchehDotabove-ar.medi.FaaHaaInithahFourbelow-ar.medi.FaaHaaInit&hahThreedotsupbelow-ar.medi.FaaHaaInithahTahabove-ar.medi.FaaHaaInittcheh-ar.medi.FaaHaaInitkhah-ar.init.HaaHaaInithah-ar.init.HaaHaaInit hahHamzaabove-ar.init.HaaHaaInittcheheh-ar.init.HaaHaaInit$hahThreedotsabove-ar.init.HaaHaaInitjeem-ar.init.HaaHaaInit*hahTwodotsverticalabove-ar.init.HaaHaaInit,hahTwodotshorizontalabove-ar.init.HaaHaaInitdyeh-ar.init.HaaHaaInit/hahTahTwodotshorizontalabove-ar.init.HaaHaaInithahTahbelow-ar.init.HaaHaaInitnyeh-ar.init.HaaHaaInit tchehDotabove-ar.init.HaaHaaInithahFourbelow-ar.init.HaaHaaInit&hahThreedotsupbelow-ar.init.HaaHaaInithahTahabove-ar.init.HaaHaaInittcheh-ar.init.HaaHaaInitlamVabove-ar.medi.LamQafFina$lamThreedotsabove-ar.medi.LamQafFinalam-ar.medi.LamQafFina$lamThreedotsbelow-ar.medi.LamQafFinalamDotabove-ar.medi.LamQafFinalamBar-ar.medi.LamQafFina$qafThreedotsabove-ar.fina.LamQafFinaqafDotabove-ar.fina.LamQafFinaqaf-ar.fina.LamQafFinaqafDotless-ar.fina.LamQafFinasheenDotbelow-ar.init.AboveHaa)seenTwodotsverticalabove-ar.init.AboveHaaseen-ar.init.AboveHaa#seenVinvertedabove-ar.init.AboveHaaseenFourabove-ar.init.AboveHaasheen-ar.init.AboveHaa.seenTahTwodotshorizontalabove-ar.init.AboveHaa"seenFourdotsabove-ar.init.AboveHaa%seenDotbelowDotabove-ar.init.AboveHaa#seenThreedotsbelow-ar.init.AboveHaa$sheenThreedotsbelow-ar.init.AboveHaameem-ar.init.MemHaaInit$yehFarsiFourbelow-ar.init.BaaNonIsolbeheh-ar.init.BaaNonIsol%yehFarsiThreeabove-ar.init.BaaNonIsolnoonRing-ar.init.BaaNonIsol.behThreedotshorizontalbelow-ar.init.BaaNonIsolbehVabove-ar.init.BaaNonIsolnoonTahabove-ar.init.BaaNonIsolyehVabove-ar.init.BaaNonIsol#yehFarsiTwoabove-ar.init.BaaNonIsol%noonThreedotsabove-ar.init.BaaNonIsol yehHamzaabove-ar.init.BaaNonIsolbehDotless-ar.init.BaaNonIsolyehKashmiri-ar.init.BaaNonIsolyeh-ar.init.BaaNonIsolrnoon-ar.init.BaaNonIsolteheh-ar.init.BaaNonIsol$behVinvertedbelow-ar.init.BaaNonIsol#tehThreedotsdown-ar.init.BaaNonIsolpeh-ar.init.BaaNonIsolbeeh-ar.init.BaaNonIsolbeh-ar.init.BaaNonIsoltteheh-ar.init.BaaNonIsol&behThreedotsupabove-ar.init.BaaNonIsolnoon-ar.init.BaaNonIsol&tehThreedotsupbelow-ar.init.BaaNonIsol&behThreedotsupbelow-ar.init.BaaNonIsolteh-ar.init.BaaNonIsolhighhamzaYeh-ar.init.BaaNonIsol$yehFarsiVinverted-ar.init.BaaNonIsoltheh-ar.init.BaaNonIsoltteh-ar.init.BaaNonIsolnoonDotbelow-ar.init.BaaNonIsolnoonVabove-ar.init.BaaNonIsolalefMaksura-ar.init.BaaNonIsoltehRing-ar.init.BaaNonIsol*behTwodotsbelowDotabove-ar.init.BaaNonIsol$yehThreedotsbelow-ar.init.BaaNonIsole-ar.init.BaaNonIsolnoonghunna-ar.init.BaaNonIsolyehFarsi-ar.init.BaaNonIsol#noonTwodotsbelow-ar.init.BaaNonIsolnoon-ar.fina.BaaNonIsol#noonTwodotsbelow-ar.fina.BaaNonIsolnoonghunna-ar.fina.BaaNonIsolnoonRing-ar.fina.BaaNonIsolrnoon-ar.fina.BaaNonIsolnoonTahabove-ar.fina.BaaNonIsolnoonDotbelow-ar.fina.BaaNonIsolnoonVabove-ar.fina.BaaNonIsol%noonThreedotsabove-ar.fina.BaaNonIsol.kehehTwodotshorizontalabove-ar.medi.KafMemFina&kehehThreedotsbelow-ar.medi.KafMemFina,kafTwodotshorizontalabove-ar.medi.KafMemFina(kehehThreedotsupbelow-ar.medi.KafMemFinakaf-ar.medi.KafMemFinagafRing-ar.medi.KafMemFinagueh-ar.medi.KafMemFina"gafTwodotsbelow-ar.medi.KafMemFinakafRing-ar.medi.KafMemFinakafDotabove-ar.medi.KafMemFinang-ar.medi.KafMemFina$kafThreedotsbelow-ar.medi.KafMemFinagaf-ar.medi.KafMemFinakeheh-ar.medi.KafMemFinagafThreedots-ar.medi.KafMemFina&kehehThreedotsabove-ar.medi.KafMemFina kehehDotabove-ar.medi.KafMemFinangoeh-ar.medi.KafMemFinameem-ar.fina.KafMemFina$yehFarsiFourbelow-ar.init.BaaSenInitbeheh-ar.init.BaaSenInit%yehFarsiThreeabove-ar.init.BaaSenInitnoonRing-ar.init.BaaSenInit.behThreedotshorizontalbelow-ar.init.BaaSenInitbehVabove-ar.init.BaaSenInitnoonTahabove-ar.init.BaaSenInityehVabove-ar.init.BaaSenInit#yehFarsiTwoabove-ar.init.BaaSenInit%noonThreedotsabove-ar.init.BaaSenInit yehHamzaabove-ar.init.BaaSenInitbehDotless-ar.init.BaaSenInityehKashmiri-ar.init.BaaSenInityeh-ar.init.BaaSenInitrnoon-ar.init.BaaSenInitteheh-ar.init.BaaSenInit$behVinvertedbelow-ar.init.BaaSenInit#tehThreedotsdown-ar.init.BaaSenInitpeh-ar.init.BaaSenInitbeeh-ar.init.BaaSenInitbeh-ar.init.BaaSenInittteheh-ar.init.BaaSenInit&behThreedotsupabove-ar.init.BaaSenInitnoon-ar.init.BaaSenInit&tehThreedotsupbelow-ar.init.BaaSenInit&behThreedotsupbelow-ar.init.BaaSenInitteh-ar.init.BaaSenInithighhamzaYeh-ar.init.BaaSenInit$yehFarsiVinverted-ar.init.BaaSenInittheh-ar.init.BaaSenInittteh-ar.init.BaaSenInitnoonDotbelow-ar.init.BaaSenInitnoonVabove-ar.init.BaaSenInitalefMaksura-ar.init.BaaSenInittehRing-ar.init.BaaSenInit*behTwodotsbelowDotabove-ar.init.BaaSenInit$yehThreedotsbelow-ar.init.BaaSenInite-ar.init.BaaSenInitnoonghunna-ar.init.BaaSenInityehFarsi-ar.init.BaaSenInit#noonTwodotsbelow-ar.init.BaaSenInit sheenDotbelow-ar.medi.BaaSenInit+seenTwodotsverticalabove-ar.medi.BaaSenInitseen-ar.medi.BaaSenInit%seenVinvertedabove-ar.medi.BaaSenInit seenFourabove-ar.medi.BaaSenInitsheen-ar.medi.BaaSenInit0seenTahTwodotshorizontalabove-ar.medi.BaaSenInit$seenFourdotsabove-ar.medi.BaaSenInit'seenDotbelowDotabove-ar.medi.BaaSenInit%seenThreedotsbelow-ar.medi.BaaSenInit&sheenThreedotsbelow-ar.medi.BaaSenInit$yehFarsiFourbelow-ar.medi.BaaRaaFinabeheh-ar.medi.BaaRaaFina%yehFarsiThreeabove-ar.medi.BaaRaaFinanoonRing-ar.medi.BaaRaaFina.behThreedotshorizontalbelow-ar.medi.BaaRaaFinabehVabove-ar.medi.BaaRaaFinanoonTahabove-ar.medi.BaaRaaFinayehVabove-ar.medi.BaaRaaFina#yehFarsiTwoabove-ar.medi.BaaRaaFina%noonThreedotsabove-ar.medi.BaaRaaFina yehHamzaabove-ar.medi.BaaRaaFinabehDotless-ar.medi.BaaRaaFinayehKashmiri-ar.medi.BaaRaaFinayeh-ar.medi.BaaRaaFinarnoon-ar.medi.BaaRaaFinateheh-ar.medi.BaaRaaFina$behVinvertedbelow-ar.medi.BaaRaaFina#tehThreedotsdown-ar.medi.BaaRaaFinapeh-ar.medi.BaaRaaFinabeeh-ar.medi.BaaRaaFinabeh-ar.medi.BaaRaaFinatteheh-ar.medi.BaaRaaFina&behThreedotsupabove-ar.medi.BaaRaaFinanoon-ar.medi.BaaRaaFina&tehThreedotsupbelow-ar.medi.BaaRaaFina&behThreedotsupbelow-ar.medi.BaaRaaFinateh-ar.medi.BaaRaaFina$yehFarsiVinverted-ar.medi.BaaRaaFinatheh-ar.medi.BaaRaaFinatteh-ar.medi.BaaRaaFinanoonDotbelow-ar.medi.BaaRaaFinanoonVabove-ar.medi.BaaRaaFinaalefMaksura-ar.medi.BaaRaaFinatehRing-ar.medi.BaaRaaFina*behTwodotsbelowDotabove-ar.medi.BaaRaaFina$yehThreedotsbelow-ar.medi.BaaRaaFinae-ar.medi.BaaRaaFinanoonghunna-ar.medi.BaaRaaFinayehFarsi-ar.medi.BaaRaaFina#noonTwodotsbelow-ar.medi.BaaRaaFinarreh-ar.fina.BaaRaaFinarehv-ar.fina.BaaRaaFinarehRing-ar.fina.BaaRaaFinarehDotbelow-ar.fina.BaaRaaFinarehVbelow-ar.fina.BaaRaaFina&rehDotbelowdotabove-ar.fina.BaaRaaFinarehTwodots-ar.fina.BaaRaaFinajeh-ar.fina.BaaRaaFinarehFourdots-ar.fina.BaaRaaFinarehStroke-ar.fina.BaaRaaFina$rehVinvertedabove-ar.fina.BaaRaaFinazain-ar.fina.BaaRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFinareh-ar.fina.BaaRaaFina*rehTwodotsverticalabove-ar.fina.BaaRaaFina rehHamzaabove-ar.fina.BaaRaaFina.kehehTwodotshorizontalabove-ar.medi.KafRaaFina&kehehThreedotsbelow-ar.medi.KafRaaFina,kafTwodotshorizontalabove-ar.medi.KafRaaFina(kehehThreedotsupbelow-ar.medi.KafRaaFinakaf-ar.medi.KafRaaFinagafRing-ar.medi.KafRaaFinagueh-ar.medi.KafRaaFina"gafTwodotsbelow-ar.medi.KafRaaFinakafRing-ar.medi.KafRaaFinakafDotabove-ar.medi.KafRaaFinang-ar.medi.KafRaaFina$kafThreedotsbelow-ar.medi.KafRaaFinagaf-ar.medi.KafRaaFinakeheh-ar.medi.KafRaaFinagafThreedots-ar.medi.KafRaaFina&kehehThreedotsabove-ar.medi.KafRaaFina kehehDotabove-ar.medi.KafRaaFinangoeh-ar.medi.KafRaaFinarreh-ar.fina.KafRaaFinarehv-ar.fina.KafRaaFinarehRing-ar.fina.KafRaaFinarehDotbelow-ar.fina.KafRaaFinarehVbelow-ar.fina.KafRaaFina&rehDotbelowdotabove-ar.fina.KafRaaFinarehTwodots-ar.fina.KafRaaFinajeh-ar.fina.KafRaaFinarehFourdots-ar.fina.KafRaaFinarehStroke-ar.fina.KafRaaFina$rehVinvertedabove-ar.fina.KafRaaFinazain-ar.fina.KafRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFinareh-ar.fina.KafRaaFina*rehTwodotsverticalabove-ar.fina.KafRaaFina rehHamzaabove-ar.fina.KafRaaFinalamVabove-ar.init.LamHehInit$lamThreedotsabove-ar.init.LamHehInitlam-ar.init.LamHehInit$lamThreedotsbelow-ar.init.LamHehInitlamDotabove-ar.init.LamHehInitlamBar-ar.init.LamHehInitheh-ar.medi.LamHehInithehgoal-ar.medi.LamHehInitmeem-ar.init.MemHaaMemInitkhah-ar.medi.MemHaaMemInithah-ar.medi.MemHaaMemInit#hahHamzaabove-ar.medi.MemHaaMemInittcheheh-ar.medi.MemHaaMemInit'hahThreedotsabove-ar.medi.MemHaaMemInitjeem-ar.medi.MemHaaMemInit-hahTwodotsverticalabove-ar.medi.MemHaaMemInit/hahTwodotshorizontalabove-ar.medi.MemHaaMemInitdyeh-ar.medi.MemHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit!hahTahbelow-ar.medi.MemHaaMemInitnyeh-ar.medi.MemHaaMemInit#tchehDotabove-ar.medi.MemHaaMemInit"hahFourbelow-ar.medi.MemHaaMemInit)hahThreedotsupbelow-ar.medi.MemHaaMemInit!hahTahabove-ar.medi.MemHaaMemInittcheh-ar.medi.MemHaaMemInit$yehFarsiFourbelow-ar.init.BaaMemInitbeheh-ar.init.BaaMemInit%yehFarsiThreeabove-ar.init.BaaMemInitnoonRing-ar.init.BaaMemInit.behThreedotshorizontalbelow-ar.init.BaaMemInitbehVabove-ar.init.BaaMemInitnoonTahabove-ar.init.BaaMemInityehVabove-ar.init.BaaMemInit#yehFarsiTwoabove-ar.init.BaaMemInit%noonThreedotsabove-ar.init.BaaMemInit yehHamzaabove-ar.init.BaaMemInitbehDotless-ar.init.BaaMemInityehKashmiri-ar.init.BaaMemInityeh-ar.init.BaaMemInitrnoon-ar.init.BaaMemInitteheh-ar.init.BaaMemInit$behVinvertedbelow-ar.init.BaaMemInit#tehThreedotsdown-ar.init.BaaMemInitpeh-ar.init.BaaMemInitbeeh-ar.init.BaaMemInitbeh-ar.init.BaaMemInittteheh-ar.init.BaaMemInit&behThreedotsupabove-ar.init.BaaMemInitnoon-ar.init.BaaMemInit&tehThreedotsupbelow-ar.init.BaaMemInit&behThreedotsupbelow-ar.init.BaaMemInitteh-ar.init.BaaMemInithighhamzaYeh-ar.init.BaaMemInit$yehFarsiVinverted-ar.init.BaaMemInittheh-ar.init.BaaMemInittteh-ar.init.BaaMemInitnoonDotbelow-ar.init.BaaMemInitnoonVabove-ar.init.BaaMemInitalefMaksura-ar.init.BaaMemInittehRing-ar.init.BaaMemInit*behTwodotsbelowDotabove-ar.init.BaaMemInit$yehThreedotsbelow-ar.init.BaaMemInite-ar.init.BaaMemInitnoonghunna-ar.init.BaaMemInityehFarsi-ar.init.BaaMemInit#noonTwodotsbelow-ar.init.BaaMemInitmeem-ar.medi.BaaMemInit sheenDotbelow-ar.init.SenHaaInit+seenTwodotsverticalabove-ar.init.SenHaaInitseen-ar.init.SenHaaInit%seenVinvertedabove-ar.init.SenHaaInit seenFourabove-ar.init.SenHaaInitsheen-ar.init.SenHaaInit0seenTahTwodotshorizontalabove-ar.init.SenHaaInit$seenFourdotsabove-ar.init.SenHaaInit'seenDotbelowDotabove-ar.init.SenHaaInit%seenThreedotsbelow-ar.init.SenHaaInit&sheenThreedotsbelow-ar.init.SenHaaInit.kehehTwodotshorizontalabove-ar.init.KafRaaIsol&kehehThreedotsbelow-ar.init.KafRaaIsol,kafTwodotshorizontalabove-ar.init.KafRaaIsol(kehehThreedotsupbelow-ar.init.KafRaaIsolkaf-ar.init.KafRaaIsolgafRing-ar.init.KafRaaIsolgueh-ar.init.KafRaaIsol"gafTwodotsbelow-ar.init.KafRaaIsolkafRing-ar.init.KafRaaIsolkafDotabove-ar.init.KafRaaIsolng-ar.init.KafRaaIsol$kafThreedotsbelow-ar.init.KafRaaIsolgaf-ar.init.KafRaaIsolkeheh-ar.init.KafRaaIsolgafThreedots-ar.init.KafRaaIsol&kehehThreedotsabove-ar.init.KafRaaIsol kehehDotabove-ar.init.KafRaaIsolngoeh-ar.init.KafRaaIsolrreh-ar.fina.KafRaaIsolrehv-ar.fina.KafRaaIsolrehRing-ar.fina.KafRaaIsolrehDotbelow-ar.fina.KafRaaIsolrehVbelow-ar.fina.KafRaaIsol&rehDotbelowdotabove-ar.fina.KafRaaIsolrehTwodots-ar.fina.KafRaaIsoljeh-ar.fina.KafRaaIsolrehFourdots-ar.fina.KafRaaIsolrehStroke-ar.fina.KafRaaIsol$rehVinvertedabove-ar.fina.KafRaaIsolzain-ar.fina.KafRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsolreh-ar.fina.KafRaaIsol*rehTwodotsverticalabove-ar.fina.KafRaaIsol rehHamzaabove-ar.fina.KafRaaIsol ghainDotbelow-ar.init.AynHaaInitghain-ar.init.AynHaaInit(ainThreedotsdownabove-ar.init.AynHaaInit,ainTwodotshorizontalabove-ar.init.AynHaaInit*ainTwodotsverticalabove-ar.init.AynHaaInitainThreedots-ar.init.AynHaaInitain-ar.init.AynHaaInit.kehehTwodotshorizontalabove-ar.medi.KafYaaFina&kehehThreedotsbelow-ar.medi.KafYaaFina,kafTwodotshorizontalabove-ar.medi.KafYaaFina(kehehThreedotsupbelow-ar.medi.KafYaaFinakaf-ar.medi.KafYaaFinagafRing-ar.medi.KafYaaFinagueh-ar.medi.KafYaaFina"gafTwodotsbelow-ar.medi.KafYaaFinakafRing-ar.medi.KafYaaFinakafDotabove-ar.medi.KafYaaFinang-ar.medi.KafYaaFina$kafThreedotsbelow-ar.medi.KafYaaFinagaf-ar.medi.KafYaaFinakeheh-ar.medi.KafYaaFinagafThreedots-ar.medi.KafYaaFina&kehehThreedotsabove-ar.medi.KafYaaFina kehehDotabove-ar.medi.KafYaaFinangoeh-ar.medi.KafYaaFina$yehFarsiFourbelow-ar.fina.KafYaaFina$yehThreedotsbelow-ar.fina.KafYaaFina#yehFarsiTwoabove-ar.fina.KafYaaFina)yehFarsiThreedotsabove-ar.fina.KafYaaFina$yehFarsiVinverted-ar.fina.KafYaaFina'yehFarsiTwodotsabove-ar.fina.KafYaaFinae-ar.fina.KafYaaFinaalefMaksura-ar.fina.KafYaaFina%yehFarsiThreeabove-ar.fina.KafYaaFinayehTail-ar.fina.KafYaaFinayehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFinayehKashmiri-ar.fina.KafYaaFinayeh-ar.fina.KafYaaFinayehVabove-ar.fina.KafYaaFinalamVabove-ar.init.LamMemHaaInit'lamThreedotsabove-ar.init.LamMemHaaInitlam-ar.init.LamMemHaaInit'lamThreedotsbelow-ar.init.LamMemHaaInit!lamDotabove-ar.init.LamMemHaaInitlamBar-ar.init.LamMemHaaInitmeem-ar.medi.LamMemHaaInitkhah-ar.medi.LamMemHaaInithah-ar.medi.LamMemHaaInit#hahHamzaabove-ar.medi.LamMemHaaInittcheheh-ar.medi.LamMemHaaInit'hahThreedotsabove-ar.medi.LamMemHaaInitjeem-ar.medi.LamMemHaaInit-hahTwodotsverticalabove-ar.medi.LamMemHaaInit/hahTwodotshorizontalabove-ar.medi.LamMemHaaInitdyeh-ar.medi.LamMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit!hahTahbelow-ar.medi.LamMemHaaInitnyeh-ar.medi.LamMemHaaInit#tchehDotabove-ar.medi.LamMemHaaInit"hahFourbelow-ar.medi.LamMemHaaInit)hahThreedotsupbelow-ar.medi.LamMemHaaInit!hahTahabove-ar.medi.LamMemHaaInittcheh-ar.medi.LamMemHaaInitlamVabove-ar.medi.LamAlfFina$lamThreedotsabove-ar.medi.LamAlfFinalam-ar.medi.LamAlfFina$lamThreedotsbelow-ar.medi.LamAlfFinalamDotabove-ar.medi.LamAlfFinalamBar-ar.medi.LamAlfFina!alefHamzabelow-ar.fina.LamAlfFinaalef-ar.fina.LamAlfFina!alefThreeabove-ar.fina.LamAlfFinaalefTwoabove-ar.fina.LamAlfFina!alefHamzaabove-ar.fina.LamAlfFinaalefMadda-ar.fina.LamAlfFina%alefWavyhamzaabove-ar.fina.LamAlfFina%alefWavyhamzabelow-ar.fina.LamAlfFinaalefWasla-ar.fina.LamAlfFinalamVabove-ar.medi.LamMemMedi$lamThreedotsabove-ar.medi.LamMemMedilam-ar.medi.LamMemMedi$lamThreedotsbelow-ar.medi.LamMemMedilamDotabove-ar.medi.LamMemMedilamBar-ar.medi.LamMemMedimeemDotabove-ar.medi.LamMemMedimeem-ar.medi.LamMemMedimeemDotbelow-ar.medi.LamMemMedi'yehFarsiFourbelow-ar.init.BaaBaaHaaInitbeheh-ar.init.BaaBaaHaaInit(yehFarsiThreeabove-ar.init.BaaBaaHaaInitnoonRing-ar.init.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitbehVabove-ar.init.BaaBaaHaaInit"noonTahabove-ar.init.BaaBaaHaaInityehVabove-ar.init.BaaBaaHaaInit&yehFarsiTwoabove-ar.init.BaaBaaHaaInit(noonThreedotsabove-ar.init.BaaBaaHaaInit#yehHamzaabove-ar.init.BaaBaaHaaInit behDotless-ar.init.BaaBaaHaaInit!yehKashmiri-ar.init.BaaBaaHaaInityeh-ar.init.BaaBaaHaaInitrnoon-ar.init.BaaBaaHaaInitteheh-ar.init.BaaBaaHaaInit'behVinvertedbelow-ar.init.BaaBaaHaaInit&tehThreedotsdown-ar.init.BaaBaaHaaInitpeh-ar.init.BaaBaaHaaInitbeeh-ar.init.BaaBaaHaaInitbeh-ar.init.BaaBaaHaaInittteheh-ar.init.BaaBaaHaaInit)behThreedotsupabove-ar.init.BaaBaaHaaInitnoon-ar.init.BaaBaaHaaInit)tehThreedotsupbelow-ar.init.BaaBaaHaaInit)behThreedotsupbelow-ar.init.BaaBaaHaaInitteh-ar.init.BaaBaaHaaInit"highhamzaYeh-ar.init.BaaBaaHaaInit'yehFarsiVinverted-ar.init.BaaBaaHaaInittheh-ar.init.BaaBaaHaaInittteh-ar.init.BaaBaaHaaInit"noonDotbelow-ar.init.BaaBaaHaaInit noonVabove-ar.init.BaaBaaHaaInit!alefMaksura-ar.init.BaaBaaHaaInittehRing-ar.init.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit'yehThreedotsbelow-ar.init.BaaBaaHaaInite-ar.init.BaaBaaHaaInit noonghunna-ar.init.BaaBaaHaaInityehFarsi-ar.init.BaaBaaHaaInit&noonTwodotsbelow-ar.init.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.BaaBaaHaaInitbeheh-ar.medi.BaaBaaHaaInit(yehFarsiThreeabove-ar.medi.BaaBaaHaaInitnoonRing-ar.medi.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInitbehVabove-ar.medi.BaaBaaHaaInit"noonTahabove-ar.medi.BaaBaaHaaInityehVabove-ar.medi.BaaBaaHaaInit&yehFarsiTwoabove-ar.medi.BaaBaaHaaInit(noonThreedotsabove-ar.medi.BaaBaaHaaInit#yehHamzaabove-ar.medi.BaaBaaHaaInit behDotless-ar.medi.BaaBaaHaaInit!yehKashmiri-ar.medi.BaaBaaHaaInityeh-ar.medi.BaaBaaHaaInitrnoon-ar.medi.BaaBaaHaaInitteheh-ar.medi.BaaBaaHaaInit'behVinvertedbelow-ar.medi.BaaBaaHaaInit&tehThreedotsdown-ar.medi.BaaBaaHaaInitpeh-ar.medi.BaaBaaHaaInitbeeh-ar.medi.BaaBaaHaaInitbeh-ar.medi.BaaBaaHaaInittteheh-ar.medi.BaaBaaHaaInit)behThreedotsupabove-ar.medi.BaaBaaHaaInitnoon-ar.medi.BaaBaaHaaInit)tehThreedotsupbelow-ar.medi.BaaBaaHaaInit)behThreedotsupbelow-ar.medi.BaaBaaHaaInitteh-ar.medi.BaaBaaHaaInit'yehFarsiVinverted-ar.medi.BaaBaaHaaInittheh-ar.medi.BaaBaaHaaInittteh-ar.medi.BaaBaaHaaInit"noonDotbelow-ar.medi.BaaBaaHaaInit noonVabove-ar.medi.BaaBaaHaaInit!alefMaksura-ar.medi.BaaBaaHaaInittehRing-ar.medi.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit'yehThreedotsbelow-ar.medi.BaaBaaHaaInite-ar.medi.BaaBaaHaaInit noonghunna-ar.medi.BaaBaaHaaInityehFarsi-ar.medi.BaaBaaHaaInit&noonTwodotsbelow-ar.medi.BaaBaaHaaInitkhah-ar.medi.BaaBaaHaaInithah-ar.medi.BaaBaaHaaInit#hahHamzaabove-ar.medi.BaaBaaHaaInittcheheh-ar.medi.BaaBaaHaaInit'hahThreedotsabove-ar.medi.BaaBaaHaaInitjeem-ar.medi.BaaBaaHaaInit-hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit/hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInitdyeh-ar.medi.BaaBaaHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit!hahTahbelow-ar.medi.BaaBaaHaaInitnyeh-ar.medi.BaaBaaHaaInit#tchehDotabove-ar.medi.BaaBaaHaaInit"hahFourbelow-ar.medi.BaaBaaHaaInit)hahThreedotsupbelow-ar.medi.BaaBaaHaaInit!hahTahabove-ar.medi.BaaBaaHaaInittcheh-ar.medi.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.SenBaaMemInitbeheh-ar.medi.SenBaaMemInit(yehFarsiThreeabove-ar.medi.SenBaaMemInitnoonRing-ar.medi.SenBaaMemInit1behThreedotshorizontalbelow-ar.medi.SenBaaMemInitbehVabove-ar.medi.SenBaaMemInit"noonTahabove-ar.medi.SenBaaMemInityehVabove-ar.medi.SenBaaMemInit&yehFarsiTwoabove-ar.medi.SenBaaMemInit(noonThreedotsabove-ar.medi.SenBaaMemInit#yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInit!yehKashmiri-ar.medi.SenBaaMemInityeh-ar.medi.SenBaaMemInitrnoon-ar.medi.SenBaaMemInitteheh-ar.medi.SenBaaMemInit'behVinvertedbelow-ar.medi.SenBaaMemInit&tehThreedotsdown-ar.medi.SenBaaMemInitpeh-ar.medi.SenBaaMemInitbeeh-ar.medi.SenBaaMemInitbeh-ar.medi.SenBaaMemInittteheh-ar.medi.SenBaaMemInit)behThreedotsupabove-ar.medi.SenBaaMemInitnoon-ar.medi.SenBaaMemInit)tehThreedotsupbelow-ar.medi.SenBaaMemInit)behThreedotsupbelow-ar.medi.SenBaaMemInitteh-ar.medi.SenBaaMemInit'yehFarsiVinverted-ar.medi.SenBaaMemInittheh-ar.medi.SenBaaMemInittteh-ar.medi.SenBaaMemInit"noonDotbelow-ar.medi.SenBaaMemInit noonVabove-ar.medi.SenBaaMemInit!alefMaksura-ar.medi.SenBaaMemInittehRing-ar.medi.SenBaaMemInit-behTwodotsbelowDotabove-ar.medi.SenBaaMemInit'yehThreedotsbelow-ar.medi.SenBaaMemInite-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInityehFarsi-ar.medi.SenBaaMemInit&noonTwodotsbelow-ar.medi.SenBaaMemInitmeem-ar.medi.SenBaaMemInit$yehFarsiFourbelow-ar.init.BaaBaaIsolbeheh-ar.init.BaaBaaIsol%yehFarsiThreeabove-ar.init.BaaBaaIsolnoonRing-ar.init.BaaBaaIsol.behThreedotshorizontalbelow-ar.init.BaaBaaIsolbehVabove-ar.init.BaaBaaIsolnoonTahabove-ar.init.BaaBaaIsolyehVabove-ar.init.BaaBaaIsol#yehFarsiTwoabove-ar.init.BaaBaaIsol%noonThreedotsabove-ar.init.BaaBaaIsol yehHamzaabove-ar.init.BaaBaaIsolbehDotless-ar.init.BaaBaaIsolyehKashmiri-ar.init.BaaBaaIsolyeh-ar.init.BaaBaaIsolrnoon-ar.init.BaaBaaIsolteheh-ar.init.BaaBaaIsol$behVinvertedbelow-ar.init.BaaBaaIsol#tehThreedotsdown-ar.init.BaaBaaIsolpeh-ar.init.BaaBaaIsolbeeh-ar.init.BaaBaaIsolbeh-ar.init.BaaBaaIsoltteheh-ar.init.BaaBaaIsol&behThreedotsupabove-ar.init.BaaBaaIsolnoon-ar.init.BaaBaaIsol&tehThreedotsupbelow-ar.init.BaaBaaIsol&behThreedotsupbelow-ar.init.BaaBaaIsolteh-ar.init.BaaBaaIsolhighhamzaYeh-ar.init.BaaBaaIsol$yehFarsiVinverted-ar.init.BaaBaaIsoltheh-ar.init.BaaBaaIsoltteh-ar.init.BaaBaaIsolnoonDotbelow-ar.init.BaaBaaIsolnoonVabove-ar.init.BaaBaaIsolalefMaksura-ar.init.BaaBaaIsoltehRing-ar.init.BaaBaaIsol*behTwodotsbelowDotabove-ar.init.BaaBaaIsol$yehThreedotsbelow-ar.init.BaaBaaIsole-ar.init.BaaBaaIsolnoonghunna-ar.init.BaaBaaIsolyehFarsi-ar.init.BaaBaaIsol#noonTwodotsbelow-ar.init.BaaBaaIsol&behThreedotsupabove-ar.fina.BaaBaaIsol.behThreedotshorizontalbelow-ar.fina.BaaBaaIsol&tehThreedotsupbelow-ar.fina.BaaBaaIsolbeheh-ar.fina.BaaBaaIsolteh-ar.fina.BaaBaaIsol*behTwodotsbelowDotabove-ar.fina.BaaBaaIsoltheh-ar.fina.BaaBaaIsoltteh-ar.fina.BaaBaaIsoltehRing-ar.fina.BaaBaaIsolbehVabove-ar.fina.BaaBaaIsol&behThreedotsupbelow-ar.fina.BaaBaaIsolbehDotless-ar.fina.BaaBaaIsolteheh-ar.fina.BaaBaaIsol$behVinvertedbelow-ar.fina.BaaBaaIsol#tehThreedotsdown-ar.fina.BaaBaaIsolpeh-ar.fina.BaaBaaIsolbeeh-ar.fina.BaaBaaIsolbeh-ar.fina.BaaBaaIsoltteheh-ar.fina.BaaBaaIsol'yehFarsiFourbelow-ar.init.BaaBaaMemInitbeheh-ar.init.BaaBaaMemInit(yehFarsiThreeabove-ar.init.BaaBaaMemInitnoonRing-ar.init.BaaBaaMemInit1behThreedotshorizontalbelow-ar.init.BaaBaaMemInitbehVabove-ar.init.BaaBaaMemInit"noonTahabove-ar.init.BaaBaaMemInityehVabove-ar.init.BaaBaaMemInit&yehFarsiTwoabove-ar.init.BaaBaaMemInit(noonThreedotsabove-ar.init.BaaBaaMemInit#yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInit!yehKashmiri-ar.init.BaaBaaMemInityeh-ar.init.BaaBaaMemInitrnoon-ar.init.BaaBaaMemInitteheh-ar.init.BaaBaaMemInit'behVinvertedbelow-ar.init.BaaBaaMemInit&tehThreedotsdown-ar.init.BaaBaaMemInitpeh-ar.init.BaaBaaMemInitbeeh-ar.init.BaaBaaMemInitbeh-ar.init.BaaBaaMemInittteheh-ar.init.BaaBaaMemInit)behThreedotsupabove-ar.init.BaaBaaMemInitnoon-ar.init.BaaBaaMemInit)tehThreedotsupbelow-ar.init.BaaBaaMemInit)behThreedotsupbelow-ar.init.BaaBaaMemInitteh-ar.init.BaaBaaMemInit"highhamzaYeh-ar.init.BaaBaaMemInit'yehFarsiVinverted-ar.init.BaaBaaMemInittheh-ar.init.BaaBaaMemInittteh-ar.init.BaaBaaMemInit"noonDotbelow-ar.init.BaaBaaMemInit noonVabove-ar.init.BaaBaaMemInit!alefMaksura-ar.init.BaaBaaMemInittehRing-ar.init.BaaBaaMemInit-behTwodotsbelowDotabove-ar.init.BaaBaaMemInit'yehThreedotsbelow-ar.init.BaaBaaMemInite-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInityehFarsi-ar.init.BaaBaaMemInit&noonTwodotsbelow-ar.init.BaaBaaMemInit'yehFarsiFourbelow-ar.medi.BaaBaaMemInitbeheh-ar.medi.BaaBaaMemInit(yehFarsiThreeabove-ar.medi.BaaBaaMemInitnoonRing-ar.medi.BaaBaaMemInit1behThreedotshorizontalbelow-ar.medi.BaaBaaMemInitbehVabove-ar.medi.BaaBaaMemInit"noonTahabove-ar.medi.BaaBaaMemInityehVabove-ar.medi.BaaBaaMemInit&yehFarsiTwoabove-ar.medi.BaaBaaMemInit(noonThreedotsabove-ar.medi.BaaBaaMemInit#yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInit!yehKashmiri-ar.medi.BaaBaaMemInityeh-ar.medi.BaaBaaMemInitrnoon-ar.medi.BaaBaaMemInitteheh-ar.medi.BaaBaaMemInit'behVinvertedbelow-ar.medi.BaaBaaMemInit&tehThreedotsdown-ar.medi.BaaBaaMemInitpeh-ar.medi.BaaBaaMemInitbeeh-ar.medi.BaaBaaMemInitbeh-ar.medi.BaaBaaMemInittteheh-ar.medi.BaaBaaMemInit)behThreedotsupabove-ar.medi.BaaBaaMemInitnoon-ar.medi.BaaBaaMemInit)tehThreedotsupbelow-ar.medi.BaaBaaMemInit)behThreedotsupbelow-ar.medi.BaaBaaMemInitteh-ar.medi.BaaBaaMemInit'yehFarsiVinverted-ar.medi.BaaBaaMemInittheh-ar.medi.BaaBaaMemInittteh-ar.medi.BaaBaaMemInit"noonDotbelow-ar.medi.BaaBaaMemInit noonVabove-ar.medi.BaaBaaMemInit!alefMaksura-ar.medi.BaaBaaMemInittehRing-ar.medi.BaaBaaMemInit-behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit'yehThreedotsbelow-ar.medi.BaaBaaMemInite-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInityehFarsi-ar.medi.BaaBaaMemInit&noonTwodotsbelow-ar.medi.BaaBaaMemInitmeem-ar.medi.BaaBaaMemInit.kehehTwodotshorizontalabove-ar.medi.KafBaaMedi&kehehThreedotsbelow-ar.medi.KafBaaMedi,kafTwodotshorizontalabove-ar.medi.KafBaaMedi(kehehThreedotsupbelow-ar.medi.KafBaaMedikaf-ar.medi.KafBaaMedigafRing-ar.medi.KafBaaMedigueh-ar.medi.KafBaaMedi"gafTwodotsbelow-ar.medi.KafBaaMedikafRing-ar.medi.KafBaaMedikafDotabove-ar.medi.KafBaaMeding-ar.medi.KafBaaMedi$kafThreedotsbelow-ar.medi.KafBaaMedigaf-ar.medi.KafBaaMedikeheh-ar.medi.KafBaaMedigafThreedots-ar.medi.KafBaaMedi&kehehThreedotsabove-ar.medi.KafBaaMedi kehehDotabove-ar.medi.KafBaaMedingoeh-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.KafBaaMedibeheh-ar.medi.KafBaaMedi%yehFarsiThreeabove-ar.medi.KafBaaMedinoonRing-ar.medi.KafBaaMedi.behThreedotshorizontalbelow-ar.medi.KafBaaMedibehVabove-ar.medi.KafBaaMedinoonTahabove-ar.medi.KafBaaMediyehVabove-ar.medi.KafBaaMedi#yehFarsiTwoabove-ar.medi.KafBaaMedi%noonThreedotsabove-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedibehDotless-ar.medi.KafBaaMediyehKashmiri-ar.medi.KafBaaMediyeh-ar.medi.KafBaaMedirnoon-ar.medi.KafBaaMediteheh-ar.medi.KafBaaMedi$behVinvertedbelow-ar.medi.KafBaaMedi#tehThreedotsdown-ar.medi.KafBaaMedipeh-ar.medi.KafBaaMedibeeh-ar.medi.KafBaaMedibeh-ar.medi.KafBaaMeditteheh-ar.medi.KafBaaMedi&behThreedotsupabove-ar.medi.KafBaaMedinoon-ar.medi.KafBaaMedi&tehThreedotsupbelow-ar.medi.KafBaaMedi&behThreedotsupbelow-ar.medi.KafBaaMediteh-ar.medi.KafBaaMedi$yehFarsiVinverted-ar.medi.KafBaaMeditheh-ar.medi.KafBaaMeditteh-ar.medi.KafBaaMedinoonDotbelow-ar.medi.KafBaaMedinoonVabove-ar.medi.KafBaaMedialefMaksura-ar.medi.KafBaaMeditehRing-ar.medi.KafBaaMedi*behTwodotsbelowDotabove-ar.medi.KafBaaMedi$yehThreedotsbelow-ar.medi.KafBaaMedie-ar.medi.KafBaaMedinoonghunna-ar.medi.KafBaaMediyehFarsi-ar.medi.KafBaaMedi#noonTwodotsbelow-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.BaaNonFinabeheh-ar.medi.BaaNonFina%yehFarsiThreeabove-ar.medi.BaaNonFinanoonRing-ar.medi.BaaNonFina.behThreedotshorizontalbelow-ar.medi.BaaNonFinabehVabove-ar.medi.BaaNonFinanoonTahabove-ar.medi.BaaNonFinayehVabove-ar.medi.BaaNonFina#yehFarsiTwoabove-ar.medi.BaaNonFina%noonThreedotsabove-ar.medi.BaaNonFina yehHamzaabove-ar.medi.BaaNonFinabehDotless-ar.medi.BaaNonFinayehKashmiri-ar.medi.BaaNonFinayeh-ar.medi.BaaNonFinarnoon-ar.medi.BaaNonFinateheh-ar.medi.BaaNonFina$behVinvertedbelow-ar.medi.BaaNonFina#tehThreedotsdown-ar.medi.BaaNonFinapeh-ar.medi.BaaNonFinabeeh-ar.medi.BaaNonFinabeh-ar.medi.BaaNonFinatteheh-ar.medi.BaaNonFina&behThreedotsupabove-ar.medi.BaaNonFinanoon-ar.medi.BaaNonFina&tehThreedotsupbelow-ar.medi.BaaNonFina&behThreedotsupbelow-ar.medi.BaaNonFinateh-ar.medi.BaaNonFina$yehFarsiVinverted-ar.medi.BaaNonFinatheh-ar.medi.BaaNonFinatteh-ar.medi.BaaNonFinanoonDotbelow-ar.medi.BaaNonFinanoonVabove-ar.medi.BaaNonFinaalefMaksura-ar.medi.BaaNonFinatehRing-ar.medi.BaaNonFina*behTwodotsbelowDotabove-ar.medi.BaaNonFina$yehThreedotsbelow-ar.medi.BaaNonFinae-ar.medi.BaaNonFinanoonghunna-ar.medi.BaaNonFinayehFarsi-ar.medi.BaaNonFina#noonTwodotsbelow-ar.medi.BaaNonFinanoon-ar.fina.BaaNonFina#noonTwodotsbelow-ar.fina.BaaNonFinanoonghunna-ar.fina.BaaNonFinanoonRing-ar.fina.BaaNonFinarnoon-ar.fina.BaaNonFinanoonTahabove-ar.fina.BaaNonFinanoonDotbelow-ar.fina.BaaNonFinanoonVabove-ar.fina.BaaNonFina%noonThreedotsabove-ar.fina.BaaNonFinakhah-ar.init.HaaRaaIsolhah-ar.init.HaaRaaIsol hahHamzaabove-ar.init.HaaRaaIsoltcheheh-ar.init.HaaRaaIsol$hahThreedotsabove-ar.init.HaaRaaIsoljeem-ar.init.HaaRaaIsol*hahTwodotsverticalabove-ar.init.HaaRaaIsol,hahTwodotshorizontalabove-ar.init.HaaRaaIsoldyeh-ar.init.HaaRaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaRaaIsolhahTahbelow-ar.init.HaaRaaIsolnyeh-ar.init.HaaRaaIsol tchehDotabove-ar.init.HaaRaaIsolhahFourbelow-ar.init.HaaRaaIsol&hahThreedotsupbelow-ar.init.HaaRaaIsolhahTahabove-ar.init.HaaRaaIsoltcheh-ar.init.HaaRaaIsolrreh-ar.fina.HaaRaaIsolrehv-ar.fina.HaaRaaIsolrehRing-ar.fina.HaaRaaIsolrehDotbelow-ar.fina.HaaRaaIsolrehVbelow-ar.fina.HaaRaaIsol&rehDotbelowdotabove-ar.fina.HaaRaaIsolrehTwodots-ar.fina.HaaRaaIsoljeh-ar.fina.HaaRaaIsolrehFourdots-ar.fina.HaaRaaIsolrehStroke-ar.fina.HaaRaaIsol$rehVinvertedabove-ar.fina.HaaRaaIsolzain-ar.fina.HaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsolreh-ar.fina.HaaRaaIsol*rehTwodotsverticalabove-ar.fina.HaaRaaIsol rehHamzaabove-ar.fina.HaaRaaIsolheh-ar.init.HehHaaInithehgoal-ar.init.HehHaaInitlamVabove-ar.init.LamRaaIsol$lamThreedotsabove-ar.init.LamRaaIsollam-ar.init.LamRaaIsol$lamThreedotsbelow-ar.init.LamRaaIsollamDotabove-ar.init.LamRaaIsollamBar-ar.init.LamRaaIsolrreh-ar.fina.LamRaaIsolrehv-ar.fina.LamRaaIsolrehRing-ar.fina.LamRaaIsolrehDotbelow-ar.fina.LamRaaIsolrehVbelow-ar.fina.LamRaaIsol&rehDotbelowdotabove-ar.fina.LamRaaIsolrehTwodots-ar.fina.LamRaaIsoljeh-ar.fina.LamRaaIsolrehFourdots-ar.fina.LamRaaIsolrehStroke-ar.fina.LamRaaIsol$rehVinvertedabove-ar.fina.LamRaaIsolzain-ar.fina.LamRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsolreh-ar.fina.LamRaaIsol*rehTwodotsverticalabove-ar.fina.LamRaaIsol rehHamzaabove-ar.fina.LamRaaIsol"sadTwodotsbelow-ar.init.SadHaaInitdadDotbelow-ar.init.SadHaaInitdad-ar.init.SadHaaInitsadThreedots-ar.init.SadHaaInitsad-ar.init.SadHaaInitkhah-ar.medi.SadHaaInithah-ar.medi.SadHaaInit hahHamzaabove-ar.medi.SadHaaInittcheheh-ar.medi.SadHaaInit$hahThreedotsabove-ar.medi.SadHaaInitjeem-ar.medi.SadHaaInit*hahTwodotsverticalabove-ar.medi.SadHaaInit,hahTwodotshorizontalabove-ar.medi.SadHaaInitdyeh-ar.medi.SadHaaInit/hahTahTwodotshorizontalabove-ar.medi.SadHaaInithahTahbelow-ar.medi.SadHaaInitnyeh-ar.medi.SadHaaInit tchehDotabove-ar.medi.SadHaaInithahFourbelow-ar.medi.SadHaaInit&hahThreedotsupbelow-ar.medi.SadHaaInithahTahabove-ar.medi.SadHaaInittcheh-ar.medi.SadHaaInit$yehFarsiFourbelow-ar.medi.BaaYaaFinabeheh-ar.medi.BaaYaaFina%yehFarsiThreeabove-ar.medi.BaaYaaFinanoonRing-ar.medi.BaaYaaFina.behThreedotshorizontalbelow-ar.medi.BaaYaaFinabehVabove-ar.medi.BaaYaaFinanoonTahabove-ar.medi.BaaYaaFinayehVabove-ar.medi.BaaYaaFina#yehFarsiTwoabove-ar.medi.BaaYaaFina%noonThreedotsabove-ar.medi.BaaYaaFina yehHamzaabove-ar.medi.BaaYaaFinabehDotless-ar.medi.BaaYaaFinayehKashmiri-ar.medi.BaaYaaFinayeh-ar.medi.BaaYaaFinarnoon-ar.medi.BaaYaaFinateheh-ar.medi.BaaYaaFina$behVinvertedbelow-ar.medi.BaaYaaFina#tehThreedotsdown-ar.medi.BaaYaaFinapeh-ar.medi.BaaYaaFinabeeh-ar.medi.BaaYaaFinabeh-ar.medi.BaaYaaFinatteheh-ar.medi.BaaYaaFina&behThreedotsupabove-ar.medi.BaaYaaFinanoon-ar.medi.BaaYaaFina&tehThreedotsupbelow-ar.medi.BaaYaaFina&behThreedotsupbelow-ar.medi.BaaYaaFinateh-ar.medi.BaaYaaFina$yehFarsiVinverted-ar.medi.BaaYaaFinatheh-ar.medi.BaaYaaFinatteh-ar.medi.BaaYaaFinanoonDotbelow-ar.medi.BaaYaaFinanoonVabove-ar.medi.BaaYaaFinaalefMaksura-ar.medi.BaaYaaFinatehRing-ar.medi.BaaYaaFina*behTwodotsbelowDotabove-ar.medi.BaaYaaFina$yehThreedotsbelow-ar.medi.BaaYaaFinae-ar.medi.BaaYaaFinanoonghunna-ar.medi.BaaYaaFinayehFarsi-ar.medi.BaaYaaFina#noonTwodotsbelow-ar.medi.BaaYaaFina$yehFarsiFourbelow-ar.fina.BaaYaaFina$yehThreedotsbelow-ar.fina.BaaYaaFina#yehFarsiTwoabove-ar.fina.BaaYaaFina)yehFarsiThreedotsabove-ar.fina.BaaYaaFina$yehFarsiVinverted-ar.fina.BaaYaaFina'yehFarsiTwodotsabove-ar.fina.BaaYaaFinae-ar.fina.BaaYaaFinaalefMaksura-ar.fina.BaaYaaFina%yehFarsiThreeabove-ar.fina.BaaYaaFinayehTail-ar.fina.BaaYaaFinayehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFinayehKashmiri-ar.fina.BaaYaaFinayeh-ar.fina.BaaYaaFinayehVabove-ar.fina.BaaYaaFina'yehFarsiFourbelow-ar.init.BaaSenAltInitbeheh-ar.init.BaaSenAltInit(yehFarsiThreeabove-ar.init.BaaSenAltInitnoonRing-ar.init.BaaSenAltInit1behThreedotshorizontalbelow-ar.init.BaaSenAltInitbehVabove-ar.init.BaaSenAltInit"noonTahabove-ar.init.BaaSenAltInityehVabove-ar.init.BaaSenAltInit&yehFarsiTwoabove-ar.init.BaaSenAltInit(noonThreedotsabove-ar.init.BaaSenAltInit#yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInit!yehKashmiri-ar.init.BaaSenAltInityeh-ar.init.BaaSenAltInitrnoon-ar.init.BaaSenAltInitteheh-ar.init.BaaSenAltInit'behVinvertedbelow-ar.init.BaaSenAltInit&tehThreedotsdown-ar.init.BaaSenAltInitpeh-ar.init.BaaSenAltInitbeeh-ar.init.BaaSenAltInitbeh-ar.init.BaaSenAltInittteheh-ar.init.BaaSenAltInit)behThreedotsupabove-ar.init.BaaSenAltInitnoon-ar.init.BaaSenAltInit)tehThreedotsupbelow-ar.init.BaaSenAltInit)behThreedotsupbelow-ar.init.BaaSenAltInitteh-ar.init.BaaSenAltInit"highhamzaYeh-ar.init.BaaSenAltInit'yehFarsiVinverted-ar.init.BaaSenAltInittheh-ar.init.BaaSenAltInittteh-ar.init.BaaSenAltInit"noonDotbelow-ar.init.BaaSenAltInit noonVabove-ar.init.BaaSenAltInit!alefMaksura-ar.init.BaaSenAltInittehRing-ar.init.BaaSenAltInit-behTwodotsbelowDotabove-ar.init.BaaSenAltInit'yehThreedotsbelow-ar.init.BaaSenAltInite-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInityehFarsi-ar.init.BaaSenAltInit&noonTwodotsbelow-ar.init.BaaSenAltInit#sheenDotbelow-ar.medi.BaaSenAltInit.seenTwodotsverticalabove-ar.medi.BaaSenAltInitseen-ar.medi.BaaSenAltInit(seenVinvertedabove-ar.medi.BaaSenAltInit#seenFourabove-ar.medi.BaaSenAltInitsheen-ar.medi.BaaSenAltInit3seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit'seenFourdotsabove-ar.medi.BaaSenAltInit*seenDotbelowDotabove-ar.medi.BaaSenAltInit(seenThreedotsbelow-ar.medi.BaaSenAltInit)sheenThreedotsbelow-ar.medi.BaaSenAltInitrreh-ar.fina.PostToothrehv-ar.fina.PostToothrehRing-ar.fina.PostToothrehDotbelow-ar.fina.PostToothrehVbelow-ar.fina.PostTooth%rehDotbelowdotabove-ar.fina.PostToothrehTwodots-ar.fina.PostToothjeh-ar.fina.PostToothrehFourdots-ar.fina.PostToothrehStroke-ar.fina.PostTooth#rehVinvertedabove-ar.fina.PostToothzain-ar.fina.PostTooth3rehTwodotshorizontalaboveTahabove-ar.fina.PostToothreh-ar.fina.PostTooth)rehTwodotsverticalabove-ar.fina.PostToothrehHamzaabove-ar.fina.PostTooth#yehFarsiFourbelow-ar.fina.PostTooth#yehThreedotsbelow-ar.fina.PostTooth"yehFarsiTwoabove-ar.fina.PostTooth(yehFarsiThreedotsabove-ar.fina.PostTooth#yehFarsiVinverted-ar.fina.PostTooth&yehFarsiTwodotsabove-ar.fina.PostToothe-ar.fina.PostToothalefMaksura-ar.fina.PostTooth$yehFarsiThreeabove-ar.fina.PostToothyehTail-ar.fina.PostToothyehFarsi-ar.fina.PostToothyehHamzaabove-ar.fina.PostToothyehKashmiri-ar.fina.PostToothyeh-ar.fina.PostToothyehVabove-ar.fina.PostTooth"yehFarsiFourbelow-ar.init.AboveHaabeheh-ar.init.AboveHaa#yehFarsiThreeabove-ar.init.AboveHaanoonRing-ar.init.AboveHaa,behThreedotshorizontalbelow-ar.init.AboveHaabehVabove-ar.init.AboveHaanoonTahabove-ar.init.AboveHaayehVabove-ar.init.AboveHaa!yehFarsiTwoabove-ar.init.AboveHaa#noonThreedotsabove-ar.init.AboveHaayehHamzaabove-ar.init.AboveHaabehDotless-ar.init.AboveHaayehKashmiri-ar.init.AboveHaayeh-ar.init.AboveHaarnoon-ar.init.AboveHaateheh-ar.init.AboveHaa"behVinvertedbelow-ar.init.AboveHaa!tehThreedotsdown-ar.init.AboveHaapeh-ar.init.AboveHaabeeh-ar.init.AboveHaabeh-ar.init.AboveHaatteheh-ar.init.AboveHaa$behThreedotsupabove-ar.init.AboveHaanoon-ar.init.AboveHaa$tehThreedotsupbelow-ar.init.AboveHaa$behThreedotsupbelow-ar.init.AboveHaateh-ar.init.AboveHaahighhamzaYeh-ar.init.AboveHaa"yehFarsiVinverted-ar.init.AboveHaatheh-ar.init.AboveHaatteh-ar.init.AboveHaanoonDotbelow-ar.init.AboveHaanoonVabove-ar.init.AboveHaaalefMaksura-ar.init.AboveHaatehRing-ar.init.AboveHaa(behTwodotsbelowDotabove-ar.init.AboveHaa"yehThreedotsbelow-ar.init.AboveHaae-ar.init.AboveHaanoonghunna-ar.init.AboveHaayehFarsi-ar.init.AboveHaa!noonTwodotsbelow-ar.init.AboveHaa$yehFarsiFourbelow-ar.init.BaaHaaInitbeheh-ar.init.BaaHaaInit%yehFarsiThreeabove-ar.init.BaaHaaInitnoonRing-ar.init.BaaHaaInit.behThreedotshorizontalbelow-ar.init.BaaHaaInitbehVabove-ar.init.BaaHaaInitnoonTahabove-ar.init.BaaHaaInityehVabove-ar.init.BaaHaaInit#yehFarsiTwoabove-ar.init.BaaHaaInit%noonThreedotsabove-ar.init.BaaHaaInit yehHamzaabove-ar.init.BaaHaaInitbehDotless-ar.init.BaaHaaInityehKashmiri-ar.init.BaaHaaInityeh-ar.init.BaaHaaInitrnoon-ar.init.BaaHaaInitteheh-ar.init.BaaHaaInit$behVinvertedbelow-ar.init.BaaHaaInit#tehThreedotsdown-ar.init.BaaHaaInitpeh-ar.init.BaaHaaInitbeeh-ar.init.BaaHaaInitbeh-ar.init.BaaHaaInittteheh-ar.init.BaaHaaInit&behThreedotsupabove-ar.init.BaaHaaInitnoon-ar.init.BaaHaaInit&tehThreedotsupbelow-ar.init.BaaHaaInit&behThreedotsupbelow-ar.init.BaaHaaInitteh-ar.init.BaaHaaInithighhamzaYeh-ar.init.BaaHaaInit$yehFarsiVinverted-ar.init.BaaHaaInittheh-ar.init.BaaHaaInittteh-ar.init.BaaHaaInitnoonDotbelow-ar.init.BaaHaaInitnoonVabove-ar.init.BaaHaaInitalefMaksura-ar.init.BaaHaaInittehRing-ar.init.BaaHaaInit*behTwodotsbelowDotabove-ar.init.BaaHaaInit$yehThreedotsbelow-ar.init.BaaHaaInite-ar.init.BaaHaaInitnoonghunna-ar.init.BaaHaaInityehFarsi-ar.init.BaaHaaInit#noonTwodotsbelow-ar.init.BaaHaaInit'yehFarsiFourbelow-ar.init.BaaHaaMemInitbeheh-ar.init.BaaHaaMemInit(yehFarsiThreeabove-ar.init.BaaHaaMemInitnoonRing-ar.init.BaaHaaMemInit1behThreedotshorizontalbelow-ar.init.BaaHaaMemInitbehVabove-ar.init.BaaHaaMemInit"noonTahabove-ar.init.BaaHaaMemInityehVabove-ar.init.BaaHaaMemInit&yehFarsiTwoabove-ar.init.BaaHaaMemInit(noonThreedotsabove-ar.init.BaaHaaMemInit#yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInit!yehKashmiri-ar.init.BaaHaaMemInityeh-ar.init.BaaHaaMemInitrnoon-ar.init.BaaHaaMemInitteheh-ar.init.BaaHaaMemInit'behVinvertedbelow-ar.init.BaaHaaMemInit&tehThreedotsdown-ar.init.BaaHaaMemInitpeh-ar.init.BaaHaaMemInitbeeh-ar.init.BaaHaaMemInitbeh-ar.init.BaaHaaMemInittteheh-ar.init.BaaHaaMemInit)behThreedotsupabove-ar.init.BaaHaaMemInitnoon-ar.init.BaaHaaMemInit)tehThreedotsupbelow-ar.init.BaaHaaMemInit)behThreedotsupbelow-ar.init.BaaHaaMemInitteh-ar.init.BaaHaaMemInit"highhamzaYeh-ar.init.BaaHaaMemInit'yehFarsiVinverted-ar.init.BaaHaaMemInittheh-ar.init.BaaHaaMemInittteh-ar.init.BaaHaaMemInit"noonDotbelow-ar.init.BaaHaaMemInit noonVabove-ar.init.BaaHaaMemInit!alefMaksura-ar.init.BaaHaaMemInittehRing-ar.init.BaaHaaMemInit-behTwodotsbelowDotabove-ar.init.BaaHaaMemInit'yehThreedotsbelow-ar.init.BaaHaaMemInite-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInityehFarsi-ar.init.BaaHaaMemInit&noonTwodotsbelow-ar.init.BaaHaaMemInitkhah-ar.medi.BaaHaaMemInithah-ar.medi.BaaHaaMemInit#hahHamzaabove-ar.medi.BaaHaaMemInittcheheh-ar.medi.BaaHaaMemInit'hahThreedotsabove-ar.medi.BaaHaaMemInitjeem-ar.medi.BaaHaaMemInit-hahTwodotsverticalabove-ar.medi.BaaHaaMemInit/hahTwodotshorizontalabove-ar.medi.BaaHaaMemInitdyeh-ar.medi.BaaHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit!hahTahbelow-ar.medi.BaaHaaMemInitnyeh-ar.medi.BaaHaaMemInit#tchehDotabove-ar.medi.BaaHaaMemInit"hahFourbelow-ar.medi.BaaHaaMemInit)hahThreedotsupbelow-ar.medi.BaaHaaMemInit!hahTahabove-ar.medi.BaaHaaMemInittcheh-ar.medi.BaaHaaMemInitkhah-ar.fina.AboveHaaIsolhah-ar.fina.AboveHaaIsol"hahHamzaabove-ar.fina.AboveHaaIsoltcheheh-ar.fina.AboveHaaIsol&hahThreedotsabove-ar.fina.AboveHaaIsoljeem-ar.fina.AboveHaaIsol,hahTwodotsverticalabove-ar.fina.AboveHaaIsol.hahTwodotshorizontalabove-ar.fina.AboveHaaIsoldyeh-ar.fina.AboveHaaIsol1hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol hahTahbelow-ar.fina.AboveHaaIsolnyeh-ar.fina.AboveHaaIsol"tchehDotabove-ar.fina.AboveHaaIsol!hahFourbelow-ar.fina.AboveHaaIsol(hahThreedotsupbelow-ar.fina.AboveHaaIsol hahTahabove-ar.fina.AboveHaaIsoltcheh-ar.fina.AboveHaaIsollamVabove-ar.init.LamHaaHaaInit'lamThreedotsabove-ar.init.LamHaaHaaInitlam-ar.init.LamHaaHaaInit'lamThreedotsbelow-ar.init.LamHaaHaaInit!lamDotabove-ar.init.LamHaaHaaInitlamBar-ar.init.LamHaaHaaInitghainDotbelow-ar.init.Finjanighain-ar.init.Finjani%ainThreedotsdownabove-ar.init.Finjani)ainTwodotshorizontalabove-ar.init.Finjani'ainTwodotsverticalabove-ar.init.FinjaniainThreedots-ar.init.Finjaniain-ar.init.Finjanikhah-ar.init.Finjanihah-ar.init.FinjanihahHamzaabove-ar.init.Finjanitcheheh-ar.init.Finjani!hahThreedotsabove-ar.init.Finjanijeem-ar.init.Finjani'hahTwodotsverticalabove-ar.init.Finjani)hahTwodotshorizontalabove-ar.init.Finjanidyeh-ar.init.Finjani,hahTahTwodotshorizontalabove-ar.init.FinjanihahTahbelow-ar.init.Finjaninyeh-ar.init.FinjanitchehDotabove-ar.init.FinjanihahFourbelow-ar.init.Finjani#hahThreedotsupbelow-ar.init.FinjanihahTahabove-ar.init.Finjanitcheh-ar.init.Finjanikhah-ar.medi.Finjanihah-ar.medi.FinjanihahHamzaabove-ar.medi.Finjanitcheheh-ar.medi.Finjani!hahThreedotsabove-ar.medi.Finjanijeem-ar.medi.Finjani'hahTwodotsverticalabove-ar.medi.Finjani)hahTwodotshorizontalabove-ar.medi.Finjanidyeh-ar.medi.Finjani,hahTahTwodotshorizontalabove-ar.medi.FinjanihahTahbelow-ar.medi.Finjaninyeh-ar.medi.FinjanitchehDotabove-ar.medi.FinjanihahFourbelow-ar.medi.Finjani#hahThreedotsupbelow-ar.medi.FinjanihahTahabove-ar.medi.Finjanitcheh-ar.medi.FinjanisheenDotbelow-ar.init.PreYaa'seenTwodotsverticalabove-ar.init.PreYaaseen-ar.init.PreYaa!seenVinvertedabove-ar.init.PreYaaseenFourabove-ar.init.PreYaasheen-ar.init.PreYaa,seenTahTwodotshorizontalabove-ar.init.PreYaa seenFourdotsabove-ar.init.PreYaa#seenDotbelowDotabove-ar.init.PreYaa!seenThreedotsbelow-ar.init.PreYaa"sheenThreedotsbelow-ar.init.PreYaasheenDotbelow-ar.medi.PreYaa'seenTwodotsverticalabove-ar.medi.PreYaaseen-ar.medi.PreYaa!seenVinvertedabove-ar.medi.PreYaaseenFourabove-ar.medi.PreYaasheen-ar.medi.PreYaa,seenTahTwodotshorizontalabove-ar.medi.PreYaa seenFourdotsabove-ar.medi.PreYaa#seenDotbelowDotabove-ar.medi.PreYaa!seenThreedotsbelow-ar.medi.PreYaa"sheenThreedotsbelow-ar.medi.PreYaasadTwodotsbelow-ar.init.PreYaadadDotbelow-ar.init.PreYaadad-ar.init.PreYaasadThreedots-ar.init.PreYaasad-ar.init.PreYaasadTwodotsbelow-ar.medi.PreYaadadDotbelow-ar.medi.PreYaadad-ar.medi.PreYaasadThreedots-ar.medi.PreYaasad-ar.medi.PreYaayehFarsiFourbelow-ar.init.Highbeheh-ar.init.HighyehFarsiThreeabove-ar.init.HighnoonRing-ar.init.High(behThreedotshorizontalbelow-ar.init.HighbehVabove-ar.init.HighnoonTahabove-ar.init.HighyehVabove-ar.init.HighyehFarsiTwoabove-ar.init.HighnoonThreedotsabove-ar.init.HighyehHamzaabove-ar.init.HighbehDotless-ar.init.HighyehKashmiri-ar.init.Highyeh-ar.init.Highrnoon-ar.init.Highteheh-ar.init.HighbehVinvertedbelow-ar.init.HightehThreedotsdown-ar.init.Highpeh-ar.init.Highbeeh-ar.init.Highbeh-ar.init.Hightteheh-ar.init.High behThreedotsupabove-ar.init.Highnoon-ar.init.High tehThreedotsupbelow-ar.init.High behThreedotsupbelow-ar.init.Highteh-ar.init.HighhighhamzaYeh-ar.init.HighyehFarsiVinverted-ar.init.Hightheh-ar.init.Hightteh-ar.init.HighnoonDotbelow-ar.init.HighnoonVabove-ar.init.HighalefMaksura-ar.init.HightehRing-ar.init.High$behTwodotsbelowDotabove-ar.init.HighyehThreedotsbelow-ar.init.Highe-ar.init.Highnoonghunna-ar.init.HighyehFarsi-ar.init.HighnoonTwodotsbelow-ar.init.HighyehFarsiFourbelow-ar.medi.Highbeheh-ar.medi.HighyehFarsiThreeabove-ar.medi.HighnoonRing-ar.medi.High(behThreedotshorizontalbelow-ar.medi.HighbehVabove-ar.medi.HighnoonTahabove-ar.medi.HighyehVabove-ar.medi.HighyehFarsiTwoabove-ar.medi.HighnoonThreedotsabove-ar.medi.HighyehHamzaabove-ar.medi.HighbehDotless-ar.medi.HighyehKashmiri-ar.medi.Highyeh-ar.medi.Highrnoon-ar.medi.Highteheh-ar.medi.HighbehVinvertedbelow-ar.medi.HightehThreedotsdown-ar.medi.Highpeh-ar.medi.Highbeeh-ar.medi.Highbeh-ar.medi.Hightteheh-ar.medi.High behThreedotsupabove-ar.medi.Highnoon-ar.medi.High tehThreedotsupbelow-ar.medi.High behThreedotsupbelow-ar.medi.Highteh-ar.medi.HighyehFarsiVinverted-ar.medi.Hightheh-ar.medi.Hightteh-ar.medi.HighnoonDotbelow-ar.medi.HighnoonVabove-ar.medi.HighalefMaksura-ar.medi.HightehRing-ar.medi.High$behTwodotsbelowDotabove-ar.medi.HighyehThreedotsbelow-ar.medi.Highe-ar.medi.Highnoonghunna-ar.medi.HighyehFarsi-ar.medi.HighnoonTwodotsbelow-ar.medi.HighsheenDotbelow-ar.fina.BaaSen'seenTwodotsverticalabove-ar.fina.BaaSenseen-ar.fina.BaaSen!seenVinvertedabove-ar.fina.BaaSenseenFourabove-ar.fina.BaaSensheen-ar.fina.BaaSen,seenTahTwodotshorizontalabove-ar.fina.BaaSen seenFourdotsabove-ar.fina.BaaSen#seenDotbelowDotabove-ar.fina.BaaSen!seenThreedotsbelow-ar.fina.BaaSen"sheenThreedotsbelow-ar.fina.BaaSenmeem-ar.fina.PostToothyehFarsiFourbelow-ar.init.Widebeheh-ar.init.WideyehFarsiThreeabove-ar.init.WidenoonRing-ar.init.Wide(behThreedotshorizontalbelow-ar.init.WidebehVabove-ar.init.WidenoonTahabove-ar.init.WideyehVabove-ar.init.WideyehFarsiTwoabove-ar.init.WidenoonThreedotsabove-ar.init.WideyehHamzaabove-ar.init.WidebehDotless-ar.init.WideyehKashmiri-ar.init.Wideyeh-ar.init.Widernoon-ar.init.Wideteheh-ar.init.WidebehVinvertedbelow-ar.init.WidetehThreedotsdown-ar.init.Widepeh-ar.init.Widebeeh-ar.init.Widebeh-ar.init.Widetteheh-ar.init.Wide behThreedotsupabove-ar.init.Widenoon-ar.init.Wide tehThreedotsupbelow-ar.init.Wide behThreedotsupbelow-ar.init.Wideteh-ar.init.WidehighhamzaYeh-ar.init.WideyehFarsiVinverted-ar.init.Widetheh-ar.init.Widetteh-ar.init.WidenoonDotbelow-ar.init.WidenoonVabove-ar.init.WidealefMaksura-ar.init.WidetehRing-ar.init.Wide$behTwodotsbelowDotabove-ar.init.WideyehThreedotsbelow-ar.init.Widee-ar.init.Widenoonghunna-ar.init.WideyehFarsi-ar.init.WidenoonTwodotsbelow-ar.init.Widekhah-ar.medi.HaaHaaInithah-ar.medi.HaaHaaInit hahHamzaabove-ar.medi.HaaHaaInittcheheh-ar.medi.HaaHaaInit$hahThreedotsabove-ar.medi.HaaHaaInitjeem-ar.medi.HaaHaaInit*hahTwodotsverticalabove-ar.medi.HaaHaaInit,hahTwodotshorizontalabove-ar.medi.HaaHaaInitdyeh-ar.medi.HaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.HaaHaaInithahTahbelow-ar.medi.HaaHaaInitnyeh-ar.medi.HaaHaaInit tchehDotabove-ar.medi.HaaHaaInithahFourbelow-ar.medi.HaaHaaInit&hahThreedotsupbelow-ar.medi.HaaHaaInithahTahabove-ar.medi.HaaHaaInittcheh-ar.medi.HaaHaaInitkhah-ar.medi.AynHaaInithah-ar.medi.AynHaaInit hahHamzaabove-ar.medi.AynHaaInittcheheh-ar.medi.AynHaaInit$hahThreedotsabove-ar.medi.AynHaaInitjeem-ar.medi.AynHaaInit*hahTwodotsverticalabove-ar.medi.AynHaaInit,hahTwodotshorizontalabove-ar.medi.AynHaaInitdyeh-ar.medi.AynHaaInit/hahTahTwodotshorizontalabove-ar.medi.AynHaaInithahTahbelow-ar.medi.AynHaaInitnyeh-ar.medi.AynHaaInit tchehDotabove-ar.medi.AynHaaInithahFourbelow-ar.medi.AynHaaInit&hahThreedotsupbelow-ar.medi.AynHaaInithahTahabove-ar.medi.AynHaaInittcheh-ar.medi.AynHaaInitmeem-ar.medi.LamMemInitTatweelheh-ar.init.AboveHaahehgoal-ar.init.AboveHaakhah-ar.init.AboveHaahah-ar.init.AboveHaahahHamzaabove-ar.init.AboveHaatcheheh-ar.init.AboveHaa"hahThreedotsabove-ar.init.AboveHaajeem-ar.init.AboveHaa(hahTwodotsverticalabove-ar.init.AboveHaa*hahTwodotshorizontalabove-ar.init.AboveHaadyeh-ar.init.AboveHaa-hahTahTwodotshorizontalabove-ar.init.AboveHaahahTahbelow-ar.init.AboveHaanyeh-ar.init.AboveHaatchehDotabove-ar.init.AboveHaahahFourbelow-ar.init.AboveHaa$hahThreedotsupbelow-ar.init.AboveHaahahTahabove-ar.init.AboveHaatcheh-ar.init.AboveHaaghainDotbelow-ar.init.AboveHaaghain-ar.init.AboveHaa&ainThreedotsdownabove-ar.init.AboveHaa*ainTwodotshorizontalabove-ar.init.AboveHaa(ainTwodotsverticalabove-ar.init.AboveHaaainThreedots-ar.init.AboveHaaain-ar.init.AboveHaakhah-ar.fina.AboveHaaIsol2hah-ar.fina.AboveHaaIsol2#hahHamzaabove-ar.fina.AboveHaaIsol2tcheheh-ar.fina.AboveHaaIsol2'hahThreedotsabove-ar.fina.AboveHaaIsol2jeem-ar.fina.AboveHaaIsol2-hahTwodotsverticalabove-ar.fina.AboveHaaIsol2/hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2dyeh-ar.fina.AboveHaaIsol22hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2!hahTahbelow-ar.fina.AboveHaaIsol2nyeh-ar.fina.AboveHaaIsol2#tchehDotabove-ar.fina.AboveHaaIsol2"hahFourbelow-ar.fina.AboveHaaIsol2)hahThreedotsupbelow-ar.fina.AboveHaaIsol2!hahTahabove-ar.fina.AboveHaaIsol2tcheh-ar.fina.AboveHaaIsol2meem-ar.init.AboveHaa,kehehTwodotshorizontalabove-ar.init.AboveHaa$kehehThreedotsbelow-ar.init.AboveHaa*kafTwodotshorizontalabove-ar.init.AboveHaa&kehehThreedotsupbelow-ar.init.AboveHaakaf-ar.init.AboveHaagafRing-ar.init.AboveHaagueh-ar.init.AboveHaa gafTwodotsbelow-ar.init.AboveHaakafRing-ar.init.AboveHaakafDotabove-ar.init.AboveHaang-ar.init.AboveHaa"kafThreedotsbelow-ar.init.AboveHaagaf-ar.init.AboveHaakeheh-ar.init.AboveHaagafThreedots-ar.init.AboveHaa$kehehThreedotsabove-ar.init.AboveHaakehehDotabove-ar.init.AboveHaangoeh-ar.init.AboveHaa*kehehTwodotshorizontalabove-ar.init.KafLam"kehehThreedotsbelow-ar.init.KafLam(kafTwodotshorizontalabove-ar.init.KafLam$kehehThreedotsupbelow-ar.init.KafLamkaf-ar.init.KafLamgafRing-ar.init.KafLamgueh-ar.init.KafLamgafTwodotsbelow-ar.init.KafLamkafRing-ar.init.KafLamkafDotabove-ar.init.KafLamng-ar.init.KafLam kafThreedotsbelow-ar.init.KafLamgaf-ar.init.KafLamkeheh-ar.init.KafLamgafThreedots-ar.init.KafLam"kehehThreedotsabove-ar.init.KafLamkehehDotabove-ar.init.KafLamngoeh-ar.init.KafLam.kehehTwodotshorizontalabove-ar.fina.KafKafFina&kehehThreedotsbelow-ar.fina.KafKafFina,kafTwodotshorizontalabove-ar.fina.KafKafFina(kehehThreedotsupbelow-ar.fina.KafKafFinakaf-ar.fina.KafKafFinagafRing-ar.fina.KafKafFinagueh-ar.fina.KafKafFina"gafTwodotsbelow-ar.fina.KafKafFinakafRing-ar.fina.KafKafFinakafDotabove-ar.fina.KafKafFinang-ar.fina.KafKafFina$kafThreedotsbelow-ar.fina.KafKafFinagaf-ar.fina.KafKafFinakeheh-ar.fina.KafKafFinagafThreedots-ar.fina.KafKafFina&kehehThreedotsabove-ar.fina.KafKafFina kehehDotabove-ar.fina.KafKafFinangoeh-ar.fina.KafKafFinalamVabove-ar.medi.KafLam lamThreedotsabove-ar.medi.KafLamlam-ar.medi.KafLam lamThreedotsbelow-ar.medi.KafLamlamDotabove-ar.medi.KafLamlamBar-ar.medi.KafLamlamVabove-ar.medi.KafLamMemMedi'lamThreedotsabove-ar.medi.KafLamMemMedilam-ar.medi.KafLamMemMedi'lamThreedotsbelow-ar.medi.KafLamMemMedi!lamDotabove-ar.medi.KafLamMemMedilamBar-ar.medi.KafLamMemMedi*kehehTwodotshorizontalabove-ar.medi.KafLam"kehehThreedotsbelow-ar.medi.KafLam(kafTwodotshorizontalabove-ar.medi.KafLam$kehehThreedotsupbelow-ar.medi.KafLamkaf-ar.medi.KafLamgafRing-ar.medi.KafLamgueh-ar.medi.KafLamgafTwodotsbelow-ar.medi.KafLamkafRing-ar.medi.KafLamkafDotabove-ar.medi.KafLamng-ar.medi.KafLam kafThreedotsbelow-ar.medi.KafLamgaf-ar.medi.KafLamkeheh-ar.medi.KafLamgafThreedots-ar.medi.KafLam"kehehThreedotsabove-ar.medi.KafLamkehehDotabove-ar.medi.KafLamngoeh-ar.medi.KafLamlamVabove-ar.medi.KafLamHehIsol'lamThreedotsabove-ar.medi.KafLamHehIsollam-ar.medi.KafLamHehIsol'lamThreedotsbelow-ar.medi.KafLamHehIsol!lamDotabove-ar.medi.KafLamHehIsollamBar-ar.medi.KafLamHehIsollamVabove-ar.medi.KafLamYaa#lamThreedotsabove-ar.medi.KafLamYaalam-ar.medi.KafLamYaa#lamThreedotsbelow-ar.medi.KafLamYaalamDotabove-ar.medi.KafLamYaalamBar-ar.medi.KafLamYaalamVabove-ar.medi.KafLamAlf#lamThreedotsabove-ar.medi.KafLamAlflam-ar.medi.KafLamAlf#lamThreedotsbelow-ar.medi.KafLamAlflamDotabove-ar.medi.KafLamAlflamBar-ar.medi.KafLamAlflamVabove-ar.fina.KafLam lamThreedotsabove-ar.fina.KafLamlam-ar.fina.KafLam lamThreedotsbelow-ar.fina.KafLamlamDotabove-ar.fina.KafLamlamBar-ar.fina.KafLamalefHamzabelow-ar.fina.KafAlfalef-ar.fina.KafAlfalefThreeabove-ar.fina.KafAlfalefTwoabove-ar.fina.KafAlfalefHamzaabove-ar.fina.KafAlfalefMadda-ar.fina.KafAlf!alefWavyhamzaabove-ar.fina.KafAlf!alefWavyhamzabelow-ar.fina.KafAlfalefWasla-ar.fina.KafAlf-kehehTwodotshorizontalabove-ar.init.KafMemAlf%kehehThreedotsbelow-ar.init.KafMemAlf+kafTwodotshorizontalabove-ar.init.KafMemAlf'kehehThreedotsupbelow-ar.init.KafMemAlfkaf-ar.init.KafMemAlfgafRing-ar.init.KafMemAlfgueh-ar.init.KafMemAlf!gafTwodotsbelow-ar.init.KafMemAlfkafRing-ar.init.KafMemAlfkafDotabove-ar.init.KafMemAlfng-ar.init.KafMemAlf#kafThreedotsbelow-ar.init.KafMemAlfgaf-ar.init.KafMemAlfkeheh-ar.init.KafMemAlfgafThreedots-ar.init.KafMemAlf%kehehThreedotsabove-ar.init.KafMemAlfkehehDotabove-ar.init.KafMemAlfngoeh-ar.init.KafMemAlf-kehehTwodotshorizontalabove-ar.medi.KafMemAlf%kehehThreedotsbelow-ar.medi.KafMemAlf+kafTwodotshorizontalabove-ar.medi.KafMemAlf'kehehThreedotsupbelow-ar.medi.KafMemAlfkaf-ar.medi.KafMemAlfgafRing-ar.medi.KafMemAlfgueh-ar.medi.KafMemAlf!gafTwodotsbelow-ar.medi.KafMemAlfkafRing-ar.medi.KafMemAlfkafDotabove-ar.medi.KafMemAlfng-ar.medi.KafMemAlf#kafThreedotsbelow-ar.medi.KafMemAlfgaf-ar.medi.KafMemAlfkeheh-ar.medi.KafMemAlfgafThreedots-ar.medi.KafMemAlf%kehehThreedotsabove-ar.medi.KafMemAlfkehehDotabove-ar.medi.KafMemAlfngoeh-ar.medi.KafMemAlfmeem-ar.medi.KafMemAlflamVabove-ar.medi.KafMemLam#lamThreedotsabove-ar.medi.KafMemLamlam-ar.medi.KafMemLam#lamThreedotsbelow-ar.medi.KafMemLamlamDotabove-ar.medi.KafMemLamlamBar-ar.medi.KafMemLamlamVabove-ar.fina.KafMemLam#lamThreedotsabove-ar.fina.KafMemLamlam-ar.fina.KafMemLam#lamThreedotsbelow-ar.fina.KafMemLamlamDotabove-ar.fina.KafMemLamlamBar-ar.fina.KafMemLam alefHamzabelow-ar.fina.KafMemAlfalef-ar.fina.KafMemAlf alefThreeabove-ar.fina.KafMemAlfalefTwoabove-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlfalefMadda-ar.fina.KafMemAlf$alefWavyhamzaabove-ar.fina.KafMemAlf$alefWavyhamzabelow-ar.fina.KafMemAlfalefWasla-ar.fina.KafMemAlf*kehehTwodotshorizontalabove-ar.init.KafHeh"kehehThreedotsbelow-ar.init.KafHeh(kafTwodotshorizontalabove-ar.init.KafHeh$kehehThreedotsupbelow-ar.init.KafHehkaf-ar.init.KafHehgafRing-ar.init.KafHehgueh-ar.init.KafHehgafTwodotsbelow-ar.init.KafHehkafRing-ar.init.KafHehkafDotabove-ar.init.KafHehng-ar.init.KafHeh kafThreedotsbelow-ar.init.KafHehgaf-ar.init.KafHehkeheh-ar.init.KafHehgafThreedots-ar.init.KafHeh"kehehThreedotsabove-ar.init.KafHehkehehDotabove-ar.init.KafHehngoeh-ar.init.KafHeh*kehehTwodotshorizontalabove-ar.medi.KafHeh"kehehThreedotsbelow-ar.medi.KafHeh(kafTwodotshorizontalabove-ar.medi.KafHeh$kehehThreedotsupbelow-ar.medi.KafHehkaf-ar.medi.KafHehgafRing-ar.medi.KafHehgueh-ar.medi.KafHehgafTwodotsbelow-ar.medi.KafHehkafRing-ar.medi.KafHehkafDotabove-ar.medi.KafHehng-ar.medi.KafHeh kafThreedotsbelow-ar.medi.KafHehgaf-ar.medi.KafHehkeheh-ar.medi.KafHehgafThreedots-ar.medi.KafHeh"kehehThreedotsabove-ar.medi.KafHehkehehDotabove-ar.medi.KafHehngoeh-ar.medi.KafHehheh-ar.fina.KafHehhehgoal-ar.fina.KafHehtehMarbutagoal-ar.fina.KafHehae-ar.fina.KafHehtehMarbuta-ar.fina.KafHehdalFourdots-ar.fina.KafDal dalVinvertedabove-ar.fina.KafDaldalRing-ar.fina.KafDalddal-ar.fina.KafDal dalVinvertedbelow-ar.fina.KafDalthal-ar.fina.KafDaldal-ar.fina.KafDal)dalTwodotsverticalbelowTah-ar.fina.KafDaldahal-ar.fina.KafDaldalDotbelowTah-ar.fina.KafDaldalDotbelow-ar.fina.KafDaldalThreedotsdown-ar.fina.KafDaldul-ar.fina.KafDalddahal-ar.fina.KafDallamVabove-ar.init.LamHeh lamThreedotsabove-ar.init.LamHehlam-ar.init.LamHeh lamThreedotsbelow-ar.init.LamHehlamDotabove-ar.init.LamHehlamBar-ar.init.LamHehlamVabove-ar.medi.LamHeh lamThreedotsabove-ar.medi.LamHehlam-ar.medi.LamHeh lamThreedotsbelow-ar.medi.LamHehlamDotabove-ar.medi.LamHehlamBar-ar.medi.LamHehheh-ar.fina.LamHehhehgoal-ar.fina.LamHehtehMarbutagoal-ar.fina.LamHehae-ar.fina.LamHehtehMarbuta-ar.fina.LamHehdalFourdots-ar.fina.LamDal dalVinvertedabove-ar.fina.LamDaldalRing-ar.fina.LamDalddal-ar.fina.LamDal dalVinvertedbelow-ar.fina.LamDalthal-ar.fina.LamDaldal-ar.fina.LamDal)dalTwodotsverticalbelowTah-ar.fina.LamDaldahal-ar.fina.LamDaldalDotbelowTah-ar.fina.LamDaldalDotbelow-ar.fina.LamDaldalThreedotsdown-ar.fina.LamDaldul-ar.fina.LamDalddahal-ar.fina.LamDal.kehehTwodotshorizontalabove-ar.medi.KafMemMedi&kehehThreedotsbelow-ar.medi.KafMemMedi,kafTwodotshorizontalabove-ar.medi.KafMemMedi(kehehThreedotsupbelow-ar.medi.KafMemMedikaf-ar.medi.KafMemMedigafRing-ar.medi.KafMemMedigueh-ar.medi.KafMemMedi"gafTwodotsbelow-ar.medi.KafMemMedikafRing-ar.medi.KafMemMedikafDotabove-ar.medi.KafMemMeding-ar.medi.KafMemMedi$kafThreedotsbelow-ar.medi.KafMemMedigaf-ar.medi.KafMemMedikeheh-ar.medi.KafMemMedigafThreedots-ar.medi.KafMemMedi&kehehThreedotsabove-ar.medi.KafMemMedi kehehDotabove-ar.medi.KafMemMedingoeh-ar.medi.KafMemMedi.kehehTwodotshorizontalabove-ar.init.KafMemInit&kehehThreedotsbelow-ar.init.KafMemInit,kafTwodotshorizontalabove-ar.init.KafMemInit(kehehThreedotsupbelow-ar.init.KafMemInitkaf-ar.init.KafMemInitgafRing-ar.init.KafMemInitgueh-ar.init.KafMemInit"gafTwodotsbelow-ar.init.KafMemInitkafRing-ar.init.KafMemInitkafDotabove-ar.init.KafMemInitng-ar.init.KafMemInit$kafThreedotsbelow-ar.init.KafMemInitgaf-ar.init.KafMemInitkeheh-ar.init.KafMemInitgafThreedots-ar.init.KafMemInit&kehehThreedotsabove-ar.init.KafMemInit kehehDotabove-ar.init.KafMemInitngoeh-ar.init.KafMemInit ghainDotbelow-ar.init.AynMemInitghain-ar.init.AynMemInit(ainThreedotsdownabove-ar.init.AynMemInit,ainTwodotshorizontalabove-ar.init.AynMemInit*ainTwodotsverticalabove-ar.init.AynMemInitainThreedots-ar.init.AynMemInitain-ar.init.AynMemInitqafDotless-ar.init.FaaMemInit&fehThreedotsupbelow-ar.init.FaaMemInit"fehTwodotsbelow-ar.init.FaaMemInitqaf-ar.init.FaaMemInitfeh-ar.init.FaaMemInit$qafThreedotsabove-ar.init.FaaMemInitfehDotless-ar.init.FaaMemInit#fehDotmovedbelow-ar.init.FaaMemInitfehDotbelow-ar.init.FaaMemInitveh-ar.init.FaaMemInit$fehThreedotsbelow-ar.init.FaaMemInitpeheh-ar.init.FaaMemInitqafDotabove-ar.init.FaaMemInitkhah-ar.init.HaaMemInithah-ar.init.HaaMemInit hahHamzaabove-ar.init.HaaMemInittcheheh-ar.init.HaaMemInit$hahThreedotsabove-ar.init.HaaMemInitjeem-ar.init.HaaMemInit*hahTwodotsverticalabove-ar.init.HaaMemInit,hahTwodotshorizontalabove-ar.init.HaaMemInitdyeh-ar.init.HaaMemInit/hahTahTwodotshorizontalabove-ar.init.HaaMemInithahTahbelow-ar.init.HaaMemInitnyeh-ar.init.HaaMemInit tchehDotabove-ar.init.HaaMemInithahFourbelow-ar.init.HaaMemInit&hahThreedotsupbelow-ar.init.HaaMemInithahTahabove-ar.init.HaaMemInittcheh-ar.init.HaaMemInitheh-ar.init.HehMemInithehgoal-ar.init.HehMemInitmeem-ar.medi.KafMemMedi sheenDotbelow-ar.init.SenMemInit+seenTwodotsverticalabove-ar.init.SenMemInitseen-ar.init.SenMemInit%seenVinvertedabove-ar.init.SenMemInit seenFourabove-ar.init.SenMemInitsheen-ar.init.SenMemInit0seenTahTwodotshorizontalabove-ar.init.SenMemInit$seenFourdotsabove-ar.init.SenMemInit'seenDotbelowDotabove-ar.init.SenMemInit%seenThreedotsbelow-ar.init.SenMemInit&sheenThreedotsbelow-ar.init.SenMemInit"sadTwodotsbelow-ar.init.SadMemInitdadDotbelow-ar.init.SadMemInitdad-ar.init.SadMemInitsadThreedots-ar.init.SadMemInitsad-ar.init.SadMemInitmeem-ar.init.MemMemInitmeem-ar.medi.SenMemInit.kehehTwodotshorizontalabove-ar.init.KafYaaIsol&kehehThreedotsbelow-ar.init.KafYaaIsol,kafTwodotshorizontalabove-ar.init.KafYaaIsol(kehehThreedotsupbelow-ar.init.KafYaaIsolkaf-ar.init.KafYaaIsolgafRing-ar.init.KafYaaIsolgueh-ar.init.KafYaaIsol"gafTwodotsbelow-ar.init.KafYaaIsolkafRing-ar.init.KafYaaIsolkafDotabove-ar.init.KafYaaIsolng-ar.init.KafYaaIsol$kafThreedotsbelow-ar.init.KafYaaIsolgaf-ar.init.KafYaaIsolkeheh-ar.init.KafYaaIsolgafThreedots-ar.init.KafYaaIsol&kehehThreedotsabove-ar.init.KafYaaIsol kehehDotabove-ar.init.KafYaaIsolngoeh-ar.init.KafYaaIsol$yehFarsiFourbelow-ar.init.BaaYaaIsolbeheh-ar.init.BaaYaaIsol%yehFarsiThreeabove-ar.init.BaaYaaIsolnoonRing-ar.init.BaaYaaIsol.behThreedotshorizontalbelow-ar.init.BaaYaaIsolbehVabove-ar.init.BaaYaaIsolnoonTahabove-ar.init.BaaYaaIsolyehVabove-ar.init.BaaYaaIsol#yehFarsiTwoabove-ar.init.BaaYaaIsol%noonThreedotsabove-ar.init.BaaYaaIsol yehHamzaabove-ar.init.BaaYaaIsolbehDotless-ar.init.BaaYaaIsolyehKashmiri-ar.init.BaaYaaIsolyeh-ar.init.BaaYaaIsolrnoon-ar.init.BaaYaaIsolteheh-ar.init.BaaYaaIsol$behVinvertedbelow-ar.init.BaaYaaIsol#tehThreedotsdown-ar.init.BaaYaaIsolpeh-ar.init.BaaYaaIsolbeeh-ar.init.BaaYaaIsolbeh-ar.init.BaaYaaIsoltteheh-ar.init.BaaYaaIsol&behThreedotsupabove-ar.init.BaaYaaIsolnoon-ar.init.BaaYaaIsol&tehThreedotsupbelow-ar.init.BaaYaaIsol&behThreedotsupbelow-ar.init.BaaYaaIsolteh-ar.init.BaaYaaIsolhighhamzaYeh-ar.init.BaaYaaIsol$yehFarsiVinverted-ar.init.BaaYaaIsoltheh-ar.init.BaaYaaIsoltteh-ar.init.BaaYaaIsolnoonDotbelow-ar.init.BaaYaaIsolnoonVabove-ar.init.BaaYaaIsolalefMaksura-ar.init.BaaYaaIsoltehRing-ar.init.BaaYaaIsol*behTwodotsbelowDotabove-ar.init.BaaYaaIsol$yehThreedotsbelow-ar.init.BaaYaaIsole-ar.init.BaaYaaIsolnoonghunna-ar.init.BaaYaaIsolyehFarsi-ar.init.BaaYaaIsol#noonTwodotsbelow-ar.init.BaaYaaIsolkhah-ar.init.HaaYaaIsolhah-ar.init.HaaYaaIsol hahHamzaabove-ar.init.HaaYaaIsoltcheheh-ar.init.HaaYaaIsol$hahThreedotsabove-ar.init.HaaYaaIsoljeem-ar.init.HaaYaaIsol*hahTwodotsverticalabove-ar.init.HaaYaaIsol,hahTwodotshorizontalabove-ar.init.HaaYaaIsoldyeh-ar.init.HaaYaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaYaaIsolhahTahbelow-ar.init.HaaYaaIsolnyeh-ar.init.HaaYaaIsol tchehDotabove-ar.init.HaaYaaIsolhahFourbelow-ar.init.HaaYaaIsol&hahThreedotsupbelow-ar.init.HaaYaaIsolhahTahabove-ar.init.HaaYaaIsoltcheh-ar.init.HaaYaaIsolmeemDotabove-ar.init.MemYaaIsolmeem-ar.init.MemYaaIsolmeemDotbelow-ar.init.MemYaaIsolqafDotless-ar.init.FaaYaaIsol&fehThreedotsupbelow-ar.init.FaaYaaIsol"fehTwodotsbelow-ar.init.FaaYaaIsolqaf-ar.init.FaaYaaIsolfeh-ar.init.FaaYaaIsol$qafThreedotsabove-ar.init.FaaYaaIsolfehDotless-ar.init.FaaYaaIsol#fehDotmovedbelow-ar.init.FaaYaaIsolfehDotbelow-ar.init.FaaYaaIsolveh-ar.init.FaaYaaIsol$fehThreedotsbelow-ar.init.FaaYaaIsolpeheh-ar.init.FaaYaaIsolqafDotabove-ar.init.FaaYaaIsol ghainDotbelow-ar.init.AynYaaIsolghain-ar.init.AynYaaIsol(ainThreedotsdownabove-ar.init.AynYaaIsol,ainTwodotshorizontalabove-ar.init.AynYaaIsol*ainTwodotsverticalabove-ar.init.AynYaaIsolainThreedots-ar.init.AynYaaIsolain-ar.init.AynYaaIsollamVabove-ar.init.LamYaaIsol$lamThreedotsabove-ar.init.LamYaaIsollam-ar.init.LamYaaIsol$lamThreedotsbelow-ar.init.LamYaaIsollamDotabove-ar.init.LamYaaIsollamBar-ar.init.LamYaaIsolheh-ar.init.HehYaaIsolhehgoal-ar.init.HehYaaIsol$yehFarsiFourbelow-ar.fina.KafYaaIsol$yehThreedotsbelow-ar.fina.KafYaaIsol#yehFarsiTwoabove-ar.fina.KafYaaIsol)yehFarsiThreedotsabove-ar.fina.KafYaaIsol$yehFarsiVinverted-ar.fina.KafYaaIsol'yehFarsiTwodotsabove-ar.fina.KafYaaIsole-ar.fina.KafYaaIsolalefMaksura-ar.fina.KafYaaIsol%yehFarsiThreeabove-ar.fina.KafYaaIsolyehTail-ar.fina.KafYaaIsolyehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsolyehKashmiri-ar.fina.KafYaaIsolyeh-ar.fina.KafYaaIsolyehVabove-ar.fina.KafYaaIsol.kehehTwodotshorizontalabove-ar.init.KafMemIsol&kehehThreedotsbelow-ar.init.KafMemIsol,kafTwodotshorizontalabove-ar.init.KafMemIsol(kehehThreedotsupbelow-ar.init.KafMemIsolkaf-ar.init.KafMemIsolgafRing-ar.init.KafMemIsolgueh-ar.init.KafMemIsol"gafTwodotsbelow-ar.init.KafMemIsolkafRing-ar.init.KafMemIsolkafDotabove-ar.init.KafMemIsolng-ar.init.KafMemIsol$kafThreedotsbelow-ar.init.KafMemIsolgaf-ar.init.KafMemIsolkeheh-ar.init.KafMemIsolgafThreedots-ar.init.KafMemIsol&kehehThreedotsabove-ar.init.KafMemIsol kehehDotabove-ar.init.KafMemIsolngoeh-ar.init.KafMemIsollamVabove-ar.init.LamMemIsol$lamThreedotsabove-ar.init.LamMemIsollam-ar.init.LamMemIsol$lamThreedotsbelow-ar.init.LamMemIsollamDotabove-ar.init.LamMemIsollamBar-ar.init.LamMemIsol$yehFarsiFourbelow-ar.init.BaaMemIsolbeheh-ar.init.BaaMemIsol%yehFarsiThreeabove-ar.init.BaaMemIsolnoonRing-ar.init.BaaMemIsol.behThreedotshorizontalbelow-ar.init.BaaMemIsolbehVabove-ar.init.BaaMemIsolnoonTahabove-ar.init.BaaMemIsolyehVabove-ar.init.BaaMemIsol#yehFarsiTwoabove-ar.init.BaaMemIsol%noonThreedotsabove-ar.init.BaaMemIsol yehHamzaabove-ar.init.BaaMemIsolbehDotless-ar.init.BaaMemIsolyehKashmiri-ar.init.BaaMemIsolyeh-ar.init.BaaMemIsolrnoon-ar.init.BaaMemIsolteheh-ar.init.BaaMemIsol$behVinvertedbelow-ar.init.BaaMemIsol#tehThreedotsdown-ar.init.BaaMemIsolpeh-ar.init.BaaMemIsolbeeh-ar.init.BaaMemIsolbeh-ar.init.BaaMemIsoltteheh-ar.init.BaaMemIsol&behThreedotsupabove-ar.init.BaaMemIsolnoon-ar.init.BaaMemIsol&tehThreedotsupbelow-ar.init.BaaMemIsol&behThreedotsupbelow-ar.init.BaaMemIsolteh-ar.init.BaaMemIsolhighhamzaYeh-ar.init.BaaMemIsol$yehFarsiVinverted-ar.init.BaaMemIsoltheh-ar.init.BaaMemIsoltteh-ar.init.BaaMemIsolnoonDotbelow-ar.init.BaaMemIsolnoonVabove-ar.init.BaaMemIsolalefMaksura-ar.init.BaaMemIsoltehRing-ar.init.BaaMemIsol*behTwodotsbelowDotabove-ar.init.BaaMemIsol$yehThreedotsbelow-ar.init.BaaMemIsole-ar.init.BaaMemIsolnoonghunna-ar.init.BaaMemIsolyehFarsi-ar.init.BaaMemIsol#noonTwodotsbelow-ar.init.BaaMemIsolmeem-ar.fina.KafMemIsolmeem-ar.medi.MemAlfFina'yehFarsiFourbelow-ar.medi.BaaMemAlfFinabeheh-ar.medi.BaaMemAlfFina(yehFarsiThreeabove-ar.medi.BaaMemAlfFinanoonRing-ar.medi.BaaMemAlfFina1behThreedotshorizontalbelow-ar.medi.BaaMemAlfFinabehVabove-ar.medi.BaaMemAlfFina"noonTahabove-ar.medi.BaaMemAlfFinayehVabove-ar.medi.BaaMemAlfFina&yehFarsiTwoabove-ar.medi.BaaMemAlfFina(noonThreedotsabove-ar.medi.BaaMemAlfFina#yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFina!yehKashmiri-ar.medi.BaaMemAlfFinayeh-ar.medi.BaaMemAlfFinarnoon-ar.medi.BaaMemAlfFinateheh-ar.medi.BaaMemAlfFina'behVinvertedbelow-ar.medi.BaaMemAlfFina&tehThreedotsdown-ar.medi.BaaMemAlfFinapeh-ar.medi.BaaMemAlfFinabeeh-ar.medi.BaaMemAlfFinabeh-ar.medi.BaaMemAlfFinatteheh-ar.medi.BaaMemAlfFina)behThreedotsupabove-ar.medi.BaaMemAlfFinanoon-ar.medi.BaaMemAlfFina)tehThreedotsupbelow-ar.medi.BaaMemAlfFina)behThreedotsupbelow-ar.medi.BaaMemAlfFinateh-ar.medi.BaaMemAlfFina'yehFarsiVinverted-ar.medi.BaaMemAlfFinatheh-ar.medi.BaaMemAlfFinatteh-ar.medi.BaaMemAlfFina"noonDotbelow-ar.medi.BaaMemAlfFina noonVabove-ar.medi.BaaMemAlfFina!alefMaksura-ar.medi.BaaMemAlfFinatehRing-ar.medi.BaaMemAlfFina-behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina'yehThreedotsbelow-ar.medi.BaaMemAlfFinae-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFinayehFarsi-ar.medi.BaaMemAlfFina&noonTwodotsbelow-ar.medi.BaaMemAlfFinameem-ar.medi.BaaMemAlfFinameem-ar.medi.AlfPostTooth!alefHamzabelow-ar.fina.MemAlfFinaalef-ar.fina.MemAlfFina!alefThreeabove-ar.fina.MemAlfFinaalefTwoabove-ar.fina.MemAlfFina!alefHamzaabove-ar.fina.MemAlfFinaalefMadda-ar.fina.MemAlfFina%alefWavyhamzaabove-ar.fina.MemAlfFina%alefWavyhamzabelow-ar.fina.MemAlfFinaalefWasla-ar.fina.MemAlfFina$yehFarsiFourbelow-ar.init.BaaHehInitbeheh-ar.init.BaaHehInit%yehFarsiThreeabove-ar.init.BaaHehInitnoonRing-ar.init.BaaHehInit.behThreedotshorizontalbelow-ar.init.BaaHehInitbehVabove-ar.init.BaaHehInitnoonTahabove-ar.init.BaaHehInityehVabove-ar.init.BaaHehInit#yehFarsiTwoabove-ar.init.BaaHehInit%noonThreedotsabove-ar.init.BaaHehInit yehHamzaabove-ar.init.BaaHehInitbehDotless-ar.init.BaaHehInityehKashmiri-ar.init.BaaHehInityeh-ar.init.BaaHehInitrnoon-ar.init.BaaHehInitteheh-ar.init.BaaHehInit$behVinvertedbelow-ar.init.BaaHehInit#tehThreedotsdown-ar.init.BaaHehInitpeh-ar.init.BaaHehInitbeeh-ar.init.BaaHehInitbeh-ar.init.BaaHehInittteheh-ar.init.BaaHehInit&behThreedotsupabove-ar.init.BaaHehInitnoon-ar.init.BaaHehInit&tehThreedotsupbelow-ar.init.BaaHehInit&behThreedotsupbelow-ar.init.BaaHehInitteh-ar.init.BaaHehInithighhamzaYeh-ar.init.BaaHehInit$yehFarsiVinverted-ar.init.BaaHehInittheh-ar.init.BaaHehInittteh-ar.init.BaaHehInitnoonDotbelow-ar.init.BaaHehInitnoonVabove-ar.init.BaaHehInitalefMaksura-ar.init.BaaHehInittehRing-ar.init.BaaHehInit*behTwodotsbelowDotabove-ar.init.BaaHehInit$yehThreedotsbelow-ar.init.BaaHehInite-ar.init.BaaHehInitnoonghunna-ar.init.BaaHehInityehFarsi-ar.init.BaaHehInit#noonTwodotsbelow-ar.init.BaaHehInit$yehFarsiFourbelow-ar.medi.BaaHehMedibeheh-ar.medi.BaaHehMedi%yehFarsiThreeabove-ar.medi.BaaHehMedinoonRing-ar.medi.BaaHehMedi.behThreedotshorizontalbelow-ar.medi.BaaHehMedibehVabove-ar.medi.BaaHehMedinoonTahabove-ar.medi.BaaHehMediyehVabove-ar.medi.BaaHehMedi#yehFarsiTwoabove-ar.medi.BaaHehMedi%noonThreedotsabove-ar.medi.BaaHehMedi yehHamzaabove-ar.medi.BaaHehMedibehDotless-ar.medi.BaaHehMediyehKashmiri-ar.medi.BaaHehMediyeh-ar.medi.BaaHehMedirnoon-ar.medi.BaaHehMediteheh-ar.medi.BaaHehMedi$behVinvertedbelow-ar.medi.BaaHehMedi#tehThreedotsdown-ar.medi.BaaHehMedipeh-ar.medi.BaaHehMedibeeh-ar.medi.BaaHehMedibeh-ar.medi.BaaHehMeditteheh-ar.medi.BaaHehMedi&behThreedotsupabove-ar.medi.BaaHehMedinoon-ar.medi.BaaHehMedi&tehThreedotsupbelow-ar.medi.BaaHehMedi&behThreedotsupbelow-ar.medi.BaaHehMediteh-ar.medi.BaaHehMedi$yehFarsiVinverted-ar.medi.BaaHehMeditheh-ar.medi.BaaHehMeditteh-ar.medi.BaaHehMedinoonDotbelow-ar.medi.BaaHehMedinoonVabove-ar.medi.BaaHehMedialefMaksura-ar.medi.BaaHehMeditehRing-ar.medi.BaaHehMedi*behTwodotsbelowDotabove-ar.medi.BaaHehMedi$yehThreedotsbelow-ar.medi.BaaHehMedie-ar.medi.BaaHehMedinoonghunna-ar.medi.BaaHehMediyehFarsi-ar.medi.BaaHehMedi#noonTwodotsbelow-ar.medi.BaaHehMediheh-ar.medi.BaaHehMedihehgoal-ar.medi.BaaHehMediheh-ar.medi.PostToothhehgoal-ar.medi.PostToothlamVabove-ar.medi.KafLamMemFina'lamThreedotsabove-ar.medi.KafLamMemFinalam-ar.medi.KafLamMemFina'lamThreedotsbelow-ar.medi.KafLamMemFina!lamDotabove-ar.medi.KafLamMemFinalamBar-ar.medi.KafLamMemFinalamVabove-ar.init.LamLamInit$lamThreedotsabove-ar.init.LamLamInitlam-ar.init.LamLamInit$lamThreedotsbelow-ar.init.LamLamInitlamDotabove-ar.init.LamLamInitlamBar-ar.init.LamLamInitlamVabove-ar.medi.LamLamInit$lamThreedotsabove-ar.medi.LamLamInitlam-ar.medi.LamLamInit$lamThreedotsbelow-ar.medi.LamLamInitlamDotabove-ar.medi.LamLamInitlamBar-ar.medi.LamLamInitlamVabove-ar.medi.LamLamAlfIsol'lamThreedotsabove-ar.medi.LamLamAlfIsollam-ar.medi.LamLamAlfIsol'lamThreedotsbelow-ar.medi.LamLamAlfIsol!lamDotabove-ar.medi.LamLamAlfIsollamBar-ar.medi.LamLamAlfIsol.kehehTwodotshorizontalabove-ar.fina.LamKafIsol&kehehThreedotsbelow-ar.fina.LamKafIsol,kafTwodotshorizontalabove-ar.fina.LamKafIsol(kehehThreedotsupbelow-ar.fina.LamKafIsolkaf-ar.fina.LamKafIsolgafRing-ar.fina.LamKafIsolgueh-ar.fina.LamKafIsol"gafTwodotsbelow-ar.fina.LamKafIsolkafRing-ar.fina.LamKafIsolkafDotabove-ar.fina.LamKafIsolng-ar.fina.LamKafIsol$kafThreedotsbelow-ar.fina.LamKafIsolgaf-ar.fina.LamKafIsolkeheh-ar.fina.LamKafIsolgafThreedots-ar.fina.LamKafIsol&kehehThreedotsabove-ar.fina.LamKafIsol kehehDotabove-ar.fina.LamKafIsolngoeh-ar.fina.LamKafIsollamVabove-ar.fina.LamLamIsol$lamThreedotsabove-ar.fina.LamLamIsollam-ar.fina.LamLamIsol$lamThreedotsbelow-ar.fina.LamLamIsollamDotabove-ar.fina.LamLamIsollamBar-ar.fina.LamLamIsollamVabove-ar.medi.LamLamMedi$lamThreedotsabove-ar.medi.LamLamMedilam-ar.medi.LamLamMedi$lamThreedotsbelow-ar.medi.LamLamMedilamDotabove-ar.medi.LamLamMedilamBar-ar.medi.LamLamMedi lamVabove-ar.medi.LamLamAlefFina(lamThreedotsabove-ar.medi.LamLamAlefFinalam-ar.medi.LamLamAlefFina(lamThreedotsbelow-ar.medi.LamLamAlefFina"lamDotabove-ar.medi.LamLamAlefFinalamBar-ar.medi.LamLamAlefFinalamVabove-ar.medi.LamLamMedi2%lamThreedotsabove-ar.medi.LamLamMedi2lam-ar.medi.LamLamMedi2%lamThreedotsbelow-ar.medi.LamLamMedi2lamDotabove-ar.medi.LamLamMedi2lamBar-ar.medi.LamLamMedi2.kehehTwodotshorizontalabove-ar.fina.LamKafFina&kehehThreedotsbelow-ar.fina.LamKafFina,kafTwodotshorizontalabove-ar.fina.LamKafFina(kehehThreedotsupbelow-ar.fina.LamKafFinakaf-ar.fina.LamKafFinagafRing-ar.fina.LamKafFinagueh-ar.fina.LamKafFina"gafTwodotsbelow-ar.fina.LamKafFinakafRing-ar.fina.LamKafFinakafDotabove-ar.fina.LamKafFinang-ar.fina.LamKafFina$kafThreedotsbelow-ar.fina.LamKafFinagaf-ar.fina.LamKafFinakeheh-ar.fina.LamKafFinagafThreedots-ar.fina.LamKafFina&kehehThreedotsabove-ar.fina.LamKafFina kehehDotabove-ar.fina.LamKafFinangoeh-ar.fina.LamKafFinalamVabove-ar.fina.LamLamFina$lamThreedotsabove-ar.fina.LamLamFinalam-ar.fina.LamLamFina$lamThreedotsbelow-ar.fina.LamLamFinalamDotabove-ar.fina.LamLamFinalamBar-ar.fina.LamLamFinalamVabove-ar.medi.LamLamMemInit'lamThreedotsabove-ar.medi.LamLamMemInitlam-ar.medi.LamLamMemInit'lamThreedotsbelow-ar.medi.LamLamMemInit!lamDotabove-ar.medi.LamLamMemInitlamBar-ar.medi.LamLamMemInitlamVabove-ar.medi.LamLamHehIsol'lamThreedotsabove-ar.medi.LamLamHehIsollam-ar.medi.LamLamHehIsol'lamThreedotsbelow-ar.medi.LamLamHehIsol!lamDotabove-ar.medi.LamLamHehIsollamBar-ar.medi.LamLamHehIsollamVabove-ar.medi.LamLamYaaIsol'lamThreedotsabove-ar.medi.LamLamYaaIsollam-ar.medi.LamLamYaaIsol'lamThreedotsbelow-ar.medi.LamLamYaaIsol!lamDotabove-ar.medi.LamLamYaaIsollamBar-ar.medi.LamLamYaaIsollamVabove-ar.medi.LamLamMemMedi'lamThreedotsabove-ar.medi.LamLamMemMedilam-ar.medi.LamLamMemMedi'lamThreedotsbelow-ar.medi.LamLamMemMedi!lamDotabove-ar.medi.LamLamMemMedilamBar-ar.medi.LamLamMemMedilamVabove-ar.medi.LamLamHehFina'lamThreedotsabove-ar.medi.LamLamHehFinalam-ar.medi.LamLamHehFina'lamThreedotsbelow-ar.medi.LamLamHehFina!lamDotabove-ar.medi.LamLamHehFinalamBar-ar.medi.LamLamHehFinalamVabove-ar.medi.LamLamYaaFina'lamThreedotsabove-ar.medi.LamLamYaaFinalam-ar.medi.LamLamYaaFina'lamThreedotsbelow-ar.medi.LamLamYaaFina!lamDotabove-ar.medi.LamLamYaaFinalamBar-ar.medi.LamLamYaaFinakhah-ar.medi.1LamHaaHaaInithah-ar.medi.1LamHaaHaaInit$hahHamzaabove-ar.medi.1LamHaaHaaInittcheheh-ar.medi.1LamHaaHaaInit(hahThreedotsabove-ar.medi.1LamHaaHaaInitjeem-ar.medi.1LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInitdyeh-ar.medi.1LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit"hahTahbelow-ar.medi.1LamHaaHaaInitnyeh-ar.medi.1LamHaaHaaInit$tchehDotabove-ar.medi.1LamHaaHaaInit#hahFourbelow-ar.medi.1LamHaaHaaInit*hahThreedotsupbelow-ar.medi.1LamHaaHaaInit"hahTahabove-ar.medi.1LamHaaHaaInittcheh-ar.medi.1LamHaaHaaInitkhah-ar.medi.2LamHaaHaaInithah-ar.medi.2LamHaaHaaInit$hahHamzaabove-ar.medi.2LamHaaHaaInittcheheh-ar.medi.2LamHaaHaaInit(hahThreedotsabove-ar.medi.2LamHaaHaaInitjeem-ar.medi.2LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInitdyeh-ar.medi.2LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit"hahTahbelow-ar.medi.2LamHaaHaaInitnyeh-ar.medi.2LamHaaHaaInit$tchehDotabove-ar.medi.2LamHaaHaaInit#hahFourbelow-ar.medi.2LamHaaHaaInit*hahThreedotsupbelow-ar.medi.2LamHaaHaaInit"hahTahabove-ar.medi.2LamHaaHaaInittcheh-ar.medi.2LamHaaHaaInitkafswash-ar.initkafswash-ar.medikafswash-ar.finaalefHamzabelow-ar.LowHamzaalefWavyhamzabelow-ar.LowHamzabeheh-ar.init.LDnoonThreedotsabove-ar.init.LDpeh-ar.init.LDbeeh-ar.init.LDbeh-ar.init.LDnoonTwodotsbelow-ar.init.LDyehFarsiVinverted-ar.init.LDyehFarsiFourbelow-ar.init.LDyehFarsiThreeabove-ar.init.LDyehFarsiTwoabove-ar.init.LDyehFarsi-ar.init.LDyeh-ar.init.LDyehVabove-ar.init.LDbehThreedotsupabove-ar.init.LD&behThreedotshorizontalbelow-ar.init.LDtehThreedotsupbelow-ar.init.LDbehThreedotsupbelow-ar.init.LDbehVinvertedbelow-ar.init.LD"behTwodotsbelowDotabove-ar.init.LDnoonDotbelow-ar.init.LDyehThreedotsbelow-ar.init.LD e-ar.init.LDbeheh-ar.init.BaaRaaIsolLD'noonThreedotsabove-ar.init.BaaRaaIsolLDpeh-ar.init.BaaRaaIsolLDbeeh-ar.init.BaaRaaIsolLDbeh-ar.init.BaaRaaIsolLD%noonTwodotsbelow-ar.init.BaaRaaIsolLD&yehFarsiVinverted-ar.init.BaaRaaIsolLD&yehFarsiFourbelow-ar.init.BaaRaaIsolLD'yehFarsiThreeabove-ar.init.BaaRaaIsolLD%yehFarsiTwoabove-ar.init.BaaRaaIsolLDyehFarsi-ar.init.BaaRaaIsolLDyeh-ar.init.BaaRaaIsolLDyehVabove-ar.init.BaaRaaIsolLD(behThreedotsupabove-ar.init.BaaRaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD(tehThreedotsupbelow-ar.init.BaaRaaIsolLD(behThreedotsupbelow-ar.init.BaaRaaIsolLD&behVinvertedbelow-ar.init.BaaRaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD!noonDotbelow-ar.init.BaaRaaIsolLD&yehThreedotsbelow-ar.init.BaaRaaIsolLDe-ar.init.BaaRaaIsolLDbeheh-ar.init.BaaDalLD#noonThreedotsabove-ar.init.BaaDalLDpeh-ar.init.BaaDalLDbeeh-ar.init.BaaDalLDbeh-ar.init.BaaDalLD!noonTwodotsbelow-ar.init.BaaDalLD"yehFarsiVinverted-ar.init.BaaDalLD"yehFarsiFourbelow-ar.init.BaaDalLD#yehFarsiThreeabove-ar.init.BaaDalLD!yehFarsiTwoabove-ar.init.BaaDalLDyehFarsi-ar.init.BaaDalLDyeh-ar.init.BaaDalLDyehVabove-ar.init.BaaDalLD$behThreedotsupabove-ar.init.BaaDalLD,behThreedotshorizontalbelow-ar.init.BaaDalLD$tehThreedotsupbelow-ar.init.BaaDalLD$behThreedotsupbelow-ar.init.BaaDalLD"behVinvertedbelow-ar.init.BaaDalLD(behTwodotsbelowDotabove-ar.init.BaaDalLDnoonDotbelow-ar.init.BaaDalLD"yehThreedotsbelow-ar.init.BaaDalLDe-ar.init.BaaDalLDbeheh-ar.init.BaaMemHaaInitLD*noonThreedotsabove-ar.init.BaaMemHaaInitLDpeh-ar.init.BaaMemHaaInitLDbeeh-ar.init.BaaMemHaaInitLDbeh-ar.init.BaaMemHaaInitLD(noonTwodotsbelow-ar.init.BaaMemHaaInitLD)yehFarsiVinverted-ar.init.BaaMemHaaInitLD)yehFarsiFourbelow-ar.init.BaaMemHaaInitLD*yehFarsiThreeabove-ar.init.BaaMemHaaInitLD(yehFarsiTwoabove-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLDyeh-ar.init.BaaMemHaaInitLD!yehVabove-ar.init.BaaMemHaaInitLD+behThreedotsupabove-ar.init.BaaMemHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD+tehThreedotsupbelow-ar.init.BaaMemHaaInitLD+behThreedotsupbelow-ar.init.BaaMemHaaInitLD)behVinvertedbelow-ar.init.BaaMemHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD$noonDotbelow-ar.init.BaaMemHaaInitLD)yehThreedotsbelow-ar.init.BaaMemHaaInitLDe-ar.init.BaaMemHaaInitLDbeheh-ar.init.BaaBaaYaaLD&noonThreedotsabove-ar.init.BaaBaaYaaLDpeh-ar.init.BaaBaaYaaLDbeeh-ar.init.BaaBaaYaaLDbeh-ar.init.BaaBaaYaaLD$noonTwodotsbelow-ar.init.BaaBaaYaaLD%yehFarsiVinverted-ar.init.BaaBaaYaaLD%yehFarsiFourbelow-ar.init.BaaBaaYaaLD&yehFarsiThreeabove-ar.init.BaaBaaYaaLD$yehFarsiTwoabove-ar.init.BaaBaaYaaLDyehFarsi-ar.init.BaaBaaYaaLDyeh-ar.init.BaaBaaYaaLDyehVabove-ar.init.BaaBaaYaaLD'behThreedotsupabove-ar.init.BaaBaaYaaLD/behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD'tehThreedotsupbelow-ar.init.BaaBaaYaaLD'behThreedotsupbelow-ar.init.BaaBaaYaaLD%behVinvertedbelow-ar.init.BaaBaaYaaLD+behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD noonDotbelow-ar.init.BaaBaaYaaLD%yehThreedotsbelow-ar.init.BaaBaaYaaLDe-ar.init.BaaBaaYaaLDbeheh-ar.init.BaaNonIsolLD'noonThreedotsabove-ar.init.BaaNonIsolLDpeh-ar.init.BaaNonIsolLDbeeh-ar.init.BaaNonIsolLDbeh-ar.init.BaaNonIsolLD%noonTwodotsbelow-ar.init.BaaNonIsolLD&yehFarsiVinverted-ar.init.BaaNonIsolLD&yehFarsiFourbelow-ar.init.BaaNonIsolLD'yehFarsiThreeabove-ar.init.BaaNonIsolLD%yehFarsiTwoabove-ar.init.BaaNonIsolLDyehFarsi-ar.init.BaaNonIsolLDyeh-ar.init.BaaNonIsolLDyehVabove-ar.init.BaaNonIsolLD(behThreedotsupabove-ar.init.BaaNonIsolLD0behThreedotshorizontalbelow-ar.init.BaaNonIsolLD(tehThreedotsupbelow-ar.init.BaaNonIsolLD(behThreedotsupbelow-ar.init.BaaNonIsolLD&behVinvertedbelow-ar.init.BaaNonIsolLD,behTwodotsbelowDotabove-ar.init.BaaNonIsolLD!noonDotbelow-ar.init.BaaNonIsolLD&yehThreedotsbelow-ar.init.BaaNonIsolLDe-ar.init.BaaNonIsolLDbeheh-ar.init.BaaSenInitLD'noonThreedotsabove-ar.init.BaaSenInitLDpeh-ar.init.BaaSenInitLDbeeh-ar.init.BaaSenInitLDbeh-ar.init.BaaSenInitLD%noonTwodotsbelow-ar.init.BaaSenInitLD&yehFarsiVinverted-ar.init.BaaSenInitLD&yehFarsiFourbelow-ar.init.BaaSenInitLD'yehFarsiThreeabove-ar.init.BaaSenInitLD%yehFarsiTwoabove-ar.init.BaaSenInitLDyehFarsi-ar.init.BaaSenInitLDyeh-ar.init.BaaSenInitLDyehVabove-ar.init.BaaSenInitLD(behThreedotsupabove-ar.init.BaaSenInitLD0behThreedotshorizontalbelow-ar.init.BaaSenInitLD(tehThreedotsupbelow-ar.init.BaaSenInitLD(behThreedotsupbelow-ar.init.BaaSenInitLD&behVinvertedbelow-ar.init.BaaSenInitLD,behTwodotsbelowDotabove-ar.init.BaaSenInitLD!noonDotbelow-ar.init.BaaSenInitLD&yehThreedotsbelow-ar.init.BaaSenInitLDe-ar.init.BaaSenInitLDbeheh-ar.init.BaaMemInitLD'noonThreedotsabove-ar.init.BaaMemInitLDpeh-ar.init.BaaMemInitLDbeeh-ar.init.BaaMemInitLDbeh-ar.init.BaaMemInitLD%noonTwodotsbelow-ar.init.BaaMemInitLD&yehFarsiVinverted-ar.init.BaaMemInitLD&yehFarsiFourbelow-ar.init.BaaMemInitLD'yehFarsiThreeabove-ar.init.BaaMemInitLD%yehFarsiTwoabove-ar.init.BaaMemInitLDyehFarsi-ar.init.BaaMemInitLDyeh-ar.init.BaaMemInitLDyehVabove-ar.init.BaaMemInitLD(behThreedotsupabove-ar.init.BaaMemInitLD0behThreedotshorizontalbelow-ar.init.BaaMemInitLD(tehThreedotsupbelow-ar.init.BaaMemInitLD(behThreedotsupbelow-ar.init.BaaMemInitLD&behVinvertedbelow-ar.init.BaaMemInitLD,behTwodotsbelowDotabove-ar.init.BaaMemInitLD!noonDotbelow-ar.init.BaaMemInitLD&yehThreedotsbelow-ar.init.BaaMemInitLDe-ar.init.BaaMemInitLDbeheh-ar.init.BaaBaaHaaInitLD*noonThreedotsabove-ar.init.BaaBaaHaaInitLDpeh-ar.init.BaaBaaHaaInitLDbeeh-ar.init.BaaBaaHaaInitLDbeh-ar.init.BaaBaaHaaInitLD(noonTwodotsbelow-ar.init.BaaBaaHaaInitLD)yehFarsiVinverted-ar.init.BaaBaaHaaInitLD)yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD*yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD(yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD yehFarsi-ar.init.BaaBaaHaaInitLDyeh-ar.init.BaaBaaHaaInitLD!yehVabove-ar.init.BaaBaaHaaInitLD+behThreedotsupabove-ar.init.BaaBaaHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD+tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD+behThreedotsupbelow-ar.init.BaaBaaHaaInitLD)behVinvertedbelow-ar.init.BaaBaaHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD$noonDotbelow-ar.init.BaaBaaHaaInitLD)yehThreedotsbelow-ar.init.BaaBaaHaaInitLDe-ar.init.BaaBaaHaaInitLDbeheh-ar.init.BaaBaaIsolLD'noonThreedotsabove-ar.init.BaaBaaIsolLDpeh-ar.init.BaaBaaIsolLDbeeh-ar.init.BaaBaaIsolLDbeh-ar.init.BaaBaaIsolLD%noonTwodotsbelow-ar.init.BaaBaaIsolLD&yehFarsiVinverted-ar.init.BaaBaaIsolLD&yehFarsiFourbelow-ar.init.BaaBaaIsolLD'yehFarsiThreeabove-ar.init.BaaBaaIsolLD%yehFarsiTwoabove-ar.init.BaaBaaIsolLDyehFarsi-ar.init.BaaBaaIsolLDyeh-ar.init.BaaBaaIsolLDyehVabove-ar.init.BaaBaaIsolLD(behThreedotsupabove-ar.init.BaaBaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD(tehThreedotsupbelow-ar.init.BaaBaaIsolLD(behThreedotsupbelow-ar.init.BaaBaaIsolLD&behVinvertedbelow-ar.init.BaaBaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD!noonDotbelow-ar.init.BaaBaaIsolLD&yehThreedotsbelow-ar.init.BaaBaaIsolLDe-ar.init.BaaBaaIsolLDbeheh-ar.init.BaaBaaMemInitLD*noonThreedotsabove-ar.init.BaaBaaMemInitLDpeh-ar.init.BaaBaaMemInitLDbeeh-ar.init.BaaBaaMemInitLDbeh-ar.init.BaaBaaMemInitLD(noonTwodotsbelow-ar.init.BaaBaaMemInitLD)yehFarsiVinverted-ar.init.BaaBaaMemInitLD)yehFarsiFourbelow-ar.init.BaaBaaMemInitLD*yehFarsiThreeabove-ar.init.BaaBaaMemInitLD(yehFarsiTwoabove-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLDyeh-ar.init.BaaBaaMemInitLD!yehVabove-ar.init.BaaBaaMemInitLD+behThreedotsupabove-ar.init.BaaBaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD+tehThreedotsupbelow-ar.init.BaaBaaMemInitLD+behThreedotsupbelow-ar.init.BaaBaaMemInitLD)behVinvertedbelow-ar.init.BaaBaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD$noonDotbelow-ar.init.BaaBaaMemInitLD)yehThreedotsbelow-ar.init.BaaBaaMemInitLDe-ar.init.BaaBaaMemInitLDbeheh-ar.init.BaaSenAltInitLD*noonThreedotsabove-ar.init.BaaSenAltInitLDpeh-ar.init.BaaSenAltInitLDbeeh-ar.init.BaaSenAltInitLDbeh-ar.init.BaaSenAltInitLD(noonTwodotsbelow-ar.init.BaaSenAltInitLD)yehFarsiVinverted-ar.init.BaaSenAltInitLD)yehFarsiFourbelow-ar.init.BaaSenAltInitLD*yehFarsiThreeabove-ar.init.BaaSenAltInitLD(yehFarsiTwoabove-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLDyeh-ar.init.BaaSenAltInitLD!yehVabove-ar.init.BaaSenAltInitLD+behThreedotsupabove-ar.init.BaaSenAltInitLD3behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD+tehThreedotsupbelow-ar.init.BaaSenAltInitLD+behThreedotsupbelow-ar.init.BaaSenAltInitLD)behVinvertedbelow-ar.init.BaaSenAltInitLD/behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD$noonDotbelow-ar.init.BaaSenAltInitLD)yehThreedotsbelow-ar.init.BaaSenAltInitLDe-ar.init.BaaSenAltInitLDbeheh-ar.init.BaaHaaInitLD'noonThreedotsabove-ar.init.BaaHaaInitLDpeh-ar.init.BaaHaaInitLDbeeh-ar.init.BaaHaaInitLDbeh-ar.init.BaaHaaInitLD%noonTwodotsbelow-ar.init.BaaHaaInitLD&yehFarsiVinverted-ar.init.BaaHaaInitLD&yehFarsiFourbelow-ar.init.BaaHaaInitLD'yehFarsiThreeabove-ar.init.BaaHaaInitLD%yehFarsiTwoabove-ar.init.BaaHaaInitLDyehFarsi-ar.init.BaaHaaInitLDyeh-ar.init.BaaHaaInitLDyehVabove-ar.init.BaaHaaInitLD(behThreedotsupabove-ar.init.BaaHaaInitLD0behThreedotshorizontalbelow-ar.init.BaaHaaInitLD(tehThreedotsupbelow-ar.init.BaaHaaInitLD(behThreedotsupbelow-ar.init.BaaHaaInitLD&behVinvertedbelow-ar.init.BaaHaaInitLD,behTwodotsbelowDotabove-ar.init.BaaHaaInitLD!noonDotbelow-ar.init.BaaHaaInitLD&yehThreedotsbelow-ar.init.BaaHaaInitLDe-ar.init.BaaHaaInitLDbeheh-ar.init.BaaHaaMemInitLD*noonThreedotsabove-ar.init.BaaHaaMemInitLDpeh-ar.init.BaaHaaMemInitLDbeeh-ar.init.BaaHaaMemInitLDbeh-ar.init.BaaHaaMemInitLD(noonTwodotsbelow-ar.init.BaaHaaMemInitLD)yehFarsiVinverted-ar.init.BaaHaaMemInitLD)yehFarsiFourbelow-ar.init.BaaHaaMemInitLD*yehFarsiThreeabove-ar.init.BaaHaaMemInitLD(yehFarsiTwoabove-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLDyeh-ar.init.BaaHaaMemInitLD!yehVabove-ar.init.BaaHaaMemInitLD+behThreedotsupabove-ar.init.BaaHaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD+tehThreedotsupbelow-ar.init.BaaHaaMemInitLD+behThreedotsupbelow-ar.init.BaaHaaMemInitLD)behVinvertedbelow-ar.init.BaaHaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD$noonDotbelow-ar.init.BaaHaaMemInitLD)yehThreedotsbelow-ar.init.BaaHaaMemInitLDe-ar.init.BaaHaaMemInitLDbeheh-ar.init.HighLD!noonThreedotsabove-ar.init.HighLDpeh-ar.init.HighLDbeeh-ar.init.HighLDbeh-ar.init.HighLDnoonTwodotsbelow-ar.init.HighLD yehFarsiVinverted-ar.init.HighLD yehFarsiFourbelow-ar.init.HighLD!yehFarsiThreeabove-ar.init.HighLDyehFarsiTwoabove-ar.init.HighLDyehFarsi-ar.init.HighLDyeh-ar.init.HighLDyehVabove-ar.init.HighLD"behThreedotsupabove-ar.init.HighLD*behThreedotshorizontalbelow-ar.init.HighLD"tehThreedotsupbelow-ar.init.HighLD"behThreedotsupbelow-ar.init.HighLD behVinvertedbelow-ar.init.HighLD&behTwodotsbelowDotabove-ar.init.HighLDnoonDotbelow-ar.init.HighLD yehThreedotsbelow-ar.init.HighLDe-ar.init.HighLDbeheh-ar.init.WideLD!noonThreedotsabove-ar.init.WideLDpeh-ar.init.WideLDbeeh-ar.init.WideLDbeh-ar.init.WideLDnoonTwodotsbelow-ar.init.WideLD yehFarsiVinverted-ar.init.WideLD yehFarsiFourbelow-ar.init.WideLD!yehFarsiThreeabove-ar.init.WideLDyehFarsiTwoabove-ar.init.WideLDyehFarsi-ar.init.WideLDyeh-ar.init.WideLDyehVabove-ar.init.WideLD"behThreedotsupabove-ar.init.WideLD*behThreedotshorizontalbelow-ar.init.WideLD"tehThreedotsupbelow-ar.init.WideLD"behThreedotsupbelow-ar.init.WideLD behVinvertedbelow-ar.init.WideLD&behTwodotsbelowDotabove-ar.init.WideLDnoonDotbelow-ar.init.WideLD yehThreedotsbelow-ar.init.WideLDe-ar.init.WideLDbeheh-ar.init.BaaYaaIsolLD'noonThreedotsabove-ar.init.BaaYaaIsolLDpeh-ar.init.BaaYaaIsolLDbeeh-ar.init.BaaYaaIsolLDbeh-ar.init.BaaYaaIsolLD%noonTwodotsbelow-ar.init.BaaYaaIsolLD&yehFarsiVinverted-ar.init.BaaYaaIsolLD&yehFarsiFourbelow-ar.init.BaaYaaIsolLD'yehFarsiThreeabove-ar.init.BaaYaaIsolLD%yehFarsiTwoabove-ar.init.BaaYaaIsolLDyehFarsi-ar.init.BaaYaaIsolLDyeh-ar.init.BaaYaaIsolLDyehVabove-ar.init.BaaYaaIsolLD(behThreedotsupabove-ar.init.BaaYaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD(tehThreedotsupbelow-ar.init.BaaYaaIsolLD(behThreedotsupbelow-ar.init.BaaYaaIsolLD&behVinvertedbelow-ar.init.BaaYaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD!noonDotbelow-ar.init.BaaYaaIsolLD&yehThreedotsbelow-ar.init.BaaYaaIsolLDe-ar.init.BaaYaaIsolLDbeheh-ar.init.BaaMemIsolLD'noonThreedotsabove-ar.init.BaaMemIsolLDpeh-ar.init.BaaMemIsolLDbeeh-ar.init.BaaMemIsolLDbeh-ar.init.BaaMemIsolLD%noonTwodotsbelow-ar.init.BaaMemIsolLD&yehFarsiVinverted-ar.init.BaaMemIsolLD&yehFarsiFourbelow-ar.init.BaaMemIsolLD'yehFarsiThreeabove-ar.init.BaaMemIsolLD%yehFarsiTwoabove-ar.init.BaaMemIsolLDyehFarsi-ar.init.BaaMemIsolLDyeh-ar.init.BaaMemIsolLDyehVabove-ar.init.BaaMemIsolLD(behThreedotsupabove-ar.init.BaaMemIsolLD0behThreedotshorizontalbelow-ar.init.BaaMemIsolLD(tehThreedotsupbelow-ar.init.BaaMemIsolLD(behThreedotsupbelow-ar.init.BaaMemIsolLD&behVinvertedbelow-ar.init.BaaMemIsolLD,behTwodotsbelowDotabove-ar.init.BaaMemIsolLD!noonDotbelow-ar.init.BaaMemIsolLD&yehThreedotsbelow-ar.init.BaaMemIsolLDe-ar.init.BaaMemIsolLDbeheh-ar.init.BaaHehInitLD'noonThreedotsabove-ar.init.BaaHehInitLDpeh-ar.init.BaaHehInitLDbeeh-ar.init.BaaHehInitLDbeh-ar.init.BaaHehInitLD%noonTwodotsbelow-ar.init.BaaHehInitLD&yehFarsiVinverted-ar.init.BaaHehInitLD&yehFarsiFourbelow-ar.init.BaaHehInitLD'yehFarsiThreeabove-ar.init.BaaHehInitLD%yehFarsiTwoabove-ar.init.BaaHehInitLDyehFarsi-ar.init.BaaHehInitLDyeh-ar.init.BaaHehInitLDyehVabove-ar.init.BaaHehInitLD(behThreedotsupabove-ar.init.BaaHehInitLD0behThreedotshorizontalbelow-ar.init.BaaHehInitLD(tehThreedotsupbelow-ar.init.BaaHehInitLD(behThreedotsupbelow-ar.init.BaaHehInitLD&behVinvertedbelow-ar.init.BaaHehInitLD,behTwodotsbelowDotabove-ar.init.BaaHehInitLD!noonDotbelow-ar.init.BaaHehInitLD&yehThreedotsbelow-ar.init.BaaHehInitLDe-ar.init.BaaHehInitLDyehKashmiri-ar.initLD yehKashmiri-ar.init.BaaRaaIsolLDyehKashmiri-ar.init.BaaDalLD#yehKashmiri-ar.init.BaaMemHaaInitLDyehKashmiri-ar.init.BaaBaaYaaLD yehKashmiri-ar.init.BaaNonIsolLD yehKashmiri-ar.init.BaaSenInitLD yehKashmiri-ar.init.BaaMemInitLD#yehKashmiri-ar.init.BaaBaaHaaInitLD yehKashmiri-ar.init.BaaBaaIsolLD#yehKashmiri-ar.init.BaaBaaMemInitLD#yehKashmiri-ar.init.BaaSenAltInitLD yehKashmiri-ar.init.BaaHaaInitLD#yehKashmiri-ar.init.BaaHaaMemInitLDyehKashmiri-ar.init.HighLDyehKashmiri-ar.init.WideLD yehKashmiri-ar.init.BaaYaaIsolLD yehKashmiri-ar.init.BaaMemIsolLD yehKashmiri-ar.init.BaaHehInitLDmeemDotabove-ar.init.MemHehInitaMem.init.MemHehInitmeem-ar.init.MemHehInitmeemDotbelow-ar.init.MemHehInitalefabove-ar.isolalefabove-ar.medi hamza-ar.medihamza-ar.floatkashida-ar.long1 zero-ar.small one-ar.small two-ar.smallthree-ar.small four-ar.small five-ar.small six-ar.smallseven-ar.smalleight-ar.small nine-ar.smallzeroFarsi-ar.smalloneFarsi-ar.smalltwoFarsi-ar.smallthreeFarsi-ar.smallfourFarsi-ar.smallfiveFarsi-ar.smallsixFarsi-ar.smallsevenFarsi-ar.smalleightFarsi-ar.smallnineFarsi-ar.smallfourFarsi-ar.urd.smallsixFarsi-ar.urd.smallsevenFarsi-ar.urd.smallopenfathatan-ar.smallfatha-ar.small2dammatan-ar.smallhighwaw-ar.mediyehabove-ar.medi radical.rtlm dot.percentmeem-ar.medi.KafMemMediTatweelmeem-ar.fina.LamMemFinaExtendedmeem-ar.fina.KafMemFinaExtendedaMem.fina.Extendedmeem-ar.fina.KafMemIsolExtended kashida-ar.1alef-ar.fina.Tatweel kashida-ar.2 kashida-ar.3 kashida-ar.4#sheenDotbelow-ar.init.SenBaaMemInit.seenTwodotsverticalabove-ar.init.SenBaaMemInitseen-ar.init.SenBaaMemInit(seenVinvertedabove-ar.init.SenBaaMemInit#seenFourabove-ar.init.SenBaaMemInitsheen-ar.init.SenBaaMemInit3seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit'seenFourdotsabove-ar.init.SenBaaMemInit*seenDotbelowDotabove-ar.init.SenBaaMemInit(seenThreedotsbelow-ar.init.SenBaaMemInit)sheenThreedotsbelow-ar.init.SenBaaMemInit%sadTwodotsbelow-ar.init.SenBaaMemInit!dadDotbelow-ar.init.SenBaaMemInitdad-ar.init.SenBaaMemInit"sadThreedots-ar.init.SenBaaMemInitsad-ar.init.SenBaaMemInit aYaaBari.isol aYaaBari.finaaYaaBari.fina.PostToothaSen.init.YaaBariaSad.init.YaaBariyehbarreeThreeabove-ar.fina%yehbarreeThreeabove-ar.fina.PostToothyehbarreeTwoabove-ar.fina#yehbarreeTwoabove-ar.fina.PostToothyehbarree-ar.finayehbarree-ar.fina.PostToothsheenDotbelow-ar.init.YaaBari(seenTwodotsverticalabove-ar.init.YaaBariseen-ar.init.YaaBari"seenVinvertedabove-ar.init.YaaBariseenFourabove-ar.init.YaaBarisheen-ar.init.YaaBari-seenTahTwodotshorizontalabove-ar.init.YaaBari!seenFourdotsabove-ar.init.YaaBari$seenDotbelowDotabove-ar.init.YaaBari"seenThreedotsbelow-ar.init.YaaBari#sheenThreedotsbelow-ar.init.YaaBarisadTwodotsbelow-ar.init.YaaBaridadDotbelow-ar.init.YaaBaridad-ar.init.YaaBarisadThreedots-ar.init.YaaBarisad-ar.init.YaaBariaYaaBari.fina.PostAscenderalef-ar.fina.WideaBaa.init.YaaBariaFaa.init.YaaBariwawSmall-ar.lowaLam.init.YaaBariaKaf.init.YaaBari+kehehTwodotshorizontalabove-ar.init.YaaBari#kehehThreedotsbelow-ar.init.YaaBari)kafTwodotshorizontalabove-ar.init.YaaBari%kehehThreedotsupbelow-ar.init.YaaBarikaf-ar.init.YaaBarigafRing-ar.init.YaaBarigueh-ar.init.YaaBarigafTwodotsbelow-ar.init.YaaBarikafRing-ar.init.YaaBarikafDotabove-ar.init.YaaBaring-ar.init.YaaBari!kafThreedotsbelow-ar.init.YaaBarigaf-ar.init.YaaBarikeheh-ar.init.YaaBarigafThreedots-ar.init.YaaBari#kehehThreedotsabove-ar.init.YaaBarikehehDotabove-ar.init.YaaBaringoeh-ar.init.YaaBari!yehFarsiFourbelow-ar.init.YaaBaribeheh-ar.init.YaaBari"yehFarsiThreeabove-ar.init.YaaBarinoonRing-ar.init.YaaBari+behThreedotshorizontalbelow-ar.init.YaaBaribehVabove-ar.init.YaaBarinoonTahabove-ar.init.YaaBariyehVabove-ar.init.YaaBari yehFarsiTwoabove-ar.init.YaaBari"noonThreedotsabove-ar.init.YaaBariyehHamzaabove-ar.init.YaaBaribehDotless-ar.init.YaaBariyehKashmiri-ar.init.YaaBariyeh-ar.init.YaaBarirnoon-ar.init.YaaBariteheh-ar.init.YaaBari!behVinvertedbelow-ar.init.YaaBari tehThreedotsdown-ar.init.YaaBaripeh-ar.init.YaaBaribeeh-ar.init.YaaBaribeh-ar.init.YaaBaritteheh-ar.init.YaaBari#behThreedotsupabove-ar.init.YaaBarinoon-ar.init.YaaBari#tehThreedotsupbelow-ar.init.YaaBari#behThreedotsupbelow-ar.init.YaaBariteh-ar.init.YaaBarihighhamzaYeh-ar.init.YaaBari!yehFarsiVinverted-ar.init.YaaBaritheh-ar.init.YaaBaritteh-ar.init.YaaBarinoonDotbelow-ar.init.YaaBarinoonVabove-ar.init.YaaBarialefMaksura-ar.init.YaaBaritehRing-ar.init.YaaBari'behTwodotsbelowDotabove-ar.init.YaaBari!yehThreedotsbelow-ar.init.YaaBarie-ar.init.YaaBarinoonghunna-ar.init.YaaBariyehFarsi-ar.init.YaaBari noonTwodotsbelow-ar.init.YaaBari(yehbarreeThreeabove-ar.fina.PostAscender&yehbarreeTwoabove-ar.fina.PostAscenderyehbarree-ar.fina.PostAscenderlamVabove-ar.init.YaaBari!lamThreedotsabove-ar.init.YaaBarilam-ar.init.YaaBari!lamThreedotsbelow-ar.init.YaaBarilamDotabove-ar.init.YaaBarilamBar-ar.init.YaaBariqafDotless-ar.init.YaaBari#fehThreedotsupbelow-ar.init.YaaBarifehTwodotsbelow-ar.init.YaaBariqaf-ar.init.YaaBarifeh-ar.init.YaaBari!qafThreedotsabove-ar.init.YaaBarifehDotless-ar.init.YaaBari fehDotmovedbelow-ar.init.YaaBarifehDotbelow-ar.init.YaaBariveh-ar.init.YaaBari!fehThreedotsbelow-ar.init.YaaBaripeheh-ar.init.YaaBariqafDotabove-ar.init.YaaBariaYaaBari.fina.PostAynaHaa.init.YaaBariaAyn.init.YaaBariaMem.init.YaaBari#yehbarreeThreeabove-ar.fina.PostAyn!yehbarreeTwoabove-ar.fina.PostAynyehbarree-ar.fina.PostAynmeemDotabove-ar.init.YaaBarimeem-ar.init.YaaBarimeemDotbelow-ar.init.YaaBarikhah-ar.init.YaaBarihah-ar.init.YaaBarihahHamzaabove-ar.init.YaaBaritcheheh-ar.init.YaaBari!hahThreedotsabove-ar.init.YaaBarijeem-ar.init.YaaBari'hahTwodotsverticalabove-ar.init.YaaBari)hahTwodotshorizontalabove-ar.init.YaaBaridyeh-ar.init.YaaBari,hahTahTwodotshorizontalabove-ar.init.YaaBarihahTahbelow-ar.init.YaaBarinyeh-ar.init.YaaBaritchehDotabove-ar.init.YaaBarihahFourbelow-ar.init.YaaBari#hahThreedotsupbelow-ar.init.YaaBarihahTahabove-ar.init.YaaBaritcheh-ar.init.YaaBarighainDotbelow-ar.init.YaaBarighain-ar.init.YaaBari%ainThreedotsdownabove-ar.init.YaaBari)ainTwodotshorizontalabove-ar.init.YaaBari'ainTwodotsverticalabove-ar.init.YaaBariainThreedots-ar.init.YaaBariain-ar.init.YaaBariaHeh.init.YaaBariheh-ar.init.YaaBarihehgoal-ar.init.YaaBariaTaa.init.YaaBareezah-ar.init.YaaBaritah-ar.init.YaaBaritahThreedots-ar.init.YaaBariaHehKnotted.isolhehDoachashmee-ar.inithehVinvertedabove-ar.inithehDoachashmee-ar.finahehVinvertedabove-ar.finahehDoachashmee-ar.medihehVinvertedabove-ar.mediaHehKnotted.finaaHeh.medi.HehYaaFinaheh-ar.medi.HehYaaFinahehgoal-ar.medi.HehYaaFinaheh-ar.medi.PostToothHehYaahehgoal-ar.medi.PostToothHehYaa hamza.abovezero-ar.medium one-ar.medium two-ar.mediumthree-ar.mediumfour-ar.mediumfive-ar.medium six-ar.mediumseven-ar.mediumeight-ar.mediumnine-ar.mediumzeroFarsi-ar.mediumoneFarsi-ar.mediumtwoFarsi-ar.mediumthreeFarsi-ar.mediumfourFarsi-ar.mediumfiveFarsi-ar.mediumsixFarsi-ar.mediumsevenFarsi-ar.mediumeightFarsi-ar.mediumnineFarsi-ar.mediumfourFarsi-ar.urd.mediumsixFarsi-ar.urd.mediumsevenFarsi-ar.urd.mediumaAlf.fina.NarrowalefMadda-ar.fina.NarrowalefHamzaabove-ar.fina.NarrowalefHamzabelow-ar.fina.Narrowalef-ar.fina.NarrowalefWasla-ar.fina.Narrow!alefWavyhamzaabove-ar.fina.Narrow!alefWavyhamzabelow-ar.fina.NarrowalefTwoabove-ar.fina.NarrowalefThreeabove-ar.fina.Narrow smallv.aboveaHehKnotted.init.YaaBarihehDoachashmee-ar.init.YaaBaribehVbelow-ar.finabehVbelow-ar.initbehVbelow-ar.medibehVbelow-ar.init.BaaRaaIsolbehVbelow-ar.medi.BaaMemFinabehVbelow-ar.medi.LamBaaMemInitbehVbelow-ar.init.BaaDalbehVbelow-ar.init.BaaMemHaaInitbehVbelow-ar.init.BaaBaaYaabehVbelow-ar.medi.BaaBaaYaabehVbelow-ar.medi.KafBaaInitbehVbelow-ar.medi.BaaBaaInitbehVbelow-ar.init.BaaNonIsolbehVbelow-ar.init.BaaSenInitbehVbelow-ar.medi.BaaRaaFinabehVbelow-ar.init.BaaMemInitbehVbelow-ar.init.BaaBaaHaaInitbehVbelow-ar.medi.BaaBaaHaaInitbehVbelow-ar.medi.SenBaaMemInitbehVbelow-ar.init.BaaBaaIsolbehVbelow-ar.fina.BaaBaaIsolbehVbelow-ar.init.BaaBaaMemInitbehVbelow-ar.medi.BaaBaaMemInitbehVbelow-ar.medi.KafBaaMedibehVbelow-ar.medi.BaaNonFinabehVbelow-ar.medi.BaaYaaFinabehVbelow-ar.init.BaaSenAltInitbehVbelow-ar.init.AboveHaabehVbelow-ar.init.BaaHaaInitbehVbelow-ar.init.BaaHaaMemInitbehVbelow-ar.init.HighbehVbelow-ar.medi.HighbehVbelow-ar.init.WidebehVbelow-ar.init.BaaYaaIsolbehVbelow-ar.init.BaaMemIsolbehVbelow-ar.medi.BaaMemAlfFinabehVbelow-ar.init.BaaHehInitbehVbelow-ar.medi.BaaHehMedibehVbelow-ar.init.LDbehVbelow-ar.init.BaaRaaIsolLDbehVbelow-ar.init.BaaDalLD!behVbelow-ar.init.BaaMemHaaInitLDbehVbelow-ar.init.BaaBaaYaaLDbehVbelow-ar.init.BaaNonIsolLDbehVbelow-ar.init.BaaSenInitLDbehVbelow-ar.init.BaaMemInitLD!behVbelow-ar.init.BaaBaaHaaInitLDbehVbelow-ar.init.BaaBaaIsolLD!behVbelow-ar.init.BaaBaaMemInitLD!behVbelow-ar.init.BaaSenAltInitLDbehVbelow-ar.init.BaaHaaInitLD!behVbelow-ar.init.BaaHaaMemInitLDbehVbelow-ar.init.HighLDbehVbelow-ar.init.WideLDbehVbelow-ar.init.BaaYaaIsolLDbehVbelow-ar.init.BaaMemIsolLDbehVbelow-ar.init.BaaHehInitLDbehVbelow-ar.init.YaaBari vbelow-ar.low number-ar.4smallv.above.inverted zero-ar.prop one-ar.prop two-ar.prop three-ar.prop four-ar.prop five-ar.prop six-ar.prop seven-ar.prop eight-ar.prop nine-ar.propzeroFarsi-ar.proponeFarsi-ar.proptwoFarsi-ar.propthreeFarsi-ar.propfourFarsi-ar.propfiveFarsi-ar.propsixFarsi-ar.propsevenFarsi-ar.propeightFarsi-ar.propnineFarsi-ar.propfourFarsi-ar.urd.propsixFarsi-ar.urd.propsevenFarsi-ar.urd.propalefHamzaabove-ar.fina.WidealefWasla-ar.fina.WideaBaa.init.BaaBaaHeh#yehFarsiFourbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHeh$yehFarsiThreeabove-ar.init.BaaBaaHehnoonRing-ar.init.BaaBaaHeh-behThreedotshorizontalbelow-ar.init.BaaBaaHehbehVabove-ar.init.BaaBaaHehnoonTahabove-ar.init.BaaBaaHehyehVabove-ar.init.BaaBaaHeh"yehFarsiTwoabove-ar.init.BaaBaaHeh$noonThreedotsabove-ar.init.BaaBaaHehyehHamzaabove-ar.init.BaaBaaHehbehDotless-ar.init.BaaBaaHehyehKashmiri-ar.init.BaaBaaHehyeh-ar.init.BaaBaaHehrnoon-ar.init.BaaBaaHehteheh-ar.init.BaaBaaHeh#behVinvertedbelow-ar.init.BaaBaaHeh"tehThreedotsdown-ar.init.BaaBaaHehpeh-ar.init.BaaBaaHehbeeh-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehtteheh-ar.init.BaaBaaHeh%behThreedotsupabove-ar.init.BaaBaaHehnoon-ar.init.BaaBaaHeh%tehThreedotsupbelow-ar.init.BaaBaaHeh%behThreedotsupbelow-ar.init.BaaBaaHehteh-ar.init.BaaBaaHehhighhamzaYeh-ar.init.BaaBaaHeh#yehFarsiVinverted-ar.init.BaaBaaHehtheh-ar.init.BaaBaaHehtteh-ar.init.BaaBaaHehnoonDotbelow-ar.init.BaaBaaHehnoonVabove-ar.init.BaaBaaHehalefMaksura-ar.init.BaaBaaHehtehRing-ar.init.BaaBaaHeh)behTwodotsbelowDotabove-ar.init.BaaBaaHeh#yehThreedotsbelow-ar.init.BaaBaaHehe-ar.init.BaaBaaHehnoonghunna-ar.init.BaaBaaHehyehFarsi-ar.init.BaaBaaHeh"noonTwodotsbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHehLD&noonThreedotsabove-ar.init.BaaBaaHehLDpeh-ar.init.BaaBaaHehLDbeeh-ar.init.BaaBaaHehLDbeh-ar.init.BaaBaaHehLD$noonTwodotsbelow-ar.init.BaaBaaHehLD%yehFarsiVinverted-ar.init.BaaBaaHehLD%yehFarsiFourbelow-ar.init.BaaBaaHehLD&yehFarsiThreeabove-ar.init.BaaBaaHehLD$yehFarsiTwoabove-ar.init.BaaBaaHehLDyehFarsi-ar.init.BaaBaaHehLDyeh-ar.init.BaaBaaHehLDyehVabove-ar.init.BaaBaaHehLD'behThreedotsupabove-ar.init.BaaBaaHehLD/behThreedotshorizontalbelow-ar.init.BaaBaaHehLD'tehThreedotsupbelow-ar.init.BaaBaaHehLD'behThreedotsupbelow-ar.init.BaaBaaHehLD%behVinvertedbelow-ar.init.BaaBaaHehLD+behTwodotsbelowDotabove-ar.init.BaaBaaHehLD noonDotbelow-ar.init.BaaBaaHehLD%yehThreedotsbelow-ar.init.BaaBaaHehLDe-ar.init.BaaBaaHehLDcirclebelow-ar keheh-ar.altkeheh-ar.alt.fina gaf-ar.altgaf-ar.alt.finagafRing-ar.altgafRing-ar.alt.fina ngoeh-ar.altngoeh-ar.alt.finagafTwodotsbelow-ar.altgafTwodotsbelow-ar.alt.fina gueh-ar.altgueh-ar.alt.finagafThreedots-ar.altgafThreedots-ar.alt.finakehehDotabove-ar.altkehehDotabove-ar.alt.finakehehThreedotsabove-ar.altkehehThreedotsabove-ar.alt.finakehehThreedotsupbelow-ar.alt!kehehThreedotsupbelow-ar.alt.fina"kehehTwodotshorizontalabove-ar.alt'kehehTwodotshorizontalabove-ar.alt.finakehehThreedotsbelow-ar.altkehehThreedotsbelow-ar.alt.fina aGaf.isol aGaf.fina number-ar.3pagenumber-ar.3 kashida-ar.05aYaaBari.fina.PostToothFinaaBaa.medi.YaaBari!yehFarsiFourbelow-ar.medi.YaaBaribeheh-ar.medi.YaaBari"yehFarsiThreeabove-ar.medi.YaaBarinoonRing-ar.medi.YaaBari+behThreedotshorizontalbelow-ar.medi.YaaBaribehVabove-ar.medi.YaaBarinoonTahabove-ar.medi.YaaBariyehVabove-ar.medi.YaaBari yehFarsiTwoabove-ar.medi.YaaBari"noonThreedotsabove-ar.medi.YaaBariyehHamzaabove-ar.medi.YaaBaribehDotless-ar.medi.YaaBariyehKashmiri-ar.medi.YaaBariyeh-ar.medi.YaaBarirnoon-ar.medi.YaaBariteheh-ar.medi.YaaBari!behVinvertedbelow-ar.medi.YaaBari tehThreedotsdown-ar.medi.YaaBaripeh-ar.medi.YaaBaribeeh-ar.medi.YaaBaribeh-ar.medi.YaaBaritteheh-ar.medi.YaaBari#behThreedotsupabove-ar.medi.YaaBarinoon-ar.medi.YaaBari#tehThreedotsupbelow-ar.medi.YaaBari#behThreedotsupbelow-ar.medi.YaaBariteh-ar.medi.YaaBari!yehFarsiVinverted-ar.medi.YaaBaritheh-ar.medi.YaaBaritteh-ar.medi.YaaBarinoonDotbelow-ar.medi.YaaBarinoonVabove-ar.medi.YaaBarialefMaksura-ar.medi.YaaBaritehRing-ar.medi.YaaBari'behTwodotsbelowDotabove-ar.medi.YaaBari!yehThreedotsbelow-ar.medi.YaaBarie-ar.medi.YaaBarinoonghunna-ar.medi.YaaBariyehFarsi-ar.medi.YaaBari noonTwodotsbelow-ar.medi.YaaBari)yehbarreeThreeabove-ar.fina.PostToothFina'yehbarreeTwoabove-ar.fina.PostToothFinayehbarree-ar.fina.PostToothFinabehVbelow-ar.medi.YaaBariaBaa.init.BaaBaaYaaBari'yehFarsiFourbelow-ar.init.BaaBaaYaaBaribeheh-ar.init.BaaBaaYaaBari(yehFarsiThreeabove-ar.init.BaaBaaYaaBarinoonRing-ar.init.BaaBaaYaaBari1behThreedotshorizontalbelow-ar.init.BaaBaaYaaBaribehVabove-ar.init.BaaBaaYaaBari"noonTahabove-ar.init.BaaBaaYaaBariyehVabove-ar.init.BaaBaaYaaBari&yehFarsiTwoabove-ar.init.BaaBaaYaaBari(noonThreedotsabove-ar.init.BaaBaaYaaBari#yehHamzaabove-ar.init.BaaBaaYaaBari behDotless-ar.init.BaaBaaYaaBari!yehKashmiri-ar.init.BaaBaaYaaBariyeh-ar.init.BaaBaaYaaBarirnoon-ar.init.BaaBaaYaaBariteheh-ar.init.BaaBaaYaaBari'behVinvertedbelow-ar.init.BaaBaaYaaBari&tehThreedotsdown-ar.init.BaaBaaYaaBaripeh-ar.init.BaaBaaYaaBaribeeh-ar.init.BaaBaaYaaBaribeh-ar.init.BaaBaaYaaBaritteheh-ar.init.BaaBaaYaaBari)behThreedotsupabove-ar.init.BaaBaaYaaBarinoon-ar.init.BaaBaaYaaBari)tehThreedotsupbelow-ar.init.BaaBaaYaaBari)behThreedotsupbelow-ar.init.BaaBaaYaaBariteh-ar.init.BaaBaaYaaBari"highhamzaYeh-ar.init.BaaBaaYaaBari'yehFarsiVinverted-ar.init.BaaBaaYaaBaritheh-ar.init.BaaBaaYaaBaritteh-ar.init.BaaBaaYaaBari"noonDotbelow-ar.init.BaaBaaYaaBari noonVabove-ar.init.BaaBaaYaaBari!alefMaksura-ar.init.BaaBaaYaaBaritehRing-ar.init.BaaBaaYaaBari-behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari'yehThreedotsbelow-ar.init.BaaBaaYaaBarie-ar.init.BaaBaaYaaBari noonghunna-ar.init.BaaBaaYaaBariyehFarsi-ar.init.BaaBaaYaaBari&noonTwodotsbelow-ar.init.BaaBaaYaaBaribehVbelow-ar.init.BaaBaaYaaBaritcheheh-ar.init.BaaYaaBarijeem-ar.init.BaaYaaBaridyeh-ar.init.BaaYaaBari/hahTahTwodotshorizontalabove-ar.init.BaaYaaBarihahTahbelow-ar.init.BaaYaaBarinyeh-ar.init.BaaYaaBari tchehDotabove-ar.init.BaaYaaBarihahFourbelow-ar.init.BaaYaaBari&hahThreedotsupbelow-ar.init.BaaYaaBaritcheh-ar.init.BaaYaaBariaHaa.init.BaaYaaBaribehVbelow-ar.init.BaaBaaHehbehVbelow-ar.init.BaaBaaHehLDyehKashmiri-ar.init.BaaBaaHehLDdammainverted-ar.urddammainverted-ar.smallkasra-ar.smallkasratan-ar.small zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.smallyehFarsiTwodotsabove-ar.inityehFarsiThreedotsabove-ar.inityehFarsiTwodotsabove-ar.mediyehFarsiThreedotsabove-ar.medi'yehFarsiTwodotsabove-ar.init.BaaRaaIsol)yehFarsiThreedotsabove-ar.init.BaaRaaIsol'yehFarsiTwodotsabove-ar.medi.BaaMemFina)yehFarsiThreedotsabove-ar.medi.BaaMemFina*yehFarsiTwodotsabove-ar.medi.LamBaaMemInit,yehFarsiThreedotsabove-ar.medi.LamBaaMemInit#yehFarsiTwodotsabove-ar.init.BaaDal%yehFarsiThreedotsabove-ar.init.BaaDal*yehFarsiTwodotsabove-ar.init.BaaMemHaaInit,yehFarsiThreedotsabove-ar.init.BaaMemHaaInit&yehFarsiTwodotsabove-ar.init.BaaBaaYaa(yehFarsiThreedotsabove-ar.init.BaaBaaYaa&yehFarsiTwodotsabove-ar.medi.BaaBaaYaa(yehFarsiThreedotsabove-ar.medi.BaaBaaYaa'yehFarsiTwodotsabove-ar.medi.KafBaaInit)yehFarsiThreedotsabove-ar.medi.KafBaaInit'yehFarsiTwodotsabove-ar.medi.BaaBaaInit)yehFarsiThreedotsabove-ar.medi.BaaBaaInit'yehFarsiTwodotsabove-ar.init.BaaNonIsol)yehFarsiThreedotsabove-ar.init.BaaNonIsol'yehFarsiTwodotsabove-ar.init.BaaSenInit)yehFarsiThreedotsabove-ar.init.BaaSenInit'yehFarsiTwodotsabove-ar.medi.BaaRaaFina)yehFarsiThreedotsabove-ar.medi.BaaRaaFina'yehFarsiTwodotsabove-ar.init.BaaMemInit)yehFarsiThreedotsabove-ar.init.BaaMemInit*yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.SenBaaMemInit,yehFarsiThreedotsabove-ar.medi.SenBaaMemInit'yehFarsiTwodotsabove-ar.init.BaaBaaIsol)yehFarsiThreedotsabove-ar.init.BaaBaaIsol*yehFarsiTwodotsabove-ar.init.BaaBaaMemInit,yehFarsiThreedotsabove-ar.init.BaaBaaMemInit*yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit,yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit'yehFarsiTwodotsabove-ar.medi.KafBaaMedi)yehFarsiThreedotsabove-ar.medi.KafBaaMedi'yehFarsiTwodotsabove-ar.medi.BaaNonFina)yehFarsiThreedotsabove-ar.medi.BaaNonFina'yehFarsiTwodotsabove-ar.medi.BaaYaaFina)yehFarsiThreedotsabove-ar.medi.BaaYaaFina*yehFarsiTwodotsabove-ar.init.BaaSenAltInit,yehFarsiThreedotsabove-ar.init.BaaSenAltInit%yehFarsiTwodotsabove-ar.init.AboveHaa'yehFarsiThreedotsabove-ar.init.AboveHaa'yehFarsiTwodotsabove-ar.init.BaaHaaInit)yehFarsiThreedotsabove-ar.init.BaaHaaInit*yehFarsiTwodotsabove-ar.init.BaaHaaMemInit,yehFarsiThreedotsabove-ar.init.BaaHaaMemInit!yehFarsiTwodotsabove-ar.init.High#yehFarsiThreedotsabove-ar.init.High!yehFarsiTwodotsabove-ar.medi.High#yehFarsiThreedotsabove-ar.medi.High!yehFarsiTwodotsabove-ar.init.Wide#yehFarsiThreedotsabove-ar.init.Wide'yehFarsiTwodotsabove-ar.init.BaaYaaIsol)yehFarsiThreedotsabove-ar.init.BaaYaaIsol'yehFarsiTwodotsabove-ar.init.BaaMemIsol)yehFarsiThreedotsabove-ar.init.BaaMemIsol*yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina,yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina'yehFarsiTwodotsabove-ar.init.BaaHehInit)yehFarsiThreedotsabove-ar.init.BaaHehInit'yehFarsiTwodotsabove-ar.medi.BaaHehMedi)yehFarsiThreedotsabove-ar.medi.BaaHehMediyehFarsiTwodotsabove-ar.init.LD!yehFarsiThreedotsabove-ar.init.LD)yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD%yehFarsiTwodotsabove-ar.init.BaaDalLD'yehFarsiThreedotsabove-ar.init.BaaDalLD,yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD(yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD*yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD)yehFarsiTwodotsabove-ar.init.BaaNonIsolLD+yehFarsiThreedotsabove-ar.init.BaaNonIsolLD)yehFarsiTwodotsabove-ar.init.BaaSenInitLD+yehFarsiThreedotsabove-ar.init.BaaSenInitLD)yehFarsiTwodotsabove-ar.init.BaaMemInitLD+yehFarsiThreedotsabove-ar.init.BaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD)yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD,yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD.yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD)yehFarsiTwodotsabove-ar.init.BaaHaaInitLD+yehFarsiThreedotsabove-ar.init.BaaHaaInitLD,yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD#yehFarsiTwodotsabove-ar.init.HighLD%yehFarsiThreedotsabove-ar.init.HighLD#yehFarsiTwodotsabove-ar.init.WideLD%yehFarsiThreedotsabove-ar.init.WideLD)yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD)yehFarsiTwodotsabove-ar.init.BaaMemIsolLD+yehFarsiThreedotsabove-ar.init.BaaMemIsolLD)yehFarsiTwodotsabove-ar.init.BaaHehInitLD+yehFarsiThreedotsabove-ar.init.BaaHehInitLD$yehFarsiTwodotsabove-ar.init.YaaBari&yehFarsiThreedotsabove-ar.init.YaaBari&yehFarsiTwodotsabove-ar.init.BaaBaaHeh(yehFarsiThreedotsabove-ar.init.BaaBaaHeh(yehFarsiTwodotsabove-ar.init.BaaBaaHehLD*yehFarsiThreedotsabove-ar.init.BaaBaaHehLD$yehFarsiTwodotsabove-ar.medi.YaaBari&yehFarsiThreedotsabove-ar.medi.YaaBari*yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari,yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari ampersand.aralam-ar.medi.Lellah2 kashida-ar.5 kashida-ar.6 kashida-ar.7aKaf.init.PreHehaKaf.medi.PreHeh*kehehTwodotshorizontalabove-ar.init.PreHeh"kehehThreedotsbelow-ar.init.PreHeh(kafTwodotshorizontalabove-ar.init.PreHeh$kehehThreedotsupbelow-ar.init.PreHehkaf-ar.init.PreHehgafRing-ar.init.PreHehgueh-ar.init.PreHehgafTwodotsbelow-ar.init.PreHehkafRing-ar.init.PreHehkafDotabove-ar.init.PreHehng-ar.init.PreHeh kafThreedotsbelow-ar.init.PreHehgaf-ar.init.PreHehkeheh-ar.init.PreHehgafThreedots-ar.init.PreHeh"kehehThreedotsabove-ar.init.PreHehkehehDotabove-ar.init.PreHehngoeh-ar.init.PreHeh*kehehTwodotshorizontalabove-ar.medi.PreHeh"kehehThreedotsbelow-ar.medi.PreHeh(kafTwodotshorizontalabove-ar.medi.PreHeh$kehehThreedotsupbelow-ar.medi.PreHehkaf-ar.medi.PreHehgafRing-ar.medi.PreHehgueh-ar.medi.PreHehgafTwodotsbelow-ar.medi.PreHehkafRing-ar.medi.PreHehkafDotabove-ar.medi.PreHehng-ar.medi.PreHeh kafThreedotsbelow-ar.medi.PreHehgaf-ar.medi.PreHehkeheh-ar.medi.PreHehgafThreedots-ar.medi.PreHeh"kehehThreedotsabove-ar.medi.PreHehkehehDotabove-ar.medi.PreHehngoeh-ar.medi.PreHehsmallnoon.abovesmallteh.abovesmallmeem.above zero-ar.numr one-ar.numr two-ar.numr three-ar.numr four-ar.numr five-ar.numr six-ar.numr seven-ar.numr eight-ar.numr nine-ar.numrzeroFarsi-ar.numroneFarsi-ar.numrtwoFarsi-ar.numrthreeFarsi-ar.numrfourFarsi-ar.numrfiveFarsi-ar.numrsixFarsi-ar.numrsevenFarsi-ar.numreightFarsi-ar.numrnineFarsi-ar.numrfourFarsi-ar.urd.numrsixFarsi-ar.urd.numrsevenFarsi-ar.urd.numrkafRing-ar.altkafRing-ar.alt.fina_FDFD _arrowhead exclam.latnuni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsGcarongcaronuni0237uni02BBuni02BCuni02BEuni02BF gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307uni0308uni030Auni030Cuni0312uni0315uni0326uni0327uni0328uni1E02uni1E03uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E1Euni1E1Funi1E24uni1E25uni1E28uni1E29uni1E2Auni1E2Buni1E40uni1E41uni1E56uni1E57uni1E60uni1E61uni1E62uni1E63uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6FWgravewgraveWacutewacute Wdieresis wdieresisuni1E92uni1E93uni1E96uni1E97Ygraveygraveuni2010uni2011 figuredashuni2015 quotereverseduni201Fonedotenleaderuni202Fminuteseconduni2038uni203Euni2042uni2074Eurouni2213parenleft.latnparenright.latn period.latn slash.latnbracketleft.latnbackslash.latnbracketright.latnbraceleft.latnbar.latnbraceright.latnguillemotleft.latnguillemotright.latn gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0307.cap uni0323.cap uni030B.cap uni0308.capuni0308.narrow uni030C.capf_ff_if_f_if_lf_f_lf_bf_f_bf_kf_f_kf_hf_f_hf_jf_f_ji.TRK zero.propone.proptwo.prop three.prop four.prop five.propsix.prop seven.prop eight.prop nine.prop zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numrone.numrtwo.numr three.numr four.numr five.numrsix.numr seven.numr eight.numr nine.numr _arrowhead2_x uni0305.100 uni0305.1000 uni0305.1100 uni0305.11500 uni0305.1200 uni0305.1300 uni0305.1500 uni0305.1600 uni0305.1700 uni0305.1800 uni0305.1900 uni0305.200 uni0305.2000 uni0305.2200 uni0305.300 uni0305.400 uni0305.500 uni0305.600 uni0305.700 uni0305.800 uni0305.900bH *013Z[o~  ?BCLf&'+:<{} J L | ~RT NOOPilY\KLYZ (,:BPXfnx|Zf6   *   "t]eZ'[\^_abdgjkLMOXY\`f O]`aeloNQZ^O DDFLTarablatncurskernkern markmkmkss057 4>H$,4<DLT\dlt|R\fp z$,~zTRK z+z51234-./0^ARA ^KSH ^MLY ^SND ^URD ^ !"#$&()*6!"#$&()*,6RV   "~8.&  Zjx8BT &$.8FNV^ /6 )HI)>I)4Z('TI) '' I)''I(~'['vzI(''XI-4+L. '&'.'I'F['H'J*(b ':&'n*x+*&&')"'J'>&'g'.':'@%' &r'2&^>SS0j&''H%'L'*& 'nn' 'F(,'P''Z''d(>'n'%-nn'%- nn/+N(pnn==(* *1b;1+).d((( zzzI/*/nn'';;==++>CdXX==yy==II;;j;;p;v;|;;;;;;;;;;;;;;;;;;;;;j;j;j;j;j;;;;;;;;p;p;p;p;p;p;p;p;p;p;p;v;|;|;|;|;|;|;|;|;|;|;|;|;|;|;|;|;|;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;abHeH9     5-,1-*0' + !   MF-/,>e]Zr{8a1B^ x :@FF Xfc1bc &1 eo$%&o(VW)py (*%ֿĿпʿп x y]`aeloNQZ^Obg`&F*f > Wh 7xO 77  cc俺 ƿƿ̿ҿؿ޿ bc (+ Z]^ef[\^_adgjkLMOXY\f Opy (*.EOr{Ypy (*r{   99WWss]a{ZZ!*]`defloNQUVWZ^ab O "(.44F:4@"F   @Ajjkk Zbef?@AN%*[o#'(*Lf-HILOOMNKL"$ x    !1C.UWhgy ar}}   w F N x NV'0 }}KL"$x   !.Wh ar3&()[\^_abcdghijkmnLMOPRSTXY[\]_`cdefKL"$x   !.Wh arKL"$x   !.Wh ar!$$$$   KL"$x   !.Wh ar1144?BXX"#%+,(11*89+-; KYhXo{hANu " 1  . 7 F 44?BXX!"$+,'11)89*,: JYhWo{gANt " 1  . 7 F ++KL"$x     ! G K.ar3Z~x`*`**```tfl~r#45ABXX+,1189ww ~~!" 2Yh?o{O F F\ M M] ^ n " 1~ x x    . 7 F NNUU,013Z~*,  ?BC&+:<{} J L | ~R }T Y,/01 C E  NPiTlnY\Nw0013OQZ~)+  ?BC&+:<vx{}} J L | ~R {T WR'*+, NPiPmjY_IoRX:L:R6dLRL\L6^ "RRR.(.4<:L:hbhLL@nnFtLo06MNOPXYZ567'(-./012789:Z[\]bcdehknqrvxyz|}~4:?CHKPQWZ]`abx !"#$%&'(=Q{%9\p  1 t  @ T t K L M N O P Q R S T U V W X Y " 6 ^ r j } '1FZ =Q*>vwxyz{|}~1D,BXn4J`v,@^_1Dlmn|\]^8APW~'(*+,-./0123456789:;<=?BMNOPQRSTUVWXYZ[\]bcdehikmnqrtvxyz|}~,4:>?BCFGHIKLPQSTVWZ]`abcdio]^`bce;=BDf#%*,Z\ac   # % r t y {  > @ E G r t y { / " ' ) I M O \ ^ c e , / 0 D h j o q "$DFKM ;=BD|}{|~(*/1tu /168LMNO #%,9;BOQXegn{}+-4ACJWY`mov *,13J^_`d"$;=Dlmnz|\]^jjSD96 S S*tt    ..11\\``qqstvv  % 21  D 2 8O V L \_ ps|  <= 024479<=@@BDFFHILLOOSUWX!$%((*,..014477;=?@OQSSVX[\__aceeghkknnrtvw                 3 5 7 7 : < ? @ C C E G I I K L O O R R V X Z [                                ! " % % ' ) + + - . 1 1 4 4 8 : < = Q S U U X Z ] ^ a a c e g g i j m m p p t v x y              "$&&(),,//357;==@BEFIIKMOOQRUUXX\^`a024479<=@@BDFFHILLOOSUWX!!$&)*--/1335699<<@BDE    "#  "$&&(),,//3578 #&'RSKL"$x024479<=@@BDFFHILLOOSUWX!$%((*,..014477;=?@OQSSVX[\__aceeghkknnrtvw                   3 5 7 7 : < ? @ C C E G I I K L O O R R V X Z [                 !                   ! " % % ' ) + + - . 1 1 4 4 8 : < = Q S U U X Z ] ^ a a c e g g i j m m p p t v x y G K              "$&&(),,//357;==@BEFIIKMOOQRUUXX\^`a024479<=@@BDFFHILLOOSUWX|.Wh !!$&)*--/1335699<<@BDE    "#  "$&&(),,//3578 #&'RSarҥ2F8>DJVPV\bhntzvv FԢڠH Т֢"(.N44Tܢ,:@@FLRX^^dZjp`v|fl r &,2ġʣ8VУ>ܡ<xD$J~* `0P$$*0V66<BBHNTbZ`nflrx~~tz6<B,,,, &&&&,,,,22228VV>DJJJJPPPPVVb\bnhnttzzҥ䥢ޥ 4"""""44((.4:::@@@@@FLRRRRRRRRdX^^^^^djpppppvvإ|oPVvPPVPPPPPL8^X &2,28>|DJPVZĜ\✲蜸>b`hfܜxntz lrʝ$*x6 <B~NZ`Dlr~x$Nȝ6<J НPB "(.4֝:HN@F ,T8LRX^djpv|Z✦蜲>`fʝМܜxl r$x*0 6 < ~BHNTZD`flrx~$N*******00000006J<PҝBޝ2HHHHHHHHHHHHHHHN &T,28Z>`flrx~DJPV\bhntz̞Ȟښ"<=  >*?,CWEJoLu "'))+/782@@4BE5GG9JK:Zg<*C*B#!-- 2 1'0/ .G%ED$"&8 43=6:7   F<&     ''0;>   % % %        "2$    1"/.&      !!!)(#)(#,+9#5?A@,+"$$ / 3 2$1 '&765 %  !+  (* 8$%%&*,,-011223349 ::4;;<?@CDD-EEFJLLMPQQSSTT UU VV WW XX YY ZZ[[\\]]^^__``aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyy zz{{ ||}}~~'        %   &!               "$%%&&''))**++1177#88"AA,BBCC)EE0FF.JJ#KK"ZfqHNTy|||yyޒބ„„ރyynn\yރy䑾؃Z`f䑾|||||||yyyyyyyޒޒޒޒޒޒޒޒބ„„„y\\\l\r؃؄nnyynnnnnbx҃҃҃҃ґ||yyyy䑸y~yބ„y|||yބyyy\\nޒރ҃ޒބ‘|||8𑸑|„yy.$DyJ\||vx`yޒƐyt~ބޒޒރƄ̃ґ|؇yބ΄|Ȅyԑ|y䑸䒐NlҒ~xy|x술*`NjƒHy rܑx~0y yyH*y xPy 2 Jbny x֋6vxy6(Ғƈd`y6ʈВ$y DJJJJJJJJJ|||||||||||||||||PPPPPPPPPPPPPPPPPȐȐȐȐȐȐȐȐȐȐȐȐȐȐȐȐvx`Vvxvx``ޒf\nnnnnnnnbbhnȐȐȐȐȐȐȐȐȐȐȐȐȐȐȐȐȐȄttttttttttttttttttz~~~ޒޒޒޒޒބ||||NNNNNNNNNNNNNNNΐΐΐΐΑ||||B„„„„„„„„„ȐȐȐȐȐȄȐȐȐȐyyyyyyyyyyԄԄԑ|||yyy`````````````ڑ撐쒐Nllllllllllllllllllllllllllllllllllllll ~~~"""""""""""""(.xx4xyyyyyyyyyyyyy|||||||||||||||:@xxFxLRX***************^*````````````````````````````````````````Njjjdjpvƒƅ|ƒHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHy rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrą܅܅ʅ܅܅܅ʅ܅ʅ܅ЅօܑБЏ؏ВxxޑЅББІЅББЅЏx ЏБББЏx~~~~~~~$~~~~*~0~~~~~~~~6~~~<~~~~~~~~000000B000H00000000000000000000N00000000TZ`y y fy yyyyyyyyyyylyyy~y~yyyyyyxryyyrrx~HHؒHHHޒHHHHHHHHHHHHHHHHHHHHHHHH***ޒކy y ƆxxxPPPPPPPPPPPPPPP؊Pޒ &̏̏̏̏̏̏̏̏̏̏̏̏y y y y y y y y y y y y y y y y y 222222222222222,28> D JJJJhbbbPhV\bbhny y y y y y ty y y zy y y y y y y y y y y y y y y y y y y y y y y y y y y y އޒޒޒޒޒއޒޒއx֑֐֑֒և֑֑և·և֑֑և֑֑֑ևȒΑևԑ֑֑֑֑֑֑֑֋ڋ66666666666666666666666666666666666666 vx vxvxvxvxvxvxvxvxvx NNNNNNNNNNNNNNN66"6((.4ҒҐҒҒ҈:ҒҒ҈@ҒҒ҈LҒҒҒҒҒҒҒҒҒҒҒ҈FҒ҈L҈RҒҒҒҒҒҒҒҒƈddddXd^ddddv`v``````pj```jjpvNNNNNNNNNNNNNNN|66Ē6ʈЈЈЈЈЈЈЈЈЈЈЈЈЈЈЈЈЈֈܒ$$$y y  &*,$,*0<<6<<<<ܑܑܑ܉>܉ܑܑܑܑܑܑܑܒrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr~yyyyyyỷyyyƉƉ̉ҒHHؒHHHޒHHHHHHHHHHHHHHHHHHHHHHHHy y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y y <<<<<<<< ,,,,,,,,,,,,&,,28>~~D~PPPPPPPPPPPPJPPVbbb\bNNNNNNĒNNNhNNNNNNNNNNNNNNNNNNNNNNNNNNNNNڐڐڐڐڐڐڐڐڐڐڊnڐڐڒtzBBBBBBBBBBBBBBʑʊʑʒT’TȑʊΑʑʑʊԑʊڑʑʑʊʑʑʑʊTʊʑʑʑʑʑʑʑʐPV" \\"(bzZ.Zh4R:@FnzttLZnRzXtzzjjjj^jjjjjjjjjjdjvvvvvvvvvvvvvvvpv|6666666ЎЎЎЎЎЋЎЎЎВ`````ĒʒВ܋܋܋܋܋܋֋܋܋܋܋````````````````````````````````` y y $$$$$$$$$$$$$$<<*<06<00000000000000000BZHZHHHHHHTNHHHNNTZffffffffff`fff``ffrrlllrx~~~~~````xxxxxxxxxx挊xxx挊xx揊HHHy y y y y y ƌƌƌƌƌƌƌƌƌƌ̌ƌƌƌ̌̌ƌƌҌҌҌҌҌҌҌҌҌҌ̌ҌҌҌ̌̌Ҍx،y y y y y ,&,&&&&&&& &&& &,xxxxx222222222222228>JJDJPVbb\bN``NN...h...h.h....ztztttttttntttnntzHHHHHHHHHH’``Nxxxxxxxxxxԍԍԍ΍ԍڒN萀蒴 萌"(((((((((((((((((...y y y y y 4y y y 4y :y <<@ܑܑܑܑܑܑܑܒDJPV\zbhntzz蒴萀蒴蒺lrВ~y ֒Ғy ܒ蒺𐘐xސȐȐȐȐȐȐȐȐȐȐΐΐΐΐΑyڐyyyڐڐڐڐڐڐԐڐڐڐڐ撐ƒƒƐRƒƐ@ƒƑƑ ƑƒƒƑ4ƑƒƒƑ".@:Ƒ:(Ƒ.4@@Ƒ:@ƒƒƒƑ@RFRRLRƒƒƒƒƒƒƒƒƒƒƒƒƒ^^^^^^^^^^^^^^^^X^djp|||v|ޒޑ$l`HrВ~0Hy ֒6ҒssssssmDssmJsmPmVssm\mb}p}p}p}p}p}p}pmn}p}p}p}p}p}p}p}pmnmt}p}p}p}pmhmh}p}p}p}p}p}p}p}p}p}pmnmt}p}p}pmz}v}v}v}v}v}v}v}v}v}v}v}v}v}v}vm}v}vm}v}v}v}v}v}v}v}v}v}v}v}v}v}v}v}vm}v}v}vMMMMMMMMMMMMMMmmmmmmmmm{m{{{{{{{{m{{mmmmmmmmmmmmmmmmmmmmmmmmmmmmmm~~~~~~~~~m~~~m~~~{l{l{l{l{l{l{l{l{lm{l{l{lm{l{l{l{nn {{~~~~|n~n~|nn|~~~||||||oxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxn"n"n"n"n"n"n"n"n"n"n"n"n"n"n"n"n"n"vvvvvvttttttX\X\X\X\X\X\~~~~~~MMMn4n(n4n4n4n4n.n4n4{l{l{l{lMMMn@n:n@MMMMMMMMMM~~~~~~~~~~~~~~~nFnFnFnFnFnFnFnFnFnFnF{l{l{l{l{l{l{l{l{l{l{l~~~~~~~~~nLnL~~~MMMQQQMMMMMMMMMMMMMnRnXnpnpnpnpn^npnpnpnpnpndnjnpQQQQQQq|nv}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|}|~~~nn|n~~~~~~~~~~~~~~~~t^t^t^t^t^t^t^t^t^t^t^t^t^nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn~~~~~~MMMMMM{{{{{{{{{n{{{n{{{nn}QnQQ}}oQQn}QQnQoo oQoQnnQ}QQoQQQ}oo Q}}oooooo}}}}}}oo$}}}}}}}o6}}}}}}o*}o6o<}}}}o0o0}}}}}}}}}o6o<}}}~oB{}}}}}}}oT}}}}}}oH}oToZ}}}}oNoN}}}}}}}}}}oToZ}}}MMMMo`MMMMMMMMMof~~~~~~~~~~~~~~~ol~~or~~~~~~~~~~~~~~~~~or~~~oxpppppppppo~pppopppo}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}oo}oooo}}oooo}ooooooooooooo}oooooo}ooo}}ooooooooooooooovnvnvnyvnvnooppppopppppopp{{{{{{{{{{{{{{{{{{p~~~~~~~~p~~~~~~~~pp~~~~~~~~~~~~~~~pp~~~vvvvvvvp p p p p p p&p,{{p,p,p&p,~~~~~~{{{{{{{{{{{{{p2{{{X\p8}}}}}}}}}}}}}}}p>}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~pDpDpDpppJpVpPpVppppppppppp\p\p\p\p\p\p\p\p\p\p\p\p\{{{{{{{{{pb{{{ph{{{pzpzpzpzpzpzpzpzpzpnpzpzpzptpzpzpzvvvvvv~~~~ppppppppppppp}}}}}}}}}}}}}}}p}}}}}}}}}}}}}}}}}}}}}}}}{Bp{B{B{B{Bp{B{B{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{l{$p}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}{B{B{B{B{B{B{B{B{B{B{Bps}}}}}}}p}}}}}}p}pp}}}}pp}}}}}}}}}pp}}}{${${$ppp{${${${${${${${${${$~~~~~~~~~~~~~~~~~~pppppppppppppppppppppp~~ppppppppppppppppppqq }}}}}}}q}}}}}}q}qq"}}}}qq}}}}}}}}}}qq"}}}}q(q(q(q(q(q(q(q(q(q(q(q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.QQQq:q4q:QQQQQQQQQQuuuuuuuMMMMMMMMMMMMMMMMMMq@qFq^q^q^q^qLq^q^q^q^q^qRqXq^qdqdqdqdqdqduBqvqvqvqvqvqvqvqvqvqjqvqvqvqpqvqvqvvvvvvvqRq|q|RRqRvnvnvnvnvnvn~~~qXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtqq}}}}}}}q}}}}}}q}qq}}}}qq}}}}}}}}}qq}}}qqqqqqqqqqqqqqqqqq}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}{qq}}}}}}}q}}}}}}}}qq}}}}qq}}}}}}}}}}qq}}}XbuqqXbXbXbXbXbXbqXbXbqXbqrXbXbr}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}r }}}}}}}}r}}}}}}r}rr$}}}}rr}}}}}}}}}rr$}}}v}}}}}}}}}}}}}}}}}}r*}}}}}}}}r0}}}}}}}}r0r6}}}}}}}}}}}}}}}r0r6}}}r<}}}}}}}}rN}}}}}}rB}rNrT}}}}rHrH}}}}}}}}}rNrT}}}rfrZrfrfrfrfr`rfrfrxrxrxrxrxrxrxrxrxrlrxrxrxrrrxrxrx~~~r~xr~~~~~~~~~~~rrw.w.w.w.w.w.sssrrrssssssssssrrrrrrrrrrrrrrrrrrrrrrrr}rrrr}}rrrr}rrrrrrrrrrrrr}rrrrrr}rrr}}sss s s s ss s s s s sss }}}}}}}}}r}}}}}}}}rr}}}}rr}}}}}}}}}}rr}}}{{{{{{{{{{{{${${$rrr{${${${${${${${${${$sss s s s ss s s s s sss s&}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}s,}}}}}}}}}}}}}}}s2}}s8}}}}}}}}}}}}}}}}}s8}}}s>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~vbvbvbvbvbvbvbvbvbsDvbvbvbsJvbvbvbshshshsPshtshshsbtsVts\tsbshsnvvvstvvszszszszszszsz{l{l{l{l{l{l{l{l{ls{l{lsss{lsXhXhXhXhXhXhXhXhXhsXhXhXhsXhXhXhvvvvvvvvvvvssssssssssssssssssssss~~~~~~~~~~~~~~~s~~s~~~~~~~~~~~~~~~~~s~~~ss~ ~ ~ ~ ~ ~ ~ s~ ~ ~ ~ ~ ~ s~ ss~ ~ ~ ~ ss~ ~ ~ ~ ~ ~ ~ ~ ~ ss~ ~ ~ ssssssssssssss~*ut"t"t"~*~*tt"t"s~*t"t"tt"ttut"ut"t tt"t"~*t"t"ut"t"u~*ttt"~*~*tFtFtFt4tFu`tFtFt.t(t.t4tLt:t@tFtLt^t^t^t^t^t^t^t^t^tRt^t^t^tXt^t^t^{Zttttttdtttttjtptvt|tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt}}}}}}~~~~~~ttttttttttttttttttvvvvvv~~~v~~ttttttvvvvvvtv}}tvtu~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}u u u uu u uv~~uvuu~u*~u$~~~~~~~u*~~~~~~u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0u0~~~~~uBuBuBuBu6uBuBu<uBuBuBuBuBuB}}}uH}}uTuTuTuNuTuT~~~~~u`u`u`u`uZu`u`u`u`u`u`u`u`u`MMMMMMMMMMMMMMMMMM~~~~~~~~~~~~~~~~~~ufufufufufufuf}{{}}}}{{}{}}uxuxuxuxuxuxuxuxuxuluxuxuxuruxuxuxMM~u~u~u~u~u~u~u~u~u~u~u~uuuuu|u{u{u{{{{{{{u{{{{{{uu~~~~~~~u~~~~~~u~uu~~~~uu~~~~~~~~~~uu~~~~~~~~~~~~~~~~~~~~{l{l{luuuuuuuuuuuuuuuuuuuu}v}v}vu}v}vuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuvvvvvvv~~~~~~~~~~~~~~~v~~v~~~~~~~~~~~~~~~~~v~~~~{v v&~vVv,vVvV~~vJvVvVv2~vVvVv8vVvJvPvDvVvDvVv>v>vV~vVvVvDvVvVvV~vJvPvV~~v\vbvtvn}vh}vnvtXnvz~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$v~$~$v~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$~$v~$~$~$v~*~*~*~*~*~*~*~*v~*~*~*~*~*~*v~*vv~*~*~*~*vv~*~*~*~*~*~*~*~*~*vv~*~*~*~~~~{T{T{Tv{T{Tvvvvvv}p}p}p}p}p}pvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv}p}p}p}p}p}pvvvvvvvvvvvvvvvvvvvvvvvv~~~~~~vvvvvv~~~v~~~~~~~~vvvvvv~~~v~~{f{f{f{f{f{f{f{f{fv{f{fwvv{fww.w.w.ww.w w.w.wwwww4w"w(w.w4w:w@wFwLwLwRwvwvw|wp~0~0wX~0~0~0~0~0wpw^wdwdwj~0wpwvw|Nwwww~6~6w~6~6~6~6~6wwwww~6wwwwwwww~<~<w~<~<~<~<~<wwwww~<wwwwz z zz~B~By~B~B~B~B~Bzyyyy~Bzz z|,xxxw~H~Hw~H~H~H~H~Hwwwww~Hwxxx x0x0x~x*~N~Nx~N~N~N~N~Nx*xxxx$~Nx*x0x~x6xZxZx`xT~T~Tx<~T~T~T~T~TxTxBxHxHxN~TxTxZx`xfxxxx~Z~Zxl~Z~Z~Z~Z~Zxxrxxxxx~~Zxxxxxxxx~`~`x~`~`~`~`~`xxxxx~`xxxxxxxx~f~fx~f~f~f~f~fxxxxx~fxxxxyyy y~l~lx~l~l~l~l~lyyyyy~lyyy y&yJyJyPyD~r~ry,~r~r~r~r~ryDy2y8y8y>~ryDyJyPyVyzyzyyt~x~xy\~x~x~x~x~xytybyhyhyn~xytyzyyyyyy~~~~y~~~~~~~~~~yyyyy~~yyyyyyyy~~y~~~~~yyyyy~yyyyz z zz~~y~~~~~zyyyy~zz zzz:z:z@z4~~z~~~~~z4z"z(z(z.~z4z:z@zFzjzjzpzd~~zL~~~~~zdzRzXzXz^~zdzjzpzvzzzz~~z|~~~~~zzzzz~zzzzzzzzzzzzzzzzzzz{{{ {{{{{{{{{l{l{ll}l R8l{l{l{l{l{l{l{l{l{l{l{l~~~~~{lM{${*MMM{${${${${${${${${${${${*{*{*{*{*{T~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{T{T{T~~~~~~~~~~~~~~~~~~~{T{6{<{l{T{T{T{l{l{l{6{6{6{6{6{6{6{6{6{0{6{6{6{6{6{6{6{<{<{<{<{<{<{<{l{l{l~~~~~~~{B{B~~{B{H{H{H{N{N{Z|{`{Z{T{Z{`{f{f{l{l{r{x{~}|{{{{}{{{{}{{Xt{}{{}{{{{{}{~{{|||||| |&|,|2|z|8|>|D|J|P|V|\|b|h|n|t|z|||~|~||~~~~~~~|~~}d~~~}d~||~~~~||~~~~~~~~~~||~~~|||||~~|~~~~~||||}j~|||~~~~~~~~~~~~~~~~~~~~~~~~||lM~||~~~~~~~|~~|~~~~~|}~~~~||~~~~~~~~~|}~~~MMM} ~}}~~~~~~~}(~~}~~~~~}(}.~~~~}"}"~~~~~~~~~~}(}.~~~}4}:}^}@}F}^}^}X}L}R}X}^}d}j}j}p}p}v}v}|}|}}}}}}~~}}}}~~}}}}}}}}}}XtXt}}}}}}}}}}}}}}}}}}}}}}~~~~~ ~ ~*~*~~~~~~~$~$~*~*~0~0~6~6~<~<~B~B~H~H~N~N~T~T~Z~Z~`~`~f~f~l~l~r~r~x~x~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~V#q*x.1{'e0:''   9!`pNN     &={4!+ Az!  $-u$$222h2>KiX    *cEVV!!!X*50+_(??%M$yx/3j!)!Bz!!C!u!H!!!l!b!g!s!]!@!! y@v !!?$!!'!I!1!3KY):i{JfJnV2\J .2/Q!*ivhSJcLoJI %cjOx M&=\{V%f1 Tms@OOfT2OQ*L3 < ' 3;9G@GpNdV ,W%~O$cDip`ksmGON(kW A.%rOqV6nJ^1 JV,V&;sf1ydViiGGMVHigun {y+{LvnY=[F%3eWab'}~ %Ed`%Kj Ogqh{y(2H^ PhD8q$n n@d5O=., |&w{i3@i3iF231-iwfw>t,!owu~_ aOsD|bqU)%/U5$==p= fEU8!au jMbo_vFb47Nx8NP]EKoFyWC% \UaUdDWDRMma&\4;y4v 8G[0r=VV0&d_ty#V!1V e!;!!!*!!!!k!!J!!{te[CF[!!!!!I!z!!y5r|!QjZ!!b![CO!oP[!1]Ay! RJV|8!uM$sMYVZ934IyPO~7i:F!SIS+\fI^&BV!X&hJ2h}b;l(dgG],_xoo|V#A!l3QKi! !]=I!4!'Vzw!ZrHh}}tVl|o !Rj3*o!GDS_ MMM] !o '<1T\!#= 8&0;!!k!!qDVvx$eHeCKlKRU]3ATV6V`C(> !s-oR9 oM:%*w?!y)TxHy`rC|dls]X!T8!"}G8!}!9 \\fIfo4D>z!&!1R9 RudnvhhtVxI?! ![!.!!~!P!ft#ZD!T!!/!Ou!!Y9 !9!;=pG;n:!BEtDE F~}xx!0s!A"}LE!i(! @bK{!'<*!1)gN!Q Htp!M1,V>e 5y!'Apm!/"!!yVR7yu[~CyVwz!!&?MqWT*uLD}!bVV8NC3&&"!!C!`_tPtl v2nH!x!<xXQm!YIymd(`XL!YL:t!!x!!?l?:|r^^e5dwC[[3ee=VVwU<oo[F!!t!!|!!2!?!z2r mO6( OxQ!)4v4!O!!!#!{!lj!@!!!!x!!!!Q$!!!!!!!t!e!!!!.!!!q&!!!M!%!!VM!|!!!!&6!!!-!!!D6,V>gou.t |\ WOObSH~13W2=^nnKn"UFZ ky\$}p+?MQp+""FptLjy;~.c~y.J}yzFetiv0qI7KyLay@6\& *N@0tbw+z+UOwy0pG8fK?x6Ip g><#z,K~+p[IDZ6@}*IW/g]&rT5^\_t\~\*8\ ;+8Fc `G{t_kp#Gt0k&ky}~k ~y!Udy+p~~n1nJ)GftZ\a,i*5W\#T(P5t%"Nn .35.f !n- v.N< %X,"6; *.d Z P F   ,;0N      "  v  T  J  NTZ=.VD  J \ d  l ~  | ||xtplhd`\XTPLHD@<840 : R j  *  j 0  6 H Z ` f P  b   0  J 4 \ l J p !|T(t4$@VXpx"Fj7'h'''####$$$2$H''((,$^(H$t(d$$'((($!$$$(%%$'6'N%:%P%f%|%%%%%&(&&,&B) &X&n&        ~=<<<=== = <>^>L>?v::;-<":z5C4:88?:V>>?h;FF>\>rH:XK>:::<: ?E799:@??8:@3?98379JJ9Bh__7BVa`;H9;69;689889r9:X;;0 98@K:D77;*777L88JJ=99N9:0;0:0;f8|8^88R8886=uu: :6\6]]]=7r88>6.7: ::00:;D85v85vH5L;:,7B;;7*7J5L;__5~54;a`@9BD: PQRSTUPQRSTU:           9V9|9|:D468<9< :p @ABCDEFGHIJK89 ?rDD:H4J4P489^484>499(4$4*4: x y z { | } ~  r s t u v w: F G H I J K L M N @ A B C D E8r35:z357;;8;;  8^8x83`3f48h8b8N3J3P37j779BCCD: 5R8V8\8b8h8n8t8z8888888888M223z))7223`));  ;J9F2z4F8j:b:b:bL7N2(2.2)):Dijklmnopqrstuvwxyz{:( ! " # $ % & ' ( ) * + , - . / 0 1 2<6999!   :^:> 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F:9z8888"    ;h a b c d e f g h i j k l m n o p q Z [ \ ] ^ _ `;2 U V W X Y Z [ \ ] ^ _ ` a b c d e O P Q R S T f9 2 3 4 5 6 7 8jklmnopqrstuvwxyz>~dfPRTVXZ\^`begcU[YSQ]a_W;,;2668888888888888888999 9999$9*90969<9B9H9N9T5999"9(9.949:9@9F9L9R9X8^9^9d9j9p9v9|9999999999996!    hijklmnopq6!|}~6R!6 !rstuvwxyz{:v!                   ! " # $ % & ' ( ) * + , - .:!/9" YZ[\]^_`abcdefghi9" 9r"                 ! " # $ % & ' ( ) * + , - . / 0 19>" 9b"NO."7X7^7d7j7p7v7|777777777777777777777888 8889$ :$yz{|}~hijklmnopqrstuvwxefgbcd9%/*n7n*t+"/*Z+*`+8( 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y/)6)+0*/)+)+*.)++F)*x,).|)V6V)\*6* .d)>*~)D*~6).L)&*f*),*f).4)*N*)*N6)(()'(%-,0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWX7*,,R, !"#$%&'()*+,-./012345678RS,R,6,,$%''(B''(%&3&''(%&(H&'z'(%+&&'\&(%5r-    &*&0'j3&'(%& 3 &'J&'(%%'l%'*&'(%%' 'L%&~'(%*%%&&^&(%*2%%&>&(%*%p&%p&&(%%J2J%P&2%'(%%(&%.&h2%'(%%&F&% &F%'(%)$$&$2n%&(%)1$$&%v&(%)$&"$%%T&(%)1~$&$%2&(%$\%%$b%1%'(%)P18$>$>%x1$&(%),$%$%T1$&(%)0#%r#%0$&(%(0#%N#% 1V$&(%<02@<;|b!LMQd   22     2&4         2 5                          ?@ABCDEFGHIJKLMN1.:NOPQRSTUV !"#$%&'()*+,-./0123456789:;<=>?@HIJKLMBCDEFGA0: ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  !.0d; g h i j k l m n o p q r s t u v w x y z { | } ~  2<0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh:<jlqrsz{|}~VWXYZ[\]^_`abcdefgutmyonvxwkhip4<               ,pi:R=|{w%xa/+* j]!'$ !LMQd  0=                ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8           0=   2>OPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwyz{|}~x+PP~QQ,JnRR3R4SSfTT+H+xUUH*VV*WW*\\bbddtee)Tii*jjj0n`kk* ll^nnoo2*qq)MqtrrBsstt00uu)nLvv(ww):xxz)JyyV/\CC) {{||0L)%)-?  eeN(nup6(Vup(,uLU,V}}}'-MMMrNNOVXXX:TYYYtj':uZyX'(u[Q$^^^*cccfffDggg(hhh&'|tmmXzzz-'D<~~,B 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [$%&'()*+,-. \ ] ^ _ ` a b c d e f-.E"#2:K,L,P !"#$%&'()*+,-./012345678 L M N O P Q R S T U V W X Y Z [ \ / 0 G H I J K      ,"Q -T !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGQRSTUVWXYZ[\] KLMNOPHIJPQ*2W      !"#)X Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~     ,Y NO/ ) \      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLM&'()*f*&h )lk > ? @ A B C D E F G H I J K L M N O P            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = g h i j k l m n o p q r s t u v w x y z { | } ~  .>z9:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrbcdefghijklmnopqr9:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a-x}ghijklm !"#$%&'()*+,-./0123456789:;<=>?@ABCDEZ[\]^_`abcdefFGHIJKLMNOPQRSTUVtu   nopqrsWXYvwxyz{|}~ !0x(( ($(((,(0(4(8(<(@(D(H(L(P(T(X(\(`(d(h(l(p(t(x(|(*$((((((((((((((((((((((((((((*((()* ))) ))))) )$)(),)0)4)8)<)@)D)H)L)P)T)X)\)`)d*()h)l)p)t)x)|)))))))))))))))))))))))))))))))**)**** ***** *$/))))")&)*).)2)6):)>)B)F)J)N)R)V)Z)^)b)f)j)n)r)v)z+")~))))))))))))))))))))))))))))+))))+*** ******"*&***.*2*6*:*>*B*F*J*N*R*V*Z*^*b+&*f*j*n*r*v*z*~*******************************+**+++ ++++++"*       stuvwxyz{|}~~|}|}~ )opqrstuvwxyz{|}~opqrstuvwxyz{|}~VWVWXY-(()))) ))))) )$)(),)0)4)8)<)@)D)H)L)P)T)X)\)`)d)h)l)p)t)x)|))))))))+))))))))))))))))))))))))**** ***** *$*(*,*0*4*8*<*@*D*H+*L*P*T*X*\*`*d*h*l*p*t*x*|***********+*****+*+***************+++++ +++++ +$+(+,+0+4+8+<+@+D+H+L+P+T+X+\+`+d+h+l+p+t+x+|+++++++++++++++++++++++++++++      (!)/-*",2#$%.01'4356+&>7?EC@8BH9:;DFG=JIKLA<TMU[YVNX^OPQZ\]S`_abWRjckqoldntefgprsivuwxmhyz{|}~     !$ "#&%'(0)1752*4:+,-689/<;=>3.F?GMKH@JPABCLNOERQSTID\U]ca^V`fWXYbde[hgij_Zrksywtlv|mnoxz{q~}up@9AGEB:DJ;<=FHI?LKMNC>*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOTU?A,A4AB[dx1@LOxL\+17T7{ 5]`]^]`Z]`Z@@~@r@h@`@8@0@6@<@B8~AZ@R@t@@@Pag t / ]`ZDHPP`deWcPPP /w(+g^_`b PPPPa  t { t  *:^_bPPPxPPPPP]`l?@"Ab@6@J@^?x?@RAX@f@z@??@A^@@@??@Ad@@A?x}PPPPPPT L \;\  >>>>>>>P>V>\>b>h>n>t\]^PPPPPPPP\]^]`lZ\^de@\@@@@@@r[\^_gXY)*$K(())X0X)*() 9W]^_`awx27QTV |                  r w).  27Xx   =)* g ();Kbc%x' >@CDEFGHIK QSUWY[]_acegw w  \ f ? ?  BG\ax 1  9 J$iz6sH5ew~ F M x NU3d{} J L | ~RT)x6HNO;Kbc   g (PQRTpy (* <<<<<<= ==&=4=B=P=^=l=z====== ? f   { LMNObc)+,1<= 3 [)*(L\L\{BCDEFG\]^_`aBCDEFG\]^_`aL\ hhjjoq  r w #;FQRS)( (2 g HpqrtL\ l l l l l l l l l l l l l l l l l Ll Ml Nl Ol Pl Ql Rl Sl Tl Ul Vl Wl Xl Yl Zl [l \l;\ fgiiknrw 1 1 9 JC/@Uizgsy;Kx^*:L\"()*[\^_abghijkmnXY de ^ ;FQ$K\() (*[\^_abgkmnXYL\  L \]a\a(KL"#$fgiklmnrstuvw()*()*)*+e ;Kbc  !"#(12]ax(./0)23 )x;K \a (]aw x )78wx 39((78(89x L\ L \(*[\]]^_``abgkllmnXYZZ(*[\]]^_``abgkllmnXYZZ(*[\]]^_``abgkllmnXYZZ44ABXX+,1189 .Yh;o{K X h " 1x  . 7 F =68:;<=>CDEFGHIJPQRSTUVWYZ *+/]j!$%'\]^)9:x(:;(:;(*[\]]^_``abgkllmnXYZZw (*[\]]^_``abgkllmnXYZZx(0(*[\^_abgkmnXYfgiiknrwL\):;<x);AB;<=de(().9:whh jj oq )4?@8)RSTVI23456789:;<=>?@ABCDEFGHIJPQRSTUVWXYZ;<@b|\]^x);ABC ;K0bcACDITU 0;K=bcNxPbhkl;Kbc%x'KQS268:;<=>CDEFGHIJQRSTUVWYZ *+/]j!$%'QRTw   3 fNOL\)bc:<=BMNdeQSVX"w ]ahhjjoq!9).?inEK Q 1W g i 9 J r w ##/@5izGY_qwxyz|~s6hjopq r s t u v w QSUWY[]_aceg002OQZ~)+.atuv  9<?BBw*:]ahh jj oq 8C (Fb )x6HNOPQRde)+,<(GVW(Q`bL\Qbddg<hjopq r s t u v w QSUWY[]_aceg=23456789:;<=>?@ABCDEFGHIJQRSTUVWXYZ;<@b|whh jj oq x8QQ>SS?UU@WWAYYB[[C]]D__EaaFccGeeHggIJQML  ! dNRWTP\O #%&'("XeSZVU[Y$)e@<;xy|b=AFC?K> }~GcBI{EDJHzcL\) L \:8Ktuvx 0;K=bcNxPbh(kz{ 0*K=bc_xasyz>>(@@)CI*KK1 g 2  =Z&|{w%xa/+*fg j]!'}~,052.:-   snopqrkwmlt6^_ $#( `18vui439zy"7h `^006688:>COQWYZ~ /UWXY  [^*h-0w22{57|:?BBIK006688:>COQWYZ~ 0VXYZ  \_*i-0x22|57}:?BBIK 002OQZ~)+.  ?BBIK0124789<=@BCDFHILOSTUWX !$%(*+,.0147;<=?@OPQSVWX[\_abceghknrstvw           3 4 5 7 : ; < ? @ C E F G I K L O R V W X Z [          ! " % ' ( ) + - . 1 4 8 9 : < = Q R S U X Y Z ] ^ a c d e g i j m p t u v x y  "#$&(),/345789:;=@ABEFIKLMOQRUX\]^`a0124789<=@BCDFHILOSTUWX!$%&)*-/013569<@ABDE   "# "#$&(),/34578  !"#&'RS    ++--./0011234455667788 99:; <>?BCD EF GHIJKL MOPPQQ RSTTUUVVWXYZpyzz{|}}~~                 &&'()+,,-- ..// 00112233 4455 667789::;;<<=>??@@ ABCDEEFFGGHHIIJJKLMM NNOOPQRRSTUUVV WWXX YYZZ [[\\ ]]^^__``aabcddeeffghiijjkkllmmnnooppqqrrssttuuvvwxyyz{||}}~~  (+,,--..//0233445566778899::;<==>>??@@AABBCCDDEFGGHIJJKKLLMMNNOOPPQQRRSSTTUUVVWWXXYYZZ[[\\]]^^__``aabbccddehiijjknooppqqrsttuxy|}~  )*:;KL\]abcddeefg hhii jjkn oqrw x    ()./123445899::;=>?@@AABDEHIIJJKKLNOOPPQQRRSXY{|2334@ANOijjkxy   > ? ? @ G H I J N O T U f g                                          1 2 M N N O [ \ f g             ! " 1 2 Y Z ` a q r w x y z { |          ! " $ % % & ( ) ) * / 0 0 1 5 6 6 7 : ; ; < = > P Q k l l m         . / 0 1 6 7 F G K L \ ]         *++,89STTUabrs#$. //03445JKKLXYz{{|}~ ./@AABGHMNOPSTVWhiz{     7889EFVWYZfgmnstuv#$KLMNOPghyz 67LM()>?jk     GHJK]^^_a bde      *++,NPPQQRRSSTTUUVVWWXXYYZZ[[\\]]^^__``aabbccddeeffgghh ii jjkk llmmn!"#$%&'()*/012789:ABCDEFGHKLOPQRWXYZZ[[\\ ]] ^^__``ars@ABBCCDDEEFGHHIIJKLLMMNOPPQQRRSSTTUUVYZ[\\]]^^ __`` aabb ccdd eeffgghhiijjkkllmmnnoopqr{|o7xT7Pd[ P~PPPPP\PPPP]PPPPP6^PPPPPPP66_Zc[ea]AA@@`d\fb^QQkkddQQQQkkkkddddQkdooooooo     amiri-1.000/fonts/Amiri-Italic.ttf000066400000000000000000023055001434272261000167350ustar00rootroot00000000000000pGDEFOhg@GPOS@&\GSUB5OS/2v,x`cmapjx"gaspglyf$dt6head;&6hhea.{4$hmtx hloca8ӪX{hmaxpX name4˞ post>%Xpreph{vq_< 1|%|-d,F-P3{+"X KX^2 o CALIF d: l$@,=DXiXi,K$G1/n*5,,U'*\*b/q><)iTTVTNaq>tC /}"cqDDD>%BB@@))$ $$///8[<< q(//(7WE[III%IIWIKIIIGI6+*+ 8Q}V  y/DDDDDDD>>>BBB@@)88$k"$$$$$$$[[[[< < < < < `Dqq(qq////7Aq( ,Gv;M*bkV III%II$INI)IIGI6B@ }"<`DD>B$$$<<< <<[BDDBDnW///77DBB r\rk;(/8< N8yv[yM=yz!{qI qIns"s"s"s"s"ss"-'z-'sz(b(b(b(b    WWl$Ll$Ll$Ll$=L;gWgW{O ;d\IJR|?+x+>8|9<AA]6L{YYYYYYIO9'o'MMMM3S3SIOR'33R'33R'33R'33C9C9CC9uJuJu(B9B99919331933,,,[33'339^3^3R'33933R'33/$$$$$$&&1u1SS&&1u1SS&&1u1SS&&1u1SSQQQQk[33b9&&1u1SSIO&&1u1SS__8___8XX xxxd]]]rII 444OO030303033S3S3S3SD3D3D3D3D3D3SSSSu>>qOqOr3r3r3r3WSWSWSWSOOOOOOSSSS(((u((%%7s (  (=|O|OO(9(99O(9~O?9/w(jAO9H9OH9OO9a(T929rOrO(29U(z|Ol O`9 O O O9OOOOO O O|OO|OO~OO~OrOOOO OOOOOWO|O929(OO|OOO(OOd(d( 9}'bS,W$*$$$6$,$$4$hG&!YIs"{s"s"(b(b(b  WW7X887X8844)7')7'`n`n-'z_4'z6L[ 9gW{'YIOIO]f +@;ZW+@$+Q72= <3W=  +@;<$  23$0V%0.$&$%3( $, $%$$0,3()#)#M"<<O<)4<<O<)#<)4<<RR*w**R*f7%&88,7,7&D83Q97254:8(5,74%%&8(D8:%605593460888i;3E:4(9.344%%605.88(3% `$ns" >-'z(Db{'q(6a,L[[Nq 9<?KgW'< _48 Ze4@7X8B8)7)'i#^IO/bU^/QshBQuQ$6XSe3]5.TZ ZHH_>&2ACV bH?[ =_!3T)9`(B1CRPT(73S#iSKb[hYpE^X|}k"UNr"ttmW5u~77P!0OYYPVmQW=gNtYVixxIIIjKZ= g|Z[IR%W%nQ>P*1Wp024U hTg(3Do'i07M&lY-PXLkL!G&n``S\```nnnnnnns"s"s"s"s"s"s"s"s"s"s"s"s"s"s"s"s"s"s"Fsbn              ---------''''''''''''s'zzzzzzzzzzzzz(((((((((((((((((bbbbbbbbbbbbbbbbb{'O{'{l$l$6l$6l$l$l$l$666l$l$l$l$l$l$F=LuLLuLLLLLLLL{LLLLDL{LL;N3[[[[)"VhD>r~ 9 9 9gWgWgWgWgWgTgWgWgW_4_4_4_4WWWWWWWWWWWWWWWW444447X7X7X7X7X7X7X7X7X7X7X8888888888888888888888)))777'''YYYYYYYYYYYYYIOIOIOIOIOIOIOIOIOIIOIIOIOI0PJ~rb"#d"""<64266,2<6++++++++++++++++lf@@@@@@@@@@@@@//////QQQQQNQQLQQQQss/@hhhhhhBBB]BBfBBB`BBBBBBBBaBQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQuQQQQQS<i%]''<9-]''G-]']]{Xg1gXrYt}}rM}$$$$$$$$$$$$$$6X6X66W6X6 66 656X66X6X6X666X66X6X6X636'6W6!6X6!$X6@6'66W66X6!6W6X6X6X6X6WSSStSSSSSSSSSSSSSgSY[[pLT(CmRLL{RT,LeeeceeeeeeeezeeVeeee^e5eePeeeewe_eeYeeYee_e^ee6eeYeeeeee333333333333IP]]]]]]]]]]]]]]]]]]*b@@AS]?Z>ibcc`i]bcbb55.G.....TT{V{mT]TT$TTCK,aZZZ))))))))))))))))HHHH6HgH<HHHgH<HHHgHHHHHHHHHHHHHHHHH~_>_>_>_>& H(p (d2A2A2A2A2A222A2A2ACJKK`<A(C^RLLkRALq################          KHH ?[[[4[;.[[[[[[[ [   _   a  a v  R    P =  X    s g  a  a5  g P  2  a      ==================F!!!!!!!333333333333TT#)99999999999999999byfI"z{1{lq]xqMBBBpBBBBBBBBBBBBBcB  4V@'+%.'X?<%;?#?1';X?'%''tv+vgkRm|vv|kGv?n ? )? ??*b@@AS]?Z>ibcc`i]bcbbDl`11111+111CCCCCCCCCCCCCCCCC++++++++++++++++PP:4h~$$$$$$$$$$$$$$$$(((((777|7777777777777o73333333[3333333333333333333333333v33333333SSSSSSSSSSSS7VW WlHL3Ni]WW1w]LWW#######w####))))))))))))))))SSSSSSSSSSSS7KKKKKKKKKKKKKKKKKKKKKKKKKKKIKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbbbbbbb1bbbbbbbbbbbbb,[[[[[[[,[[[hhhhhhhhhhhhhhhhhYYYYYY^^^^^^^^^^^^^^^^^XXXXXXXiXXXX|||||||t||||G:h2::~8|:_j8|66:_;:8::=x|c~|YWWWWWWWWWWW5u8LL8XLLLL888L8LL8mL88t8LLLL777:77O77[7I77777777-7777A77\77q7V77777777C7PP!!!!!!!0 OOO"OO"K#KZK#KZKZKZKZKZKZKXK)KZKZKZK)K)KXK#= = = = = = = = = = = = = = = = = = 92ghJ+g+gggggga1ggg11a+ ||=>92gmZNZ3Z[Z[Z[Z["q"u&nIIRIIRIRIRIRIRIRIMIIRIRIRIIIMI%%W%%W%W%W%W%W%W%M%%W%W%W%%%M%%6.c^nOn3nnnen g #nQQQQQQQ%QQQ%>>>>>>>>>>P*PgPP*P11&111WW2pp.40^0+2222222222444444444444444444UUUDUUDUD           f`SU UjFJ9gHBBsuHJ&BhhhhhhhhhhhhhhhhhDDDTTTTTTTgg)4((3333033-333D|DD|DDDDDDDDDDDDDDD|oo4M'i\w0'n&'#n7777777777777777777777777777777777777777;Y0)^qLFzM&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&lNl3lYlYlYlY/)]^LFz------------------PNP3PXPXPXPXJ =JLFztJ =OLFzvpppppppppppppppppE~EE9EENEEZEHEEEEE~EEE,EaUr"jk{g}6X6X6X6X6X6W6@6X6656X6X6 6'6X6!6X6X6W6W6X6X{Yp[RLkJ`KRL         _ v   a g  a      z{tv|vbycjdKKKKKKKKKKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbbh~uSjUHB6X Kb||||$$]$$F$.$$$$ $$$ $$F$.$$$$ $$$ $$$$$$Wm``Ts,888888888887;d7;d;d3;d7p7w+.________5___5su*ufjQl{uu{jFuppp7..gmmC66`   (jJ& jJ 5&nk7s"Q6Xe 3Kb76X Kb*Wi=$*i=$*6nSx1uG666 6666666 66$l$*V'\8\DDcppz*aD)!ZC^*wmg9gmZ6Dg*D!8B8X8\$$$$$$ $$$$,,QQ'-}6!6'LReYe_ci  LR a g''v| ci33W]KKbb::LLBH77}6!6'LRLR a gv|W]KKbbBHu{gm)b&5> 3D.,YCqC CqC CqCqCqCqCqCqCCCCqCqCqCCCCC FF|LL|}2|$$$$$$$$$$$$$$$$$$$$$$$6,W.&12'& p95BR1RG=RH9%'A/[70<(u::11W2<<5 =9TF<5?]6K|<Ml*^b!$[:(fy:$4]#BR% 7s:=,7X!]%6& !$&z%!$"P(<<<<<<u:1111<<<<<6<SSSS6!^bbbb&H;<<<u:^u:^u:^u:^bbbbb::::11111$1W$9$j$$ <<<a8W5[5[5[ : : : :=9=9 (>:)SSSSSV5?f66KyKyKy!: iL6|l| (*!2 : :=9(=9=95?f5?f5?fKy(6i3i33&4 44+"r+r#rr".nN/2/+0 0nI-,*"X$[)3G=?$/MJ((TSTSTSTSTSTST wWa?^05;  ! !27-1x;H.H?7H?$$$$$$ $$$$$$  /Z]z~7  #(%+AWco   " $ & / 0 3 : > B D O t """%.A?rt 0[^{7  #&P $(@V`j   $ & ( 0 2 8 > B D O t """%.APPptvU3wvupna_ htpnZF>8(gO;1\%j۵ANML(&`.89:;<=>?@A  123456789:;<=>?@ABCDEFGHIJQRS   T  UVWXYZ d !"'8()*->./0ZB[]^zm{} ~~ h77jkmoqw    ##&(P@BCDL $%(+@AVW`cjo g    " $ $ & & ( /w 0 0 2 3 8 : > > B B D D O O t t """"""%%.A.APPQQRRSUVVWYZZ[]^^_abbceffgijjkmnnoqrrsuvvwyzz{}~~?P:zprttv13456789:;<=>?@ABCDEFGHIJQRS T UVWXYZ%&*!"E$$G''H)2I47S99W;;XBBYGGZII[KK\MO]QR`TTbWWcYYd[[e]]f__gabhddjgjklrotwvy|z~~~((K;)eny!d .  c 0#6fF\t.FVn~6F^v3K[k,'9r #Q$6` D !"""#M#$6$^$$%%,%<%q%%%%%%&!&A&Y&q&&&&&' '!'9'Q'i''''''((1(I(a(y((((() )')?)W)o)))))**'*7*O*o******+++?+_+++++,,7,O,g,,,,,,--'-G-_-o-----..!.;.U.o....../ /)/W/g0_1123`3478T89999:E:;?;Q;@0@Z@l@@@@@A AA)ABQBBC CC<C\C|CCCCCDD4DTDlDDDDDEEE4ELEdE|EEEEEF F,FLFlFFFFFGG$GDG\GvGGGGGHH0HJHdH~HHI/IIJJKK*KNKzKKKL LLLLMM:MPNN*NDNVNNNNOOPTPPPPPQZQR[R[R[R[R[R[R[R[R[R[R[R[R[RuRRRRRRRSS7S[S[SSVWW.WFW^WvWWWWWXXX6XNXfX~XXXXXYY&Y>YVYnYYYYYYZZ.ZFZ^ZvZZZZZ[["[2[B[R[j[[[[[\\:\Z\j\\\\\\]]]"]2]B]d]v]]]]]]]^^^*^<^N^^^p^^^^^__"_<_V_p______``8`X`z```aaHaraaabb4bTbtbbbbbcc8c`ccccd d2dXdvdddee*eJejeeeeff,fJfjfffffgg8gVg|gggghh,hThthhhii$iLiliiiij j$jDj\jtjjjjkkk4kTkrkkkkkll:l`llllmmm8m^m|mmmn n(n>nVnnnnnnnoo2oRozooopp.pVpvpppq q2qRqzqqqrr.rVrxrrrsss6sNsnssssstt<t\ttttuu0uPuxuuuvv*vJvjvvvvww:wXw~wwwwxx:xRxxxxxxyyy6yNytyyyyzz.zFzlzzzz{{4{T{r{{{{{| |(|@|X|v||||}},}L}l}}}}}~"~B~b~~~~"Bbz*Jj8Pp(Xp @h*Rt:Z":Zz 2Z"D^x$Dl$Ld1BjDl,Ll4\Dl4T|,\ 4T|"Jj Hx@h(Px@x0X0` Hx@p@p0Px H*Zr,<Tf~,DZr*BZr2BZl.F^v6Nf~.>N^n~(@Xp0H``z 2DVn~ $<Tn~%EUm} %Ee}h +C[s3Kkƒ›»3SsÓóĹţŻrvBZFb˖̊ͮΫN1Cׇן׷6ېܷ1kmEn/=_U?%@~0Q7={/     ?  P$g_v3J_AC1r  !"k#K$*$%&&&'\''()() )***+++++,--j-.8./#/q//00112,223O34'455]566x6677w789T99::::;]<<<=>>?O??@@@AXABfCCDDXDhEE\EF`FGEGH&HHIIIeIJ;JJKUKKLM$MN^NO_PPQQQRKSSSSTLTUWUV6VWJWX}XYZZ["[][\S\c\s\]k^c^_0`?``a.ab>bbbcd d?dOdde'e7eGeef+f;fKfg#gghLh\hhhhhiIijjGk:kllMl_lylllmm!m1mAmQmamqmmmmmmnnnnoepplpqr rtssstuWuuvvwxtyyzBz{G{|e|}~!~~0]=W.K,D',pylp+C[s !9Ii)AYq !AYq1Iay9Wy-E]u-Ec{7O_w !9Yy #;Sk#;Ss/G_o7Gg/GWo/G_o/G_w7O_w'?Ww1Iay3Kc{3Kk- !9Qq9Yy)AYq)AYi !9Ii !1Qi)AYi !9Qay1Aay !9Ic}!;Uo )AYi1IYy #C[{ -Ee}/Og'?Wg9Sm3Kc{+C[k9Qg3Kc{+Kc{/Oo‡Ÿ¯5OiÉãý %GYsčĥĽ/Ic}řų7Se}ƕƥƽ-E]uDžǝǽ9SmȇȡȻ+E_yɓɫ3K[sʋʣʻ)AYqˑ˩+C]u̷̗'Iay͉͡͹1IayΙα!9Qqϑϡ!9YiЁСй!9Qiућѽ -Mo҇ҟү'?WoӇӟӿ'G_wԗԷ7G_Տթ/Om֏ֽ֧+C[s׋ף׻+C[yؑة7Ogwُٯ'?Ooڇڧڿ!9[{ۓ۫ %=Me}ܕܭ %=]uݕݭ-Mm}ޝ޽5E]m߃ߛ߳3Kc9Yq+AYq9Qq )IYy+Ce+AQi)Aay7Wg9Qk 3Kc{5Og/G_w/G_w'AY{ +C[k)AYy1Qq7Ogw'?Wo+C[k #;Sk %=Ue'Gi7Og?Wo+;Ss 3C[s #;Sk #;Sk{+;Sk3Sm %=Um'?Wo'7Wo!9Yi +Ik7Og7Um-EUm -Mm  5 U m        - M ] w       ? a y        1 I a y       1 Q i     '?Og9Qq5Mm7Og7Og'G_w 'Aa{1Ke}5Me} -Ga{7Qk+C[k{+C[{-G_ /G]m-E]}3Kk 3Sc  - M e      !!5!U!m!!!!!!""-"M"g"""""# ###=#W#q#####$$+$C$[$s$$$$$$% %+%K%k%%%%%%&&+&C&c&}&&&&&'''9'O'_'w''''''((/(G(W(o(((((() )%)E)])u)))))**'*7*O*g******+ +#+;+S+k++++++,,,5,M,m,,,,,--1-I-Y-o------..+.C.a.y.....////M/m/}/////00/0I0a000001151M1e1u1111122252M2e222223 3%3=3]3}333334 4%4E4]4m4444445535K5c5555556696Y6q6666777+7C7[7s77777888;8S8s888889939C9c999999: :%:=:_:}::::;;';?;O;e;};;;;;< <%<=<]>1>Q>i>>>>>? ?)?A?Y?i??????@@+@C@e@@@@@AA/AGAWAmAAAAAABB+BCBaByBBBBCCC1COCoCCCCCCDD7DQDiDDDDDEE9EQEgEwEEEEEFFF5FMFeFFFFFG G#G;G[G{GGGGGH H#HCHSHkHHHHHII#I;ISIkIIIIIIJJ5JMJoJJJJJKK7KOK_KuKKKKKLLL5LMLmLLLLLM M%MEMeMuMMMMMN N+NEN]NNNNNO O-OEO[OkOOOOOOPP)PAPYPyPPPPPQQ/QOQmQ}QQQQQRR5RMRmR}RRRRSS-SESUSmSSSSSSTT5TMTmTTTTTUUU7UQUqUUUUUV V/VAV[VuVVVVVVWWW7WQWkWWWWWX X'XAX[X}XXXXXYY+Y;YSYcYyYYYYYZ Z)ZAZYZyZZZZZ[ [/[O[g[}[[[[\ \\3\K\c\{\\\\\] ]+]C]c]{]]]]^^^/^O^o^^^^^___3_K_c_{______``+`C`]`u````aa%aGa_awaaaaaabb/bGb_bwbbbbbcc7cOcgcccccd d%d5dMdmddddddee5eUemeeeeeff1fKfefffffggg5gWgwgggghh1hShqhhhhi i#i;i]i}iiiijj'j?jOjgjjjjjjkk'k?k_kwkkkkkll/lOlollllllmm7mQmimmmmmnn=nUnmn}nnnnno o%o=oUomooooop p-pEp]p}ppppqqq-qEqeqqqqqr r)rIrkrrrrrrs s#s;sSskssssst t#t;t[tstttttuu3uKu[usuuuuuvvv3vKvcvvvvvwww5wMw]wuwwwwwxx%x=xUxuxxxxxyyy/yGy_yyyyyyzzz/zGz_zwzzzzz{{'{G{a{y{{{{{|||1|I|a|y||||}}}3}K}k}}}}}}~~3~K~k~~~~~~3Sk;Sk{;Y{/G_w/Ge}!9Qay #9Yw7Og7Om +C[k5Um1Og} 3Kc{ +Cc{9Ig'=Um=Wo %=Um'?O_o'?_w1Iay)AYq+C[k7Og -E]u-E]uEe5]}5] %=Um} %5Uu =Um-EUm %=Ue} !9Qi/Og'G_w/G_w7O_w/GWq/G_o/GWw'7Ww?Wo&>Vn6Nf~6N^v%=Me}%=]u-Mm5Me5Um-Mm5Me} %=Me}-Ee/?Wq1Qi!Aa )AYy=]7Og7Oo/G_o/G_w1Iaq!9Yq !9Qay‘¡¹ #;UmÅÝõ5Me}ĕĭ5Me}ŕŭŽ -E]mƅƝƵ )AYyǙǻ+C[sȋȣȻ #C[sɋɫ+Kkʃʛʫ5Wuˍˣ1AYq̡̹̉1Qi͉͡͹'EUsΓΫ 1IYsύϥϽ3UuЍХ7G_wяѧѿ7Woҏҧҿ'Ggwӗӷ/IaԃԣԻ5MeuՍես5Meօֽ֝ %=]}׍׭ %EUe}ؕح5M]uٍ٥ٽ-E]mڅڝڵ%Meە=]}ܥEuݍݥݵ-=Umޅޝ޵ %=Me}ߕ߽-Eu=]%Um 5Me}-E]u-=Um %5Me}-Mg5Me}7O_o'Ge1Ii !9Qi5Mk3Kc{3Uw5Mm5Uu#C[{3Kc{1Ia )Iay/Ik3Kc3Kk9Yq1Iay#E]u;[s#C])Iay1Ia/Oo/G_w;]u5Uu=]w +Cc{3Kc{1Ii1Iay  3 U w       7 O o        7 W u      ! A Y y       1 I a y     -E]{#C[s +Eg1Ia1Ii7Wo/G_w#E]u=]u5Me} %=Um*>p$6HZl~i!Z_oI  , N h    !!!6!H!"W##$i$$$$$$%%)%9%Q%k%%%%%&&+&K&c&{&''''(A(S()@)X)n)))))* *"*:*R*h*****+++2+T+t++++,,,6,F,\,t,,,,,---4-T-l-----. .$.D.d.t...../ /,/F/`/p//////00040L0d0|000001 1"12 23363P3`3x33333344(4@4X4p4444455*5B5b5z555556667{7778888889 9:A:Q:a:y:::::::; ;;1;C;U;g;y;;;;;;;< <<->>N>f>~>>>>>??&?>?V?n??????@@.@F@^@v@@@@@AAA6ANAfA~AAAAABB&B>BVBnBBBBBBCC.CFC^CvCCCCDyDDDDDDDDE EE)E9EIEYEiEyEEEEEEEEFF'FZFtFFFFFGG:G\GtGGGGGGHH*HBHZHrHHHHHII*IHI`IxIIIIJJJ4JDJ\J|JJJJJKK2KLKnKKKKKLL6LNLfLLLLMCMcMMMNN3NcNNNO#OSOOOPP+PSP{PPPQQCQRSQT TLT^TTTTUU1UGUgUUUUUUVV-VEV]VuVVVVVW W-WEW]W{WWWWWXX7XOXgXwXXXXXYY!Y;YSYuYYYYZZ%Z=ZUZeZ}ZZZZZ[ [%[=[U[u[[[[[\\-\E\e\\\\\]]])]I]a]y]]]]]^^3^K^c^s^^^_ __/_A_`6a#abzc/cde eeeeff:fZfzffffgg:gZgzgggghh:hZhzhhhhii:iZixiiiijj6jVjvjjjjkk6kVkvkkkkll6lVlvllllmm6mVmvmmmmnn6nVnvnnnnoo6oVovoooopp6pVpvppppqq6qVqvqqqqrr6rVrvrrrrss6sVsvsssstt6tVtvtuuuvvvwXwvwxxyyyyyyzzz4zTztzzzzzz{{4{L{l{{{{{{||<|T|l||||||}}4}R}p}}}}}}}~~"~6~J~^~r~~~~~~~&:Nn4Zq0{=Oftf5q dvTV;*i[ue2!1 ggv]goÁb??ƎƠgȒȤɌʧo8 #9Og #9Oe{ґҩӐӦӼԣPhՀ՘հ&>Vnَ٦پ6Nd/G_wۏۧܪ "/G_wޏާߧ*BZp7k)AWo.D\tC[s7OgT0H`x l:Ph $:Rh+C[{ #;Qi{/?#5Ga.7g ]'yJbz  8Ph&>Vn*BZr0F^ $ R     M e   :  M y PUHj~`Gd o6 !#$' (k*+--..H.//4//0001.1|111111112 22,2>2P2b2t2222222333(3:3L3^3p333344474P4i4444445515J5c5|555556*3!'3#!u ujf!X@ 2&'547647632#"'&z  %4ܩ Ri~7&'&57667?1S?$5k4$|Hzo{6V~,~874'&'7'676$4j:1$?Q2?~U.<{ozG}D 76''&7xX ' K= ]9F:2#"'&''47676.     c~=7"1'&"#&'476:&B" W      FJ2#"'&'6+   Y ,~2""''&547677&&'0&#&557 X "A&9    k)'&'&7676'56'&&'&5676D N LL M D1 == 1FL B>[!!\   .D :-$ " )  W&^sR&fW&^tR&f*%;A%76'&'&776''&'&7''&36767676&'&'&7632&#"G  4kJed1i #6R_7 #L }W0 "$@_D~1F5'_&_'_@@F'_'_&_'_@@o*9?2%&''&7&'&'&766'&'&76'&&'&77& 4: 6 #N  "j  r  N =+$!'"]7 'd;8,s0^ ,m4<:'j  iN L %>67632'&'&'&676 e:%&F   l 0:8'&'&7676 ! *0A& '%8%?P\ <_ )7&'&'&763276676#"'"&H   J*9P % q=$%V3+ B  & Zi#37A&7&'&'&7676'&7676676676#"'&77673276'&%oS !5-. @Ma4; W[w`LrN!3=TG,wSWXW# 0&X pB #) A-Mek)P-Cgll@@RA%327&'&632#"&'.'&&'&&'&67>32'6'&&#"_&  ..*B+.!!S$1!2D)5?  /$'@, "<%5&81'(5!8$8",B&ph&qb>&qd>d&rdDB&pDBDB&ps>l%l&prMMQ&pNByuBy&r@R@R\&p))&p$# #&pW$ 'qt$&{/.I&k/.&qP/.P&rP\ 1"''&36#"",!!,q&pO8V^m&q8&x/ <cS e&p(Q D#n/./H&qJ@j 6''677677667    k   g I#CN'&&''&56767&'&767623'&'&7676'&7&'&g   WN' 0  J* #  S  R   !  P D` /+d   #    [?F 6'&''&7 p A}$6'&&''&767&'&76&&m    6P Q) /  #z'A \+  4E D8  ^6(&763''&7676767632~ $ >   !4%+  t ; G $ Dp! 6'&'466'&#&9G/ 'Q{$&%I0 +6^ A! F6'''&76# `8# F 0 4 ()'&7&'&76'&'&2676632 % ' -(  0  'A    *99 )dhy: D_Kh63276#"'&>  9?  QX=4M "776332#  M  7#"'&'&'&76667632+#G- $~Q;HN 3 %@W!#'&&''&'45656676321   4#;$"4 )Q&C&E1A}%'&&'''&7667&76676'& 2( Ad0Y*   % & zD D5  C. B&C  F 66'&''&7'&32'&&'&1563210#"'&&'&55        p }% D%[467&'&76'&'&2676632'&'&7676 (  /  (@  $L'98>)99 !(  = lQG 676''&7\d 8 5 c5z76'&'&'&7%*B * +=KEa4%! 67632'432''&''&7- BRv ${43 > !^i #8,JvJ  -+&32'&'''&''&7767676 c';l @!I*: 9<D%b 4v   e$'Ug %&W$.632'&'&7767&&'&776  5L< 3/\.xcA:  L +' &(!E >%S%D 1D@K6#"'&'&&7676&F8O++KM&& WK.(H3" 2GE&& E5RE-' 3476'&&'&'&7$IFUZ )*V2_2,cp)T3$'&'&'&&'&5'&567632EP)^7E? O& M  DDG Q5]w a 9o77yG!%676'&&'&&#"''&6766766Q(_7E> O%   DCG Q5]w a9n77y6H6&'&''&&'&72766J*@S08&ITT"cAYi|G4;  Fh@@&__*$76767676''&5w2H**?;#7#! 1%%[gGE.95D  D7'&'&7676u2H+*><$3("0%%[gGE*=4E  e 373'7U{S|shgg>8V^q- 6'&'&7Wr !M j  iN Q&i&ot1&o}11&1 1'n1b 'n/c1b/H&'qJ1>y&G>D&d>&;>&'qd,>c&{d>&{+>r&d>&7DB&dZDBS&sDB&q&DB&DBs&rsDB&{DB&lK&n>l&6>'l&p)'lK&'np)l&qr>&q l&rrl&{rl&rM&SM}&jM&~S&pL4&jx&'pLpWM&qsM&rsM&sByH&'pp*ZBu&{HB&'r{H@R&qC@R&r)&r#&rWq&pS'pO&pSqO&rO&{oq]&O8V^W&p8V^&r$"yv$&\8&'x/p{8{&'x/r{8&'x/{Z$^&}&$^'\&}&$^'qt&}&$ ^'q &}&$^'&}&$t'rt&}& l&j &pg &r &{ e&'ppJ  & Ae&'p &rJDB&'ps{&dD(Q'dDh'qb D#'nw #'n! DN'nj D'nc D'n DP'nk D 'nqs Ds'nrs/..&O/.G&j D'nps/&/&{7@z@'q'dAZ %2##"7763 .  / Z ? ?(Q !EL&&'&&'&7767676667676''&'676676'&'&7676%&76   &  $ 2. 9JS%%0I1b/ C7iLJ 3D,KB#)%"! 5)= )&+ "   )@(J !D_27&'&'&7676#"'676676'&'&7676'&&'&&'&776676'&&''&&'&7:5"-  & AH%0I:a''CiLJ 3    & ) !7$'6:H+ "   )/)%"2  + " ,5'&567674#&2'_ W"5; 3c/Dzk&"4<6'&7667632'&'&762567&'''&5'43627&(    3B  %Pd/  @~D! U  b%" '{Q+ 3A|  2A#276#'&767&#"'&767632766'&&'&72a*L?**L# UUgP%- $3 "0x %Hd6   78tw5 , G$@+6'&&'&76''&776'0&'&7Z ' (8#(405-15$G432'''&'&&74676327&'&76767676767&'&7 )18Rd$  "Yx&$   ~ & /+$4O !-HKQ,8   + 4&'&'&7#&'&'&7672&76767663"&''&7476'&'&'&''&7&'&'&7&76767&7647676'&'&766676'&'&476'&'6'&'&'&7632#"'&&7632#"'&&7632#"'&&7632#"'& BC #{ tb#43BB#~ s^$4! ; P  3-j: 9O !0i9y ? _J P V? _JS           *+ QeeR +*** RddQ +T    >   >     &\]    <   =    ]\% 482>>284 571??166  i    i  J/676''''#"'''&77'&'&76'&32!#$|571*3))]"!%|691*3))`*#w))w#,66+$w))w#*669f 6'&'66'&'"2D1-M|' &C+ (2[0O^K!&7632#"'&7&'&#"3276G  h   :!##$78$""#9; (( ^m'&56367&'&'&76676U  / L+ '   '    vo76676'&&'&'&7&g &m>  U  ! &p2 '6(J;396'#"''&76 L,  9 ' (* "7'&7667632'&763767&'&3 ."@; :,6  g A!0_@& u f)7632#"'&#"6760'&&'&7676 !L ;N  :! . 8>(($ 3'6(   0' (b17H4k*o#2'&'&763676'&'&'&776'6'&&'&7'   S;$%AL% t_-444 35- <&%0.-+N, he (2<FPXa661632#"'&'66666'''''&7632#"'0&'#"'&&'&'1#"'&'&763276'&''&7'&7'&7'&&76&76&76&7&'&#"'&'&76320654&'&326''&%776'&6''&&776776'&&776%76''&&7765&''&76''&32''&#"4#"3256'&776''&%56''&776'&67&47&' $-  0 8+%-#+<;E FK?C&305(@   -4  $.  .,%-%,::D GL?C&1.5(>   .4 <*v]"^)"bf-z+1:\ Y9\d(x_ -+}Y-+|U! , !,)"cW,{* 1: ,  /[4H;:,"*$9*344'0&4C >4[/  ,+:%*,  .\ 3&  9:,#)"7+334'/%2A >5 \.  ,*%Lj$ EE E +n'O#jLk%iLLi%!!+ 'nw!!,,I++$ D+ &o D~ +o&G3%(0(,a'77'Vb:l:яJV#B#"'&'&7632$..%&./-. .-  MKl&kIM&klQGpz7q%!r-s$2-7676'&#76''&'&'&77476T4 #pAGF)z E:V $_9+$#  7 ?*d .d3 O[J  iN!*''&'&7&'&''&767676'&&f)3.76676'&7667&'&7667632'&'&3 +Q'I2  G5& GL#'. 'F^7 D$ S =)LeK80@2k"*"  #K F3wG!x6HyBy&'rp*Z@R\&'ppZ #&'pWpd"S*&1<<S&"n`&k_ >&>d&'rdp>&r+>&'qdr+>&'pdq>&kh>\&jDB &qsDB&rrK&'n>>t&kl&; By&#&qW#&{W#&Wr&q^t &ro $'p:t$t'r;t$'r<c&p<dS&p0 e&'pqP&'p|Z&'pj &M&NM&dBy&DB&DB&'$qBy&'qkM&'qsCaDB& nD&1r[3 WM&1sZ6 /.g&rbV /.p&saY /&J D'nrz D'ns} 7@&zrQ 7@&zsQ DB&7 By& By&k; 8&'x/q{\N"!'!&'&676%.'&&J[|N 6.2RK'  .F?G.xDHB@5 XVdL7>/ -#!.1*  '&2kN"!>7667>!!%6'.ky(;36":H3.L *|= *9;374!#- />7LdVV<2&'  *1.y>&jh(M{,HR22''&'&&'&7&76766'&&''&&'&776&327& : Ors  & 'j^ F*'" '"%!1  {(LC  ? CB #-4  5zE-%,3T<,L;I 8'K>&'p4>&'{+4>&/"qMM&/AXp/HM&'qJ/Xpq8V^ ,%#"'&767676'&'&74/ "0   . 00 &"  $ 4 !  DU$,&'&7676'&&''&'&7672767&&y .    *     # D'A . &" k L&LLdD&MMMF'LLT432'&&'&143# 1  J&RRn9Nl.>2'&&''&'&456567676667676&&'&#"76e   *  ,  8         H  PRFn'RRP5JNT@ 6''6767767    k    gNd'MX?NY1$0+%*676'&'''&77&546&#"6' G 5"&-+#e"kM"I0 $! D!    ! 0F> 6'&''&77432'&&'&'5   p & 8 6'&''&7632#0'&'&55    p , %Ql ''77T-O . . )J V GyQR7'7'- . {G V P@vMN_[M4`yQ&``Q!7'7''7'7'432'&&'&157- . {- . { G V P@ G V P@% QR7'7'432'&&'&15- . { G V P@% A},46'&&''&767&'&76612'&&'&157&&m    6P Q)    #z'A \+  4E D?& + #Dbfs@9afs@9yb/<Fs@9b&s7zb&s7<Dafs@<7@b&s&77Y!b/7</7<sw'&'&5'476676  krI&B@@ ~`-=M]m}7#"'&'&7632#"'&'&762%#"'&'&632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&7632#"'&'&76329  ( Y    `  m          F  |   o                        "  t  #       I&'&&'&7676#"'&!."5%% 8:0  l n"&1"&#&&"&{#&{ &{"&!#&,&"D&dkS&sD&;d"r&ds}P&B3&=%"y&G&Vy&@G-&rg&r&rn-&gs&&n(=&09&ly9&f(=&q@09&qNBFy9&qGH(=&{09&{_y9&{Y(=&09&jy9&e )&q+ &q6 6&r6 |&JpI'nrtIp^'ny,$|.].$|'^&}]&$|'& ^&'}]&'$|'q'=q&'qt}4;]&'qWyWy&*&Vy&@G'dIOy'd}l0ddZ{\e@'|%.'8dq ^pI,pstqJ0Bqir R|.~r~|X{?{x>wHy8|!9<n ]?pq?L~&'x.2r%~t&rt{]&rgO'ncg'njgJ'ng5'nr5'ng'nkOvc&x#&&k#Y&'dG&'dq'^&'{d'{@&'{d^'n'ZdZ@'n'Zd^'n/c'ZdZO'n/c'Zd^'n'j'ZdZ@'n'j'Zd^'n''ZdZJ'n''Zd3R&''dSy^&['{'ZdRj&'{'Jd73$R&'dS^&['ZdRj&'Jd7Oc#&q)&q+;&d'pj &`hd;&d&`hd'&'dX3$R&'d3:R&'q<'d;5&d'pj &`hp@;5&d&`hp@;\&d'pL&`hp@'O_&'p3&'p3:&'q<'p; &d'pj &`hq@t; &d&`hq@t; &d'pL&`hq@t'|&'qP3$&'q63:&'q<'q6;t&d'pj &`hr@t'&'rP3$6&'r63:6&'q<'r6;?&d&hp9:9&' pQY;?&d'pj h9:9& ;&d'pj &hplI;&d&hplI9:&' p;&d'pj #h;&d#h;\&d'pL#hu8'&Nk5;J&dhuV'&Nm5;&d'pj &hpj;&d&hpj;&d'pL&hpju&'&N'm5p}(Q&9& 9&' p6;g&d'pj 89}& ;&d'pj '8p9}W&' pI;&d'p 'p>;&d'p>;&d'p='p>9o&' p3$&'pmv3:&'q<'pmv;5&d'qC9&' q$3$&'qmv3:&'q<'qmv#&;K&d'p ;K&d;K&d'p=[&Z=o&3$&3:&'q<;&d'p ;&d;&d'p='b &3$&3:&'q<;&&d'pj g;&&dg;\&d'pLg99>& 3$&3:&'q<;&d'pj &`hp@t;&d&`hp@t;&d'pL&`hp@t'f&'pP3$&'p63:&'q<'p6;&d'pj U9& 3$,&3:,&'q<;5&d'pj &`hq ;5&d&`hq ;\&d'pL&`hq '{_&'q,3&'q3:&'q<'ql& &prM&/.#'6L'[a'[?a6'3a6'Za '^a6!'a.8',n'+$d.8',n'ph'+$du[^&N'd12&R'p]'QdxS^&['ZdS^&['q'Zd87',n'+$p8',n'ph'+$pu[&N'p1&R'p]'QpS3&['Zp5S&['q'Zp5.8<',n'+$qh.8<',n'ph'+$qhu[&N'qYB12&R'p]'Qq2kS&['ZqBS&['q'ZqB.8',n'+$rh.8',n'ph'+$rhu[B&N'rYB12k&R'p]'Qr2kSB&['ZrBSB&['q'ZrBQy'U'pQ'U'q'pQy'U'qzQ'U'q'qz5&[5&ZA&'3&:93&:'q9bu';t&&'q&9& .8&',n'+$pc.8&',n'ph'+$pcu[&N'pYB12&R'p]'Qp2kS&['ZpBS&['q'ZpBOx'87',n'+$q8',n'ph'+$qu[&N'q1&R'p]'QqSZ&['ZqSZ&['q'Zq;2&Y'p =&a7dk2&Y&a7dk2&Y'p&a7dk0&&'3d&'dye)&Y'p =&a7p1e)&Y&a7p1e)&Y'p&a7p1&'3pg&'p;2&Y'p =&a7q&g2&Y&a7q&g2&Y'p&a7q&g0&'3q  &'q5s0 &'3r @&Y& 7pvBp&'p41O&Y'p3 7p&1O&Y'p3& 7p pq&'p;;&Y'p =55 ;&Y55 ;&&Y'p55 8&&YX7&&Y'pX7(&;&Y'p =&X7ptm&Y&X7ptm&Y'p&X7ptm&'p:x3&b&'p;2g&Y'p=87B|&;2+&Y'p=&87pB &'p ;2&Y'p =&Ip2&Y&Ip2&Y'ps&Ip"&'pj25&Y&Iq"&'qj;2K&Y'p =I2K&YI2K&Y'psI'&6-&;2&Y'p =I2&YI2&Y'psI&}&0/;2&Y'p =$;2&Y$;2&&Y'p$;0!&;2&Y'p =&a7p&g2&Y&a7p&g2&Y'p&a7p&g0&'3p &'p4s;2&Y'p =U7(=&ry&;)&Y'p =&a7q*CA)&Y&a7q*CA)&Y'p&a7q*C&'3qi&'q/@&'d\&'dD&'py&'p|&'q % &'qs%&'r %s&'rs&Y'&l7&'r7Y7'&'lr75&(X&&A@&'p d&'ps)&'q|+&'qb4&K3&ae4&DZ&ae4 2'^m&aeO&JO&'qJ3$$&3:$&'q<3$&'pqe3:&'q<'pqeS'Z&[kS'Z&['qkSd'Z&['krdSd'Z&['q'krd3$&3:&'q<3$&'p[3:&'q<'p[3$y&'p3:y&'q<'pSV'Z&[mSV'Z&['qmS&'Z&['mp"S&'Z&['q'mp";&&d'pj &#hr&;&&d&#hr&;&&d'pL&#hr&u8d'&N'k5rbd-d'^n'k*rWd-'^nk*V'^nm*&'^n'm*prO&JO&'qJ39&:39&:'q3&:'p`3&:'q'p`Sf'Z&[lSf'Z&['qlSf7'Z&['lr7Sf7'Z&['q'lr7O9&JO9&'qJO9&'Jp_O9&'q'Jp_O&'JpAO&'q'JpASL'Z&[nSL'Z&['qnS'Z&['npS'Z&['q'np(7&'p'rl7(7&'rl7(7&'ps'rl7u7'&N'l5rl77'^n'l*ra7'^nl*?L'^nn*?'^n'n*ph;;&Y'p =&55 r};&Y&55 r};&Y'p&55 r}8&'rY'&kd'&'krd&]9&'pA_b9&b&'pb]7&'pA_'brN77&'brN77&'p'brN7 & &'pj'[/7>'[gs`Vr0"76''02'&'&'&77&'&'&'&7674676667'&767676667'##"'&&'6'&6676'6763237&&3276'&'&#"7665767&''&&'75&&'&'&76675'  5S  "  kW   MZ-/4S  $kW ),| M  F  ,,V0*z(G  + ^!"   W    C C   W  m `F !9F_  ^F !!! F _ œM  L  5\U  M  M "    9  9H9   9  `Yu&'&7676''&'&767&&'&774103&&''&&'&'&7674676667''&76667675667'#"'&'#36676327&&''&'&'&'&#"3276'5'75&'&'&766767&''&&'66JZ0.4 T "lV *} M  5 S  "kW i.(|)E , 3  G  ++W  !" W    C   "    C    Wm _ F !!! F^   _F$! F` fL  L  MfM  M  ! ! 89  9   A  9    9hB&'c'pj'bq(&'p''q%]&'pA_'Yb'aqgB&'c'bqB&'c'pR/'bqI2&Y'pK& T' Xq2&Y& T' Xq2&Y'p& T' Xq(9&''Pp_&'b';pO9&'q'JO9&'J]&'pA_'Yb5 ;&'Yb'pn=5 O9&'J'p_(&'P&'b]&'pA_'b9"&' &'~(U&'7&'YbX9U&' 97&' 'mrY7 &'Y'5 rMO7&'q'J'p_'r7(7&'ps''Pr<7&'p'b'r9"7&' 'r7&''~r)O &'J'p9P &' 'p'mp&'Y'p'XpDm(&'P&'b2q&'OW&'q'J9C&' 'pK_m9^C&' |&'OC&'J9^&&' 'pO&&'q'J'pOO&&'J'pO9&' 'p'mp&'Y'pws'p(&''Pq9f&' 'qH9>&' mO}&'q'JO}&'J1&g'p3&fF'pX3e(&'p''p_9>&' 'pm&''p(_&'A@l2&Y&<:;c]&'pA_'Yb$&'c1O9&'q'J;&'Yb'pn=$&'c'p1]&&'pA_'Yb'pp$&'c'p41;&'p'Yb'pn=$]=&'pA_'b;=&',&'c'bpO&'J'pd9m&' 'pK_'mpdh,&'c'pj'bpO&'J'p_'pdO&'q'J'pUdO&'J'pUd9&' 'q+&''3~q9O&'q'J'pA'pUO&'q'J'p_'q%O&'J'p_'q%O&'q'J'pA'q%O&'J'pA'q%O&'q'J'qW%O&'J'qW%O9&'q'J'p[_O%9&'J'p_O9&'J'p[_O&'J'pAOU&'q'JO7&'q'J'r7O &'q'J'pO}&'q'J'p_O*&'q'AJ@7O9&'q'J'qX+O9&'q'J'p_'qX+O)&'q'J'q+O&'q'JO&'q'J'qO&'q'J'pd&'b';q&'OC&'q'JOrX&'q'J#;&'Yb'pn='apgO&'q'J'pA=&''p 92X&' 9>&' 'pK_m(&''p_'pdO%9&'q'J'p_O%9&'q'J'p_O9&'q'J'p_O&'q'J'pO9&'q'J'pU-&';g&'Y'p=8y(&'~O&'q'J'pAO&'q'J'p_'pdd[&{';d&{';'q(J&D''a)'C`'BGZ',n'+$'p'' `&''c1s9&' 'y>;&''')k&'{'q'+'ph5bu`';t''&' p7Rv #467676&'&&''&7632723&'&7767267632667632#"'"'5&67&'&#"&'&76'&3676'&''&'#"'32767676326'&76#"'"'#"'##"''"'&76''&7676/&''&'&76767'&776'5477632327767&'#&'#"'&7&'&&'&''&76767'&76327&&'&77607&&'&'&776#"'767&&&232676767&'#"'&7632&'&'#"'&&'&&''&4745763267767'677676'&'&'&576&#"2767463232'&3#"'#"'&763276327&'767&&&#"%& #M%%4  !,  <+ .T   *a;Q9224 %U.[+'C3)??   &!*%"eB; !(2g # B *+ D ,:<8 <55 FPR*>!  a * ')  " 3 %VV9 4  &% . / #/  !'6,a0B a0A     "0=  A  4  $ &0u ',"0l@01/4 (*H   <%.    &6 %&FK #& R@ 0 4F5I% ,9. . " - 'C= #    T&fE,9<#MlL26 1@(9q:7  ![7B  '(R$ *$I " C +&4: !'&*6[D*' &65"n  # # *"(  .       $ } l.776667672#&32#&''&'&7632767''&766767&7766'&&'&'&'&'&''&'&766767'&77676&'&&'&'&#0&''&''6764'&&'&76676326767&'&'"6776767767&#"677276&#"6772746'&&'&774'&&'&776'+ $@!  )7]&%T0%)(+'/> T&  BFF./)+ &aP5#n5 (o  H    ,  ."  6  #5 0D  '  Y? " A[ $ ,Y   o  Y1(<*L1%9)? 1E4*+        a+6('DCGV5?>=  )'4U *;+j+2 10d #b;   dF4%-?=  AKJDJ     d-b;$!%dZ X  x q L   E 5 V5 f4L&'\'A'q6W-' W'*-'Xv' >'' 'aXh''a F' w'a't'^<'^}'^'^ '^ '^)'^,PT'8' 'U'pSs'q'p,~'Va'W'V e'W Pe'Dk'Ck'Bk' 6@j[*j'[ZeI\[?F ^6 '^QeA}_,}'_Ge ^ 2\'^me6a4&aeDp!bh!&be&S&bc-&<d]LgQ'nd &d&&d$t^&db@&d"&p#&p}&pm&q;"&qd}&qB&q=%"d&rdyB&rB%&r=%(=&pW09&pGY]y9&pA_(=09y9(=&ps0&py&p  &p6pnp'npuIXH"HXH*&r*s&rsH7&r74`ZU43&pZ&pp &p)=)&p&p,=&p `3;sC`3&psW&p?&&p5-&&pbo&p&p4p&q%&q&qnL&x.2].[Q9/>Wyv&p!k&ps&p;d'ydgnOcOc&q#&q)&q+&'cUP&?'c>]&'d5BUf&?'d> >y&'dU&?'d>&U&?>6'&'&'&''&77''# B` 66, 61/Y  TiGF 9&p@$>?':pZ;*'&"547676'&'&767676 -:9   NsOO.'-8@'& % E #)0  ?5 )#DD9G ZW'p.W@$>?:$++'q3&x/7U^Ze&p =t0 l&p{O<N~3Y&oqDW=tF'rF 9&qd 9d&rd@$>0':pV;&)p8b<N&~p5X$&p60' p! 9l3Yo$_#'p&eV0W9&HpY%$s*46'&'''&767&767&'&'&&076'&65&'&+)]\ *N]h .,(m" 5 'v!(# [YW5A3 # '@/P4$ / 4 , 09+%6763276'&&'&'&7667&'& #(&(@&MQ kkKz+V,.E5k4:RdJ,& +$*9 = #80+: . j#&e`'q )V$^' eV&>R$_'pF&eV%'"N(Z$o''peV,P$''qeV%'s&Nr=s$_'qB&eV$_B'rB&eV0&HpS,&Pp6p(W&Zp# >&ZpZ# >1766'&#"'&767&'&56767676676pa' )C;t9VgӆE N=**HG+6@yt'%621>='2& Pae!(3 " +'T')q<y&o<`e&}'p<'t4 9&767&'&767676'&7667676766'&}M /<)* TF_u  Ru 4/yl, (DD8h+z#/&X qB  H ?$V^VB<-"' 2=?%0$% <&a~<'&Zoq9D<F't'reF# 0&ZpV<&a~'pX4 &_p!<`&}<'Zob'p'.&'ip 0p&&i&b'q'&&&o'&p;s&-&h'p4&Q&'qV&&'r#s'&q9B'&r9B&'ip~Q&'pp&'p[-&'hpUb'&7,)775&&''&'&7676&&''&776664'& 1  $ "(. 0 (sJ Dj&@!+  P9,ES74%>  G%[,7F676$7&'&7676#7667&'&76&&'&'&6'&&'&7s&'$h%-  H5%  &dD /*%"'",,}/>]$<'.97^ %Q,;g-XBW |0sL&>&pr8,8%54'"'&'&76766676'&'&76676'767'&- 6? ; F2 "  % /D 90 <98 P /  b: I|E5 HK 84=GQ%54&'#'&'&'&767667667&767&'&76'&''&&'&%&76'&65&'&/G01  E2  4  **\\ *N]0H 1A~'t!(# & %*4 P.?'A. ZXW5C2##? L G 3$ 0 4 , 7<.;?&'&76766767&''&763254&'7&'&766&s (C( P&:<*#/ +!(2( 35n !Z|96 L:UG.*;t`('2F,,Q&.    2 K8#S )(')1/+7H'p8X&>?I667676#&'&&'&&'&'&767&'&54767676676676'&_6_n=*V5V {Mu!!цE O=**HG+  a$d4e\B Me,,]Jz1dlW<'8 &?`e!(3 6@x\:N6U9^]8 HPZ54&'#&&'&'&'&76767662776&'&'&76676326676767667&7&'&0 )>) G1  B    >X4'7~$[7g=!r /C # *(5 O,CAJхW ," p))6 0< # 140& ;1 - B K 3,:D`6676'&'&'&7676676'&"##&767&'&6'&'&6'&&''&&'&776\$Gd s ab"j.]=\=jl 8   H3! '" '"$!Z t%Y5\,,6kMd "5#@ 0&N-r2 D<?F6T.6)gL;I 9>L'&7667#&'&7667&&'&&''47763276676&'&'&x  0+<5A|% =#     #T  %XQ(!I' ,P$ bXO 8H, oPPF" , *   [B:Y dS3$':({+~7ET['&'&76767&&'&&7667667676'&5&'&&''&7&&667& 0  $  !/C    S 24!  -& -% ,  P9,E  s&5 ?; 9" +3 'c AN  &(sJ M#^  L #>2 5e1>M667656'&&'&776'&7667'&766&'&'&726'&&'&7u0F{%.  # !;  #)h77%bJ*'p6Y*%"'""O ?$'.O'9 J C[.Y,0"4"J(,Q%  45WX+{AY4B<L4O\76676'&7667676767674'&77632''#&767'&'&6'&'&26C(n|$D-  44 '2  # ,@.S 6R\  !  )   b?H)jWW #  +L4H .H: 'Q +I =+@@" RB(K3(},'.:FP747&'&7676676'&76676676667676#&'&&'&&'$%676'&;O 5) UCb;B  +c8 3E6`r;)W8S ;N@ ZX'(Sփ "/&,;   rC  #( @>)^X@VL~1hw{S:(8 & PNB=J^`8;FU]6766676767&'&'&76767667#'&76&&'&'&6'&&'&76'&X:g%"7)P B(''a0p?1], $g?#8>*%"'" $ 8}8 _$4 L3f ==q#>3' %Q,;g-0" w&I28vL $ ( =JP#&767'&7667676'&'&77667636&'%2676'&'&%&d  !0<$S|$LE"$ %$LWXZ0L! G7e.-P c, X?@Z+O .Sσ5)t$!8W 5p3B^f#&7667#'&7676667676''&7632%76676'&'&6'&&''&&'&776&#"g!   1 )Q}$)O%1=AR,,;" XI12b  c!,q'" '"%!: -BO .T%&4C.W <# *'$#@vuY98:f=3B./(!|  L;I 7H3?&'&7676667676'&&'&7767654&''&&7&'&76s (D(  `+&$ ' :0J C 34)<Py96 K9Y>R B5e (CEBXI=    +C;&S )524F&rF%[,7S676$7&'&7676#7667&'&76&&'&'&6'&&''&&'&776s&'$h%-  H5%  &dD B'" '"%!,,}/>]$<'.97^ %Q,;g-XBW |0sL;I %[d,7Sc676$7&'&7676#7667&'&76&&'&'&6'&&''&&'&776'6'&&'&7s&'$h%-  H5%  &dD >'" '"% ?'#'#,,}/>]$<'.97^ %Q,;g-XBW |0sL 8H L&0&pV8&p(&p5X8 &pm:&p!%xAQa7&76676!27&'&77676'767676'&'# '&76'&6'&'&7730776'&'&Z5#!! 1 #MT 1  " &  ' D0  > <0?/ 'EAb*$mT X  #Jw=i vg g4qLY (Xy$)  +%\ #L$ @H&K 0U/bs76'&767&#"767276676776'&&'&&#3276%67667667654'&'&766'&&'&7732776'&&'&[$$ /+(&  xa J2 3(, { DA'2 x;^  Zr(  !( %% 2 0 $ <0 !/#o6IIC# $`Ny{ F &&#K%@# 2#1 DO i34FH39#JTZ6'&'&766767667&&''&776'&766767676'&'&'&6'&&8)4) CB/"YV D)&N'.,:HC0;7& R(>V; 5"F !*@ * )= Nq//8K/[QO  B!6. 0 ,G#' 3MZZ65*)% " 4>Oa6'&&'&76767677&'&770'&7676'&'�6'&&'&7732776'&&'& * 0m?\$#)@ A')Cs J ,N w"9,C  C,X?  38JZ,U*6 s*!Y 0<=q1 fI[ , 0  # 0 '  0 !!/ '+#4#6c/x /c2/OcL78;>?f X 6A{520XmV5_\Y**v']+49'0 L / I  . H6 K ;60f&&'&776'&'&&54676767&&'&&'0'&76'&7676'&&'&776'&'&'&'    $VVG+#% 0 ;   ? 1  F11ZDRS#    V1*A![99Y mT;''l(:g.V(hE[,,ar MDC\Lt/V XnS..%&5Sg kI! 13$$EPU67676'&'&'&&'&76776&7676676'&&'&5676'667&g)5Mf Q ,  < 1  <=YY1 "' * 0F6S  #YAz92 -l>GF!,E?m." b$+ س31 / ! !:xBRb'&&7676767&'&77676&''&76'5&767676&'6'&'&7712776'&'&M?d<: 4!!hIM & % QMq%%8 767]=  2 0  > <0?/ '͙//` 7L.]S [87JTT  +T XQ?>d  PXX34 ]&.\ K$ @H%K 4>''&'&7676376'&77667676&&'&77676#'&76'&'"'&&'&'&"'"'&76'&&1&67676674376767654'&/L 0z, -  0 R2 *#c &.I ,# t  )4TՔ# 1+(A}:6 M-3) $EB]+KKT t!wy>^OA  w>D  6b=  D  $  O bD'xQI$8*.*=F'H& 8_/ 1j%6'&667&7676'&7676676&767676776'&'&7676'&&'&767765&5 %@V* 5-gp9M$fUDQ +8 $W3hI  8*[J]q6$lg\(R=!!;;0 L ?,J;02K'D ^3$M5%bA7fJ" L$ <l  !K)-v< M 09/ap#"'&'&67676767674''&76&'&#&7676'&76'&726766767666'&&'&7732776'&&'&#"'&7676'&'&n- #N'gA@{;vEG  08cͨ/ ;X> "#G=<00:fB6  >/n@@l.Z 2 0 $ <0 !/#  +H  K~&*,%,-Y02 V)GY 0ZH_0M)\B( (   [J0a10"1J)2B$  L AHK ,$ .}4s{6&''&7667632767&'&776766676#&'&"''&###"'&76'&767676767676'&'"76&6S%  Q5b,.mq>T)!v[, ,%"L!N.[94Y-M!A # & /  3]{ 4 , N9lh+YnK !-" [ q^i3"X0o 5Iy=l0 0W(u=O:_  9&H"D C"H&<_ =U"?Td  J]xC1 i+ S./_ 9 yH9i%Kf%&762'&76767654'&76'&5476'&767676'&'&'6'&''&&'&7767'&'&1077610776'&'&632'&&#"32X33? -+5ll6'z =,+hjk5 E7./K?AZ[hf10@ v%3ihL ,% 2 / '  # 0>' 1 !"0 'F(A '%yz!< >>,,>?_ dH5r6?z:  K0 H) . H6 K    4>6'&&'&76767677&'&770'&7676'&'� * 0m?\$#)@ A')Cs J ,N w"9,C  C,X''&'&7676376'&77667676&&'&77676#'&76'&'"'&&'&'&"'"'&76'&&1&67676674376767654'&'6'&&''&&'&7767'&3277612776'&&'&'6'&&'&7730776'&&'&/L 0z, -  0 R2 *#c &.I ,# t  )4TՔ# 1+(A}:6 M-3) $ 2 0  $ 06$.0@!/ )] ' / $ <1 !0#EB]+KKT t!wy>^OA  w>D  6b=  D  $  O bD'xQI$8*.*=F'H& 8_/   K  + H"* H&1L    L AIK%xA^7&76676!27&'&77676'767676'&'# '&76'&6'&&''&'&7767'&&'&�3077612776'&&'&Z5#!! 1 #MT 1  " &  '  2 0  > 1 '  0?!+/#EAb*$mT X  #Jw=i vg g4qLY (Xy$)  +%\{  L /$ H . H&5L%xAZ}7&76676!27&'&77676'767676'&'# '&76'&6'&&''&'&7767'&#2776106776'&&'&'6'&&'&77776'&Z5#!! 1 #MT 1  " &  '  2 0  = 06$/0 "/#Z 2 /  # <1?0')EAb*$mT X  #Jw=i vg g4qLY (Xy$)  +%\{  L  ,$ I#) H2 L L AI&K 0B/br76'&767&#"767276676776'&&'&&#3276%67667667654'&'&766'&'&77776'&'&[$$ /+(&  xa J2 3(, { DA'2 x;^  Zr(  !( %% 2 0 > <0 "/ 'o6IIC# $`Ny{ F <0 !0%%E> &&#K%@# 2#1 DO i34FH3b K$ AIK .}4s{6&''&7667632767&'&776766676#&'&"''&###"'&76'&767676767676'&'"766'&&'&7732776'&'&&6S%  Q5b,.mq>T)!v[, ,%"L!N.[94Y-M!A # & /  3]{ 4 , N9lh+YnK !-" [  . 0 # <0?/ '^i3"X0o 5Iy=l0 0W(u=O:_  9&H"D C"H&<_ =U"?Td  J]xC1 i+ S./_ 9 y" L @H&K 9i89%6&'&&'&767632676#&'&767#&'&6767676'&'&''6676&'547676676'&&'&&'&##0#"76766'&&'&7730776'&&'&67&V   a5. \DM='O''^7:8`) #;.b      jk Ehji ' 0 # <1 !0"a VUP %  8( 4"!7# =!#V9   )*75#$  - y       (:@H  L AHLK11j{%6'&667&7676'&7676676&767676776'&'&7676'&&'&767765&6'&&'&7732776'&&'&5 %@V* 5-gp9M$fUDQ +8 $W3hI  8*[J]q6$lg\(R=!! 2 0 $ <0?/#;;0 L ?,J;02K'D ^3$M5%bA7fJ" L$ <l  !K)-v< M 0,  L AI&K3"I"'"''&3276676636'&&'&&"767'&767'&7676276'& #T036 ;(G  S% !yP"-/n={E  u25," 1  .P2:) 345  *9 N&'&'&&1&'&76767676'&&'&766767$7&'&76763276'&}[az 0>kR(  aM)    -`9xAo "$'@&LQ Q$c>CU U}'e2?    F0dL#  9 = !&!&'276'&&'&'&&5&76$   *.b!n]}3 >M ;y ]=J;\v!636#"'&&'&&'&72-^   )nh~\"6z3g4hR 6'&'&'&''&7 B` 661/Y  Ti`3;5#"'&76&'$&76676'&'&76676u1 51%G{BΊ  EE"Dy5 h (T "6\q9  <z # <s)%"'&7667&7676'&76676rD) " 4{-)  >FD !!R] P d%% &58   * C $#56'&7676676%6676'&'&7&'&'&76-! F Q\4; Ihq " f'e= h:"c iU    o@ $( @#W^+L!h  9 2{ " 0&VC%2''"'&7667&'&5&76^#[pk8(8$>(Jw8;*Z#6mh&2  *FA*$"!76%67674#"'&#"'&76K 9   D-, E!  1#? //:.xx:?>k#776#"'&7676'&'& a   ;  >%W4b3 # >)'&766767667&'&745676 Iwe@ 9J 7 t.976.6 fBW'1/'9$7#"'"''&76767632 6A$Y  m )Z7=7*  9 - /%#&'&&1&'&76767674'&&'&76676  B*-9lT eH$!8Zi U})e2?  i>D>l667676727676'&'&q , +e9P  7u#$B I|"> h  d8-x*7676''&'&'&67632767&767&767&/3> 8# jH6]e=> K)])^'1j) ;!)@'(> O0F!i9:<Q  Y(2#"'&&56767&'&'&763767&+ g9 |3  "j Nx?%_   ? ,m4<:l& %q.66#'&767632766767&'&'&766'&&22 X-h=p)>3'03-r4K :/$4 L3f $ {'122'#"'&&567667&76676&327&  9 O#68  2 +#1  {(LC  ? C   ,3)Hj8'K(=A27676'&5%6636'&'7&'&'&<(#; 2^  #f9G(Y@@(#ՇtӂP4    O"#*5PSIw<'  "ZLo,k09$'6763276'&#"'&767667&'& &%C(OQt`uCB8 G~7i  9 = )$$ %L#DB2%676'&767&'&'&767676676QTG(HH=9ߓ = M'WW;G)6?{`6 ^_\!(5y9?676'&&'76&'&7665#"'&567676676'&'&'&'&76TFVZI , *)<' %?H -]/;)R& Q2* P--"  81 * GV ,]'(4672'&''&'&5&76767&'&7767&&  8 !(, +C I7   :21; Q  "U5  " 3') - &y&06'&&'#"'&767&767&'&&76'&6'&'&++kj  )Y1P& *-& ,   { *BZWV6C2UD'A.J 3$ 0 4 , (Q6#'&7676'&6'&"32e F&% 1D, 9* 12F %;:?<##21PQA :%d%-7676'#/#"'&76767676'&"676'&$YX;.'!l:-7:=9 1*# /D6X^ ]  "#R& "0ClZ,|O 6"L&*L46#"''&'&76327676'&'&&1&75I'* b1  jF0 '-+  aW0J '*'<abH Cg6' !SQ9yE'$76$%6'&'&'&'&76676%6%66766'"'&76ja| 0;,ddyr    @v6n5<*e;E11#ʦw Z & C   )-U H /:;$&&>21 +'76'&'&'&76%62320'&'&'&76NP xc m9 *dRZ^cJ 5KuGE~}G'*  ,8+%&'&'&&'&74'&'&&'&776b!  AJ ZB+^"7UU   #  ,1? 7  * +$ &].7'232767&'&'&76%632#"'&&'#"&'&'& *21( Vj coT{B F7  ['[U 5; @ s4vB_*&9[%#"''&'&67632767&776Cx  H8LHc]dBB<,7rK  \-$P>R77a1b1 }JZ X#<%Q$67632"#&'&76367&&'&&''&d! ML 6# $ - 45 @''|SSf9  2632'&'&76767&&'&&''&7L  NOA<$ #2)  1   ![::Y fQ3$$md`+{R oPPF" 7'&'&"'&7676'&776  ;<E$!! a (*Z>k  n E " " B*fq[2%6'&'&&'&&'&&76767&'&5676>  86L1Ox76   -. ^Z ", )=-&F.U((L%%F"F ,i9+7#"'&'&&''&'&'&767676D%&H$![P% "240&<9  J?e, +-(j# P69 v aյ^S- />'&'#"'&76367676&'&D6+ RCB   -! # )9!!> E 227[>b" +<cS")7&67676'&'&&'&'&67667&R ,M&  C;9V$  )d 8)*~ ?; 9" +3 'c 0p?9&54 .76#"'#&'&"'&763676&6'&&.DFL DR sZ$0  ^ E . 601A28 ZK- -Y3%KN*%632#'&&'&'&76%67$76'&'&7 #  IԺ sjI|DA 6-, &91sYSK,6Wy)%632##'&'&676327&'&7  07Z@?  E1  ucr55L&gA_$\yP';r($'&&'&'&767$7676'&'&776$  [Fʄ_&M  DxK?s3PL.F%3-#1)* ^<(?(6>\O  ''&'&76763676'&'&&'&776e++e@> + +11q?-$!N/.Y,0"[ 33Y[MhA@U.O'9 J 4p08%32##'&'&776327676'"'&76&#"76@*% 'r8;d>H&36m7a@B./.,'$$@uvZd*!'&'&'&76767676676676 O- 4N+!% C,=%$-E6y(!EBj((N5Ab" #e(%7632'"'&&'&'&76766767&'&m2277(4 D/1S"2 >P ,,`UU  ;/)(*M$476'&&'&'476767676'&'&5 . --Y>N$<37UL (CEAXJK  )=S 5N4`AK%''&'&76327676'&'&77676676322'7"6767&:sdXsJI5Wx6''&&'&6766767676'&'&776676&J1  :n_ %SJ   .e!  -  0&OGNM}GCCbY**P .i -,S& L;D+ _3 R ?X??8W U1;7'&7&'&''&7676676762'7&7676  '5   .1 5B*KJ7%41 5 L~Yt:Le@1 . W Q% J 2WED %S4 ?:ILW+2 +XHM%67676#"'&#'''&'&7676327676'&77676766767676 A5JC  ::*[ !fC")0FRVJ  ]/+( ^9"q Q.; 6T-Y&GG\t/t"#?NX S !!1 ".6''#"'&767632743276'& H>;:L(/ `$AO*+ &($Q6RDK,+ Z%* ,ByuE632'''&'&7676327&'&766767674767&'&7=  -E U .aA);@>  5- ,2k .H: &Q +I =+Y(HIUy*N` #  *L3H:76767676767432#"'&'#"'#"'&76c#$ 4=  R7 F.98$ ,b 1r  @]c>8.''C):A%'&&'&77&&'&&''66763267676#'667&XA1 nZ6'EO\3,&5P+a_`\;2  , H#nIJ@/  .  /B+P. 8 V,& q"C:E6676"'&56766774&'&&'&&'&'&766"6676'&  }D$&'FXT  /" 1 ^M_63(  dn 2Pt 7 ?3$6'V=##)\<)=D667632667676&&'&'&77&&'&&'&&'&667&  A5N0&= @J0*%_:7 *E[e7,  I%1 0< # 12* A4l99c++/6` - B=7@%&'&'&?&&'&&'&763267676#'&67&JGu;G  #+-8) > h89 1'.(I! a|Hb+{ @;`66 T;*g : M0 '/M, Di*4'&76767&'&'&'&676762632##'&72ّ#$g  Zr`K$& $%#$ D5 G ?+H=l: >'(Dp* ^ ##'%62'&&'&567667667&''&7&/  45&(C"1  QC7!"% @@u$a(,2YYJK   (##:*;O/+Oc-&766767676'&'&'&76676#"'&T  53Hm>>6G5a{- gyTBt1=-  Jlk8!/ ): %& B5/./&'&766767676'&'&'&7676676lCQ7  lm /|5 J2Af `c\*Z  3#A 0'M-s Nj2 Wq^,-6lKc7'&5&76'&&'&&'&776#"?.) l" @@<  'cd #"&&''&7667632766763676g ( ( B C!L(B8R) (# =I 4   {)766763272#"'#7667&7&327&+# .B au?V9&z1  )H(LC A9JS?%F-8'KQy:Us7676'&&'&&'&776A   11@99B  +$ L\B#6#'"7763676'&&'&&'&7764 VAgNF    @'4x) |K8M j`$/$9K2Y|72#"'&'&7676"::22*AC,"k?  D @6 ) NuWNL*22''&7&'74766766763266767&'&342$$J^B7y80G  'GE(OUPT&&L$$@?  '*dY)_67 6(H>a` ?K$2'&'&7637&&''&&''&766768(6 JJ>   "! AA5* 2  m#&767672'&'&'&\ %%+ *  1" /$%8&%/0U#'&#"#"'&56767&76S"  f0& P"6  ,  43 JP?\,7&'&776'&7676*  &% > L83/,'$ $(+'&#"'&76327676'&776761= )#[U KL+5 $T[ ?  4o=z (3 'v (F6 XZ>6'&#"'&'&76+3. .#&.D$$? +H $& d*-a@ c676'&'&76DwSR'>  c1ZY"  P E/= 2Y5A 676'&76N21  ,.hO%6'&#"'&'&7676D289E8  ,F!+33-.67N-# (&%b8543*%&'&7632'&'&76327676'&'&&  6 חM>(# <d3C $ (*02QBg}u  Q "676'&''676'&&''&&'&6h `"E@)?K  # =U.oK' 13WO  +k(667'&'&6326767&' "  $R1`fG4o*)CAK;&C  '$%!11z.I9<;$$&'&'&745&%&'&&'&7667676 OP & %8 =& "lKR#x <89TC + yC #E%]!+97&'&&'&7676'&d %4 H# )5 6ZP   4   " 5g'&&''&7676b$/ L   - ܅&)t. #)  76#"'&'&#"'&7667&k  %  >)(? %% C" @4 * J=7"'&76'&'&76676/)     6 Z{z' :8J!%67&'&&'''&''&36'&'&76 J\;U So7b*! Yr <aBY JWn7i2؅8 + [1667632&7674&'&&'&76J# " 835!  0 "An/-'/G%&76762'&&'&'&76765&'&u1/Qb(C5z PR:? # #  3 ! 76'&'&"'&767676a U<>= ?GI >`&  5<7'&&'"'&767619 V &M(  E,+ 1  9"747632#"'&'&'6767&'&?!VZ/ 1.9wIk! , 7=6  :J0  9'676''&76763&'&73G   'm))1%'&76763276'4&''&'&7676&76O  ;WBB"H6.3"5/,' 6@_EEtWJ@<3d#"FF "N0*$96'&'&'&'&'&767676676766763254'&7 1 C"6&' 'e,#K(   Z)N= 4 N4  |UQ% #1 +  2 N#'&767'&76676w /S   Q& X Z (G  ((  ( UPIA08*$%'&'&7667632765&'&776, !<@[   6>7tqM8&($I30Ao S_ @ ;A2#'&&''&'47667&''&767676$76ƵRFOq%  @Jf&)// 'F&fY6/@ ",+% .l>SECSK "1# ! PX A%,R&C~@ #"'&'&&'&32'&'&'&67632}3P +Z^˞  X    F `!%7%'&'&&''&'&#"'&767632367674676   %/(43&)151WL +9 '5 ?4J Mg# e - ,*7'#"'&&'&&5&'&7637676r   " @ \( ? 5)!A 4<)R("A V.&'&767676565&'&776aeFx'> # 327c3h%?f%,?@?IH  5#"'&&'#"'&767&'&&'&767767676b  $;%$jDED*#! /AUa 4)D@* W+a6 Α :7U -]??>$ ?@S] 555 #O&C= V (_) mH#'&7676'&'&&'&5676676l  ^" 3:   Lh :GJqe/7  !F  (8Z"_(%'&&'&'&763767676'&'&77676l  !. V7 j&)55 (.463  01* Fg&'&767&'&7676'&&76  p}) ./.E4 5\:D^o9 %.6 -70///= i,`u!197#X*m)4-#d ! # )g=3f)%'&76676766767&'"''4( E*)S(Fd  XX4j4". G//3 Mm$  yCE -%  4 Tc$632'&'&&'&&'&7!      .   /-Z *6/GN '&'&76)'/[FT/2%;h*2Y076#"'&&'&&'&&'&'"'&7667676'&&'&&, .B,6V/Q#59NL.\ z)%1c =hV88=/g,  -?8LA`%U%'&'&''&''&76 Ab c2 a  <j )6'&'&&''&767676'&&'&7  $6 +  ..,))> a;:%& *. ' gk 9#7'&'&'&'&#"'&7676676763 1.-3%  %/)) ))2>    #P#"&767&&'&'&767\  : 5 * $ xT @3dF-+7#'&&''&763270&''&&'&776  )#"$H *   !1&s 'I 2q#/  .%ez(z%1%2'&''&76767'&76676'767&&V  U&U4+,6    u !6  j h1 :)* 1$$97 g   "'&7676'4763/ F ,w636#'&'&76766766766++   ?7B/~' +; /2H1C[+>" @$2Y''&7676#&'&'&T &EKP 6.2#& '5 eh $ 4 0U'&7672'&'&57432!UK  >4'' 9E-,< )%'&%&'&767626767667676 4 $ A~:? /g{33/ +'q  &&763276676'&C  , "   M/2#&'&'&74567632 .L ,*+.N(&O  ' ."<80U72#"'&&'&'&'&72'&'&'&'&'&7676676  KGFg LF1@C)( S   ZM$D W]+(()6$Z)[.#1 PJ '&.`0N7'&''&767632O)*)  @& , 66'EB#03&'&'&'&76,+8"#O ## <+1W +,12+1%'&7667632767676474&'&'&&57676  >>p51)8^@=  9''I#E33lCH%C=X#"*!6!? /3*%'&&'&'&5676676'&&'&'&56767632 2"=p ;`# 6.M +,R7B{Y$  %< ,)Ru!%6'&&'&767667676'&7 33X88(?4* 0k pMM "$:(2<67632'&&''&76766767&7467667&'&&'&'6'&X jj R4hb2  &: & !  l #0"D3 QQ/U# 84  .! O 2,G  ;R~.2'&'&7632767&&''&'&&'&776C   P  ')***     '`JIfx00{y! +T6%'&547676'&'&77632 F"..{ f2' ('*'AZ/F0d1C  G.6'&7667&&'&'&7676767667672'767&"    "``#Q44 4!1`F.+.fe1F[Y9,G$  #",,;-,4"-/^$#!."=\32/776'&#"'&7676676636'&&'&&"7667676{2r?D  3-[& ^-19! ;  '5  )$"7     D%'&'&'&'&'&767676$   !., -.$$#Z: &&; (;;*+/.Ss3&'&76'&7676327667276'&'&)�h ]]yS* )~.3QJRR_ 5(   #00 4XW[iJ`& 1) ) &%'&'"'&6767676767476 8/3W#@2g  L:  --P@W\k6'&5&'"7676766763 < +J,x9 .jG2hu?i0!;;!HC  A($;077676676'&'&'&767'&76676 hC@m&E 6U 9\\[4  }Ob5  JK+$ YN!676327&&'&&'&76    fz. B@  ' /D)  C :* 676'&76766767&&"762gHfOsP$<:5*d:  G   9V'M  "''632'&#"'&7667&&'&"'&766`3%$F!"L,S _a ")=h,8 A  F**?   6+%'&'&767&&'&7676'&7764H-W4  -157edY'+.A9 < ! +%*Y4; N $"58 ) "/%72#&'&76676&'"776765 ;  = !:$%  ,%Q D:.{*    2` 2Ij#+! &)%-767632#&76'&7#&767&36$W`  &8 3a -  '9'L@ o+( K; 9 >I<A +62 -H$6'#"'&7676762'&'&7+ D@ 6 7 $ $Z%8]BN  ,  -'2767676767432#"'&'"'&K "$  30  D7 E.&, !Z *  @]c<8,DV (676'&7#"'&766&676$,+8 .  !+&'VR/LHC7.01 19  9DGmP/ s;L0=%''&'&7641&'&76767676#'&'&67676Z  Tb-27  ?1  k/&'.P"P\_    F '0 "  A3A 76'&7&'&5 >    2*^ //+ 4'6'&&'&7&*%"'"L}c76'&&''&&'&776'" '"%!L;I _+76'&&''&&'&776'6'&&'&7'" '"% ?'#'#L 8H L4piqvr"yF7$76%6'&'&'&'&76676%6%66766'&'&'&m2 0<,ddyq    @v6l6<+e;E11#ʦ#! -a[ < C   )-U H /9<$&&>21'-" iL'$76$76'&'&'&'&76676%6%6%66722#"'&7'&&6gɼx 2<+dcxvln  ?u5d<;*9E12"8'  IO~ Z . B  *-]G 28A$ $&'<>2W, --)2'&&'&'&367676'&''&'&76&   F55)  )P5   c   ~NM%667676q:  ylB%T.2#U2  "yT7$76%6'&'&&'&'&76676%6%6676622#"'&7'&'&'&l2 0<,ddyzjp    @v6l6<+e;E11 12  MB"#! .b[ < C   )-U H /9<$&&>&8!'-" tP-''&&'&77676'"1&&''&&'&7761'#'#$?(!&#hL7I LtP{7667676676   MЃV (P(Ov%&7676#&'&'&'&7676'&&" .+   V7M S 4  %s) 0}x  :>m2#*66676&'&'&277&&'&67667&V  56:%t !A<-He  / #c> !4'6'&&'&77&'&7K(%"'"( 2 L6 X$SY '&'&76&'&76T?;'% "!Q 3EDG;W8N%676'&''&#''#"'&7676327676'&77676767676 442:  ::*["bfMM"&9)W+C A  2Y2Y%'&'&7&76#"'& "p  %  ?5G@;= C5U'S? 676'&&#667676'&&'&EI&_ %T1zY+-  /E)' V2F *R.?vFg8;dW"'&767'&7676 W(G  S% Y'\.P2:) 3OK%'&76767667&'&''&7476%6 t} _'M @  1> {< }.-/~rmm iBDslp xB,mp xB,mp ~X"#"'&'&7676676'&'&'" !n3 OXL47JM#S b`]|k7U UV <3vj"647766'&qJ 8jIOP t2 D  3Zg$'&'&7676'&'&'&7676676~F; " o?XJE 4Q.E;9%Fk3.&Pv/M ?E2d V0%'&'&'&767632676777432-'W9,S]\  =Hy1bd (5 3^ " C!? II3((.%H&?{#R / 7#"'&3270&'&&'&776'&HN 8B, G$+$LI+wwky ,  Wx"H ,=7&%'&''&76307676&'&'&776$U1K76!  \. G$^,= N3 6^X ,  Qy'Hg&53'7&'&'&7676676#"'&&''&'&yJ7JE 4POcVJ.9 {B%  A7#^O|J"!hv/M ?D11GR2(^C)%63|!7'&'&&7676'&&'&776'&=: (H  ?Y# ,4   (Lyc45 207'&''6'&&'&&'&&7762 S-V8 LR^   0+#{{ $ 17'&'&&'&&5&#""'&7676'4'&776  -%+ $$gG1 O @%C&{d @ECMMR"2*6fH+[n&%'&'&67632767&776'&'JG^cbCB?/7rK  I>=%>*?S77a1b1 zMZ X#<&? R7'&'&'&&'&&'&776$0/%@  ./^80!88g.>P# . e^s(R2'&767676'&%&'&7676676 $RS T  N%_JI[Y*Y x% #,+*aD7,!;x[ >&M&&8571/0 WL;32#"'&&''"5&7632'&'&'&'&7676676yeH'8Hb8 HnE[ q5 &TQ$[N}F3)=>Jc>K %6KN#K%1"?v[ >%L(A^@'676'&'&74  'i   S%FNX'&&'#"'&7654'&'&776 kN 2 = &,=A; t1-0"Y9D=%8$1%'&&''&'&&767632767&7676w  G#O-+  HOL GQ$ 1%Y4g ;  A'M>EF . $#'&'&'&&'&'&7760,^:$ 5# |Y*)Eo8F0I=4J7&'&7632#"'&'667676'&'&'&#"7&76'&7762##5==sTR#%A"2KKf8:d1K #1YV/02#"'&'&76767&%&5&76%26?rJ^])9 " 3<'6 *32" v/E6b,7?HHB d2&. *%0 * B wt*k+%'&'"'&'&767667'&776'67676'&R;0%+  3!   (kT   I/9 #RN&' -Pm8|0  %1.&'&'&'&76676'&&'&&'&77632.- DC%  $b  .'- y!1 R8 ")# .Hze %WU*632'&7676'&&'&&'&766"7' <  3#$( + Fk$$H%  T*``h p#676'&&'&77632#"''&'&&BL  FY14  J;"A (X! 4PV  0{#.%'&''&'&76767'&&776'76'(,B  " E8&.  K  4F/B jR /VO-'( /!Fx% 2%"'&''&'&767676''&776+78 ?z$    RuL '@'= `)rJ1 ))6 5 E h)A OX-232#"&''&76767&'&'&76676Y ʺ.I*  X>6 ,>5 &JIXC(Q' XE6#H" N \]--6'&7676'&&'&'&'&'&67676766D j6A<3429  O&Db*8D=15   /8(: '1&8i|('6767&'&7676'&76'&lH22 .cx wn@V1{ S@#  /0/f~$MF B  1 OU?-!6'&767676'&''&76&#"76\)-D#v: 3.1?>-Xu}l@ * H 5E <5  \'&76676'6676c /.<+l<@6  -  )728*>Ez'#"76767676'&&''&7676"76'&%A  v  3,#46 !J[& !1* 3*Djd Z$''&7667&7676676'&76"gH0VU8Q3045T,d*o6?,9+ )E'7< *d7?gG8,7&76676676676'&'&&''&7665632. 0#  1   ]   kCW7 # SPOi,$.8'6'6766767&767&'&76'&&'7&76'&6'&'&0 /!( -  *)mk! %T/Gk n) !  *@/ ZYW5B24 .&# $  4 , 3$&%62'&'&'&766763276'&'"7=!A  L88-%% B((>>T+G  ]H!ro%'4767&'&''&7676676%6n e41A e  HuW? <$ט', ( )^v  RE&  FCo &6'&'&767&&'&'&&'&7 # B  ." !2 ##  C$   >!@f2< ."_'&'&'&767662 &D}%6Aj($  ' R &//'b/7676'&'&'&'&7667667&&'&&'&` DGB nO/ / X   @ ,  !)=S6 @W;- \&7676'&'&76 ) <*S^\+&+*(=,(S--= '&7632#"'&) z&'  ?=J!  &b43 L  T'&'&76&'&76B#H^\+@$S--=  -' G3&1c&'&&'&&'&776 )C#4' '14!S $r`9 1 Ab/')*27&'&7667667634) 5 SH#>/H .@2 '@7'&7676'&'&'& 68? .3!h _*,    * (7'&7#"'&&'&76761076676!i) T-   .p@ 3 h   o B#e25' 7'&5&76'&&'&&'&7762'&\2+ #  OQT iU0 ' NC{ $   N!7632'&767&&'&'`  K'4 b+ 1 # C*]@_m 45 v\. '&'"'&7676'&776M%&34 "('*F 2 i!EG J Z6& +  4#7#&'&&'#"54767676'&776 >2 4( Y; nBb;t~/Tw`>  5Odx +  G&a/6'&'&'&676327676'&&'&7; i.O  ^? $Rd #?Lx`!- !Z70sG$@ j*5RHiAY%'#"'&'47627667&776o$81AF~bAB=B+48_' G>S. 2GK;:``a yK[++ 3-: 3072#"'#"&767&&'&&'&76  ]A) 5 !  \1Z>=T @3:T+/T&'&767&&'&776#"' .0(Q  [BM! 25=88 ):I" '0.T%70#&'&&'#"54767676'&776  AC4& Y; nBb;m~ D~q`>  5Odx +  i"'&'#"'&7676'&7760#=% WBF 2 i !=1# (7  6& + 4S+6'&''&76767676'&'&&52 W*+) LI+%L'Z, 3NY[2(?zz! ! e6 h4N1: ]DN >!/~ Xu*#"'&'&7627667&776'&)=F~bAB>B+48_' G&  -CK;:`Vk yK[++ 3-:pT: %: H(7'&763076'&&'&&'&776'&976!  r >)&!95 !)+03 4_Y8R,  OE I!#7'&'&&7676'&&'&776'&=:  >4 ;F =4 "(4   (M#մ/+@F 7'6'&'&&'&776'&?V<A 9);4 "('2+%F5S %X)E J -)7'&''&763076'&&'&&'&776  XL<76!  r >)* %:  .3 4_Y8R,  $7'&'&&7676'&&'&776'&=: ?, CM !  @1   (M9֝/+8 %:  7'&''6'&&'&&'&776 WB V= ! 9NA %:  2+#!p5S % &d&kX&gsnl XI&grw8 -&<d]L&S&bc&oa &oXn"&1`3&'ppBZ`3&pS3&{\3$&q`3l&`3&r`3;XsW&'p?p ZsW&p?s&{@sm&q@s&?s&r@sX&&'p5pZ&&p5&{5<&q5&5&r5C"d&'rdp"&"&'qdr"&"&qd"&'pdq"d&rd"y&G"'&'qd"\&j"&r""r&d"g&k<"c&{d"&{"&"&p"D&dA#&o !#&&/s} q&'ps^I#&pk:&jbFkh&'ps6:&&jbq&/rz q#'{t^&dbk##&#&q&Vs}P&B#&kkA&{B#&{#&#&p}kS&sB&'p}rBk&ps&'rqB#&r}&qBhO&1D%<&&kbqyB&rB&V&'p}psbk&'psj+gk#&'qB^I&'qps#&{#&k##&q&'qpsA&Go ,&)&'q+sn &'p;dp;% &z&jnZ&'p;d()&'q+j)|&'q+rk  '{@&d &)&q+y&@G3&=%&k$&{=% &{&&pD&;d%&'r=%p&p;d&'q=%r&r&q=%)&'q+k%&r=%y&@G&'p;dp&'p;djRX&'q=%p;)&'p;dq+ &{&)&q+)&'p;dq+ D&6 &k8z &; |&J &kg &p6  |&'J: &q6 @|&'JpB @&pB 5&{6 6&r6 )&q+-x&qo-x&r-&&pb-x-'x&pd)-'&'pb&pd)-&rg-x&{-&g4&r'&q&qo&p&r'&p)'o&'pp)&r%&{s&o&p{{&r{&q&qn&p&rn{'{&p)'&'pp)&rn{&{&n&p(=&ps(=(=&dZ(=&(=s&rs(=&p(=S&s(= &qs(=&(=&'$q(=&(=&q(=&'ps{(=& (=&r(=& (=&{0&p090&d*09&j0&rW09&pGY0l&0$&q09&lY09&'mq[09&m@09&qNB0&'p{_09& 09&r_0&09&{_y&py9y&d=y9&ey&r]y9&pA_yl&y$&qy9&f_y9&'gqay9&gFy9&qGHy&'p{Yy9& y9&rYy&y9&{Y'O%'&&'&'&76676:3-  , 1"%*,[+ # E  &gA,*'q'm&q;yyd'$|.'q$|.&{L&'x.2q%~$|.&rL&x.2$|''$|'&$ |'&q $|.&L&'x.2p%~L~&'x.2r%~L&'x.2{$|'$|.$|'r'$|&r$|.'p$|'q' &qt&{ &qt&r^&'}\ ^&'}S^&'}qU&\&ptt&rt&{^&}Ft&'}4rtt&rt&pt=q&'qt}4u].&q].&{u].&q].&r].]&']&'A]&'qC].&].&p{]&r].&{]&].D]&'r{]&r].&p;]&'qN&jy3&r[[v&{y[&p[&)Q&j-"Q&rQ&{VQl&phT&D&j >&r&{rZ&p~&9&p 99&p/&px/>z:>&p|&p4&pWyv&p!Wyv&'p!qtWyW0yv&'p!>Wy&*Ty&'p!Wyv&'p!pmWyk&'p!j8Wy&r!4p%&r%4p&p%4p&q%4pp^'ny,pA'njjp'n[p'np]p'njn![p'n'p]p_jp'nqtIpI'nrtIpW'ntI'npC'nkp'npuIpW'n'qtID%pnp)'nuIpe'nd4`&qo43&'ppd)43&p4&r4`Z&qZ&'pppZ&ppZp&rpZU&q &'pp &p&rUXH*&'r*p<XH &*XHXH#&kXH_&V3 XH*&r*XH8&'q*XH8&*XH&'p*p<X{H&{Y~X{H*&'r*{Y~Xs&'rspZZS&s"m&kA&{} s&rs&'qsO&sX&'pspZZ"&{xs&'rs{xH7&'r7p<H&7HH1&k2Hl&l@ H7&r7HE&'q7HE&7H&'p7p<H&{OH7&'r7{O)&p))&r&p,&r*=&p ==&r g5'nr5gQ'ndg'nq5g'np5gM'nr < g'njgO'ncg'n'ngJ'ng'nkgV'ns ? gnOc&m3 OXc&{[O&rc O&rO&k$OH&qOvc&xOcO&sb c&MOc&d$Oc&{Oc&q0&j$P&jJJ&r~&{.~&pr&AbuE;t& *&A &'qCs &'p1K> &x+Dl&jwdDw&'p1OA &'qCjwA &'qCr  '{D&dwDlS&_A &qCD&6nD&@&kD&{@ &{&X&p|ZDll&1X&'r@p|ZDl&p1$&'q@r&rD$&q@Dv;&1RA &'qCkwD&r@D&6nX&'p1p|ZDl&'p1jIDl$&'q@KA &'p1qC &{&DlA &qCA &'p1qC6D'nkW6Dl'njD'nxpzD'np|D'nj4AzD'n'p|pJ6D 'nqet6Dt'nret6D'net6y'n6Dn'nk6D'npdt6D'n'qet5P6Dn6DT'ndt6D'ndl &j51f &r &{ p&p &AIL'nrLIh'ndI'nqLI'npLIc'nr R I''njIm'ncI'n'n#Ia'nI)'nkIl'ns U In&j_=&r ?B&{B|&p&B { {&rtt{&qbv&q&p&r{{&pV&'ppV&r{&{t&&pQ:'Uj Q+:'U{.Qy'UrO| Qyu'UruQyo'UkGNy 'UquQI:'UKQy:ULy'UsO y:'UYQy:Uy'UdQ:'UrIQ:'UqQym'UjG&jE&rxss?&{B/&p|@,&$B&jMB &r? B?&{6BB&pC B&tA2W&Yp2Y]2&Yd52&Y[f2&Yr]2&Yp8_2&Y`2m&Yq2&Y]_2&Y'^qa2&Y^F2&Yq>H2W&Y'p{P2&Y 2&YrPa2K&Y2&Y{P|& )&/+|c&/sL q|&';pzB|&q|:&j|W&'%pzB|:&'jq|Z&/rI q#|'{$&|^&d||&F|&q|W&%|P&zB(|&kje|A&{zB#|&{$&A|&& j{Z>& 'pi $-& 'q&j{5$-& 'q&r" X,'{ Z>"& d{XZ> X & X$-& q&Z>& Z>& X{*& k"Z>& {X,& {X*& X& p3Z>& '& 'rpWZ>& p!;& 'qrX;& r!Z>& qXZT& 10@$-& 'q&k{'Z>& rZ>& W& 'ppZ>}& 'pjXZ> !Z]& 'qJW$-& 'pq&X,& {X*& XZ> X$-& q&W$-& 'pq&c 2W&Yp2Yt2&YdLI2&Y2&Yr I2&YpK2&Y2m&Yq 2&YK2&Y'q M2&Y22&Yq42W&Y'p{|2&YU 2&Yrg2K&Y2&Y{bA&  A& YF& 'qgs\/ s& 'p%A& 5[5& j$5& 'p%[& 'qgj$p=& 'qgr], A'{x L6A& d$5A *A& OA& qgTg$& (53& %A& kC5$& {%A& {xA& /A& pl1m5& %R/%& 'r%pl15& p%L& 'q%rxA& rxL5& q%Ow& 1+M{& 'qgk$R5%& r%Tg$& /& 'p%pl1,5& 'p%j5A Ls& 'q%& 'p%qgA& {xA& 5A A& qg& 'p%qgsO&  O& pct& 'qSvsf hz& 'p'qO& !^eh& j.mh& 'pet& 'qSvj.mzt& 'qSvrg O'{e Vh& d.mhO hO& 3tO& qSv^h& 5h& pO& khRPh& {O& {e.oO& ;0hO& pwh& _h& 'rphz& pY & 'qre O& reYh& qt& 'qSvk.m_h& r^h& hz& 'pp6ho& 'pjhO Yh& 'q'tz& 'pqSvO& {e.oO& ;0hO tO& qSvtz& 'pqSv39&ig 3&{3W&r^F 3@&r@39&k3&q@3&33`&s]I &4`3[&d3&3&q7&j&j&r=&{IW&pP&k&P >k&{A&ry &r&k5Y&q\k&^k&sx o&dk&d5k&ak&q&j5&q &{ &q)&rW&'S'W&')mW&'qo&S&p&r &{ W&&'r&r&p&'qA&*o &*)t&'q+s-] b&'pT[X%&T@.&j I&'pTu@).&'q+j A)k&'q+r.Z '{SR&d+&v)&q+]&O?b&T&kZS&{T&{&&p>4&TiT&'rTpb&pTc&'qTr&rc&qT`)0&'q+k iT&rT]&Ob&'pTp&'pTjGc&'qT[Xb)&'pTq+&{&)&q+b)&'pTq+g&j)g&rC5g5&{gg&pHg&GY&j&r8@&{&p6&ly&dV'W&'sY@ m'N&'rZ= ]&d5B&c$&oY&okC&[uK[1&j8,[1&r[1&{a[1v&p[s&W&p&d]II&K&r&pu&m&qb&d)&'ZqZ&Z&q{CW&'p{F& @&rBK& C&{FZ&  &<&'q>s &'pE*jX9&Y&&jU&'pR<&'q>jU<&'q>r '{&dU"&:<&q>&&O&I&k&{I&{&{'&pW)&R'&'rIpW)c&pRy&'qIr&ry&qI<&'q>kU&rI&&O'c&'pRpW)W&'pRjjy&'qImI<&'pE*q>&{&{<&q><c&'pRq>&'pp\&p&{$&ql&&r9&p{y&p{)'c)'jF)Ld')d'p)ad'j5)d'p'pp)'q,\)\'r,\)j',\)d'N)'kF)'p\)'q@')d)<'\);'dFYY&r%wY&q65&qg&p<&rY1Y&pg1&'pp<&ruY&{%&g&p2&Yps2Y2&Yd2&YD2s&Yr|s;2&Yp =2S&Ys2 &Yq|s2&YE=2&Y'Gqr?2&YG$2&Yq&&2&Y'ps{8m2&Y 2&Yr82&Y2&Y{8& p  && d& g% & r @s& p?B&  )& q & cB& 'cqD& c)& qJ+& 'p {[s&  & r[5& O& {[3&!jN<~3&!r3!3&!{3{&!p3&!+$>'ml&"rl>'m&"pl>'m&"ql>'m)"$$&#'rL$p$&#L$$#$&#k$Z&#. $$&#rL$$2&#'qL$$2&#L$$&#'pL$pfB&#{ifB$&#'rL${iN#$KP&I.y P&I2&I'q4s 9&I'p./P&I[U&Ij\,H[&I'p{2&I'q4j\,2&I'q4r P'{In&Id\,UPIP&Is2P&Iq4&Ipz&IP&Ikg&I{P&I{P&IP&IpU&I&I'rpU9&IpO&I'qrP&IrzO&Iq\&I18k2&I'q4k\,v&Ir&I9&I'ppdU.&I'pj-UPIO&I'q.29&I'pq4P&I{P&IUPI2P&Iq429&I'pq4A08&&pwAo8&&'pwqSqA08*&A8&&'pw&_A08&&208l&&'pw:A8&&'pwpLA08&&'pwjjA08w&&rw_&'q:A&'{n_&'q:A&'rnA'&''&''A&''q\CA&'I&'p:&'r:A&'{n&'A'&''r:&'r:I&'p:&''q:C~r&)P >&)J)!&)'q+sMq &)'pgDp%&)K@_&)j@]&)'pg+K)!_&)'q+j`)!&)'q+rMn '{)<@&)d@);&))!&)q+A@|&)J(@u&)g &)kC@f&){g&){ &)@&)pB^@G&)gR@g&)'rgpB@&)pgL.&)'qgr.&)rL@&)qg@E&)1!k)!a&)'q+kR@g&)rgA@|&)J@&)'pgpB@&)'pgj[@)L&)'qgDp)!&)'pgq+&){ &)@))!&)q+)!&)'pgq+'V&*'rVpZ)6&*V*O&*k>&*w_ V&*rVd&*'qV2d&*V'&*'pVpZ)&*{nV&*'rV{n37&+'a .7&+&+'qs &&+'p?];7&+&+jq&+'p?g&+'qj&+'qr 7'{+&+d7+7&+7&+q&+D&+D7&+k&+{D7&+{7&+7&+p&+?&+'rDp&&+p?<&+'qDr7&+r<&+qD&+'qk&+rD&+D&&+'p?p&+'p?jU7+<&+'qD]&&+'p?q7&+{7&+7+7&+q&&+'p?q.?',nmi.?~',nj?',npn?',npp?',nj4n?',n'pppG.?',nqh.?',nrh.?',nh.l',n.?',nk.?',nph.?',n'qh7b.?,n.?f',nh.?',ndW&-q !&-{$W&-q &-r - &-'R ?&-'A &-'q &-RA&-p&-r !&-{$ &- -&-'r&-rA&-p&-'qK#'.n#v'.nj`|#'.nn)n['.np'pi'.njw4n['.n'p'ppQ#H'.nqH#'.nrH#'.nHv'.n#x'.nk`#2'.npC#'.n'qH#.n#'.nC#'.nd$&/j &/rXH/H&/{g^&/p] &/}l0}l0ZO1[&cp4[cO&cd[E&c6G44&cr4[&cp;&c4.&cq4[]&c7_[&c'8Vqd[V&c8V[&cq[?&c'p4{+B[&c [;&cr*= &cx[?&c{+BA&3Wo <&3_+&3'qsb v&3'p  &3av&3j*v&3'p a&3'qj*v"&3'qrc '{3Rv&&3d*v3 &3&3qPvA&3=v&3 &3k Xv &3{ &3{&3&3psv&3 g &3'r pv&3p a+&3'q r+&3rav&3q  &31c&3'qk*gv &3r PvA&3&3'p p2v&3'p jv3av&3'q &3'p q&3{&3v3&3q&3'p q0U&5'rHp&5?$5&5kZ&5. &5rH&5'qH&5H&5'p?$p:&5{:&5'rH{mt&6q?mH&6{Bmt&6q;|H&6r=mH6m&6'}P]m&6'}_o&6'}q mH&6Pm^&6pm&6r?mH&6{Bm&6}mH6m&6'}rm&6rm^&6pm&6'}qF+'7n+'7nj\ +'7n;tg'7np3vw'7nj;tg'7n'p3vpY+`'7nqD+'7nrD+'7nD'7n+'7nk\ +J'7np?+'7n'qD+7n+'7n?+'7nd=+&8'pYp+&8pY&8{YA&8qY&8Y&8rYg8*&9qK&9{*&9qK&9r9&9'rv&9'A&9'qC&9rv&9pJ&9rK&9{&99&9'rK&9rK&9pJ&9'qK3 f&:dN 3rf&:{u3&:rQ 3&:r3&:k,3O&:q3f&:3f:3&:sQ g&:;3f:&:d,3f&:3f&:q&:j,c&;jZc&;r^Tc;T0&&;{3c&;pb#c&;2<2&&Yp22Y2&Ydx2&Yv2&Yr2X2&YpRZ2&Y22<&Yq22&YwZ2&Y'xq\2&YxA2&YqXC2&&Y'p2{j2&Y 2&Yrj2&Y&2&Y{j&>j=&>r>&>{gr&>p&> U&?dU?b&?0se y&?/rf f&?d> P&?c&?opU&?oUI&?a?-&@jf&@rkf@1&@{"&@pof&@9&ApS#9At&Ap@&E D&EFzC&E&qvs}, \&E'p#V&ED{6&EjD1D&E'p#{&E&qvjD:&E&qvr}) ?'{BElV>&EdDE~&E%1&Eqvq8&E]g1&E#&EkOxT"&E{#?&E{B,&Eg.w&EpC3&E#w#&E'r#pC3&Ep#;&E'q#r=;&Er=g&Eq#,&E1&E&qvkDc#&Er#q8&Ew&E'p#pCM3&E'p#jEg&E'q#V&E'p#qv?&E{B,&Eg.E&Eqv&E'p#qv$&F"R &F3&F'qs" &F'p &FO &Fj&F'ph &F'qj*&F'qr" '{F.&FdF&Fg&Fq'&F!&F{&Fk&F{&F{&F&Fp&F&F'rp&Fp&F'qr&Fr&Fq &F'qk&Fr'&F&F'pp&F'pjF&F'q&F'pq&F{&FF&Fq&F'pq2&&Yp2Yp2&YdH2&Y2&YrX2&YpZ2&Y2<&Yq2&YZ2&Y'q\2&YA2&YqC2&&Y'p{2&Yd 2&Yrc2&Y2&Y{d&H &H,7q>&H'q9s' &H'pm[4o&H!&Hj&H'pm37q&H'q9j7q5&H'q9r$ p'{ H9&HdHID&H7q&Hq93&Hs,&Hmb&HkZ&H{mp&H{ `&H,N<&HpP&HmN<&H'rmpP &Hpm~&H'qmr~&Hr&Hqm 7q&H'q9k&Hrm3&Hs N<&H'pmpP&H'pmjH&H'qm[ 7q&H'pmq9p&H{ `&H,H7q&Hq9 7q&H'pmq90U<&J9j '&J o&J'qsX z&J'pYNd'&JtF&JjD&J'pYN F&J'qj f&J'qrU  '{Jj&JdJ&J~ &Jqc&J^1\&JTN&JkM&J{TN &J{&J &Jp .&JYN N&J'rTNp &JpYN&J'qTNr&Jr&JqTN1&J1 H&J'qkN&JrTNc&J^1 &J'pYNp &J'pYNjpBJz&J'qTNd' &J'pYNq &J{&JJ &Jq &J'pYNqd&K'rhdp&K&K'qhdr&K&Kqhd&K'phdqd&Krhdy&KmGI&K'qhd\&Kj&KrKr&Khdv&Kk!c&K{hd&K{&K&KpD&Khd&L &Lt|M&L'qo~sw6 xV&L'p-%x&L=ev1$&Lj?+>"&L'p-v|$&L'qo~j?|D&L'qo~rx3 '{LgQH&Ld?L&LL;|&Lqo~k~A&LR\;&L-&LkYmI,&L{-&L{6&L8&Lpi- &L-|-&L'r-pi-&Lp-v&L'q-r&Lrv\&Lq-]&L19|&&L'qo~k?|X-&Lr-k~A&L&L'p-piG-&L'p-j Lvx\&L'q-%|&L'p-qo~&L{6&L8L|&Lqo~|&L'p-qo~8&Mf &Mn&M'qPs  ?d&M'pin&M &MjW&M'pP &M'qPjW&M'qPr  '{bM&MdWM&M4&MqP&M&M&Mk&M{&M{b&Mu&MpQ&M&M'rpQ?d&Mp z&M'qra&Mra z&Mq)&M'qPkW&Mr&M?d&M'ppQY&M'pjM z&M'qi?d&M'pqP&M{b&MuM&MqP?d&M'pqP0U&Oq/ &O{ &Oq/&OrOt&O' S't&O' )mt&O' qo&OSh&OpT/&Or/ &O{ t&O O/&O' r//&Or/h&OpT&O' q/A&P/o  &P*)t&P'q+s-] b&P'pTKI%&PY@.&Pj I&P'pTu@).&P'q+j A)k&P'q+r.Z '{PSR&Pd+P&Pc)&Pq+]&PO?b&PT&PkZS&P{T&P{&P&Pp>4&PTiT&P'rTpb&PpTc&P'qTr&Prc&PqT`)0&P'q+k iT&PrT]&POb&P'pTp&P'pTjGPc&P'qTKIb)&P'pTq+&P{&PP)&Pq+b)&P'pTq+30&Qa 0&Q&Q'qxsu &Q'pk50&QEc&QjYDa&Q'pk/c&Q'qxjY&Q'qxrr 0'{Q&QdY0Q0&Q^0&Qqx&QNly&Qk0&Qkj&Q{k0&Q{0&Q0&Qp{K&Qkk&Q'rkp{&Qpk&Q'qkr0&Qr&Qqke&Q'qxkYk&Qrk&QN&Q'pkp{`&Q'pkj)_0Q&Q'qk5&Q'pkqx0&Q{0&Q0Q0&Qqx&Q'pkqx12+&Rp]1D+&R'p]qbF12+R1+&R'p]-e12+W&R%+2+R&R'p] 1[+&R'p]p\]12+&R'p]jP12+]&Rr]/&Sp/3S/&SdX 3&Sf/&SrX3&Sp=Z/u&S/-&Sq3&SbZ3&S'bq\3&SbA3&SqHC&S'p{Z3&S 3&SrZ/ &S3&S{Z?O'Tny?2'Tnj?u'Tn~Sn?u'Tnpp?u'Tnj4n?u'Tn'pppW?'Tnqu:?:'Tnru:?H'Tnu:u'Tn%?4'Tnk?'Tnpu:?H'Tn'qu:E?uTn?'Tnu:?V'TndUU:R~&Vjk4R~(&Vr(R~V?&V{BhR~&Vp(~R~&V26.'Wnuk6.'Wnj.'Wnnur.'Wnpt.'Wnj9r.'Wn'ptpP6."'Wnqp6.'Wnrp6.'Wnp6'Wn6.'Wnk6. 'Wnpp6.'Wn'qp?e6.Wn6.j'Wnp6.'Wnd&Xqa&X'p=mpV&Xp=mm&Xr=mX2&&Yp2Y|2&YdT2&Y02&Yr;2&Yp =2&Y2<&Yq2&Y1=2&Y'3q^?2&Y3$2&Yq&2&&Y'p{$m2&Y 2&Yr$o2&Y2&Y{$fp&Z &Znc&Z'qQsL D&Z'p)B&ZD:&Zjo[D8&Z'p)B:&Z'qQjoZ&Z'qQrI '{aZD^&ZdoDZ.P&Z&ZqQDW&Z.%DP&Z.Bn&ZkfDA&Z{.B&Z{al&Z83H&Zp5D"&Z)B3HB&Z'r.Bp5D&Zp)B&Z'q.Brb&ZrbD&Zq.B<&Z'qQkoDB&Zr.BDW&Z.%3H&Z'p)Bp5vD&Z'p)Bj?6DZD&Z'q.B&Z'p)BqQ&Z{al&Z8DZ&ZqQ&Z'p)BqQSs&[o6 S[s&[{^S&[rj S&[rS&[k>Sa&[qSys&[{Ss[S&[sj x&[W Ss[&[d>Ss&[~Ss&[q7&[j>/&) \] J&) V-D&) /sY- q&) &P,p$+&) W&) j &) 'p$W-&) 'j ql-;&) /rY* q+'{) H?&) d ) &) -&) qL9&) 32&) $&) kN#&) {$+&) {&) &) pi&) $]$&) 'pr$&) p$W}:&) 'rq$}:&) rW&) q$&) 1bw-&) 'k q]$&) r$L9&) &) 'pp$W&) 'j p$) W&) &P,q$-&) 'qp$+&) {&) ) -&) q-&) 'qp$'$&]'r;$p)&]:$]&]kZ&]. $&]r;$w2&]'q;$ 2&];$'&]'p:$p))&]{)$&]'r;${:$'^n:'^njI:'^nI:'^npIK:'^njI:'^n'pIKpdQ:'^nq:'^nr:'^n:'^n0: '^nk:'^np:'^n'qR:^n:'^n:+'^ndS'Z&[o6 S['Z&[{^S'Z&[rk S'Z&[rS'Z&[k=S`'Z&[qSy'Z&[{S'Z[S'Z&[sj 'Z&[W S'Z['Z&[d=S'Z&[~S'Z&[q7'Z&[j=45&`u# M#5&`O&`'qsW~ &`'pt,w5&`rPl&`jPj&`'pt8l&`'qj&`'qrW{ G5'{J`P&`dP5`5&`j5&`q]&`WP&`tK05&`k(Ps&`{tG5&`{Je05&`g 5&`pPT&`t t&`'rtpP&`ptC &`'qtrEC5&`rEP &`qt7g&`1=n&`'qkPt&`rt]&`W &`'ptpP&`'ptjhP5` &`'qt,w&`'ptqG5&`{Je05&`gP5`5&`q&`'ptq)V)&aW t)&aAV&a'qCsmq &a'pg@x>U)&a+o_&aj4o]&a'pg+AV_&a'qCj4AV&a'qCrmn U)'{ao&ad4o)a5)&aAV)&aqCt|&aJou&agR)&akJof&a{gU)&a{R)&a.)&apoG&ag.g&a'rgpo&apgd&a'qgrd)&aro&aqg{&a1cQAVa&a'qCk4og&argt|&aJ.&a'pgpo&a'pgj[o)a&a'qg,xAV&a'pgqCU)&a{R)&ao)aAV)&aqCAV&a'pgqCySk&b }k&b0_&b'q2s  ,&b'p 1,^k&bW\l&bjYW\&b'p m0_l&b'q2jY0_&b'q2r ^k'{bWs&bdaW\kbB2k&b0_k&bq2W&bWl&b Ok&bkG W\&b{ ^k&b{Ok&bG*k&bpIW\&b G*&b'r pIW\,&bp mB&b'q rmk&brWlB&bq We&b1A0_e&b'q2kYWh&br W&bG*,&b'p pIW\ &b'p jW\kb B&b'q 10_,&b'p q2^k&b{Ok&bW\kb0_k&bq20_,&b'p q2,&cpy/[cK&cd[&c/&cr~/[h&cpj&cy/&cq~/[ &c [j&c'ql[&c[Q&cqS,&c'py/{[&cM [&cr&cms[&c{;\&dpL;d;&ddN;&d;&drQ;&dpj ;&dL;r&dqQ;&dz;&d'x q;&d;&dqe;\&d'pL{e;&d ;&drv;P&d@;&d{ZYN&ejDbYP&erYNeY{&e{~YN&epY&e&AL67&h'p#pN67&hp#6&h{"6M&hq"6&h#6&hr"6h&ipr~i&id&im~&irr~.&ipJ0^&ir~&iqr~&in0&i'oq2&io&iqP&i'pr~{a`&i &ira&if&i{a&&jp`&)j&&jd&)&j\&&jra=&)&jp8?&n&j`&&&jqa&)&j\?&)&j'^qA&)&j^&&)&jq?(&&j'p`{Qp&)&j &)&jrP&&jT&)&j{QXd&k'r-dpZD&k-dk^&kks&kn d&kr-dir&k'q-d@r&k-dX&k'p-dpZ'&k{'d&k'r-d{'7&l'r77p)&l77l1&lk}l&l@ 7&lr77tE&l'q77E&l77'&l'p77p)&l{7&l'r77{V&mq&'&&m'pHp)&&mpH&mrHVmL&nq*&n'p>p&np>&nr>LnA &o3o 1 &oh)&o'q+sk} &o'ps1;% &oF:&ojTAh&o'ps6):&o'q+jT~)&o'q+rkz  '{o|f^&odTA o  &ox) &oq+_r&oVjtP&oB &okaA&o{B &o{ &o &op|AS&osB&o'rBpA&ops!&o'qBr! &ort&oqBF1&o1")<&o'q+kTpB&orB_r&oV&o'psp;A&o'psjgA o&o'qB1;)&o'psq+ &o{ &oA o) &oq+)&o'psq+Av&~Oo 4v&~&~'qs b&~'p eu v&~&~jPU=&~'p &~'qjPU&~'qr v'{~x&~dPUv~ v&~v&~q|&~c&~  v&~k~&~{ v&~{ v&~v&~p&~ &~'r pb&~p #x&~'q r#v&~rx&~q &~'qkPU&~r |&~b&~'p pYW&~'p j"v~x&~'q eub&~'p qv&~{ v&~v~v&~qb&~'p qW8+&'r+pRW8 &+W8W8$&kW8`&U4 W8+&r+W89&'q+W89&+W8&'p+pRW{8&{n~W{8+&'r+{n~u\'NA&Io M&-&/s q2&'p'|7l&F&j~X&'p's-F&&j~q-&/r q%'{&dl% &-&q&,D&R6&kM&{NN%&{&&p.&=N6&'rR6p2&p'{H&'q=r@&rH&q=1&1-H&&k~q6&rR6&,2&'p'pt'&'p'j=H&'q=|7-2&'p'q%&{&-&q-2&'p'q2&Yp 2Y:2&&Yd2&YO2 &Yr 12&Yp3[2&Y I2&Yq 2&Y32&Y'q>52&Y2&Yq2&Y'p {c2&Y 2&Yr-2&YO2&Y{2&&Yp2YA2&Yd2&Y\2&Yr;2&Yp=q2&YV2<&Yq2&Y=2&Y'qJ?2&Y$2&Yq&2&&Y'p{m2&Y 2&YrC2&Y2&Y{U'U'S&pIS?[e&dI  ?& hI&r I?&pS)&Il&q I"?&$5?&'q&?&h?&qj&'pI{?& ?&rx&?&{ &8'p]p&8p]&8{])&8q]q&8]&8r]g8;&dp=;d;Y&dd;&d;=&dr=;&dp ;&d=;&dq=;&d;&d'$q;&d;&dq&;&d'p={;&dB ;&dr;&d;&d{W"v&qpK&{v&qp K&rOKO&'"&'"`&'"qxOK&"`&po&rpK&{O&"OK&'"rp&rp"`&po&'"qp#g&q^Zg&{#g&q^Zg&rZgZg&'nZg&'Zg&'qZg&nXg&p^)g^&r^Zg&{Zg&Zg)g&'r^)g^&r^Xg&p^#g&'q^ A&'y'x*Lq! A&'y'x*L{ V0&'x*Lq! A&'y'x*Lr V&x*L AT&'y'}~'Ekx*L AT&'y'}~'x*L AAT&'y'}~'x*LqC A&'Ek'x*Ly V&'x*Lp! V&'x*Lr! V&'x*L{ AT&'y'}~x*L A&'yx*L AT&'y'}~'x*Lr! A&'y'x*Lr! A&'y'x*Lp! AT&'y'}~'x*Lq!9&j%2&r&{gc&ph&A7<&j7u&ru7Q&{J7&pu7&;+&5&qg&5&{l+&5&qg&5&rmg&5g&&'g&&'ygA&&'q[Cg&5&a&5&p1&&rg&5&{lg&&g&51&&'r1&&ra&5&p+&&'q&j &r||&{=;&p>&9&jT2&r_&{g&pm& U&j&r&{g&p&4Nn&jy3n&r[n[vn&{y[n&p[n&;&d)5qU`&gstI UW&grtF u8&JdML&P&bc&oa;&on)&;&qcR&{&qcR&rRR&'tYR&'bRY&'qz[R&tYM&pcc&rcR&{R&R&'rcc&rcM&pc&'qcL&qcW?L&{dBL&qcW;L&rc=WLWL&'tYW]L&'p_WL&'qRWL&tYML&pcLc&rcW?L&{dBWL&WLL&'rcLc&rcML&pcL&'qc^@6&jV.&r&{c&p^&AO$&j3&rV&{Ye&p&v&d g6&`sj 6`&`rsO 2&\d\L#8&bc&o^k&oi}n &6&qsQ&{&qsQ&rQQ&'}@ Q&'}@Q&'}@qQ& %&pr&rsQ&{Q&}@Q&'}@rs&rs%&pr&'}@qs/&qN>/&{e/&qN>/&re>/>&'>&'r>^&'qS`>/&/&pN&rN>/&{e>&>/&'rN&rN/&pN&'qN*kg%'&'&'&'&76676V6!<2    1'G(: ;  !#* gM+y'q *kk&qd&s&k1p&&;1&k`&K&ps1&';4a&qs&';p1&p&{s&rs1&qU&jU&rWWUW&{vUW&p[2U&&j%&rvpp&{.c&p{4& 0{^t %#"&'&'&'&76676!3?# , 1"+$ 0 'E  &gA,  th'q*0{&qN+&2&k$2U&&&2&kj2J&p2&&'=2`&q&&'p2&p2&{2&r2&qOl&q?OX&{BOl&q;OX&r=OXO&'%]O&'% _O&'%qOX&OX&pO&r?OX&{BO&%OXO&'%rO&rOX&pO&'%q]R&q(]-&{]R&q(]-&r]-]&'g?]&'g5]&'gq7]-&?]<&p']&r(]-&{]&g]-]&'gr(]&r(]<&p']&'gq(i &'p3p2i &p3i&{3i"&q3ij&3i&r3i|U?-U" -&r$U-&q?&qD?&p?&rU?-U-&pD&'pp?&rU&-&{)?&D?&pq&p, &drc;&}=&r,&p[&,&q,S&U&'KqK&K&qa5q&'p,{q8& 1&rr3e& 35&{q8O=O="&'rp/&&k|=& &r&'qz&&'pp/o&{Lro&'r{Lr(&q&'pxp&pxx&rx(!0UR&q &{6R&q &r7RR.&')VA.&')V .&')Vq&R&R&p R&r &{6R.&)VRfR.&')VrR&r R&p `R.&')VqB& n`&pSBW&'qsV@ A&'p6@&UAu.&j Au,&'p6UB.&'qjjBN&'qrW= h@'{kFAuR&dAu"&BB&qJAuK&AuD&6#@&k8`9Au5&{6h@&{k=>& ?&pgAu&6H6&'r6pAu&p6BdO&'q6rfdO&rfBAu&q6A&1uB0&'qkHAu6&r6JAuK&&'p6p&Au&'p6j*AuBA&'q6B&'p6qh@&{k=>& ?AuB&qB&'p6qjy&p#jj&dikD &Fj&r$&pj&#j&q$]&_0&'UqU"&U&q?y&'{Bp#& ;&r=jm&;?&{B\&pU\|a&p-~Ezw=&ry0&qEz&qvDEz&pvEzv&rvEz&pD&'pvpEzv&rv{.&{~Ez&vDEz&pv&'pepZ&peZd&{eZ&qeZE&eZe&reZ$G8&j.G8&rqgG8gv&{y)G8l&pv4G8&,,3&L 3&{3$8&r1' 3$ &r $&k0$&q 3&3$-$A&s0* $&;x3$$<&d3L&3:&q<$&j|r&qo&{2|r&qo&r2ror&'wBbr&'wB&'wBq!ro&br&pr&ro&{2r&wBror&'wBrr&rr&p|r&'wBq&jk(&r|(o o &{4&p(M9 &C_&q _&k*&'qM,s `2f&'p '_&"&jX"&'pI*&'qM,jX*&'qM,r _'{_"&dX"_ _&3*_&qM,"&"&_&k"&{_&{__&t_&pP"&&'rpP"f&p|&'qr__&r_"|&q@&1u*&'qM,kX"&r"&f&'ppP"Z&'pj"_`2|&'q *f&'pqM,_&{__&t"_*_&qM,*f&'pqM,'b\*&k T&!~7c&'qsL &'p)BCzz5&g:&jo\8&'p)B~7:&'qjo~7Z&'qrI 5'{^&do &=~7&qW&.%P&)B(&k [A&{)B5&{8&&:&p"&)BB&'r)Bp&p)BD&'q)BrD&r&q)B~7<&'qkoB&r)BW&.%&'p)Bpw&'p)Bj@6&'q)BCz~7&'p)Bq5&{8&&:~7&q~7&'p)BqT3&1F.&dcncho&esqX ch?&ery. ch&ed[Lce&bcc&oT&.&oz8nc9&6)&W &?-&'q"/s} 2&'ps*&2k&j2h&'psf6-k&'q"/j-&'q"/rz '{32&d2d& -&q"/2&V2&s&kz2r&{s&{3&M]&p)2S&s]s&'rsp)2&ps &'qsr3&r32 &qs@1&1-m&'q"/k2s&rs2&V]&'psp)2&'psjg22 &'qs-&'psq"/&{3&M2-&q"/-&'psq"/1F&_ O&@&'qs} @&'plsk@&@k&j@h&'pls16@k&'qj@&'qrz @'{@&d@@&@&q@&rO@&lsC&k;@r&{ls@&{B&@&p@S&ls@s&'rlsp@&pls@ &'qlsr@&r@ &qls@m&'qk@s&rls@&rO@&'plsp@&'plsjg@@ &'qlsk@&'plsq@&{B&@@&q@&'plsq'';&jQY&r&{6&p&A0N}&j)N&rN&{}^N8&pq]&L}&jF&r&{z8&p&&j%&r&{q\&p&&@&'y'xq h&@&'y'x{&a&'xq h&@&'y'xr&a&x&@ &'y'}}C'D x&@ &'y'}}C'x&5@ &'y'}}C'xq7&@&'D 'xy&a&'xp h&ah&'xr h&a&'x{&@ &'y'}}Cx&@&'yx&@ &'y'}}C'xr h&@&'y'xr h&@&'y'xp h&@ &'y'}}C'xq hN&jy3&rYYv&{yY&pY&/&j )&r&{]H&p^& &j%&r&{q\&p&L}&jF&r&{z8&p&7&'y'x9q/i7&'y'x9{S&'x9q/i7&'y'x9rS&x97&'y'}sR':/x97&'y'}sR'x97&'y'}sR'x9q!7&':/'x9yS&'x9p/iSi&'x9r/iS&'x9{7&'y'}sRx97&'yx97&'y'}sR'x9r/i7&'y'x9r/i7&'y'x9p/i7&'y'}sR'x9q/iNu&jy3u&rXuXvu&{yXu&pXu&H<&jHu&ruHQ&{JH&puH&5&j &r&{=;&pJ&L&jF&r_&{z<&pt&-<&j-u&ru-Q&{J-&pu-&A&j &r&{=;&pO&L&jF&r_&{z<&pv&&fp f&&fd&f5 &fr 1F&fp3&f &fq k&f73&f'7qc5&f7{&fqz&f'p {*co&f &fr*&fOz&f{*~&gp g9&&gd&gN &gr 1&gp3Z&g H&gq &g3&g'qE5&g&gq~&g'p { c&gj &gr ,&gO&g{ yiw"yz]&dK7]&o!#&#'{#&{#&K#&p~M42&'q6p4&&k4%q6~#& j4&/sm q64&/rn q64#&q64#&q6k4&&j4%q6K&'p~Mr1#&oH&'rq#&r#&k42&'q6pK2&'p~Mp#&{#&2&'{&{&K&pM4&'p1q64&'q6kw~&I 4&'q6s 4&'q6r 4&q64&q64&'q6jwK&'r@pM1&"$&'q@r"&r&k4&'p1q6K&'p1pM&{&,&,'{,&{,&K,&ptM43&'pqz64&'qz6k0$~,& {4&'qz6s~ 4&'qz6r 4,&qz64,&qz6g4&'qz6j0$K&'rptM1,&H}I&'qr,&r,&k43&'pqz6K3&'pptM,&{,&Xt& XV'{ XV& {XG& XK#& pMW4X& 'pq6@4X& 'q6k{X~K&  4X'& 'q6s" 54X& 'q6r" X4X& q6X4X& q6 4X& 'q6j{'K#& 'rpMX1U& !e& 'qrXe& rXG& k?W4X& 'pq6WK#& 'ppMXV& {XG& A& A'{ A& {A& KA& pM4& 'p%q6{4& 'q6k$~A& 2 Y4F& 'q6s\/ p4=& 'q6r], 4A& q64A& q6[4& 'q6j$RK%& 'r%pM1A& ]L& 'q%rA& rA& k4& 'p%q6K& 'p%pMA& {A& :P&IP'{IP&I{ P&IKP&IpM49&I'pq64&I'q6k\,~P&IR 4&I'q6s 4&I'q6r 4P&Iq64P&Iq64&I'q6j\,K&I'rpM1P&I+O&I'qr+P&Ir P&Ik49&I'pq6K9&I'ppMP&I{ P&Ii&)J'{)J&){6&)K&)pM4L&)'pgq6k4La&)'q6k~:&){ J4L&)'q6sMq `4L&)'q6rMn 4L&)q64L&)q6K4L_&)'q6jRKg&)'rgpM1J&)LY&)'qgrY&)r6&)k.4L&)'pgq6K&)'pgpMJ&){6&)b&3C'{3C&3{4&3K&3pM4E&3'p q64E&3'q6k*~8&3y _4E+&3'q6sb v4E"&3'q6rc 4E&3q64E&3q6a4E&3'q6j*gK &3'r pM1C&3aR&3'q rR&3r4&3k,4E&3'p q6K&3'p pMC&3{4&37&E'{E&E{&EK&Ep{M4&E'p#q64&E'q6kD~&E z4C&E'q6s}, 4:&E'q6r}) 4&Eq64&Eq6{4&E'q6jDK#&E'r#p{M1&E(&E'q#r(&Er&Ek4&E'p#q6K&E'p#p{M&E{&EA&J#'{J#&J{&JZ&Jp\C$&J'pYNqEC$H&J'kqE&JW C$o&J/sX qEC$f&J/rU qEC$&JqEC$&JqEC$F&J'jqEZN&J'rTNp\@"&J-1&J'qTNr1&Jr&Jk C$&J'pYNqEZ&J'pYNp\#&J{&J)&L '{L &L{&LK&LpM4 &L'p-q64 &&L'q6k?~&L@ t4 M&L'q6sw6 4 D&L'q6rx3 4 &Lq64 &Lq6v4 $&L'q6j?|K-&L'r-pM1 &Lwv&L'q-r&Lr&Lk4 &L'p-q6K&L'p-pM &L{&LS&) 4'{) 4&) {%&) K&) pM46&) 'pq646&) 'q6k,~)&) j b46=&) 'q6se& y464&) 'q6rf# 46&) q646&) q6c46&) 'q6j,jK&) 'rpM14&) dC&) 'qrC&) r%&) k46&) 'pq6K&) 'ppM4&) {%&) )&a@)'{4a)&a{4p)&a&:p>5'67'&7676'&0v  S%  Jq =) 4^>5:}f5&:p2P##6)'IA6'drA]d 336] %6#!&''&! "Z",,"F_p&f.sq&ffr&fos!&fit &f u&frv &frw &f fx&f}y&fF_p&f.sq&ffr&fos!&fq &f e&fq&frw &f fx&f}y&f+&frv &f h &f 6'&55476'&5547# t   D$ :p6'&''&766 !A5E # ! #,k8A6''&7667&766'&'&5676'&7&6  "! 5 ! C&   Q D   : #&/J +&[   6)''A6 ' AW%'#"'&&'37667676dj$G  $=3?.! $  hM %''&77676 LLH#C # B!767676#&''&''&767&&6+4 _\'(l  *@J: -5!! 6D 5;)$$&m MFc `R@c`R@'&7676'&76#&'&&a>o$#M* AEJ(!G#  X+ P :0-8T4cD\1"''&32676#""..".],!!,&\"&'"''&3276#6^'"VecU"'\,! ,?]!#"&'"''&3276-M>=O"z{"," !,]!#"&'"''&3276MllO"ך#," !,"'p7$'r'3'k5)/s 'r''q'"'p7$'p='{T'{T'r6'q6'p'p:h6'p:h6'rh67@5&'&676632#"'&'&7676767676#"  AD ,'ÝZ U܆;u ;:8$,1 [+$ )%Z=)ldZ6'&'&7676!2# 6;u <  -5(%RE-- 7@>''&676632#"'&'&767676767670616   *!D ,'ÝZ U܆;u ;:8 f   )%Z=,   -36'&'&'&'&76763272'&&'&7   82>L 6R $    2,(@ j (_)  %17'&7667&'&'&76667632&77667&+ *    %B%XN.+=T6fY:*)G$ +#  14a$#!,#R QR4IdH&{s1 @&|s  dB&{r1 3@&|r  dZ{7@|4&}'rpp-&}h-}-&}kd-%&} -&}rp-&}'qp?-&}p4r&}'phpb&}{b&}'rp{=&~qs?&~'pG/ps&~pG//&~rG/~7@S/676632#"'&'&76767676676@ ,"D ,'ÝZ U܆;u ;:8 $  )%Z=  !'&'&&'&'&'&7763676zIG  * +i9U!F5g3n0AR 4;D E7&76'&'&'&'&&' U/  p ,M,('))*&'pgu!&'q#j>!&'q#rw 7'{f&d>77&.!7&q#j&Q&7&kl&{7&{7&k7&pM&{&'rpM&&pu<&'qr7&ru<&q]&13!&'q#k>{&rj&&&'ppMF&'pj7u`<&'q !&&'pq#7&{7&k7!7&q#!&&'pq#@V&s? @M&r< 7@S&j\&r8..6&{9&p=&u+a2a&r4a&qmgN&q8&pm&raa&pX8&'ppXm&r6a&{9C&8&p6@#762676632#"'&'&76H  ,'ÝZ U܆;u w"  )%$c3(2'&&'&'&7676'&&'&"'&76766 1/A?,YuMGJ  G9H 5E <%< )RE*6'&766'&7667&&'&'6765'R-c,m-G  _Q&45B  )d7?9{L" 2^+ 5>>c07667'&7676'&76;*  9*KD#/  '  ; "L )#N@V&s? @M&r< 6@c0\&pc0[S&p]c3Q&pc3c3&dD&ec3&r~&pJc3&c3g&q&o&'vq&v7&qG9Q&'p{YF&t &rXcCF&&{Y= &'prp?R &prR&{qR&qqRg&rR&rqREb?%/6'&''&767&767&'&&76'&6'&'&,+)mk! OV{)  a4 -  t) [YW5A3U- 9A2@/K7# $  4 , b?b?eI5>'&76767&&'&&'&'&566766766676'&+ @"   HL%6 A( QW=H +j .0)")V=## (  dn 8d 01>28"&@eI&pJeIeI&rJ%5A7&'&767676'&&'''&7667"6676'&7276'&& %& 3Gh%@,C 7)4#;g  9;G, A:$,+33A * #    )'15) (}l0}'k0d'k{d&kd&.87''&767676676'#''76'&"676'&!?/3=  )h ];-'!l:H 1*" /D6V  )lZ, \  ##R& " O 6"L%+%'&767632'&76#"'&'&'& &W9@[(   "\t- S 3NL4y.6; ^3|C :&'(djdp^33J%q_33r_33:s`33&@t_33^;u]33d!v_33>!w_33ux_33 M2y_33jdp^33J%q_33r_33:s`33^!_33S^33J ^33>!w_33ux_33 M2y_33Ee33d!v_335r_33636#"'&&'&&'&72-- S  )nh~_"6z3g4hR &"&;bc&;<d]L &;d&;n&;1&;oa &;oX'I&;grw8 k'&;gsnl 7jb2 0;7'&767&767676'&&'"6676'&7276'&&$  c0&  3G H#J&  9;:V @Z( 6D$N;#3@ *  #   )&05)  (b2F"`&j<#&j&j&j!|&jje&j,&jXt& j"A& jhO& jhR&j&jP&Ij&)j7&+j&3j &EjOt&FjL&HjZ&Jjo&Kj!&LjY&Mj&Pj0&QjX&Zjf~&) jD5&`j(yP)&aj^9k&bjG  &ojv&~j8&jF*&j8`_&j&j [yl&jz@&j;#&j&j,&jX1& j?A& jP&Ij &)j.&3j,&Eje2&Jj@&Lj,&) j:n)&aj|ek&bjs &oj 1&j?7&jE_&j&j7&jj/*\3&'&7676'&'&#"! '&''&'4! $76A"  ,#"H  BE @%]\]*3B d  ! / % ! $ Wk=lGp 7qE!r-st$t}u3v3w*!x~Hy=lGp 7qE!r-s2!33w*!x~HyKX3v6"&<d]Ln&1l 7676#"'&32Qj ]  --$&-R | &~c&/sL q&&Q6p(&XSl&jQ&'ip( &'qjnZ&/rI qv'{y-&dnl&5&q&ix&{&ko&{v&{y&&pl&(&'prl&p(r&'rtqr&rt&q1&1 &&knq~&r&i&'pp(ul&'p(j>l&&Q6q&'qp(v&{y&l&q&'qp('&'{&{&K&pM4 &'q6p(4  &'q6kn$&-R 4 c&/sL q64 Z&/rI q64 &q64 &q64  &'q6jnK&'pMr1&u&'rq&r&k4 &'q6p(K&'pMp(&{&GF &7632"'&73276'&'&#"P #,5+! #$6*#%%Z6#* ,7# )"+%T&'y)x/;&'yx.2T&'y)'x/};<&'y'x.2}xvT'X&'y)'x/};<'?S&'y'x.2}xv T'q{&'y)'x/};<'q%~&'y'x.2}xvAT'qHC&'y)'x/});<'q+&'y'x.2}xvT'g&'y)'x/};<'&'y'x.2}xvT'r{&'y)'x/};<'r%~&'y'x.2}xvT'p{&'y)x/;'p%~&'yx.2T'r{&'y)x/;'r%~&'yx.2T'rZ&'y)x/;'r&'yx.2 T&'y)'x/q{;&'y'x.2q%~T&'y)'x/{Z;&'y'x.2{$2%6'&'&'&76%6232#'&76763276P xdm9  =q4, 4QucJ 5KuGE~}E)9*03-r4K$|.<%&'&'&76%632#"'&&'#'&7676327$( Vi  boT{B E6=q4, 4Qu[U49 @ r4vB_*&603-r4K*\4&'&7676'&'&#"! '&''&'432$76EB" ,##H  BE@%]K#BB "c ! /  ! $  '4A*,<"'&7&'!"$'&''&5&3 76632#"'7&#"327676105&G "b>L 'Yc ,DP -]#!$,-+1.  8 $5 # ( '/Mp^1&''&32676#" $# ,#", \e|%.D7&'&76#J 3 i  *( D?&>m $&c&&'q(sfn &'pdN;"&rp&j9Z&'pd(p&&&j9q(z&|&'q(rgk *'{a@&d9D)&[!&&q(Zy&GC3&%&k^$&{%*&{&=&pg?wD&dm=%&'r%pg?&pdg&'q%r9&rg&q%&&'q(k9m%&r%Zy&G=&'pdpg?6&'pdjXDg&'q%N;&&'pdq(*&{&D!&&q(&&'pdq(Be#'|%.sE Xe'|%.rE \e|%.&jl>&Ul l& &Nc&/sL q(&&Q6pY"M& &j&'pY&N &'q(j&NZ&/rI q(M'{-&dl^&&N&q(&Hi&O &k&{OM&{&=&p?&Y=&'p?rO&pY\&'rqO\&r&qO1&1&N &'kq(&rO&Hi=&'p?pY&'pYjol&&Q6qO&N&'q(pYM&{&l&N&q(&N&'q(pY&j09&=09&p~?09&|T9&'q~F9&&09&q(0&'p{o09& 09&r09&{09t&j&j&I"'&763276q97 )  I`L2  N GVd'&7632#"'&73276'&'&#" ==45 !!<>346 !!   !O7789LK9878ND/010EE,./-f.&'&'47676613232&&#"&'&3276''&'&#") * & $# #"  fO&#"#"'&'&76676676323326767667432'"#&'6676'&x  23 p  `@B .-#        " @%J!"eD22#"'&'&&'&76323276'&'&#"&'&45676'&#""'&76`  7  '4   & :  e#6      %&  5  ?g /#"'&''4##&'6676763232#"''4#"10332 %/($(DPe\;'O'"1 f>72'&'&#"""#"'&76326327'&"#"632#"'&'&&5&7632@ Y $34)* H  P) K""64#" h.7#"'&'&673215632'3276'&'&#"77)) `Us7"#$  ! "##?S 0p ..P#  f&3372#"'&'&7#"1'&&- ) | \. +f)<N7&'&7632#"'&'&676741054'&3276'&'&&'&#"'376'&&'&#"(( /.%$ ?   .' "$"!%%.  #'%&  $ h-632&'&'676#"#"'&'&6'&'&#"327686** 10Ts7"#% ! F"$$=QEC  0q..Q#  'q'qBB'q'rB)'q=%'q+)%'r=%'q+A $'q@'qCA 'r@'qC|'q'qzB|B'q'rzB''q'q-'r'q}I'q'q;'r'q;!$-'q'q& '$-'r'q& L'q%'qg R%'r%'qg Yt'q'qSv _t'r'qSv c)'qT'q+i)T'rT'q+<y'qI'q><'rI'q>2O'q'q4I2'r'q4IL)!'qg'q+)R)!g'rg'q+)<'qD'q+'rD'q+a'q 'q3g 'r 'q3'q#&qvE#'r#&qvE'q'qF'r'qF7q'qm'q9H7q'rm'q9H 'qTN'qJ N'rTN'qJv|'q-'qo~L||-'r-'qo~L z'q'qPM'r'qPMc)'qT'q+Pi)T'rT'q+P'qk'qxQk'rk'qxQ'q.B'qQZB'r.B'qQZW-'q'q$) ]-$'q'r$)  'qt'q`t'rt'q`AV'qg'qCaAVg'rg'qCa0_B'q 'q2b0_'r 'q2b)'qB'q+o)B'rB'q+ox'q 'q~'r 'q~-H'q'q=-6'q'rR6BB'q6'qHB6'r6'q*|'q'qM,*'r'qM,~7'q)B'q~7B'r)B'q- 'qs'q"/-s'rs'q"/@ 'qls'q@s'rls'q4'q6'qB4B'q6'rB4$'q@'q64'r@'q6}4I'q'qz64'r'qz6!4X'q'q6 '4X'r'q6 L4'q%'q6 R4%'r%'q6 4O'q'q6I4'r'q6IL4L'qg'q6)R4Lg'rg'q6)a4E'q 'q63g4E 'r 'q634'q#'q6E4#'r#'q6EC$'qE'qTNJC$N'qE'rTNJv4 'q-'q6L|4 -'r-'q6LW46'q$'q6) ]46$'r$'q6) 4'qg'q#6a4g'rg'q#6a4B'q 'q)6b4'r 'q)6b4?'qB'q6o4?B'rB'q6o4XH'q='q64X6'rR6'q6B4]'q6'q6H4]6'r6'q64|'q'qy64'r'qy64 'qs'qN64s'rs'qN6u!<'q'q#{!'r'q#'q'q'q'r4 'q'q64 'r'q6g&'q%'q(m&%'r%'q(&N'q('qO&N'q('rOP T_%'&76#"'&5467667&'&56763#"'&767&&'&'&&'327&667&' 0:* q&( #0 )-&  / ' 'I!-  &rA  + %<(>:+< ,+Z. <35D ^+1PF (/$U2*(?|T2Y'E - (B]G!?2 <)Wb&@@-/e#;5"1'&7676'&776767676'&'&6'&&'&7b 1Vn?3 ``3 < ``.)%'&'&'&67676767676'&'&"3N,! D+1PMkz -8LDRt ($B"V4)&O 5}up3 @O,J&'a)C]!#"&'"''&! 76M皙O"44"," !,i]%6##"$'"''&&'&32$I DдeAֱZ, , "]%6##"$'"''&&'&32$ HBZ,, q.'&5476676676'&''&747676676{ F : "   6 "GJ. +Y/9""   > ? 3(7F!7 +'66767&'&767676#"%'&)A ) $@H/(IZ!CvJX]q F Iwwj  H*#? 'q{q'{ 'q{q'rqq''}q''}qA'qC'}q'C'p{{'r{q'{q'}q'r{'}{'r{C'p{ 'q{'}F'qA'{=F'qA'rV''']'A'q0C''|'pALA'rA'{=''r|'LA'rA|'pA''qw}1/ppe2xa/,q$|<:qpT&fqU&frU&fsW&ftV&fRUuQ&fvV&fwV&fxU&fyU&fqpT&fqU&frU&fsW&fV&f%T&fU&fwV&fxU&fyU&f*a&fvV&fV&f8'1&x/gL'j&x.2W,)2&'&&''&&''&'%$''&'&#"'&767676'&76676$%677676763276676656'&&'&'&'&76676#&''%&&'&'&&'&&'077%6765&'&7767667%767667&&'&'&56766'&'&''&''&'&"'&76676676'&7676%"&'&%&&&+.(  ),9;. 0KpTכ!V0  .,8 gB H@m> &:  $ /M%=     2 _\87> AsYVZC((Aawh#  EC1 |7&.67|I*-^ !V/  ,2 4U    yUG H< ""S" < t & - ,DvG>  #07  $3 2P&Ac !"AC  , "    3 U7m %  5% 6F5uv395##@Fp)S]D/38+ (&25    D5   b& #  3  #56 .&6 *W$%.b'7'0661D.. B.. D&#2"'&&546632"'&&5466Y     /:8 5I  /:8 5I 1>;?#32##"&17##"&17#"66737#"4673766323766323237@AB } A ?CB}>}hc lc lblbl2EP[2#"'&&'#"&'"&57&&'.566327.546632232654&&'7&&#"& #%93!8Z34  ($(#G05T/ &,D.-$ ),8* ? ?"+6#4M++& >0 341C-2J);7#*{!0-5'bv/?M2#"&&54662#"&&5466"326654&&"326654&&#"&'6632+?$"@-(C(&C+@$"@-(C(%C'#) %$* %^(  2,G+'G-*F+,G+D+G+'G.*G+,G*%8!B+&9!A+%8"A+&9!A+G bVa2326654&'&'&&5467>'6#"&&'#"'&&5467667>>54&#""0'?IH`T-T6 4#  :6!E9  G3-Nc6?i?&8  74 +H`,T7 ;( 0"&=/"gf+J- "!1):O3+:Y ,R@&*_P   ! .C3dQ1,<'7a&r2"'&&5466Y   /:8 5I  "[660'&&'0&'&&766704'&&'&67670676'&&'&6760766'  1/ !  (#   $   W     (   #,    3 -6632132##"55#0&54673      $xx72"&5>54&&546h  #(  x 65+ + 98 70>32"546E*@C5  M[-  5r2#"&&5466"326654&& E_12_DB`32`H); 7$,:7rVUUWWUUV$K~MLLNLM{Is274&#"&50547>33203&&#"&67266766 . (M32.q % 1-l&  &Bs1%!&&5>76654&#""&5>323267632 )VN=/':$ 0?'/M-"SJ% =4  .db),B$2D"(  +/!/J**J *_S%&Rs@2#"&'&&54632326654&&#"&547>54&#""&5><++@-+GX.9 '5$$9 ! 'F+6*./>s8(4& &C02Q9    C8(=$   $9*'4+1u232#0#"55!&&5663:D #>8u   uRu?2#"&'&&54632326654&&#""&5>732661##66 :Q,+GX.9 '5$D96  * 8&R  A4O*2Q9    C8C/  7n_ ,[) Gx12#".5467>726632654&&#"3E)5Y8,G20.#[_)OP@@b,/<6,3&;A6]9'@O'K2&@.  $<[AW"!H>'XB*H, =m!2632#"&5>1#"#"&'667,  76'.54662654.'&#""321276654&&,I,$3;'4U15S.*+/!-J&09".((% 1#1#0$*t"@.&8(4@#1N-(H/ 4(  -<$*H-<15)@/(98@,%3 <(6$Hx17>7#".546632"&6654.#"326^OPAA3E)5Z7,G2//"\_),.=6,3 $<[A&;A7\9'@O'K2&@- 5"!H>'XB)I, 9 4632#"&4632#"&9   p!!!!%x#72"&5>54&&546'4632#"&|  #(  &  x 65+ + !!%#"'%&&5467%63210  h D"  Au8 !"667!2!"667!2t  t  /7461%%0&54632#"&&/C j "! 7/s.:"&547632&'&&546676654&#"4632#"&b !!A?),7 !&$1,1   /C+1D  6$- *#&* !!04IZ2#"&5467#"&&54>32326654.#"#"&'.54>"32>77&&HkH$5[9$-&+*1Rc2<=(=]@KvT,N4!  -M/0]i:2*'42Vk9J|I'-  +*&<"6iW4>g=2^K-?i@U~  PsEHtE)CS*.1(AL#c?B%2654&''#3.#"&6726766766323&&#"&63'M& &  T2& &-F %  / #+>N2632##&67266766766'4&&#&673265454.#'326654&&#"?(*E)*7. KSQ4+#Kb931\!5 1*$ 5*1C( "<(Be9 &(  c[ &'(D)/ *:c0%21#"&&54>#"&'6&&#"3266, (X?OwBBpL+N$ 'D)L~J/L72M:(.$IzH\f5 :6'?$Tj+ZK.)C&=2##&6726676674766'4&&#&67326326676&&#"hi3 8`cQ4LTS+F^-mKS[>v]8 &% nX=}_o? ' h263#"5&&##"332>7632#"'&&'.#"3327667632"&#"#&67266766766'4&&#&67@J .$N $0!$  $ !( &+K.& 2 J[ 3 Q5+  ;& &*-'(Z  &'  ^263#"5&&##"332>7632#"'&&'.#"3&&#"#&67266766766'4&&#&67@J .$N $0!$  $ !( $"< 2 Q5+  ;& &*&  &' :S6&&#"326767>14766'4&&#&673267"#"&&54>#"&;'D)L~J/K5#:  35  6N746O@MK6F-  '_aO"L^t%"&'&&'.'&#"3&&#"&67266766766'4&&#&673267">7>76676&&#&673267#"'%.D -B'$44 Q45& (0 & 4* )0NM02TF Eh?&  &'  '(! .FC)RC733267667632"&#"#&6726676674766'4&&#&673267"49+ 2 J[ 2Q45m  2'(Z  &%  'F%'&#3&&#"&672667667>766'4&&#&6732674>1>132671"3&&#"&67267667>7o !&,  !%(+ '/.' *1J3/ +    !4<;10:@g? XQ  VrziC,FSTE*6( V2 Af{~8"32>54.Mq=6_|GOq<9b{:.XF)&B28Z@"$BI}NVf7K~MTf86aM*VH,@kB#RI.L#"&'&&547326654&&#"3&&#"&67266766766'4&&#&67326632@g<$H/03#R44 Q6!Nb>e: -R6=, *]&  &' Q<{!5232672#".'&&54>"32>54.Mq=J~O$17,9*X*$?@F*NT9b{:.XF)&B28Z@"$BI}Ndf"  !-.\Tf86aM*VH,@kB#RI.%HY"&'&&'&##3&&#"&67266766766'4&&#&6732632326654.#"0+7$ )5(6"49('AO()J3$!8#*>)&=H 86;K#4(5'+:.-I3@263"7'#1(+=2*D19dB26762'"'6&##3&&#"&672667667#"#&'66763 &   "t`45 `u"8     -T'3D#  &D3'T- TJ267"3266766'.#&6732667"#"'&&74766'4&&#&675/V/N;4)! 4kh2 84 's9@&]T    F [8% <L267">1676&&#&6732667#"#"&'.'&&'.#"678 '/.'., &   * $IXYJ-+ERRE)%  =1 W^. ?V267"66326676&&#&6732667#"#"&5.'#"&5&&'&&#"675   /*    / #$  *)ICi|:s&  #  EtnwG,  % j267#">76676&#&673267"3&&#"&6326676&'41'3&&#"&672667'&&'&&#"67"7H#F6 &-#1&x 2%&:&^<:*&4#1$-W  !- 'P?   GD3  6l[7764''&&'&&#"673267#">7676&#&673267#"3&&#"&67266766Q  !-""7N73%&)#% &36q    OK:  #  &`3"#"&'66733266732676676632!"&7.O)&::& .Perq3"6   5 fJ<"V1:`z: .&7, Y<0v2#.10"&5>76  " %!!% "!v &:7% +''+ %7:&  0663!21!0&N lww):2326672#"&5467667#"&54>"32>77&&*$< &)(-(.5Ta90*'    ,,@3@rW2'*GT*.1(AL#g*{(9>32#"&54676654&&#"#&67667"32>54&"C7""/JV')2M )H E-/& ",$ 9@=2BtX2<6   1&?N(;C(@ID1R*2#"'&&#"32>72#"&54>   7%" *149/LU ;fB2'"&KD;hO.BS6654&&#"#&67667326672#"&5467667#"&&54>336&#"32>7K )H \ &)*.&2Ra0 :/)'"  1'    +. #79oZ6\$+FU*(6)AL$L#02#32>72#"&54>2>54&#" &#9?:%" *048-HW{46%)'4-!-<"&JD6hR1%0'99}?2#"&'&&#"32#0#"&'44766323267#"54633>H  %be BR'  %:S.AR   lt +HVW%PzD   ltIPxB?N]#"&54667'&&54667"&&54663267667#""'""4&&'326"326654&&E $+ 5*(::(|iBV.B #.5*7U-%    <2D/!&@&19@+ *t+4D%  ."FR2."4'  3&7W3   * & &/2H"$:-A3#Q>32326672#"&546776654&#"#"&'6654&&#"#&676672+20  &)" 39.  j )H AZ+84#%5  &)ET+<""  1w3?665454&#""&5>32326672#"&54672#"&546l $(2 &)i;   %"w%16654&#""&5>32&56672#"&546r $(6O 1J}; 9?(9  zQb%"<I2326672#".'#"'6654&&#"#&67667>"2>54&=-:^6+5% $'0(#$k )H 3.:0+>8% &,=% @D!'32>32>32326672#"&546"27+   625(  @ $(  +21  -43"   &)a&)CO% '.HQ#w; 'B?** # =:&#:  S>32326672#"&546776654&#"#"'665454&#""&5>32+10"! &)" 5:/  @ $(BR*52!#;  &&BT.#1#; g2#"&54>"32>54&;7%@O*:8%@O0"0!Q?3fS2M?3gU3.JS%:F/JS%;D=M2#"&'2321"&#"&6727667&&54?6632>"32>54&9/&+GW- !  %A+ M/9 29-*  7+C39n[6 / = %  *!6#+82P^+)"u->"&#"&43667#"&&54>321326&#"32>76  +M)7(-&2Ra0%<  :/)'& ,,#79oZ63KI2  *$+FU*(6)AL$d82#"'&#"#"'665454&#""&5>32>,  ()": $( "))  ,HS&w; "?;' 72#"&'&&#"#"&'&&54632326654&'&&5466'  +$O>-  -!=  '1;%6B   *>*8'( 07>3232#326672#"&5467#"5463r  IL4 &)4A:u   W%667#"&54677665454&#""&5>3232>7667632326672#"&546 .:< ! $(" 29.    = &)a#>?**< &*GW..  47>76654&'6632#.55454&#""&5>32#, !7BC7 $(?11>! ,"KPJ:#'3/  >MP6676654&'6632#.5&&1#.55454&#""&5>32>766766x'2  (?G@88/ $(,# n@H> "F.9! ,"%]^P1'4/ ,#KA('3/  %?; *U%326672#"&''#"&'&&5463267667'&&#""&5>32>32#"&&'&  $'%&(    $'%#%   W!-'T/M-   !7#!,(C+D(   /@2>54&'6632#"&546732676654454.#""&5>  &$/Nad[! 3.?  $(3Sa]G8HO(-,$ 9t[5  .#I !SRF* rM2326636632326672#"&'&&#"&'4>5#"&'&&#""'>$ &(?G@) (* ) *CKC,#  !  0GNF,  ! 8+1JQG.   %+:Z23267#".#"&&5466 0,0 *%<# 1,1 *,?Z(&4&"&54676674632#"&e H!!&Ƿ;~rV%G!!L0:2#"'&&'32>72#"#"&77&54>7&#"   m " *1  G(@L% 7%  "&&#o5`M3&;fB1lQ3667>32#".#"32#6632232326672#"&&#""&7667667667#&6A) AY1 & s 3  1.  $3 <6( 7 81>`7(*A!D  7O" 5* "L)  #b2@76322'#"&'#"&'7&5467'4"546763226654&#"@B &&!$52:; &%!$-60!8",$!9"-67/M8512!.P767U-3D7U-3DRoiw7"54673564''&&'&&#"673267#">7676&#&673267#"32#32#3&&#"&6726676677#"546737MN   , 6J40#%*"$$WVXW23NM   KH7  '%  %'%~C]2#"&'&&#"#"'&&54632326654&&'.54>7666654&&'.547)  %(84$&)G.  &)85#&)H= !26&  35&~  <;=I*:9/   <;32#".7326654&&#"#"&&5466320#"'.#"3267663227)Ia77aJ**Ja77aI) ?kAAl@@lAAk?f-;'?%#>(? &#(6!0& N7aI**Ia77aI**Ia7Ak@@kAAk@@k%?&'B' <)'3 :^ )87"&5467667#"&54>32326672"326677&& $-#(AK" ."+:&,$  ,$,$,P=#   2M'%1G H,#0&'5!0&50663 u7M#ky4>32#".7326654&&#"721"&'&&'.'&##3&&#"&47267645544'&&#&473264&#"3267)Ia77aJ**Ja77aI) ?kAAl@@lAAk?)!! '       <#$7aI**Ia77aI**Ia7Ak@@kAAk@@kN &-   +L     R% M{}Xk 46632#"&732654&#"X!2 * 3 )#)* 3,!4 -(,)!/*356632132##"55#0&546!2!0&5460     Aa  $ $%9x+#"&76676654&#"&76632326676729  N!!&>"3AE#v  `;  L(7' .:/0D$&w922#"&'0&5463232654&#"&'&76654&#"&&7>6( )!,H+)   '+ $6&w%& ), +<  +-$0+$   ^xO(S%#"&47#"&&5#"&&54>7>7663232667667663213267 /.0       -*   C.-A%C* -)793  ETSD 9H>  :I ( !10G"9X3 +42 5Q- &  '&   : 74632#"&)()+lD&}04&#"&&54766332032&&#"&432667665x  NC %("   )2  %V2#"&&5466"326654&&+D((D+*F*)F##* !((B)(F+)D(*D)$5 ?)$6 >*!wESX23##"&'5#&&'66%3.#"&6726766554&#"&&'6670&&166%5P"%  `! &8>  U ]0! hf |     % (q &F+$w+Xf232667672#"&76676654&#"&766%3.#"&6726766554&#"&&'6670%'&&166,3AD#u    H!!&?! %8> z U :/0D$; F%>' .     % (O q"wR`e23##"&'5#&&'66%22#"&'0&5463232654&#"&'&76654&#"&&7>'&&1665Q"&  O6( )"-H+)   '+ $7& V  0! hf %& ), +<  +-$0+$    q&&F+(& .:7326632#".5467>766'4456677#"&54632'$1, !A>),7 ! $  5$- *#&*  /C+2D s!!&FS 'S0&eS &JS)&SZ2&So#32&&#"&632676676654&#&677263#"5&&##"332667632#"'&&'.#"3327667632"&#"1&67266766?{v#- &-`@J 2$N0,%   !( +I+" ,JZ8) ,%"  .%>!;& & *'-'(Z  !:Vc&U| &MW  'W 0&HW )&;WR&[[ &[r0&[}-&[/N374766'4&&#&6732632##&6726676677#"&766732#326676&&#"N3%4Li3 8`c%2&'+F^-mKU% S[>v]8 &=}_o? ' &`s<&at< &a<0&a< &ad<)&av6>57'46320763201#"'0.11#"&&50>Œ++() *+,+ (* **** +*++()<+7&&77&&54>327#"&'32>54&'"&&s)%&9b{C-M)($(6_|G/M}>.8Z@" .XF) Y> 4&j=Tf843&j>Vf7I%@kB K6aM%M!%S&gS &gS0&gS)&g6l &k^13&&#"&67266766766'4&&#&673267"6632#"&'&&547326654&&#" 26 Q55 %Nb@g<$I003'ZYH,#  &'  '*PC>e: .R6=, _#"&'44766323267#"54633>32#"&'&&7663232654&&'&&546676654&#"  BR'  %:S.AR'5%($#%M:,+  " ""4 (Gvn>PzD   ltIPxB0'+5" %'+1!5F &/+/" 3&-0kj&pw j&px2 f'y p;'zpM&p'p LZf2663232>72#"&'#"&5467>766776454&#"#"&5467>73266"2>54&%O'!2KM!#" 48< #*& 3()62   !8D /)/24$*( 9. .8 1 '#(."4  ; ),  $[#3J#!,qR'lrLj&tw {j&tx Tf'ytmM&tI&wwj&x f'yP&&);&&77&&'6637#"&&54>326&'"326654&'&&]5 &?qd+*(CR)+1 :O.  =':&># KB0EP\1,A!(cZ; Q%AmB=-@nC0 ;'z}gI&~wkj&~x gf'y~;'z~M&~; $70&54667!26632#"&6632#"&@! !  g%/3&&77&54>327#"'"7&32>543%@O*0 %@O*,0" 0!$<3gU3 $83fS2x.JS%:^2/JS%I&wj&x f'yM&j&x% O_>32#"&'2321"&#"&6727667&&54776654&&#"#&67667"32>54&  29/&+GW- !  %A+ M/:2 )H 7-*  7+B2EC. *!C39n[6 / =  1#+82P^+)"M&&Sf&p{ >&S}q\&p}TW%3.#"326632#"&546676654&''#3.#"&672676676632%3'(B1 ";"1& &  T&;  .-  - ;7 $-F %  / )EV%326632#"&54667&&5467667#"&54>32326672"32>77&&% ,+ ":"1 (-(.5Ta-$< 90*'V& &..  -?=  ,,@3@rW2 '*GT*.1(AL#g:c 'Uj&rx$ :c0'U[f'yr:c)'~URw&r~7:c0'Uzh'r0&ViU&sj+Qb36654&&#"#&6766732#326672#"&5467667#"&&54>337#"&7666&#"32>7R )H I GQ &)*.&2Ra0 U,:/)'(   1 a    +. #79oZ6^ $+FU*(6)AL$ &WBT&t{  0&W{h\&t} )&W~`Lw&t~7 "326632#"&54>7&&#"#&67266766766'4&&#&673263#"5&&##"332>7632#"'&&'.#"3327667632#=. ":"*.h8 2 Q4@J .$N $0!$  $ !( &+K.& 2).  -33)  &' +  ;& &*-'(ZL<I4>7#"&54>32#32>72326632#"&2>54&#")' 48-HW*&#9?:%" 96$ ";S46%)24) JD6hR1'4-!-<47/  -%0'99 0&cWth't:0'Yg'yv:0'Y]&v}:)'~Yw&v~7:'2Y&vX0&Z0&w3766'4&&#&673267"!766766'4&&#&673267"32#3&&#"&6726676677!3&&#"&672667667#"4766!7q/464610D44 &&35 D2|$'  '$$  '$#  &#  &\ qqa36654&&#"#&6766732#>32326672#"&546776654&#"#"&'#"&766W) )H rp'+20  &)" 39.  e,(   1Z+84#%5  &)ET+<" ~ &[5;'zc&[ &{ d0&[\&}QP7"326632#"&54667"&67266766766'4&&#&673267"  #8 ";$78 Q55Q -2  -I=  &'  '_# wKW7326632#"&54667#"&54677665454&#""&5>323266722#"&5462 ":)1 $(2 1V=>  -A>  %"R)&[~3665454&#""&5>32326672#"&5467l $(2 &);   M&[\w'yx[0&\f'yj']'zAN665454&#""&5>32>32326672#".'#"'"2>54&h $(.:,:^6+5% $'0(#$0,>9% ; !, &,=% @D!'V.&   R)' .32>32`O1H3 5:/    @ $(+10",9?(9  zQ&&BT.#1#; R*52!#;<&al&~{ <0&ap\&~}<&&aj&~'xj x 8ibv263#"5&&##"332>7632#"'&&'.#"3327667632"&'&&#"&&54>326&&#"32667667J@J .$N $/!$  # !).&+K.' 2 <,[5(IZs85_~I.+,(>7[B$XR$+*  ;& &*-'(Z  NIOi<b! ?g~?w A.=J2#32>72#"'#"&54>3266"326654&>54&#"&#9?:%" *0LG&:8%@O*,6 #T0" ;%[44$('4-!-<"&L")M?3gU3.''..JS%:FAmC;D$0!5<% &dx}j&x %'dd'L%0&d9eh'  &eSm&x 0&e2*i'y V&eo 'V 0&eISk'9Vd&fp 'A9d4&fn(&):eS3#"#&'66763!26762'"'6&##32#3&&#"&6726676677#"&766s4u"8    c &   "t4wv%45 %sT D3'T- -T'3D #  &) @37#"546337>3232#32#326672#"&54677#"&7665, A  IL m m! &)!,4;:u ;   S &gf;'zS&g&{ S0&g\&}Sv&g'S&&gj&'xk x Vg326632#"&54667#"'&&74766'4&&#&673267"3266766'.#&6732667" ";&8 n0 845/  Y/WC4+! 4D/(Q5  -#A=L X5%  '8UB&]T    Tp A=o4667&&5667667#"&54677665454&#""&5>3232>7667632326672326632#"&"1  .:< ! $(" 38.    = % ,+ ";?=#>?**< &*GW. , & &..  -?0&iMf'yw6l0&kYr'y6l)&kM` &lwj&x `)&l~rw&~7`0&lnrh'}6>32#"&'&&#"0#"&'44766323267>~BS'  !  BR'  % QwB   EuJ+HVW%PzD   lt%_bT3:0&Yg'v%6654&#""&5>32&5667r $(6O 1J; 9?(9  zQo}2676&#&672#&6#7)$4/A$9%)4 #9"":$ "&&7>3"#5-A$(5! $:""9# 4)%9by{efV}[t@~86i+;)`Lk+z6X^'x{xL^".54632#.- "  (b^"&54>7632"  -."(  ab2#.10"7>76##0 #"b"/!  "#|+%2326701#"&'&&#"&&766766 $ % $ '+  p #0&546332&5!2X22V#"&74656632676B%%,%3  J':8* ((<@ 6632#"&! 8 2#"&766#2#"&766! 8d 6632#"&732676&#"8!!%8!!%%%$6$33$$33$ we"'&&'663106672#$0 #!#.!  "#lo#&&54667632' !+  7+    |}463#"&546654&+#(  B  3)5 6632#"& !PD:4663#"546676&'&&' !+  B7+    lI#32#"'45&7663232676&#""&76673:#     "(      +) '2326632#"&&7>G  ,1& ";!-/%) $+  -# 0/)'&T~N*{:&q~'&V~j:&s~`&V]'s'{V'{sY&Vo's ''~XX:&u~E`'Z]'wY&Zo' wL'}mZI'}jwF''~_F&|~q''~CbH&~ ('~9e I&~ Y&4e] 'H9d5'~pf(&~j9`d&if] 'E9d'{f '{S?.&iMD&w;?.&iOMd&x?'&iMB&a c`&lcr'{'{w(A&n6l.&NkD&w3+ 772"5466G   3+ 772"5466G   3 2!"5467   ! 4 2!"5467 j  ! 4 2!"5467   ! 4 2!"5467 |  ! +4>32#"&'&&+$1(#$   1  )B.-"    /"R4676632#".  1   $#(1$t/   #-.B+h'#`/Q/P|PO34676632#".74676632#".  1   $#(1$  1   $#(1$r/   #-.B)/   #-.B"cF2674&&'463232672#&&#"&&'.'6674&#""&5463   ))     )) 0,  ,0  %3MKX==XKM3(  .oy32672#&&#"#"&5>5&&#""&54633265&&'667&&'6674&#""&546332674&&'463232672#&&#"  ))   ))   ))   ))    $  0,  ,0   ' (   0,  ,0  % N j 4632#"&N?+,<<,+?,==,+??/d 74632#"&/ !! ,!!##/d #74632#"&%4632#"&%4632#"&/"!!"2"!!"1# #,!!##!!##!!##+v/?O_m2#"&&5466!2#"&&54662#"&&5466"326654&&"326654&&!"326654&&#"&'6632+@$#@-(C(&Cq+@$"@-(C(%C+@%#@-(C'%B($* %F$* %$* %^(  2,G+'G-*F+,G+,G+'G-*F+,G+D+G+'G.*G+,G*%8!B+&9!A+%8"A+&9!A+%8"A+&9!A+G b02#"54>766l*   "]* "14 0$2#"&54>766#2#"54>766( !a*   "]*"14  "]* "14 Ik"&&'#"&54667632! 0($6  #&% /(  G&&'&5467> ! U\l@Y0   #" X  OF  'D,*G7&&546677.'.5467A U !! /Z?]cG  X "#  +D'  w'>w>wF&fDlQ"32#32#326766721#"&&'#"5467367#"54673>#"&'6&&4^F*M9#: #L5AnD0(*+kE$M$<J3aD4`>.&+#CoBPp:64%:!3 70663!21!0&4  b= 54D%0"#"74554##0&5467621325504766321332361#"01!0&7663A !  Jռ  ]   W)7&5467>762>130#"' 6/r  %      # 'Lun@Dtg {?s2&'.5464632#"&z $!!s&Ƿ;~rV%!!$n2&&5467#k!@.UnnU.@!L)D֎C(n&&3>54&&'"67nV.?!!?.VnD)LM(C/a 74632#"&/!!,!!u 2#"&166h $ Ms"266101010&&#"&546`(D) 6**6)D(     h66320#"&'& (353( Q >ij@ps"2#"10&5467>10&&'&54610(D)5**5 )D    sA4&'&&546672#.54676654&'&&546766f #0 $ ! ! $ 0# --v$(0H/ "-)+1/ ,)-  .I/'$'%#J}#"74506766321} hS(s?"&5>54&'&&54667.54676654&&'4681" .. "1 $ " " $ /H0($'#%'$'/I.  -), /1+)-" E;7467>14&&'&&7467>14&&'&&@[1 !.//.! 1[@@[1 !.//.! 1[@'F.(2//2(-H& 'F.(2//2(-H& (E;%&&'>7.'6672&&'>7.'6672@[0 !.//.! 0[@@[0  .//.  0[@ &H-(2//2(.F' &H-(2//2(.F'TWn2>32#"&&#"332#"#"&&'#"&'463232>766754##"54663327>26754##""3327667654&5&&j(: )/("( pr*BNH'A(#  !4@  5FM8J26 )%>+  +   (-CF6 Z|K" )%9=- <`E$fv.A !2U4  .^ St326672#"&546776654&#"1"#"&'&63232>754##"54663327>32#"&'&&#"32>7>322 &)+ C06DU*%% #;@  E\1(!   C '-% +% B  _|< $.ECK Q}G *'gh   T"#"&&'#"&'463232>766754##"54663327>32>32#"&'&&#"37>32326672#"&546776654&3266754##""3327667654&5&&@*BNH'A(#  !4@  5FM"(: ,1(!   (  +% 2 &)+  B<26  %>+  +eZ|K" )%9=- <`E$   *'-CF6    * 2gO.A 2U4  .^ Se326672#"&54676654&#"332#"#"&'&63232>754##"54663327>323266320\ &)X8#a)pr6DU*%% #;@  E\1(, A'   ' _|< $.ECK Q}G ,Tx4&#"332#"#"&&'#"&'463232>766754##"54663327>32>323266320326672#"&546766266754##""3327667654&5&&8#a)qr/BOH'A(#  !4@  5FM"(: ,1(, \ &)XB<26  %>+  +? ' Z|K" )%9=- <`E$   ,)'  2gO.A  #2U4  .^ S]n6654&#"332#"#"&'&63232>754##"54663327>323266320>32#"&54677"32>54&6#a)pr6DU*%% #;@  E\1(, <"C7""/JV')2-/% ",$ " ' _|< $.ECK Q}G -(9@=2BtX2<6 &?N(;C(@ID1Tp&&#"332#"#"&&'#"&'463232>766754##"54663327>32>323266320>32#"&546766266754##""32>54&"3327667654&5&&5#a)qr/BOH'A(#  !4@  5FM"(: ,1(, <"C7""/JV')2MB<26  -/& ",$ %>+  +? ' Z|K" )%9=- <`E$   ,)9@=2BtX2<6 2gO.A   &?N(;C(@ID12U4  .^ Sq~6654&#"332#"#"&'&63232>754##"54663327>323266320>32326672#".'#"'"2>54&8#a)pr6DU*%% #;@  E\1(, 2.:,:^6+5% $'0(#$0+>9% " ' _|< $.ECK Q}G ,)!, &,=% @D!'32326672#".'#"'6654&#"332#"#"&&'#"&'463232>766754##"54663327>32>32266754##""3327667654&5&&"2>54& 2.:,:^6+5% $'0(#$j8#a)qr/BOH'A(#  !4@  5FM"(: ,1(,B<26  %>+  +0+>9%  ,)!, &,=% @D!'754##"54663327>323266320>32326672#"&546776654&#"#"&'8#a)pr6DU*%% #;@  E\1(, 1+20  &)" 38.  " ' _|< $.ECK Q}G ,)Z+84#%5  &)ET+<"T266320>32326672#"&546776654&#"#"&'6654&#"332#"#"&&'#"&'463232>766754##"54663327>32>32266754##""3327667654&5&& 2+20  &)" 39.  i8#a)qr/BOH'A(#  !4@  5FM"(: ,1(,B<26  %>+  + ,)Z+84#%5  &)ET+<"" ' Z|K" )%9=- <`E$  2gO.A  #2U4  .^ Se&56676654&#"1"#"&'&63232>754##"54663327>32#"&'&&#"32>7>326O 1J5 C06DU*%% #;@  E\1(!   I '-% +% B9?(9  zQ _|< $.ECK Q}G *'yz T|2&56676654&#"1"#"&&'#"&'463232>766754##"54663327>32>32#"&'&&#"32>7>3266754##""3327667654&5&& 6O 1J5 .9**BNH'A(#  !4@  5FM"(: ,1(!   (  )/& +% B<26  %>+  +  9?(9  zQ Z|K" )%9=- <`E$   *'-CF6 2gO.A 2U4  .^ Q".54632K&10  "$  C"&54>76632$"  01%  02#'0"7>768  W'6 (&0- :  l 6632#"&732676&#":!!$7!!'%$%B$33$$44$!!"23267#"&'&&#"&&546766!" % ! %       F #0&546332 Ij267432#"&7566321   A%%- &0"64%aV#32#"'45&7663232676&#""&76673D*        "(/    ?{ 6632#"&C  T'"&54>766323"&54>76632$"  01%$"  01%     6632#"&76632#"& !  [3 2#"&54632#"&5463$ $ 0"'&&'663106672! )(7 (& !*   wx5rB sC sD!sE uF!uG2xHmI7tJ-xK10'B233x0>(C233;2|(D233H.m(E233.-)F233H.m)G233?-w,H2337.#I233H+n(J233?-v,K233!g6!h6$i6 j6 k6  l6 m6n6o6 p6a'7#53'7D!_^ D  Db '7'77/////// ///00//532225!2L22~5!222,5!2,225!222F5!2x225!2@22r5!2225!222:5!2l225!2225!2,225!24225!222 "5!2 T22^5!2225!222&5!2X225!2225!2 22R5!2225!222n      .    2 J 0X 0X " 6  * 6 \ D` ` 2 H6 d~ $ * >0 Fn R ,  * 2 L \Copyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri).AmiriItalic1.000;ALIF;Amiri-ItalicAmiri ItalicVersion 1.000Amiri-ItalicKhaled HosnyAmiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named.http://www.amirifont.orgThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttps://scripts.sil.org/OFL5PAR .NDRBN .NHR/M CNEP+RDP qD4QNER3P %P0R (N2N:N*R JN-R8NIp qD6QN,PJ9O (PGN' FN,RDN'!N EP9R7N'1P.Inverted Arabic commaDisable curvilinear KashidaNo automatic vowel insertion above name of GodLow Baa dot following a Raa or WawAlternate medial Meem and final Alef combinationLocalised @ and & symbolsAlternate, more naskh-like, Gaf formKasra is placed below Shadda instead of base glyphA'5D) 91(J) EBDH()*97JD 'DC4J/) 'DEBH3)DA8 'D,D'D) (/HF 4/) H#DA 5:J1).A6 FB7) 'D('! 'DE3(HB) (1'! #H H'H4CD (/JD DDEJE 'DE*H37) E9 'D#DA 'DEF*GJ)4CD 91(J D9D'E*J @ H &4CD (/JD F3.J  DD'AH69 'DC31) *-* 'D4/) (/D' EF *-* 'D-1A 23 >?@^_`      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'(  !"#$%&'()*+,-./0123456789:;<=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]a)*+,-bcdefghjikmlnoqprsutvwxzy{}|~./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKnbspace number-aryear-arfootnotemarker-ar pagenumber-ar samvat-ar cuberoot-ar fourthroot-array-arperthousand-arpertenthousand-ar afghani-arcomma-ardateseparator-ar verseComma-ar misraComma-ar!sallallahouAlayheWassallamcomb-aralayheAssallamcomb-arrehHahabove-arrehDadabove-artakhallusabove-ar tahabove-aralefLamYehabove-ar zainabove-ar fathasmall-ar dammasmall-ar kasrasmall-ar semicolon-armark-ar endoftext-ar threedots-ar question-aryehKashmiri-arhamza-ar alefMadda-aralefHamzaabove-arwawHamzaabove-aralefHamzabelow-aryehHamzaabove-aralef-arbeh-ar tehMarbuta-arteh-artheh-arjeem-arhah-arkhah-ardal-arthal-arreh-arzain-arseen-arsheen-arsad-ardad-artah-arzah-arain-arghain-arkehehTwodotshorizontalabove-arkehehThreedotsbelow-aryehFarsiVinverted-aryehFarsiTwodotsabove-aryehFarsiThreedotsabove-ar kashida-arfeh-arqaf-arkaf-arlam-armeem-arnoon-arheh-arwaw-aralefMaksura-aryeh-ar fathatan-ar dammatan-ar kasratan-arfatha-ardamma-arkasra-ar shadda-arsukun-armadda-ar hamzaabove-ar hamzabelow-ar alefbelow-ardammainverted-arnoonghunnaabove-arfathaHorizont-ar vabove-arvinvertedabove-ardotvowelbelow-ardammareversed-arfathatwodots-arwavyhamzabelow-arzero-arone-artwo-arthree-arfour-arfive-arsix-arseven-areight-arnine-ar percent-ardecimalseparator-arthousandseparator-ar asterisk-ar behDotless-ar qafDotless-ar alefabove-ar alefWasla-aralefWavyhamzaabove-aralefWavyhamzabelow-ar highhamza-arhighhamzaAlef-arhighhamzaWaw-aruHamzaabove-arhighhamzaYeh-artteh-ar tteheh-arbeeh-ar tehRing-artehThreedotsdown-arpeh-arteheh-arbeheh-arhahHamzaabove-arhahTwodotsverticalabove-arnyeh-ardyeh-arhahThreedotsabove-artcheh-ar tcheheh-arddal-ar dalRing-ardalDotbelow-ardalDotbelowTah-ardahal-ar ddahal-ardul-ardalThreedotsdown-ardalFourdots-arrreh-arrehv-ar rehRing-arrehDotbelow-ar rehVbelow-arrehDotbelowdotabove-ar rehTwodots-arjeh-arrehFourdots-arseenDotbelowDotabove-arseenThreedotsbelow-arsheenThreedotsbelow-arsadTwodotsbelow-arsadThreedots-artahThreedots-arainThreedots-ar fehDotless-arfehDotmovedbelow-arfehDotbelow-arveh-arfehThreedotsbelow-arpeheh-arqafDotabove-arqafThreedotsabove-arkeheh-ar kafswash-ar kafRing-arkafDotabove-arng-arkafThreedotsbelow-argaf-ar gafRing-arngoeh-argafTwodotsbelow-argueh-argafThreedots-ar lamVabove-arlamDotabove-arlamThreedotsabove-arlamThreedotsbelow-arnoonDotbelow-ar noonghunna-arrnoon-ar noonRing-arnoonThreedotsabove-arhehDoachashmee-artchehDotabove-arhehHamzaabove-ar hehgoal-arhehgoalHamzaabove-artehMarbutagoal-ar wawring-ar kirghizoe-aroe-aru-aryu-ar kirghizyu-ar wawTwodots-arve-ar yehFarsi-ar yehTail-ar yehVabove-arwawDotabove-are-aryehThreedotsbelow-ar yehbarree-aryehbarreeHamzaabove-ar fullstop-arae-arsadLamAlefMaksuraabove-arqafLamAlefMaksuraabove-ar meemabove-arlamAlefabove-ar jeemabove-arthreedotsabove-ar seenabove-ar endofayah-arhizb-ar sukunround-ar sukunoval-ar hahabove-armeemStopabove-ar seenbelow-ar maddalong-ar wawSmall-ar yehSmall-ar yehabove-ar noonabove-ar sajdah-arrhombusStopbelow-arrhombusStopabove-ardotStopabove-ar meembelow-ardalVinvertedabove-arrehVinvertedabove-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-arsheenDotbelow-ardadDotbelow-arghainDotbelow-arsindhiampersand-arsindhipostpositionmen-arhehVinvertedabove-arbehThreedotshorizontalbelow-arbehThreedotsupabove-arbehThreedotsupbelow-artehThreedotsupbelow-arbehTwodotsbelowDotabove-arbehVinvertedbelow-ar behVabove-arhahTwodotshorizontalabove-arhahThreedotsupbelow-ardalTwodotsverticalbelowTah-ardalVinvertedbelow-ar rehStroke-arseenFourdotsabove-arainTwodotshorizontalabove-arainThreedotsdownabove-arainTwodotsverticalabove-arfehTwodotsbelow-arfehThreedotsupbelow-arkehehDotabove-arkehehThreedotsabove-arkehehThreedotsupbelow-armeemDotabove-armeemDotbelow-arnoonTwodotsbelow-arnoonTahabove-ar noonVabove-ar lamBar-arrehTwodotsverticalabove-arrehHamzaabove-arseenTwodotsverticalabove-arhahTahbelow-arhahTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar$rehTwodotshorizontalaboveTahabove-arhahTahabove-aralefTwoabove-aralefThreeabove-aryehFarsiTwoabove-aryehFarsiThreeabove-aryehFarsiFourbelow-arwawTwoabove-arwawThreeAbove-aryehbarreeTwoabove-aryehbarreeThreeabove-arhahFourbelow-arseenFourabove-arseenVinvertedabove-arkafTwodotshorizontalabove-arpound-ar piastre-ar behVbelow-aryehRohingya-arbehMeemabove-arpehMeemabove-artehTehabove-arrehNoonabove-aryehTwodotsbelowNoonabove-ar fehAfrican-ar qafAfrican-arnoonAfrican-ar fathaCurly-ar dammaCurly-ar kasraCurly-arfathatanCurly-ardammatanCurly-arkasratanCurly-artoneonedotabove-artonetwodotsabove-artoneloopabove-artoneonedotbelow-artonetwodotsbelow-artoneloopbelow-aropenfathatan-aropendammatan-aropenkasratan-ar highwaw-ar fathaRing-arfathaDotabove-arkasraDotbelow-arleftarrowheadabove-arrightarrowheadabove-arleftarrowheadbelow-arrightarrowheadbelow-ardoublerightarrowheadabove-ardoublerightarrowheadDotabove-arrightarrowheadDotabove-ar dammaDot-arenquademquadenspaceemspacethreeperemspacefourperemspace sixperemspace figurespacepunctuationspace thinspace hairspacezerowidthspacezerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark lineseparatorparagraphseparatorlefttorightembeddingrighttoleftembeddingpopdirectionalformattinglefttorightoverriderighttoleftoverride narrownbspacereversedsemicolon dottedCircle commareverseduniFB51uniFB53uniFB54uniFB55uniFB57uniFB58uniFB59uniFB5BuniFB5CuniFB5DuniFB5FuniFB60uniFB61uniFB63uniFB64uniFB65uniFB67uniFB68uniFB69uniFB6BuniFB6CuniFB6DuniFB6FuniFB70uniFB71uniFB73uniFB74uniFB75uniFB77uniFB78uniFB79uniFB7BuniFB7CuniFB7DuniFB7FuniFB80uniFB81uniFB83uniFB85uniFB87uniFB89uniFB8BuniFB8DuniFB8FuniFB90uniFB91uniFB93uniFB94uniFB95uniFB97uniFB98uniFB99uniFB9BuniFB9CuniFB9DuniFB9FuniFBA1uniFBA2uniFBA3uniFBA5uniFBA7uniFBA8uniFBA9uniFBABuniFBACuniFBADuniFBAFuniFBB1dotaboveSymbol-ardotbelowSymbol-artwodotshorizontalaboveSymbol-artwodotshorizontalbelowSymbol-arthreedotsupaboveSymbol-arthreedotsupbelowSymbol-arthreedotsdownaboveSymbol-arthreedotsdownbelowSymbol-arfourdotsaboveSymbol-arfourdotsbelowSymbol-ardoubleverticalbarbelowSymbol-artwodotsverticalaboveSymbol-artwodotsverticalbelowSymbol-ar ringSymbol-aruniFBC0tahbelowSymbol-aruniFBD4uniFBD5uniFBD6uniFBD8uniFBDAuniFBDCuniFBDFuniFBE1uniFBE3uniFBE5uniFBE6uniFBE7uniFBE8uniFBE9uniFBEAuniFBEBuniFBECuniFBEDuniFBEEuniFBEFuniFBF0uniFBF1uniFBF2uniFBF3uniFBF4uniFBF5uniFBF6uniFBF7uniFBF8uniFBF9uniFBFAuniFBFBuniFBFDuniFBFEuniFBFFuniFC00uniFC01uniFC02uniFC03uniFC04uniFC05uniFC06uniFC07uniFC08uniFC09uniFC0AuniFC0BuniFC0CuniFC0DuniFC0EuniFC0FuniFC10uniFC11uniFC12uniFC13uniFC14uniFC15uniFC16uniFC17uniFC18uniFC19uniFC1AuniFC1BuniFC1CuniFC1DuniFC1EuniFC1FuniFC20uniFC21uniFC22uniFC23uniFC24uniFC25uniFC26uniFC27uniFC28uniFC29uniFC2AuniFC2BuniFC2CuniFC2DuniFC2EuniFC2FuniFC30uniFC31uniFC32uniFC33uniFC34uniFC35uniFC36uniFC37uniFC38uniFC39uniFC3AuniFC3BuniFC3CuniFC3DuniFC3EuniFC3FuniFC40uniFC41uniFC42uniFC43uniFC44uniFC45uniFC46uniFC47uniFC48uniFC49uniFC4AuniFC4BuniFC4CuniFC4DuniFC4EuniFC4FuniFC50uniFC51uniFC52uniFC53uniFC54uniFC55uniFC56uniFC57uniFC58uniFC59uniFC5AthalAlefabove-arrehAlefabove-aralefMaksuraAlefabove-aruniFC5EuniFC5FuniFC60uniFC61uniFC62uniFC63uniFC64uniFC65uniFC66uniFC67uniFC68uniFC69uniFC6AuniFC6BuniFC6CuniFC6DuniFC6EuniFC6FuniFC70uniFC71uniFC72uniFC73uniFC74uniFC75uniFC76uniFC77uniFC78uniFC79uniFC7AuniFC7BuniFC7CuniFC7DuniFC7EuniFC7FuniFC80uniFC81uniFC82uniFC83uniFC84uniFC85uniFC86uniFC87uniFC88uniFC89uniFC8AuniFC8BuniFC8CuniFC8DuniFC8EuniFC8FalefMaksuraAlefabove-ar.finauniFC91uniFC92uniFC93uniFC94uniFC95uniFC96uniFC97uniFC98uniFC99uniFC9AuniFC9BuniFC9CuniFC9DuniFC9EuniFC9FuniFCA0uniFCA1uniFCA2uniFCA3uniFCA4uniFCA5uniFCA6uniFCA7uniFCA8uniFCA9uniFCAAuniFCABuniFCACuniFCADuniFCAEuniFCAFuniFCB0uniFCB1uniFCB2uniFCB3uniFCB4uniFCB5uniFCB6uniFCB7uniFCB8uniFCB9uniFCBAuniFCBBuniFCBCuniFCBDuniFCBEuniFCBFuniFCC0uniFCC1uniFCC2uniFCC3uniFCC4uniFCC5uniFCC6uniFCC7uniFCC8uniFCC9uniFCCAuniFCCBuniFCCCuniFCCDuniFCCEuniFCCFuniFCD0uniFCD1uniFCD2uniFCD3uniFCD4uniFCD5uniFCD6uniFCD7uniFCD8hehAlefabove-ar.inituniFCDAuniFCDBuniFCDCuniFCDDuniFCDEuniFCDFuniFCE0uniFCE1uniFCE2uniFCE3uniFCE4uniFCE5uniFCE6uniFCE7uniFCE8uniFCE9uniFCEAuniFCEBuniFCECuniFCEDuniFCEEuniFCEFuniFCF0uniFCF1uniFCF2uniFCF3uniFCF4uniFCF5uniFCF6uniFCF7uniFCF8uniFCF9uniFCFAuniFCFBuniFCFCuniFCFDuniFCFEuniFCFFuniFD00uniFD01uniFD02uniFD03uniFD04uniFD05uniFD06uniFD07uniFD08uniFD09uniFD0AuniFD0BuniFD0CuniFD0DuniFD0EuniFD0FuniFD10uniFD11uniFD12uniFD13uniFD14uniFD15uniFD16uniFD17uniFD18uniFD19uniFD1AuniFD1BuniFD1CuniFD1DuniFD1EuniFD1FuniFD20uniFD21uniFD22uniFD23uniFD24uniFD25uniFD26uniFD27uniFD28uniFD29uniFD2AuniFD2BuniFD2CuniFD2DuniFD2EuniFD2FuniFD30uniFD31uniFD32uniFD33uniFD34uniFD35uniFD36uniFD37uniFD38uniFD39uniFD3AuniFD3BalefFathatan-ar.finaalefFathatan-ar parenleft-ar parenright-aruniFD50uniFD51uniFD52uniFD53uniFD54uniFD55uniFD56uniFD57uniFD58uniFD59uniFD5AuniFD5BuniFD5CuniFD5DuniFD5EuniFD5FuniFD60uniFD61uniFD62uniFD63uniFD64uniFD65uniFD66uniFD67uniFD68uniFD69uniFD6AuniFD6BuniFD6CuniFD6DuniFD6EuniFD6FuniFD70uniFD71uniFD72uniFD73uniFD74uniFD75uniFD76uniFD77uniFD78uniFD79uniFD7AuniFD7BuniFD7CuniFD7DuniFD7EuniFD7FuniFD80uniFD81uniFD82uniFD83uniFD84uniFD85uniFD86uniFD87uniFD88uniFD89uniFD8AuniFD8BuniFD8CuniFD8DuniFD8EuniFD8FuniFD92uniFD93uniFD94uniFD95uniFD96uniFD97uniFD98uniFD99uniFD9AuniFD9BuniFD9CuniFD9DuniFD9EuniFD9FuniFDA0uniFDA1uniFDA2uniFDA3uniFDA4uniFDA5uniFDA6uniFDA7uniFDA8uniFDA9uniFDAAuniFDABuniFDACuniFDADuniFDAEuniFDAFuniFDB0uniFDB1uniFDB2uniFDB3uniFDB4uniFDB5uniFDB6uniFDB7uniFDB8uniFDB9uniFDBAuniFDBBuniFDBCuniFDBDuniFDBEuniFDBFuniFDC0uniFDC1uniFDC2uniFDC3uniFDC4uniFDC5uniFDC6uniFDC7uniFDF0uniFDF1uniFDF2uniFDF3uniFDF4uniFDF5uniFDF6uniFDF7uniFDF8uniFDF9uniFDFAuniFDFBrial bismillah-aruniFE70uniFE71uniFE72uniFE74uniFE76uniFE77uniFE78uniFE79uniFE7AuniFE7BuniFE7CuniFE7DuniFE7EuniFE7FuniFE82uniFE84uniFE86uniFE88uniFE8AuniFE8BuniFE8CuniFE8EuniFE90uniFE91uniFE92uniFE94uniFE96uniFE97uniFE98uniFE9AuniFE9BuniFE9CuniFE9EuniFE9FuniFEA0uniFEA2uniFEA3uniFEA4uniFEA6uniFEA7uniFEA8uniFEAAuniFEACuniFEAEuniFEB0uniFEB2uniFEB3uniFEB4uniFEB6uniFEB7uniFEB8uniFEBAuniFEBBuniFEBCuniFEBEuniFEBFuniFEC0uniFEC2uniFEC3uniFEC4uniFEC6uniFEC7uniFEC8uniFECAuniFECBuniFECCuniFECEuniFECFuniFED0uniFED2uniFED3uniFED4uniFED6uniFED7uniFED8uniFEDAuniFEDBuniFEDCuniFEDEuniFEDFuniFEE0uniFEE2uniFEE3uniFEE4uniFEE6uniFEE7uniFEE8uniFEEAuniFEEBuniFEECuniFEEEuniFEF0uniFEF2uniFEF3uniFEF4uniFEF5uniFEF6uniFEF7uniFEF8uniFEF9uniFEFAuniFEFBuniFEFCzeroWidthNoBreakSpaceu1EE00u1EE01u1EE02u1EE03u1EE05u1EE06u1EE07u1EE08u1EE09u1EE0Au1EE0Bu1EE0Cu1EE0Du1EE0Eu1EE0Fu1EE10u1EE11u1EE12u1EE13u1EE14u1EE15u1EE16u1EE17u1EE18u1EE19u1EE1Au1EE1Bu1EE1Cu1EE1Du1EE1Eu1EE1Fu1EE21u1EE22u1EE24u1EE27u1EE29u1EE2Au1EE2Bu1EE2Cu1EE2Du1EE2Eu1EE2Fu1EE30u1EE31u1EE32u1EE34u1EE35u1EE36u1EE37u1EE39u1EE3Bu1EE42u1EE47u1EE49u1EE4Bu1EE4Du1EE4Eu1EE4Fu1EE51u1EE52u1EE54u1EE57u1EE59u1EE5Bu1EE5Du1EE5Fu1EE61u1EE62u1EE64u1EE67u1EE68u1EE69u1EE6Au1EE6Cu1EE6Du1EE6Eu1EE6Fu1EE70u1EE71u1EE72u1EE74u1EE75u1EE76u1EE77u1EE79u1EE7Au1EE7Bu1EE7Cu1EE7Eu1EE80u1EE81u1EE82u1EE83u1EE84u1EE85u1EE86u1EE87u1EE88u1EE89u1EE8Bu1EE8Cu1EE8Du1EE8Eu1EE8Fu1EE90u1EE91u1EE92u1EE93u1EE94u1EE95u1EE96u1EE97u1EE98u1EE99u1EE9Au1EE9Bu1EEA1u1EEA2u1EEA3u1EEA5u1EEA6u1EEA7u1EEA8u1EEA9u1EEABu1EEACu1EEADu1EEAEu1EEAFu1EEB0u1EEB1u1EEB2u1EEB3u1EEB4u1EEB5u1EEB6u1EEB7u1EEB8u1EEB9u1EEBAu1EEBBu1EEF0u1EEF1 aAlf.fina.alt aAlf.fina aAlf.isol aAyn.fina aAyn.init aAyn.isol aAyn.medi aBaa.fina aBaa.init aBaa.isol aBaa.medi aDal.fina aDal.isol aFaa.fina aFaa.init aFaa.isol aFaa.medi aHaa.fina aHaa.init aHaa.isol aHaa.medi aHeh.fina aHeh.init aHeh.isol aHeh.medi aKaf.fina aKaf.init.alt aKaf.init aKaf.isol aKaf.medi aLam.fina aLam.init aLam.isol aLam.medi aMem.fina.alt aMem.fina aMem.init aMem.isol aMem.medi aNon.fina.alt aNon.fina aNon.isol.alt aNon.isol aQaf.fina aQaf.isolaRaa.fina.alt2 aRaa.fina aRaa.isol aSad.fina aSad.init aSad.isol aSad.medi aSen.fina aSen.init aSen.isol aSen.medi aTaa.fina aTaa.init aTaa.isol aTaa.medi aWaw.fina aWaw.isol aYaa.fina aYaa.isolaLam.medi.LamMemFinaaMem.fina.LamMemFinaaBaa.init.BaaRaaIsolaRaa.fina.BaaRaaIsolaLam.medi.LamWawFinaaWaw.fina.LamWawFinaaLam.init.LamHaaInitaFaa.medi.FaaYaaFinaaYaa.fina.FaaYaaFinaaLam.init.LamLamHaaInitaLam.medi.LamLamHaaInitaHaa.medi.LamLamHaaInitaBaa.medi.BaaMemFinaaMem.fina.BaaMemFinaaSad.init.AboveHaaaLam.init.LamBaaMemInitaBaa.medi.LamBaaMemInitaMem.medi.LamBaaMemInitaBaa.init.BaaDalaDal.fina.BaaDalaBaa.init.BaaMemHaaInitaMem.medi.BaaMemHaaInitaHaa.medi.BaaMemHaaInitaBaa.init.BaaBaaYaaaBaa.medi.BaaBaaYaaaYaa.fina.BaaBaaYaaaLam.medi.LamYaaFinaaYaa.fina.LamYaaFinaaKaf.init.KafBaaInitaBaa.medi.KafBaaInitaLam.init.LamMemInitaMem.medi.LamMemInitaLam.init.LamAlfIsolaAlf.fina.LamAlfIsolaLam.init.LamHaaMemInitaHaa.medi.LamHaaMemInitaMem.medi.LamHaaMemInitaBaa.medi.BaaBaaInitaAyn.medi.AynYaaFinaaMem.init.MemRaaIsolaRaa.fina.MemRaaIsolaFaa.init.FaaHaaInitaHaa.medi.FaaHaaInitaHaa.init.HaaHaaInitaLam.medi.LamQafFinaaQaf.fina.LamQafFinaaSen.init.AboveHaaaMem.init.MemHaaInitaBaa.init.BaaNonIsolaNon.fina.BaaNonIsolaKaf.medi.KafMemFinaaMem.fina.KafMemFinaaBaa.init.BaaSenInitaSen.medi.BaaSenInitaBaa.medi.BaaRaaFinaaRaa.fina.BaaRaaFinaaKaf.medi.KafRaaFinaaRaa.fina.KafRaaFinaaLam.init.LamHehInitaHeh.medi.LamHehInitaMem.init.MemHaaMemInitaHaa.medi.MemHaaMemInitaBaa.init.BaaMemInitaMem.medi.BaaMemInitaSen.init.SenHaaInitaKaf.init.KafRaaIsolaRaa.fina.KafRaaIsolaAyn.init.AynHaaInitaKaf.medi.KafYaaFinaaYaa.fina.KafYaaFinaaLam.init.LamMemHaaInitaMem.medi.LamMemHaaInitaHaa.medi.LamMemHaaInitaLam.medi.LamAlfFinaaAlf.fina.LamAlfFinaaLam.medi.LamMemMediaMem.medi.LamMemMedilam-ar.init.Lellahlam-ar.medi.Lellahheh-ar.fina.LellahaBaa.init.BaaBaaHaaInitaBaa.medi.BaaBaaHaaInitaHaa.medi.BaaBaaHaaInitaBaa.medi.SenBaaMemInitaMem.medi.SenBaaMemInitaBaa.init.BaaBaaIsolaBaa.fina.BaaBaaIsolaBaa.init.BaaBaaMemInitaBaa.medi.BaaBaaMemInitaMem.medi.BaaBaaMemInitaKaf.medi.KafBaaMediaBaa.medi.KafBaaMediaBaa.medi.BaaNonFinaaNon.fina.BaaNonFinaaHaa.init.HaaRaaIsolaRaa.fina.HaaRaaIsolaHeh.init.HehHaaInitaLam.init.LamRaaIsolaRaa.fina.LamRaaIsolaSad.init.SadHaaInitaHaa.medi.SadHaaInitaBaa.medi.BaaYaaFinaaYaa.fina.BaaYaaFinaaBaa.init.BaaSenAltInitaSen.medi.BaaSenAltInitaRaa.fina.PostToothaYaa.fina.PostToothaBaa.init.AboveHaaaBaa.init.BaaHaaInitaBaa.init.BaaHaaMemInitaHaa.medi.BaaHaaMemInitaHaa.fina.AboveHaaIsolaLam.init.LamHaaHaaInitaHaa.medi.1LamHaaHaaInitaHaa.medi.2LamHaaHaaInitaAyn.init.FinjaniaHaa.init.FinjaniaHaa.medi.FinjaniaSen.init.PreYaaaSen.medi.PreYaaaSad.init.PreYaaaSad.medi.PreYaaaBaa.init.High dotabove-artwodotshorizontalabove-arthreedotsupabove-ar dotbelow-artwodotshorizontalbelow-arthreedotsupbelow-ar aKaf.isol.alt aKaf.medi.alt miniKeheh-ardash.kaf aKaf.fina.altthreedotsdownabove-arthreedotsdownbelow-argafsarkashabove-araBaa.medi.Highsmalltaa.abovetwodotsverticalabove-artwodotsverticalbelow-ar ring.belowaSen.fina.BaaSenaMem.fina.PostToothkashida-ar.LamKaf.1dot.alt1gafsarkashabove-ar.alt2gafsarkashabove-ar.alt1aBaa.init.WideaHaa.medi.HaaHaaInitaHaa.medi.AynHaaInitaMem.medi.LamMemInitTatweelaHeh.init.AboveHaaaHaa.init.AboveHaaaAyn.init.AboveHaaaHaa.fina.AboveHaaIsol2aMem.init.AboveHaaaKaf.init.AboveHaafourdotsabove-arfourdotsbelow-arthreedotshorizontalabove-arthreedotshorizontalbelow-ar aYaa.tailwavyhamzaabove-ar vbelow-arvinvertedbelow-ar tahbelow-artwostrokes.belowwasla-arfathatan-ar.smallfatha-ar.smallopendammatan-ar.smalldamma-ar.smallsukun-ar.small2kasra-ar.small2 damma.markhamzadamma.mark aAlf.daggerdot.1dot.2 dash.kaf_gaf dotbelow-ar.ltwodotshorizontalbelow-ar.lthreedotsupbelow-ar.lthreedotsdownbelow-ar.ltwodotsverticalbelow-ar.lfourdotsbelow-ar.lthreedotshorizontalbelow-ar.lvinvertedbelow-ar.low stroke-ar twoabove-ar threeabove-ar fourabove-ar fourbelow-arfourFarsi-ar.urdsixFarsi-ar.urdsevenFarsi-ar.urdaKaf.init.KafLamaKaf.fina.KafKafFinaaLam.medi.KafLamaLam.medi.KafLamMemMediaKaf.medi.KafLamaLam.medi.KafLamHehIsolaLam.medi.KafLamYaaaLam.medi.KafLamAlfaLam.fina.KafLamaAlf.fina.KafAlfaKaf.init.KafMemAlfaKaf.medi.KafMemAlfaMem.medi.KafMemAlfaLam.medi.KafMemLamaLam.fina.KafMemLamaAlf.fina.KafMemAlfat.araaKaf.init.KafHehaKaf.medi.KafHehaHeh.fina.KafHehaDal.fina.KafDalaLam.init.LamHehaLam.medi.LamHehaHeh.fina.LamHehaDal.fina.LamDalaKaf.medi.KafMemMediaKaf.init.KafMemInitaAyn.init.AynMemInitaFaa.init.FaaMemInitaHaa.init.HaaMemInitaHeh.init.HehMemInitaMem.medi.KafMemMediaSen.init.SenMemInitaSad.init.SadMemInitaMem.init.MemMemInitaMem.medi.SenMemInitaKaf.init.KafYaaIsolaBaa.init.BaaYaaIsolaHaa.init.HaaYaaIsolaMem.init.MemYaaIsolaFaa.init.FaaYaaIsolaAyn.init.AynYaaIsolaLam.init.LamYaaIsolaHeh.init.HehYaaIsolaYaa.fina.KafYaaIsolaKaf.init.KafMemIsolaLam.init.LamMemIsolaBaa.init.BaaMemIsolaMem.fina.KafMemIsolaMem.medi.MemAlfFinaaBaa.medi.BaaMemAlfFinaaMem.medi.BaaMemAlfFinaaMem.medi.AlfPostToothaAlf.fina.MemAlfFinaaBaa.init.BaaHehInitaBaa.medi.BaaHehMediaHeh.medi.BaaHehMediaHeh.medi.PostToothaLam.medi.KafLamMemFinaaLam.init.LamLamInitaLam.medi.LamLamInitaLam.medi.LamLamAlfIsolaKaf.fina.LamKafIsolaLam.fina.LamLamIsollam-ar.medi.FaLellahaLam.medi.LamLamMediaLam.medi.LamLamAlefFinaaLam.medi.LamLamMedi2aKaf.fina.LamKafFinaaLam.fina.LamLamFinaaLam.medi.LamLamMemInitaLam.medi.LamLamHehIsolaLam.medi.LamLamYaaIsolaLam.medi.LamLamMemMediaLam.medi.LamLamHehFinaaLam.medi.LamLamYaaFinaalefHamzabelow-ar.fina alef-ar.finaalefThreeabove-ar.finaalefTwoabove-ar.finaalefHamzaabove-ar.finaalefMadda-ar.finaalefWavyhamzaabove-ar.finaalefWavyhamzabelow-ar.finaalefWasla-ar.finaghainDotbelow-ar.fina ghain-ar.finaainThreedotsdownabove-ar.fina!ainTwodotshorizontalabove-ar.finaainTwodotsverticalabove-ar.finaainThreedots-ar.fina ain-ar.finaghainDotbelow-ar.init ghain-ar.initainThreedotsdownabove-ar.init!ainTwodotshorizontalabove-ar.initainTwodotsverticalabove-ar.initainThreedots-ar.init ain-ar.initghainDotbelow-ar.medi ghain-ar.mediainThreedotsdownabove-ar.medi!ainTwodotshorizontalabove-ar.mediainTwodotsverticalabove-ar.mediainThreedots-ar.medi ain-ar.medibehThreedotsupabove-ar.fina#behThreedotshorizontalbelow-ar.finatehThreedotsupbelow-ar.fina beheh-ar.fina teh-ar.finabehTwodotsbelowDotabove-ar.fina theh-ar.fina tteh-ar.finatehRing-ar.finabehVabove-ar.finabehThreedotsupbelow-ar.finabehDotless-ar.fina teheh-ar.finabehVinvertedbelow-ar.finatehThreedotsdown-ar.fina peh-ar.fina beeh-ar.fina beh-ar.finatteheh-ar.finayehFarsiFourbelow-ar.init beheh-ar.inityehFarsiThreeabove-ar.initnoonRing-ar.init#behThreedotshorizontalbelow-ar.initbehVabove-ar.initnoonTahabove-ar.inityehVabove-ar.inityehFarsiTwoabove-ar.initnoonThreedotsabove-ar.inityehHamzaabove-ar.initbehDotless-ar.inityehKashmiri-ar.init yeh-ar.init rnoon-ar.init teheh-ar.initbehVinvertedbelow-ar.inittehThreedotsdown-ar.init peh-ar.init beeh-ar.init beh-ar.inittteheh-ar.initbehThreedotsupabove-ar.init noon-ar.inittehThreedotsupbelow-ar.initbehThreedotsupbelow-ar.init teh-ar.inithighhamzaYeh-ar.inityehFarsiVinverted-ar.init theh-ar.init tteh-ar.initnoonDotbelow-ar.initnoonVabove-ar.initalefMaksura-ar.inittehRing-ar.initbehTwodotsbelowDotabove-ar.inityehThreedotsbelow-ar.init e-ar.initnoonghunna-ar.inityehFarsi-ar.initnoonTwodotsbelow-ar.inityehFarsiFourbelow-ar.medi beheh-ar.mediyehFarsiThreeabove-ar.medinoonRing-ar.medi#behThreedotshorizontalbelow-ar.medibehVabove-ar.medinoonTahabove-ar.mediyehVabove-ar.mediyehFarsiTwoabove-ar.medinoonThreedotsabove-ar.mediyehHamzaabove-ar.medibehDotless-ar.mediyehKashmiri-ar.medi yeh-ar.medi rnoon-ar.medi teheh-ar.medibehVinvertedbelow-ar.meditehThreedotsdown-ar.medi peh-ar.medi beeh-ar.medi beh-ar.meditteheh-ar.medibehThreedotsupabove-ar.medi noon-ar.meditehThreedotsupbelow-ar.medibehThreedotsupbelow-ar.medi teh-ar.mediyehFarsiVinverted-ar.medi theh-ar.medi tteh-ar.medinoonDotbelow-ar.medinoonVabove-ar.medialefMaksura-ar.meditehRing-ar.medibehTwodotsbelowDotabove-ar.mediyehThreedotsbelow-ar.medi e-ar.medinoonghunna-ar.mediyehFarsi-ar.medinoonTwodotsbelow-ar.medidalFourdots-ar.finadalVinvertedabove-ar.finadalRing-ar.fina ddal-ar.finadalVinvertedbelow-ar.fina thal-ar.fina dal-ar.fina"dalTwodotsverticalbelowTah-ar.fina dahal-ar.finadalDotbelowTah-ar.finadalDotbelow-ar.finadalThreedotsdown-ar.fina dul-ar.finaddahal-ar.finafehTwodotsbelow-ar.finafehThreedotsupbelow-ar.fina feh-ar.finafehDotless-ar.finafehDotmovedbelow-ar.finafehDotbelow-ar.fina veh-ar.finafehThreedotsbelow-ar.fina peheh-ar.finaqafDotless-ar.initfehThreedotsupbelow-ar.initfehTwodotsbelow-ar.init qaf-ar.init feh-ar.initqafThreedotsabove-ar.initfehDotless-ar.initfehDotmovedbelow-ar.initfehDotbelow-ar.init veh-ar.initfehThreedotsbelow-ar.init peheh-ar.initqafDotabove-ar.initqafDotless-ar.medifehThreedotsupbelow-ar.medifehTwodotsbelow-ar.medi qaf-ar.medi feh-ar.mediqafThreedotsabove-ar.medifehDotless-ar.medifehDotmovedbelow-ar.medifehDotbelow-ar.medi veh-ar.medifehThreedotsbelow-ar.medi peheh-ar.mediqafDotabove-ar.medi khah-ar.fina hah-ar.finahahHamzaabove-ar.finatcheheh-ar.finahahThreedotsabove-ar.fina jeem-ar.finahahTwodotsverticalabove-ar.fina!hahTwodotshorizontalabove-ar.fina dyeh-ar.fina$hahTahTwodotshorizontalabove-ar.finahahTahbelow-ar.fina nyeh-ar.finatchehDotabove-ar.finahahFourbelow-ar.finahahThreedotsupbelow-ar.finahahTahabove-ar.fina tcheh-ar.fina khah-ar.init hah-ar.inithahHamzaabove-ar.inittcheheh-ar.inithahThreedotsabove-ar.init jeem-ar.inithahTwodotsverticalabove-ar.init!hahTwodotshorizontalabove-ar.init dyeh-ar.init$hahTahTwodotshorizontalabove-ar.inithahTahbelow-ar.init nyeh-ar.inittchehDotabove-ar.inithahFourbelow-ar.inithahThreedotsupbelow-ar.inithahTahabove-ar.init tcheh-ar.init khah-ar.medi hah-ar.medihahHamzaabove-ar.meditcheheh-ar.medihahThreedotsabove-ar.medi jeem-ar.medihahTwodotsverticalabove-ar.medi!hahTwodotshorizontalabove-ar.medi dyeh-ar.medi$hahTahTwodotshorizontalabove-ar.medihahTahbelow-ar.medi nyeh-ar.meditchehDotabove-ar.medihahFourbelow-ar.medihahThreedotsupbelow-ar.medihahTahabove-ar.medi tcheh-ar.medi heh-ar.finahehgoal-ar.finatehMarbutagoal-ar.fina ae-ar.finatehMarbuta-ar.fina heh-ar.inithehgoal-ar.init heh-ar.medihehgoal-ar.medi#kehehTwodotshorizontalabove-ar.finakehehThreedotsbelow-ar.fina!kafTwodotshorizontalabove-ar.finakehehThreedotsupbelow-ar.fina kaf-ar.finagafRing-ar.fina gueh-ar.finagafTwodotsbelow-ar.finakafRing-ar.finakafDotabove-ar.fina ng-ar.finakafThreedotsbelow-ar.fina gaf-ar.fina keheh-ar.finagafThreedots-ar.finakehehThreedotsabove-ar.finakehehDotabove-ar.fina ngoeh-ar.fina#kehehTwodotshorizontalabove-ar.initkehehThreedotsbelow-ar.init!kafTwodotshorizontalabove-ar.initkehehThreedotsupbelow-ar.init kaf-ar.initgafRing-ar.init gueh-ar.initgafTwodotsbelow-ar.initkafRing-ar.initkafDotabove-ar.init ng-ar.initkafThreedotsbelow-ar.init gaf-ar.init keheh-ar.initgafThreedots-ar.initkehehThreedotsabove-ar.initkehehDotabove-ar.init ngoeh-ar.init#kehehTwodotshorizontalabove-ar.medikehehThreedotsbelow-ar.medi!kafTwodotshorizontalabove-ar.medikehehThreedotsupbelow-ar.medi kaf-ar.medigafRing-ar.medi gueh-ar.medigafTwodotsbelow-ar.medikafRing-ar.medikafDotabove-ar.medi ng-ar.medikafThreedotsbelow-ar.medi gaf-ar.medi keheh-ar.medigafThreedots-ar.medikehehThreedotsabove-ar.medikehehDotabove-ar.medi ngoeh-ar.medilamVabove-ar.finalamThreedotsabove-ar.fina lam-ar.finalamThreedotsbelow-ar.finalamDotabove-ar.finalamBar-ar.finalamVabove-ar.initlamThreedotsabove-ar.init lam-ar.initlamThreedotsbelow-ar.initlamDotabove-ar.initlamBar-ar.initlamVabove-ar.medilamThreedotsabove-ar.medi lam-ar.medilamThreedotsbelow-ar.medilamDotabove-ar.medilamBar-ar.medimeemDotabove-ar.fina meem-ar.finameemDotbelow-ar.finameemDotabove-ar.init meem-ar.initmeemDotbelow-ar.initmeemDotabove-ar.medi meem-ar.medimeemDotbelow-ar.medi noon-ar.finanoonTwodotsbelow-ar.finanoonghunna-ar.finanoonRing-ar.fina rnoon-ar.finanoonTahabove-ar.finanoonDotbelow-ar.finanoonVabove-ar.finanoonThreedotsabove-ar.finaqafThreedotsabove-ar.finaqafDotabove-ar.fina qaf-ar.finaqafDotless-ar.fina rreh-ar.fina rehv-ar.finarehRing-ar.finarehDotbelow-ar.finarehVbelow-ar.finarehDotbelowdotabove-ar.finarehTwodots-ar.fina jeh-ar.finarehFourdots-ar.finarehStroke-ar.finarehVinvertedabove-ar.fina zain-ar.fina)rehTwodotshorizontalaboveTahabove-ar.fina reh-ar.finarehTwodotsverticalabove-ar.finarehHamzaabove-ar.finasadTwodotsbelow-ar.finadadDotbelow-ar.fina dad-ar.finasadThreedots-ar.fina sad-ar.finasadTwodotsbelow-ar.initdadDotbelow-ar.init dad-ar.initsadThreedots-ar.init sad-ar.initsadTwodotsbelow-ar.medidadDotbelow-ar.medi dad-ar.medisadThreedots-ar.medi sad-ar.medisheenDotbelow-ar.fina seenTwodotsverticalabove-ar.fina seen-ar.finaseenVinvertedabove-ar.finaseenFourabove-ar.fina sheen-ar.fina%seenTahTwodotshorizontalabove-ar.finaseenFourdotsabove-ar.finaseenDotbelowDotabove-ar.finaseenThreedotsbelow-ar.finasheenThreedotsbelow-ar.finasheenDotbelow-ar.init seenTwodotsverticalabove-ar.init seen-ar.initseenVinvertedabove-ar.initseenFourabove-ar.init sheen-ar.init%seenTahTwodotshorizontalabove-ar.initseenFourdotsabove-ar.initseenDotbelowDotabove-ar.initseenThreedotsbelow-ar.initsheenThreedotsbelow-ar.initsheenDotbelow-ar.medi seenTwodotsverticalabove-ar.medi seen-ar.mediseenVinvertedabove-ar.mediseenFourabove-ar.medi sheen-ar.medi%seenTahTwodotshorizontalabove-ar.mediseenFourdotsabove-ar.mediseenDotbelowDotabove-ar.mediseenThreedotsbelow-ar.medisheenThreedotsbelow-ar.medi zah-ar.fina tah-ar.finatahThreedots-ar.fina zah-ar.init tah-ar.inittahThreedots-ar.init zah-ar.medi tah-ar.meditahThreedots-ar.medi ve-ar.finawawHamzaabove-ar.finawawTwodots-ar.finawawDotabove-ar.finawawTwoabove-ar.fina oe-ar.fina u-ar.finawawring-ar.finakirghizoe-ar.fina yu-ar.finakirghizyu-ar.finawawThreeAbove-ar.fina waw-ar.finayehFarsiFourbelow-ar.finayehThreedotsbelow-ar.finayehFarsiTwoabove-ar.finayehFarsiThreedotsabove-ar.finayehFarsiVinverted-ar.finayehFarsiTwodotsabove-ar.fina e-ar.finaalefMaksura-ar.finayehFarsiThreeabove-ar.finayehTail-ar.finayehFarsi-ar.finayehHamzaabove-ar.finayehKashmiri-ar.fina yeh-ar.finayehVabove-ar.finalamVabove-ar.medi.LamMemFina$lamThreedotsabove-ar.medi.LamMemFinalam-ar.medi.LamMemFina$lamThreedotsbelow-ar.medi.LamMemFinalamDotabove-ar.medi.LamMemFinalamBar-ar.medi.LamMemFinameem-ar.fina.LamMemFina$yehFarsiFourbelow-ar.init.BaaRaaIsolbeheh-ar.init.BaaRaaIsol%yehFarsiThreeabove-ar.init.BaaRaaIsolnoonRing-ar.init.BaaRaaIsol.behThreedotshorizontalbelow-ar.init.BaaRaaIsolbehVabove-ar.init.BaaRaaIsolnoonTahabove-ar.init.BaaRaaIsolyehVabove-ar.init.BaaRaaIsol#yehFarsiTwoabove-ar.init.BaaRaaIsol%noonThreedotsabove-ar.init.BaaRaaIsol yehHamzaabove-ar.init.BaaRaaIsolbehDotless-ar.init.BaaRaaIsolyehKashmiri-ar.init.BaaRaaIsolyeh-ar.init.BaaRaaIsolrnoon-ar.init.BaaRaaIsolteheh-ar.init.BaaRaaIsol$behVinvertedbelow-ar.init.BaaRaaIsol#tehThreedotsdown-ar.init.BaaRaaIsolpeh-ar.init.BaaRaaIsolbeeh-ar.init.BaaRaaIsolbeh-ar.init.BaaRaaIsoltteheh-ar.init.BaaRaaIsol&behThreedotsupabove-ar.init.BaaRaaIsolnoon-ar.init.BaaRaaIsol&tehThreedotsupbelow-ar.init.BaaRaaIsol&behThreedotsupbelow-ar.init.BaaRaaIsolteh-ar.init.BaaRaaIsolhighhamzaYeh-ar.init.BaaRaaIsol$yehFarsiVinverted-ar.init.BaaRaaIsoltheh-ar.init.BaaRaaIsoltteh-ar.init.BaaRaaIsolnoonDotbelow-ar.init.BaaRaaIsolnoonVabove-ar.init.BaaRaaIsolalefMaksura-ar.init.BaaRaaIsoltehRing-ar.init.BaaRaaIsol*behTwodotsbelowDotabove-ar.init.BaaRaaIsol$yehThreedotsbelow-ar.init.BaaRaaIsole-ar.init.BaaRaaIsolnoonghunna-ar.init.BaaRaaIsolyehFarsi-ar.init.BaaRaaIsol#noonTwodotsbelow-ar.init.BaaRaaIsolrreh-ar.fina.BaaRaaIsolrehv-ar.fina.BaaRaaIsolrehRing-ar.fina.BaaRaaIsolrehDotbelow-ar.fina.BaaRaaIsolrehVbelow-ar.fina.BaaRaaIsol&rehDotbelowdotabove-ar.fina.BaaRaaIsolrehTwodots-ar.fina.BaaRaaIsoljeh-ar.fina.BaaRaaIsolrehFourdots-ar.fina.BaaRaaIsolrehStroke-ar.fina.BaaRaaIsol$rehVinvertedabove-ar.fina.BaaRaaIsolzain-ar.fina.BaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsolreh-ar.fina.BaaRaaIsol*rehTwodotsverticalabove-ar.fina.BaaRaaIsol rehHamzaabove-ar.fina.BaaRaaIsollamVabove-ar.medi.LamWawFina$lamThreedotsabove-ar.medi.LamWawFinalam-ar.medi.LamWawFina$lamThreedotsbelow-ar.medi.LamWawFinalamDotabove-ar.medi.LamWawFinalamBar-ar.medi.LamWawFinave-ar.fina.LamWawFina wawHamzaabove-ar.fina.LamWawFinawawTwodots-ar.fina.LamWawFinawawDotabove-ar.fina.LamWawFinawawTwoabove-ar.fina.LamWawFinaoe-ar.fina.LamWawFinau-ar.fina.LamWawFinawawring-ar.fina.LamWawFinakirghizoe-ar.fina.LamWawFinayu-ar.fina.LamWawFinakirghizyu-ar.fina.LamWawFina wawThreeAbove-ar.fina.LamWawFinawaw-ar.fina.LamWawFinalamVabove-ar.init.LamHaaInit$lamThreedotsabove-ar.init.LamHaaInitlam-ar.init.LamHaaInit$lamThreedotsbelow-ar.init.LamHaaInitlamDotabove-ar.init.LamHaaInitlamBar-ar.init.LamHaaInitqafDotless-ar.medi.FaaYaaFina&fehThreedotsupbelow-ar.medi.FaaYaaFina"fehTwodotsbelow-ar.medi.FaaYaaFinaqaf-ar.medi.FaaYaaFinafeh-ar.medi.FaaYaaFina$qafThreedotsabove-ar.medi.FaaYaaFinafehDotless-ar.medi.FaaYaaFina#fehDotmovedbelow-ar.medi.FaaYaaFinafehDotbelow-ar.medi.FaaYaaFinaveh-ar.medi.FaaYaaFina$fehThreedotsbelow-ar.medi.FaaYaaFinapeheh-ar.medi.FaaYaaFinaqafDotabove-ar.medi.FaaYaaFina$yehFarsiFourbelow-ar.fina.FaaYaaFina$yehThreedotsbelow-ar.fina.FaaYaaFina#yehFarsiTwoabove-ar.fina.FaaYaaFina)yehFarsiThreedotsabove-ar.fina.FaaYaaFina$yehFarsiVinverted-ar.fina.FaaYaaFina'yehFarsiTwodotsabove-ar.fina.FaaYaaFinae-ar.fina.FaaYaaFinaalefMaksura-ar.fina.FaaYaaFina%yehFarsiThreeabove-ar.fina.FaaYaaFinayehTail-ar.fina.FaaYaaFinayehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFinayehKashmiri-ar.fina.FaaYaaFinayeh-ar.fina.FaaYaaFinayehVabove-ar.fina.FaaYaaFinalamVabove-ar.init.LamLamHaaInit'lamThreedotsabove-ar.init.LamLamHaaInitlam-ar.init.LamLamHaaInit'lamThreedotsbelow-ar.init.LamLamHaaInit!lamDotabove-ar.init.LamLamHaaInitlamBar-ar.init.LamLamHaaInitlamVabove-ar.medi.LamLamHaaInit'lamThreedotsabove-ar.medi.LamLamHaaInitlam-ar.medi.LamLamHaaInit'lamThreedotsbelow-ar.medi.LamLamHaaInit!lamDotabove-ar.medi.LamLamHaaInitlamBar-ar.medi.LamLamHaaInitkhah-ar.medi.LamLamHaaInithah-ar.medi.LamLamHaaInit#hahHamzaabove-ar.medi.LamLamHaaInittcheheh-ar.medi.LamLamHaaInit'hahThreedotsabove-ar.medi.LamLamHaaInitjeem-ar.medi.LamLamHaaInit-hahTwodotsverticalabove-ar.medi.LamLamHaaInit/hahTwodotshorizontalabove-ar.medi.LamLamHaaInitdyeh-ar.medi.LamLamHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit!hahTahbelow-ar.medi.LamLamHaaInitnyeh-ar.medi.LamLamHaaInit#tchehDotabove-ar.medi.LamLamHaaInit"hahFourbelow-ar.medi.LamLamHaaInit)hahThreedotsupbelow-ar.medi.LamLamHaaInit!hahTahabove-ar.medi.LamLamHaaInittcheh-ar.medi.LamLamHaaInit$yehFarsiFourbelow-ar.medi.BaaMemFinabeheh-ar.medi.BaaMemFina%yehFarsiThreeabove-ar.medi.BaaMemFinanoonRing-ar.medi.BaaMemFina.behThreedotshorizontalbelow-ar.medi.BaaMemFinabehVabove-ar.medi.BaaMemFinanoonTahabove-ar.medi.BaaMemFinayehVabove-ar.medi.BaaMemFina#yehFarsiTwoabove-ar.medi.BaaMemFina%noonThreedotsabove-ar.medi.BaaMemFina yehHamzaabove-ar.medi.BaaMemFinabehDotless-ar.medi.BaaMemFinayehKashmiri-ar.medi.BaaMemFinayeh-ar.medi.BaaMemFinarnoon-ar.medi.BaaMemFinateheh-ar.medi.BaaMemFina$behVinvertedbelow-ar.medi.BaaMemFina#tehThreedotsdown-ar.medi.BaaMemFinapeh-ar.medi.BaaMemFinabeeh-ar.medi.BaaMemFinabeh-ar.medi.BaaMemFinatteheh-ar.medi.BaaMemFina&behThreedotsupabove-ar.medi.BaaMemFinanoon-ar.medi.BaaMemFina&tehThreedotsupbelow-ar.medi.BaaMemFina&behThreedotsupbelow-ar.medi.BaaMemFinateh-ar.medi.BaaMemFina$yehFarsiVinverted-ar.medi.BaaMemFinatheh-ar.medi.BaaMemFinatteh-ar.medi.BaaMemFinanoonDotbelow-ar.medi.BaaMemFinanoonVabove-ar.medi.BaaMemFinaalefMaksura-ar.medi.BaaMemFinatehRing-ar.medi.BaaMemFina*behTwodotsbelowDotabove-ar.medi.BaaMemFina$yehThreedotsbelow-ar.medi.BaaMemFinae-ar.medi.BaaMemFinanoonghunna-ar.medi.BaaMemFinayehFarsi-ar.medi.BaaMemFina#noonTwodotsbelow-ar.medi.BaaMemFinameem-ar.fina.BaaMemFina sadTwodotsbelow-ar.init.AboveHaadadDotbelow-ar.init.AboveHaadad-ar.init.AboveHaasadThreedots-ar.init.AboveHaasad-ar.init.AboveHaalamVabove-ar.init.LamBaaMemInit'lamThreedotsabove-ar.init.LamBaaMemInitlam-ar.init.LamBaaMemInit'lamThreedotsbelow-ar.init.LamBaaMemInit!lamDotabove-ar.init.LamBaaMemInitlamBar-ar.init.LamBaaMemInit'yehFarsiFourbelow-ar.medi.LamBaaMemInitbeheh-ar.medi.LamBaaMemInit(yehFarsiThreeabove-ar.medi.LamBaaMemInitnoonRing-ar.medi.LamBaaMemInit1behThreedotshorizontalbelow-ar.medi.LamBaaMemInitbehVabove-ar.medi.LamBaaMemInit"noonTahabove-ar.medi.LamBaaMemInityehVabove-ar.medi.LamBaaMemInit&yehFarsiTwoabove-ar.medi.LamBaaMemInit(noonThreedotsabove-ar.medi.LamBaaMemInit#yehHamzaabove-ar.medi.LamBaaMemInit behDotless-ar.medi.LamBaaMemInit!yehKashmiri-ar.medi.LamBaaMemInityeh-ar.medi.LamBaaMemInitrnoon-ar.medi.LamBaaMemInitteheh-ar.medi.LamBaaMemInit'behVinvertedbelow-ar.medi.LamBaaMemInit&tehThreedotsdown-ar.medi.LamBaaMemInitpeh-ar.medi.LamBaaMemInitbeeh-ar.medi.LamBaaMemInitbeh-ar.medi.LamBaaMemInittteheh-ar.medi.LamBaaMemInit)behThreedotsupabove-ar.medi.LamBaaMemInitnoon-ar.medi.LamBaaMemInit)tehThreedotsupbelow-ar.medi.LamBaaMemInit)behThreedotsupbelow-ar.medi.LamBaaMemInitteh-ar.medi.LamBaaMemInit'yehFarsiVinverted-ar.medi.LamBaaMemInittheh-ar.medi.LamBaaMemInittteh-ar.medi.LamBaaMemInit"noonDotbelow-ar.medi.LamBaaMemInit noonVabove-ar.medi.LamBaaMemInit!alefMaksura-ar.medi.LamBaaMemInittehRing-ar.medi.LamBaaMemInit-behTwodotsbelowDotabove-ar.medi.LamBaaMemInit'yehThreedotsbelow-ar.medi.LamBaaMemInite-ar.medi.LamBaaMemInit noonghunna-ar.medi.LamBaaMemInityehFarsi-ar.medi.LamBaaMemInit&noonTwodotsbelow-ar.medi.LamBaaMemInitmeem-ar.medi.LamBaaMemInit yehFarsiFourbelow-ar.init.BaaDalbeheh-ar.init.BaaDal!yehFarsiThreeabove-ar.init.BaaDalnoonRing-ar.init.BaaDal*behThreedotshorizontalbelow-ar.init.BaaDalbehVabove-ar.init.BaaDalnoonTahabove-ar.init.BaaDalyehVabove-ar.init.BaaDalyehFarsiTwoabove-ar.init.BaaDal!noonThreedotsabove-ar.init.BaaDalyehHamzaabove-ar.init.BaaDalbehDotless-ar.init.BaaDalyehKashmiri-ar.init.BaaDalyeh-ar.init.BaaDalrnoon-ar.init.BaaDalteheh-ar.init.BaaDal behVinvertedbelow-ar.init.BaaDaltehThreedotsdown-ar.init.BaaDalpeh-ar.init.BaaDalbeeh-ar.init.BaaDalbeh-ar.init.BaaDaltteheh-ar.init.BaaDal"behThreedotsupabove-ar.init.BaaDalnoon-ar.init.BaaDal"tehThreedotsupbelow-ar.init.BaaDal"behThreedotsupbelow-ar.init.BaaDalteh-ar.init.BaaDalhighhamzaYeh-ar.init.BaaDal yehFarsiVinverted-ar.init.BaaDaltheh-ar.init.BaaDaltteh-ar.init.BaaDalnoonDotbelow-ar.init.BaaDalnoonVabove-ar.init.BaaDalalefMaksura-ar.init.BaaDaltehRing-ar.init.BaaDal&behTwodotsbelowDotabove-ar.init.BaaDal yehThreedotsbelow-ar.init.BaaDale-ar.init.BaaDalnoonghunna-ar.init.BaaDalyehFarsi-ar.init.BaaDalnoonTwodotsbelow-ar.init.BaaDaldalFourdots-ar.fina.BaaDal dalVinvertedabove-ar.fina.BaaDaldalRing-ar.fina.BaaDalddal-ar.fina.BaaDal dalVinvertedbelow-ar.fina.BaaDalthal-ar.fina.BaaDaldal-ar.fina.BaaDal)dalTwodotsverticalbelowTah-ar.fina.BaaDaldahal-ar.fina.BaaDaldalDotbelowTah-ar.fina.BaaDaldalDotbelow-ar.fina.BaaDaldalThreedotsdown-ar.fina.BaaDaldul-ar.fina.BaaDalddahal-ar.fina.BaaDal'yehFarsiFourbelow-ar.init.BaaMemHaaInitbeheh-ar.init.BaaMemHaaInit(yehFarsiThreeabove-ar.init.BaaMemHaaInitnoonRing-ar.init.BaaMemHaaInit1behThreedotshorizontalbelow-ar.init.BaaMemHaaInitbehVabove-ar.init.BaaMemHaaInit"noonTahabove-ar.init.BaaMemHaaInityehVabove-ar.init.BaaMemHaaInit&yehFarsiTwoabove-ar.init.BaaMemHaaInit(noonThreedotsabove-ar.init.BaaMemHaaInit#yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInit!yehKashmiri-ar.init.BaaMemHaaInityeh-ar.init.BaaMemHaaInitrnoon-ar.init.BaaMemHaaInitteheh-ar.init.BaaMemHaaInit'behVinvertedbelow-ar.init.BaaMemHaaInit&tehThreedotsdown-ar.init.BaaMemHaaInitpeh-ar.init.BaaMemHaaInitbeeh-ar.init.BaaMemHaaInitbeh-ar.init.BaaMemHaaInittteheh-ar.init.BaaMemHaaInit)behThreedotsupabove-ar.init.BaaMemHaaInitnoon-ar.init.BaaMemHaaInit)tehThreedotsupbelow-ar.init.BaaMemHaaInit)behThreedotsupbelow-ar.init.BaaMemHaaInitteh-ar.init.BaaMemHaaInit"highhamzaYeh-ar.init.BaaMemHaaInit'yehFarsiVinverted-ar.init.BaaMemHaaInittheh-ar.init.BaaMemHaaInittteh-ar.init.BaaMemHaaInit"noonDotbelow-ar.init.BaaMemHaaInit noonVabove-ar.init.BaaMemHaaInit!alefMaksura-ar.init.BaaMemHaaInittehRing-ar.init.BaaMemHaaInit-behTwodotsbelowDotabove-ar.init.BaaMemHaaInit'yehThreedotsbelow-ar.init.BaaMemHaaInite-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInityehFarsi-ar.init.BaaMemHaaInit&noonTwodotsbelow-ar.init.BaaMemHaaInitmeem-ar.medi.BaaMemHaaInitkhah-ar.medi.BaaMemHaaInithah-ar.medi.BaaMemHaaInit#hahHamzaabove-ar.medi.BaaMemHaaInittcheheh-ar.medi.BaaMemHaaInit'hahThreedotsabove-ar.medi.BaaMemHaaInitjeem-ar.medi.BaaMemHaaInit-hahTwodotsverticalabove-ar.medi.BaaMemHaaInit/hahTwodotshorizontalabove-ar.medi.BaaMemHaaInitdyeh-ar.medi.BaaMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit!hahTahbelow-ar.medi.BaaMemHaaInitnyeh-ar.medi.BaaMemHaaInit#tchehDotabove-ar.medi.BaaMemHaaInit"hahFourbelow-ar.medi.BaaMemHaaInit)hahThreedotsupbelow-ar.medi.BaaMemHaaInit!hahTahabove-ar.medi.BaaMemHaaInittcheh-ar.medi.BaaMemHaaInit#yehFarsiFourbelow-ar.init.BaaBaaYaabeheh-ar.init.BaaBaaYaa$yehFarsiThreeabove-ar.init.BaaBaaYaanoonRing-ar.init.BaaBaaYaa-behThreedotshorizontalbelow-ar.init.BaaBaaYaabehVabove-ar.init.BaaBaaYaanoonTahabove-ar.init.BaaBaaYaayehVabove-ar.init.BaaBaaYaa"yehFarsiTwoabove-ar.init.BaaBaaYaa$noonThreedotsabove-ar.init.BaaBaaYaayehHamzaabove-ar.init.BaaBaaYaabehDotless-ar.init.BaaBaaYaayehKashmiri-ar.init.BaaBaaYaayeh-ar.init.BaaBaaYaarnoon-ar.init.BaaBaaYaateheh-ar.init.BaaBaaYaa#behVinvertedbelow-ar.init.BaaBaaYaa"tehThreedotsdown-ar.init.BaaBaaYaapeh-ar.init.BaaBaaYaabeeh-ar.init.BaaBaaYaabeh-ar.init.BaaBaaYaatteheh-ar.init.BaaBaaYaa%behThreedotsupabove-ar.init.BaaBaaYaanoon-ar.init.BaaBaaYaa%tehThreedotsupbelow-ar.init.BaaBaaYaa%behThreedotsupbelow-ar.init.BaaBaaYaateh-ar.init.BaaBaaYaahighhamzaYeh-ar.init.BaaBaaYaa#yehFarsiVinverted-ar.init.BaaBaaYaatheh-ar.init.BaaBaaYaatteh-ar.init.BaaBaaYaanoonDotbelow-ar.init.BaaBaaYaanoonVabove-ar.init.BaaBaaYaaalefMaksura-ar.init.BaaBaaYaatehRing-ar.init.BaaBaaYaa)behTwodotsbelowDotabove-ar.init.BaaBaaYaa#yehThreedotsbelow-ar.init.BaaBaaYaae-ar.init.BaaBaaYaanoonghunna-ar.init.BaaBaaYaayehFarsi-ar.init.BaaBaaYaa"noonTwodotsbelow-ar.init.BaaBaaYaa#yehFarsiFourbelow-ar.medi.BaaBaaYaabeheh-ar.medi.BaaBaaYaa$yehFarsiThreeabove-ar.medi.BaaBaaYaanoonRing-ar.medi.BaaBaaYaa-behThreedotshorizontalbelow-ar.medi.BaaBaaYaabehVabove-ar.medi.BaaBaaYaanoonTahabove-ar.medi.BaaBaaYaayehVabove-ar.medi.BaaBaaYaa"yehFarsiTwoabove-ar.medi.BaaBaaYaa$noonThreedotsabove-ar.medi.BaaBaaYaayehHamzaabove-ar.medi.BaaBaaYaabehDotless-ar.medi.BaaBaaYaayehKashmiri-ar.medi.BaaBaaYaayeh-ar.medi.BaaBaaYaarnoon-ar.medi.BaaBaaYaateheh-ar.medi.BaaBaaYaa#behVinvertedbelow-ar.medi.BaaBaaYaa"tehThreedotsdown-ar.medi.BaaBaaYaapeh-ar.medi.BaaBaaYaabeeh-ar.medi.BaaBaaYaabeh-ar.medi.BaaBaaYaatteheh-ar.medi.BaaBaaYaa%behThreedotsupabove-ar.medi.BaaBaaYaanoon-ar.medi.BaaBaaYaa%tehThreedotsupbelow-ar.medi.BaaBaaYaa%behThreedotsupbelow-ar.medi.BaaBaaYaateh-ar.medi.BaaBaaYaa#yehFarsiVinverted-ar.medi.BaaBaaYaatheh-ar.medi.BaaBaaYaatteh-ar.medi.BaaBaaYaanoonDotbelow-ar.medi.BaaBaaYaanoonVabove-ar.medi.BaaBaaYaaalefMaksura-ar.medi.BaaBaaYaatehRing-ar.medi.BaaBaaYaa)behTwodotsbelowDotabove-ar.medi.BaaBaaYaa#yehThreedotsbelow-ar.medi.BaaBaaYaae-ar.medi.BaaBaaYaanoonghunna-ar.medi.BaaBaaYaayehFarsi-ar.medi.BaaBaaYaa"noonTwodotsbelow-ar.medi.BaaBaaYaa#yehFarsiFourbelow-ar.fina.BaaBaaYaa#yehThreedotsbelow-ar.fina.BaaBaaYaa"yehFarsiTwoabove-ar.fina.BaaBaaYaa(yehFarsiThreedotsabove-ar.fina.BaaBaaYaa#yehFarsiVinverted-ar.fina.BaaBaaYaa&yehFarsiTwodotsabove-ar.fina.BaaBaaYaae-ar.fina.BaaBaaYaaalefMaksura-ar.fina.BaaBaaYaa$yehFarsiThreeabove-ar.fina.BaaBaaYaayehTail-ar.fina.BaaBaaYaayehFarsi-ar.fina.BaaBaaYaayehHamzaabove-ar.fina.BaaBaaYaayehKashmiri-ar.fina.BaaBaaYaayeh-ar.fina.BaaBaaYaayehVabove-ar.fina.BaaBaaYaalamVabove-ar.medi.LamYaaFina$lamThreedotsabove-ar.medi.LamYaaFinalam-ar.medi.LamYaaFina$lamThreedotsbelow-ar.medi.LamYaaFinalamDotabove-ar.medi.LamYaaFinalamBar-ar.medi.LamYaaFina$yehFarsiFourbelow-ar.fina.LamYaaFina$yehThreedotsbelow-ar.fina.LamYaaFina#yehFarsiTwoabove-ar.fina.LamYaaFina)yehFarsiThreedotsabove-ar.fina.LamYaaFina$yehFarsiVinverted-ar.fina.LamYaaFina'yehFarsiTwodotsabove-ar.fina.LamYaaFinae-ar.fina.LamYaaFinaalefMaksura-ar.fina.LamYaaFina%yehFarsiThreeabove-ar.fina.LamYaaFinayehTail-ar.fina.LamYaaFinayehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFinayehKashmiri-ar.fina.LamYaaFinayeh-ar.fina.LamYaaFinayehVabove-ar.fina.LamYaaFina.kehehTwodotshorizontalabove-ar.init.KafBaaInit&kehehThreedotsbelow-ar.init.KafBaaInit,kafTwodotshorizontalabove-ar.init.KafBaaInit(kehehThreedotsupbelow-ar.init.KafBaaInitkaf-ar.init.KafBaaInitgafRing-ar.init.KafBaaInitgueh-ar.init.KafBaaInit"gafTwodotsbelow-ar.init.KafBaaInitkafRing-ar.init.KafBaaInitkafDotabove-ar.init.KafBaaInitng-ar.init.KafBaaInit$kafThreedotsbelow-ar.init.KafBaaInitgaf-ar.init.KafBaaInitkeheh-ar.init.KafBaaInitgafThreedots-ar.init.KafBaaInit&kehehThreedotsabove-ar.init.KafBaaInit kehehDotabove-ar.init.KafBaaInitngoeh-ar.init.KafBaaInit$yehFarsiFourbelow-ar.medi.KafBaaInitbeheh-ar.medi.KafBaaInit%yehFarsiThreeabove-ar.medi.KafBaaInitnoonRing-ar.medi.KafBaaInit.behThreedotshorizontalbelow-ar.medi.KafBaaInitbehVabove-ar.medi.KafBaaInitnoonTahabove-ar.medi.KafBaaInityehVabove-ar.medi.KafBaaInit#yehFarsiTwoabove-ar.medi.KafBaaInit%noonThreedotsabove-ar.medi.KafBaaInit yehHamzaabove-ar.medi.KafBaaInitbehDotless-ar.medi.KafBaaInityehKashmiri-ar.medi.KafBaaInityeh-ar.medi.KafBaaInitrnoon-ar.medi.KafBaaInitteheh-ar.medi.KafBaaInit$behVinvertedbelow-ar.medi.KafBaaInit#tehThreedotsdown-ar.medi.KafBaaInitpeh-ar.medi.KafBaaInitbeeh-ar.medi.KafBaaInitbeh-ar.medi.KafBaaInittteheh-ar.medi.KafBaaInit&behThreedotsupabove-ar.medi.KafBaaInitnoon-ar.medi.KafBaaInit&tehThreedotsupbelow-ar.medi.KafBaaInit&behThreedotsupbelow-ar.medi.KafBaaInitteh-ar.medi.KafBaaInit$yehFarsiVinverted-ar.medi.KafBaaInittheh-ar.medi.KafBaaInittteh-ar.medi.KafBaaInitnoonDotbelow-ar.medi.KafBaaInitnoonVabove-ar.medi.KafBaaInitalefMaksura-ar.medi.KafBaaInittehRing-ar.medi.KafBaaInit*behTwodotsbelowDotabove-ar.medi.KafBaaInit$yehThreedotsbelow-ar.medi.KafBaaInite-ar.medi.KafBaaInitnoonghunna-ar.medi.KafBaaInityehFarsi-ar.medi.KafBaaInit#noonTwodotsbelow-ar.medi.KafBaaInitlamVabove-ar.init.LamMemInit$lamThreedotsabove-ar.init.LamMemInitlam-ar.init.LamMemInit$lamThreedotsbelow-ar.init.LamMemInitlamDotabove-ar.init.LamMemInitlamBar-ar.init.LamMemInitmeem-ar.medi.LamMemInitlamVabove-ar.init.LamAlfIsol$lamThreedotsabove-ar.init.LamAlfIsollam-ar.init.LamAlfIsol$lamThreedotsbelow-ar.init.LamAlfIsollamDotabove-ar.init.LamAlfIsollamBar-ar.init.LamAlfIsol!alefHamzabelow-ar.fina.LamAlfIsolalef-ar.fina.LamAlfIsol!alefThreeabove-ar.fina.LamAlfIsolalefTwoabove-ar.fina.LamAlfIsol!alefHamzaabove-ar.fina.LamAlfIsolalefMadda-ar.fina.LamAlfIsol%alefWavyhamzaabove-ar.fina.LamAlfIsol%alefWavyhamzabelow-ar.fina.LamAlfIsolalefWasla-ar.fina.LamAlfIsollamVabove-ar.init.LamHaaMemInit'lamThreedotsabove-ar.init.LamHaaMemInitlam-ar.init.LamHaaMemInit'lamThreedotsbelow-ar.init.LamHaaMemInit!lamDotabove-ar.init.LamHaaMemInitlamBar-ar.init.LamHaaMemInitkhah-ar.medi.LamHaaMemInithah-ar.medi.LamHaaMemInit#hahHamzaabove-ar.medi.LamHaaMemInittcheheh-ar.medi.LamHaaMemInit'hahThreedotsabove-ar.medi.LamHaaMemInitjeem-ar.medi.LamHaaMemInit-hahTwodotsverticalabove-ar.medi.LamHaaMemInit/hahTwodotshorizontalabove-ar.medi.LamHaaMemInitdyeh-ar.medi.LamHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit!hahTahbelow-ar.medi.LamHaaMemInitnyeh-ar.medi.LamHaaMemInit#tchehDotabove-ar.medi.LamHaaMemInit"hahFourbelow-ar.medi.LamHaaMemInit)hahThreedotsupbelow-ar.medi.LamHaaMemInit!hahTahabove-ar.medi.LamHaaMemInittcheh-ar.medi.LamHaaMemInitmeem-ar.medi.LamHaaMemInit$yehFarsiFourbelow-ar.medi.BaaBaaInitbeheh-ar.medi.BaaBaaInit%yehFarsiThreeabove-ar.medi.BaaBaaInitnoonRing-ar.medi.BaaBaaInit.behThreedotshorizontalbelow-ar.medi.BaaBaaInitbehVabove-ar.medi.BaaBaaInitnoonTahabove-ar.medi.BaaBaaInityehVabove-ar.medi.BaaBaaInit#yehFarsiTwoabove-ar.medi.BaaBaaInit%noonThreedotsabove-ar.medi.BaaBaaInit yehHamzaabove-ar.medi.BaaBaaInitbehDotless-ar.medi.BaaBaaInityehKashmiri-ar.medi.BaaBaaInityeh-ar.medi.BaaBaaInitrnoon-ar.medi.BaaBaaInitteheh-ar.medi.BaaBaaInit$behVinvertedbelow-ar.medi.BaaBaaInit#tehThreedotsdown-ar.medi.BaaBaaInitpeh-ar.medi.BaaBaaInitbeeh-ar.medi.BaaBaaInitbeh-ar.medi.BaaBaaInittteheh-ar.medi.BaaBaaInit&behThreedotsupabove-ar.medi.BaaBaaInitnoon-ar.medi.BaaBaaInit&tehThreedotsupbelow-ar.medi.BaaBaaInit&behThreedotsupbelow-ar.medi.BaaBaaInitteh-ar.medi.BaaBaaInit$yehFarsiVinverted-ar.medi.BaaBaaInittheh-ar.medi.BaaBaaInittteh-ar.medi.BaaBaaInitnoonDotbelow-ar.medi.BaaBaaInitnoonVabove-ar.medi.BaaBaaInitalefMaksura-ar.medi.BaaBaaInittehRing-ar.medi.BaaBaaInit*behTwodotsbelowDotabove-ar.medi.BaaBaaInit$yehThreedotsbelow-ar.medi.BaaBaaInite-ar.medi.BaaBaaInitnoonghunna-ar.medi.BaaBaaInityehFarsi-ar.medi.BaaBaaInit#noonTwodotsbelow-ar.medi.BaaBaaInit ghainDotbelow-ar.medi.AynYaaFinaghain-ar.medi.AynYaaFina(ainThreedotsdownabove-ar.medi.AynYaaFina,ainTwodotshorizontalabove-ar.medi.AynYaaFina*ainTwodotsverticalabove-ar.medi.AynYaaFinaainThreedots-ar.medi.AynYaaFinaain-ar.medi.AynYaaFinameemDotabove-ar.init.MemRaaIsolmeem-ar.init.MemRaaIsolmeemDotbelow-ar.init.MemRaaIsolrreh-ar.fina.MemRaaIsolrehv-ar.fina.MemRaaIsolrehRing-ar.fina.MemRaaIsolrehDotbelow-ar.fina.MemRaaIsolrehVbelow-ar.fina.MemRaaIsol&rehDotbelowdotabove-ar.fina.MemRaaIsolrehTwodots-ar.fina.MemRaaIsoljeh-ar.fina.MemRaaIsolrehFourdots-ar.fina.MemRaaIsolrehStroke-ar.fina.MemRaaIsol$rehVinvertedabove-ar.fina.MemRaaIsolzain-ar.fina.MemRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsolreh-ar.fina.MemRaaIsol*rehTwodotsverticalabove-ar.fina.MemRaaIsol rehHamzaabove-ar.fina.MemRaaIsolqafDotless-ar.init.FaaHaaInit&fehThreedotsupbelow-ar.init.FaaHaaInit"fehTwodotsbelow-ar.init.FaaHaaInitqaf-ar.init.FaaHaaInitfeh-ar.init.FaaHaaInit$qafThreedotsabove-ar.init.FaaHaaInitfehDotless-ar.init.FaaHaaInit#fehDotmovedbelow-ar.init.FaaHaaInitfehDotbelow-ar.init.FaaHaaInitveh-ar.init.FaaHaaInit$fehThreedotsbelow-ar.init.FaaHaaInitpeheh-ar.init.FaaHaaInitqafDotabove-ar.init.FaaHaaInitkhah-ar.medi.FaaHaaInithah-ar.medi.FaaHaaInit hahHamzaabove-ar.medi.FaaHaaInittcheheh-ar.medi.FaaHaaInit$hahThreedotsabove-ar.medi.FaaHaaInitjeem-ar.medi.FaaHaaInit*hahTwodotsverticalabove-ar.medi.FaaHaaInit,hahTwodotshorizontalabove-ar.medi.FaaHaaInitdyeh-ar.medi.FaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.FaaHaaInithahTahbelow-ar.medi.FaaHaaInitnyeh-ar.medi.FaaHaaInit tchehDotabove-ar.medi.FaaHaaInithahFourbelow-ar.medi.FaaHaaInit&hahThreedotsupbelow-ar.medi.FaaHaaInithahTahabove-ar.medi.FaaHaaInittcheh-ar.medi.FaaHaaInitkhah-ar.init.HaaHaaInithah-ar.init.HaaHaaInit hahHamzaabove-ar.init.HaaHaaInittcheheh-ar.init.HaaHaaInit$hahThreedotsabove-ar.init.HaaHaaInitjeem-ar.init.HaaHaaInit*hahTwodotsverticalabove-ar.init.HaaHaaInit,hahTwodotshorizontalabove-ar.init.HaaHaaInitdyeh-ar.init.HaaHaaInit/hahTahTwodotshorizontalabove-ar.init.HaaHaaInithahTahbelow-ar.init.HaaHaaInitnyeh-ar.init.HaaHaaInit tchehDotabove-ar.init.HaaHaaInithahFourbelow-ar.init.HaaHaaInit&hahThreedotsupbelow-ar.init.HaaHaaInithahTahabove-ar.init.HaaHaaInittcheh-ar.init.HaaHaaInitlamVabove-ar.medi.LamQafFina$lamThreedotsabove-ar.medi.LamQafFinalam-ar.medi.LamQafFina$lamThreedotsbelow-ar.medi.LamQafFinalamDotabove-ar.medi.LamQafFinalamBar-ar.medi.LamQafFina$qafThreedotsabove-ar.fina.LamQafFinaqafDotabove-ar.fina.LamQafFinaqaf-ar.fina.LamQafFinaqafDotless-ar.fina.LamQafFinasheenDotbelow-ar.init.AboveHaa)seenTwodotsverticalabove-ar.init.AboveHaaseen-ar.init.AboveHaa#seenVinvertedabove-ar.init.AboveHaaseenFourabove-ar.init.AboveHaasheen-ar.init.AboveHaa.seenTahTwodotshorizontalabove-ar.init.AboveHaa"seenFourdotsabove-ar.init.AboveHaa%seenDotbelowDotabove-ar.init.AboveHaa#seenThreedotsbelow-ar.init.AboveHaa$sheenThreedotsbelow-ar.init.AboveHaameem-ar.init.MemHaaInit$yehFarsiFourbelow-ar.init.BaaNonIsolbeheh-ar.init.BaaNonIsol%yehFarsiThreeabove-ar.init.BaaNonIsolnoonRing-ar.init.BaaNonIsol.behThreedotshorizontalbelow-ar.init.BaaNonIsolbehVabove-ar.init.BaaNonIsolnoonTahabove-ar.init.BaaNonIsolyehVabove-ar.init.BaaNonIsol#yehFarsiTwoabove-ar.init.BaaNonIsol%noonThreedotsabove-ar.init.BaaNonIsol yehHamzaabove-ar.init.BaaNonIsolbehDotless-ar.init.BaaNonIsolyehKashmiri-ar.init.BaaNonIsolyeh-ar.init.BaaNonIsolrnoon-ar.init.BaaNonIsolteheh-ar.init.BaaNonIsol$behVinvertedbelow-ar.init.BaaNonIsol#tehThreedotsdown-ar.init.BaaNonIsolpeh-ar.init.BaaNonIsolbeeh-ar.init.BaaNonIsolbeh-ar.init.BaaNonIsoltteheh-ar.init.BaaNonIsol&behThreedotsupabove-ar.init.BaaNonIsolnoon-ar.init.BaaNonIsol&tehThreedotsupbelow-ar.init.BaaNonIsol&behThreedotsupbelow-ar.init.BaaNonIsolteh-ar.init.BaaNonIsolhighhamzaYeh-ar.init.BaaNonIsol$yehFarsiVinverted-ar.init.BaaNonIsoltheh-ar.init.BaaNonIsoltteh-ar.init.BaaNonIsolnoonDotbelow-ar.init.BaaNonIsolnoonVabove-ar.init.BaaNonIsolalefMaksura-ar.init.BaaNonIsoltehRing-ar.init.BaaNonIsol*behTwodotsbelowDotabove-ar.init.BaaNonIsol$yehThreedotsbelow-ar.init.BaaNonIsole-ar.init.BaaNonIsolnoonghunna-ar.init.BaaNonIsolyehFarsi-ar.init.BaaNonIsol#noonTwodotsbelow-ar.init.BaaNonIsolnoon-ar.fina.BaaNonIsol#noonTwodotsbelow-ar.fina.BaaNonIsolnoonghunna-ar.fina.BaaNonIsolnoonRing-ar.fina.BaaNonIsolrnoon-ar.fina.BaaNonIsolnoonTahabove-ar.fina.BaaNonIsolnoonDotbelow-ar.fina.BaaNonIsolnoonVabove-ar.fina.BaaNonIsol%noonThreedotsabove-ar.fina.BaaNonIsol.kehehTwodotshorizontalabove-ar.medi.KafMemFina&kehehThreedotsbelow-ar.medi.KafMemFina,kafTwodotshorizontalabove-ar.medi.KafMemFina(kehehThreedotsupbelow-ar.medi.KafMemFinakaf-ar.medi.KafMemFinagafRing-ar.medi.KafMemFinagueh-ar.medi.KafMemFina"gafTwodotsbelow-ar.medi.KafMemFinakafRing-ar.medi.KafMemFinakafDotabove-ar.medi.KafMemFinang-ar.medi.KafMemFina$kafThreedotsbelow-ar.medi.KafMemFinagaf-ar.medi.KafMemFinakeheh-ar.medi.KafMemFinagafThreedots-ar.medi.KafMemFina&kehehThreedotsabove-ar.medi.KafMemFina kehehDotabove-ar.medi.KafMemFinangoeh-ar.medi.KafMemFinameem-ar.fina.KafMemFina$yehFarsiFourbelow-ar.init.BaaSenInitbeheh-ar.init.BaaSenInit%yehFarsiThreeabove-ar.init.BaaSenInitnoonRing-ar.init.BaaSenInit.behThreedotshorizontalbelow-ar.init.BaaSenInitbehVabove-ar.init.BaaSenInitnoonTahabove-ar.init.BaaSenInityehVabove-ar.init.BaaSenInit#yehFarsiTwoabove-ar.init.BaaSenInit%noonThreedotsabove-ar.init.BaaSenInit yehHamzaabove-ar.init.BaaSenInitbehDotless-ar.init.BaaSenInityehKashmiri-ar.init.BaaSenInityeh-ar.init.BaaSenInitrnoon-ar.init.BaaSenInitteheh-ar.init.BaaSenInit$behVinvertedbelow-ar.init.BaaSenInit#tehThreedotsdown-ar.init.BaaSenInitpeh-ar.init.BaaSenInitbeeh-ar.init.BaaSenInitbeh-ar.init.BaaSenInittteheh-ar.init.BaaSenInit&behThreedotsupabove-ar.init.BaaSenInitnoon-ar.init.BaaSenInit&tehThreedotsupbelow-ar.init.BaaSenInit&behThreedotsupbelow-ar.init.BaaSenInitteh-ar.init.BaaSenInithighhamzaYeh-ar.init.BaaSenInit$yehFarsiVinverted-ar.init.BaaSenInittheh-ar.init.BaaSenInittteh-ar.init.BaaSenInitnoonDotbelow-ar.init.BaaSenInitnoonVabove-ar.init.BaaSenInitalefMaksura-ar.init.BaaSenInittehRing-ar.init.BaaSenInit*behTwodotsbelowDotabove-ar.init.BaaSenInit$yehThreedotsbelow-ar.init.BaaSenInite-ar.init.BaaSenInitnoonghunna-ar.init.BaaSenInityehFarsi-ar.init.BaaSenInit#noonTwodotsbelow-ar.init.BaaSenInit sheenDotbelow-ar.medi.BaaSenInit+seenTwodotsverticalabove-ar.medi.BaaSenInitseen-ar.medi.BaaSenInit%seenVinvertedabove-ar.medi.BaaSenInit seenFourabove-ar.medi.BaaSenInitsheen-ar.medi.BaaSenInit0seenTahTwodotshorizontalabove-ar.medi.BaaSenInit$seenFourdotsabove-ar.medi.BaaSenInit'seenDotbelowDotabove-ar.medi.BaaSenInit%seenThreedotsbelow-ar.medi.BaaSenInit&sheenThreedotsbelow-ar.medi.BaaSenInit$yehFarsiFourbelow-ar.medi.BaaRaaFinabeheh-ar.medi.BaaRaaFina%yehFarsiThreeabove-ar.medi.BaaRaaFinanoonRing-ar.medi.BaaRaaFina.behThreedotshorizontalbelow-ar.medi.BaaRaaFinabehVabove-ar.medi.BaaRaaFinanoonTahabove-ar.medi.BaaRaaFinayehVabove-ar.medi.BaaRaaFina#yehFarsiTwoabove-ar.medi.BaaRaaFina%noonThreedotsabove-ar.medi.BaaRaaFina yehHamzaabove-ar.medi.BaaRaaFinabehDotless-ar.medi.BaaRaaFinayehKashmiri-ar.medi.BaaRaaFinayeh-ar.medi.BaaRaaFinarnoon-ar.medi.BaaRaaFinateheh-ar.medi.BaaRaaFina$behVinvertedbelow-ar.medi.BaaRaaFina#tehThreedotsdown-ar.medi.BaaRaaFinapeh-ar.medi.BaaRaaFinabeeh-ar.medi.BaaRaaFinabeh-ar.medi.BaaRaaFinatteheh-ar.medi.BaaRaaFina&behThreedotsupabove-ar.medi.BaaRaaFinanoon-ar.medi.BaaRaaFina&tehThreedotsupbelow-ar.medi.BaaRaaFina&behThreedotsupbelow-ar.medi.BaaRaaFinateh-ar.medi.BaaRaaFina$yehFarsiVinverted-ar.medi.BaaRaaFinatheh-ar.medi.BaaRaaFinatteh-ar.medi.BaaRaaFinanoonDotbelow-ar.medi.BaaRaaFinanoonVabove-ar.medi.BaaRaaFinaalefMaksura-ar.medi.BaaRaaFinatehRing-ar.medi.BaaRaaFina*behTwodotsbelowDotabove-ar.medi.BaaRaaFina$yehThreedotsbelow-ar.medi.BaaRaaFinae-ar.medi.BaaRaaFinanoonghunna-ar.medi.BaaRaaFinayehFarsi-ar.medi.BaaRaaFina#noonTwodotsbelow-ar.medi.BaaRaaFinarreh-ar.fina.BaaRaaFinarehv-ar.fina.BaaRaaFinarehRing-ar.fina.BaaRaaFinarehDotbelow-ar.fina.BaaRaaFinarehVbelow-ar.fina.BaaRaaFina&rehDotbelowdotabove-ar.fina.BaaRaaFinarehTwodots-ar.fina.BaaRaaFinajeh-ar.fina.BaaRaaFinarehFourdots-ar.fina.BaaRaaFinarehStroke-ar.fina.BaaRaaFina$rehVinvertedabove-ar.fina.BaaRaaFinazain-ar.fina.BaaRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFinareh-ar.fina.BaaRaaFina*rehTwodotsverticalabove-ar.fina.BaaRaaFina rehHamzaabove-ar.fina.BaaRaaFina.kehehTwodotshorizontalabove-ar.medi.KafRaaFina&kehehThreedotsbelow-ar.medi.KafRaaFina,kafTwodotshorizontalabove-ar.medi.KafRaaFina(kehehThreedotsupbelow-ar.medi.KafRaaFinakaf-ar.medi.KafRaaFinagafRing-ar.medi.KafRaaFinagueh-ar.medi.KafRaaFina"gafTwodotsbelow-ar.medi.KafRaaFinakafRing-ar.medi.KafRaaFinakafDotabove-ar.medi.KafRaaFinang-ar.medi.KafRaaFina$kafThreedotsbelow-ar.medi.KafRaaFinagaf-ar.medi.KafRaaFinakeheh-ar.medi.KafRaaFinagafThreedots-ar.medi.KafRaaFina&kehehThreedotsabove-ar.medi.KafRaaFina kehehDotabove-ar.medi.KafRaaFinangoeh-ar.medi.KafRaaFinarreh-ar.fina.KafRaaFinarehv-ar.fina.KafRaaFinarehRing-ar.fina.KafRaaFinarehDotbelow-ar.fina.KafRaaFinarehVbelow-ar.fina.KafRaaFina&rehDotbelowdotabove-ar.fina.KafRaaFinarehTwodots-ar.fina.KafRaaFinajeh-ar.fina.KafRaaFinarehFourdots-ar.fina.KafRaaFinarehStroke-ar.fina.KafRaaFina$rehVinvertedabove-ar.fina.KafRaaFinazain-ar.fina.KafRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFinareh-ar.fina.KafRaaFina*rehTwodotsverticalabove-ar.fina.KafRaaFina rehHamzaabove-ar.fina.KafRaaFinalamVabove-ar.init.LamHehInit$lamThreedotsabove-ar.init.LamHehInitlam-ar.init.LamHehInit$lamThreedotsbelow-ar.init.LamHehInitlamDotabove-ar.init.LamHehInitlamBar-ar.init.LamHehInitheh-ar.medi.LamHehInithehgoal-ar.medi.LamHehInitmeem-ar.init.MemHaaMemInitkhah-ar.medi.MemHaaMemInithah-ar.medi.MemHaaMemInit#hahHamzaabove-ar.medi.MemHaaMemInittcheheh-ar.medi.MemHaaMemInit'hahThreedotsabove-ar.medi.MemHaaMemInitjeem-ar.medi.MemHaaMemInit-hahTwodotsverticalabove-ar.medi.MemHaaMemInit/hahTwodotshorizontalabove-ar.medi.MemHaaMemInitdyeh-ar.medi.MemHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit!hahTahbelow-ar.medi.MemHaaMemInitnyeh-ar.medi.MemHaaMemInit#tchehDotabove-ar.medi.MemHaaMemInit"hahFourbelow-ar.medi.MemHaaMemInit)hahThreedotsupbelow-ar.medi.MemHaaMemInit!hahTahabove-ar.medi.MemHaaMemInittcheh-ar.medi.MemHaaMemInit$yehFarsiFourbelow-ar.init.BaaMemInitbeheh-ar.init.BaaMemInit%yehFarsiThreeabove-ar.init.BaaMemInitnoonRing-ar.init.BaaMemInit.behThreedotshorizontalbelow-ar.init.BaaMemInitbehVabove-ar.init.BaaMemInitnoonTahabove-ar.init.BaaMemInityehVabove-ar.init.BaaMemInit#yehFarsiTwoabove-ar.init.BaaMemInit%noonThreedotsabove-ar.init.BaaMemInit yehHamzaabove-ar.init.BaaMemInitbehDotless-ar.init.BaaMemInityehKashmiri-ar.init.BaaMemInityeh-ar.init.BaaMemInitrnoon-ar.init.BaaMemInitteheh-ar.init.BaaMemInit$behVinvertedbelow-ar.init.BaaMemInit#tehThreedotsdown-ar.init.BaaMemInitpeh-ar.init.BaaMemInitbeeh-ar.init.BaaMemInitbeh-ar.init.BaaMemInittteheh-ar.init.BaaMemInit&behThreedotsupabove-ar.init.BaaMemInitnoon-ar.init.BaaMemInit&tehThreedotsupbelow-ar.init.BaaMemInit&behThreedotsupbelow-ar.init.BaaMemInitteh-ar.init.BaaMemInithighhamzaYeh-ar.init.BaaMemInit$yehFarsiVinverted-ar.init.BaaMemInittheh-ar.init.BaaMemInittteh-ar.init.BaaMemInitnoonDotbelow-ar.init.BaaMemInitnoonVabove-ar.init.BaaMemInitalefMaksura-ar.init.BaaMemInittehRing-ar.init.BaaMemInit*behTwodotsbelowDotabove-ar.init.BaaMemInit$yehThreedotsbelow-ar.init.BaaMemInite-ar.init.BaaMemInitnoonghunna-ar.init.BaaMemInityehFarsi-ar.init.BaaMemInit#noonTwodotsbelow-ar.init.BaaMemInitmeem-ar.medi.BaaMemInit sheenDotbelow-ar.init.SenHaaInit+seenTwodotsverticalabove-ar.init.SenHaaInitseen-ar.init.SenHaaInit%seenVinvertedabove-ar.init.SenHaaInit seenFourabove-ar.init.SenHaaInitsheen-ar.init.SenHaaInit0seenTahTwodotshorizontalabove-ar.init.SenHaaInit$seenFourdotsabove-ar.init.SenHaaInit'seenDotbelowDotabove-ar.init.SenHaaInit%seenThreedotsbelow-ar.init.SenHaaInit&sheenThreedotsbelow-ar.init.SenHaaInit.kehehTwodotshorizontalabove-ar.init.KafRaaIsol&kehehThreedotsbelow-ar.init.KafRaaIsol,kafTwodotshorizontalabove-ar.init.KafRaaIsol(kehehThreedotsupbelow-ar.init.KafRaaIsolkaf-ar.init.KafRaaIsolgafRing-ar.init.KafRaaIsolgueh-ar.init.KafRaaIsol"gafTwodotsbelow-ar.init.KafRaaIsolkafRing-ar.init.KafRaaIsolkafDotabove-ar.init.KafRaaIsolng-ar.init.KafRaaIsol$kafThreedotsbelow-ar.init.KafRaaIsolgaf-ar.init.KafRaaIsolkeheh-ar.init.KafRaaIsolgafThreedots-ar.init.KafRaaIsol&kehehThreedotsabove-ar.init.KafRaaIsol kehehDotabove-ar.init.KafRaaIsolngoeh-ar.init.KafRaaIsolrreh-ar.fina.KafRaaIsolrehv-ar.fina.KafRaaIsolrehRing-ar.fina.KafRaaIsolrehDotbelow-ar.fina.KafRaaIsolrehVbelow-ar.fina.KafRaaIsol&rehDotbelowdotabove-ar.fina.KafRaaIsolrehTwodots-ar.fina.KafRaaIsoljeh-ar.fina.KafRaaIsolrehFourdots-ar.fina.KafRaaIsolrehStroke-ar.fina.KafRaaIsol$rehVinvertedabove-ar.fina.KafRaaIsolzain-ar.fina.KafRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsolreh-ar.fina.KafRaaIsol*rehTwodotsverticalabove-ar.fina.KafRaaIsol rehHamzaabove-ar.fina.KafRaaIsol ghainDotbelow-ar.init.AynHaaInitghain-ar.init.AynHaaInit(ainThreedotsdownabove-ar.init.AynHaaInit,ainTwodotshorizontalabove-ar.init.AynHaaInit*ainTwodotsverticalabove-ar.init.AynHaaInitainThreedots-ar.init.AynHaaInitain-ar.init.AynHaaInit.kehehTwodotshorizontalabove-ar.medi.KafYaaFina&kehehThreedotsbelow-ar.medi.KafYaaFina,kafTwodotshorizontalabove-ar.medi.KafYaaFina(kehehThreedotsupbelow-ar.medi.KafYaaFinakaf-ar.medi.KafYaaFinagafRing-ar.medi.KafYaaFinagueh-ar.medi.KafYaaFina"gafTwodotsbelow-ar.medi.KafYaaFinakafRing-ar.medi.KafYaaFinakafDotabove-ar.medi.KafYaaFinang-ar.medi.KafYaaFina$kafThreedotsbelow-ar.medi.KafYaaFinagaf-ar.medi.KafYaaFinakeheh-ar.medi.KafYaaFinagafThreedots-ar.medi.KafYaaFina&kehehThreedotsabove-ar.medi.KafYaaFina kehehDotabove-ar.medi.KafYaaFinangoeh-ar.medi.KafYaaFina$yehFarsiFourbelow-ar.fina.KafYaaFina$yehThreedotsbelow-ar.fina.KafYaaFina#yehFarsiTwoabove-ar.fina.KafYaaFina)yehFarsiThreedotsabove-ar.fina.KafYaaFina$yehFarsiVinverted-ar.fina.KafYaaFina'yehFarsiTwodotsabove-ar.fina.KafYaaFinae-ar.fina.KafYaaFinaalefMaksura-ar.fina.KafYaaFina%yehFarsiThreeabove-ar.fina.KafYaaFinayehTail-ar.fina.KafYaaFinayehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFinayehKashmiri-ar.fina.KafYaaFinayeh-ar.fina.KafYaaFinayehVabove-ar.fina.KafYaaFinalamVabove-ar.init.LamMemHaaInit'lamThreedotsabove-ar.init.LamMemHaaInitlam-ar.init.LamMemHaaInit'lamThreedotsbelow-ar.init.LamMemHaaInit!lamDotabove-ar.init.LamMemHaaInitlamBar-ar.init.LamMemHaaInitmeem-ar.medi.LamMemHaaInitkhah-ar.medi.LamMemHaaInithah-ar.medi.LamMemHaaInit#hahHamzaabove-ar.medi.LamMemHaaInittcheheh-ar.medi.LamMemHaaInit'hahThreedotsabove-ar.medi.LamMemHaaInitjeem-ar.medi.LamMemHaaInit-hahTwodotsverticalabove-ar.medi.LamMemHaaInit/hahTwodotshorizontalabove-ar.medi.LamMemHaaInitdyeh-ar.medi.LamMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit!hahTahbelow-ar.medi.LamMemHaaInitnyeh-ar.medi.LamMemHaaInit#tchehDotabove-ar.medi.LamMemHaaInit"hahFourbelow-ar.medi.LamMemHaaInit)hahThreedotsupbelow-ar.medi.LamMemHaaInit!hahTahabove-ar.medi.LamMemHaaInittcheh-ar.medi.LamMemHaaInitlamVabove-ar.medi.LamAlfFina$lamThreedotsabove-ar.medi.LamAlfFinalam-ar.medi.LamAlfFina$lamThreedotsbelow-ar.medi.LamAlfFinalamDotabove-ar.medi.LamAlfFinalamBar-ar.medi.LamAlfFina!alefHamzabelow-ar.fina.LamAlfFinaalef-ar.fina.LamAlfFina!alefThreeabove-ar.fina.LamAlfFinaalefTwoabove-ar.fina.LamAlfFina!alefHamzaabove-ar.fina.LamAlfFinaalefMadda-ar.fina.LamAlfFina%alefWavyhamzaabove-ar.fina.LamAlfFina%alefWavyhamzabelow-ar.fina.LamAlfFinaalefWasla-ar.fina.LamAlfFinalamVabove-ar.medi.LamMemMedi$lamThreedotsabove-ar.medi.LamMemMedilam-ar.medi.LamMemMedi$lamThreedotsbelow-ar.medi.LamMemMedilamDotabove-ar.medi.LamMemMedilamBar-ar.medi.LamMemMedimeemDotabove-ar.medi.LamMemMedimeem-ar.medi.LamMemMedimeemDotbelow-ar.medi.LamMemMedi'yehFarsiFourbelow-ar.init.BaaBaaHaaInitbeheh-ar.init.BaaBaaHaaInit(yehFarsiThreeabove-ar.init.BaaBaaHaaInitnoonRing-ar.init.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitbehVabove-ar.init.BaaBaaHaaInit"noonTahabove-ar.init.BaaBaaHaaInityehVabove-ar.init.BaaBaaHaaInit&yehFarsiTwoabove-ar.init.BaaBaaHaaInit(noonThreedotsabove-ar.init.BaaBaaHaaInit#yehHamzaabove-ar.init.BaaBaaHaaInit behDotless-ar.init.BaaBaaHaaInit!yehKashmiri-ar.init.BaaBaaHaaInityeh-ar.init.BaaBaaHaaInitrnoon-ar.init.BaaBaaHaaInitteheh-ar.init.BaaBaaHaaInit'behVinvertedbelow-ar.init.BaaBaaHaaInit&tehThreedotsdown-ar.init.BaaBaaHaaInitpeh-ar.init.BaaBaaHaaInitbeeh-ar.init.BaaBaaHaaInitbeh-ar.init.BaaBaaHaaInittteheh-ar.init.BaaBaaHaaInit)behThreedotsupabove-ar.init.BaaBaaHaaInitnoon-ar.init.BaaBaaHaaInit)tehThreedotsupbelow-ar.init.BaaBaaHaaInit)behThreedotsupbelow-ar.init.BaaBaaHaaInitteh-ar.init.BaaBaaHaaInit"highhamzaYeh-ar.init.BaaBaaHaaInit'yehFarsiVinverted-ar.init.BaaBaaHaaInittheh-ar.init.BaaBaaHaaInittteh-ar.init.BaaBaaHaaInit"noonDotbelow-ar.init.BaaBaaHaaInit noonVabove-ar.init.BaaBaaHaaInit!alefMaksura-ar.init.BaaBaaHaaInittehRing-ar.init.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit'yehThreedotsbelow-ar.init.BaaBaaHaaInite-ar.init.BaaBaaHaaInit noonghunna-ar.init.BaaBaaHaaInityehFarsi-ar.init.BaaBaaHaaInit&noonTwodotsbelow-ar.init.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.BaaBaaHaaInitbeheh-ar.medi.BaaBaaHaaInit(yehFarsiThreeabove-ar.medi.BaaBaaHaaInitnoonRing-ar.medi.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInitbehVabove-ar.medi.BaaBaaHaaInit"noonTahabove-ar.medi.BaaBaaHaaInityehVabove-ar.medi.BaaBaaHaaInit&yehFarsiTwoabove-ar.medi.BaaBaaHaaInit(noonThreedotsabove-ar.medi.BaaBaaHaaInit#yehHamzaabove-ar.medi.BaaBaaHaaInit behDotless-ar.medi.BaaBaaHaaInit!yehKashmiri-ar.medi.BaaBaaHaaInityeh-ar.medi.BaaBaaHaaInitrnoon-ar.medi.BaaBaaHaaInitteheh-ar.medi.BaaBaaHaaInit'behVinvertedbelow-ar.medi.BaaBaaHaaInit&tehThreedotsdown-ar.medi.BaaBaaHaaInitpeh-ar.medi.BaaBaaHaaInitbeeh-ar.medi.BaaBaaHaaInitbeh-ar.medi.BaaBaaHaaInittteheh-ar.medi.BaaBaaHaaInit)behThreedotsupabove-ar.medi.BaaBaaHaaInitnoon-ar.medi.BaaBaaHaaInit)tehThreedotsupbelow-ar.medi.BaaBaaHaaInit)behThreedotsupbelow-ar.medi.BaaBaaHaaInitteh-ar.medi.BaaBaaHaaInit'yehFarsiVinverted-ar.medi.BaaBaaHaaInittheh-ar.medi.BaaBaaHaaInittteh-ar.medi.BaaBaaHaaInit"noonDotbelow-ar.medi.BaaBaaHaaInit noonVabove-ar.medi.BaaBaaHaaInit!alefMaksura-ar.medi.BaaBaaHaaInittehRing-ar.medi.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit'yehThreedotsbelow-ar.medi.BaaBaaHaaInite-ar.medi.BaaBaaHaaInit noonghunna-ar.medi.BaaBaaHaaInityehFarsi-ar.medi.BaaBaaHaaInit&noonTwodotsbelow-ar.medi.BaaBaaHaaInitkhah-ar.medi.BaaBaaHaaInithah-ar.medi.BaaBaaHaaInit#hahHamzaabove-ar.medi.BaaBaaHaaInittcheheh-ar.medi.BaaBaaHaaInit'hahThreedotsabove-ar.medi.BaaBaaHaaInitjeem-ar.medi.BaaBaaHaaInit-hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit/hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInitdyeh-ar.medi.BaaBaaHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit!hahTahbelow-ar.medi.BaaBaaHaaInitnyeh-ar.medi.BaaBaaHaaInit#tchehDotabove-ar.medi.BaaBaaHaaInit"hahFourbelow-ar.medi.BaaBaaHaaInit)hahThreedotsupbelow-ar.medi.BaaBaaHaaInit!hahTahabove-ar.medi.BaaBaaHaaInittcheh-ar.medi.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.SenBaaMemInitbeheh-ar.medi.SenBaaMemInit(yehFarsiThreeabove-ar.medi.SenBaaMemInitnoonRing-ar.medi.SenBaaMemInit1behThreedotshorizontalbelow-ar.medi.SenBaaMemInitbehVabove-ar.medi.SenBaaMemInit"noonTahabove-ar.medi.SenBaaMemInityehVabove-ar.medi.SenBaaMemInit&yehFarsiTwoabove-ar.medi.SenBaaMemInit(noonThreedotsabove-ar.medi.SenBaaMemInit#yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInit!yehKashmiri-ar.medi.SenBaaMemInityeh-ar.medi.SenBaaMemInitrnoon-ar.medi.SenBaaMemInitteheh-ar.medi.SenBaaMemInit'behVinvertedbelow-ar.medi.SenBaaMemInit&tehThreedotsdown-ar.medi.SenBaaMemInitpeh-ar.medi.SenBaaMemInitbeeh-ar.medi.SenBaaMemInitbeh-ar.medi.SenBaaMemInittteheh-ar.medi.SenBaaMemInit)behThreedotsupabove-ar.medi.SenBaaMemInitnoon-ar.medi.SenBaaMemInit)tehThreedotsupbelow-ar.medi.SenBaaMemInit)behThreedotsupbelow-ar.medi.SenBaaMemInitteh-ar.medi.SenBaaMemInit'yehFarsiVinverted-ar.medi.SenBaaMemInittheh-ar.medi.SenBaaMemInittteh-ar.medi.SenBaaMemInit"noonDotbelow-ar.medi.SenBaaMemInit noonVabove-ar.medi.SenBaaMemInit!alefMaksura-ar.medi.SenBaaMemInittehRing-ar.medi.SenBaaMemInit-behTwodotsbelowDotabove-ar.medi.SenBaaMemInit'yehThreedotsbelow-ar.medi.SenBaaMemInite-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInityehFarsi-ar.medi.SenBaaMemInit&noonTwodotsbelow-ar.medi.SenBaaMemInitmeem-ar.medi.SenBaaMemInit$yehFarsiFourbelow-ar.init.BaaBaaIsolbeheh-ar.init.BaaBaaIsol%yehFarsiThreeabove-ar.init.BaaBaaIsolnoonRing-ar.init.BaaBaaIsol.behThreedotshorizontalbelow-ar.init.BaaBaaIsolbehVabove-ar.init.BaaBaaIsolnoonTahabove-ar.init.BaaBaaIsolyehVabove-ar.init.BaaBaaIsol#yehFarsiTwoabove-ar.init.BaaBaaIsol%noonThreedotsabove-ar.init.BaaBaaIsol yehHamzaabove-ar.init.BaaBaaIsolbehDotless-ar.init.BaaBaaIsolyehKashmiri-ar.init.BaaBaaIsolyeh-ar.init.BaaBaaIsolrnoon-ar.init.BaaBaaIsolteheh-ar.init.BaaBaaIsol$behVinvertedbelow-ar.init.BaaBaaIsol#tehThreedotsdown-ar.init.BaaBaaIsolpeh-ar.init.BaaBaaIsolbeeh-ar.init.BaaBaaIsolbeh-ar.init.BaaBaaIsoltteheh-ar.init.BaaBaaIsol&behThreedotsupabove-ar.init.BaaBaaIsolnoon-ar.init.BaaBaaIsol&tehThreedotsupbelow-ar.init.BaaBaaIsol&behThreedotsupbelow-ar.init.BaaBaaIsolteh-ar.init.BaaBaaIsolhighhamzaYeh-ar.init.BaaBaaIsol$yehFarsiVinverted-ar.init.BaaBaaIsoltheh-ar.init.BaaBaaIsoltteh-ar.init.BaaBaaIsolnoonDotbelow-ar.init.BaaBaaIsolnoonVabove-ar.init.BaaBaaIsolalefMaksura-ar.init.BaaBaaIsoltehRing-ar.init.BaaBaaIsol*behTwodotsbelowDotabove-ar.init.BaaBaaIsol$yehThreedotsbelow-ar.init.BaaBaaIsole-ar.init.BaaBaaIsolnoonghunna-ar.init.BaaBaaIsolyehFarsi-ar.init.BaaBaaIsol#noonTwodotsbelow-ar.init.BaaBaaIsol&behThreedotsupabove-ar.fina.BaaBaaIsol.behThreedotshorizontalbelow-ar.fina.BaaBaaIsol&tehThreedotsupbelow-ar.fina.BaaBaaIsolbeheh-ar.fina.BaaBaaIsolteh-ar.fina.BaaBaaIsol*behTwodotsbelowDotabove-ar.fina.BaaBaaIsoltheh-ar.fina.BaaBaaIsoltteh-ar.fina.BaaBaaIsoltehRing-ar.fina.BaaBaaIsolbehVabove-ar.fina.BaaBaaIsol&behThreedotsupbelow-ar.fina.BaaBaaIsolbehDotless-ar.fina.BaaBaaIsolteheh-ar.fina.BaaBaaIsol$behVinvertedbelow-ar.fina.BaaBaaIsol#tehThreedotsdown-ar.fina.BaaBaaIsolpeh-ar.fina.BaaBaaIsolbeeh-ar.fina.BaaBaaIsolbeh-ar.fina.BaaBaaIsoltteheh-ar.fina.BaaBaaIsol'yehFarsiFourbelow-ar.init.BaaBaaMemInitbeheh-ar.init.BaaBaaMemInit(yehFarsiThreeabove-ar.init.BaaBaaMemInitnoonRing-ar.init.BaaBaaMemInit1behThreedotshorizontalbelow-ar.init.BaaBaaMemInitbehVabove-ar.init.BaaBaaMemInit"noonTahabove-ar.init.BaaBaaMemInityehVabove-ar.init.BaaBaaMemInit&yehFarsiTwoabove-ar.init.BaaBaaMemInit(noonThreedotsabove-ar.init.BaaBaaMemInit#yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInit!yehKashmiri-ar.init.BaaBaaMemInityeh-ar.init.BaaBaaMemInitrnoon-ar.init.BaaBaaMemInitteheh-ar.init.BaaBaaMemInit'behVinvertedbelow-ar.init.BaaBaaMemInit&tehThreedotsdown-ar.init.BaaBaaMemInitpeh-ar.init.BaaBaaMemInitbeeh-ar.init.BaaBaaMemInitbeh-ar.init.BaaBaaMemInittteheh-ar.init.BaaBaaMemInit)behThreedotsupabove-ar.init.BaaBaaMemInitnoon-ar.init.BaaBaaMemInit)tehThreedotsupbelow-ar.init.BaaBaaMemInit)behThreedotsupbelow-ar.init.BaaBaaMemInitteh-ar.init.BaaBaaMemInit"highhamzaYeh-ar.init.BaaBaaMemInit'yehFarsiVinverted-ar.init.BaaBaaMemInittheh-ar.init.BaaBaaMemInittteh-ar.init.BaaBaaMemInit"noonDotbelow-ar.init.BaaBaaMemInit noonVabove-ar.init.BaaBaaMemInit!alefMaksura-ar.init.BaaBaaMemInittehRing-ar.init.BaaBaaMemInit-behTwodotsbelowDotabove-ar.init.BaaBaaMemInit'yehThreedotsbelow-ar.init.BaaBaaMemInite-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInityehFarsi-ar.init.BaaBaaMemInit&noonTwodotsbelow-ar.init.BaaBaaMemInit'yehFarsiFourbelow-ar.medi.BaaBaaMemInitbeheh-ar.medi.BaaBaaMemInit(yehFarsiThreeabove-ar.medi.BaaBaaMemInitnoonRing-ar.medi.BaaBaaMemInit1behThreedotshorizontalbelow-ar.medi.BaaBaaMemInitbehVabove-ar.medi.BaaBaaMemInit"noonTahabove-ar.medi.BaaBaaMemInityehVabove-ar.medi.BaaBaaMemInit&yehFarsiTwoabove-ar.medi.BaaBaaMemInit(noonThreedotsabove-ar.medi.BaaBaaMemInit#yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInit!yehKashmiri-ar.medi.BaaBaaMemInityeh-ar.medi.BaaBaaMemInitrnoon-ar.medi.BaaBaaMemInitteheh-ar.medi.BaaBaaMemInit'behVinvertedbelow-ar.medi.BaaBaaMemInit&tehThreedotsdown-ar.medi.BaaBaaMemInitpeh-ar.medi.BaaBaaMemInitbeeh-ar.medi.BaaBaaMemInitbeh-ar.medi.BaaBaaMemInittteheh-ar.medi.BaaBaaMemInit)behThreedotsupabove-ar.medi.BaaBaaMemInitnoon-ar.medi.BaaBaaMemInit)tehThreedotsupbelow-ar.medi.BaaBaaMemInit)behThreedotsupbelow-ar.medi.BaaBaaMemInitteh-ar.medi.BaaBaaMemInit'yehFarsiVinverted-ar.medi.BaaBaaMemInittheh-ar.medi.BaaBaaMemInittteh-ar.medi.BaaBaaMemInit"noonDotbelow-ar.medi.BaaBaaMemInit noonVabove-ar.medi.BaaBaaMemInit!alefMaksura-ar.medi.BaaBaaMemInittehRing-ar.medi.BaaBaaMemInit-behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit'yehThreedotsbelow-ar.medi.BaaBaaMemInite-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInityehFarsi-ar.medi.BaaBaaMemInit&noonTwodotsbelow-ar.medi.BaaBaaMemInitmeem-ar.medi.BaaBaaMemInit.kehehTwodotshorizontalabove-ar.medi.KafBaaMedi&kehehThreedotsbelow-ar.medi.KafBaaMedi,kafTwodotshorizontalabove-ar.medi.KafBaaMedi(kehehThreedotsupbelow-ar.medi.KafBaaMedikaf-ar.medi.KafBaaMedigafRing-ar.medi.KafBaaMedigueh-ar.medi.KafBaaMedi"gafTwodotsbelow-ar.medi.KafBaaMedikafRing-ar.medi.KafBaaMedikafDotabove-ar.medi.KafBaaMeding-ar.medi.KafBaaMedi$kafThreedotsbelow-ar.medi.KafBaaMedigaf-ar.medi.KafBaaMedikeheh-ar.medi.KafBaaMedigafThreedots-ar.medi.KafBaaMedi&kehehThreedotsabove-ar.medi.KafBaaMedi kehehDotabove-ar.medi.KafBaaMedingoeh-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.KafBaaMedibeheh-ar.medi.KafBaaMedi%yehFarsiThreeabove-ar.medi.KafBaaMedinoonRing-ar.medi.KafBaaMedi.behThreedotshorizontalbelow-ar.medi.KafBaaMedibehVabove-ar.medi.KafBaaMedinoonTahabove-ar.medi.KafBaaMediyehVabove-ar.medi.KafBaaMedi#yehFarsiTwoabove-ar.medi.KafBaaMedi%noonThreedotsabove-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedibehDotless-ar.medi.KafBaaMediyehKashmiri-ar.medi.KafBaaMediyeh-ar.medi.KafBaaMedirnoon-ar.medi.KafBaaMediteheh-ar.medi.KafBaaMedi$behVinvertedbelow-ar.medi.KafBaaMedi#tehThreedotsdown-ar.medi.KafBaaMedipeh-ar.medi.KafBaaMedibeeh-ar.medi.KafBaaMedibeh-ar.medi.KafBaaMeditteheh-ar.medi.KafBaaMedi&behThreedotsupabove-ar.medi.KafBaaMedinoon-ar.medi.KafBaaMedi&tehThreedotsupbelow-ar.medi.KafBaaMedi&behThreedotsupbelow-ar.medi.KafBaaMediteh-ar.medi.KafBaaMedi$yehFarsiVinverted-ar.medi.KafBaaMeditheh-ar.medi.KafBaaMeditteh-ar.medi.KafBaaMedinoonDotbelow-ar.medi.KafBaaMedinoonVabove-ar.medi.KafBaaMedialefMaksura-ar.medi.KafBaaMeditehRing-ar.medi.KafBaaMedi*behTwodotsbelowDotabove-ar.medi.KafBaaMedi$yehThreedotsbelow-ar.medi.KafBaaMedie-ar.medi.KafBaaMedinoonghunna-ar.medi.KafBaaMediyehFarsi-ar.medi.KafBaaMedi#noonTwodotsbelow-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.BaaNonFinabeheh-ar.medi.BaaNonFina%yehFarsiThreeabove-ar.medi.BaaNonFinanoonRing-ar.medi.BaaNonFina.behThreedotshorizontalbelow-ar.medi.BaaNonFinabehVabove-ar.medi.BaaNonFinanoonTahabove-ar.medi.BaaNonFinayehVabove-ar.medi.BaaNonFina#yehFarsiTwoabove-ar.medi.BaaNonFina%noonThreedotsabove-ar.medi.BaaNonFina yehHamzaabove-ar.medi.BaaNonFinabehDotless-ar.medi.BaaNonFinayehKashmiri-ar.medi.BaaNonFinayeh-ar.medi.BaaNonFinarnoon-ar.medi.BaaNonFinateheh-ar.medi.BaaNonFina$behVinvertedbelow-ar.medi.BaaNonFina#tehThreedotsdown-ar.medi.BaaNonFinapeh-ar.medi.BaaNonFinabeeh-ar.medi.BaaNonFinabeh-ar.medi.BaaNonFinatteheh-ar.medi.BaaNonFina&behThreedotsupabove-ar.medi.BaaNonFinanoon-ar.medi.BaaNonFina&tehThreedotsupbelow-ar.medi.BaaNonFina&behThreedotsupbelow-ar.medi.BaaNonFinateh-ar.medi.BaaNonFina$yehFarsiVinverted-ar.medi.BaaNonFinatheh-ar.medi.BaaNonFinatteh-ar.medi.BaaNonFinanoonDotbelow-ar.medi.BaaNonFinanoonVabove-ar.medi.BaaNonFinaalefMaksura-ar.medi.BaaNonFinatehRing-ar.medi.BaaNonFina*behTwodotsbelowDotabove-ar.medi.BaaNonFina$yehThreedotsbelow-ar.medi.BaaNonFinae-ar.medi.BaaNonFinanoonghunna-ar.medi.BaaNonFinayehFarsi-ar.medi.BaaNonFina#noonTwodotsbelow-ar.medi.BaaNonFinanoon-ar.fina.BaaNonFina#noonTwodotsbelow-ar.fina.BaaNonFinanoonghunna-ar.fina.BaaNonFinanoonRing-ar.fina.BaaNonFinarnoon-ar.fina.BaaNonFinanoonTahabove-ar.fina.BaaNonFinanoonDotbelow-ar.fina.BaaNonFinanoonVabove-ar.fina.BaaNonFina%noonThreedotsabove-ar.fina.BaaNonFinakhah-ar.init.HaaRaaIsolhah-ar.init.HaaRaaIsol hahHamzaabove-ar.init.HaaRaaIsoltcheheh-ar.init.HaaRaaIsol$hahThreedotsabove-ar.init.HaaRaaIsoljeem-ar.init.HaaRaaIsol*hahTwodotsverticalabove-ar.init.HaaRaaIsol,hahTwodotshorizontalabove-ar.init.HaaRaaIsoldyeh-ar.init.HaaRaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaRaaIsolhahTahbelow-ar.init.HaaRaaIsolnyeh-ar.init.HaaRaaIsol tchehDotabove-ar.init.HaaRaaIsolhahFourbelow-ar.init.HaaRaaIsol&hahThreedotsupbelow-ar.init.HaaRaaIsolhahTahabove-ar.init.HaaRaaIsoltcheh-ar.init.HaaRaaIsolrreh-ar.fina.HaaRaaIsolrehv-ar.fina.HaaRaaIsolrehRing-ar.fina.HaaRaaIsolrehDotbelow-ar.fina.HaaRaaIsolrehVbelow-ar.fina.HaaRaaIsol&rehDotbelowdotabove-ar.fina.HaaRaaIsolrehTwodots-ar.fina.HaaRaaIsoljeh-ar.fina.HaaRaaIsolrehFourdots-ar.fina.HaaRaaIsolrehStroke-ar.fina.HaaRaaIsol$rehVinvertedabove-ar.fina.HaaRaaIsolzain-ar.fina.HaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsolreh-ar.fina.HaaRaaIsol*rehTwodotsverticalabove-ar.fina.HaaRaaIsol rehHamzaabove-ar.fina.HaaRaaIsolheh-ar.init.HehHaaInithehgoal-ar.init.HehHaaInitlamVabove-ar.init.LamRaaIsol$lamThreedotsabove-ar.init.LamRaaIsollam-ar.init.LamRaaIsol$lamThreedotsbelow-ar.init.LamRaaIsollamDotabove-ar.init.LamRaaIsollamBar-ar.init.LamRaaIsolrreh-ar.fina.LamRaaIsolrehv-ar.fina.LamRaaIsolrehRing-ar.fina.LamRaaIsolrehDotbelow-ar.fina.LamRaaIsolrehVbelow-ar.fina.LamRaaIsol&rehDotbelowdotabove-ar.fina.LamRaaIsolrehTwodots-ar.fina.LamRaaIsoljeh-ar.fina.LamRaaIsolrehFourdots-ar.fina.LamRaaIsolrehStroke-ar.fina.LamRaaIsol$rehVinvertedabove-ar.fina.LamRaaIsolzain-ar.fina.LamRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsolreh-ar.fina.LamRaaIsol*rehTwodotsverticalabove-ar.fina.LamRaaIsol rehHamzaabove-ar.fina.LamRaaIsol"sadTwodotsbelow-ar.init.SadHaaInitdadDotbelow-ar.init.SadHaaInitdad-ar.init.SadHaaInitsadThreedots-ar.init.SadHaaInitsad-ar.init.SadHaaInitkhah-ar.medi.SadHaaInithah-ar.medi.SadHaaInit hahHamzaabove-ar.medi.SadHaaInittcheheh-ar.medi.SadHaaInit$hahThreedotsabove-ar.medi.SadHaaInitjeem-ar.medi.SadHaaInit*hahTwodotsverticalabove-ar.medi.SadHaaInit,hahTwodotshorizontalabove-ar.medi.SadHaaInitdyeh-ar.medi.SadHaaInit/hahTahTwodotshorizontalabove-ar.medi.SadHaaInithahTahbelow-ar.medi.SadHaaInitnyeh-ar.medi.SadHaaInit tchehDotabove-ar.medi.SadHaaInithahFourbelow-ar.medi.SadHaaInit&hahThreedotsupbelow-ar.medi.SadHaaInithahTahabove-ar.medi.SadHaaInittcheh-ar.medi.SadHaaInit$yehFarsiFourbelow-ar.medi.BaaYaaFinabeheh-ar.medi.BaaYaaFina%yehFarsiThreeabove-ar.medi.BaaYaaFinanoonRing-ar.medi.BaaYaaFina.behThreedotshorizontalbelow-ar.medi.BaaYaaFinabehVabove-ar.medi.BaaYaaFinanoonTahabove-ar.medi.BaaYaaFinayehVabove-ar.medi.BaaYaaFina#yehFarsiTwoabove-ar.medi.BaaYaaFina%noonThreedotsabove-ar.medi.BaaYaaFina yehHamzaabove-ar.medi.BaaYaaFinabehDotless-ar.medi.BaaYaaFinayehKashmiri-ar.medi.BaaYaaFinayeh-ar.medi.BaaYaaFinarnoon-ar.medi.BaaYaaFinateheh-ar.medi.BaaYaaFina$behVinvertedbelow-ar.medi.BaaYaaFina#tehThreedotsdown-ar.medi.BaaYaaFinapeh-ar.medi.BaaYaaFinabeeh-ar.medi.BaaYaaFinabeh-ar.medi.BaaYaaFinatteheh-ar.medi.BaaYaaFina&behThreedotsupabove-ar.medi.BaaYaaFinanoon-ar.medi.BaaYaaFina&tehThreedotsupbelow-ar.medi.BaaYaaFina&behThreedotsupbelow-ar.medi.BaaYaaFinateh-ar.medi.BaaYaaFina$yehFarsiVinverted-ar.medi.BaaYaaFinatheh-ar.medi.BaaYaaFinatteh-ar.medi.BaaYaaFinanoonDotbelow-ar.medi.BaaYaaFinanoonVabove-ar.medi.BaaYaaFinaalefMaksura-ar.medi.BaaYaaFinatehRing-ar.medi.BaaYaaFina*behTwodotsbelowDotabove-ar.medi.BaaYaaFina$yehThreedotsbelow-ar.medi.BaaYaaFinae-ar.medi.BaaYaaFinanoonghunna-ar.medi.BaaYaaFinayehFarsi-ar.medi.BaaYaaFina#noonTwodotsbelow-ar.medi.BaaYaaFina$yehFarsiFourbelow-ar.fina.BaaYaaFina$yehThreedotsbelow-ar.fina.BaaYaaFina#yehFarsiTwoabove-ar.fina.BaaYaaFina)yehFarsiThreedotsabove-ar.fina.BaaYaaFina$yehFarsiVinverted-ar.fina.BaaYaaFina'yehFarsiTwodotsabove-ar.fina.BaaYaaFinae-ar.fina.BaaYaaFinaalefMaksura-ar.fina.BaaYaaFina%yehFarsiThreeabove-ar.fina.BaaYaaFinayehTail-ar.fina.BaaYaaFinayehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFinayehKashmiri-ar.fina.BaaYaaFinayeh-ar.fina.BaaYaaFinayehVabove-ar.fina.BaaYaaFina'yehFarsiFourbelow-ar.init.BaaSenAltInitbeheh-ar.init.BaaSenAltInit(yehFarsiThreeabove-ar.init.BaaSenAltInitnoonRing-ar.init.BaaSenAltInit1behThreedotshorizontalbelow-ar.init.BaaSenAltInitbehVabove-ar.init.BaaSenAltInit"noonTahabove-ar.init.BaaSenAltInityehVabove-ar.init.BaaSenAltInit&yehFarsiTwoabove-ar.init.BaaSenAltInit(noonThreedotsabove-ar.init.BaaSenAltInit#yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInit!yehKashmiri-ar.init.BaaSenAltInityeh-ar.init.BaaSenAltInitrnoon-ar.init.BaaSenAltInitteheh-ar.init.BaaSenAltInit'behVinvertedbelow-ar.init.BaaSenAltInit&tehThreedotsdown-ar.init.BaaSenAltInitpeh-ar.init.BaaSenAltInitbeeh-ar.init.BaaSenAltInitbeh-ar.init.BaaSenAltInittteheh-ar.init.BaaSenAltInit)behThreedotsupabove-ar.init.BaaSenAltInitnoon-ar.init.BaaSenAltInit)tehThreedotsupbelow-ar.init.BaaSenAltInit)behThreedotsupbelow-ar.init.BaaSenAltInitteh-ar.init.BaaSenAltInit"highhamzaYeh-ar.init.BaaSenAltInit'yehFarsiVinverted-ar.init.BaaSenAltInittheh-ar.init.BaaSenAltInittteh-ar.init.BaaSenAltInit"noonDotbelow-ar.init.BaaSenAltInit noonVabove-ar.init.BaaSenAltInit!alefMaksura-ar.init.BaaSenAltInittehRing-ar.init.BaaSenAltInit-behTwodotsbelowDotabove-ar.init.BaaSenAltInit'yehThreedotsbelow-ar.init.BaaSenAltInite-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInityehFarsi-ar.init.BaaSenAltInit&noonTwodotsbelow-ar.init.BaaSenAltInit#sheenDotbelow-ar.medi.BaaSenAltInit.seenTwodotsverticalabove-ar.medi.BaaSenAltInitseen-ar.medi.BaaSenAltInit(seenVinvertedabove-ar.medi.BaaSenAltInit#seenFourabove-ar.medi.BaaSenAltInitsheen-ar.medi.BaaSenAltInit3seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit'seenFourdotsabove-ar.medi.BaaSenAltInit*seenDotbelowDotabove-ar.medi.BaaSenAltInit(seenThreedotsbelow-ar.medi.BaaSenAltInit)sheenThreedotsbelow-ar.medi.BaaSenAltInitrreh-ar.fina.PostToothrehv-ar.fina.PostToothrehRing-ar.fina.PostToothrehDotbelow-ar.fina.PostToothrehVbelow-ar.fina.PostTooth%rehDotbelowdotabove-ar.fina.PostToothrehTwodots-ar.fina.PostToothjeh-ar.fina.PostToothrehFourdots-ar.fina.PostToothrehStroke-ar.fina.PostTooth#rehVinvertedabove-ar.fina.PostToothzain-ar.fina.PostTooth3rehTwodotshorizontalaboveTahabove-ar.fina.PostToothreh-ar.fina.PostTooth)rehTwodotsverticalabove-ar.fina.PostToothrehHamzaabove-ar.fina.PostTooth#yehFarsiFourbelow-ar.fina.PostTooth#yehThreedotsbelow-ar.fina.PostTooth"yehFarsiTwoabove-ar.fina.PostTooth(yehFarsiThreedotsabove-ar.fina.PostTooth#yehFarsiVinverted-ar.fina.PostTooth&yehFarsiTwodotsabove-ar.fina.PostToothe-ar.fina.PostToothalefMaksura-ar.fina.PostTooth$yehFarsiThreeabove-ar.fina.PostToothyehTail-ar.fina.PostToothyehFarsi-ar.fina.PostToothyehHamzaabove-ar.fina.PostToothyehKashmiri-ar.fina.PostToothyeh-ar.fina.PostToothyehVabove-ar.fina.PostTooth"yehFarsiFourbelow-ar.init.AboveHaabeheh-ar.init.AboveHaa#yehFarsiThreeabove-ar.init.AboveHaanoonRing-ar.init.AboveHaa,behThreedotshorizontalbelow-ar.init.AboveHaabehVabove-ar.init.AboveHaanoonTahabove-ar.init.AboveHaayehVabove-ar.init.AboveHaa!yehFarsiTwoabove-ar.init.AboveHaa#noonThreedotsabove-ar.init.AboveHaayehHamzaabove-ar.init.AboveHaabehDotless-ar.init.AboveHaayehKashmiri-ar.init.AboveHaayeh-ar.init.AboveHaarnoon-ar.init.AboveHaateheh-ar.init.AboveHaa"behVinvertedbelow-ar.init.AboveHaa!tehThreedotsdown-ar.init.AboveHaapeh-ar.init.AboveHaabeeh-ar.init.AboveHaabeh-ar.init.AboveHaatteheh-ar.init.AboveHaa$behThreedotsupabove-ar.init.AboveHaanoon-ar.init.AboveHaa$tehThreedotsupbelow-ar.init.AboveHaa$behThreedotsupbelow-ar.init.AboveHaateh-ar.init.AboveHaahighhamzaYeh-ar.init.AboveHaa"yehFarsiVinverted-ar.init.AboveHaatheh-ar.init.AboveHaatteh-ar.init.AboveHaanoonDotbelow-ar.init.AboveHaanoonVabove-ar.init.AboveHaaalefMaksura-ar.init.AboveHaatehRing-ar.init.AboveHaa(behTwodotsbelowDotabove-ar.init.AboveHaa"yehThreedotsbelow-ar.init.AboveHaae-ar.init.AboveHaanoonghunna-ar.init.AboveHaayehFarsi-ar.init.AboveHaa!noonTwodotsbelow-ar.init.AboveHaa$yehFarsiFourbelow-ar.init.BaaHaaInitbeheh-ar.init.BaaHaaInit%yehFarsiThreeabove-ar.init.BaaHaaInitnoonRing-ar.init.BaaHaaInit.behThreedotshorizontalbelow-ar.init.BaaHaaInitbehVabove-ar.init.BaaHaaInitnoonTahabove-ar.init.BaaHaaInityehVabove-ar.init.BaaHaaInit#yehFarsiTwoabove-ar.init.BaaHaaInit%noonThreedotsabove-ar.init.BaaHaaInit yehHamzaabove-ar.init.BaaHaaInitbehDotless-ar.init.BaaHaaInityehKashmiri-ar.init.BaaHaaInityeh-ar.init.BaaHaaInitrnoon-ar.init.BaaHaaInitteheh-ar.init.BaaHaaInit$behVinvertedbelow-ar.init.BaaHaaInit#tehThreedotsdown-ar.init.BaaHaaInitpeh-ar.init.BaaHaaInitbeeh-ar.init.BaaHaaInitbeh-ar.init.BaaHaaInittteheh-ar.init.BaaHaaInit&behThreedotsupabove-ar.init.BaaHaaInitnoon-ar.init.BaaHaaInit&tehThreedotsupbelow-ar.init.BaaHaaInit&behThreedotsupbelow-ar.init.BaaHaaInitteh-ar.init.BaaHaaInithighhamzaYeh-ar.init.BaaHaaInit$yehFarsiVinverted-ar.init.BaaHaaInittheh-ar.init.BaaHaaInittteh-ar.init.BaaHaaInitnoonDotbelow-ar.init.BaaHaaInitnoonVabove-ar.init.BaaHaaInitalefMaksura-ar.init.BaaHaaInittehRing-ar.init.BaaHaaInit*behTwodotsbelowDotabove-ar.init.BaaHaaInit$yehThreedotsbelow-ar.init.BaaHaaInite-ar.init.BaaHaaInitnoonghunna-ar.init.BaaHaaInityehFarsi-ar.init.BaaHaaInit#noonTwodotsbelow-ar.init.BaaHaaInit'yehFarsiFourbelow-ar.init.BaaHaaMemInitbeheh-ar.init.BaaHaaMemInit(yehFarsiThreeabove-ar.init.BaaHaaMemInitnoonRing-ar.init.BaaHaaMemInit1behThreedotshorizontalbelow-ar.init.BaaHaaMemInitbehVabove-ar.init.BaaHaaMemInit"noonTahabove-ar.init.BaaHaaMemInityehVabove-ar.init.BaaHaaMemInit&yehFarsiTwoabove-ar.init.BaaHaaMemInit(noonThreedotsabove-ar.init.BaaHaaMemInit#yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInit!yehKashmiri-ar.init.BaaHaaMemInityeh-ar.init.BaaHaaMemInitrnoon-ar.init.BaaHaaMemInitteheh-ar.init.BaaHaaMemInit'behVinvertedbelow-ar.init.BaaHaaMemInit&tehThreedotsdown-ar.init.BaaHaaMemInitpeh-ar.init.BaaHaaMemInitbeeh-ar.init.BaaHaaMemInitbeh-ar.init.BaaHaaMemInittteheh-ar.init.BaaHaaMemInit)behThreedotsupabove-ar.init.BaaHaaMemInitnoon-ar.init.BaaHaaMemInit)tehThreedotsupbelow-ar.init.BaaHaaMemInit)behThreedotsupbelow-ar.init.BaaHaaMemInitteh-ar.init.BaaHaaMemInit"highhamzaYeh-ar.init.BaaHaaMemInit'yehFarsiVinverted-ar.init.BaaHaaMemInittheh-ar.init.BaaHaaMemInittteh-ar.init.BaaHaaMemInit"noonDotbelow-ar.init.BaaHaaMemInit noonVabove-ar.init.BaaHaaMemInit!alefMaksura-ar.init.BaaHaaMemInittehRing-ar.init.BaaHaaMemInit-behTwodotsbelowDotabove-ar.init.BaaHaaMemInit'yehThreedotsbelow-ar.init.BaaHaaMemInite-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInityehFarsi-ar.init.BaaHaaMemInit&noonTwodotsbelow-ar.init.BaaHaaMemInitkhah-ar.medi.BaaHaaMemInithah-ar.medi.BaaHaaMemInit#hahHamzaabove-ar.medi.BaaHaaMemInittcheheh-ar.medi.BaaHaaMemInit'hahThreedotsabove-ar.medi.BaaHaaMemInitjeem-ar.medi.BaaHaaMemInit-hahTwodotsverticalabove-ar.medi.BaaHaaMemInit/hahTwodotshorizontalabove-ar.medi.BaaHaaMemInitdyeh-ar.medi.BaaHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit!hahTahbelow-ar.medi.BaaHaaMemInitnyeh-ar.medi.BaaHaaMemInit#tchehDotabove-ar.medi.BaaHaaMemInit"hahFourbelow-ar.medi.BaaHaaMemInit)hahThreedotsupbelow-ar.medi.BaaHaaMemInit!hahTahabove-ar.medi.BaaHaaMemInittcheh-ar.medi.BaaHaaMemInitkhah-ar.fina.AboveHaaIsolhah-ar.fina.AboveHaaIsol"hahHamzaabove-ar.fina.AboveHaaIsoltcheheh-ar.fina.AboveHaaIsol&hahThreedotsabove-ar.fina.AboveHaaIsoljeem-ar.fina.AboveHaaIsol,hahTwodotsverticalabove-ar.fina.AboveHaaIsol.hahTwodotshorizontalabove-ar.fina.AboveHaaIsoldyeh-ar.fina.AboveHaaIsol1hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol hahTahbelow-ar.fina.AboveHaaIsolnyeh-ar.fina.AboveHaaIsol"tchehDotabove-ar.fina.AboveHaaIsol!hahFourbelow-ar.fina.AboveHaaIsol(hahThreedotsupbelow-ar.fina.AboveHaaIsol hahTahabove-ar.fina.AboveHaaIsoltcheh-ar.fina.AboveHaaIsollamVabove-ar.init.LamHaaHaaInit'lamThreedotsabove-ar.init.LamHaaHaaInitlam-ar.init.LamHaaHaaInit'lamThreedotsbelow-ar.init.LamHaaHaaInit!lamDotabove-ar.init.LamHaaHaaInitlamBar-ar.init.LamHaaHaaInitghainDotbelow-ar.init.Finjanighain-ar.init.Finjani%ainThreedotsdownabove-ar.init.Finjani)ainTwodotshorizontalabove-ar.init.Finjani'ainTwodotsverticalabove-ar.init.FinjaniainThreedots-ar.init.Finjaniain-ar.init.Finjanikhah-ar.init.Finjanihah-ar.init.FinjanihahHamzaabove-ar.init.Finjanitcheheh-ar.init.Finjani!hahThreedotsabove-ar.init.Finjanijeem-ar.init.Finjani'hahTwodotsverticalabove-ar.init.Finjani)hahTwodotshorizontalabove-ar.init.Finjanidyeh-ar.init.Finjani,hahTahTwodotshorizontalabove-ar.init.FinjanihahTahbelow-ar.init.Finjaninyeh-ar.init.FinjanitchehDotabove-ar.init.FinjanihahFourbelow-ar.init.Finjani#hahThreedotsupbelow-ar.init.FinjanihahTahabove-ar.init.Finjanitcheh-ar.init.Finjanikhah-ar.medi.Finjanihah-ar.medi.FinjanihahHamzaabove-ar.medi.Finjanitcheheh-ar.medi.Finjani!hahThreedotsabove-ar.medi.Finjanijeem-ar.medi.Finjani'hahTwodotsverticalabove-ar.medi.Finjani)hahTwodotshorizontalabove-ar.medi.Finjanidyeh-ar.medi.Finjani,hahTahTwodotshorizontalabove-ar.medi.FinjanihahTahbelow-ar.medi.Finjaninyeh-ar.medi.FinjanitchehDotabove-ar.medi.FinjanihahFourbelow-ar.medi.Finjani#hahThreedotsupbelow-ar.medi.FinjanihahTahabove-ar.medi.Finjanitcheh-ar.medi.FinjanisheenDotbelow-ar.init.PreYaa'seenTwodotsverticalabove-ar.init.PreYaaseen-ar.init.PreYaa!seenVinvertedabove-ar.init.PreYaaseenFourabove-ar.init.PreYaasheen-ar.init.PreYaa,seenTahTwodotshorizontalabove-ar.init.PreYaa seenFourdotsabove-ar.init.PreYaa#seenDotbelowDotabove-ar.init.PreYaa!seenThreedotsbelow-ar.init.PreYaa"sheenThreedotsbelow-ar.init.PreYaasheenDotbelow-ar.medi.PreYaa'seenTwodotsverticalabove-ar.medi.PreYaaseen-ar.medi.PreYaa!seenVinvertedabove-ar.medi.PreYaaseenFourabove-ar.medi.PreYaasheen-ar.medi.PreYaa,seenTahTwodotshorizontalabove-ar.medi.PreYaa seenFourdotsabove-ar.medi.PreYaa#seenDotbelowDotabove-ar.medi.PreYaa!seenThreedotsbelow-ar.medi.PreYaa"sheenThreedotsbelow-ar.medi.PreYaasadTwodotsbelow-ar.init.PreYaadadDotbelow-ar.init.PreYaadad-ar.init.PreYaasadThreedots-ar.init.PreYaasad-ar.init.PreYaasadTwodotsbelow-ar.medi.PreYaadadDotbelow-ar.medi.PreYaadad-ar.medi.PreYaasadThreedots-ar.medi.PreYaasad-ar.medi.PreYaayehFarsiFourbelow-ar.init.Highbeheh-ar.init.HighyehFarsiThreeabove-ar.init.HighnoonRing-ar.init.High(behThreedotshorizontalbelow-ar.init.HighbehVabove-ar.init.HighnoonTahabove-ar.init.HighyehVabove-ar.init.HighyehFarsiTwoabove-ar.init.HighnoonThreedotsabove-ar.init.HighyehHamzaabove-ar.init.HighbehDotless-ar.init.HighyehKashmiri-ar.init.Highyeh-ar.init.Highrnoon-ar.init.Highteheh-ar.init.HighbehVinvertedbelow-ar.init.HightehThreedotsdown-ar.init.Highpeh-ar.init.Highbeeh-ar.init.Highbeh-ar.init.Hightteheh-ar.init.High behThreedotsupabove-ar.init.Highnoon-ar.init.High tehThreedotsupbelow-ar.init.High behThreedotsupbelow-ar.init.Highteh-ar.init.HighhighhamzaYeh-ar.init.HighyehFarsiVinverted-ar.init.Hightheh-ar.init.Hightteh-ar.init.HighnoonDotbelow-ar.init.HighnoonVabove-ar.init.HighalefMaksura-ar.init.HightehRing-ar.init.High$behTwodotsbelowDotabove-ar.init.HighyehThreedotsbelow-ar.init.Highe-ar.init.Highnoonghunna-ar.init.HighyehFarsi-ar.init.HighnoonTwodotsbelow-ar.init.HighyehFarsiFourbelow-ar.medi.Highbeheh-ar.medi.HighyehFarsiThreeabove-ar.medi.HighnoonRing-ar.medi.High(behThreedotshorizontalbelow-ar.medi.HighbehVabove-ar.medi.HighnoonTahabove-ar.medi.HighyehVabove-ar.medi.HighyehFarsiTwoabove-ar.medi.HighnoonThreedotsabove-ar.medi.HighyehHamzaabove-ar.medi.HighbehDotless-ar.medi.HighyehKashmiri-ar.medi.Highyeh-ar.medi.Highrnoon-ar.medi.Highteheh-ar.medi.HighbehVinvertedbelow-ar.medi.HightehThreedotsdown-ar.medi.Highpeh-ar.medi.Highbeeh-ar.medi.Highbeh-ar.medi.Hightteheh-ar.medi.High behThreedotsupabove-ar.medi.Highnoon-ar.medi.High tehThreedotsupbelow-ar.medi.High behThreedotsupbelow-ar.medi.Highteh-ar.medi.HighyehFarsiVinverted-ar.medi.Hightheh-ar.medi.Hightteh-ar.medi.HighnoonDotbelow-ar.medi.HighnoonVabove-ar.medi.HighalefMaksura-ar.medi.HightehRing-ar.medi.High$behTwodotsbelowDotabove-ar.medi.HighyehThreedotsbelow-ar.medi.Highe-ar.medi.Highnoonghunna-ar.medi.HighyehFarsi-ar.medi.HighnoonTwodotsbelow-ar.medi.HighsheenDotbelow-ar.fina.BaaSen'seenTwodotsverticalabove-ar.fina.BaaSenseen-ar.fina.BaaSen!seenVinvertedabove-ar.fina.BaaSenseenFourabove-ar.fina.BaaSensheen-ar.fina.BaaSen,seenTahTwodotshorizontalabove-ar.fina.BaaSen seenFourdotsabove-ar.fina.BaaSen#seenDotbelowDotabove-ar.fina.BaaSen!seenThreedotsbelow-ar.fina.BaaSen"sheenThreedotsbelow-ar.fina.BaaSenmeem-ar.fina.PostToothyehFarsiFourbelow-ar.init.Widebeheh-ar.init.WideyehFarsiThreeabove-ar.init.WidenoonRing-ar.init.Wide(behThreedotshorizontalbelow-ar.init.WidebehVabove-ar.init.WidenoonTahabove-ar.init.WideyehVabove-ar.init.WideyehFarsiTwoabove-ar.init.WidenoonThreedotsabove-ar.init.WideyehHamzaabove-ar.init.WidebehDotless-ar.init.WideyehKashmiri-ar.init.Wideyeh-ar.init.Widernoon-ar.init.Wideteheh-ar.init.WidebehVinvertedbelow-ar.init.WidetehThreedotsdown-ar.init.Widepeh-ar.init.Widebeeh-ar.init.Widebeh-ar.init.Widetteheh-ar.init.Wide behThreedotsupabove-ar.init.Widenoon-ar.init.Wide tehThreedotsupbelow-ar.init.Wide behThreedotsupbelow-ar.init.Wideteh-ar.init.WidehighhamzaYeh-ar.init.WideyehFarsiVinverted-ar.init.Widetheh-ar.init.Widetteh-ar.init.WidenoonDotbelow-ar.init.WidenoonVabove-ar.init.WidealefMaksura-ar.init.WidetehRing-ar.init.Wide$behTwodotsbelowDotabove-ar.init.WideyehThreedotsbelow-ar.init.Widee-ar.init.Widenoonghunna-ar.init.WideyehFarsi-ar.init.WidenoonTwodotsbelow-ar.init.Widekhah-ar.medi.HaaHaaInithah-ar.medi.HaaHaaInit hahHamzaabove-ar.medi.HaaHaaInittcheheh-ar.medi.HaaHaaInit$hahThreedotsabove-ar.medi.HaaHaaInitjeem-ar.medi.HaaHaaInit*hahTwodotsverticalabove-ar.medi.HaaHaaInit,hahTwodotshorizontalabove-ar.medi.HaaHaaInitdyeh-ar.medi.HaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.HaaHaaInithahTahbelow-ar.medi.HaaHaaInitnyeh-ar.medi.HaaHaaInit tchehDotabove-ar.medi.HaaHaaInithahFourbelow-ar.medi.HaaHaaInit&hahThreedotsupbelow-ar.medi.HaaHaaInithahTahabove-ar.medi.HaaHaaInittcheh-ar.medi.HaaHaaInitkhah-ar.medi.AynHaaInithah-ar.medi.AynHaaInit hahHamzaabove-ar.medi.AynHaaInittcheheh-ar.medi.AynHaaInit$hahThreedotsabove-ar.medi.AynHaaInitjeem-ar.medi.AynHaaInit*hahTwodotsverticalabove-ar.medi.AynHaaInit,hahTwodotshorizontalabove-ar.medi.AynHaaInitdyeh-ar.medi.AynHaaInit/hahTahTwodotshorizontalabove-ar.medi.AynHaaInithahTahbelow-ar.medi.AynHaaInitnyeh-ar.medi.AynHaaInit tchehDotabove-ar.medi.AynHaaInithahFourbelow-ar.medi.AynHaaInit&hahThreedotsupbelow-ar.medi.AynHaaInithahTahabove-ar.medi.AynHaaInittcheh-ar.medi.AynHaaInitmeem-ar.medi.LamMemInitTatweelheh-ar.init.AboveHaahehgoal-ar.init.AboveHaakhah-ar.init.AboveHaahah-ar.init.AboveHaahahHamzaabove-ar.init.AboveHaatcheheh-ar.init.AboveHaa"hahThreedotsabove-ar.init.AboveHaajeem-ar.init.AboveHaa(hahTwodotsverticalabove-ar.init.AboveHaa*hahTwodotshorizontalabove-ar.init.AboveHaadyeh-ar.init.AboveHaa-hahTahTwodotshorizontalabove-ar.init.AboveHaahahTahbelow-ar.init.AboveHaanyeh-ar.init.AboveHaatchehDotabove-ar.init.AboveHaahahFourbelow-ar.init.AboveHaa$hahThreedotsupbelow-ar.init.AboveHaahahTahabove-ar.init.AboveHaatcheh-ar.init.AboveHaaghainDotbelow-ar.init.AboveHaaghain-ar.init.AboveHaa&ainThreedotsdownabove-ar.init.AboveHaa*ainTwodotshorizontalabove-ar.init.AboveHaa(ainTwodotsverticalabove-ar.init.AboveHaaainThreedots-ar.init.AboveHaaain-ar.init.AboveHaakhah-ar.fina.AboveHaaIsol2hah-ar.fina.AboveHaaIsol2#hahHamzaabove-ar.fina.AboveHaaIsol2tcheheh-ar.fina.AboveHaaIsol2'hahThreedotsabove-ar.fina.AboveHaaIsol2jeem-ar.fina.AboveHaaIsol2-hahTwodotsverticalabove-ar.fina.AboveHaaIsol2/hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2dyeh-ar.fina.AboveHaaIsol22hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2!hahTahbelow-ar.fina.AboveHaaIsol2nyeh-ar.fina.AboveHaaIsol2#tchehDotabove-ar.fina.AboveHaaIsol2"hahFourbelow-ar.fina.AboveHaaIsol2)hahThreedotsupbelow-ar.fina.AboveHaaIsol2!hahTahabove-ar.fina.AboveHaaIsol2tcheh-ar.fina.AboveHaaIsol2meem-ar.init.AboveHaa,kehehTwodotshorizontalabove-ar.init.AboveHaa$kehehThreedotsbelow-ar.init.AboveHaa*kafTwodotshorizontalabove-ar.init.AboveHaa&kehehThreedotsupbelow-ar.init.AboveHaakaf-ar.init.AboveHaagafRing-ar.init.AboveHaagueh-ar.init.AboveHaa gafTwodotsbelow-ar.init.AboveHaakafRing-ar.init.AboveHaakafDotabove-ar.init.AboveHaang-ar.init.AboveHaa"kafThreedotsbelow-ar.init.AboveHaagaf-ar.init.AboveHaakeheh-ar.init.AboveHaagafThreedots-ar.init.AboveHaa$kehehThreedotsabove-ar.init.AboveHaakehehDotabove-ar.init.AboveHaangoeh-ar.init.AboveHaa*kehehTwodotshorizontalabove-ar.init.KafLam"kehehThreedotsbelow-ar.init.KafLam(kafTwodotshorizontalabove-ar.init.KafLam$kehehThreedotsupbelow-ar.init.KafLamkaf-ar.init.KafLamgafRing-ar.init.KafLamgueh-ar.init.KafLamgafTwodotsbelow-ar.init.KafLamkafRing-ar.init.KafLamkafDotabove-ar.init.KafLamng-ar.init.KafLam kafThreedotsbelow-ar.init.KafLamgaf-ar.init.KafLamkeheh-ar.init.KafLamgafThreedots-ar.init.KafLam"kehehThreedotsabove-ar.init.KafLamkehehDotabove-ar.init.KafLamngoeh-ar.init.KafLam.kehehTwodotshorizontalabove-ar.fina.KafKafFina&kehehThreedotsbelow-ar.fina.KafKafFina,kafTwodotshorizontalabove-ar.fina.KafKafFina(kehehThreedotsupbelow-ar.fina.KafKafFinakaf-ar.fina.KafKafFinagafRing-ar.fina.KafKafFinagueh-ar.fina.KafKafFina"gafTwodotsbelow-ar.fina.KafKafFinakafRing-ar.fina.KafKafFinakafDotabove-ar.fina.KafKafFinang-ar.fina.KafKafFina$kafThreedotsbelow-ar.fina.KafKafFinagaf-ar.fina.KafKafFinakeheh-ar.fina.KafKafFinagafThreedots-ar.fina.KafKafFina&kehehThreedotsabove-ar.fina.KafKafFina kehehDotabove-ar.fina.KafKafFinangoeh-ar.fina.KafKafFinalamVabove-ar.medi.KafLam lamThreedotsabove-ar.medi.KafLamlam-ar.medi.KafLam lamThreedotsbelow-ar.medi.KafLamlamDotabove-ar.medi.KafLamlamBar-ar.medi.KafLamlamVabove-ar.medi.KafLamMemMedi'lamThreedotsabove-ar.medi.KafLamMemMedilam-ar.medi.KafLamMemMedi'lamThreedotsbelow-ar.medi.KafLamMemMedi!lamDotabove-ar.medi.KafLamMemMedilamBar-ar.medi.KafLamMemMedi*kehehTwodotshorizontalabove-ar.medi.KafLam"kehehThreedotsbelow-ar.medi.KafLam(kafTwodotshorizontalabove-ar.medi.KafLam$kehehThreedotsupbelow-ar.medi.KafLamkaf-ar.medi.KafLamgafRing-ar.medi.KafLamgueh-ar.medi.KafLamgafTwodotsbelow-ar.medi.KafLamkafRing-ar.medi.KafLamkafDotabove-ar.medi.KafLamng-ar.medi.KafLam kafThreedotsbelow-ar.medi.KafLamgaf-ar.medi.KafLamkeheh-ar.medi.KafLamgafThreedots-ar.medi.KafLam"kehehThreedotsabove-ar.medi.KafLamkehehDotabove-ar.medi.KafLamngoeh-ar.medi.KafLamlamVabove-ar.medi.KafLamHehIsol'lamThreedotsabove-ar.medi.KafLamHehIsollam-ar.medi.KafLamHehIsol'lamThreedotsbelow-ar.medi.KafLamHehIsol!lamDotabove-ar.medi.KafLamHehIsollamBar-ar.medi.KafLamHehIsollamVabove-ar.medi.KafLamYaa#lamThreedotsabove-ar.medi.KafLamYaalam-ar.medi.KafLamYaa#lamThreedotsbelow-ar.medi.KafLamYaalamDotabove-ar.medi.KafLamYaalamBar-ar.medi.KafLamYaalamVabove-ar.medi.KafLamAlf#lamThreedotsabove-ar.medi.KafLamAlflam-ar.medi.KafLamAlf#lamThreedotsbelow-ar.medi.KafLamAlflamDotabove-ar.medi.KafLamAlflamBar-ar.medi.KafLamAlflamVabove-ar.fina.KafLam lamThreedotsabove-ar.fina.KafLamlam-ar.fina.KafLam lamThreedotsbelow-ar.fina.KafLamlamDotabove-ar.fina.KafLamlamBar-ar.fina.KafLamalefHamzabelow-ar.fina.KafAlfalef-ar.fina.KafAlfalefThreeabove-ar.fina.KafAlfalefTwoabove-ar.fina.KafAlfalefHamzaabove-ar.fina.KafAlfalefMadda-ar.fina.KafAlf!alefWavyhamzaabove-ar.fina.KafAlf!alefWavyhamzabelow-ar.fina.KafAlfalefWasla-ar.fina.KafAlf-kehehTwodotshorizontalabove-ar.init.KafMemAlf%kehehThreedotsbelow-ar.init.KafMemAlf+kafTwodotshorizontalabove-ar.init.KafMemAlf'kehehThreedotsupbelow-ar.init.KafMemAlfkaf-ar.init.KafMemAlfgafRing-ar.init.KafMemAlfgueh-ar.init.KafMemAlf!gafTwodotsbelow-ar.init.KafMemAlfkafRing-ar.init.KafMemAlfkafDotabove-ar.init.KafMemAlfng-ar.init.KafMemAlf#kafThreedotsbelow-ar.init.KafMemAlfgaf-ar.init.KafMemAlfkeheh-ar.init.KafMemAlfgafThreedots-ar.init.KafMemAlf%kehehThreedotsabove-ar.init.KafMemAlfkehehDotabove-ar.init.KafMemAlfngoeh-ar.init.KafMemAlf-kehehTwodotshorizontalabove-ar.medi.KafMemAlf%kehehThreedotsbelow-ar.medi.KafMemAlf+kafTwodotshorizontalabove-ar.medi.KafMemAlf'kehehThreedotsupbelow-ar.medi.KafMemAlfkaf-ar.medi.KafMemAlfgafRing-ar.medi.KafMemAlfgueh-ar.medi.KafMemAlf!gafTwodotsbelow-ar.medi.KafMemAlfkafRing-ar.medi.KafMemAlfkafDotabove-ar.medi.KafMemAlfng-ar.medi.KafMemAlf#kafThreedotsbelow-ar.medi.KafMemAlfgaf-ar.medi.KafMemAlfkeheh-ar.medi.KafMemAlfgafThreedots-ar.medi.KafMemAlf%kehehThreedotsabove-ar.medi.KafMemAlfkehehDotabove-ar.medi.KafMemAlfngoeh-ar.medi.KafMemAlfmeem-ar.medi.KafMemAlflamVabove-ar.medi.KafMemLam#lamThreedotsabove-ar.medi.KafMemLamlam-ar.medi.KafMemLam#lamThreedotsbelow-ar.medi.KafMemLamlamDotabove-ar.medi.KafMemLamlamBar-ar.medi.KafMemLamlamVabove-ar.fina.KafMemLam#lamThreedotsabove-ar.fina.KafMemLamlam-ar.fina.KafMemLam#lamThreedotsbelow-ar.fina.KafMemLamlamDotabove-ar.fina.KafMemLamlamBar-ar.fina.KafMemLam alefHamzabelow-ar.fina.KafMemAlfalef-ar.fina.KafMemAlf alefThreeabove-ar.fina.KafMemAlfalefTwoabove-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlfalefMadda-ar.fina.KafMemAlf$alefWavyhamzaabove-ar.fina.KafMemAlf$alefWavyhamzabelow-ar.fina.KafMemAlfalefWasla-ar.fina.KafMemAlf*kehehTwodotshorizontalabove-ar.init.KafHeh"kehehThreedotsbelow-ar.init.KafHeh(kafTwodotshorizontalabove-ar.init.KafHeh$kehehThreedotsupbelow-ar.init.KafHehkaf-ar.init.KafHehgafRing-ar.init.KafHehgueh-ar.init.KafHehgafTwodotsbelow-ar.init.KafHehkafRing-ar.init.KafHehkafDotabove-ar.init.KafHehng-ar.init.KafHeh kafThreedotsbelow-ar.init.KafHehgaf-ar.init.KafHehkeheh-ar.init.KafHehgafThreedots-ar.init.KafHeh"kehehThreedotsabove-ar.init.KafHehkehehDotabove-ar.init.KafHehngoeh-ar.init.KafHeh*kehehTwodotshorizontalabove-ar.medi.KafHeh"kehehThreedotsbelow-ar.medi.KafHeh(kafTwodotshorizontalabove-ar.medi.KafHeh$kehehThreedotsupbelow-ar.medi.KafHehkaf-ar.medi.KafHehgafRing-ar.medi.KafHehgueh-ar.medi.KafHehgafTwodotsbelow-ar.medi.KafHehkafRing-ar.medi.KafHehkafDotabove-ar.medi.KafHehng-ar.medi.KafHeh kafThreedotsbelow-ar.medi.KafHehgaf-ar.medi.KafHehkeheh-ar.medi.KafHehgafThreedots-ar.medi.KafHeh"kehehThreedotsabove-ar.medi.KafHehkehehDotabove-ar.medi.KafHehngoeh-ar.medi.KafHehheh-ar.fina.KafHehhehgoal-ar.fina.KafHehtehMarbutagoal-ar.fina.KafHehae-ar.fina.KafHehtehMarbuta-ar.fina.KafHehdalFourdots-ar.fina.KafDal dalVinvertedabove-ar.fina.KafDaldalRing-ar.fina.KafDalddal-ar.fina.KafDal dalVinvertedbelow-ar.fina.KafDalthal-ar.fina.KafDaldal-ar.fina.KafDal)dalTwodotsverticalbelowTah-ar.fina.KafDaldahal-ar.fina.KafDaldalDotbelowTah-ar.fina.KafDaldalDotbelow-ar.fina.KafDaldalThreedotsdown-ar.fina.KafDaldul-ar.fina.KafDalddahal-ar.fina.KafDallamVabove-ar.init.LamHeh lamThreedotsabove-ar.init.LamHehlam-ar.init.LamHeh lamThreedotsbelow-ar.init.LamHehlamDotabove-ar.init.LamHehlamBar-ar.init.LamHehlamVabove-ar.medi.LamHeh lamThreedotsabove-ar.medi.LamHehlam-ar.medi.LamHeh lamThreedotsbelow-ar.medi.LamHehlamDotabove-ar.medi.LamHehlamBar-ar.medi.LamHehheh-ar.fina.LamHehhehgoal-ar.fina.LamHehtehMarbutagoal-ar.fina.LamHehae-ar.fina.LamHehtehMarbuta-ar.fina.LamHehdalFourdots-ar.fina.LamDal dalVinvertedabove-ar.fina.LamDaldalRing-ar.fina.LamDalddal-ar.fina.LamDal dalVinvertedbelow-ar.fina.LamDalthal-ar.fina.LamDaldal-ar.fina.LamDal)dalTwodotsverticalbelowTah-ar.fina.LamDaldahal-ar.fina.LamDaldalDotbelowTah-ar.fina.LamDaldalDotbelow-ar.fina.LamDaldalThreedotsdown-ar.fina.LamDaldul-ar.fina.LamDalddahal-ar.fina.LamDal.kehehTwodotshorizontalabove-ar.medi.KafMemMedi&kehehThreedotsbelow-ar.medi.KafMemMedi,kafTwodotshorizontalabove-ar.medi.KafMemMedi(kehehThreedotsupbelow-ar.medi.KafMemMedikaf-ar.medi.KafMemMedigafRing-ar.medi.KafMemMedigueh-ar.medi.KafMemMedi"gafTwodotsbelow-ar.medi.KafMemMedikafRing-ar.medi.KafMemMedikafDotabove-ar.medi.KafMemMeding-ar.medi.KafMemMedi$kafThreedotsbelow-ar.medi.KafMemMedigaf-ar.medi.KafMemMedikeheh-ar.medi.KafMemMedigafThreedots-ar.medi.KafMemMedi&kehehThreedotsabove-ar.medi.KafMemMedi kehehDotabove-ar.medi.KafMemMedingoeh-ar.medi.KafMemMedi.kehehTwodotshorizontalabove-ar.init.KafMemInit&kehehThreedotsbelow-ar.init.KafMemInit,kafTwodotshorizontalabove-ar.init.KafMemInit(kehehThreedotsupbelow-ar.init.KafMemInitkaf-ar.init.KafMemInitgafRing-ar.init.KafMemInitgueh-ar.init.KafMemInit"gafTwodotsbelow-ar.init.KafMemInitkafRing-ar.init.KafMemInitkafDotabove-ar.init.KafMemInitng-ar.init.KafMemInit$kafThreedotsbelow-ar.init.KafMemInitgaf-ar.init.KafMemInitkeheh-ar.init.KafMemInitgafThreedots-ar.init.KafMemInit&kehehThreedotsabove-ar.init.KafMemInit kehehDotabove-ar.init.KafMemInitngoeh-ar.init.KafMemInit ghainDotbelow-ar.init.AynMemInitghain-ar.init.AynMemInit(ainThreedotsdownabove-ar.init.AynMemInit,ainTwodotshorizontalabove-ar.init.AynMemInit*ainTwodotsverticalabove-ar.init.AynMemInitainThreedots-ar.init.AynMemInitain-ar.init.AynMemInitqafDotless-ar.init.FaaMemInit&fehThreedotsupbelow-ar.init.FaaMemInit"fehTwodotsbelow-ar.init.FaaMemInitqaf-ar.init.FaaMemInitfeh-ar.init.FaaMemInit$qafThreedotsabove-ar.init.FaaMemInitfehDotless-ar.init.FaaMemInit#fehDotmovedbelow-ar.init.FaaMemInitfehDotbelow-ar.init.FaaMemInitveh-ar.init.FaaMemInit$fehThreedotsbelow-ar.init.FaaMemInitpeheh-ar.init.FaaMemInitqafDotabove-ar.init.FaaMemInitkhah-ar.init.HaaMemInithah-ar.init.HaaMemInit hahHamzaabove-ar.init.HaaMemInittcheheh-ar.init.HaaMemInit$hahThreedotsabove-ar.init.HaaMemInitjeem-ar.init.HaaMemInit*hahTwodotsverticalabove-ar.init.HaaMemInit,hahTwodotshorizontalabove-ar.init.HaaMemInitdyeh-ar.init.HaaMemInit/hahTahTwodotshorizontalabove-ar.init.HaaMemInithahTahbelow-ar.init.HaaMemInitnyeh-ar.init.HaaMemInit tchehDotabove-ar.init.HaaMemInithahFourbelow-ar.init.HaaMemInit&hahThreedotsupbelow-ar.init.HaaMemInithahTahabove-ar.init.HaaMemInittcheh-ar.init.HaaMemInitheh-ar.init.HehMemInithehgoal-ar.init.HehMemInitmeem-ar.medi.KafMemMedi sheenDotbelow-ar.init.SenMemInit+seenTwodotsverticalabove-ar.init.SenMemInitseen-ar.init.SenMemInit%seenVinvertedabove-ar.init.SenMemInit seenFourabove-ar.init.SenMemInitsheen-ar.init.SenMemInit0seenTahTwodotshorizontalabove-ar.init.SenMemInit$seenFourdotsabove-ar.init.SenMemInit'seenDotbelowDotabove-ar.init.SenMemInit%seenThreedotsbelow-ar.init.SenMemInit&sheenThreedotsbelow-ar.init.SenMemInit"sadTwodotsbelow-ar.init.SadMemInitdadDotbelow-ar.init.SadMemInitdad-ar.init.SadMemInitsadThreedots-ar.init.SadMemInitsad-ar.init.SadMemInitmeem-ar.init.MemMemInitmeem-ar.medi.SenMemInit.kehehTwodotshorizontalabove-ar.init.KafYaaIsol&kehehThreedotsbelow-ar.init.KafYaaIsol,kafTwodotshorizontalabove-ar.init.KafYaaIsol(kehehThreedotsupbelow-ar.init.KafYaaIsolkaf-ar.init.KafYaaIsolgafRing-ar.init.KafYaaIsolgueh-ar.init.KafYaaIsol"gafTwodotsbelow-ar.init.KafYaaIsolkafRing-ar.init.KafYaaIsolkafDotabove-ar.init.KafYaaIsolng-ar.init.KafYaaIsol$kafThreedotsbelow-ar.init.KafYaaIsolgaf-ar.init.KafYaaIsolkeheh-ar.init.KafYaaIsolgafThreedots-ar.init.KafYaaIsol&kehehThreedotsabove-ar.init.KafYaaIsol kehehDotabove-ar.init.KafYaaIsolngoeh-ar.init.KafYaaIsol$yehFarsiFourbelow-ar.init.BaaYaaIsolbeheh-ar.init.BaaYaaIsol%yehFarsiThreeabove-ar.init.BaaYaaIsolnoonRing-ar.init.BaaYaaIsol.behThreedotshorizontalbelow-ar.init.BaaYaaIsolbehVabove-ar.init.BaaYaaIsolnoonTahabove-ar.init.BaaYaaIsolyehVabove-ar.init.BaaYaaIsol#yehFarsiTwoabove-ar.init.BaaYaaIsol%noonThreedotsabove-ar.init.BaaYaaIsol yehHamzaabove-ar.init.BaaYaaIsolbehDotless-ar.init.BaaYaaIsolyehKashmiri-ar.init.BaaYaaIsolyeh-ar.init.BaaYaaIsolrnoon-ar.init.BaaYaaIsolteheh-ar.init.BaaYaaIsol$behVinvertedbelow-ar.init.BaaYaaIsol#tehThreedotsdown-ar.init.BaaYaaIsolpeh-ar.init.BaaYaaIsolbeeh-ar.init.BaaYaaIsolbeh-ar.init.BaaYaaIsoltteheh-ar.init.BaaYaaIsol&behThreedotsupabove-ar.init.BaaYaaIsolnoon-ar.init.BaaYaaIsol&tehThreedotsupbelow-ar.init.BaaYaaIsol&behThreedotsupbelow-ar.init.BaaYaaIsolteh-ar.init.BaaYaaIsolhighhamzaYeh-ar.init.BaaYaaIsol$yehFarsiVinverted-ar.init.BaaYaaIsoltheh-ar.init.BaaYaaIsoltteh-ar.init.BaaYaaIsolnoonDotbelow-ar.init.BaaYaaIsolnoonVabove-ar.init.BaaYaaIsolalefMaksura-ar.init.BaaYaaIsoltehRing-ar.init.BaaYaaIsol*behTwodotsbelowDotabove-ar.init.BaaYaaIsol$yehThreedotsbelow-ar.init.BaaYaaIsole-ar.init.BaaYaaIsolnoonghunna-ar.init.BaaYaaIsolyehFarsi-ar.init.BaaYaaIsol#noonTwodotsbelow-ar.init.BaaYaaIsolkhah-ar.init.HaaYaaIsolhah-ar.init.HaaYaaIsol hahHamzaabove-ar.init.HaaYaaIsoltcheheh-ar.init.HaaYaaIsol$hahThreedotsabove-ar.init.HaaYaaIsoljeem-ar.init.HaaYaaIsol*hahTwodotsverticalabove-ar.init.HaaYaaIsol,hahTwodotshorizontalabove-ar.init.HaaYaaIsoldyeh-ar.init.HaaYaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaYaaIsolhahTahbelow-ar.init.HaaYaaIsolnyeh-ar.init.HaaYaaIsol tchehDotabove-ar.init.HaaYaaIsolhahFourbelow-ar.init.HaaYaaIsol&hahThreedotsupbelow-ar.init.HaaYaaIsolhahTahabove-ar.init.HaaYaaIsoltcheh-ar.init.HaaYaaIsolmeemDotabove-ar.init.MemYaaIsolmeem-ar.init.MemYaaIsolmeemDotbelow-ar.init.MemYaaIsolqafDotless-ar.init.FaaYaaIsol&fehThreedotsupbelow-ar.init.FaaYaaIsol"fehTwodotsbelow-ar.init.FaaYaaIsolqaf-ar.init.FaaYaaIsolfeh-ar.init.FaaYaaIsol$qafThreedotsabove-ar.init.FaaYaaIsolfehDotless-ar.init.FaaYaaIsol#fehDotmovedbelow-ar.init.FaaYaaIsolfehDotbelow-ar.init.FaaYaaIsolveh-ar.init.FaaYaaIsol$fehThreedotsbelow-ar.init.FaaYaaIsolpeheh-ar.init.FaaYaaIsolqafDotabove-ar.init.FaaYaaIsol ghainDotbelow-ar.init.AynYaaIsolghain-ar.init.AynYaaIsol(ainThreedotsdownabove-ar.init.AynYaaIsol,ainTwodotshorizontalabove-ar.init.AynYaaIsol*ainTwodotsverticalabove-ar.init.AynYaaIsolainThreedots-ar.init.AynYaaIsolain-ar.init.AynYaaIsollamVabove-ar.init.LamYaaIsol$lamThreedotsabove-ar.init.LamYaaIsollam-ar.init.LamYaaIsol$lamThreedotsbelow-ar.init.LamYaaIsollamDotabove-ar.init.LamYaaIsollamBar-ar.init.LamYaaIsolheh-ar.init.HehYaaIsolhehgoal-ar.init.HehYaaIsol$yehFarsiFourbelow-ar.fina.KafYaaIsol$yehThreedotsbelow-ar.fina.KafYaaIsol#yehFarsiTwoabove-ar.fina.KafYaaIsol)yehFarsiThreedotsabove-ar.fina.KafYaaIsol$yehFarsiVinverted-ar.fina.KafYaaIsol'yehFarsiTwodotsabove-ar.fina.KafYaaIsole-ar.fina.KafYaaIsolalefMaksura-ar.fina.KafYaaIsol%yehFarsiThreeabove-ar.fina.KafYaaIsolyehTail-ar.fina.KafYaaIsolyehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsolyehKashmiri-ar.fina.KafYaaIsolyeh-ar.fina.KafYaaIsolyehVabove-ar.fina.KafYaaIsol.kehehTwodotshorizontalabove-ar.init.KafMemIsol&kehehThreedotsbelow-ar.init.KafMemIsol,kafTwodotshorizontalabove-ar.init.KafMemIsol(kehehThreedotsupbelow-ar.init.KafMemIsolkaf-ar.init.KafMemIsolgafRing-ar.init.KafMemIsolgueh-ar.init.KafMemIsol"gafTwodotsbelow-ar.init.KafMemIsolkafRing-ar.init.KafMemIsolkafDotabove-ar.init.KafMemIsolng-ar.init.KafMemIsol$kafThreedotsbelow-ar.init.KafMemIsolgaf-ar.init.KafMemIsolkeheh-ar.init.KafMemIsolgafThreedots-ar.init.KafMemIsol&kehehThreedotsabove-ar.init.KafMemIsol kehehDotabove-ar.init.KafMemIsolngoeh-ar.init.KafMemIsollamVabove-ar.init.LamMemIsol$lamThreedotsabove-ar.init.LamMemIsollam-ar.init.LamMemIsol$lamThreedotsbelow-ar.init.LamMemIsollamDotabove-ar.init.LamMemIsollamBar-ar.init.LamMemIsol$yehFarsiFourbelow-ar.init.BaaMemIsolbeheh-ar.init.BaaMemIsol%yehFarsiThreeabove-ar.init.BaaMemIsolnoonRing-ar.init.BaaMemIsol.behThreedotshorizontalbelow-ar.init.BaaMemIsolbehVabove-ar.init.BaaMemIsolnoonTahabove-ar.init.BaaMemIsolyehVabove-ar.init.BaaMemIsol#yehFarsiTwoabove-ar.init.BaaMemIsol%noonThreedotsabove-ar.init.BaaMemIsol yehHamzaabove-ar.init.BaaMemIsolbehDotless-ar.init.BaaMemIsolyehKashmiri-ar.init.BaaMemIsolyeh-ar.init.BaaMemIsolrnoon-ar.init.BaaMemIsolteheh-ar.init.BaaMemIsol$behVinvertedbelow-ar.init.BaaMemIsol#tehThreedotsdown-ar.init.BaaMemIsolpeh-ar.init.BaaMemIsolbeeh-ar.init.BaaMemIsolbeh-ar.init.BaaMemIsoltteheh-ar.init.BaaMemIsol&behThreedotsupabove-ar.init.BaaMemIsolnoon-ar.init.BaaMemIsol&tehThreedotsupbelow-ar.init.BaaMemIsol&behThreedotsupbelow-ar.init.BaaMemIsolteh-ar.init.BaaMemIsolhighhamzaYeh-ar.init.BaaMemIsol$yehFarsiVinverted-ar.init.BaaMemIsoltheh-ar.init.BaaMemIsoltteh-ar.init.BaaMemIsolnoonDotbelow-ar.init.BaaMemIsolnoonVabove-ar.init.BaaMemIsolalefMaksura-ar.init.BaaMemIsoltehRing-ar.init.BaaMemIsol*behTwodotsbelowDotabove-ar.init.BaaMemIsol$yehThreedotsbelow-ar.init.BaaMemIsole-ar.init.BaaMemIsolnoonghunna-ar.init.BaaMemIsolyehFarsi-ar.init.BaaMemIsol#noonTwodotsbelow-ar.init.BaaMemIsolmeem-ar.fina.KafMemIsolmeem-ar.medi.MemAlfFina'yehFarsiFourbelow-ar.medi.BaaMemAlfFinabeheh-ar.medi.BaaMemAlfFina(yehFarsiThreeabove-ar.medi.BaaMemAlfFinanoonRing-ar.medi.BaaMemAlfFina1behThreedotshorizontalbelow-ar.medi.BaaMemAlfFinabehVabove-ar.medi.BaaMemAlfFina"noonTahabove-ar.medi.BaaMemAlfFinayehVabove-ar.medi.BaaMemAlfFina&yehFarsiTwoabove-ar.medi.BaaMemAlfFina(noonThreedotsabove-ar.medi.BaaMemAlfFina#yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFina!yehKashmiri-ar.medi.BaaMemAlfFinayeh-ar.medi.BaaMemAlfFinarnoon-ar.medi.BaaMemAlfFinateheh-ar.medi.BaaMemAlfFina'behVinvertedbelow-ar.medi.BaaMemAlfFina&tehThreedotsdown-ar.medi.BaaMemAlfFinapeh-ar.medi.BaaMemAlfFinabeeh-ar.medi.BaaMemAlfFinabeh-ar.medi.BaaMemAlfFinatteheh-ar.medi.BaaMemAlfFina)behThreedotsupabove-ar.medi.BaaMemAlfFinanoon-ar.medi.BaaMemAlfFina)tehThreedotsupbelow-ar.medi.BaaMemAlfFina)behThreedotsupbelow-ar.medi.BaaMemAlfFinateh-ar.medi.BaaMemAlfFina'yehFarsiVinverted-ar.medi.BaaMemAlfFinatheh-ar.medi.BaaMemAlfFinatteh-ar.medi.BaaMemAlfFina"noonDotbelow-ar.medi.BaaMemAlfFina noonVabove-ar.medi.BaaMemAlfFina!alefMaksura-ar.medi.BaaMemAlfFinatehRing-ar.medi.BaaMemAlfFina-behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina'yehThreedotsbelow-ar.medi.BaaMemAlfFinae-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFinayehFarsi-ar.medi.BaaMemAlfFina&noonTwodotsbelow-ar.medi.BaaMemAlfFinameem-ar.medi.BaaMemAlfFinameem-ar.medi.AlfPostTooth!alefHamzabelow-ar.fina.MemAlfFinaalef-ar.fina.MemAlfFina!alefThreeabove-ar.fina.MemAlfFinaalefTwoabove-ar.fina.MemAlfFina!alefHamzaabove-ar.fina.MemAlfFinaalefMadda-ar.fina.MemAlfFina%alefWavyhamzaabove-ar.fina.MemAlfFina%alefWavyhamzabelow-ar.fina.MemAlfFinaalefWasla-ar.fina.MemAlfFina$yehFarsiFourbelow-ar.init.BaaHehInitbeheh-ar.init.BaaHehInit%yehFarsiThreeabove-ar.init.BaaHehInitnoonRing-ar.init.BaaHehInit.behThreedotshorizontalbelow-ar.init.BaaHehInitbehVabove-ar.init.BaaHehInitnoonTahabove-ar.init.BaaHehInityehVabove-ar.init.BaaHehInit#yehFarsiTwoabove-ar.init.BaaHehInit%noonThreedotsabove-ar.init.BaaHehInit yehHamzaabove-ar.init.BaaHehInitbehDotless-ar.init.BaaHehInityehKashmiri-ar.init.BaaHehInityeh-ar.init.BaaHehInitrnoon-ar.init.BaaHehInitteheh-ar.init.BaaHehInit$behVinvertedbelow-ar.init.BaaHehInit#tehThreedotsdown-ar.init.BaaHehInitpeh-ar.init.BaaHehInitbeeh-ar.init.BaaHehInitbeh-ar.init.BaaHehInittteheh-ar.init.BaaHehInit&behThreedotsupabove-ar.init.BaaHehInitnoon-ar.init.BaaHehInit&tehThreedotsupbelow-ar.init.BaaHehInit&behThreedotsupbelow-ar.init.BaaHehInitteh-ar.init.BaaHehInithighhamzaYeh-ar.init.BaaHehInit$yehFarsiVinverted-ar.init.BaaHehInittheh-ar.init.BaaHehInittteh-ar.init.BaaHehInitnoonDotbelow-ar.init.BaaHehInitnoonVabove-ar.init.BaaHehInitalefMaksura-ar.init.BaaHehInittehRing-ar.init.BaaHehInit*behTwodotsbelowDotabove-ar.init.BaaHehInit$yehThreedotsbelow-ar.init.BaaHehInite-ar.init.BaaHehInitnoonghunna-ar.init.BaaHehInityehFarsi-ar.init.BaaHehInit#noonTwodotsbelow-ar.init.BaaHehInit$yehFarsiFourbelow-ar.medi.BaaHehMedibeheh-ar.medi.BaaHehMedi%yehFarsiThreeabove-ar.medi.BaaHehMedinoonRing-ar.medi.BaaHehMedi.behThreedotshorizontalbelow-ar.medi.BaaHehMedibehVabove-ar.medi.BaaHehMedinoonTahabove-ar.medi.BaaHehMediyehVabove-ar.medi.BaaHehMedi#yehFarsiTwoabove-ar.medi.BaaHehMedi%noonThreedotsabove-ar.medi.BaaHehMedi yehHamzaabove-ar.medi.BaaHehMedibehDotless-ar.medi.BaaHehMediyehKashmiri-ar.medi.BaaHehMediyeh-ar.medi.BaaHehMedirnoon-ar.medi.BaaHehMediteheh-ar.medi.BaaHehMedi$behVinvertedbelow-ar.medi.BaaHehMedi#tehThreedotsdown-ar.medi.BaaHehMedipeh-ar.medi.BaaHehMedibeeh-ar.medi.BaaHehMedibeh-ar.medi.BaaHehMeditteheh-ar.medi.BaaHehMedi&behThreedotsupabove-ar.medi.BaaHehMedinoon-ar.medi.BaaHehMedi&tehThreedotsupbelow-ar.medi.BaaHehMedi&behThreedotsupbelow-ar.medi.BaaHehMediteh-ar.medi.BaaHehMedi$yehFarsiVinverted-ar.medi.BaaHehMeditheh-ar.medi.BaaHehMeditteh-ar.medi.BaaHehMedinoonDotbelow-ar.medi.BaaHehMedinoonVabove-ar.medi.BaaHehMedialefMaksura-ar.medi.BaaHehMeditehRing-ar.medi.BaaHehMedi*behTwodotsbelowDotabove-ar.medi.BaaHehMedi$yehThreedotsbelow-ar.medi.BaaHehMedie-ar.medi.BaaHehMedinoonghunna-ar.medi.BaaHehMediyehFarsi-ar.medi.BaaHehMedi#noonTwodotsbelow-ar.medi.BaaHehMediheh-ar.medi.BaaHehMedihehgoal-ar.medi.BaaHehMediheh-ar.medi.PostToothhehgoal-ar.medi.PostToothlamVabove-ar.medi.KafLamMemFina'lamThreedotsabove-ar.medi.KafLamMemFinalam-ar.medi.KafLamMemFina'lamThreedotsbelow-ar.medi.KafLamMemFina!lamDotabove-ar.medi.KafLamMemFinalamBar-ar.medi.KafLamMemFinalamVabove-ar.init.LamLamInit$lamThreedotsabove-ar.init.LamLamInitlam-ar.init.LamLamInit$lamThreedotsbelow-ar.init.LamLamInitlamDotabove-ar.init.LamLamInitlamBar-ar.init.LamLamInitlamVabove-ar.medi.LamLamInit$lamThreedotsabove-ar.medi.LamLamInitlam-ar.medi.LamLamInit$lamThreedotsbelow-ar.medi.LamLamInitlamDotabove-ar.medi.LamLamInitlamBar-ar.medi.LamLamInitlamVabove-ar.medi.LamLamAlfIsol'lamThreedotsabove-ar.medi.LamLamAlfIsollam-ar.medi.LamLamAlfIsol'lamThreedotsbelow-ar.medi.LamLamAlfIsol!lamDotabove-ar.medi.LamLamAlfIsollamBar-ar.medi.LamLamAlfIsol.kehehTwodotshorizontalabove-ar.fina.LamKafIsol&kehehThreedotsbelow-ar.fina.LamKafIsol,kafTwodotshorizontalabove-ar.fina.LamKafIsol(kehehThreedotsupbelow-ar.fina.LamKafIsolkaf-ar.fina.LamKafIsolgafRing-ar.fina.LamKafIsolgueh-ar.fina.LamKafIsol"gafTwodotsbelow-ar.fina.LamKafIsolkafRing-ar.fina.LamKafIsolkafDotabove-ar.fina.LamKafIsolng-ar.fina.LamKafIsol$kafThreedotsbelow-ar.fina.LamKafIsolgaf-ar.fina.LamKafIsolkeheh-ar.fina.LamKafIsolgafThreedots-ar.fina.LamKafIsol&kehehThreedotsabove-ar.fina.LamKafIsol kehehDotabove-ar.fina.LamKafIsolngoeh-ar.fina.LamKafIsollamVabove-ar.fina.LamLamIsol$lamThreedotsabove-ar.fina.LamLamIsollam-ar.fina.LamLamIsol$lamThreedotsbelow-ar.fina.LamLamIsollamDotabove-ar.fina.LamLamIsollamBar-ar.fina.LamLamIsollamVabove-ar.medi.LamLamMedi$lamThreedotsabove-ar.medi.LamLamMedilam-ar.medi.LamLamMedi$lamThreedotsbelow-ar.medi.LamLamMedilamDotabove-ar.medi.LamLamMedilamBar-ar.medi.LamLamMedi lamVabove-ar.medi.LamLamAlefFina(lamThreedotsabove-ar.medi.LamLamAlefFinalam-ar.medi.LamLamAlefFina(lamThreedotsbelow-ar.medi.LamLamAlefFina"lamDotabove-ar.medi.LamLamAlefFinalamBar-ar.medi.LamLamAlefFinalamVabove-ar.medi.LamLamMedi2%lamThreedotsabove-ar.medi.LamLamMedi2lam-ar.medi.LamLamMedi2%lamThreedotsbelow-ar.medi.LamLamMedi2lamDotabove-ar.medi.LamLamMedi2lamBar-ar.medi.LamLamMedi2.kehehTwodotshorizontalabove-ar.fina.LamKafFina&kehehThreedotsbelow-ar.fina.LamKafFina,kafTwodotshorizontalabove-ar.fina.LamKafFina(kehehThreedotsupbelow-ar.fina.LamKafFinakaf-ar.fina.LamKafFinagafRing-ar.fina.LamKafFinagueh-ar.fina.LamKafFina"gafTwodotsbelow-ar.fina.LamKafFinakafRing-ar.fina.LamKafFinakafDotabove-ar.fina.LamKafFinang-ar.fina.LamKafFina$kafThreedotsbelow-ar.fina.LamKafFinagaf-ar.fina.LamKafFinakeheh-ar.fina.LamKafFinagafThreedots-ar.fina.LamKafFina&kehehThreedotsabove-ar.fina.LamKafFina kehehDotabove-ar.fina.LamKafFinangoeh-ar.fina.LamKafFinalamVabove-ar.fina.LamLamFina$lamThreedotsabove-ar.fina.LamLamFinalam-ar.fina.LamLamFina$lamThreedotsbelow-ar.fina.LamLamFinalamDotabove-ar.fina.LamLamFinalamBar-ar.fina.LamLamFinalamVabove-ar.medi.LamLamMemInit'lamThreedotsabove-ar.medi.LamLamMemInitlam-ar.medi.LamLamMemInit'lamThreedotsbelow-ar.medi.LamLamMemInit!lamDotabove-ar.medi.LamLamMemInitlamBar-ar.medi.LamLamMemInitlamVabove-ar.medi.LamLamHehIsol'lamThreedotsabove-ar.medi.LamLamHehIsollam-ar.medi.LamLamHehIsol'lamThreedotsbelow-ar.medi.LamLamHehIsol!lamDotabove-ar.medi.LamLamHehIsollamBar-ar.medi.LamLamHehIsollamVabove-ar.medi.LamLamYaaIsol'lamThreedotsabove-ar.medi.LamLamYaaIsollam-ar.medi.LamLamYaaIsol'lamThreedotsbelow-ar.medi.LamLamYaaIsol!lamDotabove-ar.medi.LamLamYaaIsollamBar-ar.medi.LamLamYaaIsollamVabove-ar.medi.LamLamMemMedi'lamThreedotsabove-ar.medi.LamLamMemMedilam-ar.medi.LamLamMemMedi'lamThreedotsbelow-ar.medi.LamLamMemMedi!lamDotabove-ar.medi.LamLamMemMedilamBar-ar.medi.LamLamMemMedilamVabove-ar.medi.LamLamHehFina'lamThreedotsabove-ar.medi.LamLamHehFinalam-ar.medi.LamLamHehFina'lamThreedotsbelow-ar.medi.LamLamHehFina!lamDotabove-ar.medi.LamLamHehFinalamBar-ar.medi.LamLamHehFinalamVabove-ar.medi.LamLamYaaFina'lamThreedotsabove-ar.medi.LamLamYaaFinalam-ar.medi.LamLamYaaFina'lamThreedotsbelow-ar.medi.LamLamYaaFina!lamDotabove-ar.medi.LamLamYaaFinalamBar-ar.medi.LamLamYaaFinakhah-ar.medi.1LamHaaHaaInithah-ar.medi.1LamHaaHaaInit$hahHamzaabove-ar.medi.1LamHaaHaaInittcheheh-ar.medi.1LamHaaHaaInit(hahThreedotsabove-ar.medi.1LamHaaHaaInitjeem-ar.medi.1LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInitdyeh-ar.medi.1LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit"hahTahbelow-ar.medi.1LamHaaHaaInitnyeh-ar.medi.1LamHaaHaaInit$tchehDotabove-ar.medi.1LamHaaHaaInit#hahFourbelow-ar.medi.1LamHaaHaaInit*hahThreedotsupbelow-ar.medi.1LamHaaHaaInit"hahTahabove-ar.medi.1LamHaaHaaInittcheh-ar.medi.1LamHaaHaaInitkhah-ar.medi.2LamHaaHaaInithah-ar.medi.2LamHaaHaaInit$hahHamzaabove-ar.medi.2LamHaaHaaInittcheheh-ar.medi.2LamHaaHaaInit(hahThreedotsabove-ar.medi.2LamHaaHaaInitjeem-ar.medi.2LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInitdyeh-ar.medi.2LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit"hahTahbelow-ar.medi.2LamHaaHaaInitnyeh-ar.medi.2LamHaaHaaInit$tchehDotabove-ar.medi.2LamHaaHaaInit#hahFourbelow-ar.medi.2LamHaaHaaInit*hahThreedotsupbelow-ar.medi.2LamHaaHaaInit"hahTahabove-ar.medi.2LamHaaHaaInittcheh-ar.medi.2LamHaaHaaInitkafswash-ar.initkafswash-ar.medikafswash-ar.finaalefHamzabelow-ar.LowHamzaalefWavyhamzabelow-ar.LowHamzabeheh-ar.init.LDnoonThreedotsabove-ar.init.LDpeh-ar.init.LDbeeh-ar.init.LDbeh-ar.init.LDnoonTwodotsbelow-ar.init.LDyehFarsiVinverted-ar.init.LDyehFarsiFourbelow-ar.init.LDyehFarsiThreeabove-ar.init.LDyehFarsiTwoabove-ar.init.LDyehFarsi-ar.init.LDyeh-ar.init.LDyehVabove-ar.init.LDbehThreedotsupabove-ar.init.LD&behThreedotshorizontalbelow-ar.init.LDtehThreedotsupbelow-ar.init.LDbehThreedotsupbelow-ar.init.LDbehVinvertedbelow-ar.init.LD"behTwodotsbelowDotabove-ar.init.LDnoonDotbelow-ar.init.LDyehThreedotsbelow-ar.init.LD e-ar.init.LDbeheh-ar.init.BaaRaaIsolLD'noonThreedotsabove-ar.init.BaaRaaIsolLDpeh-ar.init.BaaRaaIsolLDbeeh-ar.init.BaaRaaIsolLDbeh-ar.init.BaaRaaIsolLD%noonTwodotsbelow-ar.init.BaaRaaIsolLD&yehFarsiVinverted-ar.init.BaaRaaIsolLD&yehFarsiFourbelow-ar.init.BaaRaaIsolLD'yehFarsiThreeabove-ar.init.BaaRaaIsolLD%yehFarsiTwoabove-ar.init.BaaRaaIsolLDyehFarsi-ar.init.BaaRaaIsolLDyeh-ar.init.BaaRaaIsolLDyehVabove-ar.init.BaaRaaIsolLD(behThreedotsupabove-ar.init.BaaRaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD(tehThreedotsupbelow-ar.init.BaaRaaIsolLD(behThreedotsupbelow-ar.init.BaaRaaIsolLD&behVinvertedbelow-ar.init.BaaRaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD!noonDotbelow-ar.init.BaaRaaIsolLD&yehThreedotsbelow-ar.init.BaaRaaIsolLDe-ar.init.BaaRaaIsolLDbeheh-ar.init.BaaDalLD#noonThreedotsabove-ar.init.BaaDalLDpeh-ar.init.BaaDalLDbeeh-ar.init.BaaDalLDbeh-ar.init.BaaDalLD!noonTwodotsbelow-ar.init.BaaDalLD"yehFarsiVinverted-ar.init.BaaDalLD"yehFarsiFourbelow-ar.init.BaaDalLD#yehFarsiThreeabove-ar.init.BaaDalLD!yehFarsiTwoabove-ar.init.BaaDalLDyehFarsi-ar.init.BaaDalLDyeh-ar.init.BaaDalLDyehVabove-ar.init.BaaDalLD$behThreedotsupabove-ar.init.BaaDalLD,behThreedotshorizontalbelow-ar.init.BaaDalLD$tehThreedotsupbelow-ar.init.BaaDalLD$behThreedotsupbelow-ar.init.BaaDalLD"behVinvertedbelow-ar.init.BaaDalLD(behTwodotsbelowDotabove-ar.init.BaaDalLDnoonDotbelow-ar.init.BaaDalLD"yehThreedotsbelow-ar.init.BaaDalLDe-ar.init.BaaDalLDbeheh-ar.init.BaaMemHaaInitLD*noonThreedotsabove-ar.init.BaaMemHaaInitLDpeh-ar.init.BaaMemHaaInitLDbeeh-ar.init.BaaMemHaaInitLDbeh-ar.init.BaaMemHaaInitLD(noonTwodotsbelow-ar.init.BaaMemHaaInitLD)yehFarsiVinverted-ar.init.BaaMemHaaInitLD)yehFarsiFourbelow-ar.init.BaaMemHaaInitLD*yehFarsiThreeabove-ar.init.BaaMemHaaInitLD(yehFarsiTwoabove-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLDyeh-ar.init.BaaMemHaaInitLD!yehVabove-ar.init.BaaMemHaaInitLD+behThreedotsupabove-ar.init.BaaMemHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD+tehThreedotsupbelow-ar.init.BaaMemHaaInitLD+behThreedotsupbelow-ar.init.BaaMemHaaInitLD)behVinvertedbelow-ar.init.BaaMemHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD$noonDotbelow-ar.init.BaaMemHaaInitLD)yehThreedotsbelow-ar.init.BaaMemHaaInitLDe-ar.init.BaaMemHaaInitLDbeheh-ar.init.BaaBaaYaaLD&noonThreedotsabove-ar.init.BaaBaaYaaLDpeh-ar.init.BaaBaaYaaLDbeeh-ar.init.BaaBaaYaaLDbeh-ar.init.BaaBaaYaaLD$noonTwodotsbelow-ar.init.BaaBaaYaaLD%yehFarsiVinverted-ar.init.BaaBaaYaaLD%yehFarsiFourbelow-ar.init.BaaBaaYaaLD&yehFarsiThreeabove-ar.init.BaaBaaYaaLD$yehFarsiTwoabove-ar.init.BaaBaaYaaLDyehFarsi-ar.init.BaaBaaYaaLDyeh-ar.init.BaaBaaYaaLDyehVabove-ar.init.BaaBaaYaaLD'behThreedotsupabove-ar.init.BaaBaaYaaLD/behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD'tehThreedotsupbelow-ar.init.BaaBaaYaaLD'behThreedotsupbelow-ar.init.BaaBaaYaaLD%behVinvertedbelow-ar.init.BaaBaaYaaLD+behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD noonDotbelow-ar.init.BaaBaaYaaLD%yehThreedotsbelow-ar.init.BaaBaaYaaLDe-ar.init.BaaBaaYaaLDbeheh-ar.init.BaaNonIsolLD'noonThreedotsabove-ar.init.BaaNonIsolLDpeh-ar.init.BaaNonIsolLDbeeh-ar.init.BaaNonIsolLDbeh-ar.init.BaaNonIsolLD%noonTwodotsbelow-ar.init.BaaNonIsolLD&yehFarsiVinverted-ar.init.BaaNonIsolLD&yehFarsiFourbelow-ar.init.BaaNonIsolLD'yehFarsiThreeabove-ar.init.BaaNonIsolLD%yehFarsiTwoabove-ar.init.BaaNonIsolLDyehFarsi-ar.init.BaaNonIsolLDyeh-ar.init.BaaNonIsolLDyehVabove-ar.init.BaaNonIsolLD(behThreedotsupabove-ar.init.BaaNonIsolLD0behThreedotshorizontalbelow-ar.init.BaaNonIsolLD(tehThreedotsupbelow-ar.init.BaaNonIsolLD(behThreedotsupbelow-ar.init.BaaNonIsolLD&behVinvertedbelow-ar.init.BaaNonIsolLD,behTwodotsbelowDotabove-ar.init.BaaNonIsolLD!noonDotbelow-ar.init.BaaNonIsolLD&yehThreedotsbelow-ar.init.BaaNonIsolLDe-ar.init.BaaNonIsolLDbeheh-ar.init.BaaSenInitLD'noonThreedotsabove-ar.init.BaaSenInitLDpeh-ar.init.BaaSenInitLDbeeh-ar.init.BaaSenInitLDbeh-ar.init.BaaSenInitLD%noonTwodotsbelow-ar.init.BaaSenInitLD&yehFarsiVinverted-ar.init.BaaSenInitLD&yehFarsiFourbelow-ar.init.BaaSenInitLD'yehFarsiThreeabove-ar.init.BaaSenInitLD%yehFarsiTwoabove-ar.init.BaaSenInitLDyehFarsi-ar.init.BaaSenInitLDyeh-ar.init.BaaSenInitLDyehVabove-ar.init.BaaSenInitLD(behThreedotsupabove-ar.init.BaaSenInitLD0behThreedotshorizontalbelow-ar.init.BaaSenInitLD(tehThreedotsupbelow-ar.init.BaaSenInitLD(behThreedotsupbelow-ar.init.BaaSenInitLD&behVinvertedbelow-ar.init.BaaSenInitLD,behTwodotsbelowDotabove-ar.init.BaaSenInitLD!noonDotbelow-ar.init.BaaSenInitLD&yehThreedotsbelow-ar.init.BaaSenInitLDe-ar.init.BaaSenInitLDbeheh-ar.init.BaaMemInitLD'noonThreedotsabove-ar.init.BaaMemInitLDpeh-ar.init.BaaMemInitLDbeeh-ar.init.BaaMemInitLDbeh-ar.init.BaaMemInitLD%noonTwodotsbelow-ar.init.BaaMemInitLD&yehFarsiVinverted-ar.init.BaaMemInitLD&yehFarsiFourbelow-ar.init.BaaMemInitLD'yehFarsiThreeabove-ar.init.BaaMemInitLD%yehFarsiTwoabove-ar.init.BaaMemInitLDyehFarsi-ar.init.BaaMemInitLDyeh-ar.init.BaaMemInitLDyehVabove-ar.init.BaaMemInitLD(behThreedotsupabove-ar.init.BaaMemInitLD0behThreedotshorizontalbelow-ar.init.BaaMemInitLD(tehThreedotsupbelow-ar.init.BaaMemInitLD(behThreedotsupbelow-ar.init.BaaMemInitLD&behVinvertedbelow-ar.init.BaaMemInitLD,behTwodotsbelowDotabove-ar.init.BaaMemInitLD!noonDotbelow-ar.init.BaaMemInitLD&yehThreedotsbelow-ar.init.BaaMemInitLDe-ar.init.BaaMemInitLDbeheh-ar.init.BaaBaaHaaInitLD*noonThreedotsabove-ar.init.BaaBaaHaaInitLDpeh-ar.init.BaaBaaHaaInitLDbeeh-ar.init.BaaBaaHaaInitLDbeh-ar.init.BaaBaaHaaInitLD(noonTwodotsbelow-ar.init.BaaBaaHaaInitLD)yehFarsiVinverted-ar.init.BaaBaaHaaInitLD)yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD*yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD(yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD yehFarsi-ar.init.BaaBaaHaaInitLDyeh-ar.init.BaaBaaHaaInitLD!yehVabove-ar.init.BaaBaaHaaInitLD+behThreedotsupabove-ar.init.BaaBaaHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD+tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD+behThreedotsupbelow-ar.init.BaaBaaHaaInitLD)behVinvertedbelow-ar.init.BaaBaaHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD$noonDotbelow-ar.init.BaaBaaHaaInitLD)yehThreedotsbelow-ar.init.BaaBaaHaaInitLDe-ar.init.BaaBaaHaaInitLDbeheh-ar.init.BaaBaaIsolLD'noonThreedotsabove-ar.init.BaaBaaIsolLDpeh-ar.init.BaaBaaIsolLDbeeh-ar.init.BaaBaaIsolLDbeh-ar.init.BaaBaaIsolLD%noonTwodotsbelow-ar.init.BaaBaaIsolLD&yehFarsiVinverted-ar.init.BaaBaaIsolLD&yehFarsiFourbelow-ar.init.BaaBaaIsolLD'yehFarsiThreeabove-ar.init.BaaBaaIsolLD%yehFarsiTwoabove-ar.init.BaaBaaIsolLDyehFarsi-ar.init.BaaBaaIsolLDyeh-ar.init.BaaBaaIsolLDyehVabove-ar.init.BaaBaaIsolLD(behThreedotsupabove-ar.init.BaaBaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD(tehThreedotsupbelow-ar.init.BaaBaaIsolLD(behThreedotsupbelow-ar.init.BaaBaaIsolLD&behVinvertedbelow-ar.init.BaaBaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD!noonDotbelow-ar.init.BaaBaaIsolLD&yehThreedotsbelow-ar.init.BaaBaaIsolLDe-ar.init.BaaBaaIsolLDbeheh-ar.init.BaaBaaMemInitLD*noonThreedotsabove-ar.init.BaaBaaMemInitLDpeh-ar.init.BaaBaaMemInitLDbeeh-ar.init.BaaBaaMemInitLDbeh-ar.init.BaaBaaMemInitLD(noonTwodotsbelow-ar.init.BaaBaaMemInitLD)yehFarsiVinverted-ar.init.BaaBaaMemInitLD)yehFarsiFourbelow-ar.init.BaaBaaMemInitLD*yehFarsiThreeabove-ar.init.BaaBaaMemInitLD(yehFarsiTwoabove-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLDyeh-ar.init.BaaBaaMemInitLD!yehVabove-ar.init.BaaBaaMemInitLD+behThreedotsupabove-ar.init.BaaBaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD+tehThreedotsupbelow-ar.init.BaaBaaMemInitLD+behThreedotsupbelow-ar.init.BaaBaaMemInitLD)behVinvertedbelow-ar.init.BaaBaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD$noonDotbelow-ar.init.BaaBaaMemInitLD)yehThreedotsbelow-ar.init.BaaBaaMemInitLDe-ar.init.BaaBaaMemInitLDbeheh-ar.init.BaaSenAltInitLD*noonThreedotsabove-ar.init.BaaSenAltInitLDpeh-ar.init.BaaSenAltInitLDbeeh-ar.init.BaaSenAltInitLDbeh-ar.init.BaaSenAltInitLD(noonTwodotsbelow-ar.init.BaaSenAltInitLD)yehFarsiVinverted-ar.init.BaaSenAltInitLD)yehFarsiFourbelow-ar.init.BaaSenAltInitLD*yehFarsiThreeabove-ar.init.BaaSenAltInitLD(yehFarsiTwoabove-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLDyeh-ar.init.BaaSenAltInitLD!yehVabove-ar.init.BaaSenAltInitLD+behThreedotsupabove-ar.init.BaaSenAltInitLD3behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD+tehThreedotsupbelow-ar.init.BaaSenAltInitLD+behThreedotsupbelow-ar.init.BaaSenAltInitLD)behVinvertedbelow-ar.init.BaaSenAltInitLD/behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD$noonDotbelow-ar.init.BaaSenAltInitLD)yehThreedotsbelow-ar.init.BaaSenAltInitLDe-ar.init.BaaSenAltInitLDbeheh-ar.init.BaaHaaInitLD'noonThreedotsabove-ar.init.BaaHaaInitLDpeh-ar.init.BaaHaaInitLDbeeh-ar.init.BaaHaaInitLDbeh-ar.init.BaaHaaInitLD%noonTwodotsbelow-ar.init.BaaHaaInitLD&yehFarsiVinverted-ar.init.BaaHaaInitLD&yehFarsiFourbelow-ar.init.BaaHaaInitLD'yehFarsiThreeabove-ar.init.BaaHaaInitLD%yehFarsiTwoabove-ar.init.BaaHaaInitLDyehFarsi-ar.init.BaaHaaInitLDyeh-ar.init.BaaHaaInitLDyehVabove-ar.init.BaaHaaInitLD(behThreedotsupabove-ar.init.BaaHaaInitLD0behThreedotshorizontalbelow-ar.init.BaaHaaInitLD(tehThreedotsupbelow-ar.init.BaaHaaInitLD(behThreedotsupbelow-ar.init.BaaHaaInitLD&behVinvertedbelow-ar.init.BaaHaaInitLD,behTwodotsbelowDotabove-ar.init.BaaHaaInitLD!noonDotbelow-ar.init.BaaHaaInitLD&yehThreedotsbelow-ar.init.BaaHaaInitLDe-ar.init.BaaHaaInitLDbeheh-ar.init.BaaHaaMemInitLD*noonThreedotsabove-ar.init.BaaHaaMemInitLDpeh-ar.init.BaaHaaMemInitLDbeeh-ar.init.BaaHaaMemInitLDbeh-ar.init.BaaHaaMemInitLD(noonTwodotsbelow-ar.init.BaaHaaMemInitLD)yehFarsiVinverted-ar.init.BaaHaaMemInitLD)yehFarsiFourbelow-ar.init.BaaHaaMemInitLD*yehFarsiThreeabove-ar.init.BaaHaaMemInitLD(yehFarsiTwoabove-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLDyeh-ar.init.BaaHaaMemInitLD!yehVabove-ar.init.BaaHaaMemInitLD+behThreedotsupabove-ar.init.BaaHaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD+tehThreedotsupbelow-ar.init.BaaHaaMemInitLD+behThreedotsupbelow-ar.init.BaaHaaMemInitLD)behVinvertedbelow-ar.init.BaaHaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD$noonDotbelow-ar.init.BaaHaaMemInitLD)yehThreedotsbelow-ar.init.BaaHaaMemInitLDe-ar.init.BaaHaaMemInitLDbeheh-ar.init.HighLD!noonThreedotsabove-ar.init.HighLDpeh-ar.init.HighLDbeeh-ar.init.HighLDbeh-ar.init.HighLDnoonTwodotsbelow-ar.init.HighLD yehFarsiVinverted-ar.init.HighLD yehFarsiFourbelow-ar.init.HighLD!yehFarsiThreeabove-ar.init.HighLDyehFarsiTwoabove-ar.init.HighLDyehFarsi-ar.init.HighLDyeh-ar.init.HighLDyehVabove-ar.init.HighLD"behThreedotsupabove-ar.init.HighLD*behThreedotshorizontalbelow-ar.init.HighLD"tehThreedotsupbelow-ar.init.HighLD"behThreedotsupbelow-ar.init.HighLD behVinvertedbelow-ar.init.HighLD&behTwodotsbelowDotabove-ar.init.HighLDnoonDotbelow-ar.init.HighLD yehThreedotsbelow-ar.init.HighLDe-ar.init.HighLDbeheh-ar.init.WideLD!noonThreedotsabove-ar.init.WideLDpeh-ar.init.WideLDbeeh-ar.init.WideLDbeh-ar.init.WideLDnoonTwodotsbelow-ar.init.WideLD yehFarsiVinverted-ar.init.WideLD yehFarsiFourbelow-ar.init.WideLD!yehFarsiThreeabove-ar.init.WideLDyehFarsiTwoabove-ar.init.WideLDyehFarsi-ar.init.WideLDyeh-ar.init.WideLDyehVabove-ar.init.WideLD"behThreedotsupabove-ar.init.WideLD*behThreedotshorizontalbelow-ar.init.WideLD"tehThreedotsupbelow-ar.init.WideLD"behThreedotsupbelow-ar.init.WideLD behVinvertedbelow-ar.init.WideLD&behTwodotsbelowDotabove-ar.init.WideLDnoonDotbelow-ar.init.WideLD yehThreedotsbelow-ar.init.WideLDe-ar.init.WideLDbeheh-ar.init.BaaYaaIsolLD'noonThreedotsabove-ar.init.BaaYaaIsolLDpeh-ar.init.BaaYaaIsolLDbeeh-ar.init.BaaYaaIsolLDbeh-ar.init.BaaYaaIsolLD%noonTwodotsbelow-ar.init.BaaYaaIsolLD&yehFarsiVinverted-ar.init.BaaYaaIsolLD&yehFarsiFourbelow-ar.init.BaaYaaIsolLD'yehFarsiThreeabove-ar.init.BaaYaaIsolLD%yehFarsiTwoabove-ar.init.BaaYaaIsolLDyehFarsi-ar.init.BaaYaaIsolLDyeh-ar.init.BaaYaaIsolLDyehVabove-ar.init.BaaYaaIsolLD(behThreedotsupabove-ar.init.BaaYaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD(tehThreedotsupbelow-ar.init.BaaYaaIsolLD(behThreedotsupbelow-ar.init.BaaYaaIsolLD&behVinvertedbelow-ar.init.BaaYaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD!noonDotbelow-ar.init.BaaYaaIsolLD&yehThreedotsbelow-ar.init.BaaYaaIsolLDe-ar.init.BaaYaaIsolLDbeheh-ar.init.BaaMemIsolLD'noonThreedotsabove-ar.init.BaaMemIsolLDpeh-ar.init.BaaMemIsolLDbeeh-ar.init.BaaMemIsolLDbeh-ar.init.BaaMemIsolLD%noonTwodotsbelow-ar.init.BaaMemIsolLD&yehFarsiVinverted-ar.init.BaaMemIsolLD&yehFarsiFourbelow-ar.init.BaaMemIsolLD'yehFarsiThreeabove-ar.init.BaaMemIsolLD%yehFarsiTwoabove-ar.init.BaaMemIsolLDyehFarsi-ar.init.BaaMemIsolLDyeh-ar.init.BaaMemIsolLDyehVabove-ar.init.BaaMemIsolLD(behThreedotsupabove-ar.init.BaaMemIsolLD0behThreedotshorizontalbelow-ar.init.BaaMemIsolLD(tehThreedotsupbelow-ar.init.BaaMemIsolLD(behThreedotsupbelow-ar.init.BaaMemIsolLD&behVinvertedbelow-ar.init.BaaMemIsolLD,behTwodotsbelowDotabove-ar.init.BaaMemIsolLD!noonDotbelow-ar.init.BaaMemIsolLD&yehThreedotsbelow-ar.init.BaaMemIsolLDe-ar.init.BaaMemIsolLDbeheh-ar.init.BaaHehInitLD'noonThreedotsabove-ar.init.BaaHehInitLDpeh-ar.init.BaaHehInitLDbeeh-ar.init.BaaHehInitLDbeh-ar.init.BaaHehInitLD%noonTwodotsbelow-ar.init.BaaHehInitLD&yehFarsiVinverted-ar.init.BaaHehInitLD&yehFarsiFourbelow-ar.init.BaaHehInitLD'yehFarsiThreeabove-ar.init.BaaHehInitLD%yehFarsiTwoabove-ar.init.BaaHehInitLDyehFarsi-ar.init.BaaHehInitLDyeh-ar.init.BaaHehInitLDyehVabove-ar.init.BaaHehInitLD(behThreedotsupabove-ar.init.BaaHehInitLD0behThreedotshorizontalbelow-ar.init.BaaHehInitLD(tehThreedotsupbelow-ar.init.BaaHehInitLD(behThreedotsupbelow-ar.init.BaaHehInitLD&behVinvertedbelow-ar.init.BaaHehInitLD,behTwodotsbelowDotabove-ar.init.BaaHehInitLD!noonDotbelow-ar.init.BaaHehInitLD&yehThreedotsbelow-ar.init.BaaHehInitLDe-ar.init.BaaHehInitLDyehKashmiri-ar.initLD yehKashmiri-ar.init.BaaRaaIsolLDyehKashmiri-ar.init.BaaDalLD#yehKashmiri-ar.init.BaaMemHaaInitLDyehKashmiri-ar.init.BaaBaaYaaLD yehKashmiri-ar.init.BaaNonIsolLD yehKashmiri-ar.init.BaaSenInitLD yehKashmiri-ar.init.BaaMemInitLD#yehKashmiri-ar.init.BaaBaaHaaInitLD yehKashmiri-ar.init.BaaBaaIsolLD#yehKashmiri-ar.init.BaaBaaMemInitLD#yehKashmiri-ar.init.BaaSenAltInitLD yehKashmiri-ar.init.BaaHaaInitLD#yehKashmiri-ar.init.BaaHaaMemInitLDyehKashmiri-ar.init.HighLDyehKashmiri-ar.init.WideLD yehKashmiri-ar.init.BaaYaaIsolLD yehKashmiri-ar.init.BaaMemIsolLD yehKashmiri-ar.init.BaaHehInitLDmeemDotabove-ar.init.MemHehInitaMem.init.MemHehInitmeem-ar.init.MemHehInitmeemDotbelow-ar.init.MemHehInitalefabove-ar.isolalefabove-ar.medi hamza-ar.medihamza-ar.floatkashida-ar.long1 zero-ar.small one-ar.small two-ar.smallthree-ar.small four-ar.small five-ar.small six-ar.smallseven-ar.smalleight-ar.small nine-ar.smallzeroFarsi-ar.smalloneFarsi-ar.smalltwoFarsi-ar.smallthreeFarsi-ar.smallfourFarsi-ar.smallfiveFarsi-ar.smallsixFarsi-ar.smallsevenFarsi-ar.smalleightFarsi-ar.smallnineFarsi-ar.smallfourFarsi-ar.urd.smallsixFarsi-ar.urd.smallsevenFarsi-ar.urd.smallopenfathatan-ar.smallfatha-ar.small2dammatan-ar.smallhighwaw-ar.mediyehabove-ar.medi radical.rtlm dot.percentmeem-ar.medi.KafMemMediTatweelmeem-ar.fina.LamMemFinaExtendedmeem-ar.fina.KafMemFinaExtendedaMem.fina.Extendedmeem-ar.fina.KafMemIsolExtended kashida-ar.1alef-ar.fina.Tatweel kashida-ar.2 kashida-ar.3 kashida-ar.4#sheenDotbelow-ar.init.SenBaaMemInit.seenTwodotsverticalabove-ar.init.SenBaaMemInitseen-ar.init.SenBaaMemInit(seenVinvertedabove-ar.init.SenBaaMemInit#seenFourabove-ar.init.SenBaaMemInitsheen-ar.init.SenBaaMemInit3seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit'seenFourdotsabove-ar.init.SenBaaMemInit*seenDotbelowDotabove-ar.init.SenBaaMemInit(seenThreedotsbelow-ar.init.SenBaaMemInit)sheenThreedotsbelow-ar.init.SenBaaMemInit%sadTwodotsbelow-ar.init.SenBaaMemInit!dadDotbelow-ar.init.SenBaaMemInitdad-ar.init.SenBaaMemInit"sadThreedots-ar.init.SenBaaMemInitsad-ar.init.SenBaaMemInit aYaaBari.isol aYaaBari.finaaYaaBari.fina.PostToothaSen.init.YaaBariaSad.init.YaaBariyehbarreeThreeabove-ar.fina%yehbarreeThreeabove-ar.fina.PostToothyehbarreeTwoabove-ar.fina#yehbarreeTwoabove-ar.fina.PostToothyehbarree-ar.finayehbarree-ar.fina.PostToothsheenDotbelow-ar.init.YaaBari(seenTwodotsverticalabove-ar.init.YaaBariseen-ar.init.YaaBari"seenVinvertedabove-ar.init.YaaBariseenFourabove-ar.init.YaaBarisheen-ar.init.YaaBari-seenTahTwodotshorizontalabove-ar.init.YaaBari!seenFourdotsabove-ar.init.YaaBari$seenDotbelowDotabove-ar.init.YaaBari"seenThreedotsbelow-ar.init.YaaBari#sheenThreedotsbelow-ar.init.YaaBarisadTwodotsbelow-ar.init.YaaBaridadDotbelow-ar.init.YaaBaridad-ar.init.YaaBarisadThreedots-ar.init.YaaBarisad-ar.init.YaaBariaYaaBari.fina.PostAscenderalef-ar.fina.WideaBaa.init.YaaBariaFaa.init.YaaBariwawSmall-ar.lowaLam.init.YaaBariaKaf.init.YaaBari+kehehTwodotshorizontalabove-ar.init.YaaBari#kehehThreedotsbelow-ar.init.YaaBari)kafTwodotshorizontalabove-ar.init.YaaBari%kehehThreedotsupbelow-ar.init.YaaBarikaf-ar.init.YaaBarigafRing-ar.init.YaaBarigueh-ar.init.YaaBarigafTwodotsbelow-ar.init.YaaBarikafRing-ar.init.YaaBarikafDotabove-ar.init.YaaBaring-ar.init.YaaBari!kafThreedotsbelow-ar.init.YaaBarigaf-ar.init.YaaBarikeheh-ar.init.YaaBarigafThreedots-ar.init.YaaBari#kehehThreedotsabove-ar.init.YaaBarikehehDotabove-ar.init.YaaBaringoeh-ar.init.YaaBari!yehFarsiFourbelow-ar.init.YaaBaribeheh-ar.init.YaaBari"yehFarsiThreeabove-ar.init.YaaBarinoonRing-ar.init.YaaBari+behThreedotshorizontalbelow-ar.init.YaaBaribehVabove-ar.init.YaaBarinoonTahabove-ar.init.YaaBariyehVabove-ar.init.YaaBari yehFarsiTwoabove-ar.init.YaaBari"noonThreedotsabove-ar.init.YaaBariyehHamzaabove-ar.init.YaaBaribehDotless-ar.init.YaaBariyehKashmiri-ar.init.YaaBariyeh-ar.init.YaaBarirnoon-ar.init.YaaBariteheh-ar.init.YaaBari!behVinvertedbelow-ar.init.YaaBari tehThreedotsdown-ar.init.YaaBaripeh-ar.init.YaaBaribeeh-ar.init.YaaBaribeh-ar.init.YaaBaritteheh-ar.init.YaaBari#behThreedotsupabove-ar.init.YaaBarinoon-ar.init.YaaBari#tehThreedotsupbelow-ar.init.YaaBari#behThreedotsupbelow-ar.init.YaaBariteh-ar.init.YaaBarihighhamzaYeh-ar.init.YaaBari!yehFarsiVinverted-ar.init.YaaBaritheh-ar.init.YaaBaritteh-ar.init.YaaBarinoonDotbelow-ar.init.YaaBarinoonVabove-ar.init.YaaBarialefMaksura-ar.init.YaaBaritehRing-ar.init.YaaBari'behTwodotsbelowDotabove-ar.init.YaaBari!yehThreedotsbelow-ar.init.YaaBarie-ar.init.YaaBarinoonghunna-ar.init.YaaBariyehFarsi-ar.init.YaaBari noonTwodotsbelow-ar.init.YaaBari(yehbarreeThreeabove-ar.fina.PostAscender&yehbarreeTwoabove-ar.fina.PostAscenderyehbarree-ar.fina.PostAscenderlamVabove-ar.init.YaaBari!lamThreedotsabove-ar.init.YaaBarilam-ar.init.YaaBari!lamThreedotsbelow-ar.init.YaaBarilamDotabove-ar.init.YaaBarilamBar-ar.init.YaaBariqafDotless-ar.init.YaaBari#fehThreedotsupbelow-ar.init.YaaBarifehTwodotsbelow-ar.init.YaaBariqaf-ar.init.YaaBarifeh-ar.init.YaaBari!qafThreedotsabove-ar.init.YaaBarifehDotless-ar.init.YaaBari fehDotmovedbelow-ar.init.YaaBarifehDotbelow-ar.init.YaaBariveh-ar.init.YaaBari!fehThreedotsbelow-ar.init.YaaBaripeheh-ar.init.YaaBariqafDotabove-ar.init.YaaBariaYaaBari.fina.PostAynaHaa.init.YaaBariaAyn.init.YaaBariaMem.init.YaaBari#yehbarreeThreeabove-ar.fina.PostAyn!yehbarreeTwoabove-ar.fina.PostAynyehbarree-ar.fina.PostAynmeemDotabove-ar.init.YaaBarimeem-ar.init.YaaBarimeemDotbelow-ar.init.YaaBarikhah-ar.init.YaaBarihah-ar.init.YaaBarihahHamzaabove-ar.init.YaaBaritcheheh-ar.init.YaaBari!hahThreedotsabove-ar.init.YaaBarijeem-ar.init.YaaBari'hahTwodotsverticalabove-ar.init.YaaBari)hahTwodotshorizontalabove-ar.init.YaaBaridyeh-ar.init.YaaBari,hahTahTwodotshorizontalabove-ar.init.YaaBarihahTahbelow-ar.init.YaaBarinyeh-ar.init.YaaBaritchehDotabove-ar.init.YaaBarihahFourbelow-ar.init.YaaBari#hahThreedotsupbelow-ar.init.YaaBarihahTahabove-ar.init.YaaBaritcheh-ar.init.YaaBarighainDotbelow-ar.init.YaaBarighain-ar.init.YaaBari%ainThreedotsdownabove-ar.init.YaaBari)ainTwodotshorizontalabove-ar.init.YaaBari'ainTwodotsverticalabove-ar.init.YaaBariainThreedots-ar.init.YaaBariain-ar.init.YaaBariaHeh.init.YaaBariheh-ar.init.YaaBarihehgoal-ar.init.YaaBariaTaa.init.YaaBareezah-ar.init.YaaBaritah-ar.init.YaaBaritahThreedots-ar.init.YaaBariaHehKnotted.isolhehDoachashmee-ar.inithehVinvertedabove-ar.inithehDoachashmee-ar.finahehVinvertedabove-ar.finahehDoachashmee-ar.medihehVinvertedabove-ar.mediaHehKnotted.finaaHeh.medi.HehYaaFinaheh-ar.medi.HehYaaFinahehgoal-ar.medi.HehYaaFinaheh-ar.medi.PostToothHehYaahehgoal-ar.medi.PostToothHehYaa hamza.abovezero-ar.medium one-ar.medium two-ar.mediumthree-ar.mediumfour-ar.mediumfive-ar.medium six-ar.mediumseven-ar.mediumeight-ar.mediumnine-ar.mediumzeroFarsi-ar.mediumoneFarsi-ar.mediumtwoFarsi-ar.mediumthreeFarsi-ar.mediumfourFarsi-ar.mediumfiveFarsi-ar.mediumsixFarsi-ar.mediumsevenFarsi-ar.mediumeightFarsi-ar.mediumnineFarsi-ar.mediumfourFarsi-ar.urd.mediumsixFarsi-ar.urd.mediumsevenFarsi-ar.urd.mediumaAlf.fina.NarrowalefMadda-ar.fina.NarrowalefHamzaabove-ar.fina.NarrowalefHamzabelow-ar.fina.Narrowalef-ar.fina.NarrowalefWasla-ar.fina.Narrow!alefWavyhamzaabove-ar.fina.Narrow!alefWavyhamzabelow-ar.fina.NarrowalefTwoabove-ar.fina.NarrowalefThreeabove-ar.fina.Narrow smallv.aboveaHehKnotted.init.YaaBarihehDoachashmee-ar.init.YaaBaribehVbelow-ar.finabehVbelow-ar.initbehVbelow-ar.medibehVbelow-ar.init.BaaRaaIsolbehVbelow-ar.medi.BaaMemFinabehVbelow-ar.medi.LamBaaMemInitbehVbelow-ar.init.BaaDalbehVbelow-ar.init.BaaMemHaaInitbehVbelow-ar.init.BaaBaaYaabehVbelow-ar.medi.BaaBaaYaabehVbelow-ar.medi.KafBaaInitbehVbelow-ar.medi.BaaBaaInitbehVbelow-ar.init.BaaNonIsolbehVbelow-ar.init.BaaSenInitbehVbelow-ar.medi.BaaRaaFinabehVbelow-ar.init.BaaMemInitbehVbelow-ar.init.BaaBaaHaaInitbehVbelow-ar.medi.BaaBaaHaaInitbehVbelow-ar.medi.SenBaaMemInitbehVbelow-ar.init.BaaBaaIsolbehVbelow-ar.fina.BaaBaaIsolbehVbelow-ar.init.BaaBaaMemInitbehVbelow-ar.medi.BaaBaaMemInitbehVbelow-ar.medi.KafBaaMedibehVbelow-ar.medi.BaaNonFinabehVbelow-ar.medi.BaaYaaFinabehVbelow-ar.init.BaaSenAltInitbehVbelow-ar.init.AboveHaabehVbelow-ar.init.BaaHaaInitbehVbelow-ar.init.BaaHaaMemInitbehVbelow-ar.init.HighbehVbelow-ar.medi.HighbehVbelow-ar.init.WidebehVbelow-ar.init.BaaYaaIsolbehVbelow-ar.init.BaaMemIsolbehVbelow-ar.medi.BaaMemAlfFinabehVbelow-ar.init.BaaHehInitbehVbelow-ar.medi.BaaHehMedibehVbelow-ar.init.LDbehVbelow-ar.init.BaaRaaIsolLDbehVbelow-ar.init.BaaDalLD!behVbelow-ar.init.BaaMemHaaInitLDbehVbelow-ar.init.BaaBaaYaaLDbehVbelow-ar.init.BaaNonIsolLDbehVbelow-ar.init.BaaSenInitLDbehVbelow-ar.init.BaaMemInitLD!behVbelow-ar.init.BaaBaaHaaInitLDbehVbelow-ar.init.BaaBaaIsolLD!behVbelow-ar.init.BaaBaaMemInitLD!behVbelow-ar.init.BaaSenAltInitLDbehVbelow-ar.init.BaaHaaInitLD!behVbelow-ar.init.BaaHaaMemInitLDbehVbelow-ar.init.HighLDbehVbelow-ar.init.WideLDbehVbelow-ar.init.BaaYaaIsolLDbehVbelow-ar.init.BaaMemIsolLDbehVbelow-ar.init.BaaHehInitLDbehVbelow-ar.init.YaaBari vbelow-ar.low number-ar.4smallv.above.inverted zero-ar.prop one-ar.prop two-ar.prop three-ar.prop four-ar.prop five-ar.prop six-ar.prop seven-ar.prop eight-ar.prop nine-ar.propzeroFarsi-ar.proponeFarsi-ar.proptwoFarsi-ar.propthreeFarsi-ar.propfourFarsi-ar.propfiveFarsi-ar.propsixFarsi-ar.propsevenFarsi-ar.propeightFarsi-ar.propnineFarsi-ar.propfourFarsi-ar.urd.propsixFarsi-ar.urd.propsevenFarsi-ar.urd.propalefHamzaabove-ar.fina.WidealefWasla-ar.fina.WideaBaa.init.BaaBaaHeh#yehFarsiFourbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHeh$yehFarsiThreeabove-ar.init.BaaBaaHehnoonRing-ar.init.BaaBaaHeh-behThreedotshorizontalbelow-ar.init.BaaBaaHehbehVabove-ar.init.BaaBaaHehnoonTahabove-ar.init.BaaBaaHehyehVabove-ar.init.BaaBaaHeh"yehFarsiTwoabove-ar.init.BaaBaaHeh$noonThreedotsabove-ar.init.BaaBaaHehyehHamzaabove-ar.init.BaaBaaHehbehDotless-ar.init.BaaBaaHehyehKashmiri-ar.init.BaaBaaHehyeh-ar.init.BaaBaaHehrnoon-ar.init.BaaBaaHehteheh-ar.init.BaaBaaHeh#behVinvertedbelow-ar.init.BaaBaaHeh"tehThreedotsdown-ar.init.BaaBaaHehpeh-ar.init.BaaBaaHehbeeh-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehtteheh-ar.init.BaaBaaHeh%behThreedotsupabove-ar.init.BaaBaaHehnoon-ar.init.BaaBaaHeh%tehThreedotsupbelow-ar.init.BaaBaaHeh%behThreedotsupbelow-ar.init.BaaBaaHehteh-ar.init.BaaBaaHehhighhamzaYeh-ar.init.BaaBaaHeh#yehFarsiVinverted-ar.init.BaaBaaHehtheh-ar.init.BaaBaaHehtteh-ar.init.BaaBaaHehnoonDotbelow-ar.init.BaaBaaHehnoonVabove-ar.init.BaaBaaHehalefMaksura-ar.init.BaaBaaHehtehRing-ar.init.BaaBaaHeh)behTwodotsbelowDotabove-ar.init.BaaBaaHeh#yehThreedotsbelow-ar.init.BaaBaaHehe-ar.init.BaaBaaHehnoonghunna-ar.init.BaaBaaHehyehFarsi-ar.init.BaaBaaHeh"noonTwodotsbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHehLD&noonThreedotsabove-ar.init.BaaBaaHehLDpeh-ar.init.BaaBaaHehLDbeeh-ar.init.BaaBaaHehLDbeh-ar.init.BaaBaaHehLD$noonTwodotsbelow-ar.init.BaaBaaHehLD%yehFarsiVinverted-ar.init.BaaBaaHehLD%yehFarsiFourbelow-ar.init.BaaBaaHehLD&yehFarsiThreeabove-ar.init.BaaBaaHehLD$yehFarsiTwoabove-ar.init.BaaBaaHehLDyehFarsi-ar.init.BaaBaaHehLDyeh-ar.init.BaaBaaHehLDyehVabove-ar.init.BaaBaaHehLD'behThreedotsupabove-ar.init.BaaBaaHehLD/behThreedotshorizontalbelow-ar.init.BaaBaaHehLD'tehThreedotsupbelow-ar.init.BaaBaaHehLD'behThreedotsupbelow-ar.init.BaaBaaHehLD%behVinvertedbelow-ar.init.BaaBaaHehLD+behTwodotsbelowDotabove-ar.init.BaaBaaHehLD noonDotbelow-ar.init.BaaBaaHehLD%yehThreedotsbelow-ar.init.BaaBaaHehLDe-ar.init.BaaBaaHehLDcirclebelow-ar keheh-ar.altkeheh-ar.alt.fina gaf-ar.altgaf-ar.alt.finagafRing-ar.altgafRing-ar.alt.fina ngoeh-ar.altngoeh-ar.alt.finagafTwodotsbelow-ar.altgafTwodotsbelow-ar.alt.fina gueh-ar.altgueh-ar.alt.finagafThreedots-ar.altgafThreedots-ar.alt.finakehehDotabove-ar.altkehehDotabove-ar.alt.finakehehThreedotsabove-ar.altkehehThreedotsabove-ar.alt.finakehehThreedotsupbelow-ar.alt!kehehThreedotsupbelow-ar.alt.fina"kehehTwodotshorizontalabove-ar.alt'kehehTwodotshorizontalabove-ar.alt.finakehehThreedotsbelow-ar.altkehehThreedotsbelow-ar.alt.fina aGaf.isol aGaf.fina number-ar.3pagenumber-ar.3 kashida-ar.05aYaaBari.fina.PostToothFinaaBaa.medi.YaaBari!yehFarsiFourbelow-ar.medi.YaaBaribeheh-ar.medi.YaaBari"yehFarsiThreeabove-ar.medi.YaaBarinoonRing-ar.medi.YaaBari+behThreedotshorizontalbelow-ar.medi.YaaBaribehVabove-ar.medi.YaaBarinoonTahabove-ar.medi.YaaBariyehVabove-ar.medi.YaaBari yehFarsiTwoabove-ar.medi.YaaBari"noonThreedotsabove-ar.medi.YaaBariyehHamzaabove-ar.medi.YaaBaribehDotless-ar.medi.YaaBariyehKashmiri-ar.medi.YaaBariyeh-ar.medi.YaaBarirnoon-ar.medi.YaaBariteheh-ar.medi.YaaBari!behVinvertedbelow-ar.medi.YaaBari tehThreedotsdown-ar.medi.YaaBaripeh-ar.medi.YaaBaribeeh-ar.medi.YaaBaribeh-ar.medi.YaaBaritteheh-ar.medi.YaaBari#behThreedotsupabove-ar.medi.YaaBarinoon-ar.medi.YaaBari#tehThreedotsupbelow-ar.medi.YaaBari#behThreedotsupbelow-ar.medi.YaaBariteh-ar.medi.YaaBari!yehFarsiVinverted-ar.medi.YaaBaritheh-ar.medi.YaaBaritteh-ar.medi.YaaBarinoonDotbelow-ar.medi.YaaBarinoonVabove-ar.medi.YaaBarialefMaksura-ar.medi.YaaBaritehRing-ar.medi.YaaBari'behTwodotsbelowDotabove-ar.medi.YaaBari!yehThreedotsbelow-ar.medi.YaaBarie-ar.medi.YaaBarinoonghunna-ar.medi.YaaBariyehFarsi-ar.medi.YaaBari noonTwodotsbelow-ar.medi.YaaBari)yehbarreeThreeabove-ar.fina.PostToothFina'yehbarreeTwoabove-ar.fina.PostToothFinayehbarree-ar.fina.PostToothFinabehVbelow-ar.medi.YaaBariaBaa.init.BaaBaaYaaBari'yehFarsiFourbelow-ar.init.BaaBaaYaaBaribeheh-ar.init.BaaBaaYaaBari(yehFarsiThreeabove-ar.init.BaaBaaYaaBarinoonRing-ar.init.BaaBaaYaaBari1behThreedotshorizontalbelow-ar.init.BaaBaaYaaBaribehVabove-ar.init.BaaBaaYaaBari"noonTahabove-ar.init.BaaBaaYaaBariyehVabove-ar.init.BaaBaaYaaBari&yehFarsiTwoabove-ar.init.BaaBaaYaaBari(noonThreedotsabove-ar.init.BaaBaaYaaBari#yehHamzaabove-ar.init.BaaBaaYaaBari behDotless-ar.init.BaaBaaYaaBari!yehKashmiri-ar.init.BaaBaaYaaBariyeh-ar.init.BaaBaaYaaBarirnoon-ar.init.BaaBaaYaaBariteheh-ar.init.BaaBaaYaaBari'behVinvertedbelow-ar.init.BaaBaaYaaBari&tehThreedotsdown-ar.init.BaaBaaYaaBaripeh-ar.init.BaaBaaYaaBaribeeh-ar.init.BaaBaaYaaBaribeh-ar.init.BaaBaaYaaBaritteheh-ar.init.BaaBaaYaaBari)behThreedotsupabove-ar.init.BaaBaaYaaBarinoon-ar.init.BaaBaaYaaBari)tehThreedotsupbelow-ar.init.BaaBaaYaaBari)behThreedotsupbelow-ar.init.BaaBaaYaaBariteh-ar.init.BaaBaaYaaBari"highhamzaYeh-ar.init.BaaBaaYaaBari'yehFarsiVinverted-ar.init.BaaBaaYaaBaritheh-ar.init.BaaBaaYaaBaritteh-ar.init.BaaBaaYaaBari"noonDotbelow-ar.init.BaaBaaYaaBari noonVabove-ar.init.BaaBaaYaaBari!alefMaksura-ar.init.BaaBaaYaaBaritehRing-ar.init.BaaBaaYaaBari-behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari'yehThreedotsbelow-ar.init.BaaBaaYaaBarie-ar.init.BaaBaaYaaBari noonghunna-ar.init.BaaBaaYaaBariyehFarsi-ar.init.BaaBaaYaaBari&noonTwodotsbelow-ar.init.BaaBaaYaaBaribehVbelow-ar.init.BaaBaaYaaBaritcheheh-ar.init.BaaYaaBarijeem-ar.init.BaaYaaBaridyeh-ar.init.BaaYaaBari/hahTahTwodotshorizontalabove-ar.init.BaaYaaBarihahTahbelow-ar.init.BaaYaaBarinyeh-ar.init.BaaYaaBari tchehDotabove-ar.init.BaaYaaBarihahFourbelow-ar.init.BaaYaaBari&hahThreedotsupbelow-ar.init.BaaYaaBaritcheh-ar.init.BaaYaaBariaHaa.init.BaaYaaBaribehVbelow-ar.init.BaaBaaHehbehVbelow-ar.init.BaaBaaHehLDyehKashmiri-ar.init.BaaBaaHehLDdammainverted-ar.urddammainverted-ar.smallkasra-ar.smallkasratan-ar.small zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.smallyehFarsiTwodotsabove-ar.inityehFarsiThreedotsabove-ar.inityehFarsiTwodotsabove-ar.mediyehFarsiThreedotsabove-ar.medi'yehFarsiTwodotsabove-ar.init.BaaRaaIsol)yehFarsiThreedotsabove-ar.init.BaaRaaIsol'yehFarsiTwodotsabove-ar.medi.BaaMemFina)yehFarsiThreedotsabove-ar.medi.BaaMemFina*yehFarsiTwodotsabove-ar.medi.LamBaaMemInit,yehFarsiThreedotsabove-ar.medi.LamBaaMemInit#yehFarsiTwodotsabove-ar.init.BaaDal%yehFarsiThreedotsabove-ar.init.BaaDal*yehFarsiTwodotsabove-ar.init.BaaMemHaaInit,yehFarsiThreedotsabove-ar.init.BaaMemHaaInit&yehFarsiTwodotsabove-ar.init.BaaBaaYaa(yehFarsiThreedotsabove-ar.init.BaaBaaYaa&yehFarsiTwodotsabove-ar.medi.BaaBaaYaa(yehFarsiThreedotsabove-ar.medi.BaaBaaYaa'yehFarsiTwodotsabove-ar.medi.KafBaaInit)yehFarsiThreedotsabove-ar.medi.KafBaaInit'yehFarsiTwodotsabove-ar.medi.BaaBaaInit)yehFarsiThreedotsabove-ar.medi.BaaBaaInit'yehFarsiTwodotsabove-ar.init.BaaNonIsol)yehFarsiThreedotsabove-ar.init.BaaNonIsol'yehFarsiTwodotsabove-ar.init.BaaSenInit)yehFarsiThreedotsabove-ar.init.BaaSenInit'yehFarsiTwodotsabove-ar.medi.BaaRaaFina)yehFarsiThreedotsabove-ar.medi.BaaRaaFina'yehFarsiTwodotsabove-ar.init.BaaMemInit)yehFarsiThreedotsabove-ar.init.BaaMemInit*yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.SenBaaMemInit,yehFarsiThreedotsabove-ar.medi.SenBaaMemInit'yehFarsiTwodotsabove-ar.init.BaaBaaIsol)yehFarsiThreedotsabove-ar.init.BaaBaaIsol*yehFarsiTwodotsabove-ar.init.BaaBaaMemInit,yehFarsiThreedotsabove-ar.init.BaaBaaMemInit*yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit,yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit'yehFarsiTwodotsabove-ar.medi.KafBaaMedi)yehFarsiThreedotsabove-ar.medi.KafBaaMedi'yehFarsiTwodotsabove-ar.medi.BaaNonFina)yehFarsiThreedotsabove-ar.medi.BaaNonFina'yehFarsiTwodotsabove-ar.medi.BaaYaaFina)yehFarsiThreedotsabove-ar.medi.BaaYaaFina*yehFarsiTwodotsabove-ar.init.BaaSenAltInit,yehFarsiThreedotsabove-ar.init.BaaSenAltInit%yehFarsiTwodotsabove-ar.init.AboveHaa'yehFarsiThreedotsabove-ar.init.AboveHaa'yehFarsiTwodotsabove-ar.init.BaaHaaInit)yehFarsiThreedotsabove-ar.init.BaaHaaInit*yehFarsiTwodotsabove-ar.init.BaaHaaMemInit,yehFarsiThreedotsabove-ar.init.BaaHaaMemInit!yehFarsiTwodotsabove-ar.init.High#yehFarsiThreedotsabove-ar.init.High!yehFarsiTwodotsabove-ar.medi.High#yehFarsiThreedotsabove-ar.medi.High!yehFarsiTwodotsabove-ar.init.Wide#yehFarsiThreedotsabove-ar.init.Wide'yehFarsiTwodotsabove-ar.init.BaaYaaIsol)yehFarsiThreedotsabove-ar.init.BaaYaaIsol'yehFarsiTwodotsabove-ar.init.BaaMemIsol)yehFarsiThreedotsabove-ar.init.BaaMemIsol*yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina,yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina'yehFarsiTwodotsabove-ar.init.BaaHehInit)yehFarsiThreedotsabove-ar.init.BaaHehInit'yehFarsiTwodotsabove-ar.medi.BaaHehMedi)yehFarsiThreedotsabove-ar.medi.BaaHehMediyehFarsiTwodotsabove-ar.init.LD!yehFarsiThreedotsabove-ar.init.LD)yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD%yehFarsiTwodotsabove-ar.init.BaaDalLD'yehFarsiThreedotsabove-ar.init.BaaDalLD,yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD(yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD*yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD)yehFarsiTwodotsabove-ar.init.BaaNonIsolLD+yehFarsiThreedotsabove-ar.init.BaaNonIsolLD)yehFarsiTwodotsabove-ar.init.BaaSenInitLD+yehFarsiThreedotsabove-ar.init.BaaSenInitLD)yehFarsiTwodotsabove-ar.init.BaaMemInitLD+yehFarsiThreedotsabove-ar.init.BaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD)yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD,yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD.yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD)yehFarsiTwodotsabove-ar.init.BaaHaaInitLD+yehFarsiThreedotsabove-ar.init.BaaHaaInitLD,yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD#yehFarsiTwodotsabove-ar.init.HighLD%yehFarsiThreedotsabove-ar.init.HighLD#yehFarsiTwodotsabove-ar.init.WideLD%yehFarsiThreedotsabove-ar.init.WideLD)yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD)yehFarsiTwodotsabove-ar.init.BaaMemIsolLD+yehFarsiThreedotsabove-ar.init.BaaMemIsolLD)yehFarsiTwodotsabove-ar.init.BaaHehInitLD+yehFarsiThreedotsabove-ar.init.BaaHehInitLD$yehFarsiTwodotsabove-ar.init.YaaBari&yehFarsiThreedotsabove-ar.init.YaaBari&yehFarsiTwodotsabove-ar.init.BaaBaaHeh(yehFarsiThreedotsabove-ar.init.BaaBaaHeh(yehFarsiTwodotsabove-ar.init.BaaBaaHehLD*yehFarsiThreedotsabove-ar.init.BaaBaaHehLD$yehFarsiTwodotsabove-ar.medi.YaaBari&yehFarsiThreedotsabove-ar.medi.YaaBari*yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari,yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari ampersand.ara u1EE03.alt0 u1EE00.alt0 u1EE0D.alt0u1EEF0.displayu1EEF1.display u1EE13.alt0lam-ar.medi.Lellah2 kashida-ar.5 kashida-ar.6 kashida-ar.7aKaf.init.PreHehaKaf.medi.PreHeh*kehehTwodotshorizontalabove-ar.init.PreHeh"kehehThreedotsbelow-ar.init.PreHeh(kafTwodotshorizontalabove-ar.init.PreHeh$kehehThreedotsupbelow-ar.init.PreHehkaf-ar.init.PreHehgafRing-ar.init.PreHehgueh-ar.init.PreHehgafTwodotsbelow-ar.init.PreHehkafRing-ar.init.PreHehkafDotabove-ar.init.PreHehng-ar.init.PreHeh kafThreedotsbelow-ar.init.PreHehgaf-ar.init.PreHehkeheh-ar.init.PreHehgafThreedots-ar.init.PreHeh"kehehThreedotsabove-ar.init.PreHehkehehDotabove-ar.init.PreHehngoeh-ar.init.PreHeh*kehehTwodotshorizontalabove-ar.medi.PreHeh"kehehThreedotsbelow-ar.medi.PreHeh(kafTwodotshorizontalabove-ar.medi.PreHeh$kehehThreedotsupbelow-ar.medi.PreHehkaf-ar.medi.PreHehgafRing-ar.medi.PreHehgueh-ar.medi.PreHehgafTwodotsbelow-ar.medi.PreHehkafRing-ar.medi.PreHehkafDotabove-ar.medi.PreHehng-ar.medi.PreHeh kafThreedotsbelow-ar.medi.PreHehgaf-ar.medi.PreHehkeheh-ar.medi.PreHehgafThreedots-ar.medi.PreHeh"kehehThreedotsabove-ar.medi.PreHehkehehDotabove-ar.medi.PreHehngoeh-ar.medi.PreHehsmallnoon.abovesmallteh.abovesmallmeem.above zero-ar.numr one-ar.numr two-ar.numr three-ar.numr four-ar.numr five-ar.numr six-ar.numr seven-ar.numr eight-ar.numr nine-ar.numrzeroFarsi-ar.numroneFarsi-ar.numrtwoFarsi-ar.numrthreeFarsi-ar.numrfourFarsi-ar.numrfiveFarsi-ar.numrsixFarsi-ar.numrsevenFarsi-ar.numreightFarsi-ar.numrnineFarsi-ar.numrfourFarsi-ar.urd.numrsixFarsi-ar.urd.numrsevenFarsi-ar.urd.numrkafRing-ar.altkafRing-ar.alt.fina_FDFD _arrowheaduni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsGcarongcaronuni0237uni02BBuni02BCuni02BEuni02BF gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307uni0308uni030Auni030Cuni0312uni0315 dotbelowcombuni0326uni0327uni0328uni1E02uni1E03uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E1Euni1E1Funi1E24uni1E25uni1E28uni1E29uni1E2Auni1E2Buni1E40uni1E41uni1E56uni1E57uni1E60uni1E61uni1E62uni1E63uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6FWgravewgraveWacutewacute Wdieresis wdieresisuni1E92uni1E93uni1E96uni1E97Ygraveygraveuni2010uni2011 figuredashuni2015 quotereverseduni201Fonedotenleaderuni202Fminuteseconduni2038uni203Euni2042uni2074Eurouni2213 exclam.latnparenleft.latnparenright.latn period.latn slash.latnbracketleft.latnbackslash.latnbracketright.latnbraceleft.latnbar.latnbraceright.latnguillemotleft.latnguillemotright.latnf_ff_if_f_if_lf_f_lf_bf_f_bf_kf_f_kf_hf_f_hf_jf_f_j gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0323.cap uni030B.cap uni0308.capuni0308.narrow uni030C.capi.TRK zero.propone.proptwo.prop three.prop four.prop five.propsix.prop seven.prop eight.prop nine.prop zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numrone.numrtwo.numr three.numr four.numr five.numrsix.numr seven.numr eight.numr nine.numr _arrowhead2_x uni0305.100 uni0305.1000 uni0305.1100 uni0305.11400 uni0305.1200 uni0305.1300 uni0305.1500 uni0305.1600 uni0305.1700 uni0305.1800 uni0305.1900 uni0305.200 uni0305.2000 uni0305.2200 uni0305.2800 uni0305.300 uni0305.400 uni0305.500 uni0305.600 uni0305.700 uni0305.800 uni0305.900vJ *013Z[o~  ?BCLfEEGGopuvwxyzz{}~~    @Y[\]`bdz|~"##;;=DEEFbcfg458vw2 (,4BJX`nr|x   .  "]eZ0[\^_abdgjkLMOPRSTXY\]_`cdefYZ[#cdZd]`aeloNQUVWZ^abef| DDFLTarablatncurskernkern markmkmkss057 ,6@$,4<DLT\dlt|JT^h r|$TRK +51234-./0dARA dKSH dMLY dSND dURD d !"#$&()*6!"#$&()*,6X\   "$&( >4,  ,hx $FPb" *42<FnFNV^ - '^I'TI'JDD]`aeloNQUVWZ^abef ZZT6<Bf`HHHN% $*v06<BHHNTT777cc16AA}(+ Xuypy BX$:.gpEBKOYpy BX$:gpBK  bgLMOPRST\]_`defYZ[cd 99WWss )-XXuu!*]`defloNQUVWZ^abx#   @A$NxȖ$ȮȺ**06\D\\J\bPPV KL"$  IZN_%1144?BXX"#%+,(11*89+-Sb;KX hu  - @ O Wf.;44?BXX!"$+,'11)89*,Sb:JW gt  - @ O Wf.;++KL"$7799>?DDSS[\^^    IZN_qr3¼’ª˜t˜tt˜˜˜° °ž¤°¶& &#45ABXX+,1189   !Sb"2? O \ ]  -^ @ On ~     Wf.013Z~*,  ?BCEEGGovwzz~~      <[??\]`bdz|~.123E"G;;=DFVbpqP45y2013OQZ~)+  ?BCEEGGovwzz~~       } Y@T\]`bddffjz|~),-".;;==?ACDFRblqK45qRN*BHZBHBBT $*HHH606<"*$ "(:.4B:@LM LMo06MNOPXYZ567     #%)*+235:=?EFGHJKLMPQSYZ[\]_`abcdfgijklo~DXmq  !"#$%&'()*+,Wj & : O b j k l m n o p q r s t u v w x      w & : O b   ) Q d y   !"0Dghijklmnopqrstuo     9Mdw)?Ukefghiz|};? *8L_)8=>@Avxyz   j88==>>@@AAvvyyzz     jj8APW~     "%&)*+,.02378:=?EFGHJKLMPQRSTUWXYZ[\]^_`abcdfghijlmno~/35BDIKkmrt`UW\^ $ & + - M O T V    5    + M V W u w | ~ $ & + - M O T V     O Q V X w y ~ .057dmotv     )*,79>@bdik   ")68?LNUbdkxzefghiz|~ !";  (*68=?_@                jjSD96 S S+#$'(5588@AYY `` dd ff sw  $ q |& 2 E P  W `vq $66sxVV9>EPWmJ_cc8             8!  $ #"  %                   79;;>@DDGGIKMMOPSSVVZ\^_         " % & ) ) + - / / 1 2 5 5 8 8 < > @ A }                         j l n n q s v w z z | ~           " % & ) ) + - / / 1 2 5 5 8 8 < > @ A                          #%''*,/0335799;<??BBFHJKbdffiknorrtvxxz{~~,.003589<<>@BBDEHHKKOQSTIIKKNPTUWX[[]]bbdfhjll``qruv{KL"$79;;>@DDGGIKMMOPSSVVZ\^_sw         " % & ) ) + - / / 1 2 5 5 8 8 < > @ A  q { }                         j l n n q s v w z z | ~             " % & ) ) + - / / 1 2 5 5 8 8 < > @ A                           #%''*,/0335799;<??BBFHJKbdffiknorrtvxxz{~~ $6HIZN_%,.003589<<>@BBDEHHKKOQSTIIKKNPTUWX[[]]bbdfhjll``qruv{2^V J22JJԠ2ΡԠ2ڠ8 DJJ"(.4:@@FLĠtRPX^djpv$*0N ̡|V6T\Zb"ҡ(ء.`hfl0rnĠtОܞޡ4:<xz@ ~F$L*R06<BBHNTZZX`f^dllrrxx~~BjpƟޟHv| ơ &,2228888D>DJJPV\\\\bbbb""""((((....hhhhnnnnt4444::::zzzz@@@@FFFFLLLLRRRRXXXX^^^^ddddjjjjppppvvvv|||| """(((...444:::@@@FFFLLLRRRXXX^^^dddjjjpppvvv|||V h&b,288>С֣nܡ\DJPoژ22ܘ$*06<BΘښ H$*f6l<˜BNTr`flr2x~ N"(.4ș:@Fқ,2 &L,28>JΙRX^djpTVԛbvn|Zt &ҙʛ,"Йܙ22````22`22`22`ޚ $$$$$$$$$$$$$$$f*0l6š<BHNrTZffxxxxf`fxffxfflx22~~~~2r2~22~22x~~𚐚ƚҚޛzȚzқ222,22222 &222,222228>DJΗPԛV\ƛbhn tz&қ,؛ &,ژ2288>>DDJ PP "(..(.44:F@@FRLLRX^VVd\\jbb<<Rlpw{$345Mag!02gll<32 ' &"%$#7 54 !- )(0+,  6/!     ""%   . 1          *'    &$#!       821## &%654$    , '+ 73.)       &        ($       %       "!-*0/"!s҃ؓVބV`z ``XXLLzzyynZhz `nVV````````XXXLLzynnZZZhhhhhz z z z Zz XLy```````Xyyy h&,ZX28>ڄZZXX`DJP^@vlJ*|b؍Ԍ0<Hnt,x~P`yؒҌތ y>yZybntyyԍ΍ԍЎ(Ldyv|ʎyy<\Z`Bbzt hؒZyhZ>>BTNHZZZZZZZЎЎЎЎЎЎВ```````````````````ƒƒƒƒƒƄƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ̒̒̒̒̒̄’̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̒̄Ȅ΄΄΄Ԅڄbbbbbbbbbbbbb$$$$$$$$$$$$$jjjjjjjjjjjjjjjjjvvvjjjjjjjjjjjjjjjjjj ZZZZZZ"""(. 4 :::@@@@@@@@@FLLLLLpppppޅXXXXXXRXXXXjjjjjj^jjjjyyyyyydyyyyjjjyyyZZZZZZZZZZZpZZZv|22200000000000000 yyyzzzzzzzzzzzzzЅ֍tt܍t666̒̒̒̒̒̒̒̒̒̒̒̒̒̒̅̓ hhh$*606DJPyV\byyhynB2222222222t22222222222222222222222222222zzzzzzznnnnnnnnnnnnnyyyyyyyyyyyyyyyyyȇȇȇȇȇȇȇȇȇȇȇȇȇȇȇ‡ȇ·Ԍڌyyyyyy yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy((((("(((::4...4:txxxx&@&xFxxxdLxRxxxXxxxx^&dxjxxxxxxxx~~~~~~p~~~~ؒؒؒؒؒ؈vؒؒ؈|ؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒؒ؈vvvvvvvvvvؒ؈؈22222ē2222222222ʓ2tttttГttt֓tttttttttttttttܓttttttttttth   $*06B2B2222222<222<<2BHNTؒ؉Z؉`ffffffffffffffffflrƒƉxyB~yBBBBXXX,,“,,,,ȓ,,,,,,,,,,Γ,,,,,Ή,Ɠ,,,,,,,,ޒމ̒ޒޒމҒމؒމޒޒޒމޒޒޒޒޒޒޒޒޒޒޒޒޒމމޒޒޒޒޒޒޒޓ22222222222222222222222222222222222222222fffffffffffffffffff~~Ԓ~~8 8ڒ~&~~~>,~2~~~~~~~~88>~D~~~~~~~~JPV hzhzzzzzzb\zzz\\bhntzꊀꊞꊌꊒꊘyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyޒޒޒޒފޒޒފŠŠŠŠŠŠŠŠŠŠŠŠŠŠȑ44Ίԓ ړ ZZZZZZZZZZZZZZZZZf||||||||||||||>> >>>>>>>>4">>>>>>.>>>>(>.4>>>>>>>>>>@@@@@@:@@@@FFFFFFFFFFFFFFFLRllXll^dljlllplvlll|lllllllllllll4444DD444444444444D4đ44444444JJJʒ JГJJJ֓JܓJJJJJJJJJ **$*ؒؒؒؒؒؒ؍ԍԍԍԍԍԍԍԍԍԍԍԍԍԍԍԍԌ00000000000000000<<<<<<6<<<>8>,28>DyyJyZZZZZZyyPV\HybbbbbbbbbbhbbbhhbbnnnnnnnnnnhnnnhhnntzyyyyByԍԍԍԍԍԍԍԍԍԍȍȍȍ΍΍΍΍΍ԍԍԍԍԍԍԍԍԍԍԍԍԍԍڍЎЎЎ ЎЎЎ Ў ЎЎЎЎ.(.((((((("(((""(.LL4:@FLRRXddddddddddddddd^dyyyyyyjyyyyvvvpv|"VV(.V.ĒʎʎʎʎʎʎʎʎʎʎʎʎʎʎʎʎʎЎЎyyyyyyyyyyޒގގގyyy $$$*0<<6<\\\\\\B\\\H\\\\\\\\\\\\\\\\N\\\\T\\\\\\\\Z`flBBrx~Bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzztt Ə̐hhh؏؏؏؏؏؏؏؏؏؏ҏ؏؏؏ҏҏ؏ؒZZZZZZޏhhhZZZZZZ &,2>>8>DJP &,2>>8>DJP|||||||||||||||V|bbbbbbbbbbbbbbb\bhntrrrrrrzrrrrrrr yyyyyyyyyyyyyyyyyyyyyyxxxxxx&xxx&xxxxxxxxttttttttttttttttttttt,,,,,,,,ȓ,,,Γ,,,,,,,,2222222222222222222222~~~~~~8~Ԑڒ~~8~~~~~~~~>>>>>>>>>>>>>>>>>>>>444444D444D44444444JJJJJJJ JJJJJJJJPPPPPPPPPPPPPPPPPPPPPPV"(V.\\\\\\\\\\\\\\\\\\\\\\bbbbbbbbbbbbbbbbbbbbbbr yxt,y~>4JP\b:@FLRRXy^jjjjjjdjjjjpppppZy|yyy||||||v||||2hhhhhhhhhhhh֑hhhhđБܓhܑʓhБ֑hܑhhhh222hhhhhhhhhhhhh2ZZ222ZZZZZZ ZZZZ$$***00066lJ,P\bzƓr yxt,y~>JP\bhnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnyttttttttttttttttttttttttttttttttttttttttyyytnnnƒƒ̒̓ ҒҒ22yy&&ؒؓtt,,ޒޒ2288yy>>DD,,VV\\bbzz yy&&tt,,2288>>DDJJPPVV\\bbhhnnnnttzzz{lllRplmvmqmmlmmNNmmv^v^m|m|}xnlmn| qRplmmvmvllmvRpRpmmlmmlmlmmm:lmmlNNNNNNNNNmmlmmmmmmv^m|mmmmmm}xm}x}x}x}xnn}xm | | | | | mqqqqRpRpRpRpRpRpRpRpRpmmmRqNmm"umm(m(mm.mmmXNm4mm|m|m|mm}x}xnnn| | | mmm:m@mmmFmFmLRpRpmRmRmXm^mdmjpmp~b{mvmsm|{t~~m~NNn<{mnZnm| {pqpwpnwruX| pnNmnn<| | mmn| Nv^RvvoRvr ~@qo,oJon@N{Rvoo~P~&@~,Nppq~2pdpwp{@wZwZpp|{X~>ppmp{qwZqq*~D{| {~J{~&mpmq@qq~V~>qqwfv^NqrrrwZS6w~mmmX~\rb~b{~hX~n~twZ~P~z~sss"w{s4sFs|s~{ms~m~vuVwf|wt| XwZtBtBtB~mww~t~ttttuubububuVubuhuzu~hpuw~~uwrwZ|~h~huwZpupu~>upuNpu~>vNpvv}0v"{~|| vXv^~vjvvv~{vvvw~~@p{wH~w`wNwrmwZw`~wfwrpw~~pw~~{{||}0{{{mmmmmmmsssssss{{{{{{{t~mmmt~t~t~t~t~t~mt~t~mt~mmt~t~nn~~~~~~~n~~~~~~~~nn~~~~n n ~~~~~~~~~~nn~~~n~~~~~~~~~~~~~~~n$~~n*~~~~~~~~~~~~~~~~n*~~~NNNNNNNNNNNNNNn<n0n<n<n<n<n<n6n<{nB{{{{{{{{nH{{nZnNnZnZnZnZnZnZnZnZnTnZnZnnnn`nn`nnnfnlnrnxnn~n~nnnn| | | | | | | | | n| | | n| | | {nn{{pppp}xnn}xnn}x}x}x}x}x}x}xppppppppppppppppppnnnnnnnnnnnnnnnnnnwrwrwrwlwrwruuuuuuXXXXXXpppNNNnnnnnnnnn| | | | NNNnnnNNNNNNNNNNnnnnnnnnnnn| | | | | | | | | | | nnNNNRvRvRvNNNNNNNNNNNNNnnoooooooooooooRvRvRvRvRvRvr o~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~pppo&o o&pppppppppp@@@@@@ttttttttttttto,o,o,o,o,o,oJo2o8oJoJoJoJo>o>oJoDoJoJoPoVonononono\onononononobohon@@@@@@NNNNNN{{{{{{{{{ot{{{oz{{{oo~ RvoRvRv~ ~ oRvRvo~ RvRvoRvoooRvoRvooRv~ RvRvoRvRvRv~ ooRv~ ~ oooooo~P~P~P~P~P~Poo~&~&~&~&~&~&~&o~&~&~&~&~&~&o~&oo~&~&~&~&oo~&~&~&~&~&~&~&~&~&oo~&~&~&@o|F~,~,~,~,~,~,~,o~,~,~,~,~,~,o~,oo~,~,~,~,oo~,~,~,~,~,~,~,~,~,~,oo~,~,~,NNNNpNNNNNNNNNp pppppppppppppppppppppppppppppppppppppppppqqqqqqqqqp"qqqp(qqqp.~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2~2p4p:~8pdp@pdpd~8~8pXpdpdpF~8pdpdpLpdpXp^pdpdpdpdpRpRpd~8pdpdpdpdpdpd~8pXp^pd~8~8pjpppppppvpppppp|ppwwwzrwwppppppppppppppp{{{{{{{{{{{{{{{{{{p@@@@@@@@@@@@@@@@@@p@@@@@@@@@@@@@@@@p@@@wZwZwZwZwZwZwZpppppppp{{pppp||||||{{{{{{{{{{{{{p{{{Xp~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>p~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>ppppppppppqqppppqqqqqqqqqqppppppppppppp{{{{{{{{{q{{{q{{{qqqqqqqqqq qqqqqqqwZwZwZwZwZwZqqqqqqqqqq$q$q*q0~D~D~D~D~D~D~D~D~D~D~D~D~D~D~Dq6~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D{q<{{{{qB{{| | | | | | | | | | | | | | | | | | {qH~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J{{{{{{{{{{{qNtB~&~&~&~&~&~&~&q`~&~&~&~&~&~&qT~&q`qf~&~&~&~&qZqZ~&~P~&~&~&~&~&~&~&q`qf~&~&~&{{{qrqlqr{{{{{{{{{{ppppppppppppppppppqqqq~qxq~qqqqqqqqqqqqqqqq@@qqqqqqqqqqqqqqqqqqqq~V~V~V~V~V~V~Vq~V~V~V~V~V~Vq~Vqq~V~V~V~Vqq~V~V~V~V~V~V~V~V~V~Vqq~V~V~V~>qqqqqqqqqqqqqqqqqqqqqqqqqqqqqRvRvRvqqqRvRvRvRvRvRvRvRvRvRvv^v^v^v^v^v^v^NNNNNNNNNNNNNNNNNNqqqqqqqqqqqqqqqrrrrrrrrrrrrrrrrrrrrrrrrwZwZwZwZwZwZr&S6r r S6S6r&S6wwwwww~~~r,XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXr2r8~\~\~\~\~\~\~\rJ~\~\~\~\~\~\r>~\rJrP~\~\~\~\rDrD~\~\~\~\~\~\~\~\~\rJrP~\~\~\rbrbrbrbrbrbrbrbrbrVrbrbrbr\rbrbrbrh~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b~b{rnrt~h~h~h~h~h~h~hr~h~h~h~h~h~h~h~hrr~h~h~h~hrzrz~h~h~h~h~h~h~h~h~h~hrr~h~h~hXvrrXXXXXXrXXrXrrXXr~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~n~nr~t~t~t~t~t~t~t~tr~t~t~t~t~t~tr~trr~t~t~t~trr~t~t~t~t~t~t~t~t~trr~t~t~twZ~P~P~P~P~P~P~P~P~P~P~P~P~P~P~P~P~P~Pr~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~zr~z~z~z~z~z~z~z~z~z~z~z~z~z~z~z~zr~z~z~zr~~~~~~~~r~~~~~~r~rr~~~~rr~~~~~~~~~rr~~~srssssrssssssssssss ssssssspppsyvspppppppppps"s"wwwwwwtBtBtBs.s(s.tBtBtBtBtBtBtBtBtBtBs4s4s4s4s4sFsFsFsFsFsFsFsFsFs:sFsFsFs@sFsFsFsLsR~s|sXs|s|~~sps|s|s^~s|s|sds|spsvs|s|s|s|sjsjs|~s|s|s|s|s|s|~spsvs|~~sssssssssssssss~~~~~~~~~s~~~~~~~~ss~~~~ss~~~~~~~~~~ss~~~{{{{{{{{{{{{{{sss{{{{{{{{{{ssssssssssssssss~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~s~~~~~~~~~~~~~~~s~~s~~~~~~~~~~~~~~~~~s~~~s~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~vvvvvvvvvsvvvsvvvtttstu2tttu>suPsuPttt wfwfwftwfwfttttttt| | | | | | | | | t| | t0t$t*| t0XXXXXXXXXt6XXXt<XXXwZwZwZwZwZwZwZwZwZwZwZtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtH~~~~~~~~~~~~~~~tN~~tT~~~~~~~~~~~~~~~~~tT~~~tZt`~~~~~~~tr~~~~~~tf~trtx~~~~tltl~~~~~~~~~trtx~~~t~t~t~t~t~t~t~t~t~ttttt~v"ttt~~tttt~ttttttv"tv"ttttt~ttv"ttv"~ttt~~tttttutttttttttttttttttttttttttttt{ubububububuububububuuuuu,u u&ubu,ubububububububuVuVuVu2uVu2uVuVu8u>uDuJu\uPuPuVu\ubuhuhuhuhuhuhuhuhuhuhuhuhuhuhuhuhuhuhuzutuzunuzuzuzuzuzuzuzutuzuzuzuzuzuzuuuuuuuuuuuuuuuuuu~h~h~h~h~h~hppppppuuuuuuuuuuuuuuuuuuw~w~w~wxw~w~~~~w~~uuuuuuwrwrwrwlwrwruwZ~z~zuwZuu||||||||||||||||||~h~h~h~h~h~h~huuuuuuuwZFFuwZuupupupppppppuppppppuuuuuuuuuuuuuuuuuupppppuuuuuuuuuuuuuu~>~>~>u~>~>uuuuuupppppuuuuuuuuuuuuuuNNNNNNNNNNNNNNNNNNppppppppppppppppppuuuuuuu~>{{~>~>~>~>{{~>{~>~>vvvvvvvvvvvvvv vvvNNpvvvvvvvvvvvvvvvv}0v"{v.{v({{{{{{{v.{{{{{{v4v:~~~~~~~vL~~~~~~v@~vLvR~~~~vFvF~~~~~~~~~~vLvR~~~|||||||||||||||||| | | vXvXvXvXvXvXvXvXvXvXvXvXvXv^v^v^v^v^v^v^~~~vd~~vjvjvpvvvvvvv|vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv~~~~~~~~~~~~~~~v~~v~~~~~~~~~~~~~~~~~v~~~{vv~vvvv~~vvvv~vvvvvvvvvvvvv~vvvvvv~vvv~~vvw w~bw~bww Xw~~~~~~~~~~~~~~~w~~w~~~~~~~~~~~~~~~~~w~~~w$~~~~~~~~w6~~~~~~w*~w6w<~~~~w0w0~~~~~~~~~w6w<~~~@@pp{{{wB{{wHwHwHwHwHR|~~~~~~w`w`w`w`w`w`wNwNwNwNwNwNwNwNwNwNwNwNwNwNwNwNwNwNwrwrwrwlwrwrwZwZwZwTwZwZw`w`w`w`w`w`~~~~~~wfwfwfwfwfwfwfwfwfwfwfwfwfwfwfwfwfwfwrwrwrwlwrwrppppppw~w~w~wxw~w~~~~w~~ppppppw~w~w~wxw~w~~~~w~~|||||||||w||www|wwwwwwwwwwwwwwwwwwwwwwwwxxxx~~w~~~~~xwwwx~xxxO@x8x8x>x2~~x~~~~~x2x x&x&x,~x2x8x>xDxhxhxnxb~~xJ~~~~~xbxPxVxVx\~xbxhxnxtzzzz~~z~~~~~zzzzz~zzz|xxxx~~xz~~~~~xxxxx~xxxxxxyx~~x~~~~~xxxxx~xxyxxxxx~~x~~~~~xxxxx~xxxxy"y"y(y~~y~~~~~yy yyy~yy"y(y.yRyRyXyL~~y4~~~~~yLy:y@y@yF~yLyRyXy^yyyy|ydy|yjypypyvy|yyyyyyy  y     yyyyy yyyyyyyyyyyyyyyyyyzzzz yz yzzzz zzzzBzBzHz<z$z<z*z0z0z6z<zBzHzNzrzrzxzl""zT"""""zlzZz`z`zf"zlzrzxz~zzzz((z(((((zzzzz(zzzzzzzz..z.....zzzzz.zzzz{{{z44z44444zzzzz4z{{{{2{2{8{,::{:::::{,{{ { {&:{,{2{8{>{D{J{{P{V{\{b{h{n{t{z{{{{{{{{{{{{{{{| | | l~blR{| | | | | | | | | | | | N{{NNN{{{{{{{{{{{{{{{{{@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@{{{@@@@@@@@@@@@@@@@@@@{{{| {{{| | | {{{{{{{{{{{{{{{{{{{{{{{{| | | pp{{pp{{{{{{{}0{{{{{||| | |||~|"|(|.|4~2|:|@|F|L~J|R|XX|^~b|d|j~n|p|v||||~|~|||||||||||}|||||||}}} }}}}$}*@}0F}T}6FFFFFFF}BFF~FFF~F}B}HFFFF}<}<FFFFFFFFFF}B}HFFF}N}l}l}r}fLL}TLLLLL}f}Z}`}`~L}f}l}r}x}~lNR}}RRRRRRR}RR}RRRRR}}RRRR}}RRRRRRRRR}}RRRNNN}X}}XXXXXXX}XX}XXXXX}}XXXX}}XXXXXXXXXX}}XXX}}}}}}}}}}}}~~~~~~~~~~ ~ ~&~&~,~,pp~2~2~8~8@@~>~>~D~D~J~J~P~P~V~VXX~\~\~b~b~h~h~n~n~t~t~z~z~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ""((..44::@@FFLLRRXX^djpppppppppppppppppppv|V#q*x.1{'''       Np9!` >6^6NL &={4!+ Az!e?$/0:      $-u$  $ 22$$$U$2h2>KiX*cEVV! u!L MUM!zMMMzMMX*50+_(??%M$yx3j!)!Bz!C!!8MH!l!b!g!s!! y@v !!!'!I!1!3KY):i{JfJnV2\J .2/Q!*ivhSJcLoJI %cjOx M&=\{V%f1 Tms@OOfT<2OQ*L1 ; ' 3;9G@GpNdV ,W%~O$cDip`ksmGON(kW A.%rOqV6nJ^1JV,V&;sf1ydViiGGMVHigun {y+{LvnY=[F%3eWab'}~ %Ed`%Kj Ogqh{y(2H^ PhD8q$n n@d5O=., |&w{i3@i3iF231-iwfw>t,!owu~_ aOsD|bqU)%/5$==p= fEU8!au jMbo_vFb47Nx8NP]EKoFyWC% \UaUdDWDRMma&\4;y4v 8G[0r=VV0']_ty#V!1V e!/!e3;!!!*!k!!!!!J!!{te[CF[!!!!!I!!y5r|!QjZ!!b![CO!oP[!1]Ay! RJV|8!uM$sMYVZ934IyPO~7i:F!SIS+\fI^&BV!X&hJ2h}b;l(dgG],_xoo|V#A!l3QKi! !]=I!4!'Vzw!ZrHh}}tVl|o !Rj3*o!GDS_ MMM] !o '<1T\!#= 8&0;!!k!!qDVvx$eHeCKlKRU]3ATV6V`C(> !s-oR9 oM:%*w?!y)TxHy`rC|dls]X!T8!"}G8!}!9 \T$\fIfo4D>z!&!1R9 RudnvhhtVxI?! ![!.!!~!P!ft#ZD!T!!/!Ou!!Y9 !9!;=pG;n:!BEtDE F~}xx!0s!!A"}LE!i @bK{!'<!(!1)gN!Q Htp!M1,V>e 5y!'Apm!/"!!yVR7yu[~CyVwz!!&?MqWT*uLD}!bVV8NC3&&"!!C`_tPtl <!xH!x!<xXQm!YIymd(`XL!YL:t!!x!!?l?:|r^^e5dwC[[3ee=VVwU<oo[F!!t!!|!!2!?!z2r mO6( OxQ!)4v4!O!!!#!{!lj!@!!!!x!!!!Q$z!!!!!!!t!e!!!!.!!!q&!!!M!%!!VM!|!!!!&6!]!@!!!-!!D6$V>gou.t |\ WOeObSH~13W2=^nnKnUFZ ky\$}p+?MQp+""FptLjy;~.c~y.J}yzFetiv0qI7KyLay@6\& *N@0tbw+z+UOwy0pG8fK?x6Ip g><#z,K~+p[IDZ6@}*IW/g]&rT5^\_t\~\*8\ ;+8Fc `8G{t_kp#Gt0k&ky}~k ~y!Udy+p~~n1nJ)GftZ\a,i*5W36.v !~- (. ^L (%h<"7;,*.n d Z "P   6. ;0^         "(    ^  Z &   ^dj =&.f T  Z l t  |    ~zvrnjfb^ZVRNJFB>:6 @ X p  0  p 6  < N ` f l  V  h  & 6  P : b r P v !Z.z:*F\^v~(Lp7'n'''####$ $"$8$N''((2$d(N$z(j$$'$((($!$$$(%%*'<'T%@%V%l%%%%%%&(&&2&H)&^&t&        ~=<<r<=== = <~?<<|>^>L>?v::;-<":z5C:88?:V>>?h;FF>\>rH:XK@:::<:t6.7: g h i j k l m n o p::00:;D85v85vH5L;:,7B;;7*7J5L;__5~54;a`@9BD: : 9V9|9|:D468<9< :p 89 ?tDD:H4J4P489^484>499(4$4*4:          : 8r35:z357;;8;;  8^8x83`3f48h8b8N3J3P37j779BCCD: & ( ) * + , - . / 0 1 2 3 4 5 6 75R8V8\8b8h8n8t8z8888888888M223z))7223`));;L9F2z4F8j:b:b:bL7N2(2.2)):D  :( <6999!   :` y z { | } ~  :@ :]^_`abcdefghijklm9N8888"    ;j ;4 9  >45;. !"#$%&'()*+,;49:;<=>?@ABCDEFGHI-./012345678668888888888888888999999 9&9,92989>9D9J9P9V5999$9*90969<9B9H9N9T9Z8`9`9f9l9r9x9~9999999999996!6! !"#$%&'()*+,-./01236R!BCDEFGHIJKLMNOPQRSTUVWXghijklmnop6 !$%&'()*+,-./0123456789:     :x! :!XYZ[\]^_`aBCDEFGHIJKLMNOPQRSTUVW9" V W X Y Z [ \ ] ^ _ ` a b c d e f9" . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O9t" 9@"%&'()*+,-./012345 E F G H I J K L M N O P Q R S T U9d"XYZ[\]^_`aBCDEFGHIJKLMNOPQRSTUVW."7Z7`7f7l7r7x7~777777777777777777777888888 9$ Y Z [ \ ] ^ _ ` a b c d e f g h i X X Y Z [ \ ] ^ _ ` a b c d e f g h i:$     G9%./0123456789:;)*+,- !"#$%&'(?@ABCD/*n7p*t+"/*Z+*`+8(   ! " # $ /)6)+0*/)+)+*.)++F)*x,) !"#$%&'()*+,-./0123456789:;<=>?@A.|)V6X)\*6* .d)>*~)D*~6).L)&*f*),*f).4)*N*)*N6)(()'(%-,h7,,JKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrLwx,R,`,R,789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_Iqr6.,WXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~k''(B''(%&3&''(%&(H&'z'(%+&&'\&(%5t- j k l m n o p q r s t u v w x y z { | } ~  W&*&0'j3&'(%& 3 &'J&'(%%'l%'*&'(%%' 'L%&~'(%*%%&&^&(%*2%%&>&(%*%p&%p&&(%%J2L%P&2%'(%%(&%.&h2%'(%%&F&% &F%'(%)$$&$2p%&(%)1$$&%v&(%)$&"$%%T&(%)1$&$%2&(%$\%%$b%1%'(%)P1:$>$>%x1$&(%),$%$%T1$&(%)0#%r#%0$&(%(0#%N#% 1X$&(%<22AKQTlj 3ANXD^#z|t9Dwoqjm22~xyz{|}Myz2(4 l m n o p q r s t u v w x y z { | } ~  `25 } ~  T?@ABCD4< { | } ~  uvwxyjklmnopqrstZ,pi:T=  5(*`^twgeQ->F#jmtwz|9Doq0= R0= D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C_2>                   O}~+PP~QQ,LnRR3T4SSfTT+J+zUUH*VV*WW*\\bbddtee)Tii*ljj0p`kk*"ll^nnoo2*qq)MqtrrBsstt02uu)pLvv(ww):xxz)LyyV/^CC) {{||0L)%)-?WXYZ[\]^_`abcdefXYZ[\]^_`aBCDEFGHIJKLMNOPQRSTUVWghijklmnopqrstueeN(pup6(Xup(.uLU,X}}}'-MMMrNNOVXXX:TYYYtj'<uZyX'*u[Q$^^^*cccfffDggg(hhh&'~tmmXzzz-'F<~~,B  U-0E,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST !"#$%&'()*+Uj2<K]_defIJKLMNOPQRSTUVWXYZyz{|}~mnopqrhg`lbaikj^[\c,L`abcdefghijklmnopqrstuvwxyz{|}~NOPQRSTUVWXYZ[\]^_<=>?@ABCDEFGHIJKLM,P | d,$QV]^_`aMNOPQRSTUVW#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVb-T*4Wbcdefghijklmnopqrstuvwxyz{|}~fg)X                           ! " # $ % & ' ( ) * + , - . / 0 1]^, Y#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKWXYZ[\]^_`abcdefLMNOPQRSTUVghijklmnopqrstub)\9;<lm*f        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w xPQ*(h        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y zXY)nk                        \[S.@zee-z}     i0z(("(&(*(.(2(6(:(>(B(F(J(N(R(V(Z(^(b(f(j(n(r(v(z(~(*&((((((((((((((((((((((((((((*((()*")) ))))))")&)*).)2)6):)>)B)F)J)N)R)V)Z)^)b)f**)j)n)r)v)z)~)))))))))))))))))))))))))))))))**)*** ******"*&/))) )$)(),)0)4)8)<)@)D)H)L)P)T)X)\)`)d)h)l)p)t)x)|+$)))))))))))))))))))))))))))))+)))*+ *** ***** *$*(*,*0*4*8*<*@*D*H*L*P*T*X*\*`*d+(*h*l*p*t*x*|*******************************++*++++ +++++ +$* !"#$vwxyz{|}~ 8 9 : ; < = > ? @ A B C D        789:;<=>?@ABCDEFGH   6stuvw q r s t u v w x y z {c)      !"#$%UVWXYZ[\]^      !"#$%+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS&'())T- (())) ))))))")&)*).)2)6):)>)B)F)J)N)R)V)Z)^)b)f)j)n)r)v)z)~))))))))+))))))))))))))))))))))))*** ******"*&***.*2*6*:*>*B*F*J+*N*R*V*Z*^*b*f*j*n*r*v*z*~***********+*****+*+***************++++ ++++++"+&+*+.+2+6+:+>+B+F+J+N+R+V+Z+^+b+f+j+n+r+v+z+~+++++++++++++++++++++++++++++'()*+ ,    %&,*'-)/ !"+-.$1023(#;4<B@=5.?E678ACD:GFHI>9QJRXVSK/U[LMNWYZP]\^_TOg`hnlia0kqbcdmopfsrtuje}v~w1xyz|{234567     8! #"$%nopqrstuvwxyz{|}~baxA^AfAtCd1e39>D39?|Amr7<*+1?7T7-<R 5]`]g`ghZg]e`egZe@@@@@@j@b@h@n@t8~AZ@@@D@@Pag  y|]`ZDH|PP`WcPPP |FNSb@16+g^_`b 8 DPPPPa      y E U^_bPPPPPPPP]`l*?@TA@h@|@?16?@A@@@??@A@@A??AAAA,A@@ PPPPPPT- E U hq} hl} >>>>>>>>>>>>>eghi7<>>16DDPPPPPPPPeghi]`lZei16@@A@@A@[\^_gXY7_II)qr*mm()Y[d7<CE}Xhh)*`JJ(st) 9W+07<7<ORtz277@BQIJTqtVr| KQ  Ee Fe Ge He Ie Je Ke Le Me Ne Oe Pe Qe Re Se Te Ue7<  7<  27Xr| MW [[)* SS()%*'  57< 16 mq 1< mr `*JJst . ? $ 6H5e  3d  AASb7_)616HIINqrO@B   l (VVP``QRTpy BK7<*>>D    1 7_)AA+hl,}1II<qr=<<<<<<<<<===$=2=@=N=\=j=x==== UU)*7<16Sb16AADDhl} 1e2e3e4e5e6e7e8e9e:e;e<emeneoepeqereeeeeeeeeeeee1g2g3g4g5g6g7g8g9g:g;g<gmgngogpgqgrggggggggggggg16DD +07< y ~    #(#$6`r|;FHHQJJRstShl} `hq(}2 HJJpSSqstrt1< E F G H I J K L M N O P Q R S T U                  *  . ?1 CU gySb*SbSb^"()*[\^_abghijkmnXYYZ[>>hq} hq} ^ $6`r|;FMWQ\HHJJmmst (*[\^_abgkmnXYY[AA | | 1<#*KL"#$`>>(JJ)st*`DD(JJ)st*7_DD)II*qr+ @B !"#A`FN(JJ1st2*`16(DD.JJ/st07_FN)II2qr3ORr|CDE>aA |1< #*Sb   7_)II7qr80 7<3DD9`(JJ7st8`Sb(JJ8st9AAhl} 16 (*[\]]^_``abgkllmnXYZZ7<>>Y[(*[\]]^_``abgkllmnXYZZ16DDY[(*[\]]^_``abgkllmnXYZZDDY[44ABXX+,1189Sb.; K  -X @ Oh x Wf=68:;<=>CDEFGHIJPQRSTUVWYZ(*5->FQegtw>\]eghi7_Sb)II9qr:`(JJ:st;`*(JJ:st;(*[\]]^_``abgkllmnXYZZ*>>Y[+0 7<(*[\]]^_``abgkllmnXYZZ16>>Y[Sbhq}0(*[\^_abgkmnXY7_ %*Y[IIqr7_)DD:II;qr<7_)16;IIAqrB$6`HH;JJ<st=>>Sb`DD(hl)}.JJ9st:   +07<7_r|)4II?qr@7_)IIRddSqrTVI23456789:;<=>?@ABCDEFGHIJPQRSTUVWXYZADKNQTX^ 3Ajl>\]efghi7_)16;>>AIIBqrC 7_0AAAChlD}IIITqrU 7_0=NP16b@BhIIkqrl%*'DDK7IJQqtS268:;<=>CDEFGHIJQRSTUVWYZ(*5->FQegtw7DDQIJRqtTDD mq  UUNO7_):AA<hl=}BIIMqrN7Q@BSIJVqtX" 0!7<9?E y ~K g lQ W i . ?     2 C l y#5 G#(Y<M_qVVw``xggyz|~6+,-./0789:;< y z { | } ~            #$%&'(5002OQZ~)+.atuv  9<?BB$6   +0>>Fgr|8CFHHb 7_)616HNOPIIQqrR7_)>>+Sb,<GIIVqrW7QIJ`qtb7QIJbqtd$HJdqtg<+,-./0123456789:;< y z { | } ~            #$%&'(5=23456789:;<=>?@ABCDEFGHIJQRSTUVWXYZADKNQTX^ 3Ajl   07<8>?@ABCDEFGHI55Jljtz|qo#{st9Dmk}usqroamp"&!"#$%* '7;8:~ncigndvyxpe !)(CEf<`hbJw#CAKQTljSqr 3AXDBRULJYHIF8hk  1524V]E:@^>\[}i;MPOZG< @B_=W6~7?9 IN#7_) :KIItdduqrvx 7_0=NP16b@BhkIIzqr{ 7_0=_a16sAAyhlz}IIqr`()*1 2 ZJJSS[[st  5(*`^twgeQ->F/  +64,230'STUVWXYZ[z{|cfPO+/,.LJIN]rd%$.&)1-\y=?GKM0absx_ vuHRH##j006688:>COQWYZ~ /UWXY  [^*h-0w22{57|:?BBIK006688:>COQWYZ~ 0VXYZ  \_*i-0x22|57}:?BBIK 002OQZ~)+.  ?BBIK789;>?@DGIJKMOPSVZ[\^_          ! " % & ) + , - / 1 2 5 8 < = > @ A } ~  j k l n q r s v w z | } ~     ! " % & ) + , - / 1 2 5 8 < = > @ A     #$%'*+,/035679;<?BFGHJKbcdfijknortuvxz{~,-.034589<>?@BDEHKOPQSTIKNOPTUWX[]bdefhijl`qruv{|}~    ++--./0011234455667788 99:; <>?BCD EF GHIJKL MOPPQQ RSTTUUVVWXYZpyzz{|}}~~                                     !!""##$$%%&&''()**++,./01122334456778:;<==>>??@CDDEEFFGGHJKKLNOOPQRRSSTTUUVVWWXXYYZZ[[\\]]^_``aabbccddeefghhiijjkkllmnoovvww zz~~    #$6 7QRRS     01<=?@BCEFRSbcg hqr| }  ,-2389IJqrrswx}~     3 4 4 5 A B i j x y ~             $ % ' ( 7 8 D E U V f g l m p q { | | } } ~ ~                                   - . ? @ O P W X X Y i j                 3 4 4 5 A B i j z {                  1 2 C D          "#=>>?KLVWfguv 01ABLMWXabdeeffghikllmmnnoopstuvyz{||}}~~       $%5667HIZ[lmrsxy  "#()-.;<MNfgst%&+,FGGHTUUVVW~  !2389>?JKPQ\]~ 34%&())*,--.1223344567<==>?AX\]^^__``adeeffgghhiijtuyzz {{||}~   !"$:;;<<=BCDFG HH IKLLMMNNOOPPQQRUVWXXYYZ[\\]`aabbccddeeffgghijjkkllmmnpqqrtuuvyzz{{||}~   %&())*TU_`bgpqtuxyz{|}~  3445566   o7fh=T7gP>?d\[] P~hPPiPPPPPPPPPPPP6PPPPPPP66quwxyz{AA@@uquwuxuyuzu{uQQkkddQQQQkkkkddddQkdooooooo     amiri-1.000/fonts/Amiri-Regular.ttf000066400000000000000000023110501434272261000171260ustar00rootroot00000000000000pGDEFQgP,GPOSq~|&6GSUB tOS/2vx`cmap}j"gaspHglyfQC=head\&6hhea/|4$hmtx;Uhloca8҄ {hmaxpX name6^! postv,preph{^ۿk_< 1|%J|,d,JF,!8p+"XKX^2 o CALIF d: l!$@,=DXiXi,K$G1/n,)U\+b(/('qZ<"')*3OqZHtH 6}8j+6:*q5**==99==8888<<666<:?[>8<<q566tt|?V`~pf|IIIlI?IIzI\ILINIx(++% **:`P}8V:  y6********=========999==88<<<<<<::<k9<???<<<<<<[>[>[>[><<<<<<<<<<`q5q5q5q56666<<Aq59,,ZeN#HM)*=IIIlI?IkIVIBILINIx9=8}88`*******==9888<<<<<88<<<<<<[>99666<<99?rr*;:***6<:<<l>rggBggB7l;-;--TM=yz!{qZ,qZs4s4s4s4s4s4?'z?'z5b5b5b5b%%%%WWl<Ll<Ll<Ll<Lg<g<{=G ;<<++AA6?LYYYYYYI9''9=o=MMMM2828I900R22000R22000R220R22C00C00C0C00...N.JN...JN5B0B00000000102201022,0,0,0522000220000^2^2000R220022000R22=6$?$?$?$?$?$?&&1N+88&&1N+88&&1N+88&&1N+882222k5&8'0&&1N+88I9&&1N+88__8___8XX xxxd]]]II 990202020238383838D2D2D2D2D2D28888...N>>q9q9rrrrW8W8W8W89999998888555N((%%/ 5  5=|9|9950500950~9?0/w5jA90H09H0990a5T020r9r9520U5z|9l 9`0 9 9 9099999 9 9|99|99~99~9r9999 99999W9|9020599|999(99<(<6%0}>=8S>,G$t$$t$$|$$?$VG!"YI+'s4{s4s45b5b5b%%WW79887988//;7';7'nn?'z_,'z6?L5 0g<{=YI9I9<<?4%+;:;+32:Q93274 3795;4%%+;93 3%277540V%0>;434535 45 45440535)#)#M:::O:)4::O:)#:)4::9R99R9*999w99*99999*999R99*9999f7%&88,7,7&D83Q97254:8(5,74%%&8(D8:%605593460888i;3E:4(9.344%%605.88(3% A':8ns4*%=?'<z5b{=q56?a?L5[>N> 08??g<;<<_,: :=/=79898;78'D#>I968></2hBQNQ)6Se?].T<Z :HH_0&2A`&>{>? =n=!R)9?`6B3+C;P>(738#<8Kbh0pE^X|k9UJr9v05N~77P!00ww_a}vaf=gJwaITI\IcK= Z5I%%ng'0P88784_` <hT(2D`i0'7M9l0-0P0'LL!"G=ynnnnnnns4s4s4s4s4s4s4s4s4s4s4s4s4s4s4s4s4s4s4%%%%%%%%%%%%%%?????????'''''''''''''zzzzzzzzzzzzz55555555555555555bbbbbbbbbbbbbbbbb{=GG{={l<l<6?l<6?l<l<l<l<6?6?6?l<l<l<l<l<l<LLLLLLLLLLLLLLLLLL555555 0 0 0g<g<g<g<g<g<g<g<g<_,_,_,_,WWWWWWWWWWWWWWWW/////79797979797979797979798888888888888888888888;;;777'''YYYYYYYYYYYYYI9I9I9I9I9I9I9I9I9II9I+I9I9I98"#"""<64266,2<6++++++++++++++++@@@@@@@@@@@@@//////2222222222222hhhhhhBBBBBBBBBBBBBBBBBQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQNQQQQQfMM9))))))))))))))666666666666666666666666666$6666666666666SSSSSSSSSSSSSSSSSgeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee??????????)???]]]]]]]]]]]]]]]]]]voR]......T<T<{{TTTT TZZZ                HHHHHHHHHHHHHHHHHHHHHHHHHHHHHH_0_0_0_0& ( (2A2A2A2A2A2A2A2A2A=`=```````C```CC`=&################ { {{{{{{U&{{{&&U veb?                           5             =%=n=%=n=n=n=n=n=n=Z=+=n=n=n=+=+=Z=%v!!!!!!!ERERRRRRRRKRRRKKREu)99999999999999999?kcBBBBBBBBBBBBBBBBBmq+qWCD[vYSSwYCYS 4V@'+%.'X?<%;?#?1';X?'%''3333333333333333333P>kWXomggmWlgvx+++++++++CCCCCCCCCCCCCCCCC++++++++++++++++PP$$$$$$$$$$$$$$$$(((((777777777777777773333333333333333333333333333333333333333888888888878881###########))))))))))))))))88888888887888KKKKKKKKKKKKKKKKKKKKKKKKKKKIKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbbbbbbb1bbbbbbbbbbbbbfmgRh0h0h*h0h0h0h0h+h0h0h0h0h0h0h0hh0^^^^^^^^^^^^^^^^^XXXXXXXXXXX|||||||||||G:2::8:866::8::000000000005N8LL8LLLL888L8LL8mL888LLLL7777777777777777777777777777777777PP!!!!!!!000000000000000000ww}}}wKKKKKKKKKKKKKKKKKK= = = = = = = = = = = = = = = = = = Z5Z5Z5Z5Z5Z5""=IIIIIIIIIIIIIIIIII%%%%%%%%%%%%%%%%%%%ngngngngngng '  !:~xx~~~xHH~NNN~HP8PUP8P8P88888888888c7G178888888888888844_44_4_4_4_4_4_4P4!4_4_4_4!4!4P4)`)``````^/```//^)y           <<<<<<<<<<<<shhhhhhhhhhhhhhhhhwTTTTTTT((2222222222222D D`D D`D`D`D`D`D`DCDD`D`D`DDDCD i0''&' #07777777777777777777777777777777777777777M9M9M9M9M9M9M9M9M9M9M9M9M9M9M9M9M9M9l0l0l0l0l0l0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0-0P0P0P0P0P0P0pppppppppppppppppEEEEEEEEEEEEEEEEEaUr9*yR6666666666666666666666g                      KKKKKKKKKKKKKKKKKKKKKKbbbbbbbbbbbbbbbbbbbbbb6 Kb||||/$$$$^$^$$$ $6$,$$$$+$^$^$$$ $#$$ $$$+$$$$$WDDDDAs,88888888888<;<<;<<;<<;<<p<w'~,z~~+~%~~~~~~~~+~~+~+~~~~+ppp<mP],,, ,, , <<`   G#`S;./QG#G6&./Q4;@'"'=ys4Q6e 33Kb76 Kb~i]].$,GG./1.i]].$,./1.!./"1?6??6??6??6??6??6??6??6??6??6??6??6?<l<V\8<]y]]]8<8<8<$$6$$$$$$ $#$,,QQ66ee    SY''gm33KKbb::LL7766  KKbb/( &2W :D6YCCCCCCCCCCCCCCCCCCCh]X$^$^$$$ $6$,$$$$+$^$^$$$ $#$$ $$$+$$$?6?,G.&12'4& p95BR1RG=RH9%'A/[70dF(/(=( (/(<(1(&(u$0(0^(0c onGj|<Mq$&&',( &vh(/  !,7$4,+0L%p17P.=,7J1 %!]%6&1L!$Z0&z%!$"P(ddddddk0=(=(=(=(<$<(<(<($0000060G( $$$$$$}$&'''' '(((((H;)    d$d$d$/&/&/&/&(&(&=('=('=('=('=('////( (< <'<(&@)<(-'1(&(&(8( &(x&$$$$0(0(0(0(^(v^(v^(v0h(0h(0h)0h(c /c /c /      nGGj!j!j! /.1.0611 11Z1w1F''&'&'&'& ',(((u' 0h(0h)c /c /c /nnnj /Gq:q:9&;C;^;+"r+r#rr".nN/2/+0 0X-,*LX j$07'>"*&/*?+ TBG=?$MJ(("-.#*,M5;  ! !27-/1x;H.H?7H?$$6$$$$$$ $#$$$  /Z]z~7  (%+AWco   " $ & / 0 3 : > B D O p y """%.A?rt 0[^{7  %P $(@V`j   $ & ( 0 2 8 > B D O p t """%.APPptvU3wvupn_ htpnZF>8(gO;1`]+j۵ANML(&`.89:;<=>?@A  123456789:;<=>?@ABCDEFGHIJQRS   T  UVWXYZ d !"'8()*->./0ZB[]^zm{} ~~ h77jkmoqw    %(P@BCDL $%(+@AVW`cjo g    " $ $ & & ( /w 0 0 2 3 8 : > > B B D D O O p p t y """"""%%.A.APPQQRRSUVVWYZZ[]^^_abbceffgijjkmnnoqrrsuvvwyzz{}~~?P:zprttv13456789:;<=>?@ABCDEFGHIJQRS T UVWXYZ%&*!"E$$G''H)2I47S99W;;XBBYGGZII[KK\MO]QR`TTbWWcYYd[[e]]f__gabhddjgjklrotwvy|z~~~%%H8&bkv]  7 TJk6n/Iay)9Qay1Iay&>N`p-=]oef + !-!"+""#}#$ $T$$$$%%7%O%g%y%%%%&&&7&W&o&&&&&&''/'G'_'w'''''(('(?(W(o((((()))=)U)u))))))**5*M*e*}*****+ +-+E+e+++++,,-,E,e,u,,,,,- --5-M-e-----...-.E.].w....//01=1}2>3 347\78F89999:W::;??@@>@P@h@@@@@AWABBBBBBCC,CDC\CtCCCCDDD4DLDlDDDDDDEE,EDE\EtEEEEFFF4FLFdF|FFFFGG(GBG\GvGGGGGHH.HNHI5IMJUJuJJJK KK)K9KL6LHL^LxLLLMMMMNFN`NrNOO}OPP=POPaPyPQEQQQQQQQQQQQQQR R&R@R^R^R^RtRRRRRS@SXVV[VqVVVVVWWW1WIWaWyWWWWWX X!X9XQXiXXXXXXYY)YAYYYqYYYYYZZZ1ZKZeZuZZZZZZ[[=[][}[[[[[\ \\-\E\U\e\u\\\\\\]]]%]7]I][]m]]]]]]]^^1^K^e^^^^^^_ __;_[_{___` `7`a```aa/aWawaaaaabb;b[b{bbbc c-cMcuccccddGdmddddee1eIeoeeeeeff5fUf{ffffgg7gWgoggggh'hGhghhhhii/iOigiiiiijj'jGj_jwjjjjkkk9k_k}kkkl l+lCl[l{lllmm%mMmkmmmmmmnn)nKnunnnoo'oQoqooopp-pMpupppq q)qQqqqqqrr1rIraryrrrrsss3sUsssstt'tItstttuu)uGumuuuuvv7vWv}vvvww!w?w_w}wwwwxx-xEx[xyxxxxyy3ySyqyyyyzz9zYzwzzzz{{{7{M{k{{{{{||+|I|o|||||}!}?}e}}}}~~%~E~e~~~~~%=Um %C[{Ck;c)Gm %E]} 5e}-Mu=e!GgGgqO+YAi1Qq)Y1Qq!Ai!Iq7_ 5] 5U}5eM}=m =m-] -U}%M} =m=]?g -EUm-E]s)AYq1IYq%5E]u%5Me} %5EUeu /?Wo'G_ww *BTf~4Ld~5Ue}5Uux;Sk +C[{#Ccƒ£ijłƆRjVrʦ˚̾ͻ^)AS֗֯Fڠ.+A{+}U~?MoeO3- M9 [@G< *   O  Y  'aTe %8H.2 rf !`"=##$%%&P&&''((())**x***+, ,d,-3-..q..//001*1|12M23#34 4[455u556 6t678R889999:\;;;<==>R>>???@X@AcBBCCYCiDDYDE^EF<FGGGGHH\HI3IIJNJJKLLMWMNWO OPPPQGQRRRS>STBTU$UV0VWcWXsXYZZJZ[@[P[`[p\Y]P]^_+__``a(aaabbc,c<ccdd)d9ddee.e>efffg@gPgggggh9hiiKj;jkkOkak{kkkll#l3lClSlclsllllllm m~mmncookopqqirrrstHttuuvwWwxy%yz*z{M{|~}}u}~]oA#=|vm30ai~bb5Me}+;[s3Kc{3Kc #;Sk +Ik7Og7Um)AQi)Ig %=Um %=[s/GWo/Og/?Ww/GWo/G_w7G_w'?_y1Iay3Kc{3Sk !9Yq!Aay)AYi)AQq !1Qq 9Qi)AQi !9Iay)Ia !1Ke #=Wq)AQi1Aay +Cc-Me7Oo'?Og!9Sm1Iaq)AQi7Mm1Iay1Iay5Um5Oo‰£½ -?YsËãó/Icęĵ7IayʼnšŹ)AYiƁơƹ7QkDžǟǹ)C]wȏȧȷ/?Woɇɟɯ %=Uuʍʥ'AY{˛˳ -E]m̵̝̅-E]}͕͵5Uu΅Υ=Meυϝϵ5MgС1Skуѓѫ #;Sk҃ңһ +C[{ӛӫ+Ccsԍԥ3QsՋաձ'?Woևֿ֟'?]u׍׭3K[sؓث #3Skً٣ٻ?_wڏگ !1Iayۑ۩ !AYyܑܩ1Qa݁ݡݹ)AQgޗޯ/Gg߁ߙ߱=Um%=Um5Um -=]}'Ii%5Me} %E]};Kk5Og/G_w3Kc{+C[s+C[s %=_}'?Oe} %=]u5Ue3K[s #;Sc}'?Og7Og !9Ic{ +Me}3Kc{#;Ss7Ww'?Wo7Og7O_w7Og7Qi !9Qi #;Sk{ ;Sc{=Mg-Og}3Kc{9Qi)9Qq1Qi9Qi  1 A [ s      # E ] u        - E ] u       5 M e       # 3 K k      5Um1Qq3Kc{3Kk +C[k %E_y/Iay1Iay+E_y5Oq'?O_o'?_w+Ce+AQi)Aay/Oo7Gg1Ii  9 Q i      !!1!K!e!!!!!""!";"U"o"""""##'#?#W#o######$$/$O$g$$$$$$%%'%G%a%y%%%%%&&&3&C&[&s&&&&&&''+';'S'c'y'''''( ()(A(Y(y((((() ))3)K)c){)))))***7*O*g*w******++1+Q+q+++++,,-,=,S,i,,,,,,--'-E-]-}-----..1.Q.a......//-/E/g/////0010I0Y0q0000011111I1i111112 2!2A2a2q222223 3)3A3Q3g33333344/4G4g44444455=5U5m5555566'6?6W6o6666667777W7o7777788'8G8g8888889 9!9C9a9y9999: :#:3:I:a:y:::::; ;!;A;Y;y;;;;;<<1 >%>=>M>e>}>>>>>??'?I?i?????@@+@;@Q@i@@@@@@AA'AEA]A}AAAAABB3BSBcBBBBBBCC5CMCoCCCCCDD5DKD[DqDDDDDEEE1EIEiEEEEEFFF?F_FoFFFFFGG'G7GOGgGGGGGHHH7HOHgHHHHHHII1ISIqIIIIJJJ3JCJYJqJJJJJKKK1KQKiKKKKKL L)LILYLwLLLLLMM)MAMcMMMMMNN)N?NONeN}NNNNNO O%O=O]OuOOOOOPP3PQPaPPPPPPQQ1QQQaQQQQQRR)R9RQRiRRRRRSSS1SQSkSSSSSTTT5TUToTTTTTUU%U?UYUiUyUUUUUVVV5VOViVVVVVW W%W?WaWsWWWWWXXX7XGX]XuXXXXXY Y%Y=Y]YwYYYYYZZ3ZKZaZZZZZZ[[/[G[_[w[[[[[\\'\G\_\w\\\\]]]3]S]k]]]]]]^^/^G^_^w^^^^^^__'_A_Y_{____` `+`C`[`k``````aa+aCa[a{aaaaabb3bKbkbbbbbc cc1cQcqcccccddd9dQdqdddddee/eIece}eeeeeff;f[f}ffffgg7gUgmgggghhhAhahyhhhhi i#i3iKici{iiiiij j#jCj[j{jjjjjkk3kSkckkkkkkll5lMlolllllm!m9mQmamymmmmmn n!n9nQnqnnnnnoo)oAoaoooooppp)pIpcp{ppppq q-qOqgqqqqqqrrr7rOrgrrrrrsss?sWsossssstt/t?tWtwttttttuu/uGuguuuuuvvv1vAvYvqvvvvvw w!w9wYwswwwwwwxx+xCxcx{xxxxxyyy+yCy[ysyyyyyz z+zEz]zuzzzzzz{{-{E{]{}{{{{{||/|O|g|w|||||}}/}O}o}}}}}}~~7~O~o~~~~~~7O_y=_w+C[s+Iay5E]}=[}3Kc{3Qi'?Og9Qq5Mc1Iay)Iay/Oo%=Um%?Wo %=Uu'7GWo'G_w1Iay)AYq+CSk#;Sk3Kc{3Kcs 3S{#Kk#Ks+C[k#Cc +C[{3C[s+CSk'?Wm=Um5Me}5Me} %=Me}5E_y5M]}5Ee}%Ee -E]}-E]u%=Um %=Me},<Tl,Ld| <\|$<Tt$D\t<\t $<Tl|(8Ph0Pj*B\t<Tl| ,Ll,Dd~(Hj ":Rj ":Zr2JZr2Jb4L\t $D\t $<Ld|&@Xpˆ ° 8PhÀØð 8PhĀĘĨ0HXpňŠź,DdƄƦƾ.F^vǎǦǾ.F^vȖȮ6VnɆɖɮ B`xʎʮ,D\tˌˤ˼<Tť̤0@^~͖ͮ;4D^xΐΨ Bbzϒϲ $4Ld|ДЬ $D\|єѬ4Td҄ҤҼ6NpӐӨ":RbzԒԪ ":RrՊժ*Jjzֺ֚2BRjׂךײ ":Jbzؒت2JZrي٢:Rڂڲ *Jjے۲ 2bzܒܢܺ*BZr݊ݢݲ*:Rjނު2bߒ *JrBZr ":Rj 2Jbz*BZr":Rj:Tl ":Rj $<L\l4Rl6Vn&>Vn ":Xx 8Ph Bd| ":Zz "Bb|0Hh 8Ph6Nn6Nf~6Xz 8Pp 8Xx&F^~6Nf~2Jb(H`x0Jl6Nf6Nn<\t4Ld|(Jbz "Bbz *Jd0Ph 8Ph6Vv6Nf~ Bd|  $ < \ |       $ D b |      . F f ~       6 N f ~      2 J h     0H`x2Tv6Nn6Vv$D\|4Ld|2Jb *Jbz ":Rj*BZ*\n"4FXj|_wBGW1v6Pr   0 !@" "#O#i######$$$7$Q$i$$$$$%%1%I%a%q& &r&'!'3'("(:(R(j((((()) )8)P)h)x))))***<*\*t****+++.+D+\+t+++++,,,<,T,t,,,,,- -,-L-\-|-----....H.X.p......// /8/P/h/x/////001122"2<2L2d2t22222233,3D3\3|3333344.4N4f4~44445|556f6~667x77777789'979G9_9w9999999:::):;:M:_:q:::::::;;;%;;;;;;<<<7 >!>9>Q>i>>>>>>??)?A?Y?q?????@@@1@I@a@y@@@@@A A!A9AQAiAAAAAABB)BABYBqBBBC[CkC{CCCCCCCCD DD+D;DKD[DkD{DDDDDDDE E=EWEoEEEEEFF?FWFmF}FFFFFG G%G=GUGmGGGGGH H+HCH[H{HHHHHII'I?I_IwIIIIIJJ/JQJsJJJJJKK1KIKiKKKL!LALaLLLMMAMqMMNN1NaNNNO O1OYOOOOP!PQR)RSS0SwSSSSTTT7TUTwTTTTTTUU-UEU]UuUUUUUVV-VKVcV{VVVVWWW7WGW_WWWWWWX X#XEXcX{XXXXY Y%Y5YMYeY}YYYYYZ Z%ZEZ]Z}ZZZZZ[[5[S[c[[[[[[\\1\I\a\y\\\\]]]3]C][]s]]]]^ ^l^_`aabMbcd d+dKdkdddde e+eKekeeeef f+fKfkffffg g+gKgkgggghh'hGhghhhhii'iGigiiiijj'jGjgjjjjkk'kGkgkkkkll'lGlgllllmm'mGmgmmmmnn'nGngnnnnoo'oGogoooopp'pGpgppppqq'qGqgqqqqrr'rGrgrrrrst't7tWtuu"uuvvpvwjwxx(x@xXxhxxxxxyy(y@yPypyyyyyzz z0zPzpzzzzz{{{8{P{h{{{{{{||&|:|N|b|v||||||}}}*}>}R}f}z}}}},jCTK%ka `v>^d;nL,YUf(?H`xVg=S£ëýĞbŚŚFǼC;M;FwϡH`xАШ҉ҡҹ/G].F^vԎԦԾI 8Phwؓث #Vnچڞڶ, %=Ums݋ݣݻ&>V'?Wo5M %=Umk' 8P7Og0H`J #;Sk )I} %=Um)1Ia'?Wo_q(:L^pl %y=/y>Vn,D\t2Jbz ":Rj  * B Z    - h     o    \ $o11rv;MoUt /VAz(G: "#?%&(*b,.02#3455T556m667H77888H8X8h8x888888999-9?9Q9c9u9999999:::):;:M:_:q::::; ;&;?;X;q;;;;;<< <9ǥ *;h"#!3* C  & Y48*.<"547&&'#"&'&''&5432676632#"'7&#"32767654# XR@ nRw1 ,\O 4\#  ,,812 " 3 $ 6!( '/MV{[&&''&54! $7667&76767676'0'&776'&'&'&'&'&'&#"! $n  yo!0""F58 ,   2!):)  J (s   >>[!!\   .D :-# " )  W&^s&fW&^t&f+7%;A%76'&'&776''&'&7776367676764'&'&7632&#"G  (k  OV?3,=E ]O W9VWTZ\!2$=- " \! >Jed1i #6R_7 #L }W0 "$@_D~1(F:'_&_'_W(F'_'_&_'_W'o*9?2%&''&7&'&76766'&'&76'&&'&77&T-)J #_#n $"I _ ?G(/" *5'd;8,s0^ ,m4<:'j  iN L %Z#67632'&'&76676 {'%%= $ l 0:8"$'&'&76676 %+ )A?% '%8%G)\ '<y )7&'&54763276676#"'"4W% I*9R *  v!$"V3+ B  & Z*#7A&7&'&767676'&7676676676#"'&77673276'&M 1:)* SBc!;A  _h rTjH St6 17KK\# 0&X pB #) A-Mek)P-Cg32'654&#"z  % % 5)9$I # +#8S<e&p 5=Q X#n6.6H&qeJt@lj 677677677667P    !  k   g Ic"BM'&&''&767&'&7667623'&'&7676'&7&'&* +[S$#  B  ([' ' Y  R   !  PD ` /+d   #    tl[?F{ 6'&5547b   p |Aw}$6'&&''&767&'&76&67      EXY6  & z'A \+  4E D8  {^?6I$6''&76767632+ $ :- &   !4%+  t ;U # VD ! 6'&7666'&#&u(?)$&P o%#I0 +6^ A! 6'''&76l /-  F 0 4 o)'&7&'&76'&'&2676632J' *  3%**/  !A   *99 )odh`y~Dy_pK63276#"'& = 9@ QX=4fM "776332#   M  [#"'&'&5476667632E1 :  ~Q;HN 3 %@_ #'&&''&'467667632M'  $ );$"4 )Q&C&|Ax}%'&&'''&7667&76676'&1  5[,M#      zD D5  C. B&C  F{ 36'&55477432'&&'&15632#"'&&'&55b         p }% D%o467&'&76'&'&2676632'&'&7676T %**/  "@  &P+5#4>)99 !(  = l}G 676''&7 S [ 8  5 c5{76'&56'&7(  k +=KEa4l 676327632''&''&7 2Ru  2w  x ^i #8,JvJ  ?-+632'&'''&''&7767676 ^0:? v : +; 79D%b 4v   e$'Ug %&$.632'&'&7767&&'&776$  9 E9  9"*W- vX  M5  L +' &(!E >%S%D 1D@z6#"'&5&&7676$C/B 22KM ! IL/!K5 " 2GE&& E5RE-' \3676'&&74'"#'&7o9j 40K )*V2_2,cp )TL3$'&5&'&&'&77676763279F+ 5\) )v"9&M  DDG Q5]w a 9o77yN!&6676'&&'&&#"''467667669E+ 4]) (w"8'  DCG Q5]w a9n77yxH6&'&''&&'&7276E;1 :.6 "J TT"cAYi|G4;  (Fm'&__W$76767676''&7-A 76?<)>.*/%%[gGE.95D  %)D7'&767676-A 76?<);2+.%%[gGE*=4E  *e 373'7*6766shgg*e:Vu`q 6'&'&7v _ ?j  iN &P&oQ&o8D11:&1 1'n1 'n/c16H@&'qeJ1*ey&G*eD&d*e&*e&'qd,*ec&{d*e&{*er&d*e&&dVS&Vs&q&&s&rVs&{&=K&=&6='&p)='K&'p)=&q=&q=&r=&{=&V&V}&jV&_SV&p4Y&jxV&'ppEV&qV&rV&9H&'pp Z9u&{9&'r{=&qvC=&r58&r78#&r<<&p><'p{O&p><O&r{O<&{E<]&{O:VuW&p:Vu&r<v9.yv<v&N\?R&'x/p{?R{&'x/r{?R&'x/{'<x^&}<x^'N\&}<x^'qt&}< x^'q &}<x^'&}<xt'r t&}>#l&jC>#&p=g>#&r>#&{V<e&'p p<<&    >    &\]    <   =    ]\% 572>>284 571??166  i    i  ,`/676''''#"77'&7754'&76'&32#*66+#w))w#+77+#w))`*#w))w#+66+$w))w#*66Z9 6'&766'&'"x&<,,Mt' $C+ (2[0eOK"47632#"'&74'&#"3276e s :!##$7.""#9; (( N^'&76367&'&'&76676    - M2  %   '    #o76676'&&'&767&S  #p *  Y  ! &p2 '6(J3H6'''&76 U% $ 9 ' ()/"7'&7667632'&763767&'&1 &)B5 :/;   g A!0_@& u p*7632#"'&#"6760'&&'&7676! 8+ 9P  ; - 5E(($ 3'0   0' (1I74*#2'&7676367654'&'&776'6'&&'&7   !T< !$AL.f_-444 35- <&%0.-+N, *hw#-7AKU^g661632#"'&566666'''''47632#"'0&'#"544'&'1#"'&547632767&7'&'&7'&7'&754&76&7676&76&7&'&#"'&5476320676454326''&%776'&&7766''&776'&&776%76''&&77654'7&76'5432''&#"6#"327776'&776''&%76''&6'&767&67&'\ ,-   8 3( 0%2C >FDG:;-#*$8* 8   -,  ,.   7    /&4@ >FFH9:, #8+ 7   ., %iKy+ 'n Eu +n'OLi%Lj#h#jL;,,# E,,}!! l D D +o&+ &o^     : ,  /[4H;:,"*$9*344'0&4C >4[/  , :%*,  .\ 3)  &:,#)"7+334'/% !A >5 \.  ,*%Lj$ E +n' E:#jLk%iLLi%!!+ 'nw!!,,I++ +o&+ &o DF D+(0(,ya'77'{{{{SSSяJU##"'&547632 .. .0-. .- M\K=&kIV&kl}Gp{7qlr?-sk$2-7676'&#76''&5&'&77676)){<9U 2`:'  ~ ?*d .d3 O[J  iV!*''&767&'&776767676'&&,;P</9f q #) %<` # XXu; '6 oy*G`#D]   ( >fB3.76676'&7667&'&7667632'&'&K#:  .\.WC ]@ [K#!' !F^D7$ S =)LeK80@2k"*"  #K FL3wN!xxHy9&'rp Z=\&'p5poZ8#&'pp`8D*&1<8S&n&`&kX* e&*ed&'rdp*e&r*e&'qdr*e&'pdq*e&k*e\&j &qVs&r=K&'=&k&= 9&8#&q8#&{8#&Y&V&V&d9&&&'$q9&'qV&'qa&VC&1r3 M&1s6 6.f&rV 6.p&sY 6& X'nrHz X'nsH} <P&zr <P&zs & 9&m 9&k;?R&'x/q{Nr"!'!&54676%.'&&8:L|9A+y<@:>7#XVeK7>/ -#!.1*  '&2Nr"!>7667>!!%654&&:y+A9>("BM3.A<|L#7>:@<!#- />7KeVV<2&'  *1.*ye&j:M{,HR22''&'&&'&7&76766'&&''&&'&776&3276  7 Q~~p  &gd Q )#0&" 1 40' %{(LC  ? CB #-4  5zE-%,3T<,L;I 8'K*e&'p_4*e&'{_4*e&/"qVM&/}Xp6HM&'qeJ/XpM<:Vu<,n%#"'&767676'&'&76F(  $1 %21"  &"  $ 4 ! DxU$,&'&7676'&&''&767672767&6!  /      2     D'A . &" k jLlo&LLd>Dx&MMrFu'LLgT432'&&'&143 1  gJ6&RRx9BN,<2'&&''&546767676667676&&'&#"76   #+  ) E         H  gPRgF6'RRx5BJT@ 6776767767P    "  k     g7Nd'@X?Yl0+ ',676'&''&574774766&#"6'(? ; '&,0 & b" gU I0 $! D!    ! 0F{> 6'&55477432'&&'&55b  8   p &  6'&5547632#0'&'&55     p , %;Q  ''77 2V~33 )J V G-Q7'7'-23G V P@;M _-M`-Q&``Q!7'7'77'7'632'&&'&15-2323 G V P@ G V P@% Q7'7'632'&&'&15-23 G V P@% TAw},46'&&''&767&'&76612'&&'&157&67      EXY6    z'A \+  4E D?& + #Dbfs@9!afs@9 yb/ <Fs@9b&s7zb&s7<Dafs@<7@b&s&77Y!b/7</7<sw'&'&5'476676 V krZ#&,B,~|,<KYiy7#"'&547632"'&54762%#"'&54632#"'&547632#"'&47632#"'&54762#"'&547632#"'&547632"&47632#"'&47632#"'&47632#"'&462#"'&547632#"'&547632#"'&547632"'&547632V  &  j    h       {     @                     " t #       Z#&'&&'&7676#"'&$ =%%'{ 8:0  l 1&14&#&g &4&{#&{s &{4&#& &4D&dS&Us D&zd4r&dP&SB 3&q%4y&G&UV y&zG?&r&rq&r?&&q&5&V9&>9&95&q@V9&q,BF9&q'H5&{V9&{,9&{'5&V9&89&4%)&q+%&qN6%6&rN6%|&NJpI'nrIp^'n,<.Wd.<'lX^&}{d&M<'l& X^&'}{d&'M<'q'lq&'q/t}v&'q/<<&L&UV y&zG='dIG'$dl0d<Z{<P@'|.'8d_^pZ,pZtqBqr|~r~{{wyRnnX2?2q??S~&'xd2r~Wt&rtd&rioO'nco'njoJ'n,o5'nr5|'no'nk9vc&x#&g &# '&'d:'&'d_=?^&'{d=@&'{d^'n'Zdc@'n'Zd^'n/c'ZdcO'n/c'Zd^'n'j'Zdc@'n'j'Zd^'n','ZdcJ'n','Zd2R&'w'd8y^&['{'Zdj&'E'Jd,2$R&'d8^&['Zdj&'Jd,9c#&qs) &q+0&d'p? &`hd0&d&`hd#&'dX2$R&'d2:R&'qe<'d05&d'p? &`hp505&d&`hp50\&d'p&`hp54_&'p2&'p2:&'qe<'p0 &d'p? &`hqt0 &d&`hqt0 &d'p&`hqt#|&'q2$&'q62:&'qe<'q60t&d'p? &`hrt#&'r2$6&'r62:6&'qe<'r60?&d&hp0`9&' p4Y0?&d'p? h0`9& 0&d'p? &hpI0&d&hpI0`&' p4.&d'p? #h.&d#h.\&d'p#hN`'&8k5.{J&dhN V'&8m5.{&d'p? &hp-j.{&d&hp-j.{&d'p&hp-jN &'&8'm5p5{&0& 0&' p0g&d'p? 80& 0&d'p? '8pY0W&' p0&d'p 'p0&d'p0&d'p='p0o&' pX2$&'pv2:&'qe<'pv05&d'q0&' q{2$&'qv2:&'qe<'qv&0K&d'p 0K&d0K&d'p=5L&Zo&2$&2:&'qe<0&d'p 0&d0&d'p=u &2$&2:&'qe<0&&d'p? h0&&dh0\&d'ph0R>& 2$"&2:"&'qe<0&d'p? &`hpt0&d&`hpt0&d'p&`hpt#f&'p2$&'p62:&'qe<'p60&d'p? U0& 2$,&2:,&'qe<05&d'p? &`hq05&d&`hq0\&d'p&`hqh_&'q,2&'q2:&'qe<'q=& &pV&6.#'d?6IL'[a?l'[?a?6I'3a?6I'Za? {'^a?6I!'a.G',n'+$d.G',n'p'+$dNi^&8'd+2&R'p7]'Qdr8^&['Zd8^&['qr'ZdG7',n'+$pG',n'p'+$pNi&8'p+&R'p7]'Qpm83&['Zpi58&['qr'Zpi5.G<',n'+$q.G<',n'p'+$qNi&8'qB+2&R'p7]'Qqrk8&['Zq B8&['qr'Zq B.G',n'+$r.G',n'p'+$rNiB&8'rB+2k&R'p7]'Qrrk8B&['Zr B8B&['qr'Zr B2y'U'p2'U'qe'p2y'U'q2'U'qe'q5&55&Z&PA&'&:9&:'qk98u'"t&&'qI'&0& .G&',n'+$p.G&',n'p'+$pNi&8'pB+2&R'p7]'Qprk8&['ZpB8&['qr'ZpB9x'dG7',n'+$qG',n'p'+$qNi&8'q+&R'p7]'Qqo8&['Zq8&['qr'Zq;Q&Y'p=&a7dQ&Y&a7dQ&Y'pX&a7dp&&'3d&'duQ)&Y'p=&a7pQ)&Y&a7pQ)&Y'pX&a7p&'3p=&'p;Q&Y'p=&a7qgQ&Y&a7qgQ&Y'pX&a7qgp&'3q  &'qvsp &'3r @&Y& 7pTB&'p&1&Y'p3 7&1&Y'p3& 7pT q&'p\;&Y'p=57 &Y57 &&Y'pX57 &(&YX7(&&Y'pXX7(&;(&Y'p=&X7pm(&Y&X7pm(&Y'pX&X7pm&'px]&b&'pF;Qg&Y'p=87|&;Q+&Y'p=&87p &'p;Q&Y'p=&IpsQ&Y&IpsQ&Y'ps&Ips[&'pQ5&Y&Iqx[&'q;K&Y'p=IK&YIK&Y'psI&-&;Q&Y'p=IQ&YIQ&Y'psI'&&0/;Q&Y'p=$7Q&Y$7Q&&Y'pX$7!&;Q&Y'p=&a7pgQ&Y&a7pgQ&Y'pX&a7pgp&'3p &'pus;Q&Y'p=U7a=&&;~)&Y'p=&a7q CA~)&Y&a7q CA~)&Y'pX&a7q C&'3q?&'q/@&'dJ&'d@&'pO&'pO&'qA% &'q@s%&'rA%s&'r@s&_'&l7&'r7_7'&'lr;75&8X&&A@&'pJd&'p@s)&'qV+&'q9&T3&ae&TZ&ae '^&ae9E&J9E&'qpJ2$$&2:$&'qe<2$&'pe2:&'qe<'pe8'Z&[k8'Z&['qrk8d'Z&['krFd8d'Z&['qr'krFd2$ &2: &'qe<2$ &'pO2: &'qe<'pO2$ y&'pX2: y&'qe<'pX8V'Z&[m8V'Z&['qrm8&'Z&['mpl8&'Z&['qr'mpl.&&d'p? &#hr&.&&d&#hr&.&&d'p&#hr&N`d'&8'k5rdUd'^n'k*rdU'^nk*V'^nm*&'^n'm*p9&J9&'qpJ9&:9&:'qk&:'p&:'qk'p8l'Z&[l8l'Z&['qrl8l7'Z&['lrH78l7'Z&['qr'lrH799&J99&'qpJ99&'Jpo_99&'qp'Jpo_9&'Jp9&'qp'Jp8L'Z&[n8L'Z&['qrn8'Z&['np`8'Z&['qr'np`57&'p'r757&'r757&'pVs'r7N7'&8'l5r77'^n'l*r7'^nl*EL'^nn*E'^n'n*p;&Y'p=&57 r&Y&57 r&Y'pX&57 r&'r'&kd'&'kr9d&]9&'p%_b9&b&'p=b]7&'p%_'br77&'br77&'p='br7&&'p&j'[/>'[_`Vr0"76''02'&'&'&77&'&'&'&7676676667'&767676667'##"'&&'6'&6676'6763237&&327654'&#"7667767&''&&'75&&'&5476675'   F_    _ F   -f8-+ E_  !  _ F ,-8hH  9   9+5j2O96*9   9 ~ ! "  M  MM   M m `F !9F_  ^F !!! F _ œM  L  5\U  M  M !    9  9H9   9  /`:Ws&'&7676''&'&767&&'&7743&&''&&'&'&7676676667''&76667677667'#"'&'#36676327&&''&'&'4'&#"3276'5'75&'&'&766767&''&&'66+h8/+ E `      `E -8f-   F_    _F  'M54*8   9   9   9*6s! " M  M     M   Mm _ F !!! F^   _F$! F` fL  L  MfM  M  ! ! 89  9   A  9    9hB&'c'pnj'bq,5&'p''qS%]&'p%_'Yb'aqgB&'c'bq,B&'c'p/'bq,IQ&Y'pK& T' XqQ&Y& T' XqQ&Y'pY& T' Xq59&''Ppu_&'b';p99&'qp'J99&'J]&'p%_'Yb5 ;&'Yb'pL=5 99&'J'po_5&'P&'b]&'p%_'b0)&' P&'~5U&'&'YbX0U&' 07&' 'mr7P&'Y'5 r97&'qp'J'po_'r757&'pVs''Prs7&'p='b'r0)7&' 'r7P&''~r|9 &'J'p0P &' 'pG'mp&'Y'p('Xpm5&'P-&'b2&'9]&'qp'J0C&' 'p/_m0jC&' Z|&'9C&'J0j&&' 'pY9&&'qp'J'p9&&'J'p0&' 'pG'mpZ!&'Y'ps'pC5&''Pq0f&' 'q0?&' m9~&'qp'J9~&'J1w&g'p3&fF'p43e5&'p''p_0?&' 'pGmL&''p5g&'A@lQ&Y&<:;c]&'p%_'Yb$&'c199&'qp'J;&'Yb'pL=$&'c'p1]&&'p%_'Yb'p$&'c'p41;&'p='Yb'pL=$]=&'p%_'b;1=&',&'c'bp,9&'J'p&d0v&' 'p/_'mpdh,&'c'pnj'bp,9&'J'po_'p&d9#&'qp'J'pd9#&'J'pd0&' 'q`+&''3~q9&'qp'J'p'p+9&'qp'J'po_'q%9&'J'po_'q%9&'qp'J'p'q%9&'J'p'q%9#&'qp'J'q%9#&'J'q%99&'qp'J'p?_969&'J'p_99&'J'p?_9&'J'p9U&'qp'J97&'qp'J'r79 &'qp'J'p9~&'qp'J'po_92&'qp'AJ@799&'qp'J'q2+99&'qp'J'po_'q2+9#&'qp'J'q+9&'qp'J9&'qp'J'q9&'qp'J'p&d&'b';q=L&'9C&'qp'J9X&'qp'J#;&'Yb'pL='apg9&'qp'J'pL&''p0BX&' 0?&' 'p/_m5&''p_'p\d969&'qp'J'p_969&'qp'J'po_99&'qp'J'po_9&'qp'J'p99&'qp'J'p+-&';!g&'Y'p=8(&'~9&'qp'J'p9&'qp'J'po_'p&d<&{';<&{';'qr6J&D''a)'C`'BGk',n'+$'p''%&''c1s0&' 'y>>D&''=)&'{'q+'ph58ut'"t''&' p%7Sw #6676766'&&''&7632723&'47767267632667632#"'"'5667&'&#"&5476'&3676'&''&'#"'32767676326'476#"'"'#"'##"''"5476554767655'&''&'476767'4776'5477632327767&'#&'#"'&7&'&&'&''&76767'476327&&'&776074&'&'&77632#"'767&&4232676767&'#"547632&'&5#"54&'&&''&67657632677677677676'&'4'&576&#"2767463232763#"'#"54763276327&'767&4&#"%& #4#*  G*4T   _ GD652;!)X.[*%K3' 3I%   &+%iB ! +2o (>( . =  ):E.!"  <'4!PQQ$34`  + ')  $   WWC 16  -,  . ;$ ".q   ] h3F   h3E  c   !" />    77  k% #E u ',"0l@01/4 (*H   <%.    J# %&FK #& R@ 0 4F5I% ,9. . " - 'C= #    T&fE,9<#MlL26 1@(9q:7  ![7B  '(R$ *$I  " C +&4: !'&*6[D*' &65"n  # # *"(  .       $ } m!0976667672#&32#&''&767632767'54766767&776676&'&'&'&'&''&'&766767'&776764'&&'&'&#0&''&77676&5&&'&76676326767&'&'"6776767767&#"677276&#"6772746'&&'&776'&&'&7767   $ '4Y% $V3$( '-)3@U %&I"F(( 5:bQ@ %s;$, L  -  )  : 2%9 "   L3  0D !&    [  ,,( =-b,& :+3!!: 3E4*+        a+''DCGV5?>=  )'4U *;+j+2 10d #b;   dF4%-?=  AKJDJ     d-b;$!%dZ X  x q L   E 5 V5 f>4U&'\'A'q6G,' ~W'*7-'mv' %>'' 'ah''a F' fw'aw'?'^<'^'^'^ }'^ '^C'^+PT'8' 'U'p:s'qW'p,U~'VU'W'V e'W 5e'Drk'Ck'Bk' 6t@lj[j'[ZeIc\tl[?F{ ^ '^Qe|Aw}_}'_Ge {^ \'^e?6Ia&aeVD !b!&be&bc"<&<dLoQ'nd&dz&+&d$^&dU @&dz'4&p#&pS &pm&q4&qd&qSB &qq%4d&rdB&rSB %&rq%5&pWV9&p*Y]9&p%_5V995&pVsV&p*&p=%%&pN6pnp'npI9U"O9U*&r *s&r=sO7&r#7/`U/3&p6&p6p &p\; C; &p@&pvC&pV;C&p%W&p&&p?&&po&pN&p,v&q%&qq&q?S&xd2Wd.5x0*H><v&pL&pUs &pzd=don9c9c&qp#&qs) &q+[&'cUP&?'c>[&'dnBU&?'dm ><[&U?&?>46'''&56'4''&7S) &/0, pY  Ti%`&p$?':pZ;*'&"547676'&'&767676 -:9   NsOO.'-8@'& % E #)0  ?5 )#DD9G :;'p.W$?:32+'qa:M&x/93UZ7e&p 430 7&p{O9~5p&oqD;4F'rF%`&qd%`d&rd$0':pV;&)p8b9&~p5X3&p630' p!%`775po4z#'p&eV0W9&HpY%$s*46'&'''&767&767&'&'&&076'&65&'&+)]\ *N]h .,(m" 5 'v!(# [YW5A3 # '@/P4$ / 4 , 09+%6763276'&&'&'&7667&'& #(&(@&MQ kkKz+V,.E5k4:RdJ,& +$*9 = #80+: > #&e`'q ;V4' eV3>R4z'pF&eV5I"N5Z4o''p5eV5P4''qXeV5Is&Nr=s4z'qB&eV4zB'rB&eV0&HpS5&Pp6p5W&Zp# >&ZpZ# >1766'&#"'&767&'&56767676676pa' )C;t9VgӆE N=**HG+6@yt'%621>='2& Pae!(3 :(+'T')q:&o:|e&}'p:'t4 9&767&'&767676'&7667676766'&}M /<)* TF_u  Ru 4/yl, (DD8h+z#/&X qB  H ?$V^VB<-"' 2=?%0$% :&a~:'&Zoq9D:F't'reF# 0&ZpV:&a~'pX4 &_p!:|&}:'Zo9}'p'9.&'ip 09&9&i9&9}'q'9N&9?&9~'&p;s9&9K&h9'p4&9x&9'qV&9&'r#s9'&q9B9'&r9B9&'ip~9x&'pp9&'p[9K&'hpU9}'9&7,)775&&''&'&7676&&''&776664'& 1  $ "(. 0 (sJ Dj&@!+  P9,ES74%>  G%[,7F676$7&'&7676#7667&'&76&&'&'&6'&&'&7s&'$h%-  H5%  &dD E(/" ,,}/>]$<'.97^ %Q,;g-XBW |0sL&>&pr8,8%54'"'&'&76766676'&'&76676'767'&- 6? ; F2 "  % /D 90 <98 P /  b: I|E5 HK 84=GQ%54&'#'&'&'&767667667&767&'&76'&''&&'&%&76'&65&'&/G01  E2  4  **\\ *N]0H 1A~'t!(# & %*4 P.?'A. ZXW5C2##? L G 3$ 0 4 , 7<.;?&'&76766767&''&763254&'7&'&766&s (C( P&:<*#/ +!(2( 35n !Z|96 L:UG.*;t`('2F,,Q&.    2 K8#S )(')1/+7H'p8X&>?I667676#&'&&'&&'&'&767&'&54767676676676'&_6_n=*V5V {Mu!!цE O=**HG+  a$d4e\B Me,,]Jz1dlW<'8 &?`e!(3 6@x\:N6U9^]8 HPZ54&'#&&'&'&'&76767662776&'&'&76676326676767667&7&'&0 )>) G1  B    >X4'7~$[7g=!r /C # *(5 O,CAJхW ," p))6 0< # 140& ;1 - B K 3,:D`6676'&'&'&7676676'&"##&767&'&6'&'&6'&&''&&'&776\$Gd s ab"j.]=\=jl 8   H3!##0&" 1 Z t%Y5\,,6kMd "5#@ 0&N-r2 D<?F6T.6)gL;I 9>L'&7667#&'&7667&&'&&''47763276676&'&'&x  0+<5A|% =#     #T  %XQ(!I' ,P$ bXO 8H, oPPF" , *   [B:Y dS3$':({+~7ET['&'&76767&&'&&7667667676'&5&'&&''&7&&667& 0  $  !/C    S 24!  -& -% ,  P9,E  s&5 ?; 9" +3 'c AN  &(sJ M#^  L #>2 5e1>M667656'&&'&776'&7667'&766&'&'&726'&&'&7u0F{%.  # !;  #)h77%bJ*'p6C(/" "O ?$'.O'9 J C[.Y,0"4"J(,Q%  45WX+{AY4B<L4O\76676'&7667676767674'&77632''#&767'&'&6'&'&26C(n|$D-  44 '2  # ,@.S 6R\  !  )   b?H)jWW #  +L4H .H: 'Q +I =+@@" RB(K3(},'.:FP747&'&7676676'&76676676667676#&'&&'&&'$%676'&;O 5) UCb;B  +c8 3E6`r;)W8S ;N@ ZX'(Sփ "/&,;   rC  #( @>)^X@VL~1hw{S:(8 & PNB=J^`8;FU]6766676767&'&'&76767667#'&76&&'&'&6'&&'&76'&X:g%"7)P B(''a0p?1], $g?#8>(/"  $ 8}8 _$4 L3f ==q#>3' %Q,;g-0" w&I28vL $ ( =JP#&767'&7667676'&'&77667636&'%2676'&'&%&d  !0<$S|$LE"$ %$LWXZ0L! G7e.-P c, X?@Z+O .Sσ5)t$!8W 5p3B^f#&7667#'&7676667676''&7632%76676'&'&6'&&''&&'&776&#"g!   1 )Q}$)O%1=AR,,;" XI12b  c!,#0&" 1 ) -BO .T%&4C.W <# *'$#@vuY98:f=3B./(!|  L;I 7H3?&'&7676667676'&&'&7767654&''&&7&'&76s (D(  `+&$ ' :0J C 34)<Py96 K9Y>R B5e (CEBXI=    +C;&S )524F&rF%[,7S676$7&'&7676#7667&'&76&&'&'&6'&&''&&'&776s&'$h%-  H5%  &dD \#0&" 1 ,,}/>]$<'.97^ %Q,;g-XBW |0sL;I %[d,7Sc676$7&'&7676#7667&'&76&&'&'&6'&&''&&'&776'6'&&'&7s&'$h%-  H5%  &dD X#0#" 1 $#0" ,,}/>]$<'.97^ %Q,;g-XBW |0sL 8H L&0&pV8&p(&p5X8 &pm:&p!%xAQa7&76676!27&'&77676'767676'&'# '&76'&6'&'&7730776'&'&Z5#!! 1 #MT 1  " &  ' D0  > <0?/ 'EAb*$mT X  #Jw=i vg g4qLY (Xy$)  +%\ #L$ @H&K 0U/bs76'&767&#"767276676776'&&'&&#3276%67667667654'&'&766'&&'&7732776'&&'&[$$ /+(&  xa J2 3(, { DA'2 x;^  Zr(  !( %% 2 0 $ <0 !/#o6IIC# $`Ny{ F &&#K%@# 2#1 DO i34FH39#JTZ6'&'&766767667&&''&776'&766767676'&'&'&6'&&8)4) CB/"YV D)&N'.,:HC0;7& R(>V; 5"F !*@ * )= Nq//8K/[QO  B!6. 0 ,G#' 3MZZ65*)% " 4>Oa6'&&'&76767677&'&770'&7676'&'�6'&&'&7732776'&&'& * 0m?\$#)@ A')Cs J ,N w"9,C  C,X?  38JZ,U*6 s*!Y 0<=q1 fI[ , 0  # 0 '  0 !!/ '+#4#6c/x /c2/OcL78;>?f X 6A{520XmV5_\Y**v']+49'0 L / I  . H6 K ;60f&&'&776'&'&&54676767&&'&&'0'&76'&7676'&&'&776'&'&'&'    $VVG+#% 0 ;   ? 1  F11ZDRS#    V1*A![99Y mT;''l(:g.V(hE[,,ar MDC\Lt/V XnS..%&5Sg kI! 13$$EPU67676'&'&'&&'&76776&7676676'&&'&5676'667&g)5Mf Q ,  < 1  <=YY1 "' * 0F6S  #YAz92 -l>GF!,E?m." b$+ س31 / ! !:xBRb'&&7676767&'&77676&''&76'5&767676&'6'&'&7712776'&'&M?d<: 4!!hIM & % QMq%%8 767]=  2 0  > <0?/ '͙//` 7L.]S [87JTT  +T XQ?>d  PXX34 ]&.\ K$ @H%K 4>''&'&7676376'&77667676&&'&77676#'&76'&'"'&&'&'&"'"'&76'&&1&67676674376767654'&/L 0z, -  0 R2 *#c &.I ,# t  )4TՔ# 1+(A}:6 M-3) $EB]+KKT t!wy>^OA  w>D  6b=  D  $  O bD'xQI$8*.*=F'H& 8_/ 1j%6'&667&7676'&7676676&767676776'&'&7676'&&'&767765&5 %@V* 5-gp9M$fUDQ +8 $W3hI  8*[J]q6$lg\(R=!!;;0 L ?,J;02K'D ^3$M5%bA7fJ" L$ <l  !K)-v< M 09/ap#"'&'&67676767674''&76&'&#&7676'&76'&726766767666'&&'&7732776'&&'&#"'&7676'&'&n- #N'gA@{;vEG  08cͨ/ ;X> "#G=<00:fB6  >/n@@l.Z 2 0 $ <0 !/#  +H  K~&*,%,-Y02 V)GY 0ZH_0M)\B( (   [J0a10"1J)2B$  L AHK ,$ .}4s{6&''&7667632767&'&776766676#&'&"''&###"'&76'&767676767676'&'"76&6S%  Q5b,.mq>T)!v[, ,%"L!N.[94Y-M!A # & /  3]{ 4 , N9lh+YnK !-" [ q^i3"X0o 5Iy=l0 0W(u=O:_  9&H"D C"H&<_ =U"?Td  J]xC1 i+ S./_ 9 yH9i%Kf%&762'&76767654'&76'&5476'&767676'&'&'6'&''&&'&7767'&'&1077610776'&'&632'&&#"32X33? -+5ll6'z =,+hjk5 E7./K?AZ[hf10@ v%3ihL ,% 2 / '  # 0>' 1 !"0 'F(A '%yz!< >>,,>?_ dH5r6?z:  K0 H) . H6 K    4>6'&&'&76767677&'&770'&7676'&'� * 0m?\$#)@ A')Cs J ,N w"9,C  C,X''&'&7676376'&77667676&&'&77676#'&76'&'"'&&'&'&"'"'&76'&&1&67676674376767654'&'6'&&''&&'&7767'&3277612776'&&'&'6'&&'&7730776'&&'&/L 0z, -  0 R2 *#c &.I ,# t  )4TՔ# 1+(A}:6 M-3) $ 2 0  $ 06$.0@!/ )] ' / $ <1 !0#EB]+KKT t!wy>^OA  w>D  6b=  D  $  O bD'xQI$8*.*=F'H& 8_/   K  + H"* H&1L    L AIK%xA^7&76676!27&'&77676'767676'&'# '&76'&6'&&''&'&7767'&&'&�3077612776'&&'&Z5#!! 1 #MT 1  " &  '  2 0  > 1 '  0?!+/#EAb*$mT X  #Jw=i vg g4qLY (Xy$)  +%\{  L /$ H . H&5L%xAZ}7&76676!27&'&77676'767676'&'# '&76'&6'&&''&'&7767'&#2776106776'&&'&'6'&&'&77776'&Z5#!! 1 #MT 1  " &  '  2 0  = 06$/0 "/#Z 2 /  # <1?0')EAb*$mT X  #Jw=i vg g4qLY (Xy$)  +%\{  L  ,$ I#) H2 L L AI&K 0B/br76'&767&#"767276676776'&&'&&#3276%67667667654'&'&766'&'&77776'&'&[$$ /+(&  xa J2 3(, { DA'2 x;^  Zr(  !( %% 2 0 > <0 "/ 'o6IIC# $`Ny{ F <0 !0%%E> &&#K%@# 2#1 DO i34FH3b K$ AIK .}4s{6&''&7667632767&'&776766676#&'&"''&###"'&76'&767676767676'&'"766'&&'&7732776'&'&&6S%  Q5b,.mq>T)!v[, ,%"L!N.[94Y-M!A # & /  3]{ 4 , N9lh+YnK !-" [  . 0 # <0?/ '^i3"X0o 5Iy=l0 0W(u=O:_  9&H"D C"H&<_ =U"?Td  J]xC1 i+ S./_ 9 y" L @H&K 9i89%6&'&&'&767632676#&'&767#&'&6767676'&'&''6676&'547676676'&&'&&'&##0#"76766'&&'&7730776'&&'&67&V   a5. \DM='O''^7:8`) #;.b      jk Ehji ' 0 # <1 !0"a VUP %  8( 4"!7# =!#V9   )*75#$  - y       (:@H  L AHLK11j{%6'&667&7676'&7676676&767676776'&'&7676'&&'&767765&6'&&'&7732776'&&'&5 %@V* 5-gp9M$fUDQ +8 $W3hI  8*[J]q6$lg\(R=!! 2 0 $ <0?/#;;0 L ?,J;02K'D ^3$M5%bA7fJ" L$ <l  !K)-v< M 0,  L AI&K3"H"'"''&3276676636'&&'&&"76676767'&767676'& #T036 ; U  L  ("[/n={E  u25," 1    P2:) 375  *9 N&'&'&&1&'&76767676'&&'&766767$7&'&76763276'&}[az 0>kR(  aM)    -`9xAo "$'@&LQ Q$c>CU U}'e2?    F0dL#  9 = !&!A5'276'&&'&'&67676   E퟿! n]g">M ;y ]=J;\v!'62#"'&&'&&'&7M] nh~\"6z3g4hR :6'&56'4''&7Y&/1/Y  Ti;5#"'&76&'&676676'&'&76676- 01%Gk ?͍  JI#Ex2)}  ' _ "6\q9  <z # <(%"'&7667&7676'&76676I,%# . )*  :IGQh P d%% &58 ! * C 8#56'&7676676%6676'&767&'&7676) |YF^!;B  (c; 3S 'g? r@"_~O .   o@ $( @=+^X@h  9 2{ " 0&VC%2''"'&7667&'&7676n"\]~7 (;<0Vk3C$Z#6mh&2  *FA*$4!76%67676#"'&#"'&76x$!  D-$ 0  1#? //:.xx:?>#776#"'&7676'&'&<  a   ;>%W4b3 # *e)'&766767667&'&7656765 PxR5% #R-t.976.6 fBW'1/'9$ 7#"'"''&76767632 66.Z  n& !Z7=7*  9 -%/%#&'&&1&'&76767676'&&'&76676 A 0=kS(  aN&   Zi U})e2?  i>D=667676727676'&'&  /j9P 7x'B I|"> h  d8?x,9676''&'&5467632767&767&767&@+6 6$  kC=bּb77(9$ c)  ^'1j):!)@'(> O0F!i9:<Q  Y(2#"'&676767&'&76763767&s ZJ }?#n $"Nx?%_   ? ,m4<:l& %<.66#'&767632766767&'&'&766'&('' a1o??s5 HHh\\7)P B# $ ==q(>3'03-r4K :/$4 L3f $ {'122'#"'&6767667&76676&3276  6 P~&9<  47) 0' %{(LC  ? C   ,3)Hj8'K5A27676'&7%6636'&77&'&56:( $<._  j@Q&( yR AA+'wf }X4    O#"*5PSIw<'  "ZLo,kV9$76763276'&#"'&767667&'& "%&@&MQ qe|JH8  H=o  9 = )$$ %L#2%676'&767&'&56767676676y_(yCG=="!ڂ//ÅEN'TT;H+6?{`6 ^_\!(59@676'&&'76&'&7667#"'&7676676676'4'&'&'&76{ATWK  ,''=( &>C._2A,Z& +E!. K,,& 81 * GV , ]=(4672'&''&'&7676767&547767&&  8 '* 5I N"6" :21; Q  "U5  " 3') - &%/6'&'#"'&767&767&'&&76'&65&'&V*+\[ *QZ_& .& 4  't!(# BZWV6C2 "UD'A.J 3$ 0 4 , 5=Q6#'&7676546'&"32@ &&1D8d /* 13F %;:?<##21PQA :%d%-7676'#''5#"'&76767676'&"676'& iZ> 0!"k1 8=)L&~.'' %<_ ^ ]  #"S& "0ClZ,|O 6"L&*?S46#"''&567632767676'&&1&7 ( b" $t4<+1  aW0J '*'<abH Cg6' !SQ9$yE5$76$%6'&'&'&'&76676%6%66766'"'&76jb! $:+ff{p) C;y?5*f;D+*"!$ͩuZ & C   )-U H /:;$&&>21 W*576'&'&'&76%6232'&'&5476^>!x RE+iO  Z^cJ 5KuGE~}G'*  ?R+%&'&5&&7476'&'&&'&776 #$Z@(^!>++#  ,1? 7  * +$&d.7'232767&'&'&76%632#"'&&'#"&'&54 *65!s  xfIjA E0 ['[U 5; @ s4vB_*&95%#"''&7667632767&776 u  H*Sq]e88 +%S 'tZ0\-$P>R77a1b1 }JZ X#<%x"67632"#&74767&&'&&''& ! N7  $ - 45 >''|SSf9 >#2632'&'&76767&&'&&''47   #TUAM5@  1   ![::Y fQ3$$md`+{R oPPF"7'&'&"'&7676'4776  9* F##  Z>kn E " " B*f>[2%6'&'&&'&&'&6767667&&7676N  92E  -Px   &* qZ ", )=-&F.U((L%%F"F  ,i0*+%#"'&'&&''&5&'&767676<##F$ [I*%4:  $$!m , +-(j# P6: v aյ^S- H>'&'#"'&763676766'&D7 M;/B .*3##7> E 227[>b" +8S")7667676'&'&&'&7667667&h!/C    T$-% < A,%~ ?; 9" +3 'c 0p?9&54 .76#"'#&'&"'&763676&6'&&$<=KDI qJ20  ^,< + 601A28 ZK- -Y3%?N*%632#'&&'&5476%67$765&'&7   _d[$QX6-+ &91sYSK,6<)%632##'&766763276'&7   AKZ76'#1U$ ucr55L&gA_$\yP;;)$'&&'&'&767$766765&'&776[ )cLӆ\#E  A*</$s3PL.F%3-#1)* ^<(?0>\O <%'&7676367656'&&'&776 :g758 >&%rN !N/.Y,0"[ 33Y[M hA@U.O'9 J ,v08%32##'&'&776327676'"'&76&#"76?% 'OV?3C:3!UUVV! S#"4*  w  1j #6`u1dI0 !!CXEr :Vu)12'&766767667676''&76&#"4 Whe2 0%C12b?w71=BR,,@ >r8;d>H&36m7a@B./.,'$$@uv:d*!'&'&7676767676676676 W9(JK*8  @) %N+)-E6y(!EBj((N5Ab" #=(%7632'"'&&'&'&767667676'&xAA88&1A13]+$ +>P ,,`UU  ;/)(*V%676'&&'&54767667676'&'&7 ' ::^:I#:9 _,? (CEAXJK  =S 5N/`BL%''&7676327676'&'&776326676322'7"6767&?u`#it>= Bqf3Sm" )%7'%S.\4& 56 R|?CU>@#N-[%!"e GFXqK d3G( Y: R ? )L#F& 0B ? B2: "(/<2#"&''&7667&'&#"#"'&76767632676&7676 -, [8 4 ( 4# J,({z9G8& :hi! " 0/C G*$ F & A 20$k4$ =8>6''&&766766767676'&'&776676&K!Ho\-f0   q%$ %"OWXYb,B9WV:'.- '4 NsLB!KkD8 . W Q% J 2WED %R5 ?:ILW+2 +9UM%67676#"'&#'''&'&7676327676'&77676766767676 15J/ :25Y'v+ 2> EX\*; `1 '* ^9"q Q.; 6T-Y&GG\t/t"#?NX S !!1 ".6''#"'&767632763276'& I4">=@40 b4AN) () &($Q6RDK,+ Z%* ,9uE632'''&'&76763276'&7667676767674'&7}  # />.S 6q) .? $Y-  44 '2k .H: &Q +I =+Y(HIUy*N` #  *L3O:76767676767632#"'&'#"'#"'&76y0 "# $<  R&G$'98',c 1r  @]c>8.''C; 9@%'&'&776&'&&''66763267676#'667&ZA.% j]C    ]d8*=N, bwat]?&  ? H#nIJ@/  .  /B+P. 8 V,& q"C:E6676"'&76766776676454&'&'&766"6676'&}  H&$!J[U ! 8  c]`:)(  dn 2Pt 7 ?3$6'V=##)\<8=D667632667676&&'&'&776&'&&'&&'&667&!   >Y4'7DK-% $_;B Ilg=!  J%1 0< # 12* A4l99c++/6` - BC7@%&'&'&?6&'&&'&763267676#'&67&NKu;G $+7  {'(Dh* > ##'%62'&&'&767667667&''&7&;#/ AB'(B!/  NG=((0&;;!a(,2YYJK   (##:*;O/+9c-6766767676'&'&'&76676#"'&@   O&6 ==1$O8az( zH9t1=-  Jlk8!/ ): %& B56./&'&766767676'&'&'&7676676=[<kl 7 0 c#-v `b$i.[ 3#A 0'M-s Nj2 Wq^,-6lKc+7'&7476'&&'&&'4776#"i9' tP- p~? *Dy77M ) -H 8uE"tD2'&7767676'4x 9&   I// L  ( >6%'&'&76767654'&776 HH<  'cd #"&&''&7667632766763676   ! D*  L*B8R) (# =I 4   {)766763272#"'#7667&7&32767)   *B akN#b?0' %)H(LC A9JS?%F-8'K2y:UI7676'&&'&&'&776     11@99B  +$ L\#6#'"7763676'&&'&&'4776v YtWG %0  'x) |K8M j`$/$9KQY72#"'&'&7676#.8#2' C!=&z?  D @6  NNW8L*22''&7&'76766766763266767&'&--/.O\   =I?%5Q*  D$Q.Z Xb^""L$$@?  '*dY)_67 6(H>a` ?$2'&'&7637&&''&&''&76676I # &HJ  "! AA5* 2  #&767672'&'&'&-  ,++  1* /$%8-&%/8U#'&#"#"'&76767&76    ]5) Q') , 43 JP?q,7&'&776'&7676E  '&: L83/,'$ )*+'&#"'&76327676'&77632\ ' $^5 %OP(1# X` '4o=z (3 'v (F6 Z6'&#"'&5476I5& ($&&@"$$ K&+H $& d*-a@ 6676'&'&76Dn+W%<[1Zd'  )5  E/= QYlA 6767676PO31  ,.O%6'&#"'&767676l2//DG  =P%***-.67N-# (&%b854?*%&'&7632'&5676327676'&'&&  6 ڙ?3=;!b1B $ (*02QBg}u  Q "676'&'7676'4&''&&766 )';% =5*  )  U.oK' 13WO  +k(667'&'&6326767&' } *[3ecE+l! ?>R@!"C  '$%!11z.I9<;$$+%'&'&765&%&'&767667676 EF%#5'$)xQW&  \ <89TC + yC !#E%]!+97&'&4767676'&t36 H- #25ZP   4   " g)'&&''&7676     & ܅&)t. #)  '76#"'&'&#"'&7667& "   4(&F" & F% @4 * J=7"547676'&766769)   !6 Z{z' :8J<!%67&'&&'''&77636'&'&76H\ /F E[.O!  ]o <aBY JWn7i2؅8 + [667632&7676&'&&'&762 =+7" 0 "An/-'/G%676762'&&'&'&76765&'&=1.L[&B3yMN>? # #  3 ! 76'&'&"'&767676H:3 $>AFJ >`&  5<7'&&'"'&7676=9!X%  !M(  E,+ 1  9"767632#"'&'&76767&'&^ %aQ*  $,.9j Ms& "' 7=6  :J0  9'5676''&76763&5478K  <*(+9"= Z; B&  :dY!&'&'&7676'&767676'27&'& ./L'6!8:?%  b C \'Cx*)h."QYV676'&&'&'676'&&'&RI0K{  $N+=DK %=2&T4T 3  ;300 A&63#"''&763676'&&'&7  4+ l / "W  8~GkQ Kg %9+Wx 0's))1%'&7676327676&''&'&7676&76k Fh660' H9 -2%/=$)6@_EEtWJ@<3d#"FF "N0*g86'&'&'&'&'&767676676766763276'&7@ ; B+7& 3,'lD E1    Z)N= 4 N4  |UQ% 0#1 +  2 #'&767'&76676? 6_  J  X Z (G  ((  ( PIA0F*%%'&5476676327676'&776@/3#F[  J --tqM/($I30Ao S_ @ ;`nA2#'&&''&767667&''&767676$76e̽X >Cb$ @{=Y2$-. )J"W"aD/@ ",+% .l>SECSK "1# ! PX A%,R&&@ #"'&'&&763254'&7667632XY 3@ UF ˞  X    F `!%9%'&'&&''&'&#"'&76763236767276676 #,33461'1W1 M- ( 9 '5 ?4J Mg# e  - ,*#7'#"'&&'&&54'&7637676  ! @ !\( >5)!A 4<)R("A >.&'&767676654'&776G`K:3 @?8e3h%?f%,?@?IH {5#"'&&'#"'&767&'&&'&767767676 )3 Y999$! /6FQ 2D <0F"R/ ښ :7U -]??>$ ?@S] 555 #"%2'&'&7636767676'&774#+L*5`H!ED P23]49 0/=! Z>!6676'&'&&'&&'&D    '  +& C !cI] ,l /:7&7667676'&&''&767"6676'&7276'&&7 /"# /?  W+H5; %#8 2%7W 9h#,03A * ## #F$ ''12+  (Z76767'&7676V5 f  J  ) Y5H/:( 3c''&7676'&& 6h4'   <4B  ,') + 5$&8UI>6'&'&'&'&14#"76766767676327254&'&747@9& ?Du1!'H 4Q#" 0.+'C >O&C= V (_)  nH#'&7676'&'&&'&7676$76  ` 1@ Tq :GJqe/7  !F  (8Z"='%'&&'&'&763767676'&'&77676 *0R3 i(*>> )(.463  01* Fg&'&767&'&7676'&&76$ y%$67.C*3]&-C\y9 %.6 -70///= i,`u!197#X*m)4-#d ! # )g=f)%'&76676766767&'"776"O--V)9Q;  $LL6r:') G//3 Mm$  yCE -%  4 cK"632'&'&&'&&'&7     .  /-Z *6/GN '&'&7$p%*PFR11&;h*QY076#"'&&'&&'&&'&'"547667676766'&6D 4 Vb+7'   )/)) ))2>    #^#"&767&&'&'&763 :'   $ xT @3dF-)7#'&''&763270&''&&'&776 ) % H  s5#+2q#/  .%((6%1%2'&5'&76767'476676'767&&i V!X. 238   c $ 6 j h1 :)* 1$$97 g   e"'&76767676 /  F ,w636#'&'&7676676676684 @'M5&! /= 4!2H1C[+>" @$QY'767676#&'&'&)8D 8R 6())& '5 eh $ 4 8U'&767254'&77632KK @4'' 9E-,< 3&)%'&%&'&767626767667676   " A=A /g{33/ +'q  f&6763276676'&  , "   M/2#&'&'&76567632 .= .! 5+$N(&O  ' ."<88U72#"'&&'&'&'&72'&'&'&'&547676676od C@@_  Lz>,0'@ '(D  "bR'D W]+(()6$Z)[.#1 PJ '&.`0N7'&''&767632f$)' =+. 66'EB#03&'&'&'&76+ 9"!M'  # <+1W ,,+26/%'&7667632767676676&'&'&77636  GGp! H)_FC 9''I#E33lCH%C=X#"*!6!?/3*%'&&'&'&7676676'&&'&'&76767632 0!;w  >c% 1-Q--J2>sZ$  %< ,);u!%6'&&'&767667676'&7 AAZ32%;90' ,k pMM "$:(2<67632'&&''&76766767&7667667&'&&'&'6'& [\ O2sk6 )?$#   !h $-% D3 QQ/U# 84  .! O 2,G  ;R-2'&'&76327676''&'&&'&776E   S   ')(   '`JIfx00"y! +>6%'&767676'&'&77632%N'./n w: !('*'AZ/F0d1C  G-5'&7667&&'&'&7676767667672'767&T$     "(hg-U<;=$9qF'& 8ji!E_\0-G$  #",,;-,4*-/^$#!."=\3Q/776'&#"'&7676676636'&&'&&"7667676/n={F  61a&  b036 ; (5  )$"7     R%'&'&'&'&5&7676764 32 $$55%Z: &&; (;;*+/.8s5&'&76'&7676327667276'&'&'& " /e  ee|9:; w+5RRPQ_ 5    #00 4XW[iJ`& 1) )4&%'&'"'&6767676767676% # 92)4)(  2$' O ;-9"3 % ' O<8!"'&&'#"'&&'&766767676'&'&7676676! W;-8/-6$  )#(DD!   5d1    C,%D; 66L) ?    8'Z[5!'6676767667632#"'&#"0 $u%'   '  /(C%'0' * n aG )'&'&'&'&76766767636  rr)=- 7^(H!2g  L :  --P@Wl6'&76'"7676766763< 2S!.? :jH8'`;   G   9V'M  "$&7632'&#"'&7667&&'&"'&766)[1"G> L+U!gg*>n.5?   F**?   T*%'&767237&'&7676'&776QN/[3  6<78X ^_*"$?@! < ! +'"1Y4; N $"58 ) #"/%72#&'&76676&'"7767682:   =""<%%  :$L>:.+    2` 2Ij#+! 7)%-767632#&76'&7#&767&36+% "V` %: /d  #  * ?)R@ h-+  M; 9 >I<A +62 -H+&6'#"'&767676036'&'&7$ E706 8  $ $Z%8]BN  , -52767676767632#"'&'"'&K  !# #/  D&F$., Z *  @]c<8,DV (676'&7#"'&766&676(-+0 6 +&4iJ1O\M7.01 19  9DGmP/ s;L0>%''&547661&'&76767676#'&'&667676` mn210 =2   l%$1[+'Y1d    F '0 "  A3X 76547&'&71 ?   2*^ //+ C'6'&&'&7(/" Lu76'&&''&&'&776"#0&" 1 L;I q+76'&&''&&'&776'6'&&'&7#0#" 1 $#0" L 8H LCpwqrr9.yF%$76%6'&'&'&'&76676%6%66766'&'&'&m= $;+ff{o( C;vA5+f;D+*"!$ͩ +^[ < C   )-U H /9<$&&>21'-" qL5$76$76'&'&'&'&76676%6%6%66722#"'&7'&&6iͿ &;+eezxkm )C};nG4,%8F*+- 6& IKvZ . B  *-]G 28A$ $&'<>2W, --)2'&&'&54367676'&''&'&76V  DF4( )Q 5   c   ~Ju%667676}A uB%T.2#U2  9yT%$76%6'&'&&'&'&76676%6%6676622#"'&7'&'&'&m= $;+ee{{in( C;vA5+f;D+* 01 M? # ,_[ < C   )-U H /9<$&&>&8!'-" s-''&&'&77676'"1&&''&&'&776$0##1 $$/#hL7I Ls{7667676676 TފZ (P(O v%&7676#&'&'&'&7676'&&X   *  V!,N S" 4  %s) 0}x  :>v2#*66676&'&'&2776&'467667&!  &89;& R &BB-He  / #c> !C'6'&&'&77&'&7$&  /" $$ 2 L6 WSF '&7676&'&76F ?;!" % ! Q 3EDG;0AO%676'&''&#''#"'&76676327676'&77676767676 %10.  :25Y 'qfAB"; 35LNSU+;  _<  () T EQ.; 4O7V@@j+Z.q35&' @QU S ! M Nj'8` 76'&'& ?@ !LZ? @Cp7667676676   OԅW; 1g7"f'767676%6   B9776'&'&7667&&'& 2  !)7"  >)W+C A  QYQY%'&'&7&76#"'& !z "   55G@;= C6U'? 676'&&#667676'&&'&J'Vz #S2{a6- +A(*V2F *R.?vFg80d"'&767'&7676Hg 0U  L  (Y'\.P2:) 3nK%'&76767667&'&''&7676%6bi Q >!?%  3Bi 2  .-)*6%%"@++1a}Sm 76776367 Sl [` w#oo[j/_k/v2x 756&'&776&56&'&776o { !H& *$&C*!H& * &C*ajI#667632'&&'&'&76776'&'" '9I! *" - +- " !!M   Q  } 6'&77676'&7767i  |  E :{V 76776KP" =fjyG7@I6''&7667&76'6''&7667&76&6'&6Q   -$"1W   -$"1  D   : #&/    : #&/*    \#6''&767&76&6+   !30(=# 1  %/  "50:7 2676#"'&766&76'&S       4   n 6''4766r  cl + a25_ &dcB Ng8/_7#"'&547632//ga747632#"'&g,Jc&y}Cpwqrrs{Wwua_k/z* 3#"776332S       >n}rm Bsp Bup Bup TX"#"'&'&7676676'&'&'"  J"OY6(> F 3MhS b`]|k7U UV <\3vc#667766'&'&ho? D ?KLY o 2 D  3$'&'&7676'&'&5476766768:1  kLE #SJ 7Z.E;9%Fk3.&Pv/M ?E2d c0%'&'&'&767632676777632>% T2^OO30H|4h#!  ^ " C!? II3((.%H&?{#R / 7#"'&3270&'&&54776'&cN +B, *#II+wwky ,  Wx"H ,=4%%'&''&76307676&'&54776#S!P;-^ ^,= N3  6^X ,  Qy'H55357&'&547676676#"'&&''&76tX!&SJ 7YXoQA)1 k@$ A0$^O|J"!hv/M ?D11GR2(^C)%63!7'&7667676'&&'&776'&F<    * !+4   (Lyc45 207'&'7676&'&&5467762 P_>^   0+#{{ $ 17'&'&&'&&54#""'&76767654776  +22jH2 gC&{d @ECMMR"2*6fH+5{&%'&7667632767&776'&' Rlcc98 +%T!'tZ0:!<?S77a1b1 zMZ X#<&? R7'&'&76&'&&'&776#//6    ^80!88g.>P# . e^s("2'&767676'&'&547676676 +ST CX*fPPdU{%O #y% !#,+*aD7,!;x[ >&M&&8571/0 \=32#"'&&''"'&76763254'&'&547676676,b?#0 =W8& H]:Mq5 ) F \)bUF3)=>Jc>K %6KN#K%1"?v[ >%L(A^@'676'&'&76   f  C %FNX'&&'#"'&7674'&'&776b%E" %= ,=  t1-0"Y9D=%8$g1%'&&''&'&6767632767&7676}  'L&Q, && FTR#G  $ 1%Y4g ;  A'M>EF . $#''&'&'&&54'&776sN.  |Y*)Eo8F0I=04J7&547632#"'&566767654'&'&#"7&76'&776I0L>9kA@12F $8%%::_4:d;Y 0rmj  GO&Y!j8ZVN}*kjnoLM !@@Qm__'5P+*& pmu *=q-;<\j)6'&'&767&'&''&7676676$R  >kGR _S) Ig 0 H*,Lu+_q:M ;0 *T 6-.& 4y;/22#"'&'&76767&%&7676%26- Gi?QQ'9  (5="/&44!  / E6b,7?HHB d2&. *%0 * B wt8u)%'&'"'&'&767667'&776'676'&_ 5%* 9$   UY ! I/9 #RN&' -Pm8|0 .8.&'&'&76766767&&'&&'&77632)FD#   %e  ) y!1 R8 ")# .Hze %O*632'&7676'&&'&&'&766*  >   + Fk$$H%  T*``h #676'&&'&77632#"''&766 #, #4 J,C (X! 4PV  7{$/%'&''&'&767667'&&776'765;@ "=%.<( ? *G jR /VO*( /!Fx% 8'"'&''&'&7676767'&7763+/$Hx$ Tx)';`)rJ1 ))6 5 E  h)A __X-232#"&''&76767&'&'&76676; $_ J* X501;2 &K   YXC(Q' XE6#H" N \`--6'&76765&&'&'&'&5467676766%yu  =923(2E .Ih*8D=15  /8(; '1&8|&'6767&'&7676'&76'&DM5-6ubq{3T0 XD&   /0/f~$MF B  1 O-!6'&7676765&''&76&#"76)!2):C 76@I G $*Del)"  !=J|k2'&'&'&767&'&76:""f  tLQDM-<\t4  F$%  0PC='4<2#"&''&76637&&'&767&'&76&6676776'&i, U56F!  a- "+ W$ C k "= =M3(B 0 "FE  6%=6  402 :;7676676#&'#"'&327667&&k 7#* ^S-1'5 z:C9 ",5!(6cD  $$&0'&76767676'&776'&'&'&'&'&0  +X&AG  6 $C$3I( .  q*'r  $ ;%U H8 F(,4#"7672672''&77&'&&'&%"767&+ &e  4`%&' "cdn - VfoTT1 &  !.*#   !)   }E!767667'&76676ru' %    I/  R5/83+' / '%8U<R06'45&7766765&'&'&'&'&7676$ [ ,A7V>( " JE @z9 4w(36i&"<;?A6"7767676'&'&7B  :a P. ./023 B 945*,j1!76672'&'&'&7676'&76676C~;.,.DA/Oi$xvE * H 5E <5  \F'&76676'6676   /(5 +9Y"J  A  -  )7!8*>E'#"76767676'&&''&7676"76'&r5# y 9"*4G  J[& !1* 3*Djd Z$''47667&7676676'&76$oM5] \=E > 6/1e"a)z; ?,9+ )E'7< *d7?GS,7&76676676676'&'&&''&7667632Q4$       ]   kCW7 # SPOi,&0:'656766767&767&'&'&76'&&'%&76'&65&'& 3$$ 5*)]\ )%P,Pq (h'# !  *@/ZYW5B24 .&# $  4 , 2$&%62'&'&'&766763276'&'"7> @ $K11  # =  B((>>T+G  ]H!` o&76767&'&''&7676676%6l& #3Dl{ 9& W? <$  ט', ( )^v  RE&  FCZ &6'&'&767&&'&'&&'&7   , #4  #  C$   >!@f2< .X_'&'&'&767662H %C(/H .@2 'F7'&76676'&'&'&  7@= .+f /D,    * (7'&7#"'&&'&76761076676$V6") TA  $  .p@ 3 h   o B#e25'! 7'&7476'&&'&&547762'&|:)  P gU0 ' NC{ $   i!7632'&7676&'&'   N & b+ 1 # C*]@_m 45 v\. '&'"'&76767&776h13 $"!F  5%!EG J Z6% +  4#7#&'&&'#"76767676'&776 >#kF tKp%'~/Tw`>  5Odx +  G9c/6'&'&76676327676'&&'&7 (L ^ )[O67Dxn&  !Z70sG$@ j*5RHiA0%'#"'&767627667&776l&/NRb77NX$8g.5P,  2GK;:``a yK[++ 3-: 3072#"'#"&767&&'&&'&76  ]6)'  3 "Z>=T @3:T+/T&'&767&&'&776#"'  '5  %D  2& =88 ):I" '0.T%70#&'&&'#"76767676'&776 @- kF tKp%%~ D~q`>  5Odx +  i"'&'#"'&76767&7760h   T#F  5%!=1# (7  6% + 40K+6'&''&766767676'&'&7 !#  I)<(N&G# CAKf8zz! ! e6 h4N5 ]DN >!/~ 0q)#"'&767627667&776'&IRb77QX$8g.5   ,CK;:`Vk yK[++ 3-:pT: %: O)7'&763076'&&'&&'&776'& =;-t 7 ##%03  4_Y8R,  OE  1!%7'&7667676'&&'&776'&F<     :  $"4   (M#մ/+@ /  77676'&&'4776'&V_B   93 $"!2+%F5S %X)E J )(7'&''&763076'&&'&&'&776 V'A;-t * %:  .3  4_Y8R,  #7'&7667676'&&'&776'&F<     !   >1   (M9֝/+8 %:  7'&'7676&'&&'4776T#_B  A %:  2+#!p5S %&dz&'g&gsl gH&gr8 "<&<dL&bc=&o>y&oz1&1&'p%p%Z&p%&{%$&q%l&%&r%;XW&'ppZW&p&{m&q&&rX&&'ppZ&&p&{<&q&&rC4d&'rdp4&4&'qdr4&4&qd4&'pdq4d&rd4y&G4'&'qd4\&j4&r44r&d4h&k4c&{d4&{4&4&p4D&dA#&o #&&/s} qs&'pUskI#&=:&jUh&'pUs=6:&&jUqs&/rz qs#'{s^&dU##&k#&qs&UVP&SB#&k?A&{SB#&{s#&g#&pSS&UsB&'pSrSB&pUs&'rrqSB#&rr&qSBO&1x%<&&kUqsB&rSB&UV&'pSpUs&'pUsj=g#&'qSBkI&'qspUs#&{s#&g##&qs&'qspUsA &o  &) &'q+sn  &'pzdz;% &P &jz Z&'pzdb() &'q+jz) {&'q+rk  '{ @&dz   &) &q+ y&zG 3&q% &kk $&{q% &{ & &p D&zd %&'rq%p &pzd &'qq%r &r &qq%) &'q+kz %&rq% y&zG &'pzdp &'pzdjbX  &'qq%z;) &'pzdq+ &{ & ) &q+) &'pzdq+%D&N6%&kNz%&;%|&NJ%&k%&pN6%%|&'NJ%&qN6%@|&'NJpB%@&pB%5&{N6%6&rN6%)&q+?x&qE?x&rD?&&p?x?'x&p>)?'&'p&p>)?&r?x&{E?& &r&q&qqo&pN&rq'&p)'o&'pNp)&rq &{&qo&pN{{&r{&q&q&p&r{'{&p)'&'pp)&r{&{&&p5&pVs55&dV5&5s&rVs5&p5S&Vs5 &qVs5&5&'i$qz5&i5&q5&'pVs{5& 5&r5&V5&{V&p*V9V&d*V9&8V&r*WV9&p*YVl&*V$&q/V9&>YV9&'=qN[V9&=@V9&q,BV&'p*{,V9& V9&r+V&*V9&{,&p=9&d=9&4&rC]9&p%_l&=$&qC9&9_9&'8qIa9&8F9&q'H&'p={'9& 9&r&&=9&{'=G%'&&'&'&76676:/' 9 C.%'[+ # E  &gA,*G'q=m&qd'<.'q<.&{?S&'xd2q~<.&r?S&xd2<']'l<'l&< 'l&q <.&]?S&'xd2p~?S~&'xd2r~?S&'xd2{g<'l<.<'r 'l<&r <.'p<'q'lW &qtW&{W &qtW&rWX^&'}{/\ X^&'}{SX^&'}{qUW&/\W&ptWt&rtW&{X^&}{Wt&'}r2tWt&rtW&ptq&'q/t}d.&qid.&{ud.&qid.&rtd.d&'>Md&'MAd&'quCMd.&>d.&pid&rid.&{ud&Md.v&'r2d&rid.&piv&'q/5&j,y5&r55v&{]y5&p%5&&j'-&r#x&{_xl&p'&;&j?&r;&{iZ&p?&R0*&p 0*0*&pGH&pxH>zH>&p|&p4&p<v&pL<v&'pLq<<0v&'pL <&L<&'pL4<v&'pLp <k&'pLj4<&rL,v%&r%,v&p%,v&q%,vp^'n,pA'njjp'nd[p'np]p'nj![p'n'p]pEjp'nqIpI'nrIpW'nIv'npC'nkp'npIpW'n'qI%pnp)'nIpe'nd/`&qE/3&'p6p>)/3&p6/&r6/`&q&'p6pp&p6pp&r6pU&q &'p\p &p\&r\U9U*&'r *p 9U & *9U9U#&k 9U_&3 9U*&r *9U8&'q *9U8& *9U&'p *p 9{U&{~9{U*&'r *{~Xs&'r=sp=ZS&=s"m&k=&} s&r=s&'q=s4O&=sX&'p=sp=Z"&{Es&'r=s{EO7&'r#7p O&#7OO1&k#Ol&@ O7&r#7OE&'q#7OE&#7O&'p#7p O&{O7&'r#7{; &p@; ; &rA&pv&rtC&pVCC&rVo5'nr5oQ'ndo'nq5o'np5oL'nrE< o'njoO'nco'nz|'noJ'n,o'nkoV'nsE? on9c&3 9Xc&{p[9&r 9&r9&k$9H&q9vc&x9c9&s c&K9c+&d$9c&n{9c&qp9&j$+&jSJ+&rO+n&{+&pS+&RA8uE"t&  &A&'qCs &'pwb>&R+D&jwD&'pw_OA&'qCjwA&'qCr '{D&dwDS&_A&qCD&wnD&&kKD&{&{&sX&p_ZDl&wX&'rp_ZD&pw$&'qr&rD$&qD;&1A&'qCkwD&rD&wnX&'pwp_ZD&'pwj_D$&'qbA&'pwqC&{&sDA&qCA&'pwqC6K'nW6Kl'njK'n_pzK'np|K'njAzK'n'p|p=6K 'nqt6Kt'nrt6K'nt6x'n6Kn'nk6K'npt6K'n'qtP6Kn6KT'nt6K'nd&jk1&rg&{p&pk&jA\L'nrL\h'nd\'nqL\'npL\b'nrFR \''nj\m'nc\'ny'n\a'n-\)'nk\l'nsFU \n&j=&r?C&{B|&p& { {&rt{&qv&q&p&r{{&p&'pp&r{&{&&p2:'U 2+:'U{e.2y'Ure| 2yu'Uru2yo'Uk2y 'Uqu2I:'UwK2y:U2y'Use y:'UP2y:Uy'Ud2:'U%I2:'Uqe2ym'Uj_&jEq&rI?&{iBI&p&$&jM &r ?&{B&p &AQW&YpSQYQ&Yd1Q&Y*Q&Yr6]Q&Yp_Q&YSQm&Yq6Q&Y0_Q&Y'/q@aQ&Y/FQ&YqHQW&Y'pS{Q&Y Q&YrQK&YSQ&Y{&[ )&+c&/s3L q&' ;pB&q:&jW&'%pB:&'jqY&/r3I q#'{&^&d&F&qW&%P&B)&keA&{B#&{&A&C&p"&BB&'prB&pB&'r!qB&r!&qB<&'kqB&rBW&%&'ppB&'jIpB&' ;qB&'qpB#&{&A&C&q&'qpBNW8L&qQ&'plpJ&pll&rlL&jS6&r; &{t&p;&eA&o &5&'qs &'p3e &O &jf &'p &'qj+&'qr '{0&d &&qM)&"&&ko&{&{&&p&&'rp&p&'qr&r&q&'qk&rM)&&'pp&'pj&'q3e&'pq&{&&q&'pq8UA,&o ,&&'qs 3&'pL119 },&&j6$&'pL3t&'qj6$&'qr ,'{&d6$q, q,&',&q&L&Ls,&k&{L,&{~,&;q,&p'&L&'rLp'3&pLI&'qLr,&rI&qLO&1d%&'qk6$&rL&L3&'pLp''&'pLj3q,I&'qL113&'pLq,&{~,&;q,,&q3&'pLq)*8&5*)*&k1z)*&;)*|&1J)*&k)*&p5*)*)*|&'1J)*&q5*)6*|&'1Jp 8)6*&p 8)*)&{5*)**&r5*)*&q !$& #R %& $'& 'q&s Z& 'p,kJ & m Z& j,{Z& 'p,$& 'q&j,{$& 'q&r '{ Z"& d,{Z & $& q&Z& ,Z& ,|& kZ& {,& {& & pZ& ,& 'r,pZ& p,& 'q,r& rZ& q,Z& 1$& 'q&k,{Z& r,Z& ,& 'p,pZ}& 'p,jZ Z& 'q,kJ$& 'p,q&& {& Z $& q&$& 'p,q& QW&YpYQYQ&YdYIQ&YQ&Yr^IQ&YpKQ&YYQm&Yq^Q&YKQ&Y'qMQ&Y2Q&Yq4QW&Y'pY{|Q&Y Q&YrQK&YYQ&Y{bA&  A& KF& 'q>s/ & 'p?%<gA& & j?& 'p?%'& 'q>j?<& 'q>r, A'{> A& d?lA *A& HA& q>$& ?3& 0%A& k4$& {0%A& {>A& \/A& pH1& ?%/%& 'r0%pH1& p?%& 'q0%r=A& r=& q0%w& 1fM& 'q>k?%& r0%$& ?/& 'p?%pH1& 'p?%j'lA & 'q0%<& 'p?%q>A& {>A& \lA A& q>& 'p?%q>O& V O& t& 'qvs z& 'pA'qO& ^& jAm& 'pA)t& 'qvjAmt& 'qvr O'{ & dAmO O& 3tO& qv& A& 5O& kR& {5O& {.O& 0O& p& A& 'r5pz& pA & 'q5r  O& r & q5t& 'qvkAm& r5& Az& 'pApo& 'pAj)O & 'q5'tz& 'pAqvO& {.O& 0O tO& qvtz& 'pAqv?9&g ?&{u?V&rF ?@&r @?9&k?&q @?&??`&sI &E`?)[&d?&s?&qu?7&j&j&r&{W&p&!k& >k&{IA&r &r&k5Y&q\k&i^k&s o&dk&d5k&Gak&qI&j5+&qS +&{ +&qS+&r++V&'/DS'+V&'/{)m+V&'/qo+&DS+&p+&rS +&{ +V&/++&'/rS+&rS+&p+&'/qSA&o &m)t&'q`+s] &'pTkX%&*.&j'vI&'pT).&'q`+j')j&'q`+rZ '{`R&dI&k)&q`+&XOb&OT&kNS&{OT&{`&v&pb4&TT&'rOTpb&pT&'qOTr_&r_&qOT)0&'q`+k'T&rOT&XO&'pTpb&'pTjG&'qOTkX)&'pTq`+&{`&v)&q`+)&'pTq`+og)&j)Rg7&rg)&{ig)g&p]gQ&'Y&j6+&r4&{&pA&s &'pz*zX9&3&&jzU&'pzb<&'qi>jzU<&'qi>r '{i&dzU"&1<&qi> &&z&q&k&{q&{i&E'&p1)&z'&'rqp1)c&pzy&'qqrh&rhy&qq<&'qi>kzU&rq &&z'c&'pzp1)W&'pzjby&'qqzI<&'pz*qi>&{i&E<&qi><c&'pzqi>&'pp%&p&{$&ql&&r9'&p'y'&p{ '3c 'j3 Ld' d'p ad'jp d'p'pp 'qi\ \'ri\ j'i\ d'8 'k3 'p3\ 'qi'_ d <'3\ ;'d3YY&rDY&qE5&q/&p*&r/YhY&p%h&'p*p%&r/Y&{E&/&p*Q&YpsQYQ&YdQ&Y Qs&Yrs;Q&Yp=QS&YsQ &YqsQ&Y=Q&Y'q#?Q&Y$Q&Yq&Q&Y'ps{mQ&Y Q&Yry&YQ&Y{`& p V && d& 1 & r" @`& pB`&  & q" t& 1B& '0qAD& 0)& q$+& 'p {$s&  & r#& O& {$A&!j<A&!rA!A&!{A{&!pA&!$0'sl&"rl0's&"pl0's&"ql0's)"g$&#'r$pg&#$g#g&#kgZ&#.. g$&#r$g2&#'q$g2&#$g&#'p$pfg&#{ifg$&#'r${i#$KP&Iy P&Iv2&I'qj4s 9&I'pdP/P&I3&Ijd,&I'pdK{2&I'qj4jd,2&I'qj4r P'{iI&Idd,PIP&Ih2P&Iqj4&Id&IdP&IkT&I{dP&I{iP&I|P&Iph&Id&I'rdph9&IpdO&I'qdriP&IriO&Iqd&I1xk2&I'qj4kd,&Ird&Id9&I'pdph.&I'pdjKPIO&I'qdP29&I'pdqj4P&I{iP&I|PI2P&Iqj429&I'pdqj4A0F&&pBwAoF&&'pBwq qA0F*&AF&&'pBw _A0F&&BA0Fl&&'pBw*:AF&&'pBwp A0F&&'pBwj*jA0Fw&&rBw=n_&'q`nA&'{;=n_&'q`nA&'r:`nA'`q&''n%`q&''nQ`Aq&''nq;C`nA&'%`nI&'pCn&'r`nA&'{;`q&'n`nA'Cq&''nrCn&'r`nI&'p=q&''nq&r&) &)) &)'q+sq &)'p;gXp%&)b@_&)j;@]&)'p;g"+) _&)'q+j;) ~&)'q+rn  '{)@&)d;@);&)) &)q+@|&);J@u&);g&)k}@f&){;g &){&)@&)pB@G&);g@g&)'r;gpB@&)p;g&)'q;gr&)r@&)q;g@&)1x) a&)'q+k;@g&)r;g@|&);J@&)'p;gpB@&)'p;gj"[@)&)'q;gXp) &)'p;gq+ &){&)@)) &)q+) &)'p;gq+'V&*'r4Vp4)6&*4V*O&*k4&*_ V&*r4Vd&*'q4V*2d&*4V'&*'p4Vp4)&*{;V&*'r4V{;3#7&+a #7&+#&+'qs  #&&+'p#7&+|#&+j#&+'ppg#&+'qj#&+'qr  #7'{+#&+d#7+#7&+#7&+q#&+#&+#7&+k#&+{#7&+{#7&+#7&+p#&+#&+'rp#&&+p#<&+'qr#7&+r#<&+q#&+'qk#&+r#&+#&&+'pp#&+'pjp#7+#<&+'q#&&+'pq#7&+{#7&+#7+#7&+q#&&+'pq.M',ni.M~',njM',nrpnM',npzpM',njg4nM',n'pzpp9.M',nq.M',nr.M',n.n',n.M',nk.M',np.M',n'qb.M,n.Mf',n.M',nd W&-q{!&-{$ W&-q{&-r{-{ &-'{? &-'A{ &-'q{&-UA&-p&&-r{!&-{${ &-{-& &-'r&&-rUA&-p  &-'qv5'.n5v'.nj1|5'.nH)n5'.npp5'.nj4n5'.n'ppp;5H'.nqg5'.nrg5'.ngn'.n5x'.nk152'.npb5'.n'qg]5.n5'.nb5'.ndb$>&/j eJ&/r>/&/{8>^&/pbV&/l0l0Z1&cp4cO&cdE&cG4&cr4&cp&c4&cq4]&c_&c'Vq+V&cV&cq ?&c'p4{ B&c ;&cr=&cx?&c{ BA&3o &3+&3'qs &3'p@ Z &3[&3j@&3'p@ (&3'qj@!&3'qr '{3&&3d@3 &3&3qA&3@&3@ &3k{ &3{@ &3{&3&3p&3@  &3'r@ p&3p@ &3'q@ r&3r&3q@  &31&3'qk@ &3r@ A&3@&3'p@ p&3'p@ j(3&3'q@ Z&3'p@ q&3{&33&3q&3'p@ q8UI&5'rpI&5$I5I&5kIZ&5!. I&5rI&5'qI&5I&5'p$pI&5{I&5'r{%t&6qn?H&6{B%t&6qn;H&6r=nH6n&6'}n]&6'}_n&6'}qnH&6Z^&6p+&6rn?H&6{Bn&6}nH6+&6'}r+&6rZ^&6p%&6'}qv.'7n.'7nj1 .'7n_;t1'7npv6'7nj;t1'7n'pvpE.`'7nqg.'7nrg.'7ng'7n.'7nk1 .J'7npb.'7n'qg].7n.'7nb.'7ndb=+&8'pp+&8p&8{A&8q&8&8rg8E8*&9qR8&9{lE8*&9qR8&9rkR89RW&9'TvRW&9'T}RAW&9'TqlCR8&9vR8&9pK8&9rR8&9{lRW&9TR89KW&9'TrK8&9rR8&9pEW&9'Tq f&:N rf&:{ku&:rs &:r&:k,O&:qf&:}f:&:ss g&::f:&:d,f&:if&:qk&:j,cK&;jZucZ&;rcK;0%&;{3cK&;pcz&;2<Q&&Yp|QYQ&Yd|Q&YDQ&Yr|XQ&Yp5ZQ&Y|Q<&Yq|Q&YIZQ&Y'IqY\Q&YIAQ&Yq7CQ&&Y'p|{7Q&Y Q&Yr6Q&Y|Q&Y{7&>jU=&>rS>&>{8r&>pU&>[ U&?dl?U?&?0s &?/r &?dm P&?c&?okpU&?ol&?l?-&@jcf&@rf@%&@{&@pf&@o4&Ap#4AP&Ap &E D&EsFC&E&qfs, &E'p_#?V&E0&Ej_&E'p_#G&E&qfj_9&E&qfr) ?'{fBE>&Ed_eEt&E.1&Eqf8&E_1&Ed#z&EkO"&E{d#?&E{fB,&EB.q&Ep.&E_##&E'rd#p.&Ep_#;&E'qd#re=;&Ere=&Eqd#&E1Z&E&qfk_#&Erd#8&E_&E'p_#p.&E'p_#jGeE&E'qd#?V&E'p_#qf?&E{fB,&EB.eE&Eqf&E'p_#qf$&FR &Fd3&F'qWs &F'pB &F! &Fj&F'p &F'qWj)&F'qWr '{WF.&FdF&FU&FqW'&F!&F|&FkB&F{&F{W&Fi&FpU&F&F'rpU&Fp&F'qrV&FrV&Fq &F'qWk&Fr'&F&F'ppU&F'pjF&F'qB&F'pqW&F{W&FiF&FqW&F'pqWQ&&YpLQYQ&YdLQ&YQ&YrLXQ&YpZQ&YLQ<&YqLQ&YZQ&Y'q\Q&YAQ&YqCQ&&Y'pL{Q&Y* Q&YrQ&YLQ&Y{^&Hj m&Hm7`>&H'q9sM' &H'p+[4X&H!q&Hj+&H'pq7`&H'q9j7`4&H'q9rM$ ^'{HW9&HdHI/&H7`&Hq9C3&HD,&H5&Hk[&H{^&H{@&HN,&HpPv&HYN,&H'rpP&HpS[&H'qr[&HrS&Hqw7`&H'q9kY&HrC3&HN,&H'ppPY&H'pjHS&H'q+[7`&H'pq9^&H{@&HH7`&Hq97`&H'pq98U<&Jj &Jo&J'qxsX z&J'pNk'&JAF&Jj D&J'pN|F&J'qxje&J'qxrU '{xJj&JdJ&Jp&Jqx%c&J1\&JN&Jk]M&J{N&J{x&J &Jpp .&JN N&J'rNpp &JpN&J'qNrw&Jrw&JqN1&J1H&J'qxkN&JrN%c&J1 &J'pNpp &J'pNj|BJz&J'qNk'&J'pNqx&J{x&JJ&Jqx&J'pNqx3&d&K'rdp3&&K3&&K'qdr3&&K3&&Kqd3&&K'pdq3&d&Krd3&y&KG3I&&K'qd}3&\&Kj3&&Kr3&K3&r&Kd3w&&Kk3&c&K{d3&&K{3&&K3&&Kp3&D&Kd&L &Le|M&L'qX~s6 x&L'p[-1%x&L"e$&Lj["&L'p[-C|$&L'qX~j[|C&L'qX~r3 '{XLH&Ld[fL&LV;|&LqX~A&L[;&L[-&LkCY,&L{[-&L{X6&Lj8&LpV &L[--&L'r[-pV&Lp[-&L'q[-rW&LrW&Lq[-&L1|&&L'qX~k[-&Lr[-A&L[&L'p[-pV&L'p[-jC fLx&L'q[-1%|&L'p[-qX~&L{X6&Lj8fL|&LqX~|&L'p[-qX~8&Mf &M4&M'q'sa d&M'p-iP&M&MjW>&M'p&M'q'jW&M'q'ra '{'Mk&MdWM&M%&Mq'W&MX&M&Mko&M{&M{'&M9&Mp%&Mm&M'rp%d&Mpgz&M'qr&&Mr&gz&Mq&M'q'kWm&MrW&Md&M'pp%lY&M'pjMgz&M'q-id&M'pq'&M{'&M9M&Mq'd&M'pq'8U&Oqq/ &O{ &Oqq/&OrOs&O'bS's&O')ms&O'qo&ObSh&Op/&Orq/ &O{ s&OO/&O'rq//&Orq/h&Op&O'qq/A&Po &Pr)t&P'qe+s] &P'pTXI%&P/.&Pj'vI&P'pT).&P'qe+j')j&P'qe+rZ '{ePR&PdIP&PX)&Pqe+&PXOb&POT&PkSS&P{OT&P{e&P{&Ppg4&PTT&P'rOTpg&PpT&P'qOTrd&Prd&PqOT)0&P'qe+k'T&PrOT&PXO&P'pTpg&P'pTjGP&P'qOTXI)&P'pTqe+&P{e&P{P)&Pqe+)&P'pTqe+30&Qa 0&Q\&Q'qPsu &Q'pSkXx0&Qc&QjSa&Q'pSk:/c&Q'qPjS&Q'qPrr 0'{PQ&QdS0Q0&QN0&QqP&QSNy&QSk0&Qk:j&Q{Sk0&Q{P0&Qb0&QpNK&QSkk&Q'rSkpN&QpSk&Q'qSkrO0&QrO&QqSke&Q'qPkSk&QrSk&QSN&Q'pSkpN&Q'pSkj:_0Q&Q'qSkX&Q'pSkqP0&Q{P0&Qb0Q0&QqP&Q'pSkqP+26&Rp7]+D6&R'p7]qF+26R+6&R'p7]e+26W&R7%+26R&R'p7] +[6&R'p7]p]+26&R'p7]jP+26]&Rr7]/&SpZ/3S/&SdZ 3&S4/&Sr[X3&Sp Z/u&SZ/-&Sq[3&S4Z3&S'3qD\3&S3A3&Sq'C&S'pZ{'3&S 3&Sr&/ &SZ3&S{'JO'TnJ2'TnjJu'Tn_SnJu'TnpppJu'Tnj]4nJu'Tn'ppppEJ'Tnq:J:'Tnr:JH'Tn:u'TnJ4'TnkJ'Tnp:JH'Tn'q:JuTnJ'Tn:JV'TndUUR&VjCkR(&Vr?(RV?&V{BR&VpC(R&V[26F'Wnk69'Wnj9'WnUur9'Wnpkt9'WnjX9r9'Wn'pktpE69"'Wnq69'Wnr69'Wn6'Wn69'Wnk69 'Wnp6<'Wn'qe69Wn69j'Wn69'Wnd&XqQ&X'pmpJ&Xpmm&XrmXQ&&YpXQYQ&YdXQ&YQ&Yr];Q&Yp=Q&YXQ<&Yq]Q&Y=Q&Y'q?Q&Y$Q&Yq&Q&&Y'pX{mQ&Yk Q&YrQ&YXQ&Y{fR&ZD }&Zqc&Z'qsL R&Z'pbBh&ZR:&ZjbR8&Z'pbBIq:&Z'qjbqY&Z'qrI n'{ZR^&ZdbRZ.R&Zq&ZqRW&Zb%RP&ZgBR&ZkRA&Z{gBn&Z{R&Z3R&Zp5R"&ZbB3RB&Z'rgBp5R&ZpbBl&Z'qgBrl&ZrR&ZqgBq<&Z'qkbRB&ZrgBRW&Zb%3R&Z'pbBp5R&Z'pbBjI6RZR&Z'qgBq&Z'pbBqn&Z{R&ZRZq&Zqq&Z'pbBq8s&[6 8[s&[{r^8&[r 8&[r8&[k>8a&[q8ys&[{8s[8&[s x&[Y 8s[7&[d>8s&[p~8s&[qr8&[j>/&)] &) D&)/s- q&)&X,p;$&)b&)j;&)'p;$" &)'j;q :&)/r* q '{)?&)d;)&) &)q9&);2&);$&)k}#&){;$ &){&)&)p&);$$&)'pr;$&)p;$}&)'rq;$}&)r&)q;$&)1 &)'k;q$&)r;$9&);&)'pp;$&)'j;p;$)&)&X,q;$ &)'qp;$ &){&)) &)q &)'qp;$'4$&]'rn$p)4&]m$4]4&]km4Z&]. 4$&]rn$42&]'qn$d42&]n$'4&]'pm$p)4&]{4$&]'rn${A$'^nA'^njIA'^n_IA'^npKA'^njIA'^n'pKpEQA'^nqA'^nrA'^nA'^n A '^nkA'^npA'^n'qA^nA'^nA+'^nd8'Z&[6 8['Z&[{r^8'Z&[r 8'Z&[r8'Z&[k=8`'Z&[q8y'Z&[{8'Z[8'Z&[s 'Z&[Y 8'Z[7'Z&[d=8'Z&[p~8'Z&[qr8'Z&[j=B5&`N# M5&`O &`'qs~ &`'pGtnw5&`_l&`jGj&`'pGt.8 l&`'qjG &`'qr{ G5'{J`&`dG5`5&`j 5&`q&`GW&`GtL5&`ks&`{GtG5&`{Je$5&`g5&`pT&`Gtt&`'rGtp&`pGtC &`'qGtrEC5&`rE &`qGtg&`1x= n&`'qkGt&`rGt&`GW&`'pGtp&`'pGtj.h5` &`'qGtnw &`'pGtqG5&`{Je$5&`g5` 5&`q &`'pGtq)@)&aLW T)&aAG&a'qCsq &a'p[gx>?)&a+_&aj[]&a'p[gB+AG_&a'qCj[AG~&a'qCrn E)'{a&ad[)a)&aAG)&aqC|&a[Ju&a[g)&akf&a{[gE)&a{")&a)&apG&a[gg&a'r[gp&ap[gB&a'q[grB)&ar&aq[g{&a1QAGa&a'qCk[g&ar[g|&a[J&a'p[gp&a'p[gjB[)a&a'q[gnxAG&a'p[gqCE)&a{")&a)aAG)&aqCAG&a'p[gqCyKl&bW Zl&b0M&b'q2s  ,&b'p,El&bWl&bjW&b'phm0Ml&b'q2j0M&b'q2r Kl'{bW&bdWlbBl&b0Ml&bq2W&bW&b!l&bk W&b{Kl&b{-l&bGl&bpIW&bG&b'rpIW,&bpHB&b'qrHl&brWB&bqW&b10Me&b'q2kW&brW&bG,&b'ppIW &b'pjhWlb B&b'q0M,&b'pq2Kl&b{-l&bWlb0Ml&bq20M,&b'pq2&cp/cfK&cd&cm/&cr/h&cpj&c/g&cq/ &c j&c'ql&cQ&cqS&c'p/{&c &crR&cs&c{0\&dp0d*&ddN0&dT0&dr0&dp? 0&d+r&dq0&dE0&d'M q^0&dU0&dq80\&d'p{)0&d 0&dr<P&d0&d{&ejb&er~e{&e{~&ep&eALT7&h'pppNT7&hppT&h{oTM&hqoT&hpT&hroTh#&ip~#i#&id#&i4#~&ir~.#&ip%0#^&i~#&iq~#&i90#&i'8qI2#&i8#&iq'#&i'p~{'`#&i #&ir&#&i#&i{'7&jp7)j7&jd7)&j%7&jr=7)&jp?7n&j7&&jq7)&j*?7)&j'*q:A7)&j*&7)&jq(7&j'p{p7)&j 7)&jr7&j7)&j{X+d&k'rldpZ+D&kld+k+^&kkl+&kn +d&krld+r&k'qldb@+r&kldX+&k'pldpZ+&k{+d&k'rld{'7&l'rn7p)&ln7l1&lknl&l@ 7&lrn7E&l'qn7eE&ln7'&l'pn7p)&l{7&l'rn7{V&mq'&&m'pp)&&mp&mrVmL&nq&n'pp&np&nrLnA &oo   &o)&o'q+s} &o'p.s;;% &oU:&ojGh&o'p.s6):&o'q+jG)&o'q+rz  '{o^&odGX o  &ok) &oq+&o.VP&oJB &okXA&o{JB &o{ &o &opkqS&o.sB&o'rJBpkq&op.s&o'qJBr &or&oqJB1&o1P)<&o'q+kGB&orJB&o.V&o'p.spkq&o'p.sjgX o&o'qJB;;)&o'p.sq+ &o{ &oX o) &oq+)&o'p.sq+A v&~o  v&~ &~'qs  b&~'p_zu  v&~S &~j_U &~'p_G &~'qj_U &~'qr  v'{~ &~d_U v~  v&~ v&~q &~_ &~_ v&~kt &~{_ v&~{ v&~ v&~p &~_ &~'r_p b&~p_ x&~'q_r v&~r x&~q_ &~'qk_U &~r_ &~_ b&~'p_p W&~'p_jG v~ x&~'q_zu b&~'p_q v&~{ v&~ v~ v&~q b&~'p_q0A+&'r +p#0A & +0A0A$&k 0A`&4 0A+&r +0A9&'q +0A9& +0A&'p +p#0{A&{*~0{A+&'r +{*~Nj'8A&o  &&/s q2&'ps7I&F&js&'psZsF&&jsq&/r q'{&ds% &&q&sD&6&kM&{N&{&&p.&xN6&'r6p2&psLH&'qr&rH&q41&1H&&ksq6&r6&s2&'psp'&'psjZH&'q72&'psq&{&&q2&'psqQ&Yp( QYQ&&Yd(Q&YQ &Yr( 1Q&Yp3Q&Y( Q&Yq( Q&Y3Q&Y'q5Q&YQ&YqQ&Y'p( {cQ&YJ Q&YrQ&Y(OQ&Y{Q&&Yp,QYQ&YdQ&YQ&Yr#;Q&Yp=Q&Y,Q<&Yq#Q&Y=Q&Y'q?Q&Y$Q&Yq&Q&&Y'p,{mQ&YX Q&YrQ&Y,Q&Y{U'U'&pkI?e&dk ?& I&rpI?&pk)&kI&qpI"?&$?&'~q?&~h?&qrj&'pkI{r?& ?&rq&k?&{rD&8'pp&8p&8{)&8qq&8&8rg80&dp=0d0Y&dd0&d0=&dr =0&dp 0&d=0&dq =0&d0&d'i$qz0&di0&dq&0&d'p={0&d 0&dr0&d0&d{"wnv&qnK&{uwnv&qnK&rtnKn&'c"n&'c"Qn&'c"qunK&n`&p}n&rnK&{un&c"nK}n&'c"r}n&rn`&pwn&'c"q&q^&{q&q^&rp&'n&'&'qq&n&p^^&r^&{q&&'r^^&r^&p^&'q^ &'yy'xeLq &'yy'xeL{q c0&'xeLq &'yy'xeLrp c&xeL T&'yy'}'kxeL T&'yy'}'xeL AT&'yy'}'xeLqqC &'k'xeLyy c&'xeLp c&'xeLr c&'xeL{q T&'yy'}xeL &'yyxeL T&'yy'}'xeLr &'yy'xeLr &'yy'xeLp T&'yy'}'xeLq&j6%&r1&{ic&p6&HA4<&j4u&ru4>&{4&pu4&55&q55&{955&q55&r9555&'5&'KA5&'q:C55&55&p5&r55&{95&555&'r5&r55&p5&'q&j&r&{;&p&&j>T&r9%&{&p>&G U&j&rk&{8&pm&t45{&j,y5{&r5{5v{&{]y5{&p%5{&&d5R`&gsI RV&grF 5&JdL&bc=&o>&o&&;"&qc"&{]"&qc"&r\""&'&Y"&'&9Y"&'&q]["&Y"&pc"c&rc"&{]"&&""&'&rc"c&rc"&pc"&'&qc\&qc?\&{BB\&qc;\&rA=\\&'Y&]\&'T_&\&'qB&\&Y\&pc\c&rc?\&{BB\&&\\&'rc&\c&rc\&pc\&'qc&^@&j;V&r6&{i&p;&>Ag$&j4g&rggV&{LYg&p g& &d'5&`s 5_&`rO !1&\dL~&bc:&o;~k&o} &6xj&qj&{pxj&qj&rojn&'}@= n&'}@n&'}@qpj&= j&p~j&rj&{pn&}@j~n&'}@r~j&rj&pxn&'}@qH;/&q;/&{7H;/&q;/&r6;/S&'PS&'PI^S&'Pq7`;/&~;/&pN;&r;/&{7S&P;/NS&'PrN;&r~;/&pHS&'Pq8uU%'&'&'&'&76676c2 8( "C4G): ;  !#* gM+8y'q 8uu&qSd8&8&k8p&&8&k8K&p8&'8a&q&'p8&p8&{8&r8&qO&jcO&rO&{8OW&pz&&j%&r&{c&p&  7{Gt %#"&'&'&'&76676  1;  9 C. &" 0 'E  &gA,  1th'q*7{&qRN8&"8&k$8U&8&&8&k8J&p!88&&'8`&q"8&&'p8&p8&{"8&r"8&q_l&q_?_X&{B_l&q_;_X&r=__X__&'S%_]_&'S%___&'S%q__X&P_X&p!_&r_?_X&{B__&S%__X!_&'S%r!_&rP_X&p_&'S%q)R&q`-&{)R&q`-&r`-`&'`&'`5&'q7`-&^<&p/&r`-&{`&`-/&'r/&r^<&p)&'q &'pp7 &p&{"&qj&&r|-"-&r$-&q&q&p&r--&p&'pp&r&-&{)y&&pq&p &dc;&[=&r&pM&&qS&aU&'`KqqK&`K&qO5q&'p{N8& 1&rN3e&35&{N8==;&'rp+&&k|=&z &r&'q&&'pp+o&{3ro&'r{3rF(&qF&'pxpF&pxFx&rxF(!8UR&q<&{R&q<&r<R<R-&'V<-&'V<-&'Vq<R&<R&pR&r<&{<R-&V<RR-&'VrcR&r<R&pR-&'Vqc&( n+&pW&'qs@ A&'p<6&sA.&j<A,&'p<6$.&'qj<M&'qr= h'{kAR&d<A&B&qAK&<AD&)6$&k`A5&{)6h&{k=&?&pA&<66&'r)6pA&p<6d&'q)6rfd&rfA&q)6A:&10&'qk<A6&r)6AK&<&'p<6pA&'p<6j$*AA&'q)6&'p<6qh&{k=&?A&q&'p<6qj1y&p|j1j1&d|kD1&Fj1&r}1&psj1&|j1&q}]1&_1&'UqU1&U1&qz?1y&'{zBp|1& ;1&ry=j1m&|;?1&{zB\F&p\F|Y&p~Ew &ry&qE&qvE&pvEv&rvE&p&'pvpEv&rv{ &{~wE&vE&pv&'pepZ&peZd&{eZ&qeZE&eZe&reZ$GU&j.Gf&rGSv&{iyGSl&pG&,,2& 2&{e2$7&re' 2$ &r 2$&k2$&q 2&w2$2$A&se* $&Px2$$<&d2L&c2:&qe<2$&j  &q` o&{J  &q` o&rI` o` &' B` &' B%` &' BqJ` o&C &p &r` o&{J` & B` o &' Br &rC &p  &' Bqj&jk{(&r (Z  &{ZZ&p( &&C_&q _&5*&'q(,sZ `Xf&'p '_&X&jXX&'p*&'q(,jX*&'q(,rZ _'{(X&dXX_ l_&&*_&q(,k&X&r_&kX&{_&{(}_&:i_&p&X&i&'rp&Xf&p|&'qr'_&r'X|&q&1^u*&'q(,kXX&rk&if&'pp&XZ&'pjX_`X|&'q *f&'pq(,_&{(}_&:X_*_&q(,*f&'pq(,u\& &!~c&'qsL &'pbBYzz&Zg:&jb8&'pbBJ~:&'qjb~Y&'qrI '{^&db&=~&qW&b%P&bB&k{[A&{bB&{8&:&p"&bBB&'rbBp&pbB&'qbBr&r&qbB~<&'qkbB&rbBW&b%&'pbBp&'pbBjJ6&'qbBYz~&'pbBq&{8&:~&q~&'pbBqT5&1F&d'ccXo&esX cX>&er. cX&edLct&bc0c&o1&&o8c)&6)o&{W & -r&'q/sb} C&'ps*j&Ck&j[h&'ps6-rk&'q/j-r&'q/rbz p'{Q&dCC&-r&q/s&VX&sF&kVr&{sp&{Q&C&pCS&sTs&'rspC&psm &'qsrm&rX &qs1&1J-rm&'q/kTs&rss&VC&'pspC&'psjgCX &'qs-r&'psq/p&{Q&C-r&q/-r&'psq/1F&=_ F&F&'qs-} F&'pskF&pFk&jFh&'ps6Fk&'qjF&'qr-z F'{F&dFF&F&qF&OF&sF&kFr&{sF&{F&F&pFS&sFs&'rspF&psF &'qsrF&rF &qsFm&'qkFs&rsF&OF&'pspF&'psjgFF &'qskF&'psqF&{F&FF&qF&'psq''!&j?Q!&r`!L&{!&pe!&hA}&j%&r i&{Ni8&p%&<}&jA&r=&{i8&pA&V&j7%&r5&{B\&p7&A9&'yk'xFqwh9&'yk'xF{b9c&'xFqwh9&'yk'xFra9c&xF9 &'yk'}C' xF9 &'yk'}C'xFt95 &'yk'}C'xFqb79&' 'xFyk9c&'xFpwh9ch&'xFrwh9c&'xF{b9 &'yk'}CxF9&'ykxF9 &'yk'}C'xFrwh9&'yk'xFrwh9&'yk'xFpwh9 &'yk'}C'xFqwh0&j,y0&r00v&{]y0&p%0&&j' &r#&{QH&p'&4 &j7%&r5&{B\&p7&A}&jA&r=&{i8&pA&Q0&'yd'xkqi0&'yd'xk{q0K&'xkqi0&'yd'xkrp0K&xk0&'yd'} R'/xk0&'yd'} R'xk0&'yd'} R'xkqq!0&'/'xkyd0K&'xkpi0Ki&'xkri0K&'xk{q0&'yd'} Rxk0&'ydxk0&'yd'} R'xkri0&'yd'xkri0&'yd'xkpi0&'yd'} R'xkqi0q&j,y0q&r0q0vq&{]y0q&p%0q&O<&jOu&ruOO&{O&puO&&j&r&{;&p& &jB &r> %&{ <&pB &D)<&j)u&ru)>&{)&pu)&&j&r&{;&p&&jB&r>%&{<&pB&F1&fp "f]&&fdq&f_ &fr 11&fp31&f c&fq E&f3&f'q5&fe&fqc&f'p {cc&fo `&fr&fOc&f{$&gp' $g$&&gd'$&g$ &gr' 1$&gp3$&g' $&gq' $&g3$&g'q5$&g$&gq$&g'p' {c$&g) $&gr$&g'O$&g{$yqw9yz*&d7&o#&]#'{Q#&{Q#&EK#&p1M42&'qQ6p;4&&k;%qQ6~#& 4&/s qQ64&/r qQ64#&qQ64#&qQ64&&j;%qQ6K&'p1MrQy1#&H&'rPqQ#&rP#&k42&'qQ6p;K2&'p1Mp;#&{Q#&E&n'{a&{a&sK&p_M4&'pwqa64&'qa6kw~& 4&'qa6s 4&'qa6r 4&qa64&qa64&'qa6jwK&'rp_M1&+$&'qr`&r`&kK4&'pwqa6K&'pwp_M&{a&s,&6,'{),&{)~,&;Kq,&p'M43&'pLq)64&'q)6k6$~,& 4&'q)6s 4&'q)6r 4,&q)64,&q)64&'q)6j6$K&'rLp'MR1,&I&'qLr(,&r(s,&k43&'pLq)6K3&'pLp'M,&{)~,&;%& '{ & {& K& pM4& 'p,q64& 'q6k,{~& # 4'& 'q6s 4& 'q6r 4& q64& q64& 'q6j,{K& 'r,pM1& m& 'q,r& r& k4& 'p,q6K& 'p,pM& {& A& KA'{> A& {>A& \KA& pHM4& 'p?%q>64& 'q>6k?~A&  4F& 'q>6s/ 4<& 'q>6r, 4A& q>64A& q>64& 'q>6j?K%& 'r0%pHMg1A& & 'q0%r=A& r=A& k44& 'p?%q>6K& 'p?%pHMA& {>A& \P&IvP'{iIP&I{iP&I|KP&IphM49&I'pdqj64&I'qj6kd,~P&I 4&I'qj6s 4&I'qj6r 4P&Iqj64P&Iqj64&I'qj6jd,K&I'rdphM1P&I3O&I'qdriP&IriP&IkT49&I'pdqj6K9&I'pdphMP&I{iP&I|&) '{) &){&)K&)pM4 &)'p;gq64 a&)'q6k;~&) 4 &)'q6sq 4 ~&)'q6rn 4 &)q64 &)q64 _&)'q6j;Kg&)'r;gpM1&)b&)'q;gr&)r&)k}4 &)'p;gq6K&)'p;gpM &){&)&3'{3&3{&3K&3pM4&3'p@ q64&3'q6k@~&3 4+&3'q6s 4!&3'q6r 4&3q64&3q64&3'q6j@K &3'r@ pM1&3[&3'q@ r&3r&3k{4&3'p@ q6K&3'p@ pM&3{&3&Es'{gE&E{g&EBKq&Ep.M4&E'p_#qg64&E'qg6k_~&E 4C&E'qg6s, 49&E'qg6r) 4&Eqg64&Eqg64&E'qg6j_K#&E'rd#p.M1&E0&E'qd#rf&Erfy&Ek4&E'p_#qg6K&E'p_#p.M&E{g&EB&J'{sJ&J{s&JZ&Jpp\C&J'pNqsECH&J'kqsE&J Co&J/sX qsECe&J/rU qsEC&JqsEC&JqsECF&J'jqsEZN&J'rNpp\@&J=-&J'qNrr&Jrr&Jk] C&J'pNqsEZ&J'pNpp\&J{s&J&Le'{XL&L{X&LjK&LpVM4&L'p[-qX64&&L'qX6k[~&L 4M&L'qX6s6 4C&L'qX6r3 4&LqX64&LqX64$&L'qX6j[K-&L'r[-pVM1&L"&L'q[-rW&LrW&LkC4&L'p[-qX6K&L'p[-pVM&L{X&Lj&)'{)&){&)K&)pM4&)'pFq64&)'q6kF~&) 4=&)'q6s& 43&)'q6r# 4&)q64&)q64&)'q6jFK&)'rFpM1&)L&)'qFr&)r&)kl4&)'pFq6K&)'pFpM&){&)T)&aE)'{aE)&a{")&aK)&apM4G&a'p[gq64Ga&a'q6k[~@)&aL 4G&a'q6sq 4G~&a'q6rn 4G)&aq64G)&aq64G_&a'q6j[Kg&a'r[gpM1?)&aB&a'q[grB)&ar)&ak4G&a'p[gq6K&a'p[gpME)&a{")&aZl&bKl'{bKl&b{-l&bKl&bpM4M,&b'pq64Ml&b'q6k~Kl&bW 4M&b'q6s 4M&b'q6r 4Ml&bq64Ml&bq64Ml&b'q6jK&b'rpM1El&bHB&b'qrHl&br!l&bk4M,&b'pq6K,&b'ppMKl&b{-l&b  &o '{o &o{ &oK &opkM4&o'p.sq64<&o'q6kG~ &o 4&o'q6s} 4&o'q6rz 4 &oq64 &oq64:&o'q6jGKB&o'rJBpkM1 &oU&o'qJBr &or &okX4&o'p.sq6K&o'p.spkM &o{ &o&&'{&{&K&pM42&'psq64H&'q6ks~&# 4&'q6s 4&'q6r 4&q64&q64F&'q6jsK6&'r6pM1&nH&'qr&r&k42&'psq6K2&'pspM&{&+&'{&{&K&pM4&'p<6q640&'q6k<~&( 4W&'q6s@ 4M&'q6r= 4&q64&q64.&'q6j<K6&'r)6pM1&s&'q)6r&r&k4&'p<6q6K&'p<6pM&{&_&5_'{(_&{(}_&:Ki_&p&M4f&'pq(64&'q(6kX~_& 4&'q(6sZ 4&'q(6rZ 4_&q(64_&q(64&'q(6jXKi&'rp&M1_&|&'qr'_&r'r_&k4f&'pq(6Kif&'pp&M_&{(}_&:& p'{p&{Q&KC&pM4r&'psq64rm&'q6k~o&{ 4r&'q6sb} 4r&'q6rbz 4r&q64r&q64rk&'q6jKTs&'rspM1j&m &'qsrm&rF&k4r&'psq6KC&'pspMp&{Q&F#&SF&_Fq,&'F& FA& HFP&IhF&)F&3Ft&E.&JF&LVF&)F)&aFl&bF &okF&F&Fl_&&FC&e&:pe5567'&7676'&Dz  L  * Zq =) 4^e5:}e5&:p/#G)'AG'drAd+33G] %6#!&''&%"   "Z",,"^_p&f^sq&f$er&f os!&f6it &f,u&f rv &frw &ffx&f+}y&f^_p&f^sq&f$er&f os!&f#,q &fe&f q&frw &ffx&f+}y&f+&f rv &fh &f 6'&77676'&7767 m   D$ :56'&554766# %F! ;M # ! #,k8A6''&7667&766'&'&7676'&7&6Q   -$"1. #S#  "!  V D   : #&/J +&[   G)''AG ' AW%'#"'&&'37667676[ $r   73?.! $  mQ %''&776F !F ! H#C # B!767676#&''&''&767&&8#* ^S+,j 5:C9 -5!! 6D 5;)$$&D GFcDRGcDRG'&7676'&76#&7&&gAq+ (K    @ >I!G#  X+ P :0-8DGcD\1"''&32676#" "//" .],!!,A5\"&'"''&3276#6]' "VddU" '],! ,O]!#"&'"''&3276-N>=N "z{" ," !, ]!#"&'"''&3276NllN "ל# ," !,"'p=$'rL'G3'kL)/ 'rL'B'qL'Q"'p=$'p=='{E'{E'rL'q'p'p6:h'p6:h'rLh<P56'&676632#"'&'&7676767676#" FI +&ĞY  U݇;u F?<7+1! [+$ )%Z=)l<Z6'&'&7676!2# 6|  ;u H  -4(%RE-- <P?''&676632#"'&'&767676767672636  /$I +&ĞY  U݇;u F?< f    )%Z=,   h16'&'&'&'&7676327254&'&7S 6=>cn7667'&7676'&76h.  27 !NL&5   5  ; "L )#NPV&s? PL&r< <Pcn\&pcn[r&p/]clQ&p!clc&d!D&1c&r"l&p!cl&!cg&q"x&5&'5qF&57&q$9Q&'p!{$F&t &r#cF&!&{$= &'pp?R &pR&{R&qRg&R&rREb?'16'&''&767&767&'&'&&76'&65&'&+)]\ *MQ1 %l05 n(# [YW5A3U- 9A2@/P7# $  4 , b?b?eI5>'&767676454&'&'&766766766676'&H    YR'4C, QUnBJ j .0)")V=## (  dn 8d 01>28"&@eI&p`JeIeI&rn&J$4@7&'&767676'&&'''&7667"6676'&7276'&& ./"" \# g%=1F 3%6$> 7 2#G+ 9:$,+33A -$ #    )'15) (l0'k0$d$'kzd&k$d'/97''&767676676'#''76'&"676'&8*5)L& x ^> /!"kF.&' %<]  )lZ, \  #"S& " O 6"L%+%'&7676325476#"'&'&'& >dC@[%  3C$^S6XL4y.6; ^3|C :&'od"dp^33 %q_33Gnr_33#s`33`St_33S^su]33;|!v_33.!w_33/x_33Qg2y_33"dp^33 %q_33Gnr_33#s`33G!_336t^33& ^33.!w_33/x_33Qg2y_334wEe33;|!v_33@_33'62#"'&&'&&'&7M- S nh~_"6z3g4hR &;bc" &;<dL&;dz&';&;1=&;o>y&;oz6H&;gr8 6&;gsl [jb2/:7'&767&767676'&&7"6676'&7276'&&+ "o*# /"# \#  G#H 8 2#7W 9Z( 6D$N;#3@ -$  #   )&05)  (b2F4`&j#&j? &jk&jK!&je&joq,&jt& jA& j4O& jR&jN&jP&IjT&)j}#7&+jp&3j{ v&EjOt&FjB1&Hj&Jj]3o&&Kj&LjCY&Mj&PjS0&Qj:R&Zj~&)j}D5&`jy&)&ajl&bj  &ojX v&~jt&j&j`n_&j&j{[yC&jF&j#&j?&jKq,&j& jA& j4P&IjT&)j}&3j{u&Eje&Jj|&LjC&)j}&)&ajl&bj &ojX&j&jn_&jC&j~l7&j[j/\3&'&7676'&'&#"! '&''&54! $76 #C"  &'% C <K < []]+4B d  ! / % ! $ _k]l Gp] 7q.r,-sGw$tGu.3v/3w1!x.Hy]l Gp] 7q.r,-s.2!3/3w1!x.Hy!X.3v/#"&<dL&1 7676#"'&32oj]  --$&R |&c~c&/sL qV&&[6pX& &jWQ&'WipX &'qVjXY&/rI qVv'{Vy-&dX&[5&qV&Wi&O|&kM&{Ov&{Vy&t&p`&X&'p`rO&pXr&'rUtqOr&rUt&qO1&1 &&kXqV&rO&Wi&'p`pX&'pXj?&&[6qO&'qVpXv&{Vy&t&qV&'qVpX&c'{V&{V&tK&p`M4&'qV6pX4 &'qV6kX$&R 4c&/sL qV64Y&/rI qV64&qV64&qV64 &'qV6jXK&'p`MrO1& &'rUqO&rU&kM4&'qV6pXK&'p`MpX&{V&t 47632"'&7327654'&#")"+5$)'6#%%%Z6#* ,7# )"+%? &'y)x/?&'yoxd2?&'y)'x/};?<&'yo'xd2}v?'&'y)'x/};?<'S&'yo'xd2}v?'q{&'y)'x/};?<'q~&'yo'xd2}v?A'q'C&'y)'x/};?)<'qg+&'yo'xd2}v?'9&'y)'x/};?<'x&'yo'xd2}v?'r{&'y)'x/};?<'r~&'yo'xd2}v? 'p{&'y)x/?'p~&'yoxd2? 'r{&'y)x/?'r~&'yoxd2? 'r&&'y)x/?'rf&'yoxd2? &'y)'x/q{?&'yo'xd2q~? &'y)'x/{'?&'yo'xd2{g<v2%6'&'&'&76%6232#'&76763276 >!y RE*?s5 HHhcJ 5KuGE~}E)9*03-r4K<.<%&'&'&76%632#"'&&'#'&7676327$$s   wfIjA E/?s5 HHh[U49 @ r4vB_*&603-r4K\4&'&7676'&'&#"! '&''&5432$769 #D" &'' C  <K< [I#DB "c ! /  ! $  49*,:"547&'!"$'&''&543 76632#"'7&#"32767654# !k=I Ul ,\O4]"  ,-81/ 8 $5 # ( '/M^1&''&32676#" ##  ,#", <P|.]7&'&76#F  3i  *( ?&m &]&&'qQ(sn &'p'dX;y"&&j'Z&'p'd(&&&j'qQ(&{&'qQ(rk '{Q@&d']&"&&qQ(y&'G3&%&k$&{%&{Q&,=&p?D&'d=%&'r%p?&p'd&'q%rP&rP&q%&&'qQ(k'%&r%y&'G=&'p'dp?&'p'djX]&'q%X;&&'p'dqQ(&{Q&,]&&qQ(&&'p'dqQ(<P#'|.st <P'|.rt <P|.&j>&l && c&/sL q(&&[6p"&b &j&'pp&  &'q(j& Y&/rI q( '{-&d&& &q(&i&&kM&{ &{&t=&p`?&=&'p`?r&p&'rq&r&q1&1&  &'kq(&r&i=&'p`?p&'pjp&&[6q& &'q(p &{&t& &q(& &'q(p&jMV9&==V9&p/?V9&C|V9&'BqS~V9&B&V9&q1(V&'p/{1oV9& V9&r0V9&{1V9t&jM&jM&MIN"547632769M ?  I`L2  lwG{V}$d747632#"'&7327654'&#"**==*++*==**D!! !O7789LK9878ND/010EE,./-6f.&'&547676613232&&#"&543276554'&#"@-$% & #"  fL&#"#"'&5476676676323326767667632'"#&'667654  #23   p   `@B9:#        +2 @%J!" eD22#"'&'&&547632327654'&#"&546767654#""'&76< +5     ':)e#5      %&  5  ?g -#"'&554##&'6676763232#"'54#"332.=!$(;ge\;'O'"1f?7254'&#""""#"'676326327'&"#"632#"'&'&&547632@ Z  $34#$%#I   P) K""64#"  h.7#"'&54673037632'327654'&#"!77##xZ{$7"! "##?S 0p ..P "   f43372#"'&547#"1'66 )\. +#f':L7&547632#"'&546767654'&327654'&&'&#"'37654&'&#"> ((  !!//  9      $ !$"!%%.  #'%&  $ h-632&'&5676#"#"'&54654'&#"32769!76$$= %'r0%'q> t'q5'qv t'r5'qv )'qOT'q`+)T'rOT'q`+<y'qq'qi><'rq'qi>2O'qd'qj4I2'rd'qj4I) 'q;g'q+)) g'r;g'q+)#<'q'q+#'r'q+'q@ 'q3 'r@ 'q3'qd#&qfE#'rd#&qfE'q'qWF'r'qWFS7`'q'q9HY7`'r'q9H'qN'qxJN'rN'qxJ|'q[-'qX~L|-'r[-'qX~Lgz'q'q'Mm'r'q'M)'qOT'qe+P)T'rOT'qe+P'qSk'qPQk'rSk'qPQq'qgB'qZqB'rgB'qZ 'q'q;$) $'q'r;$)  'qGt'q` t'rGt'q`AG'q[g'qCaAGg'r[g'qCa0MB'q'q2b0M'r'q2b)'qJB'q+o)B'rJB'q+o x'q_'q~ 'r_'q~H'q'q6'q'r6'q)6'q6'r)6'q*|'q'q(,*'r'q(,~'qbB'q~B'rbB'q-r 'qs'q/-rs'rs'q/F 'qs'qFs'rs'q4'qQ6'qSB4B'qQ6'rSB4$'q'qa64'r'qa64I'qL'q)64'rL'q)64'q,'q6 4'r,'q6 4'q0%'q>6 4%'r0%'q>6 4O'qd'qj6I4'rd'qj6I4 'q;g'q6)4 g'r;g'q6)4'q@ 'q634 'r@ 'q634'qd#'qg6E4#'rd#'qg6EC'qsE'qNJCN'qsE'rNJ4'q[-'qX6L4-'r[-'qX6L4'q;$'q6)4$'r;$'q6)4G'q[g'q6a4Gg'r[g'q6a4MB'q'q6b4M'r'q6b4'qJB'q6o4B'rJB'q6o4H'q'q646'r6'q64'q)6'q646'r)6'q64|'q'q(64'r'q(64r 'qs'q64rs'rs'q6!<'qo'q]#!'ro'q]#'qV'qO'qV'rO4'qO'qV64'rO'qV6&'q%'qQ(&%'r%'qQ(& 'q('q& 'q('r/P T_%'&76#"'&7667667&5476763#"547674&'&'&&'327&6674'0&0"q  "+(  "& E B<%%0 rA*N " %<(>:+< ,+Z. <35D^+1PF (/$U2*(?|T2Y'E - (B]G!?2 <(j &&u5#52"1'&7676'&776767676'&'&6'&&'&7=Vo1 %QqXZ *|=2 "_=(/" fCO?(8:{ .  258Y ^LWI3 `: u `6 )%'&'&7667676767676'&'&&HL*   A) Ge`ky  $7JO`t ($B"V4)&O 5}up3 @OJ'~'ay)C]!#"&'"''&! 76N蚚N "44" ," !,t]%6##"$'"''&&5632$Y  Fѳc @ְZ, , -]%6##"$'"''&&5632$   EDZ,, .'&7676676676'&''&767676676N/&%< $ f  + ,MN. +Y/9""   > ? 3(7F!7 #+566767&'&767676#"''&,G w+ o1s?H7.LZ!CvJX]q F Iwwj  H*#?'q{'{'q{'r' '}5'v'}5A'qC'}5' 'p{{'r{'{'}5'r{'}5{'r{'p{'q{'}5#'q/A#'{ #'q/A#'r"#&'G'2&'/'2A&'qC'2#'G#'p/A#A'r/A#'{ &'2#h>'r'J#A'r/A#'p/A]>'J'qY/peXa/Gq$<T:^pT&f^qU&f$rU&f sW&f6tV&f,RUuQ&f vV&fwV&fxU&f+yU&f^pT&f^qU&f$rU&f sW&f#,V&f%T&f U&fwV&fxU&f+yU&f*a&f vV&fV&f?R'%1&x/?gS'n&xd2G,h(2&'&&''&''&'%$''&'&#"'&76766765&76676$%$7767676327667667654&'&'&'&76676#&''%&&'&'&&'&&'077%6765&'&7767667%767667&&'&'&76766'&'&''&''&'&"'&766766765&7676%"&'&%&&&+d0''(*<=+ %Flh !T)208 pK& " 9:\>%;  $ &L*    )  ^R;:;atYRQ:""6/ CA9!|-*+4 !!4 "yM,0W T)/5 8^%$$aSO A; P 9 t & - ,DvG>  #07  $3 2P&Ac !"AC  , "    3 U7n %  5% 6F5uv395##@SS]D/38+ (&25    D5   b& #  3 #56 .&6 *W$%.b'7'0661D.. B.. D&#2"'&&546632"'&&5466Y     /:8 5I  /:8 5I 1>;?#32##"&17##"&17#"66737#"4673766323766323237@AB } A ?CB}>}hc lc lblbl2EP[2#"'&&'#"&'"&57&&'.566327.546632232654&&'7&&#"& #%93!8Z34  ($(#G05T/ &,D.-$ ),8* ? ?"+6#4M++& >0 341C-2J);7#*{!0-5'bv/?M2#"&&54662#"&&5466"326654&&"326654&&#"&'6632+?$"@-(C(&C+@$"@-(C(%C'#) %$* %^(  2,G+'G-*F+,G+D+G+'G.*G+,G*%8!B+&9!A+%8"A+&9!A+G b4FVb26654&#&#&473267#"326672#".1#"&54667&&5466.1326"6654&-AL*B%L% M0" /+!- -&( #_0Uh/J)%&A71 .'@#FC..3%95,C44f))C  ,B#"* # *SJ/E3#P2%=$HF0%1#.9)"$K+<8!6&r2"'&&5466Y   /:8 5I  "[660'&&'0&'&&766704'&&'&67670676'&&'&6760766'  1/ !  (#   $   W     (   #,    3 -6632132##"55#0&54673      $xx72"&5>54&&546h  #(  x 65+ + 98 70>32"546E*@C5  M[-  5r2#"&&5466"326654&& E_12_DB`32`H); 7$,:7rVUUWWUUV$K~MLLNLM{Is274&#"&50547>33203&&#"&67266766 . (M32.q % 1-l&  &Bs1%!&&5>76654&#""&5>323267632 )VN=/':$ 0?'/M-"SJ% =4  .db),B$2D"(  +/!/J**J *_S%&Rs@2#"&'&&54632326654&&#"&547>54&#""&5><++@-+GX.9 '5$$9 ! 'F+6*./>s8(4& &C02Q9    C8(=$   $9*'4+1u232#0#"55!&&5663:D #>8u   uRu?2#"&'&&54632326654&&#""&5>732661##66 :Q,+GX.9 '5$D96  * 8&R  A4O*2Q9    C8C/  7n_ ,[) Gx12#".5467>726632654&&#"3E)5Y8,G20.#[_)OP@@b,/<6,3&;A6]9'@O'K2&@.  $<[AW"!H>'XB*H, =m!2632#"&5>1#"#"&'667,  76'.54662654.'&#""321276654&&,I,$3;'4U15S.*+/!-J&09".((% 1#1#0$*t"@.&8(4@#1N-(H/ 4(  -<$*H-<15)@/(98@,%3 <(6$Hx17>7#".546632"&6654.#"326^OPAA3E)5Z7,G2//"\_),.=6,3 $<[A&;A7\9'@O'K2&@- 5"!H>'XB)I, 9 4632#"&4632#"&9   p!!!!%x#72"&5>54&&546'4632#"&|  #(  &  x 65+ + !!%#"'%&&5467%63210  h D"  Au8 !"667!2!"667!2t  t  /7461%%0&54632#"&&/C j "! 7/s.:"&547632&'&&546676654&#"4632#"&b !!A?),7 !&$1,1   /C+1D  6$- *#&* !!04IZ2#"&5467#"&&54>32326654.#"#"&'.54>"32>77&&HkH$5[9$-&+*1Rc2<=(=]@KvT,N4!  -M/0]i:2*'42Vk9J|I'-  +*&<"6iW4>g=2^K-?i@U~  PsEHtE)CS*.1(AL#ckXf70>766323&&#"&67267654.10&#&"#""#""103.#"&4726766033267261] )*'. "-" &  , *! ! +Y5%1Tgmd&:  +63!(7"  /(1BT2#&6726676654&'.#&&7326326654&&#'326654&#"*!F:$#/0/$#r8  :B5 '%G0OK;Q,6SD %!8*%<&):$*H &'  ?;%E.%"5AG"/i520#"'.#"32676676#".54>y0i6'J=6X?!?_@-? (fDHxW/1Xy )7- .2#1Se39nY5@ *1&3YsAEy^5($?2##&6726676654&'.#&&7326326654.#"-kR"Qg  :PB/FuH-Ma5 S[>v^7 &' s`<{_StI! !("j263#"'&&##"332>7632#"'.'.#"33267667632"&#"#&6726676654&'.#&&7EO :'T 3#'    $+ ! /#D  !Ob"6  :%>!;   , 5(Z  &' (a263#"'&&##"332>7632#"'.'.#"3&&#"#&6726676654&'.#&&7EO :'T 3#'    $+ !!%A"5  :%>!;     &' /T%4454&'.#&&73267"#".54>320#"'.#"3267665 83  7SAHxW/1XyH0i6'J=6X?!?_@&;  &E 3YsAEy^5 )7- .2#1Se39nY5 (267"1326706554&'.#&&73267"3&&#"&67266766554&1&&#"13&&#"&6726676654&'.#&&77 $L)#Q!9779"M&D@ 7:  : '  'e&  &  &' (;267"3&&#"&6726676654&'.#&&77  7:  : _  &' "2267"#"&'&5463232>54&'.#&&78 ;gB *    9 'dzD   >rX' (z267">7>76654&&#"#&473267#""&'&&'.'&#"3&&#"&6726676654&'.#&&77  $+&+ : -#)*GF+G{81(1K $ ?\7 7:  :  )&+  .GC)R5 Eh?  &' ("E733267667632"&#"#&6726676654&'.#&&73267" 7C  !Ob"6  :7 q   .'(Z  &'  W267327>7>132671"3&&#"&&726676654&5.'4&#"'&#3&&#"&&72667667>54&'.#"47&!-42./ /A7 "2"301#$* "."#"Pmzy4JwwH6( f|02 # GOKw{G:@g? XQ  $Z2274&'.#&6732667"#"&'3&&#"&&726676654&'.#&67* BX^X !3 #   V!2 "!!""*Tkro-r    s*' D      0'2#".54>"32>54.lAsX33XsA@sW22Ws27N1"32>54.lAsX32Ws27N176654&&#&4732667#"#"&'.'&&'.#"47k < !!() 0+  -+. !9;%  "- 2IXXJ/5Rcf-&   =CphpD W^. ul267">76632>76654&&#&4732667#"#"&'.11#"&'.'&&'&&#"47s , &,**$  (*  4)  ,+  $"$## 12  % "3 "(}E9p$Bg{:8ZQV4&  #\X  #bmhU3CskoA  [`% r267#"6676654&#&&73267"3&&#"&4326654&''3&&#"&672667>7.1&&'&&#"47$< q,P)-&4%%74#:*)=)30"")8&6)/ %<;# #%! ! $3 ;h -BD/ GD4  0PQ/5:2  Og754'.'&&'&&#"473267#">76654&#"&732667#"13&&#"&67266766!! ! $2$$< ($)+!"& (,) 7: q ':4;'   MI:  IQM G3  &L5"#"&'667332667132676676632!"&71D -)>=)$;INJ:# +    cD<"S15VjriU26&5+ U<0v2#.10"&5>76  " %!!% "!v &:7% +''+ %7:&  0663!21!0&N q w$<J232672#"&'#"&5467>766554&&#"#"&5467>266551 !&% 0B!E<& %8G(:"&$<&  *A/+  + /& &)1B"&'&'&&"&56654&'&&#"&7667207>32"326654& -  $%G *2,C-?m6.*#;$O *  ,) %;G!@k@y 1K'U`&)#"&'&&#"32672#"&&54>32u  3!\B)5  &:&;Y1-GS&6"y 'H4UP&  '8Z36W@"&=L22554&'&&#"&76672023##"&554#"&&54>"326554&,$%G % ;*-6,O1/IP%5 >,!4?k   ,)^9    " 7_;0S=#)/J).N0 ''47326672#"&&54>32732676&&#"l,J+, &:&9X2#9D ,9!  5DB. #( >T) '6\91U?$,,$ ,$#-#?E2#"&'&&#"32#3&&#"&672667665#"&54661354>   !t k2-9 $#6: ..y &  &5\E'"BTd%2#"&&54667.5>7&&54663227.1"#"&'3"326654&&"326654&&&'E+)F\3'N4&2% !! $-+K/ , i  +K/ " F )%*D>"D.8V&*%(A.@8#5(( % E$'C*3""B+ E $/?0#"48$!39%^23&&#"&67266766554&&#"3&&#"&6726676654&'&&#"&766720327>,56.-*&+ .-#%F  -6,\Gl&  &b=E&  &  ,) "t'~},t'~j,jc73&&#"&6726676654&'&&#"&7667206676654&&#&67327"7#"&'0.'&&1.-#%F +&323# 1"/3%H8 3&+B ,0 q&  &   ,)" * $('Q=   /4-4&'&&#"&7667203&&#"&672667665W#%F .-!   ,)0&  &266323&&#"&67266766544554&&#"3&&#"&67266766554&#"3&&#"&67266766554&'.#&&76672327>8,7 M#56-. &(,-.'5*-.&H (3%,4,\Gl&  i1D$ *x&  &dYE&  & $   _23&&#"&67266766554&&#"3&&#"&67266766554&'.#&&76672327>;56-.*&+ -.&H -6,\Gl&  &b=E&  & $   "(2#"&&5466"326654&&A]36^;@_37^0)2=,*1 <8`=?e;9a=?d:!1M*/^>1N)0]> #FV2#"&'03&&#"&6726676654&'.#&&76672327>"326654&-C+(BQ)& .-&I */&+)9P&>E /UA&^'  '   :  1L'W]&"8H232723&&#"&67266766554&#".54>"326554&&*, -.+3*A,-IT "2R=1) +_'  ' &(" #$(>4&H %. #* &  &  ()1#(A:2#"&'.#"#"&'.563232654&&'&&5466'   !#"'4&*D("0  ,($6-)@ ;*# +'=#  &( +$"%1'$6)*32#3267#"&&5#"&5466135>762~uA$(/9 $   P .*=  R454&'&&#&&7667223##"&554&1#".554&'&&#&&7667232665U& &F' ;* .6'0 & &F/3(8   $/  -%;D|  (NI ?267#"0>76654&#"473267#"#"'&&'&&#"1&&7d)k "#!$/G)$ &+CN" 4TOU4 qRd267"6654&'&&#&473267"6676654&&'&&73267"#"'#"'.'&&#&47c) 2)&)  ,0+(/   ++  lj%#'% %  xa_g#  nhGu  DkkD 9[UY7 u267">54&&'"#&&73267#"132&&#"&636654'0.'2&&#"&676670>7.1&&#"47x5 @ &+  *!"!'&-   %%#$6! +- f,%  <.&21  ()5  ')$10 !O267#"0>76654&#"473267#"#"&54672667>7.'&&#"1"47c9 h /'#!#"-#!01$ 6+CN" 4TOU4-Z'  +(Fyu>!43267032676320!&&5447'"#"56670}(1.78.-5      ) (BNOC(9 '6 i!  B'7Z&&#"&5466323267#"& 7!,*;#76"& %9$8  #  #4&"&54676674632#"&e H!!&Ƿ;~rV%G!!,2<232#"&'&'32672#"'"&57.54>7&#" 0   2)5  &:& -B$'@L%92 3!.&  '%# :O+2S?%7'H4;J+mX2#"&'&&#"3#6632326672#"&&#""&546676654&'#&6633&&5&663    !* )!) &0*9.  !Q 57Vm  $:" 8$G5  &  %&N$*Ch<Lb'776'#"&'&'7&5467'&6763226654&&#"9: 5 359453 3*9 8P- 4- 56 7-7<.851 2,8 :76'@$-K-(?%-J-vq{735#&6633&'.'&&'&&#"473267#">76654&#"&732667#"3#3#13&&#"&6726676655#&66L` K!! ! $2$$< )% ).!"& ',)] T] U7: ` * ':4;'   MJ: IQN    &  &%~C]2#"&'&&#"#"'&&54632326654&&'.54>7666654&&'.547)  %(84$&)G.  &)85#&)H= !26&  35&~  <;=I*:9/   <;32#".7326654&&#"#"&&5466320#"'.#"3267663227)Ia77aJ**Ja77aI) ?kAAl@@lAAk?f-;'?%#>(? &#(6!0& N7aI**Ia77aI**Ia7Ak@@kAAk@@k%?&'B' <)'3 .07E232672#"&'#"&5467>766554&#"#"&5467>26655- " $ "- 0)   &1 ' 5'-! &!   T ,#0&'5!0&50663 u7M#ky4>32#".7326654&&#"721"&'&&'.'&##3&&#"&47267645544'&&#&473264&#"3267)Ia77aJ**Ja77aI) ?kAAl@@lAAk?)!! '       <#$7aI**Ia77aI**Ia7Ak@@kAAk@@kN &-   +L     R% M1$M{>%k 4632#"&732654&#"%9((77((9$$""$ (88((88(####!/*356632132##"55#0&546!2!0&5460     Aa  $ $%9x+#"&76676654&#"&76632326676729  N!!&>"3AE#v  `;  L(7' .:/0D$&w922#"&'0&5463232654&#"&'&76654&#"&&7>6( )!,H+)   '+ $6&w%& ), +<  +-$0+$  1xiL"\73266754546'663232672#".'#".'#"&&54>74&54546'6632 !6(   "" 4.:"  &H.3J#E <  IA24J  .%2. "D.$$ Zc, ?\f\; <  IA!~EQg32.#"&&726676655".5466323261"26612'&&#"266321267645445a#""I/F/2M( 1E ) 2 $    &$7>5Q- &  '&   Z: 4632#"&Z "" !!##0lf&}04&#"&&54766332032&&#"&432667665x  NC %("   )2  %V2#"&&5466"326654&&+D((D+*F*)F##* !((B)(F+)D(*D)$5 ?)$6 >*!wESX23##"&'5#&&'66%3.#"&6726766554&#"&&'6670&&166%5P"%  `! &8>  U ]0! hf |     % (q &F+$w+Xf232667672#"&76676654&#"&766%3.#"&6726766554&#"&&'6670%'&&166,3AD#u    H!!&?! %8> z U :/0D$; F%>' .     % (O q"wR`e23##"&'5#&&'66%22#"&'0&5463232654&#"&'&76654&#"&&7>'&&1665Q"&  O6( )"-H+)   '+ $7& V  0! hf %& ), +<  +-$0+$    q&&F+(& .:7326632#".5467>766'4456677#"&54632'$1, !A>),7 ! $  5$- *#&*  /C+2D s!!kI'SkI'\SkG'6Sk'1Sk)&Sk6'3SP!"1&6326676655&&#""103.#"&472676676654&#&6703263#"'&&##"332>7632#"'.'.#"33267667632"&10323261@ 8" $ (# @1EO :'T4#&    $, ! /#D  "O$.,*- 6 u&7+   6  %>!;  &  5(Z " :JG/0Vj&U("I'W("I'PW("G'"W(")&W|$I'}[(&I'[(1'[.)&[(*K2##&6726676655#"47354&'.#&&7326#326654.#"32-kR"Qg ED :PW/FuH-Ma5 S[>v^7 &' <{_StI! !$'[`0I'<a0I'a0G'ha0'ea0)&a6>57'46320763201#"'0.11#"&&50>Œ++() *+,+ (* **** +*++()0)5#"'&&77&&54>3232>54&'"&&(;G3XsAXJ9D2Ws@VJH,7N2$7N1"!G*+VEw[3-0-,UEx[3+OG#1Rc1=x1Pb1;x.!I'?gI'gG'_g)&gOI'qk(a267">32#"&'&&5432654&#"3&&#"&6726676654&'.#&&77 /*A:$6a@  ;PK< 7:  : = -B*;Y0 PIIQ 0  &' g2#"&'465663232654&'.54676654&#"3&&#"&672667665#"&54661354>.N0#1,1!":%->  #2 2!/1/!&2-9 $1;9.%5'! !."&B(  *%!& /$,8(/>!7?&  & -XH,$'wp$'xp$w'yp$>'zp$B'p$'p$YNan2#326672#"&'#"&5467>7676454&&#"#"&547>326632665&&'&&57"332676&&,9!  5DB.+J+, &:&-[ $+( 0BA; " 7I# . B"&) ,(  #,,>T) ')* A/'   +! &&, &) 3#-# ,$&p'r''wt''xt'w'yt'B't'wj'xw'yE&'):#"&&54>32&&'&&77&&'463"326654&'&R^+#2>:[4B_22L3/ *0bV9#DE'. ;''2 '@!):KOo::a:'OB' Q)B: /2O-0Z;.N0)CK@'z}('w~('x ~(w'y~(?'z~(B'~; $70&54667!2%4632#"&4632#"&@ )%0&&77&5466327#"'326654&'"&&~K7^;8-  &)6^;<0ť,*1w)2)=m?d: Z7?e;51N)#Ga1M*!C 'w 'x w'y B'!'x#GW2#"&'03&&#"&6726676654&'&&#"&766720327>"326654& -C,(CQ)% -.$%G  )/&+)9Q&>E /UA&^'  '   ,) :  1L'W]!B'k '2S$)'{pk-'7S$\'}p&ks&&'326632#"&&54667#"&67267654.10&#&"#""#""103&&#"&472676670>766323033267261h/ !6! 3, &  , *! !"  +  )*'Y5% '-  ,# 60 +63!(7"  /1Tgmd&: $&Vd%#"&5467>766554&&#"#"&5467>3232672326632#"&&54667&&'26655&% 0B!E<& %8G#1 4(!6! / Z(:"&:A/+  + /&$<&    &/  ,# 53  &)/iI'U&'xr/iG'}U&w'yr/i)'~oU&t'~,r/iG&U&|'r(G&V&B'(s(&M\34&'&&#"&76672032#23##"&554#"&&54>32255#"&546"326554&ց$%G 77% ;*-6,O1/IP!,%5 >,!4?#   ,)9    " 7_;0S=#K/J).N0 (" 'W')'{t("-'W'\'}t(")'~W't'~,t(%"263#"'&&##"332>7632#"'.'.#"33267667632"326632#"&&54667.#"#&6726676654&'.#&&7EO :'T 3#'    $+ ! /#D  !9%!5! /(EUA"6  :%>!;   , 5(Z (6   ,# 4/ &' '%BO%326632#"&&54667#"&&54>32#326672'32676&&#"J%;!6! # 9X2#9D ,9!  5DB.,J+, #( F+   ,# 126\91U?$,,>T)  ,$#-#("G&W'|'t/G'qY"'yv/-'mY"\'}v/)'~oY"t'~,v/ 'iY"'v(G'`Z G'sw("&5467354&'.#&&73267"!54&'.#&&73267"32#3&&#"&67266766554&1&&#"13&&#"&6726676653132670655T  :7 29779"M&D@ 7: U$L)#Q!  '  '  '  &  &  &Wgfn34&'&&#"&76672032#327>323&&#"&67266766554&&#"3&&#"&672667665#"&546;#%F }} -656.-*&+ .-<#   ,) ",\Gl&  &b=E&  & 3'[>'z'' '[)'{(-'[&\'})%Z267#"32&'326632#"&&54667#"&54632667>54&&'.#"&547 41#!5! #5"1""1  .-   (-   ,# 60   "! { !"    %t'~,()'~[/73&&#"&67266766554&'.#&&76672-.&Hq&  &  '" &[\t&'~},'j~O,"G'\w'yj( 'T] 'ze6676654&&#&67327"7#"&'0.'&&13&&#"&67266766554&'.#&&76672 *&423# 1"03%H8 4'+B +0 -.&H^y" * $('Q=   /4V&  &  ("I'^I'{( "'0^ 'y{("'^G'{("'~^i'~1{"Q33267667632"&#"#&6726676655&&774&'.#&&73267"w 7C  !Ob"6 DT :7    .'(Z  &k.:'  97&&7754&'&&#"&76672073&&#"&6726676655"D#%F 2A.-/   ,)"-&  &$I'`'x#}$ 's` '}$G&`~'}'}$"f%3&&#"&&726676654&'.#&6732274&'.#&6732667"#"&'&546323266Fe!2 "!!""** BX^X !3 # ;hB )   +"%D      Tkro-r    azD   #\R%54&&#"3&&#"&67266766554&'.#&&76672327>32&'&7>n*&+ -.&H -656"4:1-=E&  &   ",\GFfE)  6^0 'ha()'{~0-'ea(\'}~0M'^'a('xW'x~0d{!""#".54>323263#"'&&##"332>7632#"'.'.#"33267667632"&"32676654&'&&D"<-/ @pS/2Wp>&]EO ;'T4#&    $, ! /#D  "O5M2;W9)M N2ZvEEx[3%>!;  &  5(Z j1Pb19q]87(,0 (2BO%26672#"&'#"&&5466326632"#"326654&&"332676&&_, &:&4SU2@_37^;<[O&,9! /?A3 2J)2=,*1 <(  #7 '-'&-9a=?d:1**0,,HQ"U1M*/^>1N)0]>#-# ,$({I'@dh'x( {']d g'({G'dh'0I'e(L'x0G'e(Aw'y0R&e)jB'0G'e(A}' YX&Qfp )' WU'fl'#  WL#3&&#"&6726676655#"473#"#&'66763!26762'"'&&##32q7: on~%.     ! ~ &     .%|q0&  &D3'T- -T'3D);35#"&5466135>76232#32#3267#"&&55#"&54669 $  ~u}}A$(/7-Q=  Q P .*'^g ?'z '_g )'{-'\g \'}v'`g 'M'C'g 'xE'x%j267"326674&'.#&6732667"326632#"&&54667#"&'&&54&'.#&&77.X3T5/ " 2& ,/!!6! 1 % 4Z "&9 '=Z8&]T    ?W? *-   -# 70" ^:'  "x23#"326632#"&&546671"&554"1#".554&'&&#&546766726323266554&'&&#&54676672632'  '&!5! .  )1'0   !J-3%  !JM/ +.  ,$ :6 2!%9?{%  JH %  u*'iw'yO*'.k!w'yO)'kLI'[l!'xL)'~Ll!t'~,LG'l!{'?<73&&#"&672667665#"&54661354>32#"&'&&#"2-9 $#6:   !q&  & 5\E' ../G'Y"'v"754&'.#&&76672&'&7>Z&I"4: 1,  FfE)  5^It+2654&#&&72#&!#+))$;"$;$9%)4 #9"":$ "&&54663"#<$#:$(*, $:""9# 4)%91y0w1r}1E~[11+)x1*Fz1F'xxiF2#".546   +* +,   # d2#"&54>766 *+   #   ,+i|2#.10"5>76+ + | '&## &' @#2326672#"&'&&#""&54676      @    #w*#&467:3LT%+BC*&5!2X22n\267432#"&'4&54632/ ;((: .( ';9* (8H 4632#"&@ 2#"&54632#"&546@\ 4632#"&732654&#"3##22##3  >$33$$44$ n|"'.'463106672++ '&&&&' @#&&54667632!, & $ "2! I2"&56654&&546 '%O (8\R 42&&5>54&&5466  ;&  -+G  lJ"32#"'&&5463232654&#""&766735&       "(     +u) '2326632#"&&54>  )- !6! '*$) $+  -# 0/)')'~TC'~pq')'~@V&C'~s'`'~3zV&['~ us''{:V&'{s'Y&VV&o's')'~X?D'~u(`'~_zZa'~{w(Y&Zr'w(L'}agZL'}gwW)'~_I'~|')'~ b #I'~0)'~e(AH'~0Y'~se)[B'~u W-'~Cf'~] `X'~-zf[ )'~u X'{2f()'{uI'i'wMuI'i'xu)'$iC'ecL'~=}l ['~u'{w'l`OI'k!'w:8 7463373210&:  # $ :8 7463373210&:  # $ 974663!21!0&9;74663!21!0&;b ;  74663!21!0&;F ;$ 74663!01!0&;, +4>32#"&'&&+$1(#$   1  )B.-"    /"R4676632#".  1   $#(1$t/   #-.B+h'#`/Q/P|PO34676632#".74676632#".  1   $#(1$  1   $#(1$r/   #-.B)/   #-.B"cF2674&&'463232672#&&#"&&'.'6674&#""&5463   ))     )) 0,  ,0  %3MKX==XKM3(  .oy32672#&&#"#"&5>5&&#""&54633265&&'667&&'6674&#""&546332674&&'463232672#&&#"  ))   ))   ))   ))    $  0,  ,0   ' (   0,  ,0  % N j 4632#"&N?+,<<,+?,==,+??/d 74632#"&/ !! ,!!##/d #74632#"&%4632#"&%4632#"&/"!!"2"!!"1# #,!!##!!##!!##+v/?O_m2#"&&5466!2#"&&54662#"&&5466"326654&&"326654&&!"326654&&#"&'6632+@$#@-(C(&Cq+@$"@-(C(%C+@%#@-(C'%B($* %F$* %$* %^(  2,G+'G-*F+,G+,G+'G-*F+,G+D+G+'G.*G+,G*%8!B+&9!A+%8"A+&9!A+%8"A+&9!A+G b02#"54>766l*   "]* "14 0$2#"&54>766#2#"54>766( !a*   "]*"14  "]* "14 X=k"&&'#"&1>76323&,,&#-  #&%1!  G&&'&5467> ! U\l@Y0   #" X  OF  'D,*G7&&546677.'.5467A U !! /Z?]cG  X "#  +D'  w'>w>$F=46632#"&&7326654&#"$'B()A''A)(B'D$"+"$4U33U43V44V4,K,.L,C[+I@#2"&55&#"1#&&'667632321#"0'54#023362 7S1$(4gb\ Br8 ['?:623267&&06632#"&'&&54632326654&#"#"'>^ 7 ;: #7!FJ:  (&$ : L 57H &&.BI"A'"&5466776632'32654&#"5J:`9 6V%#,Bv""!#E@9bJN> /2Es%1.%. &,?2632#"&547#"&'667463    = -)* ?/@46320##"&546676'&&32654&&'&#"732676654&#"94&+7%/B/.@ /  % &7/*, 8 ,<3.&,"-* #  ) "+"A'2&&56676&#"&&5464&#"326765J:`9 6V%#,Bw#"!#AE@9bJM> /2Es%1.%.  }qX20#"'.#"32#32#32>721#"&&'#"676673&547#"676673>/c4   %G;9[<  =_A3B(  K~PT>'81W}q '4+ ,.!8]5   8\803(/%*?mC   Ck>B %*#"667!2NT  = 54D%0"#"74554##0&5467621325504766321332361#"01!0&7663A !  Jռ  ]   W)7&5467>762>130#"' 6/r  %      # 'Lun@Dtg {?s2&'.5464632#"&z $!!s&Ƿ;~rV%!!$n2&&5467#k!@.UnnU.@!L)D֎C(n&&3>54&&'"67nV.?!!?.VnD)LM(Cu 2#"&166h $ Ms"266101010&&#"&546`(D) 6**6)D(     h66320#"&'& (353( Q >ij@ps"2#"10&5467>10&&'&54610(D)5**5 )D    sA4&'&&546672#.54676654&'&&546766f #0 $ ! ! $ 0# --v$(0H/ "-)+1/ ,)-  .I/'$'%#J}#"74506766321} hS(s?"&5>54&'&&54667.54676654&&'4681" .. "1 $ " " $ /H0($'#%'$'/I.  -), /1+)-" E;7467>14&&'&&7467>14&&'&&@[1 !.//.! 1[@@[1 !.//.! 1[@'F.(2//2(-H& 'F.(2//2(-H& (E;%&&'>7.'6672&&'>7.'6672@[0 !.//.! 0[@@[0  .//.  0[@ &H-(2//2(.F' &H-(2//2(.F'Fbv"32#3&&#"&672667665#3&&#"&672667665#"5463354>326632#"'&&6654'.#"35466!'qh2-2-8 $ D%  %'.u@IF &  & &  & (N?& +   W2N,! "!n26726323&&#"&67266766554'&&##3&&#"&672667665#"5463354>32#"&'&&'&&#""U-.+h2-9 7J*": .&  & &  & *ZM0 ! 5R,/ %54&'.##"32&&#"&54632667665064654##"32&&#"&54632667665064654##"546332554>326632#"&'.#"332667263232&&#"&43266766"332554676454&'.ye/*.+4 (%>H"$4G%/ !*m85// + )q +   '-EM!+   '-EM!  5W?" &*  4Q,2+  ( -J,25  q7046454##"546332554>323266332032&&#"&4326676654&&'.#"332#"32&&#"&43266766^4 (":E"3 // .(l d//q2MS!  5\D& ,)C+  ( x! $4Q,2+  (%4&&'.#"332#"132&&#"&5463266766554##"132&&#"&5463266766554##"546332554>3266323266332032&&#"&43266766.#"332706676454&!.(m e/*.+4 (%>H"$4H%3 0. ) +qx! $4Q,2!NE-+   '!NE-+   '  5W?" &* ,)C+  (-J,2 %-  {4&&'.#"332#"132&&#"&54632667665046454##"546332554>32326633207>32#"&'&'&&"&5665"326654&| .(l d.+4 ("9E"3 *2,C-?lF .  .*#;$O  $4Q,2!NE-+   '-EM!  5\D& ,) %;G!@k@ * 1K'U`4&'.#"332#"132&&#"&5463266766554##"132&&#"&5463266766554##"546332554>326632326633207>32#"&'&'&&"&5665"326654&%.#"332706676454&!.(m e/*.+4 (%>H"$4H%3 *3,B-?lF -/: #;$N ) +2 $4Q,2!NE-+   '!NE-+   '  5W?" &* ,)%;G!@k@ *'1K'U`-J,2 %-  4&&'.#"332#"132&&#"&54632667665046454##"546332554>32326633206676654&&#&67327"7#"&'0.'&&13&&#"&672667665{!.(l d.+4 ("9E"3 *&423# 1"03%H8 4&+C +0 ..! $4Q,2!NE-+   '-EM!  5\D& ,)" * $('Q=   /4V&  &)4&&'.#"332#"132&&#"&5463266766754##"132&&#"&5463266766754##"546332554>326632326633206676654&&#&67327"7#"&'0.'&&13&&#"&672667665445.#"332706676454&!/(m e/*.+4 (%>H"$4H%4 *&413# 1"/3%H8 3&+B ,0 -. ) +! $4Q,2!NE-+   '!NE-+   '  5W?" &* ,)" * $('Q=   /4V  -J,2 %-  4&&'.#"332#"132&&#"&5432667665046454##"546332554>3232663320327>323&&#"&67266766554&&#"3&&#"&672667665z .(l d(+4 ("9E"3  -656-.*&,.-   $4Q,2!NE-+   '-EM!  5\D& ,) ",\Gl&  &b=E&  &%4&&'.#"332#"132&&#"&5463266766754##"132&&#"&5463266766754##"546332554>32663232663320327>323&&#"&67266766554&&#"3&&#"&672667665.#"332706676454&!/(m e/*.+4 (%>H"$4H%4  -656.-*&+.- ) +  $4Q,2!NE-+   '!NE-+   '  5W?" &* ,) ",\Gl&  &b=E  &-J,2 %-  s4&'.##"132&&#"&5432667665046454##"546332554>32#"&'.#"3326672632&'&7>5fd(+4 ("9E"B- !(l65"4: 0/ !NE-+   '-EM!  5\D&% 4Q,2FfE)  5^Q4&'.##"132&&#"&5463266766554##"132&&#"&5463266766554##"546332554>326632#"&'.#"3326672632&'&7>5.#"332554676454&ye/*.+4 (%>H"$4G%B- !*m64"4: 1 ) +/ !NE-+   '!NE-+   '  5W?" &*% 4Q,2FfE)  5^Q-J,25 %P&43266766554&'&&#&5467667263232&"'326632#"&&54667"&#"  !K0!!6! #4 / ( %  +  '-   ,# 50\I#".54632&31   ''  %(_I4>7632#"&''   13&(%  vH2#.10"&5>766!%#! H  \v 4632#"&732654&#"4##22##4 !!$33$$44$!!$2326672#"&'&&#""&54676!   "       #*#&4670:3V_%2LR q02#"&'&546332  <##; @@0 &--& <V'#32#"&'&&5463232654&#""&76673?-     "(/   ) 2#"&54632#"&546H)/ 4632#"&74632#"&G"&'.'46310>72!%#!    5rB sC sD!sE uF!uG2xHmI7tJ-xK/a 74632#"&/!!,!!t&~},10'B233x0>(C233;2|(D233H.m(E233.-)F233H.m)G233?-w,H2337.#I233H+n(J233?-v,K233!$g66!h6$i6  j6 k6 l6  m6 n6#o6 p6a'7#53'7D!_^ D  Db '7'77/////// ///00//532225!2L22~5!222,5!2,225!222F5!2x225!2@22r5!2225!222:5!2l225!2225!2,225!24225!222 "5!2 T22^5!2225!222&5!2X225!2225!2 22R5!2225!222n     0     : R 0` 0` " 6  * 6 \  Dh ` 2  H> d $ * >8 Fv R ,  * : L dCopyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri).AmiriRegular1.000;ALIF;Amiri-RegularAmiri RegularVersion 1.000Amiri-RegularKhaled HosnyAmiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named.http://www.amirifont.orgThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttps://scripts.sil.org/OFL5PAR .NDRBN .NHR/M CNEP+RDP qD4QNER3P %P0R (N2N:N*R JN-R8NIp qD6QN,PJ9O (PGN' FN,RDN'!N EP9R7N'1P.Inverted Arabic commaDisable curvilinear KashidaNo automatic vowel insertion above name of GodLow Baa dot following a Raa or WawAlternate medial Meem and final Alef combinationLocalised @ and & symbolsAlternate, more naskh-like, Gaf formKasra is placed below Shadda instead of base glyphA'5D) 91(J) EBDH()*97JD 'DC4J/) 'DEBH3)DA8 'D,D'D) (/HF 4/) H#DA 5:J1).A6 FB7) 'D('! 'DE3(HB) (1'! #H H'H4CD (/JD DDEJE 'DE*H37) E9 'D#DA 'DEF*GJ)4CD 91(J D9D'E*J @ H &4CD (/JD F3.J  DD'AH69 'DC31) *-* 'D4/) (/D' EF *-* 'D-1A28 >?@^_`      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'(  !"#$%&'()*+,-./0123456789:;<=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]a)*+,-bcdefghjikmlnoqprsutvwxzy{}|~./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPnbspace number-aryear-arfootnotemarker-ar pagenumber-ar samvat-ar cuberoot-ar fourthroot-array-arperthousand-arpertenthousand-ar afghani-arcomma-ardateseparator-ar verseComma-ar misraComma-ar!sallallahouAlayheWassallamcomb-aralayheAssallamcomb-arrehHahabove-arrehDadabove-artakhallusabove-ar tahabove-aralefLamYehabove-ar zainabove-ar fathasmall-ar dammasmall-ar kasrasmall-ar semicolon-armark-ar endoftext-ar threedots-ar question-aryehKashmiri-arhamza-ar alefMadda-aralefHamzaabove-arwawHamzaabove-aralefHamzabelow-aryehHamzaabove-aralef-arbeh-ar tehMarbuta-arteh-artheh-arjeem-arhah-arkhah-ardal-arthal-arreh-arzain-arseen-arsheen-arsad-ardad-artah-arzah-arain-arghain-arkehehTwodotshorizontalabove-arkehehThreedotsbelow-aryehFarsiVinverted-aryehFarsiTwodotsabove-aryehFarsiThreedotsabove-ar kashida-arfeh-arqaf-arkaf-arlam-armeem-arnoon-arheh-arwaw-aralefMaksura-aryeh-ar fathatan-ar dammatan-ar kasratan-arfatha-ardamma-arkasra-ar shadda-arsukun-armadda-ar hamzaabove-ar hamzabelow-ar alefbelow-ardammainverted-arnoonghunnaabove-arfathaHorizont-ar vabove-arvinvertedabove-ardotvowelbelow-ardammareversed-arfathatwodots-arwavyhamzabelow-arzero-arone-artwo-arthree-arfour-arfive-arsix-arseven-areight-arnine-ar percent-ardecimalseparator-arthousandseparator-ar asterisk-ar behDotless-ar qafDotless-ar alefabove-ar alefWasla-aralefWavyhamzaabove-aralefWavyhamzabelow-ar highhamza-arhighhamzaAlef-arhighhamzaWaw-aruHamzaabove-arhighhamzaYeh-artteh-ar tteheh-arbeeh-ar tehRing-artehThreedotsdown-arpeh-arteheh-arbeheh-arhahHamzaabove-arhahTwodotsverticalabove-arnyeh-ardyeh-arhahThreedotsabove-artcheh-ar tcheheh-arddal-ar dalRing-ardalDotbelow-ardalDotbelowTah-ardahal-ar ddahal-ardul-ardalThreedotsdown-ardalFourdots-arrreh-arrehv-ar rehRing-arrehDotbelow-ar rehVbelow-arrehDotbelowdotabove-ar rehTwodots-arjeh-arrehFourdots-arseenDotbelowDotabove-arseenThreedotsbelow-arsheenThreedotsbelow-arsadTwodotsbelow-arsadThreedots-artahThreedots-arainThreedots-ar fehDotless-arfehDotmovedbelow-arfehDotbelow-arveh-arfehThreedotsbelow-arpeheh-arqafDotabove-arqafThreedotsabove-arkeheh-ar kafswash-ar kafRing-arkafDotabove-arng-arkafThreedotsbelow-argaf-ar gafRing-arngoeh-argafTwodotsbelow-argueh-argafThreedots-ar lamVabove-arlamDotabove-arlamThreedotsabove-arlamThreedotsbelow-arnoonDotbelow-ar noonghunna-arrnoon-ar noonRing-arnoonThreedotsabove-arhehDoachashmee-artchehDotabove-arhehHamzaabove-ar hehgoal-arhehgoalHamzaabove-artehMarbutagoal-ar wawring-ar kirghizoe-aroe-aru-aryu-ar kirghizyu-ar wawTwodots-arve-ar yehFarsi-ar yehTail-ar yehVabove-arwawDotabove-are-aryehThreedotsbelow-ar yehbarree-aryehbarreeHamzaabove-ar fullstop-arae-arsadLamAlefMaksuraabove-arqafLamAlefMaksuraabove-ar meemabove-arlamAlefabove-ar jeemabove-arthreedotsabove-ar seenabove-ar endofayah-arhizb-ar sukunround-ar sukunoval-ar hahabove-armeemStopabove-ar seenbelow-ar maddalong-ar wawSmall-ar yehSmall-ar yehabove-ar noonabove-ar sajdah-arrhombusStopbelow-arrhombusStopabove-ardotStopabove-ar meembelow-ardalVinvertedabove-arrehVinvertedabove-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-arsheenDotbelow-ardadDotbelow-arghainDotbelow-arsindhiampersand-arsindhipostpositionmen-arhehVinvertedabove-arbehThreedotshorizontalbelow-arbehThreedotsupabove-arbehThreedotsupbelow-artehThreedotsupbelow-arbehTwodotsbelowDotabove-arbehVinvertedbelow-ar behVabove-arhahTwodotshorizontalabove-arhahThreedotsupbelow-ardalTwodotsverticalbelowTah-ardalVinvertedbelow-ar rehStroke-arseenFourdotsabove-arainTwodotshorizontalabove-arainThreedotsdownabove-arainTwodotsverticalabove-arfehTwodotsbelow-arfehThreedotsupbelow-arkehehDotabove-arkehehThreedotsabove-arkehehThreedotsupbelow-armeemDotabove-armeemDotbelow-arnoonTwodotsbelow-arnoonTahabove-ar noonVabove-ar lamBar-arrehTwodotsverticalabove-arrehHamzaabove-arseenTwodotsverticalabove-arhahTahbelow-arhahTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar$rehTwodotshorizontalaboveTahabove-arhahTahabove-aralefTwoabove-aralefThreeabove-aryehFarsiTwoabove-aryehFarsiThreeabove-aryehFarsiFourbelow-arwawTwoabove-arwawThreeAbove-aryehbarreeTwoabove-aryehbarreeThreeabove-arhahFourbelow-arseenFourabove-arseenVinvertedabove-arkafTwodotshorizontalabove-arpound-ar piastre-ar behVbelow-aryehRohingya-arbehMeemabove-arpehMeemabove-artehTehabove-arrehNoonabove-aryehTwodotsbelowNoonabove-ar fehAfrican-ar qafAfrican-arnoonAfrican-ar fathaCurly-ar dammaCurly-ar kasraCurly-arfathatanCurly-ardammatanCurly-arkasratanCurly-artoneonedotabove-artonetwodotsabove-artoneloopabove-artoneonedotbelow-artonetwodotsbelow-artoneloopbelow-aropenfathatan-aropendammatan-aropenkasratan-ar highwaw-ar fathaRing-arfathaDotabove-arkasraDotbelow-arleftarrowheadabove-arrightarrowheadabove-arleftarrowheadbelow-arrightarrowheadbelow-ardoublerightarrowheadabove-ardoublerightarrowheadDotabove-arrightarrowheadDotabove-ar dammaDot-arenquademquadenspaceemspacethreeperemspacefourperemspace sixperemspace figurespacepunctuationspace thinspace hairspacezerowidthspacezerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark lineseparatorparagraphseparatorlefttorightembeddingrighttoleftembeddingpopdirectionalformattinglefttorightoverriderighttoleftoverride narrownbspacereversedsemicolon dottedCircle commareverseduniFB51uniFB53uniFB54uniFB55uniFB57uniFB58uniFB59uniFB5BuniFB5CuniFB5DuniFB5FuniFB60uniFB61uniFB63uniFB64uniFB65uniFB67uniFB68uniFB69uniFB6BuniFB6CuniFB6DuniFB6FuniFB70uniFB71uniFB73uniFB74uniFB75uniFB77uniFB78uniFB79uniFB7BuniFB7CuniFB7DuniFB7FuniFB80uniFB81uniFB83uniFB85uniFB87uniFB89uniFB8BuniFB8DuniFB8FuniFB90uniFB91uniFB93uniFB94uniFB95uniFB97uniFB98uniFB99uniFB9BuniFB9CuniFB9DuniFB9FuniFBA1uniFBA2uniFBA3uniFBA5uniFBA7uniFBA8uniFBA9uniFBABuniFBACuniFBADuniFBAFuniFBB1dotaboveSymbol-ardotbelowSymbol-artwodotshorizontalaboveSymbol-artwodotshorizontalbelowSymbol-arthreedotsupaboveSymbol-arthreedotsupbelowSymbol-arthreedotsdownaboveSymbol-arthreedotsdownbelowSymbol-arfourdotsaboveSymbol-arfourdotsbelowSymbol-ardoubleverticalbarbelowSymbol-artwodotsverticalaboveSymbol-artwodotsverticalbelowSymbol-ar ringSymbol-aruniFBC0tahbelowSymbol-aruniFBD4uniFBD5uniFBD6uniFBD8uniFBDAuniFBDCuniFBDFuniFBE1uniFBE3uniFBE5uniFBE6uniFBE7uniFBE8uniFBE9uniFBEAuniFBEBuniFBECuniFBEDuniFBEEuniFBEFuniFBF0uniFBF1uniFBF2uniFBF3uniFBF4uniFBF5uniFBF6uniFBF7uniFBF8uniFBF9uniFBFAuniFBFBuniFBFDuniFBFEuniFBFFuniFC00uniFC01uniFC02uniFC03uniFC04uniFC05uniFC06uniFC07uniFC08uniFC09uniFC0AuniFC0BuniFC0CuniFC0DuniFC0EuniFC0FuniFC10uniFC11uniFC12uniFC13uniFC14uniFC15uniFC16uniFC17uniFC18uniFC19uniFC1AuniFC1BuniFC1CuniFC1DuniFC1EuniFC1FuniFC20uniFC21uniFC22uniFC23uniFC24uniFC25uniFC26uniFC27uniFC28uniFC29uniFC2AuniFC2BuniFC2CuniFC2DuniFC2EuniFC2FuniFC30uniFC31uniFC32uniFC33uniFC34uniFC35uniFC36uniFC37uniFC38uniFC39uniFC3AuniFC3BuniFC3CuniFC3DuniFC3EuniFC3FuniFC40uniFC41uniFC42uniFC43uniFC44uniFC45uniFC46uniFC47uniFC48uniFC49uniFC4AuniFC4BuniFC4CuniFC4DuniFC4EuniFC4FuniFC50uniFC51uniFC52uniFC53uniFC54uniFC55uniFC56uniFC57uniFC58uniFC59uniFC5AthalAlefabove-arrehAlefabove-aralefMaksuraAlefabove-aruniFC5EuniFC5FuniFC60uniFC61uniFC62uniFC63uniFC64uniFC65uniFC66uniFC67uniFC68uniFC69uniFC6AuniFC6BuniFC6CuniFC6DuniFC6EuniFC6FuniFC70uniFC71uniFC72uniFC73uniFC74uniFC75uniFC76uniFC77uniFC78uniFC79uniFC7AuniFC7BuniFC7CuniFC7DuniFC7EuniFC7FuniFC80uniFC81uniFC82uniFC83uniFC84uniFC85uniFC86uniFC87uniFC88uniFC89uniFC8AuniFC8BuniFC8CuniFC8DuniFC8EuniFC8FalefMaksuraAlefabove-ar.finauniFC91uniFC92uniFC93uniFC94uniFC95uniFC96uniFC97uniFC98uniFC99uniFC9AuniFC9BuniFC9CuniFC9DuniFC9EuniFC9FuniFCA0uniFCA1uniFCA2uniFCA3uniFCA4uniFCA5uniFCA6uniFCA7uniFCA8uniFCA9uniFCAAuniFCABuniFCACuniFCADuniFCAEuniFCAFuniFCB0uniFCB1uniFCB2uniFCB3uniFCB4uniFCB5uniFCB6uniFCB7uniFCB8uniFCB9uniFCBAuniFCBBuniFCBCuniFCBDuniFCBEuniFCBFuniFCC0uniFCC1uniFCC2uniFCC3uniFCC4uniFCC5uniFCC6uniFCC7uniFCC8uniFCC9uniFCCAuniFCCBuniFCCCuniFCCDuniFCCEuniFCCFuniFCD0uniFCD1uniFCD2uniFCD3uniFCD4uniFCD5uniFCD6uniFCD7uniFCD8hehAlefabove-ar.inituniFCDAuniFCDBuniFCDCuniFCDDuniFCDEuniFCDFuniFCE0uniFCE1uniFCE2uniFCE3uniFCE4uniFCE5uniFCE6uniFCE7uniFCE8uniFCE9uniFCEAuniFCEBuniFCECuniFCEDuniFCEEuniFCEFuniFCF0uniFCF1uniFCF2uniFCF3uniFCF4uniFCF5uniFCF6uniFCF7uniFCF8uniFCF9uniFCFAuniFCFBuniFCFCuniFCFDuniFCFEuniFCFFuniFD00uniFD01uniFD02uniFD03uniFD04uniFD05uniFD06uniFD07uniFD08uniFD09uniFD0AuniFD0BuniFD0CuniFD0DuniFD0EuniFD0FuniFD10uniFD11uniFD12uniFD13uniFD14uniFD15uniFD16uniFD17uniFD18uniFD19uniFD1AuniFD1BuniFD1CuniFD1DuniFD1EuniFD1FuniFD20uniFD21uniFD22uniFD23uniFD24uniFD25uniFD26uniFD27uniFD28uniFD29uniFD2AuniFD2BuniFD2CuniFD2DuniFD2EuniFD2FuniFD30uniFD31uniFD32uniFD33uniFD34uniFD35uniFD36uniFD37uniFD38uniFD39uniFD3AuniFD3BalefFathatan-ar.finaalefFathatan-ar parenleft-ar parenright-aruniFD50uniFD51uniFD52uniFD53uniFD54uniFD55uniFD56uniFD57uniFD58uniFD59uniFD5AuniFD5BuniFD5CuniFD5DuniFD5EuniFD5FuniFD60uniFD61uniFD62uniFD63uniFD64uniFD65uniFD66uniFD67uniFD68uniFD69uniFD6AuniFD6BuniFD6CuniFD6DuniFD6EuniFD6FuniFD70uniFD71uniFD72uniFD73uniFD74uniFD75uniFD76uniFD77uniFD78uniFD79uniFD7AuniFD7BuniFD7CuniFD7DuniFD7EuniFD7FuniFD80uniFD81uniFD82uniFD83uniFD84uniFD85uniFD86uniFD87uniFD88uniFD89uniFD8AuniFD8BuniFD8CuniFD8DuniFD8EuniFD8FuniFD92uniFD93uniFD94uniFD95uniFD96uniFD97uniFD98uniFD99uniFD9AuniFD9BuniFD9CuniFD9DuniFD9EuniFD9FuniFDA0uniFDA1uniFDA2uniFDA3uniFDA4uniFDA5uniFDA6uniFDA7uniFDA8uniFDA9uniFDAAuniFDABuniFDACuniFDADuniFDAEuniFDAFuniFDB0uniFDB1uniFDB2uniFDB3uniFDB4uniFDB5uniFDB6uniFDB7uniFDB8uniFDB9uniFDBAuniFDBBuniFDBCuniFDBDuniFDBEuniFDBFuniFDC0uniFDC1uniFDC2uniFDC3uniFDC4uniFDC5uniFDC6uniFDC7uniFDF0uniFDF1uniFDF2uniFDF3uniFDF4uniFDF5uniFDF6uniFDF7uniFDF8uniFDF9uniFDFAuniFDFBrial bismillah-aruniFE70uniFE71uniFE72uniFE74uniFE76uniFE77uniFE78uniFE79uniFE7AuniFE7BuniFE7CuniFE7DuniFE7EuniFE7FuniFE82uniFE84uniFE86uniFE88uniFE8AuniFE8BuniFE8CuniFE8EuniFE90uniFE91uniFE92uniFE94uniFE96uniFE97uniFE98uniFE9AuniFE9BuniFE9CuniFE9EuniFE9FuniFEA0uniFEA2uniFEA3uniFEA4uniFEA6uniFEA7uniFEA8uniFEAAuniFEACuniFEAEuniFEB0uniFEB2uniFEB3uniFEB4uniFEB6uniFEB7uniFEB8uniFEBAuniFEBBuniFEBCuniFEBEuniFEBFuniFEC0uniFEC2uniFEC3uniFEC4uniFEC6uniFEC7uniFEC8uniFECAuniFECBuniFECCuniFECEuniFECFuniFED0uniFED2uniFED3uniFED4uniFED6uniFED7uniFED8uniFEDAuniFEDBuniFEDCuniFEDEuniFEDFuniFEE0uniFEE2uniFEE3uniFEE4uniFEE6uniFEE7uniFEE8uniFEEAuniFEEBuniFEECuniFEEEuniFEF0uniFEF2uniFEF3uniFEF4uniFEF5uniFEF6uniFEF7uniFEF8uniFEF9uniFEFAuniFEFBuniFEFCzeroWidthNoBreakSpaceu1EE00u1EE01u1EE02u1EE03u1EE05u1EE06u1EE07u1EE08u1EE09u1EE0Au1EE0Bu1EE0Cu1EE0Du1EE0Eu1EE0Fu1EE10u1EE11u1EE12u1EE13u1EE14u1EE15u1EE16u1EE17u1EE18u1EE19u1EE1Au1EE1Bu1EE1Cu1EE1Du1EE1Eu1EE1Fu1EE21u1EE22u1EE24u1EE27u1EE29u1EE2Au1EE2Bu1EE2Cu1EE2Du1EE2Eu1EE2Fu1EE30u1EE31u1EE32u1EE34u1EE35u1EE36u1EE37u1EE39u1EE3Bu1EE42u1EE47u1EE49u1EE4Bu1EE4Du1EE4Eu1EE4Fu1EE51u1EE52u1EE54u1EE57u1EE59u1EE5Bu1EE5Du1EE5Fu1EE61u1EE62u1EE64u1EE67u1EE68u1EE69u1EE6Au1EE6Cu1EE6Du1EE6Eu1EE6Fu1EE70u1EE71u1EE72u1EE74u1EE75u1EE76u1EE77u1EE79u1EE7Au1EE7Bu1EE7Cu1EE7Eu1EE80u1EE81u1EE82u1EE83u1EE84u1EE85u1EE86u1EE87u1EE88u1EE89u1EE8Bu1EE8Cu1EE8Du1EE8Eu1EE8Fu1EE90u1EE91u1EE92u1EE93u1EE94u1EE95u1EE96u1EE97u1EE98u1EE99u1EE9Au1EE9Bu1EEA1u1EEA2u1EEA3u1EEA5u1EEA6u1EEA7u1EEA8u1EEA9u1EEABu1EEACu1EEADu1EEAEu1EEAFu1EEB0u1EEB1u1EEB2u1EEB3u1EEB4u1EEB5u1EEB6u1EEB7u1EEB8u1EEB9u1EEBAu1EEBBu1EEF0u1EEF1 aAlf.fina.alt aAlf.fina aAlf.isol aAyn.fina aAyn.init aAyn.isol aAyn.medi aBaa.fina aBaa.init aBaa.isol aBaa.medi aDal.fina aDal.isol aFaa.fina aFaa.init aFaa.isol aFaa.medi aHaa.fina aHaa.init aHaa.isol aHaa.medi aHeh.fina aHeh.init aHeh.isol aHeh.medi aKaf.fina aKaf.init.alt aKaf.init aKaf.isol aKaf.medi aLam.fina aLam.init aLam.isol aLam.medi aMem.fina.alt aMem.fina aMem.init aMem.isol aMem.medi aNon.fina.alt aNon.fina aNon.isol.alt aNon.isol aQaf.fina aQaf.isolaRaa.fina.alt2 aRaa.fina aRaa.isol aSad.fina aSad.init aSad.isol aSad.medi aSen.fina aSen.init aSen.isol aSen.medi aTaa.fina aTaa.init aTaa.isol aTaa.medi aWaw.fina aWaw.isol aYaa.fina aYaa.isolaLam.medi.LamMemFinaaMem.fina.LamMemFinaaBaa.init.BaaRaaIsolaRaa.fina.BaaRaaIsolaLam.medi.LamWawFinaaWaw.fina.LamWawFinaaLam.init.LamHaaInitaFaa.medi.FaaYaaFinaaYaa.fina.FaaYaaFinaaLam.init.LamLamHaaInitaLam.medi.LamLamHaaInitaHaa.medi.LamLamHaaInitaBaa.medi.BaaMemFinaaMem.fina.BaaMemFinaaSad.init.AboveHaaaLam.init.LamBaaMemInitaBaa.medi.LamBaaMemInitaMem.medi.LamBaaMemInitaBaa.init.BaaDalaDal.fina.BaaDalaBaa.init.BaaMemHaaInitaMem.medi.BaaMemHaaInitaHaa.medi.BaaMemHaaInitaBaa.init.BaaBaaYaaaBaa.medi.BaaBaaYaaaYaa.fina.BaaBaaYaaaLam.medi.LamYaaFinaaYaa.fina.LamYaaFinaaKaf.init.KafBaaInitaBaa.medi.KafBaaInitaLam.init.LamMemInitaMem.medi.LamMemInitaLam.init.LamAlfIsolaAlf.fina.LamAlfIsolaLam.init.LamHaaMemInitaHaa.medi.LamHaaMemInitaMem.medi.LamHaaMemInitaBaa.medi.BaaBaaInitaAyn.medi.AynYaaFinaaMem.init.MemRaaIsolaRaa.fina.MemRaaIsolaFaa.init.FaaHaaInitaHaa.medi.FaaHaaInitaHaa.init.HaaHaaInitaLam.medi.LamQafFinaaQaf.fina.LamQafFinaaSen.init.AboveHaaaMem.init.MemHaaInitaBaa.init.BaaNonIsolaNon.fina.BaaNonIsolaKaf.medi.KafMemFinaaMem.fina.KafMemFinaaBaa.init.BaaSenInitaSen.medi.BaaSenInitaBaa.medi.BaaRaaFinaaRaa.fina.BaaRaaFinaaKaf.medi.KafRaaFinaaRaa.fina.KafRaaFinaaLam.init.LamHehInitaHeh.medi.LamHehInitaMem.init.MemHaaMemInitaHaa.medi.MemHaaMemInitaBaa.init.BaaMemInitaMem.medi.BaaMemInitaSen.init.SenHaaInitaKaf.init.KafRaaIsolaRaa.fina.KafRaaIsolaAyn.init.AynHaaInitaKaf.medi.KafYaaFinaaYaa.fina.KafYaaFinaaLam.init.LamMemHaaInitaMem.medi.LamMemHaaInitaHaa.medi.LamMemHaaInitaLam.medi.LamAlfFinaaAlf.fina.LamAlfFinaaLam.medi.LamMemMediaMem.medi.LamMemMedilam-ar.init.Lellahlam-ar.medi.Lellahheh-ar.fina.LellahaBaa.init.BaaBaaHaaInitaBaa.medi.BaaBaaHaaInitaHaa.medi.BaaBaaHaaInitaBaa.medi.SenBaaMemInitaMem.medi.SenBaaMemInitaBaa.init.BaaBaaIsolaBaa.fina.BaaBaaIsolaBaa.init.BaaBaaMemInitaBaa.medi.BaaBaaMemInitaMem.medi.BaaBaaMemInitaKaf.medi.KafBaaMediaBaa.medi.KafBaaMediaBaa.medi.BaaNonFinaaNon.fina.BaaNonFinaaHaa.init.HaaRaaIsolaRaa.fina.HaaRaaIsolaHeh.init.HehHaaInitaLam.init.LamRaaIsolaRaa.fina.LamRaaIsolaSad.init.SadHaaInitaHaa.medi.SadHaaInitaBaa.medi.BaaYaaFinaaYaa.fina.BaaYaaFinaaBaa.init.BaaSenAltInitaSen.medi.BaaSenAltInitaRaa.fina.PostToothaYaa.fina.PostToothaBaa.init.AboveHaaaBaa.init.BaaHaaInitaBaa.init.BaaHaaMemInitaHaa.medi.BaaHaaMemInitaHaa.fina.AboveHaaIsolaLam.init.LamHaaHaaInitaHaa.medi.1LamHaaHaaInitaHaa.medi.2LamHaaHaaInitaAyn.init.FinjaniaHaa.init.FinjaniaHaa.medi.FinjaniaSen.init.PreYaaaSen.medi.PreYaaaSad.init.PreYaaaSad.medi.PreYaaaBaa.init.High dotabove-artwodotshorizontalabove-arthreedotsupabove-ar dotbelow-artwodotshorizontalbelow-arthreedotsupbelow-ar aKaf.isol.alt aKaf.medi.alt miniKeheh-ardash.kaf aKaf.fina.altthreedotsdownabove-arthreedotsdownbelow-argafsarkashabove-araBaa.medi.Highsmalltaa.abovetwodotsverticalabove-artwodotsverticalbelow-ar ring.belowaSen.fina.BaaSenaMem.fina.PostToothkashida-ar.LamKaf.1dot.alt1gafsarkashabove-ar.alt2gafsarkashabove-ar.alt1aBaa.init.WideaHaa.medi.HaaHaaInitaHaa.medi.AynHaaInitaMem.medi.LamMemInitTatweelaHeh.init.AboveHaaaHaa.init.AboveHaaaAyn.init.AboveHaaaHaa.fina.AboveHaaIsol2aMem.init.AboveHaaaKaf.init.AboveHaafourdotsabove-arfourdotsbelow-arthreedotshorizontalabove-arthreedotshorizontalbelow-ar aYaa.tailwavyhamzaabove-ar vbelow-arvinvertedbelow-ar tahbelow-artwostrokes.belowwasla-arfathatan-ar.smallfatha-ar.smallopendammatan-ar.smalldamma-ar.smallsukun-ar.small2kasra-ar.small2 damma.markhamzadamma.mark aAlf.daggerdot.1dot.2 dash.kaf_gaf dotbelow-ar.ltwodotshorizontalbelow-ar.lthreedotsupbelow-ar.lthreedotsdownbelow-ar.ltwodotsverticalbelow-ar.lfourdotsbelow-ar.lthreedotshorizontalbelow-ar.lvinvertedbelow-ar.low stroke-ar twoabove-ar threeabove-ar fourabove-ar fourbelow-arfourFarsi-ar.urdsixFarsi-ar.urdsevenFarsi-ar.urdaKaf.init.KafLamaKaf.fina.KafKafFinaaLam.medi.KafLamaLam.medi.KafLamMemMediaKaf.medi.KafLamaLam.medi.KafLamHehIsolaLam.medi.KafLamYaaaLam.medi.KafLamAlfaLam.fina.KafLamaAlf.fina.KafAlfaKaf.init.KafMemAlfaKaf.medi.KafMemAlfaMem.medi.KafMemAlfaLam.medi.KafMemLamaLam.fina.KafMemLamaAlf.fina.KafMemAlfat.araaKaf.init.KafHehaKaf.medi.KafHehaHeh.fina.KafHehaDal.fina.KafDalaLam.init.LamHehaLam.medi.LamHehaHeh.fina.LamHehaDal.fina.LamDalaKaf.medi.KafMemMediaKaf.init.KafMemInitaAyn.init.AynMemInitaFaa.init.FaaMemInitaHaa.init.HaaMemInitaHeh.init.HehMemInitaMem.medi.KafMemMediaSen.init.SenMemInitaSad.init.SadMemInitaMem.init.MemMemInitaMem.medi.SenMemInitaKaf.init.KafYaaIsolaBaa.init.BaaYaaIsolaHaa.init.HaaYaaIsolaMem.init.MemYaaIsolaFaa.init.FaaYaaIsolaAyn.init.AynYaaIsolaLam.init.LamYaaIsolaHeh.init.HehYaaIsolaYaa.fina.KafYaaIsolaKaf.init.KafMemIsolaLam.init.LamMemIsolaBaa.init.BaaMemIsolaMem.fina.KafMemIsolaMem.medi.MemAlfFinaaBaa.medi.BaaMemAlfFinaaMem.medi.BaaMemAlfFinaaMem.medi.AlfPostToothaAlf.fina.MemAlfFinaaBaa.init.BaaHehInitaBaa.medi.BaaHehMediaHeh.medi.BaaHehMediaHeh.medi.PostToothaLam.medi.KafLamMemFinaaLam.init.LamLamInitaLam.medi.LamLamInitaLam.medi.LamLamAlfIsolaKaf.fina.LamKafIsolaLam.fina.LamLamIsollam-ar.medi.FaLellahaLam.medi.LamLamMediaLam.medi.LamLamAlefFinaaLam.medi.LamLamMedi2aKaf.fina.LamKafFinaaLam.fina.LamLamFinaaLam.medi.LamLamMemInitaLam.medi.LamLamHehIsolaLam.medi.LamLamYaaIsolaLam.medi.LamLamMemMediaLam.medi.LamLamHehFinaaLam.medi.LamLamYaaFinaalefHamzabelow-ar.fina alef-ar.finaalefThreeabove-ar.finaalefTwoabove-ar.finaalefHamzaabove-ar.finaalefMadda-ar.finaalefWavyhamzaabove-ar.finaalefWavyhamzabelow-ar.finaalefWasla-ar.finaghainDotbelow-ar.fina ghain-ar.finaainThreedotsdownabove-ar.fina!ainTwodotshorizontalabove-ar.finaainTwodotsverticalabove-ar.finaainThreedots-ar.fina ain-ar.finaghainDotbelow-ar.init ghain-ar.initainThreedotsdownabove-ar.init!ainTwodotshorizontalabove-ar.initainTwodotsverticalabove-ar.initainThreedots-ar.init ain-ar.initghainDotbelow-ar.medi ghain-ar.mediainThreedotsdownabove-ar.medi!ainTwodotshorizontalabove-ar.mediainTwodotsverticalabove-ar.mediainThreedots-ar.medi ain-ar.medibehThreedotsupabove-ar.fina#behThreedotshorizontalbelow-ar.finatehThreedotsupbelow-ar.fina beheh-ar.fina teh-ar.finabehTwodotsbelowDotabove-ar.fina theh-ar.fina tteh-ar.finatehRing-ar.finabehVabove-ar.finabehThreedotsupbelow-ar.finabehDotless-ar.fina teheh-ar.finabehVinvertedbelow-ar.finatehThreedotsdown-ar.fina peh-ar.fina beeh-ar.fina beh-ar.finatteheh-ar.finayehFarsiFourbelow-ar.init beheh-ar.inityehFarsiThreeabove-ar.initnoonRing-ar.init#behThreedotshorizontalbelow-ar.initbehVabove-ar.initnoonTahabove-ar.inityehVabove-ar.inityehFarsiTwoabove-ar.initnoonThreedotsabove-ar.inityehHamzaabove-ar.initbehDotless-ar.inityehKashmiri-ar.init yeh-ar.init rnoon-ar.init teheh-ar.initbehVinvertedbelow-ar.inittehThreedotsdown-ar.init peh-ar.init beeh-ar.init beh-ar.inittteheh-ar.initbehThreedotsupabove-ar.init noon-ar.inittehThreedotsupbelow-ar.initbehThreedotsupbelow-ar.init teh-ar.inithighhamzaYeh-ar.inityehFarsiVinverted-ar.init theh-ar.init tteh-ar.initnoonDotbelow-ar.initnoonVabove-ar.initalefMaksura-ar.inittehRing-ar.initbehTwodotsbelowDotabove-ar.inityehThreedotsbelow-ar.init e-ar.initnoonghunna-ar.inityehFarsi-ar.initnoonTwodotsbelow-ar.inityehFarsiFourbelow-ar.medi beheh-ar.mediyehFarsiThreeabove-ar.medinoonRing-ar.medi#behThreedotshorizontalbelow-ar.medibehVabove-ar.medinoonTahabove-ar.mediyehVabove-ar.mediyehFarsiTwoabove-ar.medinoonThreedotsabove-ar.mediyehHamzaabove-ar.medibehDotless-ar.mediyehKashmiri-ar.medi yeh-ar.medi rnoon-ar.medi teheh-ar.medibehVinvertedbelow-ar.meditehThreedotsdown-ar.medi peh-ar.medi beeh-ar.medi beh-ar.meditteheh-ar.medibehThreedotsupabove-ar.medi noon-ar.meditehThreedotsupbelow-ar.medibehThreedotsupbelow-ar.medi teh-ar.mediyehFarsiVinverted-ar.medi theh-ar.medi tteh-ar.medinoonDotbelow-ar.medinoonVabove-ar.medialefMaksura-ar.meditehRing-ar.medibehTwodotsbelowDotabove-ar.mediyehThreedotsbelow-ar.medi e-ar.medinoonghunna-ar.mediyehFarsi-ar.medinoonTwodotsbelow-ar.medidalFourdots-ar.finadalVinvertedabove-ar.finadalRing-ar.fina ddal-ar.finadalVinvertedbelow-ar.fina thal-ar.fina dal-ar.fina"dalTwodotsverticalbelowTah-ar.fina dahal-ar.finadalDotbelowTah-ar.finadalDotbelow-ar.finadalThreedotsdown-ar.fina dul-ar.finaddahal-ar.finafehTwodotsbelow-ar.finafehThreedotsupbelow-ar.fina feh-ar.finafehDotless-ar.finafehDotmovedbelow-ar.finafehDotbelow-ar.fina veh-ar.finafehThreedotsbelow-ar.fina peheh-ar.finaqafDotless-ar.initfehThreedotsupbelow-ar.initfehTwodotsbelow-ar.init qaf-ar.init feh-ar.initqafThreedotsabove-ar.initfehDotless-ar.initfehDotmovedbelow-ar.initfehDotbelow-ar.init veh-ar.initfehThreedotsbelow-ar.init peheh-ar.initqafDotabove-ar.initqafDotless-ar.medifehThreedotsupbelow-ar.medifehTwodotsbelow-ar.medi qaf-ar.medi feh-ar.mediqafThreedotsabove-ar.medifehDotless-ar.medifehDotmovedbelow-ar.medifehDotbelow-ar.medi veh-ar.medifehThreedotsbelow-ar.medi peheh-ar.mediqafDotabove-ar.medi khah-ar.fina hah-ar.finahahHamzaabove-ar.finatcheheh-ar.finahahThreedotsabove-ar.fina jeem-ar.finahahTwodotsverticalabove-ar.fina!hahTwodotshorizontalabove-ar.fina dyeh-ar.fina$hahTahTwodotshorizontalabove-ar.finahahTahbelow-ar.fina nyeh-ar.finatchehDotabove-ar.finahahFourbelow-ar.finahahThreedotsupbelow-ar.finahahTahabove-ar.fina tcheh-ar.fina khah-ar.init hah-ar.inithahHamzaabove-ar.inittcheheh-ar.inithahThreedotsabove-ar.init jeem-ar.inithahTwodotsverticalabove-ar.init!hahTwodotshorizontalabove-ar.init dyeh-ar.init$hahTahTwodotshorizontalabove-ar.inithahTahbelow-ar.init nyeh-ar.inittchehDotabove-ar.inithahFourbelow-ar.inithahThreedotsupbelow-ar.inithahTahabove-ar.init tcheh-ar.init khah-ar.medi hah-ar.medihahHamzaabove-ar.meditcheheh-ar.medihahThreedotsabove-ar.medi jeem-ar.medihahTwodotsverticalabove-ar.medi!hahTwodotshorizontalabove-ar.medi dyeh-ar.medi$hahTahTwodotshorizontalabove-ar.medihahTahbelow-ar.medi nyeh-ar.meditchehDotabove-ar.medihahFourbelow-ar.medihahThreedotsupbelow-ar.medihahTahabove-ar.medi tcheh-ar.medi heh-ar.finahehgoal-ar.finatehMarbutagoal-ar.fina ae-ar.finatehMarbuta-ar.fina heh-ar.inithehgoal-ar.init heh-ar.medihehgoal-ar.medi#kehehTwodotshorizontalabove-ar.finakehehThreedotsbelow-ar.fina!kafTwodotshorizontalabove-ar.finakehehThreedotsupbelow-ar.fina kaf-ar.finagafRing-ar.fina gueh-ar.finagafTwodotsbelow-ar.finakafRing-ar.finakafDotabove-ar.fina ng-ar.finakafThreedotsbelow-ar.fina gaf-ar.fina keheh-ar.finagafThreedots-ar.finakehehThreedotsabove-ar.finakehehDotabove-ar.fina ngoeh-ar.fina#kehehTwodotshorizontalabove-ar.initkehehThreedotsbelow-ar.init!kafTwodotshorizontalabove-ar.initkehehThreedotsupbelow-ar.init kaf-ar.initgafRing-ar.init gueh-ar.initgafTwodotsbelow-ar.initkafRing-ar.initkafDotabove-ar.init ng-ar.initkafThreedotsbelow-ar.init gaf-ar.init keheh-ar.initgafThreedots-ar.initkehehThreedotsabove-ar.initkehehDotabove-ar.init ngoeh-ar.init#kehehTwodotshorizontalabove-ar.medikehehThreedotsbelow-ar.medi!kafTwodotshorizontalabove-ar.medikehehThreedotsupbelow-ar.medi kaf-ar.medigafRing-ar.medi gueh-ar.medigafTwodotsbelow-ar.medikafRing-ar.medikafDotabove-ar.medi ng-ar.medikafThreedotsbelow-ar.medi gaf-ar.medi keheh-ar.medigafThreedots-ar.medikehehThreedotsabove-ar.medikehehDotabove-ar.medi ngoeh-ar.medilamVabove-ar.finalamThreedotsabove-ar.fina lam-ar.finalamThreedotsbelow-ar.finalamDotabove-ar.finalamBar-ar.finalamVabove-ar.initlamThreedotsabove-ar.init lam-ar.initlamThreedotsbelow-ar.initlamDotabove-ar.initlamBar-ar.initlamVabove-ar.medilamThreedotsabove-ar.medi lam-ar.medilamThreedotsbelow-ar.medilamDotabove-ar.medilamBar-ar.medimeemDotabove-ar.fina meem-ar.finameemDotbelow-ar.finameemDotabove-ar.init meem-ar.initmeemDotbelow-ar.initmeemDotabove-ar.medi meem-ar.medimeemDotbelow-ar.medi noon-ar.finanoonTwodotsbelow-ar.finanoonghunna-ar.finanoonRing-ar.fina rnoon-ar.finanoonTahabove-ar.finanoonDotbelow-ar.finanoonVabove-ar.finanoonThreedotsabove-ar.finaqafThreedotsabove-ar.finaqafDotabove-ar.fina qaf-ar.finaqafDotless-ar.fina rreh-ar.fina rehv-ar.finarehRing-ar.finarehDotbelow-ar.finarehVbelow-ar.finarehDotbelowdotabove-ar.finarehTwodots-ar.fina jeh-ar.finarehFourdots-ar.finarehStroke-ar.finarehVinvertedabove-ar.fina zain-ar.fina)rehTwodotshorizontalaboveTahabove-ar.fina reh-ar.finarehTwodotsverticalabove-ar.finarehHamzaabove-ar.finasadTwodotsbelow-ar.finadadDotbelow-ar.fina dad-ar.finasadThreedots-ar.fina sad-ar.finasadTwodotsbelow-ar.initdadDotbelow-ar.init dad-ar.initsadThreedots-ar.init sad-ar.initsadTwodotsbelow-ar.medidadDotbelow-ar.medi dad-ar.medisadThreedots-ar.medi sad-ar.medisheenDotbelow-ar.fina seenTwodotsverticalabove-ar.fina seen-ar.finaseenVinvertedabove-ar.finaseenFourabove-ar.fina sheen-ar.fina%seenTahTwodotshorizontalabove-ar.finaseenFourdotsabove-ar.finaseenDotbelowDotabove-ar.finaseenThreedotsbelow-ar.finasheenThreedotsbelow-ar.finasheenDotbelow-ar.init seenTwodotsverticalabove-ar.init seen-ar.initseenVinvertedabove-ar.initseenFourabove-ar.init sheen-ar.init%seenTahTwodotshorizontalabove-ar.initseenFourdotsabove-ar.initseenDotbelowDotabove-ar.initseenThreedotsbelow-ar.initsheenThreedotsbelow-ar.initsheenDotbelow-ar.medi seenTwodotsverticalabove-ar.medi seen-ar.mediseenVinvertedabove-ar.mediseenFourabove-ar.medi sheen-ar.medi%seenTahTwodotshorizontalabove-ar.mediseenFourdotsabove-ar.mediseenDotbelowDotabove-ar.mediseenThreedotsbelow-ar.medisheenThreedotsbelow-ar.medi zah-ar.fina tah-ar.finatahThreedots-ar.fina zah-ar.init tah-ar.inittahThreedots-ar.init zah-ar.medi tah-ar.meditahThreedots-ar.medi ve-ar.finawawHamzaabove-ar.finawawTwodots-ar.finawawDotabove-ar.finawawTwoabove-ar.fina oe-ar.fina u-ar.finawawring-ar.finakirghizoe-ar.fina yu-ar.finakirghizyu-ar.finawawThreeAbove-ar.fina waw-ar.finayehFarsiFourbelow-ar.finayehThreedotsbelow-ar.finayehFarsiTwoabove-ar.finayehFarsiThreedotsabove-ar.finayehFarsiVinverted-ar.finayehFarsiTwodotsabove-ar.fina e-ar.finaalefMaksura-ar.finayehFarsiThreeabove-ar.finayehTail-ar.finayehFarsi-ar.finayehHamzaabove-ar.finayehKashmiri-ar.fina yeh-ar.finayehVabove-ar.finalamVabove-ar.medi.LamMemFina$lamThreedotsabove-ar.medi.LamMemFinalam-ar.medi.LamMemFina$lamThreedotsbelow-ar.medi.LamMemFinalamDotabove-ar.medi.LamMemFinalamBar-ar.medi.LamMemFinameem-ar.fina.LamMemFina$yehFarsiFourbelow-ar.init.BaaRaaIsolbeheh-ar.init.BaaRaaIsol%yehFarsiThreeabove-ar.init.BaaRaaIsolnoonRing-ar.init.BaaRaaIsol.behThreedotshorizontalbelow-ar.init.BaaRaaIsolbehVabove-ar.init.BaaRaaIsolnoonTahabove-ar.init.BaaRaaIsolyehVabove-ar.init.BaaRaaIsol#yehFarsiTwoabove-ar.init.BaaRaaIsol%noonThreedotsabove-ar.init.BaaRaaIsol yehHamzaabove-ar.init.BaaRaaIsolbehDotless-ar.init.BaaRaaIsolyehKashmiri-ar.init.BaaRaaIsolyeh-ar.init.BaaRaaIsolrnoon-ar.init.BaaRaaIsolteheh-ar.init.BaaRaaIsol$behVinvertedbelow-ar.init.BaaRaaIsol#tehThreedotsdown-ar.init.BaaRaaIsolpeh-ar.init.BaaRaaIsolbeeh-ar.init.BaaRaaIsolbeh-ar.init.BaaRaaIsoltteheh-ar.init.BaaRaaIsol&behThreedotsupabove-ar.init.BaaRaaIsolnoon-ar.init.BaaRaaIsol&tehThreedotsupbelow-ar.init.BaaRaaIsol&behThreedotsupbelow-ar.init.BaaRaaIsolteh-ar.init.BaaRaaIsolhighhamzaYeh-ar.init.BaaRaaIsol$yehFarsiVinverted-ar.init.BaaRaaIsoltheh-ar.init.BaaRaaIsoltteh-ar.init.BaaRaaIsolnoonDotbelow-ar.init.BaaRaaIsolnoonVabove-ar.init.BaaRaaIsolalefMaksura-ar.init.BaaRaaIsoltehRing-ar.init.BaaRaaIsol*behTwodotsbelowDotabove-ar.init.BaaRaaIsol$yehThreedotsbelow-ar.init.BaaRaaIsole-ar.init.BaaRaaIsolnoonghunna-ar.init.BaaRaaIsolyehFarsi-ar.init.BaaRaaIsol#noonTwodotsbelow-ar.init.BaaRaaIsolrreh-ar.fina.BaaRaaIsolrehv-ar.fina.BaaRaaIsolrehRing-ar.fina.BaaRaaIsolrehDotbelow-ar.fina.BaaRaaIsolrehVbelow-ar.fina.BaaRaaIsol&rehDotbelowdotabove-ar.fina.BaaRaaIsolrehTwodots-ar.fina.BaaRaaIsoljeh-ar.fina.BaaRaaIsolrehFourdots-ar.fina.BaaRaaIsolrehStroke-ar.fina.BaaRaaIsol$rehVinvertedabove-ar.fina.BaaRaaIsolzain-ar.fina.BaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsolreh-ar.fina.BaaRaaIsol*rehTwodotsverticalabove-ar.fina.BaaRaaIsol rehHamzaabove-ar.fina.BaaRaaIsollamVabove-ar.medi.LamWawFina$lamThreedotsabove-ar.medi.LamWawFinalam-ar.medi.LamWawFina$lamThreedotsbelow-ar.medi.LamWawFinalamDotabove-ar.medi.LamWawFinalamBar-ar.medi.LamWawFinave-ar.fina.LamWawFina wawHamzaabove-ar.fina.LamWawFinawawTwodots-ar.fina.LamWawFinawawDotabove-ar.fina.LamWawFinawawTwoabove-ar.fina.LamWawFinaoe-ar.fina.LamWawFinau-ar.fina.LamWawFinawawring-ar.fina.LamWawFinakirghizoe-ar.fina.LamWawFinayu-ar.fina.LamWawFinakirghizyu-ar.fina.LamWawFina wawThreeAbove-ar.fina.LamWawFinawaw-ar.fina.LamWawFinalamVabove-ar.init.LamHaaInit$lamThreedotsabove-ar.init.LamHaaInitlam-ar.init.LamHaaInit$lamThreedotsbelow-ar.init.LamHaaInitlamDotabove-ar.init.LamHaaInitlamBar-ar.init.LamHaaInitqafDotless-ar.medi.FaaYaaFina&fehThreedotsupbelow-ar.medi.FaaYaaFina"fehTwodotsbelow-ar.medi.FaaYaaFinaqaf-ar.medi.FaaYaaFinafeh-ar.medi.FaaYaaFina$qafThreedotsabove-ar.medi.FaaYaaFinafehDotless-ar.medi.FaaYaaFina#fehDotmovedbelow-ar.medi.FaaYaaFinafehDotbelow-ar.medi.FaaYaaFinaveh-ar.medi.FaaYaaFina$fehThreedotsbelow-ar.medi.FaaYaaFinapeheh-ar.medi.FaaYaaFinaqafDotabove-ar.medi.FaaYaaFina$yehFarsiFourbelow-ar.fina.FaaYaaFina$yehThreedotsbelow-ar.fina.FaaYaaFina#yehFarsiTwoabove-ar.fina.FaaYaaFina)yehFarsiThreedotsabove-ar.fina.FaaYaaFina$yehFarsiVinverted-ar.fina.FaaYaaFina'yehFarsiTwodotsabove-ar.fina.FaaYaaFinae-ar.fina.FaaYaaFinaalefMaksura-ar.fina.FaaYaaFina%yehFarsiThreeabove-ar.fina.FaaYaaFinayehTail-ar.fina.FaaYaaFinayehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFinayehKashmiri-ar.fina.FaaYaaFinayeh-ar.fina.FaaYaaFinayehVabove-ar.fina.FaaYaaFinalamVabove-ar.init.LamLamHaaInit'lamThreedotsabove-ar.init.LamLamHaaInitlam-ar.init.LamLamHaaInit'lamThreedotsbelow-ar.init.LamLamHaaInit!lamDotabove-ar.init.LamLamHaaInitlamBar-ar.init.LamLamHaaInitlamVabove-ar.medi.LamLamHaaInit'lamThreedotsabove-ar.medi.LamLamHaaInitlam-ar.medi.LamLamHaaInit'lamThreedotsbelow-ar.medi.LamLamHaaInit!lamDotabove-ar.medi.LamLamHaaInitlamBar-ar.medi.LamLamHaaInitkhah-ar.medi.LamLamHaaInithah-ar.medi.LamLamHaaInit#hahHamzaabove-ar.medi.LamLamHaaInittcheheh-ar.medi.LamLamHaaInit'hahThreedotsabove-ar.medi.LamLamHaaInitjeem-ar.medi.LamLamHaaInit-hahTwodotsverticalabove-ar.medi.LamLamHaaInit/hahTwodotshorizontalabove-ar.medi.LamLamHaaInitdyeh-ar.medi.LamLamHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit!hahTahbelow-ar.medi.LamLamHaaInitnyeh-ar.medi.LamLamHaaInit#tchehDotabove-ar.medi.LamLamHaaInit"hahFourbelow-ar.medi.LamLamHaaInit)hahThreedotsupbelow-ar.medi.LamLamHaaInit!hahTahabove-ar.medi.LamLamHaaInittcheh-ar.medi.LamLamHaaInit$yehFarsiFourbelow-ar.medi.BaaMemFinabeheh-ar.medi.BaaMemFina%yehFarsiThreeabove-ar.medi.BaaMemFinanoonRing-ar.medi.BaaMemFina.behThreedotshorizontalbelow-ar.medi.BaaMemFinabehVabove-ar.medi.BaaMemFinanoonTahabove-ar.medi.BaaMemFinayehVabove-ar.medi.BaaMemFina#yehFarsiTwoabove-ar.medi.BaaMemFina%noonThreedotsabove-ar.medi.BaaMemFina yehHamzaabove-ar.medi.BaaMemFinabehDotless-ar.medi.BaaMemFinayehKashmiri-ar.medi.BaaMemFinayeh-ar.medi.BaaMemFinarnoon-ar.medi.BaaMemFinateheh-ar.medi.BaaMemFina$behVinvertedbelow-ar.medi.BaaMemFina#tehThreedotsdown-ar.medi.BaaMemFinapeh-ar.medi.BaaMemFinabeeh-ar.medi.BaaMemFinabeh-ar.medi.BaaMemFinatteheh-ar.medi.BaaMemFina&behThreedotsupabove-ar.medi.BaaMemFinanoon-ar.medi.BaaMemFina&tehThreedotsupbelow-ar.medi.BaaMemFina&behThreedotsupbelow-ar.medi.BaaMemFinateh-ar.medi.BaaMemFina$yehFarsiVinverted-ar.medi.BaaMemFinatheh-ar.medi.BaaMemFinatteh-ar.medi.BaaMemFinanoonDotbelow-ar.medi.BaaMemFinanoonVabove-ar.medi.BaaMemFinaalefMaksura-ar.medi.BaaMemFinatehRing-ar.medi.BaaMemFina*behTwodotsbelowDotabove-ar.medi.BaaMemFina$yehThreedotsbelow-ar.medi.BaaMemFinae-ar.medi.BaaMemFinanoonghunna-ar.medi.BaaMemFinayehFarsi-ar.medi.BaaMemFina#noonTwodotsbelow-ar.medi.BaaMemFinameem-ar.fina.BaaMemFina sadTwodotsbelow-ar.init.AboveHaadadDotbelow-ar.init.AboveHaadad-ar.init.AboveHaasadThreedots-ar.init.AboveHaasad-ar.init.AboveHaalamVabove-ar.init.LamBaaMemInit'lamThreedotsabove-ar.init.LamBaaMemInitlam-ar.init.LamBaaMemInit'lamThreedotsbelow-ar.init.LamBaaMemInit!lamDotabove-ar.init.LamBaaMemInitlamBar-ar.init.LamBaaMemInit'yehFarsiFourbelow-ar.medi.LamBaaMemInitbeheh-ar.medi.LamBaaMemInit(yehFarsiThreeabove-ar.medi.LamBaaMemInitnoonRing-ar.medi.LamBaaMemInit1behThreedotshorizontalbelow-ar.medi.LamBaaMemInitbehVabove-ar.medi.LamBaaMemInit"noonTahabove-ar.medi.LamBaaMemInityehVabove-ar.medi.LamBaaMemInit&yehFarsiTwoabove-ar.medi.LamBaaMemInit(noonThreedotsabove-ar.medi.LamBaaMemInit#yehHamzaabove-ar.medi.LamBaaMemInit behDotless-ar.medi.LamBaaMemInit!yehKashmiri-ar.medi.LamBaaMemInityeh-ar.medi.LamBaaMemInitrnoon-ar.medi.LamBaaMemInitteheh-ar.medi.LamBaaMemInit'behVinvertedbelow-ar.medi.LamBaaMemInit&tehThreedotsdown-ar.medi.LamBaaMemInitpeh-ar.medi.LamBaaMemInitbeeh-ar.medi.LamBaaMemInitbeh-ar.medi.LamBaaMemInittteheh-ar.medi.LamBaaMemInit)behThreedotsupabove-ar.medi.LamBaaMemInitnoon-ar.medi.LamBaaMemInit)tehThreedotsupbelow-ar.medi.LamBaaMemInit)behThreedotsupbelow-ar.medi.LamBaaMemInitteh-ar.medi.LamBaaMemInit'yehFarsiVinverted-ar.medi.LamBaaMemInittheh-ar.medi.LamBaaMemInittteh-ar.medi.LamBaaMemInit"noonDotbelow-ar.medi.LamBaaMemInit noonVabove-ar.medi.LamBaaMemInit!alefMaksura-ar.medi.LamBaaMemInittehRing-ar.medi.LamBaaMemInit-behTwodotsbelowDotabove-ar.medi.LamBaaMemInit'yehThreedotsbelow-ar.medi.LamBaaMemInite-ar.medi.LamBaaMemInit noonghunna-ar.medi.LamBaaMemInityehFarsi-ar.medi.LamBaaMemInit&noonTwodotsbelow-ar.medi.LamBaaMemInitmeem-ar.medi.LamBaaMemInit yehFarsiFourbelow-ar.init.BaaDalbeheh-ar.init.BaaDal!yehFarsiThreeabove-ar.init.BaaDalnoonRing-ar.init.BaaDal*behThreedotshorizontalbelow-ar.init.BaaDalbehVabove-ar.init.BaaDalnoonTahabove-ar.init.BaaDalyehVabove-ar.init.BaaDalyehFarsiTwoabove-ar.init.BaaDal!noonThreedotsabove-ar.init.BaaDalyehHamzaabove-ar.init.BaaDalbehDotless-ar.init.BaaDalyehKashmiri-ar.init.BaaDalyeh-ar.init.BaaDalrnoon-ar.init.BaaDalteheh-ar.init.BaaDal behVinvertedbelow-ar.init.BaaDaltehThreedotsdown-ar.init.BaaDalpeh-ar.init.BaaDalbeeh-ar.init.BaaDalbeh-ar.init.BaaDaltteheh-ar.init.BaaDal"behThreedotsupabove-ar.init.BaaDalnoon-ar.init.BaaDal"tehThreedotsupbelow-ar.init.BaaDal"behThreedotsupbelow-ar.init.BaaDalteh-ar.init.BaaDalhighhamzaYeh-ar.init.BaaDal yehFarsiVinverted-ar.init.BaaDaltheh-ar.init.BaaDaltteh-ar.init.BaaDalnoonDotbelow-ar.init.BaaDalnoonVabove-ar.init.BaaDalalefMaksura-ar.init.BaaDaltehRing-ar.init.BaaDal&behTwodotsbelowDotabove-ar.init.BaaDal yehThreedotsbelow-ar.init.BaaDale-ar.init.BaaDalnoonghunna-ar.init.BaaDalyehFarsi-ar.init.BaaDalnoonTwodotsbelow-ar.init.BaaDaldalFourdots-ar.fina.BaaDal dalVinvertedabove-ar.fina.BaaDaldalRing-ar.fina.BaaDalddal-ar.fina.BaaDal dalVinvertedbelow-ar.fina.BaaDalthal-ar.fina.BaaDaldal-ar.fina.BaaDal)dalTwodotsverticalbelowTah-ar.fina.BaaDaldahal-ar.fina.BaaDaldalDotbelowTah-ar.fina.BaaDaldalDotbelow-ar.fina.BaaDaldalThreedotsdown-ar.fina.BaaDaldul-ar.fina.BaaDalddahal-ar.fina.BaaDal'yehFarsiFourbelow-ar.init.BaaMemHaaInitbeheh-ar.init.BaaMemHaaInit(yehFarsiThreeabove-ar.init.BaaMemHaaInitnoonRing-ar.init.BaaMemHaaInit1behThreedotshorizontalbelow-ar.init.BaaMemHaaInitbehVabove-ar.init.BaaMemHaaInit"noonTahabove-ar.init.BaaMemHaaInityehVabove-ar.init.BaaMemHaaInit&yehFarsiTwoabove-ar.init.BaaMemHaaInit(noonThreedotsabove-ar.init.BaaMemHaaInit#yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInit!yehKashmiri-ar.init.BaaMemHaaInityeh-ar.init.BaaMemHaaInitrnoon-ar.init.BaaMemHaaInitteheh-ar.init.BaaMemHaaInit'behVinvertedbelow-ar.init.BaaMemHaaInit&tehThreedotsdown-ar.init.BaaMemHaaInitpeh-ar.init.BaaMemHaaInitbeeh-ar.init.BaaMemHaaInitbeh-ar.init.BaaMemHaaInittteheh-ar.init.BaaMemHaaInit)behThreedotsupabove-ar.init.BaaMemHaaInitnoon-ar.init.BaaMemHaaInit)tehThreedotsupbelow-ar.init.BaaMemHaaInit)behThreedotsupbelow-ar.init.BaaMemHaaInitteh-ar.init.BaaMemHaaInit"highhamzaYeh-ar.init.BaaMemHaaInit'yehFarsiVinverted-ar.init.BaaMemHaaInittheh-ar.init.BaaMemHaaInittteh-ar.init.BaaMemHaaInit"noonDotbelow-ar.init.BaaMemHaaInit noonVabove-ar.init.BaaMemHaaInit!alefMaksura-ar.init.BaaMemHaaInittehRing-ar.init.BaaMemHaaInit-behTwodotsbelowDotabove-ar.init.BaaMemHaaInit'yehThreedotsbelow-ar.init.BaaMemHaaInite-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInityehFarsi-ar.init.BaaMemHaaInit&noonTwodotsbelow-ar.init.BaaMemHaaInitmeem-ar.medi.BaaMemHaaInitkhah-ar.medi.BaaMemHaaInithah-ar.medi.BaaMemHaaInit#hahHamzaabove-ar.medi.BaaMemHaaInittcheheh-ar.medi.BaaMemHaaInit'hahThreedotsabove-ar.medi.BaaMemHaaInitjeem-ar.medi.BaaMemHaaInit-hahTwodotsverticalabove-ar.medi.BaaMemHaaInit/hahTwodotshorizontalabove-ar.medi.BaaMemHaaInitdyeh-ar.medi.BaaMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit!hahTahbelow-ar.medi.BaaMemHaaInitnyeh-ar.medi.BaaMemHaaInit#tchehDotabove-ar.medi.BaaMemHaaInit"hahFourbelow-ar.medi.BaaMemHaaInit)hahThreedotsupbelow-ar.medi.BaaMemHaaInit!hahTahabove-ar.medi.BaaMemHaaInittcheh-ar.medi.BaaMemHaaInit#yehFarsiFourbelow-ar.init.BaaBaaYaabeheh-ar.init.BaaBaaYaa$yehFarsiThreeabove-ar.init.BaaBaaYaanoonRing-ar.init.BaaBaaYaa-behThreedotshorizontalbelow-ar.init.BaaBaaYaabehVabove-ar.init.BaaBaaYaanoonTahabove-ar.init.BaaBaaYaayehVabove-ar.init.BaaBaaYaa"yehFarsiTwoabove-ar.init.BaaBaaYaa$noonThreedotsabove-ar.init.BaaBaaYaayehHamzaabove-ar.init.BaaBaaYaabehDotless-ar.init.BaaBaaYaayehKashmiri-ar.init.BaaBaaYaayeh-ar.init.BaaBaaYaarnoon-ar.init.BaaBaaYaateheh-ar.init.BaaBaaYaa#behVinvertedbelow-ar.init.BaaBaaYaa"tehThreedotsdown-ar.init.BaaBaaYaapeh-ar.init.BaaBaaYaabeeh-ar.init.BaaBaaYaabeh-ar.init.BaaBaaYaatteheh-ar.init.BaaBaaYaa%behThreedotsupabove-ar.init.BaaBaaYaanoon-ar.init.BaaBaaYaa%tehThreedotsupbelow-ar.init.BaaBaaYaa%behThreedotsupbelow-ar.init.BaaBaaYaateh-ar.init.BaaBaaYaahighhamzaYeh-ar.init.BaaBaaYaa#yehFarsiVinverted-ar.init.BaaBaaYaatheh-ar.init.BaaBaaYaatteh-ar.init.BaaBaaYaanoonDotbelow-ar.init.BaaBaaYaanoonVabove-ar.init.BaaBaaYaaalefMaksura-ar.init.BaaBaaYaatehRing-ar.init.BaaBaaYaa)behTwodotsbelowDotabove-ar.init.BaaBaaYaa#yehThreedotsbelow-ar.init.BaaBaaYaae-ar.init.BaaBaaYaanoonghunna-ar.init.BaaBaaYaayehFarsi-ar.init.BaaBaaYaa"noonTwodotsbelow-ar.init.BaaBaaYaa#yehFarsiFourbelow-ar.medi.BaaBaaYaabeheh-ar.medi.BaaBaaYaa$yehFarsiThreeabove-ar.medi.BaaBaaYaanoonRing-ar.medi.BaaBaaYaa-behThreedotshorizontalbelow-ar.medi.BaaBaaYaabehVabove-ar.medi.BaaBaaYaanoonTahabove-ar.medi.BaaBaaYaayehVabove-ar.medi.BaaBaaYaa"yehFarsiTwoabove-ar.medi.BaaBaaYaa$noonThreedotsabove-ar.medi.BaaBaaYaayehHamzaabove-ar.medi.BaaBaaYaabehDotless-ar.medi.BaaBaaYaayehKashmiri-ar.medi.BaaBaaYaayeh-ar.medi.BaaBaaYaarnoon-ar.medi.BaaBaaYaateheh-ar.medi.BaaBaaYaa#behVinvertedbelow-ar.medi.BaaBaaYaa"tehThreedotsdown-ar.medi.BaaBaaYaapeh-ar.medi.BaaBaaYaabeeh-ar.medi.BaaBaaYaabeh-ar.medi.BaaBaaYaatteheh-ar.medi.BaaBaaYaa%behThreedotsupabove-ar.medi.BaaBaaYaanoon-ar.medi.BaaBaaYaa%tehThreedotsupbelow-ar.medi.BaaBaaYaa%behThreedotsupbelow-ar.medi.BaaBaaYaateh-ar.medi.BaaBaaYaa#yehFarsiVinverted-ar.medi.BaaBaaYaatheh-ar.medi.BaaBaaYaatteh-ar.medi.BaaBaaYaanoonDotbelow-ar.medi.BaaBaaYaanoonVabove-ar.medi.BaaBaaYaaalefMaksura-ar.medi.BaaBaaYaatehRing-ar.medi.BaaBaaYaa)behTwodotsbelowDotabove-ar.medi.BaaBaaYaa#yehThreedotsbelow-ar.medi.BaaBaaYaae-ar.medi.BaaBaaYaanoonghunna-ar.medi.BaaBaaYaayehFarsi-ar.medi.BaaBaaYaa"noonTwodotsbelow-ar.medi.BaaBaaYaa#yehFarsiFourbelow-ar.fina.BaaBaaYaa#yehThreedotsbelow-ar.fina.BaaBaaYaa"yehFarsiTwoabove-ar.fina.BaaBaaYaa(yehFarsiThreedotsabove-ar.fina.BaaBaaYaa#yehFarsiVinverted-ar.fina.BaaBaaYaa&yehFarsiTwodotsabove-ar.fina.BaaBaaYaae-ar.fina.BaaBaaYaaalefMaksura-ar.fina.BaaBaaYaa$yehFarsiThreeabove-ar.fina.BaaBaaYaayehTail-ar.fina.BaaBaaYaayehFarsi-ar.fina.BaaBaaYaayehHamzaabove-ar.fina.BaaBaaYaayehKashmiri-ar.fina.BaaBaaYaayeh-ar.fina.BaaBaaYaayehVabove-ar.fina.BaaBaaYaalamVabove-ar.medi.LamYaaFina$lamThreedotsabove-ar.medi.LamYaaFinalam-ar.medi.LamYaaFina$lamThreedotsbelow-ar.medi.LamYaaFinalamDotabove-ar.medi.LamYaaFinalamBar-ar.medi.LamYaaFina$yehFarsiFourbelow-ar.fina.LamYaaFina$yehThreedotsbelow-ar.fina.LamYaaFina#yehFarsiTwoabove-ar.fina.LamYaaFina)yehFarsiThreedotsabove-ar.fina.LamYaaFina$yehFarsiVinverted-ar.fina.LamYaaFina'yehFarsiTwodotsabove-ar.fina.LamYaaFinae-ar.fina.LamYaaFinaalefMaksura-ar.fina.LamYaaFina%yehFarsiThreeabove-ar.fina.LamYaaFinayehTail-ar.fina.LamYaaFinayehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFinayehKashmiri-ar.fina.LamYaaFinayeh-ar.fina.LamYaaFinayehVabove-ar.fina.LamYaaFina.kehehTwodotshorizontalabove-ar.init.KafBaaInit&kehehThreedotsbelow-ar.init.KafBaaInit,kafTwodotshorizontalabove-ar.init.KafBaaInit(kehehThreedotsupbelow-ar.init.KafBaaInitkaf-ar.init.KafBaaInitgafRing-ar.init.KafBaaInitgueh-ar.init.KafBaaInit"gafTwodotsbelow-ar.init.KafBaaInitkafRing-ar.init.KafBaaInitkafDotabove-ar.init.KafBaaInitng-ar.init.KafBaaInit$kafThreedotsbelow-ar.init.KafBaaInitgaf-ar.init.KafBaaInitkeheh-ar.init.KafBaaInitgafThreedots-ar.init.KafBaaInit&kehehThreedotsabove-ar.init.KafBaaInit kehehDotabove-ar.init.KafBaaInitngoeh-ar.init.KafBaaInit$yehFarsiFourbelow-ar.medi.KafBaaInitbeheh-ar.medi.KafBaaInit%yehFarsiThreeabove-ar.medi.KafBaaInitnoonRing-ar.medi.KafBaaInit.behThreedotshorizontalbelow-ar.medi.KafBaaInitbehVabove-ar.medi.KafBaaInitnoonTahabove-ar.medi.KafBaaInityehVabove-ar.medi.KafBaaInit#yehFarsiTwoabove-ar.medi.KafBaaInit%noonThreedotsabove-ar.medi.KafBaaInit yehHamzaabove-ar.medi.KafBaaInitbehDotless-ar.medi.KafBaaInityehKashmiri-ar.medi.KafBaaInityeh-ar.medi.KafBaaInitrnoon-ar.medi.KafBaaInitteheh-ar.medi.KafBaaInit$behVinvertedbelow-ar.medi.KafBaaInit#tehThreedotsdown-ar.medi.KafBaaInitpeh-ar.medi.KafBaaInitbeeh-ar.medi.KafBaaInitbeh-ar.medi.KafBaaInittteheh-ar.medi.KafBaaInit&behThreedotsupabove-ar.medi.KafBaaInitnoon-ar.medi.KafBaaInit&tehThreedotsupbelow-ar.medi.KafBaaInit&behThreedotsupbelow-ar.medi.KafBaaInitteh-ar.medi.KafBaaInit$yehFarsiVinverted-ar.medi.KafBaaInittheh-ar.medi.KafBaaInittteh-ar.medi.KafBaaInitnoonDotbelow-ar.medi.KafBaaInitnoonVabove-ar.medi.KafBaaInitalefMaksura-ar.medi.KafBaaInittehRing-ar.medi.KafBaaInit*behTwodotsbelowDotabove-ar.medi.KafBaaInit$yehThreedotsbelow-ar.medi.KafBaaInite-ar.medi.KafBaaInitnoonghunna-ar.medi.KafBaaInityehFarsi-ar.medi.KafBaaInit#noonTwodotsbelow-ar.medi.KafBaaInitlamVabove-ar.init.LamMemInit$lamThreedotsabove-ar.init.LamMemInitlam-ar.init.LamMemInit$lamThreedotsbelow-ar.init.LamMemInitlamDotabove-ar.init.LamMemInitlamBar-ar.init.LamMemInitmeem-ar.medi.LamMemInitlamVabove-ar.init.LamAlfIsol$lamThreedotsabove-ar.init.LamAlfIsollam-ar.init.LamAlfIsol$lamThreedotsbelow-ar.init.LamAlfIsollamDotabove-ar.init.LamAlfIsollamBar-ar.init.LamAlfIsol!alefHamzabelow-ar.fina.LamAlfIsolalef-ar.fina.LamAlfIsol!alefThreeabove-ar.fina.LamAlfIsolalefTwoabove-ar.fina.LamAlfIsol!alefHamzaabove-ar.fina.LamAlfIsolalefMadda-ar.fina.LamAlfIsol%alefWavyhamzaabove-ar.fina.LamAlfIsol%alefWavyhamzabelow-ar.fina.LamAlfIsolalefWasla-ar.fina.LamAlfIsollamVabove-ar.init.LamHaaMemInit'lamThreedotsabove-ar.init.LamHaaMemInitlam-ar.init.LamHaaMemInit'lamThreedotsbelow-ar.init.LamHaaMemInit!lamDotabove-ar.init.LamHaaMemInitlamBar-ar.init.LamHaaMemInitkhah-ar.medi.LamHaaMemInithah-ar.medi.LamHaaMemInit#hahHamzaabove-ar.medi.LamHaaMemInittcheheh-ar.medi.LamHaaMemInit'hahThreedotsabove-ar.medi.LamHaaMemInitjeem-ar.medi.LamHaaMemInit-hahTwodotsverticalabove-ar.medi.LamHaaMemInit/hahTwodotshorizontalabove-ar.medi.LamHaaMemInitdyeh-ar.medi.LamHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit!hahTahbelow-ar.medi.LamHaaMemInitnyeh-ar.medi.LamHaaMemInit#tchehDotabove-ar.medi.LamHaaMemInit"hahFourbelow-ar.medi.LamHaaMemInit)hahThreedotsupbelow-ar.medi.LamHaaMemInit!hahTahabove-ar.medi.LamHaaMemInittcheh-ar.medi.LamHaaMemInitmeem-ar.medi.LamHaaMemInit$yehFarsiFourbelow-ar.medi.BaaBaaInitbeheh-ar.medi.BaaBaaInit%yehFarsiThreeabove-ar.medi.BaaBaaInitnoonRing-ar.medi.BaaBaaInit.behThreedotshorizontalbelow-ar.medi.BaaBaaInitbehVabove-ar.medi.BaaBaaInitnoonTahabove-ar.medi.BaaBaaInityehVabove-ar.medi.BaaBaaInit#yehFarsiTwoabove-ar.medi.BaaBaaInit%noonThreedotsabove-ar.medi.BaaBaaInit yehHamzaabove-ar.medi.BaaBaaInitbehDotless-ar.medi.BaaBaaInityehKashmiri-ar.medi.BaaBaaInityeh-ar.medi.BaaBaaInitrnoon-ar.medi.BaaBaaInitteheh-ar.medi.BaaBaaInit$behVinvertedbelow-ar.medi.BaaBaaInit#tehThreedotsdown-ar.medi.BaaBaaInitpeh-ar.medi.BaaBaaInitbeeh-ar.medi.BaaBaaInitbeh-ar.medi.BaaBaaInittteheh-ar.medi.BaaBaaInit&behThreedotsupabove-ar.medi.BaaBaaInitnoon-ar.medi.BaaBaaInit&tehThreedotsupbelow-ar.medi.BaaBaaInit&behThreedotsupbelow-ar.medi.BaaBaaInitteh-ar.medi.BaaBaaInit$yehFarsiVinverted-ar.medi.BaaBaaInittheh-ar.medi.BaaBaaInittteh-ar.medi.BaaBaaInitnoonDotbelow-ar.medi.BaaBaaInitnoonVabove-ar.medi.BaaBaaInitalefMaksura-ar.medi.BaaBaaInittehRing-ar.medi.BaaBaaInit*behTwodotsbelowDotabove-ar.medi.BaaBaaInit$yehThreedotsbelow-ar.medi.BaaBaaInite-ar.medi.BaaBaaInitnoonghunna-ar.medi.BaaBaaInityehFarsi-ar.medi.BaaBaaInit#noonTwodotsbelow-ar.medi.BaaBaaInit ghainDotbelow-ar.medi.AynYaaFinaghain-ar.medi.AynYaaFina(ainThreedotsdownabove-ar.medi.AynYaaFina,ainTwodotshorizontalabove-ar.medi.AynYaaFina*ainTwodotsverticalabove-ar.medi.AynYaaFinaainThreedots-ar.medi.AynYaaFinaain-ar.medi.AynYaaFinameemDotabove-ar.init.MemRaaIsolmeem-ar.init.MemRaaIsolmeemDotbelow-ar.init.MemRaaIsolrreh-ar.fina.MemRaaIsolrehv-ar.fina.MemRaaIsolrehRing-ar.fina.MemRaaIsolrehDotbelow-ar.fina.MemRaaIsolrehVbelow-ar.fina.MemRaaIsol&rehDotbelowdotabove-ar.fina.MemRaaIsolrehTwodots-ar.fina.MemRaaIsoljeh-ar.fina.MemRaaIsolrehFourdots-ar.fina.MemRaaIsolrehStroke-ar.fina.MemRaaIsol$rehVinvertedabove-ar.fina.MemRaaIsolzain-ar.fina.MemRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsolreh-ar.fina.MemRaaIsol*rehTwodotsverticalabove-ar.fina.MemRaaIsol rehHamzaabove-ar.fina.MemRaaIsolqafDotless-ar.init.FaaHaaInit&fehThreedotsupbelow-ar.init.FaaHaaInit"fehTwodotsbelow-ar.init.FaaHaaInitqaf-ar.init.FaaHaaInitfeh-ar.init.FaaHaaInit$qafThreedotsabove-ar.init.FaaHaaInitfehDotless-ar.init.FaaHaaInit#fehDotmovedbelow-ar.init.FaaHaaInitfehDotbelow-ar.init.FaaHaaInitveh-ar.init.FaaHaaInit$fehThreedotsbelow-ar.init.FaaHaaInitpeheh-ar.init.FaaHaaInitqafDotabove-ar.init.FaaHaaInitkhah-ar.medi.FaaHaaInithah-ar.medi.FaaHaaInit hahHamzaabove-ar.medi.FaaHaaInittcheheh-ar.medi.FaaHaaInit$hahThreedotsabove-ar.medi.FaaHaaInitjeem-ar.medi.FaaHaaInit*hahTwodotsverticalabove-ar.medi.FaaHaaInit,hahTwodotshorizontalabove-ar.medi.FaaHaaInitdyeh-ar.medi.FaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.FaaHaaInithahTahbelow-ar.medi.FaaHaaInitnyeh-ar.medi.FaaHaaInit tchehDotabove-ar.medi.FaaHaaInithahFourbelow-ar.medi.FaaHaaInit&hahThreedotsupbelow-ar.medi.FaaHaaInithahTahabove-ar.medi.FaaHaaInittcheh-ar.medi.FaaHaaInitkhah-ar.init.HaaHaaInithah-ar.init.HaaHaaInit hahHamzaabove-ar.init.HaaHaaInittcheheh-ar.init.HaaHaaInit$hahThreedotsabove-ar.init.HaaHaaInitjeem-ar.init.HaaHaaInit*hahTwodotsverticalabove-ar.init.HaaHaaInit,hahTwodotshorizontalabove-ar.init.HaaHaaInitdyeh-ar.init.HaaHaaInit/hahTahTwodotshorizontalabove-ar.init.HaaHaaInithahTahbelow-ar.init.HaaHaaInitnyeh-ar.init.HaaHaaInit tchehDotabove-ar.init.HaaHaaInithahFourbelow-ar.init.HaaHaaInit&hahThreedotsupbelow-ar.init.HaaHaaInithahTahabove-ar.init.HaaHaaInittcheh-ar.init.HaaHaaInitlamVabove-ar.medi.LamQafFina$lamThreedotsabove-ar.medi.LamQafFinalam-ar.medi.LamQafFina$lamThreedotsbelow-ar.medi.LamQafFinalamDotabove-ar.medi.LamQafFinalamBar-ar.medi.LamQafFina$qafThreedotsabove-ar.fina.LamQafFinaqafDotabove-ar.fina.LamQafFinaqaf-ar.fina.LamQafFinaqafDotless-ar.fina.LamQafFinasheenDotbelow-ar.init.AboveHaa)seenTwodotsverticalabove-ar.init.AboveHaaseen-ar.init.AboveHaa#seenVinvertedabove-ar.init.AboveHaaseenFourabove-ar.init.AboveHaasheen-ar.init.AboveHaa.seenTahTwodotshorizontalabove-ar.init.AboveHaa"seenFourdotsabove-ar.init.AboveHaa%seenDotbelowDotabove-ar.init.AboveHaa#seenThreedotsbelow-ar.init.AboveHaa$sheenThreedotsbelow-ar.init.AboveHaameem-ar.init.MemHaaInit$yehFarsiFourbelow-ar.init.BaaNonIsolbeheh-ar.init.BaaNonIsol%yehFarsiThreeabove-ar.init.BaaNonIsolnoonRing-ar.init.BaaNonIsol.behThreedotshorizontalbelow-ar.init.BaaNonIsolbehVabove-ar.init.BaaNonIsolnoonTahabove-ar.init.BaaNonIsolyehVabove-ar.init.BaaNonIsol#yehFarsiTwoabove-ar.init.BaaNonIsol%noonThreedotsabove-ar.init.BaaNonIsol yehHamzaabove-ar.init.BaaNonIsolbehDotless-ar.init.BaaNonIsolyehKashmiri-ar.init.BaaNonIsolyeh-ar.init.BaaNonIsolrnoon-ar.init.BaaNonIsolteheh-ar.init.BaaNonIsol$behVinvertedbelow-ar.init.BaaNonIsol#tehThreedotsdown-ar.init.BaaNonIsolpeh-ar.init.BaaNonIsolbeeh-ar.init.BaaNonIsolbeh-ar.init.BaaNonIsoltteheh-ar.init.BaaNonIsol&behThreedotsupabove-ar.init.BaaNonIsolnoon-ar.init.BaaNonIsol&tehThreedotsupbelow-ar.init.BaaNonIsol&behThreedotsupbelow-ar.init.BaaNonIsolteh-ar.init.BaaNonIsolhighhamzaYeh-ar.init.BaaNonIsol$yehFarsiVinverted-ar.init.BaaNonIsoltheh-ar.init.BaaNonIsoltteh-ar.init.BaaNonIsolnoonDotbelow-ar.init.BaaNonIsolnoonVabove-ar.init.BaaNonIsolalefMaksura-ar.init.BaaNonIsoltehRing-ar.init.BaaNonIsol*behTwodotsbelowDotabove-ar.init.BaaNonIsol$yehThreedotsbelow-ar.init.BaaNonIsole-ar.init.BaaNonIsolnoonghunna-ar.init.BaaNonIsolyehFarsi-ar.init.BaaNonIsol#noonTwodotsbelow-ar.init.BaaNonIsolnoon-ar.fina.BaaNonIsol#noonTwodotsbelow-ar.fina.BaaNonIsolnoonghunna-ar.fina.BaaNonIsolnoonRing-ar.fina.BaaNonIsolrnoon-ar.fina.BaaNonIsolnoonTahabove-ar.fina.BaaNonIsolnoonDotbelow-ar.fina.BaaNonIsolnoonVabove-ar.fina.BaaNonIsol%noonThreedotsabove-ar.fina.BaaNonIsol.kehehTwodotshorizontalabove-ar.medi.KafMemFina&kehehThreedotsbelow-ar.medi.KafMemFina,kafTwodotshorizontalabove-ar.medi.KafMemFina(kehehThreedotsupbelow-ar.medi.KafMemFinakaf-ar.medi.KafMemFinagafRing-ar.medi.KafMemFinagueh-ar.medi.KafMemFina"gafTwodotsbelow-ar.medi.KafMemFinakafRing-ar.medi.KafMemFinakafDotabove-ar.medi.KafMemFinang-ar.medi.KafMemFina$kafThreedotsbelow-ar.medi.KafMemFinagaf-ar.medi.KafMemFinakeheh-ar.medi.KafMemFinagafThreedots-ar.medi.KafMemFina&kehehThreedotsabove-ar.medi.KafMemFina kehehDotabove-ar.medi.KafMemFinangoeh-ar.medi.KafMemFinameem-ar.fina.KafMemFina$yehFarsiFourbelow-ar.init.BaaSenInitbeheh-ar.init.BaaSenInit%yehFarsiThreeabove-ar.init.BaaSenInitnoonRing-ar.init.BaaSenInit.behThreedotshorizontalbelow-ar.init.BaaSenInitbehVabove-ar.init.BaaSenInitnoonTahabove-ar.init.BaaSenInityehVabove-ar.init.BaaSenInit#yehFarsiTwoabove-ar.init.BaaSenInit%noonThreedotsabove-ar.init.BaaSenInit yehHamzaabove-ar.init.BaaSenInitbehDotless-ar.init.BaaSenInityehKashmiri-ar.init.BaaSenInityeh-ar.init.BaaSenInitrnoon-ar.init.BaaSenInitteheh-ar.init.BaaSenInit$behVinvertedbelow-ar.init.BaaSenInit#tehThreedotsdown-ar.init.BaaSenInitpeh-ar.init.BaaSenInitbeeh-ar.init.BaaSenInitbeh-ar.init.BaaSenInittteheh-ar.init.BaaSenInit&behThreedotsupabove-ar.init.BaaSenInitnoon-ar.init.BaaSenInit&tehThreedotsupbelow-ar.init.BaaSenInit&behThreedotsupbelow-ar.init.BaaSenInitteh-ar.init.BaaSenInithighhamzaYeh-ar.init.BaaSenInit$yehFarsiVinverted-ar.init.BaaSenInittheh-ar.init.BaaSenInittteh-ar.init.BaaSenInitnoonDotbelow-ar.init.BaaSenInitnoonVabove-ar.init.BaaSenInitalefMaksura-ar.init.BaaSenInittehRing-ar.init.BaaSenInit*behTwodotsbelowDotabove-ar.init.BaaSenInit$yehThreedotsbelow-ar.init.BaaSenInite-ar.init.BaaSenInitnoonghunna-ar.init.BaaSenInityehFarsi-ar.init.BaaSenInit#noonTwodotsbelow-ar.init.BaaSenInit sheenDotbelow-ar.medi.BaaSenInit+seenTwodotsverticalabove-ar.medi.BaaSenInitseen-ar.medi.BaaSenInit%seenVinvertedabove-ar.medi.BaaSenInit seenFourabove-ar.medi.BaaSenInitsheen-ar.medi.BaaSenInit0seenTahTwodotshorizontalabove-ar.medi.BaaSenInit$seenFourdotsabove-ar.medi.BaaSenInit'seenDotbelowDotabove-ar.medi.BaaSenInit%seenThreedotsbelow-ar.medi.BaaSenInit&sheenThreedotsbelow-ar.medi.BaaSenInit$yehFarsiFourbelow-ar.medi.BaaRaaFinabeheh-ar.medi.BaaRaaFina%yehFarsiThreeabove-ar.medi.BaaRaaFinanoonRing-ar.medi.BaaRaaFina.behThreedotshorizontalbelow-ar.medi.BaaRaaFinabehVabove-ar.medi.BaaRaaFinanoonTahabove-ar.medi.BaaRaaFinayehVabove-ar.medi.BaaRaaFina#yehFarsiTwoabove-ar.medi.BaaRaaFina%noonThreedotsabove-ar.medi.BaaRaaFina yehHamzaabove-ar.medi.BaaRaaFinabehDotless-ar.medi.BaaRaaFinayehKashmiri-ar.medi.BaaRaaFinayeh-ar.medi.BaaRaaFinarnoon-ar.medi.BaaRaaFinateheh-ar.medi.BaaRaaFina$behVinvertedbelow-ar.medi.BaaRaaFina#tehThreedotsdown-ar.medi.BaaRaaFinapeh-ar.medi.BaaRaaFinabeeh-ar.medi.BaaRaaFinabeh-ar.medi.BaaRaaFinatteheh-ar.medi.BaaRaaFina&behThreedotsupabove-ar.medi.BaaRaaFinanoon-ar.medi.BaaRaaFina&tehThreedotsupbelow-ar.medi.BaaRaaFina&behThreedotsupbelow-ar.medi.BaaRaaFinateh-ar.medi.BaaRaaFina$yehFarsiVinverted-ar.medi.BaaRaaFinatheh-ar.medi.BaaRaaFinatteh-ar.medi.BaaRaaFinanoonDotbelow-ar.medi.BaaRaaFinanoonVabove-ar.medi.BaaRaaFinaalefMaksura-ar.medi.BaaRaaFinatehRing-ar.medi.BaaRaaFina*behTwodotsbelowDotabove-ar.medi.BaaRaaFina$yehThreedotsbelow-ar.medi.BaaRaaFinae-ar.medi.BaaRaaFinanoonghunna-ar.medi.BaaRaaFinayehFarsi-ar.medi.BaaRaaFina#noonTwodotsbelow-ar.medi.BaaRaaFinarreh-ar.fina.BaaRaaFinarehv-ar.fina.BaaRaaFinarehRing-ar.fina.BaaRaaFinarehDotbelow-ar.fina.BaaRaaFinarehVbelow-ar.fina.BaaRaaFina&rehDotbelowdotabove-ar.fina.BaaRaaFinarehTwodots-ar.fina.BaaRaaFinajeh-ar.fina.BaaRaaFinarehFourdots-ar.fina.BaaRaaFinarehStroke-ar.fina.BaaRaaFina$rehVinvertedabove-ar.fina.BaaRaaFinazain-ar.fina.BaaRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFinareh-ar.fina.BaaRaaFina*rehTwodotsverticalabove-ar.fina.BaaRaaFina rehHamzaabove-ar.fina.BaaRaaFina.kehehTwodotshorizontalabove-ar.medi.KafRaaFina&kehehThreedotsbelow-ar.medi.KafRaaFina,kafTwodotshorizontalabove-ar.medi.KafRaaFina(kehehThreedotsupbelow-ar.medi.KafRaaFinakaf-ar.medi.KafRaaFinagafRing-ar.medi.KafRaaFinagueh-ar.medi.KafRaaFina"gafTwodotsbelow-ar.medi.KafRaaFinakafRing-ar.medi.KafRaaFinakafDotabove-ar.medi.KafRaaFinang-ar.medi.KafRaaFina$kafThreedotsbelow-ar.medi.KafRaaFinagaf-ar.medi.KafRaaFinakeheh-ar.medi.KafRaaFinagafThreedots-ar.medi.KafRaaFina&kehehThreedotsabove-ar.medi.KafRaaFina kehehDotabove-ar.medi.KafRaaFinangoeh-ar.medi.KafRaaFinarreh-ar.fina.KafRaaFinarehv-ar.fina.KafRaaFinarehRing-ar.fina.KafRaaFinarehDotbelow-ar.fina.KafRaaFinarehVbelow-ar.fina.KafRaaFina&rehDotbelowdotabove-ar.fina.KafRaaFinarehTwodots-ar.fina.KafRaaFinajeh-ar.fina.KafRaaFinarehFourdots-ar.fina.KafRaaFinarehStroke-ar.fina.KafRaaFina$rehVinvertedabove-ar.fina.KafRaaFinazain-ar.fina.KafRaaFina4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFinareh-ar.fina.KafRaaFina*rehTwodotsverticalabove-ar.fina.KafRaaFina rehHamzaabove-ar.fina.KafRaaFinalamVabove-ar.init.LamHehInit$lamThreedotsabove-ar.init.LamHehInitlam-ar.init.LamHehInit$lamThreedotsbelow-ar.init.LamHehInitlamDotabove-ar.init.LamHehInitlamBar-ar.init.LamHehInitheh-ar.medi.LamHehInithehgoal-ar.medi.LamHehInitmeem-ar.init.MemHaaMemInitkhah-ar.medi.MemHaaMemInithah-ar.medi.MemHaaMemInit#hahHamzaabove-ar.medi.MemHaaMemInittcheheh-ar.medi.MemHaaMemInit'hahThreedotsabove-ar.medi.MemHaaMemInitjeem-ar.medi.MemHaaMemInit-hahTwodotsverticalabove-ar.medi.MemHaaMemInit/hahTwodotshorizontalabove-ar.medi.MemHaaMemInitdyeh-ar.medi.MemHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit!hahTahbelow-ar.medi.MemHaaMemInitnyeh-ar.medi.MemHaaMemInit#tchehDotabove-ar.medi.MemHaaMemInit"hahFourbelow-ar.medi.MemHaaMemInit)hahThreedotsupbelow-ar.medi.MemHaaMemInit!hahTahabove-ar.medi.MemHaaMemInittcheh-ar.medi.MemHaaMemInit$yehFarsiFourbelow-ar.init.BaaMemInitbeheh-ar.init.BaaMemInit%yehFarsiThreeabove-ar.init.BaaMemInitnoonRing-ar.init.BaaMemInit.behThreedotshorizontalbelow-ar.init.BaaMemInitbehVabove-ar.init.BaaMemInitnoonTahabove-ar.init.BaaMemInityehVabove-ar.init.BaaMemInit#yehFarsiTwoabove-ar.init.BaaMemInit%noonThreedotsabove-ar.init.BaaMemInit yehHamzaabove-ar.init.BaaMemInitbehDotless-ar.init.BaaMemInityehKashmiri-ar.init.BaaMemInityeh-ar.init.BaaMemInitrnoon-ar.init.BaaMemInitteheh-ar.init.BaaMemInit$behVinvertedbelow-ar.init.BaaMemInit#tehThreedotsdown-ar.init.BaaMemInitpeh-ar.init.BaaMemInitbeeh-ar.init.BaaMemInitbeh-ar.init.BaaMemInittteheh-ar.init.BaaMemInit&behThreedotsupabove-ar.init.BaaMemInitnoon-ar.init.BaaMemInit&tehThreedotsupbelow-ar.init.BaaMemInit&behThreedotsupbelow-ar.init.BaaMemInitteh-ar.init.BaaMemInithighhamzaYeh-ar.init.BaaMemInit$yehFarsiVinverted-ar.init.BaaMemInittheh-ar.init.BaaMemInittteh-ar.init.BaaMemInitnoonDotbelow-ar.init.BaaMemInitnoonVabove-ar.init.BaaMemInitalefMaksura-ar.init.BaaMemInittehRing-ar.init.BaaMemInit*behTwodotsbelowDotabove-ar.init.BaaMemInit$yehThreedotsbelow-ar.init.BaaMemInite-ar.init.BaaMemInitnoonghunna-ar.init.BaaMemInityehFarsi-ar.init.BaaMemInit#noonTwodotsbelow-ar.init.BaaMemInitmeem-ar.medi.BaaMemInit sheenDotbelow-ar.init.SenHaaInit+seenTwodotsverticalabove-ar.init.SenHaaInitseen-ar.init.SenHaaInit%seenVinvertedabove-ar.init.SenHaaInit seenFourabove-ar.init.SenHaaInitsheen-ar.init.SenHaaInit0seenTahTwodotshorizontalabove-ar.init.SenHaaInit$seenFourdotsabove-ar.init.SenHaaInit'seenDotbelowDotabove-ar.init.SenHaaInit%seenThreedotsbelow-ar.init.SenHaaInit&sheenThreedotsbelow-ar.init.SenHaaInit.kehehTwodotshorizontalabove-ar.init.KafRaaIsol&kehehThreedotsbelow-ar.init.KafRaaIsol,kafTwodotshorizontalabove-ar.init.KafRaaIsol(kehehThreedotsupbelow-ar.init.KafRaaIsolkaf-ar.init.KafRaaIsolgafRing-ar.init.KafRaaIsolgueh-ar.init.KafRaaIsol"gafTwodotsbelow-ar.init.KafRaaIsolkafRing-ar.init.KafRaaIsolkafDotabove-ar.init.KafRaaIsolng-ar.init.KafRaaIsol$kafThreedotsbelow-ar.init.KafRaaIsolgaf-ar.init.KafRaaIsolkeheh-ar.init.KafRaaIsolgafThreedots-ar.init.KafRaaIsol&kehehThreedotsabove-ar.init.KafRaaIsol kehehDotabove-ar.init.KafRaaIsolngoeh-ar.init.KafRaaIsolrreh-ar.fina.KafRaaIsolrehv-ar.fina.KafRaaIsolrehRing-ar.fina.KafRaaIsolrehDotbelow-ar.fina.KafRaaIsolrehVbelow-ar.fina.KafRaaIsol&rehDotbelowdotabove-ar.fina.KafRaaIsolrehTwodots-ar.fina.KafRaaIsoljeh-ar.fina.KafRaaIsolrehFourdots-ar.fina.KafRaaIsolrehStroke-ar.fina.KafRaaIsol$rehVinvertedabove-ar.fina.KafRaaIsolzain-ar.fina.KafRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsolreh-ar.fina.KafRaaIsol*rehTwodotsverticalabove-ar.fina.KafRaaIsol rehHamzaabove-ar.fina.KafRaaIsol ghainDotbelow-ar.init.AynHaaInitghain-ar.init.AynHaaInit(ainThreedotsdownabove-ar.init.AynHaaInit,ainTwodotshorizontalabove-ar.init.AynHaaInit*ainTwodotsverticalabove-ar.init.AynHaaInitainThreedots-ar.init.AynHaaInitain-ar.init.AynHaaInit.kehehTwodotshorizontalabove-ar.medi.KafYaaFina&kehehThreedotsbelow-ar.medi.KafYaaFina,kafTwodotshorizontalabove-ar.medi.KafYaaFina(kehehThreedotsupbelow-ar.medi.KafYaaFinakaf-ar.medi.KafYaaFinagafRing-ar.medi.KafYaaFinagueh-ar.medi.KafYaaFina"gafTwodotsbelow-ar.medi.KafYaaFinakafRing-ar.medi.KafYaaFinakafDotabove-ar.medi.KafYaaFinang-ar.medi.KafYaaFina$kafThreedotsbelow-ar.medi.KafYaaFinagaf-ar.medi.KafYaaFinakeheh-ar.medi.KafYaaFinagafThreedots-ar.medi.KafYaaFina&kehehThreedotsabove-ar.medi.KafYaaFina kehehDotabove-ar.medi.KafYaaFinangoeh-ar.medi.KafYaaFina$yehFarsiFourbelow-ar.fina.KafYaaFina$yehThreedotsbelow-ar.fina.KafYaaFina#yehFarsiTwoabove-ar.fina.KafYaaFina)yehFarsiThreedotsabove-ar.fina.KafYaaFina$yehFarsiVinverted-ar.fina.KafYaaFina'yehFarsiTwodotsabove-ar.fina.KafYaaFinae-ar.fina.KafYaaFinaalefMaksura-ar.fina.KafYaaFina%yehFarsiThreeabove-ar.fina.KafYaaFinayehTail-ar.fina.KafYaaFinayehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFinayehKashmiri-ar.fina.KafYaaFinayeh-ar.fina.KafYaaFinayehVabove-ar.fina.KafYaaFinalamVabove-ar.init.LamMemHaaInit'lamThreedotsabove-ar.init.LamMemHaaInitlam-ar.init.LamMemHaaInit'lamThreedotsbelow-ar.init.LamMemHaaInit!lamDotabove-ar.init.LamMemHaaInitlamBar-ar.init.LamMemHaaInitmeem-ar.medi.LamMemHaaInitkhah-ar.medi.LamMemHaaInithah-ar.medi.LamMemHaaInit#hahHamzaabove-ar.medi.LamMemHaaInittcheheh-ar.medi.LamMemHaaInit'hahThreedotsabove-ar.medi.LamMemHaaInitjeem-ar.medi.LamMemHaaInit-hahTwodotsverticalabove-ar.medi.LamMemHaaInit/hahTwodotshorizontalabove-ar.medi.LamMemHaaInitdyeh-ar.medi.LamMemHaaInit2hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit!hahTahbelow-ar.medi.LamMemHaaInitnyeh-ar.medi.LamMemHaaInit#tchehDotabove-ar.medi.LamMemHaaInit"hahFourbelow-ar.medi.LamMemHaaInit)hahThreedotsupbelow-ar.medi.LamMemHaaInit!hahTahabove-ar.medi.LamMemHaaInittcheh-ar.medi.LamMemHaaInitlamVabove-ar.medi.LamAlfFina$lamThreedotsabove-ar.medi.LamAlfFinalam-ar.medi.LamAlfFina$lamThreedotsbelow-ar.medi.LamAlfFinalamDotabove-ar.medi.LamAlfFinalamBar-ar.medi.LamAlfFina!alefHamzabelow-ar.fina.LamAlfFinaalef-ar.fina.LamAlfFina!alefThreeabove-ar.fina.LamAlfFinaalefTwoabove-ar.fina.LamAlfFina!alefHamzaabove-ar.fina.LamAlfFinaalefMadda-ar.fina.LamAlfFina%alefWavyhamzaabove-ar.fina.LamAlfFina%alefWavyhamzabelow-ar.fina.LamAlfFinaalefWasla-ar.fina.LamAlfFinalamVabove-ar.medi.LamMemMedi$lamThreedotsabove-ar.medi.LamMemMedilam-ar.medi.LamMemMedi$lamThreedotsbelow-ar.medi.LamMemMedilamDotabove-ar.medi.LamMemMedilamBar-ar.medi.LamMemMedimeemDotabove-ar.medi.LamMemMedimeem-ar.medi.LamMemMedimeemDotbelow-ar.medi.LamMemMedi'yehFarsiFourbelow-ar.init.BaaBaaHaaInitbeheh-ar.init.BaaBaaHaaInit(yehFarsiThreeabove-ar.init.BaaBaaHaaInitnoonRing-ar.init.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitbehVabove-ar.init.BaaBaaHaaInit"noonTahabove-ar.init.BaaBaaHaaInityehVabove-ar.init.BaaBaaHaaInit&yehFarsiTwoabove-ar.init.BaaBaaHaaInit(noonThreedotsabove-ar.init.BaaBaaHaaInit#yehHamzaabove-ar.init.BaaBaaHaaInit behDotless-ar.init.BaaBaaHaaInit!yehKashmiri-ar.init.BaaBaaHaaInityeh-ar.init.BaaBaaHaaInitrnoon-ar.init.BaaBaaHaaInitteheh-ar.init.BaaBaaHaaInit'behVinvertedbelow-ar.init.BaaBaaHaaInit&tehThreedotsdown-ar.init.BaaBaaHaaInitpeh-ar.init.BaaBaaHaaInitbeeh-ar.init.BaaBaaHaaInitbeh-ar.init.BaaBaaHaaInittteheh-ar.init.BaaBaaHaaInit)behThreedotsupabove-ar.init.BaaBaaHaaInitnoon-ar.init.BaaBaaHaaInit)tehThreedotsupbelow-ar.init.BaaBaaHaaInit)behThreedotsupbelow-ar.init.BaaBaaHaaInitteh-ar.init.BaaBaaHaaInit"highhamzaYeh-ar.init.BaaBaaHaaInit'yehFarsiVinverted-ar.init.BaaBaaHaaInittheh-ar.init.BaaBaaHaaInittteh-ar.init.BaaBaaHaaInit"noonDotbelow-ar.init.BaaBaaHaaInit noonVabove-ar.init.BaaBaaHaaInit!alefMaksura-ar.init.BaaBaaHaaInittehRing-ar.init.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit'yehThreedotsbelow-ar.init.BaaBaaHaaInite-ar.init.BaaBaaHaaInit noonghunna-ar.init.BaaBaaHaaInityehFarsi-ar.init.BaaBaaHaaInit&noonTwodotsbelow-ar.init.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.BaaBaaHaaInitbeheh-ar.medi.BaaBaaHaaInit(yehFarsiThreeabove-ar.medi.BaaBaaHaaInitnoonRing-ar.medi.BaaBaaHaaInit1behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInitbehVabove-ar.medi.BaaBaaHaaInit"noonTahabove-ar.medi.BaaBaaHaaInityehVabove-ar.medi.BaaBaaHaaInit&yehFarsiTwoabove-ar.medi.BaaBaaHaaInit(noonThreedotsabove-ar.medi.BaaBaaHaaInit#yehHamzaabove-ar.medi.BaaBaaHaaInit behDotless-ar.medi.BaaBaaHaaInit!yehKashmiri-ar.medi.BaaBaaHaaInityeh-ar.medi.BaaBaaHaaInitrnoon-ar.medi.BaaBaaHaaInitteheh-ar.medi.BaaBaaHaaInit'behVinvertedbelow-ar.medi.BaaBaaHaaInit&tehThreedotsdown-ar.medi.BaaBaaHaaInitpeh-ar.medi.BaaBaaHaaInitbeeh-ar.medi.BaaBaaHaaInitbeh-ar.medi.BaaBaaHaaInittteheh-ar.medi.BaaBaaHaaInit)behThreedotsupabove-ar.medi.BaaBaaHaaInitnoon-ar.medi.BaaBaaHaaInit)tehThreedotsupbelow-ar.medi.BaaBaaHaaInit)behThreedotsupbelow-ar.medi.BaaBaaHaaInitteh-ar.medi.BaaBaaHaaInit'yehFarsiVinverted-ar.medi.BaaBaaHaaInittheh-ar.medi.BaaBaaHaaInittteh-ar.medi.BaaBaaHaaInit"noonDotbelow-ar.medi.BaaBaaHaaInit noonVabove-ar.medi.BaaBaaHaaInit!alefMaksura-ar.medi.BaaBaaHaaInittehRing-ar.medi.BaaBaaHaaInit-behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit'yehThreedotsbelow-ar.medi.BaaBaaHaaInite-ar.medi.BaaBaaHaaInit noonghunna-ar.medi.BaaBaaHaaInityehFarsi-ar.medi.BaaBaaHaaInit&noonTwodotsbelow-ar.medi.BaaBaaHaaInitkhah-ar.medi.BaaBaaHaaInithah-ar.medi.BaaBaaHaaInit#hahHamzaabove-ar.medi.BaaBaaHaaInittcheheh-ar.medi.BaaBaaHaaInit'hahThreedotsabove-ar.medi.BaaBaaHaaInitjeem-ar.medi.BaaBaaHaaInit-hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit/hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInitdyeh-ar.medi.BaaBaaHaaInit2hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit!hahTahbelow-ar.medi.BaaBaaHaaInitnyeh-ar.medi.BaaBaaHaaInit#tchehDotabove-ar.medi.BaaBaaHaaInit"hahFourbelow-ar.medi.BaaBaaHaaInit)hahThreedotsupbelow-ar.medi.BaaBaaHaaInit!hahTahabove-ar.medi.BaaBaaHaaInittcheh-ar.medi.BaaBaaHaaInit'yehFarsiFourbelow-ar.medi.SenBaaMemInitbeheh-ar.medi.SenBaaMemInit(yehFarsiThreeabove-ar.medi.SenBaaMemInitnoonRing-ar.medi.SenBaaMemInit1behThreedotshorizontalbelow-ar.medi.SenBaaMemInitbehVabove-ar.medi.SenBaaMemInit"noonTahabove-ar.medi.SenBaaMemInityehVabove-ar.medi.SenBaaMemInit&yehFarsiTwoabove-ar.medi.SenBaaMemInit(noonThreedotsabove-ar.medi.SenBaaMemInit#yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInit!yehKashmiri-ar.medi.SenBaaMemInityeh-ar.medi.SenBaaMemInitrnoon-ar.medi.SenBaaMemInitteheh-ar.medi.SenBaaMemInit'behVinvertedbelow-ar.medi.SenBaaMemInit&tehThreedotsdown-ar.medi.SenBaaMemInitpeh-ar.medi.SenBaaMemInitbeeh-ar.medi.SenBaaMemInitbeh-ar.medi.SenBaaMemInittteheh-ar.medi.SenBaaMemInit)behThreedotsupabove-ar.medi.SenBaaMemInitnoon-ar.medi.SenBaaMemInit)tehThreedotsupbelow-ar.medi.SenBaaMemInit)behThreedotsupbelow-ar.medi.SenBaaMemInitteh-ar.medi.SenBaaMemInit'yehFarsiVinverted-ar.medi.SenBaaMemInittheh-ar.medi.SenBaaMemInittteh-ar.medi.SenBaaMemInit"noonDotbelow-ar.medi.SenBaaMemInit noonVabove-ar.medi.SenBaaMemInit!alefMaksura-ar.medi.SenBaaMemInittehRing-ar.medi.SenBaaMemInit-behTwodotsbelowDotabove-ar.medi.SenBaaMemInit'yehThreedotsbelow-ar.medi.SenBaaMemInite-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInityehFarsi-ar.medi.SenBaaMemInit&noonTwodotsbelow-ar.medi.SenBaaMemInitmeem-ar.medi.SenBaaMemInit$yehFarsiFourbelow-ar.init.BaaBaaIsolbeheh-ar.init.BaaBaaIsol%yehFarsiThreeabove-ar.init.BaaBaaIsolnoonRing-ar.init.BaaBaaIsol.behThreedotshorizontalbelow-ar.init.BaaBaaIsolbehVabove-ar.init.BaaBaaIsolnoonTahabove-ar.init.BaaBaaIsolyehVabove-ar.init.BaaBaaIsol#yehFarsiTwoabove-ar.init.BaaBaaIsol%noonThreedotsabove-ar.init.BaaBaaIsol yehHamzaabove-ar.init.BaaBaaIsolbehDotless-ar.init.BaaBaaIsolyehKashmiri-ar.init.BaaBaaIsolyeh-ar.init.BaaBaaIsolrnoon-ar.init.BaaBaaIsolteheh-ar.init.BaaBaaIsol$behVinvertedbelow-ar.init.BaaBaaIsol#tehThreedotsdown-ar.init.BaaBaaIsolpeh-ar.init.BaaBaaIsolbeeh-ar.init.BaaBaaIsolbeh-ar.init.BaaBaaIsoltteheh-ar.init.BaaBaaIsol&behThreedotsupabove-ar.init.BaaBaaIsolnoon-ar.init.BaaBaaIsol&tehThreedotsupbelow-ar.init.BaaBaaIsol&behThreedotsupbelow-ar.init.BaaBaaIsolteh-ar.init.BaaBaaIsolhighhamzaYeh-ar.init.BaaBaaIsol$yehFarsiVinverted-ar.init.BaaBaaIsoltheh-ar.init.BaaBaaIsoltteh-ar.init.BaaBaaIsolnoonDotbelow-ar.init.BaaBaaIsolnoonVabove-ar.init.BaaBaaIsolalefMaksura-ar.init.BaaBaaIsoltehRing-ar.init.BaaBaaIsol*behTwodotsbelowDotabove-ar.init.BaaBaaIsol$yehThreedotsbelow-ar.init.BaaBaaIsole-ar.init.BaaBaaIsolnoonghunna-ar.init.BaaBaaIsolyehFarsi-ar.init.BaaBaaIsol#noonTwodotsbelow-ar.init.BaaBaaIsol&behThreedotsupabove-ar.fina.BaaBaaIsol.behThreedotshorizontalbelow-ar.fina.BaaBaaIsol&tehThreedotsupbelow-ar.fina.BaaBaaIsolbeheh-ar.fina.BaaBaaIsolteh-ar.fina.BaaBaaIsol*behTwodotsbelowDotabove-ar.fina.BaaBaaIsoltheh-ar.fina.BaaBaaIsoltteh-ar.fina.BaaBaaIsoltehRing-ar.fina.BaaBaaIsolbehVabove-ar.fina.BaaBaaIsol&behThreedotsupbelow-ar.fina.BaaBaaIsolbehDotless-ar.fina.BaaBaaIsolteheh-ar.fina.BaaBaaIsol$behVinvertedbelow-ar.fina.BaaBaaIsol#tehThreedotsdown-ar.fina.BaaBaaIsolpeh-ar.fina.BaaBaaIsolbeeh-ar.fina.BaaBaaIsolbeh-ar.fina.BaaBaaIsoltteheh-ar.fina.BaaBaaIsol'yehFarsiFourbelow-ar.init.BaaBaaMemInitbeheh-ar.init.BaaBaaMemInit(yehFarsiThreeabove-ar.init.BaaBaaMemInitnoonRing-ar.init.BaaBaaMemInit1behThreedotshorizontalbelow-ar.init.BaaBaaMemInitbehVabove-ar.init.BaaBaaMemInit"noonTahabove-ar.init.BaaBaaMemInityehVabove-ar.init.BaaBaaMemInit&yehFarsiTwoabove-ar.init.BaaBaaMemInit(noonThreedotsabove-ar.init.BaaBaaMemInit#yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInit!yehKashmiri-ar.init.BaaBaaMemInityeh-ar.init.BaaBaaMemInitrnoon-ar.init.BaaBaaMemInitteheh-ar.init.BaaBaaMemInit'behVinvertedbelow-ar.init.BaaBaaMemInit&tehThreedotsdown-ar.init.BaaBaaMemInitpeh-ar.init.BaaBaaMemInitbeeh-ar.init.BaaBaaMemInitbeh-ar.init.BaaBaaMemInittteheh-ar.init.BaaBaaMemInit)behThreedotsupabove-ar.init.BaaBaaMemInitnoon-ar.init.BaaBaaMemInit)tehThreedotsupbelow-ar.init.BaaBaaMemInit)behThreedotsupbelow-ar.init.BaaBaaMemInitteh-ar.init.BaaBaaMemInit"highhamzaYeh-ar.init.BaaBaaMemInit'yehFarsiVinverted-ar.init.BaaBaaMemInittheh-ar.init.BaaBaaMemInittteh-ar.init.BaaBaaMemInit"noonDotbelow-ar.init.BaaBaaMemInit noonVabove-ar.init.BaaBaaMemInit!alefMaksura-ar.init.BaaBaaMemInittehRing-ar.init.BaaBaaMemInit-behTwodotsbelowDotabove-ar.init.BaaBaaMemInit'yehThreedotsbelow-ar.init.BaaBaaMemInite-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInityehFarsi-ar.init.BaaBaaMemInit&noonTwodotsbelow-ar.init.BaaBaaMemInit'yehFarsiFourbelow-ar.medi.BaaBaaMemInitbeheh-ar.medi.BaaBaaMemInit(yehFarsiThreeabove-ar.medi.BaaBaaMemInitnoonRing-ar.medi.BaaBaaMemInit1behThreedotshorizontalbelow-ar.medi.BaaBaaMemInitbehVabove-ar.medi.BaaBaaMemInit"noonTahabove-ar.medi.BaaBaaMemInityehVabove-ar.medi.BaaBaaMemInit&yehFarsiTwoabove-ar.medi.BaaBaaMemInit(noonThreedotsabove-ar.medi.BaaBaaMemInit#yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInit!yehKashmiri-ar.medi.BaaBaaMemInityeh-ar.medi.BaaBaaMemInitrnoon-ar.medi.BaaBaaMemInitteheh-ar.medi.BaaBaaMemInit'behVinvertedbelow-ar.medi.BaaBaaMemInit&tehThreedotsdown-ar.medi.BaaBaaMemInitpeh-ar.medi.BaaBaaMemInitbeeh-ar.medi.BaaBaaMemInitbeh-ar.medi.BaaBaaMemInittteheh-ar.medi.BaaBaaMemInit)behThreedotsupabove-ar.medi.BaaBaaMemInitnoon-ar.medi.BaaBaaMemInit)tehThreedotsupbelow-ar.medi.BaaBaaMemInit)behThreedotsupbelow-ar.medi.BaaBaaMemInitteh-ar.medi.BaaBaaMemInit'yehFarsiVinverted-ar.medi.BaaBaaMemInittheh-ar.medi.BaaBaaMemInittteh-ar.medi.BaaBaaMemInit"noonDotbelow-ar.medi.BaaBaaMemInit noonVabove-ar.medi.BaaBaaMemInit!alefMaksura-ar.medi.BaaBaaMemInittehRing-ar.medi.BaaBaaMemInit-behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit'yehThreedotsbelow-ar.medi.BaaBaaMemInite-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInityehFarsi-ar.medi.BaaBaaMemInit&noonTwodotsbelow-ar.medi.BaaBaaMemInitmeem-ar.medi.BaaBaaMemInit.kehehTwodotshorizontalabove-ar.medi.KafBaaMedi&kehehThreedotsbelow-ar.medi.KafBaaMedi,kafTwodotshorizontalabove-ar.medi.KafBaaMedi(kehehThreedotsupbelow-ar.medi.KafBaaMedikaf-ar.medi.KafBaaMedigafRing-ar.medi.KafBaaMedigueh-ar.medi.KafBaaMedi"gafTwodotsbelow-ar.medi.KafBaaMedikafRing-ar.medi.KafBaaMedikafDotabove-ar.medi.KafBaaMeding-ar.medi.KafBaaMedi$kafThreedotsbelow-ar.medi.KafBaaMedigaf-ar.medi.KafBaaMedikeheh-ar.medi.KafBaaMedigafThreedots-ar.medi.KafBaaMedi&kehehThreedotsabove-ar.medi.KafBaaMedi kehehDotabove-ar.medi.KafBaaMedingoeh-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.KafBaaMedibeheh-ar.medi.KafBaaMedi%yehFarsiThreeabove-ar.medi.KafBaaMedinoonRing-ar.medi.KafBaaMedi.behThreedotshorizontalbelow-ar.medi.KafBaaMedibehVabove-ar.medi.KafBaaMedinoonTahabove-ar.medi.KafBaaMediyehVabove-ar.medi.KafBaaMedi#yehFarsiTwoabove-ar.medi.KafBaaMedi%noonThreedotsabove-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedibehDotless-ar.medi.KafBaaMediyehKashmiri-ar.medi.KafBaaMediyeh-ar.medi.KafBaaMedirnoon-ar.medi.KafBaaMediteheh-ar.medi.KafBaaMedi$behVinvertedbelow-ar.medi.KafBaaMedi#tehThreedotsdown-ar.medi.KafBaaMedipeh-ar.medi.KafBaaMedibeeh-ar.medi.KafBaaMedibeh-ar.medi.KafBaaMeditteheh-ar.medi.KafBaaMedi&behThreedotsupabove-ar.medi.KafBaaMedinoon-ar.medi.KafBaaMedi&tehThreedotsupbelow-ar.medi.KafBaaMedi&behThreedotsupbelow-ar.medi.KafBaaMediteh-ar.medi.KafBaaMedi$yehFarsiVinverted-ar.medi.KafBaaMeditheh-ar.medi.KafBaaMeditteh-ar.medi.KafBaaMedinoonDotbelow-ar.medi.KafBaaMedinoonVabove-ar.medi.KafBaaMedialefMaksura-ar.medi.KafBaaMeditehRing-ar.medi.KafBaaMedi*behTwodotsbelowDotabove-ar.medi.KafBaaMedi$yehThreedotsbelow-ar.medi.KafBaaMedie-ar.medi.KafBaaMedinoonghunna-ar.medi.KafBaaMediyehFarsi-ar.medi.KafBaaMedi#noonTwodotsbelow-ar.medi.KafBaaMedi$yehFarsiFourbelow-ar.medi.BaaNonFinabeheh-ar.medi.BaaNonFina%yehFarsiThreeabove-ar.medi.BaaNonFinanoonRing-ar.medi.BaaNonFina.behThreedotshorizontalbelow-ar.medi.BaaNonFinabehVabove-ar.medi.BaaNonFinanoonTahabove-ar.medi.BaaNonFinayehVabove-ar.medi.BaaNonFina#yehFarsiTwoabove-ar.medi.BaaNonFina%noonThreedotsabove-ar.medi.BaaNonFina yehHamzaabove-ar.medi.BaaNonFinabehDotless-ar.medi.BaaNonFinayehKashmiri-ar.medi.BaaNonFinayeh-ar.medi.BaaNonFinarnoon-ar.medi.BaaNonFinateheh-ar.medi.BaaNonFina$behVinvertedbelow-ar.medi.BaaNonFina#tehThreedotsdown-ar.medi.BaaNonFinapeh-ar.medi.BaaNonFinabeeh-ar.medi.BaaNonFinabeh-ar.medi.BaaNonFinatteheh-ar.medi.BaaNonFina&behThreedotsupabove-ar.medi.BaaNonFinanoon-ar.medi.BaaNonFina&tehThreedotsupbelow-ar.medi.BaaNonFina&behThreedotsupbelow-ar.medi.BaaNonFinateh-ar.medi.BaaNonFina$yehFarsiVinverted-ar.medi.BaaNonFinatheh-ar.medi.BaaNonFinatteh-ar.medi.BaaNonFinanoonDotbelow-ar.medi.BaaNonFinanoonVabove-ar.medi.BaaNonFinaalefMaksura-ar.medi.BaaNonFinatehRing-ar.medi.BaaNonFina*behTwodotsbelowDotabove-ar.medi.BaaNonFina$yehThreedotsbelow-ar.medi.BaaNonFinae-ar.medi.BaaNonFinanoonghunna-ar.medi.BaaNonFinayehFarsi-ar.medi.BaaNonFina#noonTwodotsbelow-ar.medi.BaaNonFinanoon-ar.fina.BaaNonFina#noonTwodotsbelow-ar.fina.BaaNonFinanoonghunna-ar.fina.BaaNonFinanoonRing-ar.fina.BaaNonFinarnoon-ar.fina.BaaNonFinanoonTahabove-ar.fina.BaaNonFinanoonDotbelow-ar.fina.BaaNonFinanoonVabove-ar.fina.BaaNonFina%noonThreedotsabove-ar.fina.BaaNonFinakhah-ar.init.HaaRaaIsolhah-ar.init.HaaRaaIsol hahHamzaabove-ar.init.HaaRaaIsoltcheheh-ar.init.HaaRaaIsol$hahThreedotsabove-ar.init.HaaRaaIsoljeem-ar.init.HaaRaaIsol*hahTwodotsverticalabove-ar.init.HaaRaaIsol,hahTwodotshorizontalabove-ar.init.HaaRaaIsoldyeh-ar.init.HaaRaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaRaaIsolhahTahbelow-ar.init.HaaRaaIsolnyeh-ar.init.HaaRaaIsol tchehDotabove-ar.init.HaaRaaIsolhahFourbelow-ar.init.HaaRaaIsol&hahThreedotsupbelow-ar.init.HaaRaaIsolhahTahabove-ar.init.HaaRaaIsoltcheh-ar.init.HaaRaaIsolrreh-ar.fina.HaaRaaIsolrehv-ar.fina.HaaRaaIsolrehRing-ar.fina.HaaRaaIsolrehDotbelow-ar.fina.HaaRaaIsolrehVbelow-ar.fina.HaaRaaIsol&rehDotbelowdotabove-ar.fina.HaaRaaIsolrehTwodots-ar.fina.HaaRaaIsoljeh-ar.fina.HaaRaaIsolrehFourdots-ar.fina.HaaRaaIsolrehStroke-ar.fina.HaaRaaIsol$rehVinvertedabove-ar.fina.HaaRaaIsolzain-ar.fina.HaaRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsolreh-ar.fina.HaaRaaIsol*rehTwodotsverticalabove-ar.fina.HaaRaaIsol rehHamzaabove-ar.fina.HaaRaaIsolheh-ar.init.HehHaaInithehgoal-ar.init.HehHaaInitlamVabove-ar.init.LamRaaIsol$lamThreedotsabove-ar.init.LamRaaIsollam-ar.init.LamRaaIsol$lamThreedotsbelow-ar.init.LamRaaIsollamDotabove-ar.init.LamRaaIsollamBar-ar.init.LamRaaIsolrreh-ar.fina.LamRaaIsolrehv-ar.fina.LamRaaIsolrehRing-ar.fina.LamRaaIsolrehDotbelow-ar.fina.LamRaaIsolrehVbelow-ar.fina.LamRaaIsol&rehDotbelowdotabove-ar.fina.LamRaaIsolrehTwodots-ar.fina.LamRaaIsoljeh-ar.fina.LamRaaIsolrehFourdots-ar.fina.LamRaaIsolrehStroke-ar.fina.LamRaaIsol$rehVinvertedabove-ar.fina.LamRaaIsolzain-ar.fina.LamRaaIsol4rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsolreh-ar.fina.LamRaaIsol*rehTwodotsverticalabove-ar.fina.LamRaaIsol rehHamzaabove-ar.fina.LamRaaIsol"sadTwodotsbelow-ar.init.SadHaaInitdadDotbelow-ar.init.SadHaaInitdad-ar.init.SadHaaInitsadThreedots-ar.init.SadHaaInitsad-ar.init.SadHaaInitkhah-ar.medi.SadHaaInithah-ar.medi.SadHaaInit hahHamzaabove-ar.medi.SadHaaInittcheheh-ar.medi.SadHaaInit$hahThreedotsabove-ar.medi.SadHaaInitjeem-ar.medi.SadHaaInit*hahTwodotsverticalabove-ar.medi.SadHaaInit,hahTwodotshorizontalabove-ar.medi.SadHaaInitdyeh-ar.medi.SadHaaInit/hahTahTwodotshorizontalabove-ar.medi.SadHaaInithahTahbelow-ar.medi.SadHaaInitnyeh-ar.medi.SadHaaInit tchehDotabove-ar.medi.SadHaaInithahFourbelow-ar.medi.SadHaaInit&hahThreedotsupbelow-ar.medi.SadHaaInithahTahabove-ar.medi.SadHaaInittcheh-ar.medi.SadHaaInit$yehFarsiFourbelow-ar.medi.BaaYaaFinabeheh-ar.medi.BaaYaaFina%yehFarsiThreeabove-ar.medi.BaaYaaFinanoonRing-ar.medi.BaaYaaFina.behThreedotshorizontalbelow-ar.medi.BaaYaaFinabehVabove-ar.medi.BaaYaaFinanoonTahabove-ar.medi.BaaYaaFinayehVabove-ar.medi.BaaYaaFina#yehFarsiTwoabove-ar.medi.BaaYaaFina%noonThreedotsabove-ar.medi.BaaYaaFina yehHamzaabove-ar.medi.BaaYaaFinabehDotless-ar.medi.BaaYaaFinayehKashmiri-ar.medi.BaaYaaFinayeh-ar.medi.BaaYaaFinarnoon-ar.medi.BaaYaaFinateheh-ar.medi.BaaYaaFina$behVinvertedbelow-ar.medi.BaaYaaFina#tehThreedotsdown-ar.medi.BaaYaaFinapeh-ar.medi.BaaYaaFinabeeh-ar.medi.BaaYaaFinabeh-ar.medi.BaaYaaFinatteheh-ar.medi.BaaYaaFina&behThreedotsupabove-ar.medi.BaaYaaFinanoon-ar.medi.BaaYaaFina&tehThreedotsupbelow-ar.medi.BaaYaaFina&behThreedotsupbelow-ar.medi.BaaYaaFinateh-ar.medi.BaaYaaFina$yehFarsiVinverted-ar.medi.BaaYaaFinatheh-ar.medi.BaaYaaFinatteh-ar.medi.BaaYaaFinanoonDotbelow-ar.medi.BaaYaaFinanoonVabove-ar.medi.BaaYaaFinaalefMaksura-ar.medi.BaaYaaFinatehRing-ar.medi.BaaYaaFina*behTwodotsbelowDotabove-ar.medi.BaaYaaFina$yehThreedotsbelow-ar.medi.BaaYaaFinae-ar.medi.BaaYaaFinanoonghunna-ar.medi.BaaYaaFinayehFarsi-ar.medi.BaaYaaFina#noonTwodotsbelow-ar.medi.BaaYaaFina$yehFarsiFourbelow-ar.fina.BaaYaaFina$yehThreedotsbelow-ar.fina.BaaYaaFina#yehFarsiTwoabove-ar.fina.BaaYaaFina)yehFarsiThreedotsabove-ar.fina.BaaYaaFina$yehFarsiVinverted-ar.fina.BaaYaaFina'yehFarsiTwodotsabove-ar.fina.BaaYaaFinae-ar.fina.BaaYaaFinaalefMaksura-ar.fina.BaaYaaFina%yehFarsiThreeabove-ar.fina.BaaYaaFinayehTail-ar.fina.BaaYaaFinayehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFinayehKashmiri-ar.fina.BaaYaaFinayeh-ar.fina.BaaYaaFinayehVabove-ar.fina.BaaYaaFina'yehFarsiFourbelow-ar.init.BaaSenAltInitbeheh-ar.init.BaaSenAltInit(yehFarsiThreeabove-ar.init.BaaSenAltInitnoonRing-ar.init.BaaSenAltInit1behThreedotshorizontalbelow-ar.init.BaaSenAltInitbehVabove-ar.init.BaaSenAltInit"noonTahabove-ar.init.BaaSenAltInityehVabove-ar.init.BaaSenAltInit&yehFarsiTwoabove-ar.init.BaaSenAltInit(noonThreedotsabove-ar.init.BaaSenAltInit#yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInit!yehKashmiri-ar.init.BaaSenAltInityeh-ar.init.BaaSenAltInitrnoon-ar.init.BaaSenAltInitteheh-ar.init.BaaSenAltInit'behVinvertedbelow-ar.init.BaaSenAltInit&tehThreedotsdown-ar.init.BaaSenAltInitpeh-ar.init.BaaSenAltInitbeeh-ar.init.BaaSenAltInitbeh-ar.init.BaaSenAltInittteheh-ar.init.BaaSenAltInit)behThreedotsupabove-ar.init.BaaSenAltInitnoon-ar.init.BaaSenAltInit)tehThreedotsupbelow-ar.init.BaaSenAltInit)behThreedotsupbelow-ar.init.BaaSenAltInitteh-ar.init.BaaSenAltInit"highhamzaYeh-ar.init.BaaSenAltInit'yehFarsiVinverted-ar.init.BaaSenAltInittheh-ar.init.BaaSenAltInittteh-ar.init.BaaSenAltInit"noonDotbelow-ar.init.BaaSenAltInit noonVabove-ar.init.BaaSenAltInit!alefMaksura-ar.init.BaaSenAltInittehRing-ar.init.BaaSenAltInit-behTwodotsbelowDotabove-ar.init.BaaSenAltInit'yehThreedotsbelow-ar.init.BaaSenAltInite-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInityehFarsi-ar.init.BaaSenAltInit&noonTwodotsbelow-ar.init.BaaSenAltInit#sheenDotbelow-ar.medi.BaaSenAltInit.seenTwodotsverticalabove-ar.medi.BaaSenAltInitseen-ar.medi.BaaSenAltInit(seenVinvertedabove-ar.medi.BaaSenAltInit#seenFourabove-ar.medi.BaaSenAltInitsheen-ar.medi.BaaSenAltInit3seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit'seenFourdotsabove-ar.medi.BaaSenAltInit*seenDotbelowDotabove-ar.medi.BaaSenAltInit(seenThreedotsbelow-ar.medi.BaaSenAltInit)sheenThreedotsbelow-ar.medi.BaaSenAltInitrreh-ar.fina.PostToothrehv-ar.fina.PostToothrehRing-ar.fina.PostToothrehDotbelow-ar.fina.PostToothrehVbelow-ar.fina.PostTooth%rehDotbelowdotabove-ar.fina.PostToothrehTwodots-ar.fina.PostToothjeh-ar.fina.PostToothrehFourdots-ar.fina.PostToothrehStroke-ar.fina.PostTooth#rehVinvertedabove-ar.fina.PostToothzain-ar.fina.PostTooth3rehTwodotshorizontalaboveTahabove-ar.fina.PostToothreh-ar.fina.PostTooth)rehTwodotsverticalabove-ar.fina.PostToothrehHamzaabove-ar.fina.PostTooth#yehFarsiFourbelow-ar.fina.PostTooth#yehThreedotsbelow-ar.fina.PostTooth"yehFarsiTwoabove-ar.fina.PostTooth(yehFarsiThreedotsabove-ar.fina.PostTooth#yehFarsiVinverted-ar.fina.PostTooth&yehFarsiTwodotsabove-ar.fina.PostToothe-ar.fina.PostToothalefMaksura-ar.fina.PostTooth$yehFarsiThreeabove-ar.fina.PostToothyehTail-ar.fina.PostToothyehFarsi-ar.fina.PostToothyehHamzaabove-ar.fina.PostToothyehKashmiri-ar.fina.PostToothyeh-ar.fina.PostToothyehVabove-ar.fina.PostTooth"yehFarsiFourbelow-ar.init.AboveHaabeheh-ar.init.AboveHaa#yehFarsiThreeabove-ar.init.AboveHaanoonRing-ar.init.AboveHaa,behThreedotshorizontalbelow-ar.init.AboveHaabehVabove-ar.init.AboveHaanoonTahabove-ar.init.AboveHaayehVabove-ar.init.AboveHaa!yehFarsiTwoabove-ar.init.AboveHaa#noonThreedotsabove-ar.init.AboveHaayehHamzaabove-ar.init.AboveHaabehDotless-ar.init.AboveHaayehKashmiri-ar.init.AboveHaayeh-ar.init.AboveHaarnoon-ar.init.AboveHaateheh-ar.init.AboveHaa"behVinvertedbelow-ar.init.AboveHaa!tehThreedotsdown-ar.init.AboveHaapeh-ar.init.AboveHaabeeh-ar.init.AboveHaabeh-ar.init.AboveHaatteheh-ar.init.AboveHaa$behThreedotsupabove-ar.init.AboveHaanoon-ar.init.AboveHaa$tehThreedotsupbelow-ar.init.AboveHaa$behThreedotsupbelow-ar.init.AboveHaateh-ar.init.AboveHaahighhamzaYeh-ar.init.AboveHaa"yehFarsiVinverted-ar.init.AboveHaatheh-ar.init.AboveHaatteh-ar.init.AboveHaanoonDotbelow-ar.init.AboveHaanoonVabove-ar.init.AboveHaaalefMaksura-ar.init.AboveHaatehRing-ar.init.AboveHaa(behTwodotsbelowDotabove-ar.init.AboveHaa"yehThreedotsbelow-ar.init.AboveHaae-ar.init.AboveHaanoonghunna-ar.init.AboveHaayehFarsi-ar.init.AboveHaa!noonTwodotsbelow-ar.init.AboveHaa$yehFarsiFourbelow-ar.init.BaaHaaInitbeheh-ar.init.BaaHaaInit%yehFarsiThreeabove-ar.init.BaaHaaInitnoonRing-ar.init.BaaHaaInit.behThreedotshorizontalbelow-ar.init.BaaHaaInitbehVabove-ar.init.BaaHaaInitnoonTahabove-ar.init.BaaHaaInityehVabove-ar.init.BaaHaaInit#yehFarsiTwoabove-ar.init.BaaHaaInit%noonThreedotsabove-ar.init.BaaHaaInit yehHamzaabove-ar.init.BaaHaaInitbehDotless-ar.init.BaaHaaInityehKashmiri-ar.init.BaaHaaInityeh-ar.init.BaaHaaInitrnoon-ar.init.BaaHaaInitteheh-ar.init.BaaHaaInit$behVinvertedbelow-ar.init.BaaHaaInit#tehThreedotsdown-ar.init.BaaHaaInitpeh-ar.init.BaaHaaInitbeeh-ar.init.BaaHaaInitbeh-ar.init.BaaHaaInittteheh-ar.init.BaaHaaInit&behThreedotsupabove-ar.init.BaaHaaInitnoon-ar.init.BaaHaaInit&tehThreedotsupbelow-ar.init.BaaHaaInit&behThreedotsupbelow-ar.init.BaaHaaInitteh-ar.init.BaaHaaInithighhamzaYeh-ar.init.BaaHaaInit$yehFarsiVinverted-ar.init.BaaHaaInittheh-ar.init.BaaHaaInittteh-ar.init.BaaHaaInitnoonDotbelow-ar.init.BaaHaaInitnoonVabove-ar.init.BaaHaaInitalefMaksura-ar.init.BaaHaaInittehRing-ar.init.BaaHaaInit*behTwodotsbelowDotabove-ar.init.BaaHaaInit$yehThreedotsbelow-ar.init.BaaHaaInite-ar.init.BaaHaaInitnoonghunna-ar.init.BaaHaaInityehFarsi-ar.init.BaaHaaInit#noonTwodotsbelow-ar.init.BaaHaaInit'yehFarsiFourbelow-ar.init.BaaHaaMemInitbeheh-ar.init.BaaHaaMemInit(yehFarsiThreeabove-ar.init.BaaHaaMemInitnoonRing-ar.init.BaaHaaMemInit1behThreedotshorizontalbelow-ar.init.BaaHaaMemInitbehVabove-ar.init.BaaHaaMemInit"noonTahabove-ar.init.BaaHaaMemInityehVabove-ar.init.BaaHaaMemInit&yehFarsiTwoabove-ar.init.BaaHaaMemInit(noonThreedotsabove-ar.init.BaaHaaMemInit#yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInit!yehKashmiri-ar.init.BaaHaaMemInityeh-ar.init.BaaHaaMemInitrnoon-ar.init.BaaHaaMemInitteheh-ar.init.BaaHaaMemInit'behVinvertedbelow-ar.init.BaaHaaMemInit&tehThreedotsdown-ar.init.BaaHaaMemInitpeh-ar.init.BaaHaaMemInitbeeh-ar.init.BaaHaaMemInitbeh-ar.init.BaaHaaMemInittteheh-ar.init.BaaHaaMemInit)behThreedotsupabove-ar.init.BaaHaaMemInitnoon-ar.init.BaaHaaMemInit)tehThreedotsupbelow-ar.init.BaaHaaMemInit)behThreedotsupbelow-ar.init.BaaHaaMemInitteh-ar.init.BaaHaaMemInit"highhamzaYeh-ar.init.BaaHaaMemInit'yehFarsiVinverted-ar.init.BaaHaaMemInittheh-ar.init.BaaHaaMemInittteh-ar.init.BaaHaaMemInit"noonDotbelow-ar.init.BaaHaaMemInit noonVabove-ar.init.BaaHaaMemInit!alefMaksura-ar.init.BaaHaaMemInittehRing-ar.init.BaaHaaMemInit-behTwodotsbelowDotabove-ar.init.BaaHaaMemInit'yehThreedotsbelow-ar.init.BaaHaaMemInite-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInityehFarsi-ar.init.BaaHaaMemInit&noonTwodotsbelow-ar.init.BaaHaaMemInitkhah-ar.medi.BaaHaaMemInithah-ar.medi.BaaHaaMemInit#hahHamzaabove-ar.medi.BaaHaaMemInittcheheh-ar.medi.BaaHaaMemInit'hahThreedotsabove-ar.medi.BaaHaaMemInitjeem-ar.medi.BaaHaaMemInit-hahTwodotsverticalabove-ar.medi.BaaHaaMemInit/hahTwodotshorizontalabove-ar.medi.BaaHaaMemInitdyeh-ar.medi.BaaHaaMemInit2hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit!hahTahbelow-ar.medi.BaaHaaMemInitnyeh-ar.medi.BaaHaaMemInit#tchehDotabove-ar.medi.BaaHaaMemInit"hahFourbelow-ar.medi.BaaHaaMemInit)hahThreedotsupbelow-ar.medi.BaaHaaMemInit!hahTahabove-ar.medi.BaaHaaMemInittcheh-ar.medi.BaaHaaMemInitkhah-ar.fina.AboveHaaIsolhah-ar.fina.AboveHaaIsol"hahHamzaabove-ar.fina.AboveHaaIsoltcheheh-ar.fina.AboveHaaIsol&hahThreedotsabove-ar.fina.AboveHaaIsoljeem-ar.fina.AboveHaaIsol,hahTwodotsverticalabove-ar.fina.AboveHaaIsol.hahTwodotshorizontalabove-ar.fina.AboveHaaIsoldyeh-ar.fina.AboveHaaIsol1hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol hahTahbelow-ar.fina.AboveHaaIsolnyeh-ar.fina.AboveHaaIsol"tchehDotabove-ar.fina.AboveHaaIsol!hahFourbelow-ar.fina.AboveHaaIsol(hahThreedotsupbelow-ar.fina.AboveHaaIsol hahTahabove-ar.fina.AboveHaaIsoltcheh-ar.fina.AboveHaaIsollamVabove-ar.init.LamHaaHaaInit'lamThreedotsabove-ar.init.LamHaaHaaInitlam-ar.init.LamHaaHaaInit'lamThreedotsbelow-ar.init.LamHaaHaaInit!lamDotabove-ar.init.LamHaaHaaInitlamBar-ar.init.LamHaaHaaInitghainDotbelow-ar.init.Finjanighain-ar.init.Finjani%ainThreedotsdownabove-ar.init.Finjani)ainTwodotshorizontalabove-ar.init.Finjani'ainTwodotsverticalabove-ar.init.FinjaniainThreedots-ar.init.Finjaniain-ar.init.Finjanikhah-ar.init.Finjanihah-ar.init.FinjanihahHamzaabove-ar.init.Finjanitcheheh-ar.init.Finjani!hahThreedotsabove-ar.init.Finjanijeem-ar.init.Finjani'hahTwodotsverticalabove-ar.init.Finjani)hahTwodotshorizontalabove-ar.init.Finjanidyeh-ar.init.Finjani,hahTahTwodotshorizontalabove-ar.init.FinjanihahTahbelow-ar.init.Finjaninyeh-ar.init.FinjanitchehDotabove-ar.init.FinjanihahFourbelow-ar.init.Finjani#hahThreedotsupbelow-ar.init.FinjanihahTahabove-ar.init.Finjanitcheh-ar.init.Finjanikhah-ar.medi.Finjanihah-ar.medi.FinjanihahHamzaabove-ar.medi.Finjanitcheheh-ar.medi.Finjani!hahThreedotsabove-ar.medi.Finjanijeem-ar.medi.Finjani'hahTwodotsverticalabove-ar.medi.Finjani)hahTwodotshorizontalabove-ar.medi.Finjanidyeh-ar.medi.Finjani,hahTahTwodotshorizontalabove-ar.medi.FinjanihahTahbelow-ar.medi.Finjaninyeh-ar.medi.FinjanitchehDotabove-ar.medi.FinjanihahFourbelow-ar.medi.Finjani#hahThreedotsupbelow-ar.medi.FinjanihahTahabove-ar.medi.Finjanitcheh-ar.medi.FinjanisheenDotbelow-ar.init.PreYaa'seenTwodotsverticalabove-ar.init.PreYaaseen-ar.init.PreYaa!seenVinvertedabove-ar.init.PreYaaseenFourabove-ar.init.PreYaasheen-ar.init.PreYaa,seenTahTwodotshorizontalabove-ar.init.PreYaa seenFourdotsabove-ar.init.PreYaa#seenDotbelowDotabove-ar.init.PreYaa!seenThreedotsbelow-ar.init.PreYaa"sheenThreedotsbelow-ar.init.PreYaasheenDotbelow-ar.medi.PreYaa'seenTwodotsverticalabove-ar.medi.PreYaaseen-ar.medi.PreYaa!seenVinvertedabove-ar.medi.PreYaaseenFourabove-ar.medi.PreYaasheen-ar.medi.PreYaa,seenTahTwodotshorizontalabove-ar.medi.PreYaa seenFourdotsabove-ar.medi.PreYaa#seenDotbelowDotabove-ar.medi.PreYaa!seenThreedotsbelow-ar.medi.PreYaa"sheenThreedotsbelow-ar.medi.PreYaasadTwodotsbelow-ar.init.PreYaadadDotbelow-ar.init.PreYaadad-ar.init.PreYaasadThreedots-ar.init.PreYaasad-ar.init.PreYaasadTwodotsbelow-ar.medi.PreYaadadDotbelow-ar.medi.PreYaadad-ar.medi.PreYaasadThreedots-ar.medi.PreYaasad-ar.medi.PreYaayehFarsiFourbelow-ar.init.Highbeheh-ar.init.HighyehFarsiThreeabove-ar.init.HighnoonRing-ar.init.High(behThreedotshorizontalbelow-ar.init.HighbehVabove-ar.init.HighnoonTahabove-ar.init.HighyehVabove-ar.init.HighyehFarsiTwoabove-ar.init.HighnoonThreedotsabove-ar.init.HighyehHamzaabove-ar.init.HighbehDotless-ar.init.HighyehKashmiri-ar.init.Highyeh-ar.init.Highrnoon-ar.init.Highteheh-ar.init.HighbehVinvertedbelow-ar.init.HightehThreedotsdown-ar.init.Highpeh-ar.init.Highbeeh-ar.init.Highbeh-ar.init.Hightteheh-ar.init.High behThreedotsupabove-ar.init.Highnoon-ar.init.High tehThreedotsupbelow-ar.init.High behThreedotsupbelow-ar.init.Highteh-ar.init.HighhighhamzaYeh-ar.init.HighyehFarsiVinverted-ar.init.Hightheh-ar.init.Hightteh-ar.init.HighnoonDotbelow-ar.init.HighnoonVabove-ar.init.HighalefMaksura-ar.init.HightehRing-ar.init.High$behTwodotsbelowDotabove-ar.init.HighyehThreedotsbelow-ar.init.Highe-ar.init.Highnoonghunna-ar.init.HighyehFarsi-ar.init.HighnoonTwodotsbelow-ar.init.HighyehFarsiFourbelow-ar.medi.Highbeheh-ar.medi.HighyehFarsiThreeabove-ar.medi.HighnoonRing-ar.medi.High(behThreedotshorizontalbelow-ar.medi.HighbehVabove-ar.medi.HighnoonTahabove-ar.medi.HighyehVabove-ar.medi.HighyehFarsiTwoabove-ar.medi.HighnoonThreedotsabove-ar.medi.HighyehHamzaabove-ar.medi.HighbehDotless-ar.medi.HighyehKashmiri-ar.medi.Highyeh-ar.medi.Highrnoon-ar.medi.Highteheh-ar.medi.HighbehVinvertedbelow-ar.medi.HightehThreedotsdown-ar.medi.Highpeh-ar.medi.Highbeeh-ar.medi.Highbeh-ar.medi.Hightteheh-ar.medi.High behThreedotsupabove-ar.medi.Highnoon-ar.medi.High tehThreedotsupbelow-ar.medi.High behThreedotsupbelow-ar.medi.Highteh-ar.medi.HighyehFarsiVinverted-ar.medi.Hightheh-ar.medi.Hightteh-ar.medi.HighnoonDotbelow-ar.medi.HighnoonVabove-ar.medi.HighalefMaksura-ar.medi.HightehRing-ar.medi.High$behTwodotsbelowDotabove-ar.medi.HighyehThreedotsbelow-ar.medi.Highe-ar.medi.Highnoonghunna-ar.medi.HighyehFarsi-ar.medi.HighnoonTwodotsbelow-ar.medi.HighsheenDotbelow-ar.fina.BaaSen'seenTwodotsverticalabove-ar.fina.BaaSenseen-ar.fina.BaaSen!seenVinvertedabove-ar.fina.BaaSenseenFourabove-ar.fina.BaaSensheen-ar.fina.BaaSen,seenTahTwodotshorizontalabove-ar.fina.BaaSen seenFourdotsabove-ar.fina.BaaSen#seenDotbelowDotabove-ar.fina.BaaSen!seenThreedotsbelow-ar.fina.BaaSen"sheenThreedotsbelow-ar.fina.BaaSenmeem-ar.fina.PostToothyehFarsiFourbelow-ar.init.Widebeheh-ar.init.WideyehFarsiThreeabove-ar.init.WidenoonRing-ar.init.Wide(behThreedotshorizontalbelow-ar.init.WidebehVabove-ar.init.WidenoonTahabove-ar.init.WideyehVabove-ar.init.WideyehFarsiTwoabove-ar.init.WidenoonThreedotsabove-ar.init.WideyehHamzaabove-ar.init.WidebehDotless-ar.init.WideyehKashmiri-ar.init.Wideyeh-ar.init.Widernoon-ar.init.Wideteheh-ar.init.WidebehVinvertedbelow-ar.init.WidetehThreedotsdown-ar.init.Widepeh-ar.init.Widebeeh-ar.init.Widebeh-ar.init.Widetteheh-ar.init.Wide behThreedotsupabove-ar.init.Widenoon-ar.init.Wide tehThreedotsupbelow-ar.init.Wide behThreedotsupbelow-ar.init.Wideteh-ar.init.WidehighhamzaYeh-ar.init.WideyehFarsiVinverted-ar.init.Widetheh-ar.init.Widetteh-ar.init.WidenoonDotbelow-ar.init.WidenoonVabove-ar.init.WidealefMaksura-ar.init.WidetehRing-ar.init.Wide$behTwodotsbelowDotabove-ar.init.WideyehThreedotsbelow-ar.init.Widee-ar.init.Widenoonghunna-ar.init.WideyehFarsi-ar.init.WidenoonTwodotsbelow-ar.init.Widekhah-ar.medi.HaaHaaInithah-ar.medi.HaaHaaInit hahHamzaabove-ar.medi.HaaHaaInittcheheh-ar.medi.HaaHaaInit$hahThreedotsabove-ar.medi.HaaHaaInitjeem-ar.medi.HaaHaaInit*hahTwodotsverticalabove-ar.medi.HaaHaaInit,hahTwodotshorizontalabove-ar.medi.HaaHaaInitdyeh-ar.medi.HaaHaaInit/hahTahTwodotshorizontalabove-ar.medi.HaaHaaInithahTahbelow-ar.medi.HaaHaaInitnyeh-ar.medi.HaaHaaInit tchehDotabove-ar.medi.HaaHaaInithahFourbelow-ar.medi.HaaHaaInit&hahThreedotsupbelow-ar.medi.HaaHaaInithahTahabove-ar.medi.HaaHaaInittcheh-ar.medi.HaaHaaInitkhah-ar.medi.AynHaaInithah-ar.medi.AynHaaInit hahHamzaabove-ar.medi.AynHaaInittcheheh-ar.medi.AynHaaInit$hahThreedotsabove-ar.medi.AynHaaInitjeem-ar.medi.AynHaaInit*hahTwodotsverticalabove-ar.medi.AynHaaInit,hahTwodotshorizontalabove-ar.medi.AynHaaInitdyeh-ar.medi.AynHaaInit/hahTahTwodotshorizontalabove-ar.medi.AynHaaInithahTahbelow-ar.medi.AynHaaInitnyeh-ar.medi.AynHaaInit tchehDotabove-ar.medi.AynHaaInithahFourbelow-ar.medi.AynHaaInit&hahThreedotsupbelow-ar.medi.AynHaaInithahTahabove-ar.medi.AynHaaInittcheh-ar.medi.AynHaaInitmeem-ar.medi.LamMemInitTatweelheh-ar.init.AboveHaahehgoal-ar.init.AboveHaakhah-ar.init.AboveHaahah-ar.init.AboveHaahahHamzaabove-ar.init.AboveHaatcheheh-ar.init.AboveHaa"hahThreedotsabove-ar.init.AboveHaajeem-ar.init.AboveHaa(hahTwodotsverticalabove-ar.init.AboveHaa*hahTwodotshorizontalabove-ar.init.AboveHaadyeh-ar.init.AboveHaa-hahTahTwodotshorizontalabove-ar.init.AboveHaahahTahbelow-ar.init.AboveHaanyeh-ar.init.AboveHaatchehDotabove-ar.init.AboveHaahahFourbelow-ar.init.AboveHaa$hahThreedotsupbelow-ar.init.AboveHaahahTahabove-ar.init.AboveHaatcheh-ar.init.AboveHaaghainDotbelow-ar.init.AboveHaaghain-ar.init.AboveHaa&ainThreedotsdownabove-ar.init.AboveHaa*ainTwodotshorizontalabove-ar.init.AboveHaa(ainTwodotsverticalabove-ar.init.AboveHaaainThreedots-ar.init.AboveHaaain-ar.init.AboveHaakhah-ar.fina.AboveHaaIsol2hah-ar.fina.AboveHaaIsol2#hahHamzaabove-ar.fina.AboveHaaIsol2tcheheh-ar.fina.AboveHaaIsol2'hahThreedotsabove-ar.fina.AboveHaaIsol2jeem-ar.fina.AboveHaaIsol2-hahTwodotsverticalabove-ar.fina.AboveHaaIsol2/hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2dyeh-ar.fina.AboveHaaIsol22hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2!hahTahbelow-ar.fina.AboveHaaIsol2nyeh-ar.fina.AboveHaaIsol2#tchehDotabove-ar.fina.AboveHaaIsol2"hahFourbelow-ar.fina.AboveHaaIsol2)hahThreedotsupbelow-ar.fina.AboveHaaIsol2!hahTahabove-ar.fina.AboveHaaIsol2tcheh-ar.fina.AboveHaaIsol2meem-ar.init.AboveHaa,kehehTwodotshorizontalabove-ar.init.AboveHaa$kehehThreedotsbelow-ar.init.AboveHaa*kafTwodotshorizontalabove-ar.init.AboveHaa&kehehThreedotsupbelow-ar.init.AboveHaakaf-ar.init.AboveHaagafRing-ar.init.AboveHaagueh-ar.init.AboveHaa gafTwodotsbelow-ar.init.AboveHaakafRing-ar.init.AboveHaakafDotabove-ar.init.AboveHaang-ar.init.AboveHaa"kafThreedotsbelow-ar.init.AboveHaagaf-ar.init.AboveHaakeheh-ar.init.AboveHaagafThreedots-ar.init.AboveHaa$kehehThreedotsabove-ar.init.AboveHaakehehDotabove-ar.init.AboveHaangoeh-ar.init.AboveHaa*kehehTwodotshorizontalabove-ar.init.KafLam"kehehThreedotsbelow-ar.init.KafLam(kafTwodotshorizontalabove-ar.init.KafLam$kehehThreedotsupbelow-ar.init.KafLamkaf-ar.init.KafLamgafRing-ar.init.KafLamgueh-ar.init.KafLamgafTwodotsbelow-ar.init.KafLamkafRing-ar.init.KafLamkafDotabove-ar.init.KafLamng-ar.init.KafLam kafThreedotsbelow-ar.init.KafLamgaf-ar.init.KafLamkeheh-ar.init.KafLamgafThreedots-ar.init.KafLam"kehehThreedotsabove-ar.init.KafLamkehehDotabove-ar.init.KafLamngoeh-ar.init.KafLam.kehehTwodotshorizontalabove-ar.fina.KafKafFina&kehehThreedotsbelow-ar.fina.KafKafFina,kafTwodotshorizontalabove-ar.fina.KafKafFina(kehehThreedotsupbelow-ar.fina.KafKafFinakaf-ar.fina.KafKafFinagafRing-ar.fina.KafKafFinagueh-ar.fina.KafKafFina"gafTwodotsbelow-ar.fina.KafKafFinakafRing-ar.fina.KafKafFinakafDotabove-ar.fina.KafKafFinang-ar.fina.KafKafFina$kafThreedotsbelow-ar.fina.KafKafFinagaf-ar.fina.KafKafFinakeheh-ar.fina.KafKafFinagafThreedots-ar.fina.KafKafFina&kehehThreedotsabove-ar.fina.KafKafFina kehehDotabove-ar.fina.KafKafFinangoeh-ar.fina.KafKafFinalamVabove-ar.medi.KafLam lamThreedotsabove-ar.medi.KafLamlam-ar.medi.KafLam lamThreedotsbelow-ar.medi.KafLamlamDotabove-ar.medi.KafLamlamBar-ar.medi.KafLamlamVabove-ar.medi.KafLamMemMedi'lamThreedotsabove-ar.medi.KafLamMemMedilam-ar.medi.KafLamMemMedi'lamThreedotsbelow-ar.medi.KafLamMemMedi!lamDotabove-ar.medi.KafLamMemMedilamBar-ar.medi.KafLamMemMedi*kehehTwodotshorizontalabove-ar.medi.KafLam"kehehThreedotsbelow-ar.medi.KafLam(kafTwodotshorizontalabove-ar.medi.KafLam$kehehThreedotsupbelow-ar.medi.KafLamkaf-ar.medi.KafLamgafRing-ar.medi.KafLamgueh-ar.medi.KafLamgafTwodotsbelow-ar.medi.KafLamkafRing-ar.medi.KafLamkafDotabove-ar.medi.KafLamng-ar.medi.KafLam kafThreedotsbelow-ar.medi.KafLamgaf-ar.medi.KafLamkeheh-ar.medi.KafLamgafThreedots-ar.medi.KafLam"kehehThreedotsabove-ar.medi.KafLamkehehDotabove-ar.medi.KafLamngoeh-ar.medi.KafLamlamVabove-ar.medi.KafLamHehIsol'lamThreedotsabove-ar.medi.KafLamHehIsollam-ar.medi.KafLamHehIsol'lamThreedotsbelow-ar.medi.KafLamHehIsol!lamDotabove-ar.medi.KafLamHehIsollamBar-ar.medi.KafLamHehIsollamVabove-ar.medi.KafLamYaa#lamThreedotsabove-ar.medi.KafLamYaalam-ar.medi.KafLamYaa#lamThreedotsbelow-ar.medi.KafLamYaalamDotabove-ar.medi.KafLamYaalamBar-ar.medi.KafLamYaalamVabove-ar.medi.KafLamAlf#lamThreedotsabove-ar.medi.KafLamAlflam-ar.medi.KafLamAlf#lamThreedotsbelow-ar.medi.KafLamAlflamDotabove-ar.medi.KafLamAlflamBar-ar.medi.KafLamAlflamVabove-ar.fina.KafLam lamThreedotsabove-ar.fina.KafLamlam-ar.fina.KafLam lamThreedotsbelow-ar.fina.KafLamlamDotabove-ar.fina.KafLamlamBar-ar.fina.KafLamalefHamzabelow-ar.fina.KafAlfalef-ar.fina.KafAlfalefThreeabove-ar.fina.KafAlfalefTwoabove-ar.fina.KafAlfalefHamzaabove-ar.fina.KafAlfalefMadda-ar.fina.KafAlf!alefWavyhamzaabove-ar.fina.KafAlf!alefWavyhamzabelow-ar.fina.KafAlfalefWasla-ar.fina.KafAlf-kehehTwodotshorizontalabove-ar.init.KafMemAlf%kehehThreedotsbelow-ar.init.KafMemAlf+kafTwodotshorizontalabove-ar.init.KafMemAlf'kehehThreedotsupbelow-ar.init.KafMemAlfkaf-ar.init.KafMemAlfgafRing-ar.init.KafMemAlfgueh-ar.init.KafMemAlf!gafTwodotsbelow-ar.init.KafMemAlfkafRing-ar.init.KafMemAlfkafDotabove-ar.init.KafMemAlfng-ar.init.KafMemAlf#kafThreedotsbelow-ar.init.KafMemAlfgaf-ar.init.KafMemAlfkeheh-ar.init.KafMemAlfgafThreedots-ar.init.KafMemAlf%kehehThreedotsabove-ar.init.KafMemAlfkehehDotabove-ar.init.KafMemAlfngoeh-ar.init.KafMemAlf-kehehTwodotshorizontalabove-ar.medi.KafMemAlf%kehehThreedotsbelow-ar.medi.KafMemAlf+kafTwodotshorizontalabove-ar.medi.KafMemAlf'kehehThreedotsupbelow-ar.medi.KafMemAlfkaf-ar.medi.KafMemAlfgafRing-ar.medi.KafMemAlfgueh-ar.medi.KafMemAlf!gafTwodotsbelow-ar.medi.KafMemAlfkafRing-ar.medi.KafMemAlfkafDotabove-ar.medi.KafMemAlfng-ar.medi.KafMemAlf#kafThreedotsbelow-ar.medi.KafMemAlfgaf-ar.medi.KafMemAlfkeheh-ar.medi.KafMemAlfgafThreedots-ar.medi.KafMemAlf%kehehThreedotsabove-ar.medi.KafMemAlfkehehDotabove-ar.medi.KafMemAlfngoeh-ar.medi.KafMemAlfmeem-ar.medi.KafMemAlflamVabove-ar.medi.KafMemLam#lamThreedotsabove-ar.medi.KafMemLamlam-ar.medi.KafMemLam#lamThreedotsbelow-ar.medi.KafMemLamlamDotabove-ar.medi.KafMemLamlamBar-ar.medi.KafMemLamlamVabove-ar.fina.KafMemLam#lamThreedotsabove-ar.fina.KafMemLamlam-ar.fina.KafMemLam#lamThreedotsbelow-ar.fina.KafMemLamlamDotabove-ar.fina.KafMemLamlamBar-ar.fina.KafMemLam alefHamzabelow-ar.fina.KafMemAlfalef-ar.fina.KafMemAlf alefThreeabove-ar.fina.KafMemAlfalefTwoabove-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlfalefMadda-ar.fina.KafMemAlf$alefWavyhamzaabove-ar.fina.KafMemAlf$alefWavyhamzabelow-ar.fina.KafMemAlfalefWasla-ar.fina.KafMemAlf*kehehTwodotshorizontalabove-ar.init.KafHeh"kehehThreedotsbelow-ar.init.KafHeh(kafTwodotshorizontalabove-ar.init.KafHeh$kehehThreedotsupbelow-ar.init.KafHehkaf-ar.init.KafHehgafRing-ar.init.KafHehgueh-ar.init.KafHehgafTwodotsbelow-ar.init.KafHehkafRing-ar.init.KafHehkafDotabove-ar.init.KafHehng-ar.init.KafHeh kafThreedotsbelow-ar.init.KafHehgaf-ar.init.KafHehkeheh-ar.init.KafHehgafThreedots-ar.init.KafHeh"kehehThreedotsabove-ar.init.KafHehkehehDotabove-ar.init.KafHehngoeh-ar.init.KafHeh*kehehTwodotshorizontalabove-ar.medi.KafHeh"kehehThreedotsbelow-ar.medi.KafHeh(kafTwodotshorizontalabove-ar.medi.KafHeh$kehehThreedotsupbelow-ar.medi.KafHehkaf-ar.medi.KafHehgafRing-ar.medi.KafHehgueh-ar.medi.KafHehgafTwodotsbelow-ar.medi.KafHehkafRing-ar.medi.KafHehkafDotabove-ar.medi.KafHehng-ar.medi.KafHeh kafThreedotsbelow-ar.medi.KafHehgaf-ar.medi.KafHehkeheh-ar.medi.KafHehgafThreedots-ar.medi.KafHeh"kehehThreedotsabove-ar.medi.KafHehkehehDotabove-ar.medi.KafHehngoeh-ar.medi.KafHehheh-ar.fina.KafHehhehgoal-ar.fina.KafHehtehMarbutagoal-ar.fina.KafHehae-ar.fina.KafHehtehMarbuta-ar.fina.KafHehdalFourdots-ar.fina.KafDal dalVinvertedabove-ar.fina.KafDaldalRing-ar.fina.KafDalddal-ar.fina.KafDal dalVinvertedbelow-ar.fina.KafDalthal-ar.fina.KafDaldal-ar.fina.KafDal)dalTwodotsverticalbelowTah-ar.fina.KafDaldahal-ar.fina.KafDaldalDotbelowTah-ar.fina.KafDaldalDotbelow-ar.fina.KafDaldalThreedotsdown-ar.fina.KafDaldul-ar.fina.KafDalddahal-ar.fina.KafDallamVabove-ar.init.LamHeh lamThreedotsabove-ar.init.LamHehlam-ar.init.LamHeh lamThreedotsbelow-ar.init.LamHehlamDotabove-ar.init.LamHehlamBar-ar.init.LamHehlamVabove-ar.medi.LamHeh lamThreedotsabove-ar.medi.LamHehlam-ar.medi.LamHeh lamThreedotsbelow-ar.medi.LamHehlamDotabove-ar.medi.LamHehlamBar-ar.medi.LamHehheh-ar.fina.LamHehhehgoal-ar.fina.LamHehtehMarbutagoal-ar.fina.LamHehae-ar.fina.LamHehtehMarbuta-ar.fina.LamHehdalFourdots-ar.fina.LamDal dalVinvertedabove-ar.fina.LamDaldalRing-ar.fina.LamDalddal-ar.fina.LamDal dalVinvertedbelow-ar.fina.LamDalthal-ar.fina.LamDaldal-ar.fina.LamDal)dalTwodotsverticalbelowTah-ar.fina.LamDaldahal-ar.fina.LamDaldalDotbelowTah-ar.fina.LamDaldalDotbelow-ar.fina.LamDaldalThreedotsdown-ar.fina.LamDaldul-ar.fina.LamDalddahal-ar.fina.LamDal.kehehTwodotshorizontalabove-ar.medi.KafMemMedi&kehehThreedotsbelow-ar.medi.KafMemMedi,kafTwodotshorizontalabove-ar.medi.KafMemMedi(kehehThreedotsupbelow-ar.medi.KafMemMedikaf-ar.medi.KafMemMedigafRing-ar.medi.KafMemMedigueh-ar.medi.KafMemMedi"gafTwodotsbelow-ar.medi.KafMemMedikafRing-ar.medi.KafMemMedikafDotabove-ar.medi.KafMemMeding-ar.medi.KafMemMedi$kafThreedotsbelow-ar.medi.KafMemMedigaf-ar.medi.KafMemMedikeheh-ar.medi.KafMemMedigafThreedots-ar.medi.KafMemMedi&kehehThreedotsabove-ar.medi.KafMemMedi kehehDotabove-ar.medi.KafMemMedingoeh-ar.medi.KafMemMedi.kehehTwodotshorizontalabove-ar.init.KafMemInit&kehehThreedotsbelow-ar.init.KafMemInit,kafTwodotshorizontalabove-ar.init.KafMemInit(kehehThreedotsupbelow-ar.init.KafMemInitkaf-ar.init.KafMemInitgafRing-ar.init.KafMemInitgueh-ar.init.KafMemInit"gafTwodotsbelow-ar.init.KafMemInitkafRing-ar.init.KafMemInitkafDotabove-ar.init.KafMemInitng-ar.init.KafMemInit$kafThreedotsbelow-ar.init.KafMemInitgaf-ar.init.KafMemInitkeheh-ar.init.KafMemInitgafThreedots-ar.init.KafMemInit&kehehThreedotsabove-ar.init.KafMemInit kehehDotabove-ar.init.KafMemInitngoeh-ar.init.KafMemInit ghainDotbelow-ar.init.AynMemInitghain-ar.init.AynMemInit(ainThreedotsdownabove-ar.init.AynMemInit,ainTwodotshorizontalabove-ar.init.AynMemInit*ainTwodotsverticalabove-ar.init.AynMemInitainThreedots-ar.init.AynMemInitain-ar.init.AynMemInitqafDotless-ar.init.FaaMemInit&fehThreedotsupbelow-ar.init.FaaMemInit"fehTwodotsbelow-ar.init.FaaMemInitqaf-ar.init.FaaMemInitfeh-ar.init.FaaMemInit$qafThreedotsabove-ar.init.FaaMemInitfehDotless-ar.init.FaaMemInit#fehDotmovedbelow-ar.init.FaaMemInitfehDotbelow-ar.init.FaaMemInitveh-ar.init.FaaMemInit$fehThreedotsbelow-ar.init.FaaMemInitpeheh-ar.init.FaaMemInitqafDotabove-ar.init.FaaMemInitkhah-ar.init.HaaMemInithah-ar.init.HaaMemInit hahHamzaabove-ar.init.HaaMemInittcheheh-ar.init.HaaMemInit$hahThreedotsabove-ar.init.HaaMemInitjeem-ar.init.HaaMemInit*hahTwodotsverticalabove-ar.init.HaaMemInit,hahTwodotshorizontalabove-ar.init.HaaMemInitdyeh-ar.init.HaaMemInit/hahTahTwodotshorizontalabove-ar.init.HaaMemInithahTahbelow-ar.init.HaaMemInitnyeh-ar.init.HaaMemInit tchehDotabove-ar.init.HaaMemInithahFourbelow-ar.init.HaaMemInit&hahThreedotsupbelow-ar.init.HaaMemInithahTahabove-ar.init.HaaMemInittcheh-ar.init.HaaMemInitheh-ar.init.HehMemInithehgoal-ar.init.HehMemInitmeem-ar.medi.KafMemMedi sheenDotbelow-ar.init.SenMemInit+seenTwodotsverticalabove-ar.init.SenMemInitseen-ar.init.SenMemInit%seenVinvertedabove-ar.init.SenMemInit seenFourabove-ar.init.SenMemInitsheen-ar.init.SenMemInit0seenTahTwodotshorizontalabove-ar.init.SenMemInit$seenFourdotsabove-ar.init.SenMemInit'seenDotbelowDotabove-ar.init.SenMemInit%seenThreedotsbelow-ar.init.SenMemInit&sheenThreedotsbelow-ar.init.SenMemInit"sadTwodotsbelow-ar.init.SadMemInitdadDotbelow-ar.init.SadMemInitdad-ar.init.SadMemInitsadThreedots-ar.init.SadMemInitsad-ar.init.SadMemInitmeem-ar.init.MemMemInitmeem-ar.medi.SenMemInit.kehehTwodotshorizontalabove-ar.init.KafYaaIsol&kehehThreedotsbelow-ar.init.KafYaaIsol,kafTwodotshorizontalabove-ar.init.KafYaaIsol(kehehThreedotsupbelow-ar.init.KafYaaIsolkaf-ar.init.KafYaaIsolgafRing-ar.init.KafYaaIsolgueh-ar.init.KafYaaIsol"gafTwodotsbelow-ar.init.KafYaaIsolkafRing-ar.init.KafYaaIsolkafDotabove-ar.init.KafYaaIsolng-ar.init.KafYaaIsol$kafThreedotsbelow-ar.init.KafYaaIsolgaf-ar.init.KafYaaIsolkeheh-ar.init.KafYaaIsolgafThreedots-ar.init.KafYaaIsol&kehehThreedotsabove-ar.init.KafYaaIsol kehehDotabove-ar.init.KafYaaIsolngoeh-ar.init.KafYaaIsol$yehFarsiFourbelow-ar.init.BaaYaaIsolbeheh-ar.init.BaaYaaIsol%yehFarsiThreeabove-ar.init.BaaYaaIsolnoonRing-ar.init.BaaYaaIsol.behThreedotshorizontalbelow-ar.init.BaaYaaIsolbehVabove-ar.init.BaaYaaIsolnoonTahabove-ar.init.BaaYaaIsolyehVabove-ar.init.BaaYaaIsol#yehFarsiTwoabove-ar.init.BaaYaaIsol%noonThreedotsabove-ar.init.BaaYaaIsol yehHamzaabove-ar.init.BaaYaaIsolbehDotless-ar.init.BaaYaaIsolyehKashmiri-ar.init.BaaYaaIsolyeh-ar.init.BaaYaaIsolrnoon-ar.init.BaaYaaIsolteheh-ar.init.BaaYaaIsol$behVinvertedbelow-ar.init.BaaYaaIsol#tehThreedotsdown-ar.init.BaaYaaIsolpeh-ar.init.BaaYaaIsolbeeh-ar.init.BaaYaaIsolbeh-ar.init.BaaYaaIsoltteheh-ar.init.BaaYaaIsol&behThreedotsupabove-ar.init.BaaYaaIsolnoon-ar.init.BaaYaaIsol&tehThreedotsupbelow-ar.init.BaaYaaIsol&behThreedotsupbelow-ar.init.BaaYaaIsolteh-ar.init.BaaYaaIsolhighhamzaYeh-ar.init.BaaYaaIsol$yehFarsiVinverted-ar.init.BaaYaaIsoltheh-ar.init.BaaYaaIsoltteh-ar.init.BaaYaaIsolnoonDotbelow-ar.init.BaaYaaIsolnoonVabove-ar.init.BaaYaaIsolalefMaksura-ar.init.BaaYaaIsoltehRing-ar.init.BaaYaaIsol*behTwodotsbelowDotabove-ar.init.BaaYaaIsol$yehThreedotsbelow-ar.init.BaaYaaIsole-ar.init.BaaYaaIsolnoonghunna-ar.init.BaaYaaIsolyehFarsi-ar.init.BaaYaaIsol#noonTwodotsbelow-ar.init.BaaYaaIsolkhah-ar.init.HaaYaaIsolhah-ar.init.HaaYaaIsol hahHamzaabove-ar.init.HaaYaaIsoltcheheh-ar.init.HaaYaaIsol$hahThreedotsabove-ar.init.HaaYaaIsoljeem-ar.init.HaaYaaIsol*hahTwodotsverticalabove-ar.init.HaaYaaIsol,hahTwodotshorizontalabove-ar.init.HaaYaaIsoldyeh-ar.init.HaaYaaIsol/hahTahTwodotshorizontalabove-ar.init.HaaYaaIsolhahTahbelow-ar.init.HaaYaaIsolnyeh-ar.init.HaaYaaIsol tchehDotabove-ar.init.HaaYaaIsolhahFourbelow-ar.init.HaaYaaIsol&hahThreedotsupbelow-ar.init.HaaYaaIsolhahTahabove-ar.init.HaaYaaIsoltcheh-ar.init.HaaYaaIsolmeemDotabove-ar.init.MemYaaIsolmeem-ar.init.MemYaaIsolmeemDotbelow-ar.init.MemYaaIsolqafDotless-ar.init.FaaYaaIsol&fehThreedotsupbelow-ar.init.FaaYaaIsol"fehTwodotsbelow-ar.init.FaaYaaIsolqaf-ar.init.FaaYaaIsolfeh-ar.init.FaaYaaIsol$qafThreedotsabove-ar.init.FaaYaaIsolfehDotless-ar.init.FaaYaaIsol#fehDotmovedbelow-ar.init.FaaYaaIsolfehDotbelow-ar.init.FaaYaaIsolveh-ar.init.FaaYaaIsol$fehThreedotsbelow-ar.init.FaaYaaIsolpeheh-ar.init.FaaYaaIsolqafDotabove-ar.init.FaaYaaIsol ghainDotbelow-ar.init.AynYaaIsolghain-ar.init.AynYaaIsol(ainThreedotsdownabove-ar.init.AynYaaIsol,ainTwodotshorizontalabove-ar.init.AynYaaIsol*ainTwodotsverticalabove-ar.init.AynYaaIsolainThreedots-ar.init.AynYaaIsolain-ar.init.AynYaaIsollamVabove-ar.init.LamYaaIsol$lamThreedotsabove-ar.init.LamYaaIsollam-ar.init.LamYaaIsol$lamThreedotsbelow-ar.init.LamYaaIsollamDotabove-ar.init.LamYaaIsollamBar-ar.init.LamYaaIsolheh-ar.init.HehYaaIsolhehgoal-ar.init.HehYaaIsol$yehFarsiFourbelow-ar.fina.KafYaaIsol$yehThreedotsbelow-ar.fina.KafYaaIsol#yehFarsiTwoabove-ar.fina.KafYaaIsol)yehFarsiThreedotsabove-ar.fina.KafYaaIsol$yehFarsiVinverted-ar.fina.KafYaaIsol'yehFarsiTwodotsabove-ar.fina.KafYaaIsole-ar.fina.KafYaaIsolalefMaksura-ar.fina.KafYaaIsol%yehFarsiThreeabove-ar.fina.KafYaaIsolyehTail-ar.fina.KafYaaIsolyehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsolyehKashmiri-ar.fina.KafYaaIsolyeh-ar.fina.KafYaaIsolyehVabove-ar.fina.KafYaaIsol.kehehTwodotshorizontalabove-ar.init.KafMemIsol&kehehThreedotsbelow-ar.init.KafMemIsol,kafTwodotshorizontalabove-ar.init.KafMemIsol(kehehThreedotsupbelow-ar.init.KafMemIsolkaf-ar.init.KafMemIsolgafRing-ar.init.KafMemIsolgueh-ar.init.KafMemIsol"gafTwodotsbelow-ar.init.KafMemIsolkafRing-ar.init.KafMemIsolkafDotabove-ar.init.KafMemIsolng-ar.init.KafMemIsol$kafThreedotsbelow-ar.init.KafMemIsolgaf-ar.init.KafMemIsolkeheh-ar.init.KafMemIsolgafThreedots-ar.init.KafMemIsol&kehehThreedotsabove-ar.init.KafMemIsol kehehDotabove-ar.init.KafMemIsolngoeh-ar.init.KafMemIsollamVabove-ar.init.LamMemIsol$lamThreedotsabove-ar.init.LamMemIsollam-ar.init.LamMemIsol$lamThreedotsbelow-ar.init.LamMemIsollamDotabove-ar.init.LamMemIsollamBar-ar.init.LamMemIsol$yehFarsiFourbelow-ar.init.BaaMemIsolbeheh-ar.init.BaaMemIsol%yehFarsiThreeabove-ar.init.BaaMemIsolnoonRing-ar.init.BaaMemIsol.behThreedotshorizontalbelow-ar.init.BaaMemIsolbehVabove-ar.init.BaaMemIsolnoonTahabove-ar.init.BaaMemIsolyehVabove-ar.init.BaaMemIsol#yehFarsiTwoabove-ar.init.BaaMemIsol%noonThreedotsabove-ar.init.BaaMemIsol yehHamzaabove-ar.init.BaaMemIsolbehDotless-ar.init.BaaMemIsolyehKashmiri-ar.init.BaaMemIsolyeh-ar.init.BaaMemIsolrnoon-ar.init.BaaMemIsolteheh-ar.init.BaaMemIsol$behVinvertedbelow-ar.init.BaaMemIsol#tehThreedotsdown-ar.init.BaaMemIsolpeh-ar.init.BaaMemIsolbeeh-ar.init.BaaMemIsolbeh-ar.init.BaaMemIsoltteheh-ar.init.BaaMemIsol&behThreedotsupabove-ar.init.BaaMemIsolnoon-ar.init.BaaMemIsol&tehThreedotsupbelow-ar.init.BaaMemIsol&behThreedotsupbelow-ar.init.BaaMemIsolteh-ar.init.BaaMemIsolhighhamzaYeh-ar.init.BaaMemIsol$yehFarsiVinverted-ar.init.BaaMemIsoltheh-ar.init.BaaMemIsoltteh-ar.init.BaaMemIsolnoonDotbelow-ar.init.BaaMemIsolnoonVabove-ar.init.BaaMemIsolalefMaksura-ar.init.BaaMemIsoltehRing-ar.init.BaaMemIsol*behTwodotsbelowDotabove-ar.init.BaaMemIsol$yehThreedotsbelow-ar.init.BaaMemIsole-ar.init.BaaMemIsolnoonghunna-ar.init.BaaMemIsolyehFarsi-ar.init.BaaMemIsol#noonTwodotsbelow-ar.init.BaaMemIsolmeem-ar.fina.KafMemIsolmeem-ar.medi.MemAlfFina'yehFarsiFourbelow-ar.medi.BaaMemAlfFinabeheh-ar.medi.BaaMemAlfFina(yehFarsiThreeabove-ar.medi.BaaMemAlfFinanoonRing-ar.medi.BaaMemAlfFina1behThreedotshorizontalbelow-ar.medi.BaaMemAlfFinabehVabove-ar.medi.BaaMemAlfFina"noonTahabove-ar.medi.BaaMemAlfFinayehVabove-ar.medi.BaaMemAlfFina&yehFarsiTwoabove-ar.medi.BaaMemAlfFina(noonThreedotsabove-ar.medi.BaaMemAlfFina#yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFina!yehKashmiri-ar.medi.BaaMemAlfFinayeh-ar.medi.BaaMemAlfFinarnoon-ar.medi.BaaMemAlfFinateheh-ar.medi.BaaMemAlfFina'behVinvertedbelow-ar.medi.BaaMemAlfFina&tehThreedotsdown-ar.medi.BaaMemAlfFinapeh-ar.medi.BaaMemAlfFinabeeh-ar.medi.BaaMemAlfFinabeh-ar.medi.BaaMemAlfFinatteheh-ar.medi.BaaMemAlfFina)behThreedotsupabove-ar.medi.BaaMemAlfFinanoon-ar.medi.BaaMemAlfFina)tehThreedotsupbelow-ar.medi.BaaMemAlfFina)behThreedotsupbelow-ar.medi.BaaMemAlfFinateh-ar.medi.BaaMemAlfFina'yehFarsiVinverted-ar.medi.BaaMemAlfFinatheh-ar.medi.BaaMemAlfFinatteh-ar.medi.BaaMemAlfFina"noonDotbelow-ar.medi.BaaMemAlfFina noonVabove-ar.medi.BaaMemAlfFina!alefMaksura-ar.medi.BaaMemAlfFinatehRing-ar.medi.BaaMemAlfFina-behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina'yehThreedotsbelow-ar.medi.BaaMemAlfFinae-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFinayehFarsi-ar.medi.BaaMemAlfFina&noonTwodotsbelow-ar.medi.BaaMemAlfFinameem-ar.medi.BaaMemAlfFinameem-ar.medi.AlfPostTooth!alefHamzabelow-ar.fina.MemAlfFinaalef-ar.fina.MemAlfFina!alefThreeabove-ar.fina.MemAlfFinaalefTwoabove-ar.fina.MemAlfFina!alefHamzaabove-ar.fina.MemAlfFinaalefMadda-ar.fina.MemAlfFina%alefWavyhamzaabove-ar.fina.MemAlfFina%alefWavyhamzabelow-ar.fina.MemAlfFinaalefWasla-ar.fina.MemAlfFina$yehFarsiFourbelow-ar.init.BaaHehInitbeheh-ar.init.BaaHehInit%yehFarsiThreeabove-ar.init.BaaHehInitnoonRing-ar.init.BaaHehInit.behThreedotshorizontalbelow-ar.init.BaaHehInitbehVabove-ar.init.BaaHehInitnoonTahabove-ar.init.BaaHehInityehVabove-ar.init.BaaHehInit#yehFarsiTwoabove-ar.init.BaaHehInit%noonThreedotsabove-ar.init.BaaHehInit yehHamzaabove-ar.init.BaaHehInitbehDotless-ar.init.BaaHehInityehKashmiri-ar.init.BaaHehInityeh-ar.init.BaaHehInitrnoon-ar.init.BaaHehInitteheh-ar.init.BaaHehInit$behVinvertedbelow-ar.init.BaaHehInit#tehThreedotsdown-ar.init.BaaHehInitpeh-ar.init.BaaHehInitbeeh-ar.init.BaaHehInitbeh-ar.init.BaaHehInittteheh-ar.init.BaaHehInit&behThreedotsupabove-ar.init.BaaHehInitnoon-ar.init.BaaHehInit&tehThreedotsupbelow-ar.init.BaaHehInit&behThreedotsupbelow-ar.init.BaaHehInitteh-ar.init.BaaHehInithighhamzaYeh-ar.init.BaaHehInit$yehFarsiVinverted-ar.init.BaaHehInittheh-ar.init.BaaHehInittteh-ar.init.BaaHehInitnoonDotbelow-ar.init.BaaHehInitnoonVabove-ar.init.BaaHehInitalefMaksura-ar.init.BaaHehInittehRing-ar.init.BaaHehInit*behTwodotsbelowDotabove-ar.init.BaaHehInit$yehThreedotsbelow-ar.init.BaaHehInite-ar.init.BaaHehInitnoonghunna-ar.init.BaaHehInityehFarsi-ar.init.BaaHehInit#noonTwodotsbelow-ar.init.BaaHehInit$yehFarsiFourbelow-ar.medi.BaaHehMedibeheh-ar.medi.BaaHehMedi%yehFarsiThreeabove-ar.medi.BaaHehMedinoonRing-ar.medi.BaaHehMedi.behThreedotshorizontalbelow-ar.medi.BaaHehMedibehVabove-ar.medi.BaaHehMedinoonTahabove-ar.medi.BaaHehMediyehVabove-ar.medi.BaaHehMedi#yehFarsiTwoabove-ar.medi.BaaHehMedi%noonThreedotsabove-ar.medi.BaaHehMedi yehHamzaabove-ar.medi.BaaHehMedibehDotless-ar.medi.BaaHehMediyehKashmiri-ar.medi.BaaHehMediyeh-ar.medi.BaaHehMedirnoon-ar.medi.BaaHehMediteheh-ar.medi.BaaHehMedi$behVinvertedbelow-ar.medi.BaaHehMedi#tehThreedotsdown-ar.medi.BaaHehMedipeh-ar.medi.BaaHehMedibeeh-ar.medi.BaaHehMedibeh-ar.medi.BaaHehMeditteheh-ar.medi.BaaHehMedi&behThreedotsupabove-ar.medi.BaaHehMedinoon-ar.medi.BaaHehMedi&tehThreedotsupbelow-ar.medi.BaaHehMedi&behThreedotsupbelow-ar.medi.BaaHehMediteh-ar.medi.BaaHehMedi$yehFarsiVinverted-ar.medi.BaaHehMeditheh-ar.medi.BaaHehMeditteh-ar.medi.BaaHehMedinoonDotbelow-ar.medi.BaaHehMedinoonVabove-ar.medi.BaaHehMedialefMaksura-ar.medi.BaaHehMeditehRing-ar.medi.BaaHehMedi*behTwodotsbelowDotabove-ar.medi.BaaHehMedi$yehThreedotsbelow-ar.medi.BaaHehMedie-ar.medi.BaaHehMedinoonghunna-ar.medi.BaaHehMediyehFarsi-ar.medi.BaaHehMedi#noonTwodotsbelow-ar.medi.BaaHehMediheh-ar.medi.BaaHehMedihehgoal-ar.medi.BaaHehMediheh-ar.medi.PostToothhehgoal-ar.medi.PostToothlamVabove-ar.medi.KafLamMemFina'lamThreedotsabove-ar.medi.KafLamMemFinalam-ar.medi.KafLamMemFina'lamThreedotsbelow-ar.medi.KafLamMemFina!lamDotabove-ar.medi.KafLamMemFinalamBar-ar.medi.KafLamMemFinalamVabove-ar.init.LamLamInit$lamThreedotsabove-ar.init.LamLamInitlam-ar.init.LamLamInit$lamThreedotsbelow-ar.init.LamLamInitlamDotabove-ar.init.LamLamInitlamBar-ar.init.LamLamInitlamVabove-ar.medi.LamLamInit$lamThreedotsabove-ar.medi.LamLamInitlam-ar.medi.LamLamInit$lamThreedotsbelow-ar.medi.LamLamInitlamDotabove-ar.medi.LamLamInitlamBar-ar.medi.LamLamInitlamVabove-ar.medi.LamLamAlfIsol'lamThreedotsabove-ar.medi.LamLamAlfIsollam-ar.medi.LamLamAlfIsol'lamThreedotsbelow-ar.medi.LamLamAlfIsol!lamDotabove-ar.medi.LamLamAlfIsollamBar-ar.medi.LamLamAlfIsol.kehehTwodotshorizontalabove-ar.fina.LamKafIsol&kehehThreedotsbelow-ar.fina.LamKafIsol,kafTwodotshorizontalabove-ar.fina.LamKafIsol(kehehThreedotsupbelow-ar.fina.LamKafIsolkaf-ar.fina.LamKafIsolgafRing-ar.fina.LamKafIsolgueh-ar.fina.LamKafIsol"gafTwodotsbelow-ar.fina.LamKafIsolkafRing-ar.fina.LamKafIsolkafDotabove-ar.fina.LamKafIsolng-ar.fina.LamKafIsol$kafThreedotsbelow-ar.fina.LamKafIsolgaf-ar.fina.LamKafIsolkeheh-ar.fina.LamKafIsolgafThreedots-ar.fina.LamKafIsol&kehehThreedotsabove-ar.fina.LamKafIsol kehehDotabove-ar.fina.LamKafIsolngoeh-ar.fina.LamKafIsollamVabove-ar.fina.LamLamIsol$lamThreedotsabove-ar.fina.LamLamIsollam-ar.fina.LamLamIsol$lamThreedotsbelow-ar.fina.LamLamIsollamDotabove-ar.fina.LamLamIsollamBar-ar.fina.LamLamIsollamVabove-ar.medi.LamLamMedi$lamThreedotsabove-ar.medi.LamLamMedilam-ar.medi.LamLamMedi$lamThreedotsbelow-ar.medi.LamLamMedilamDotabove-ar.medi.LamLamMedilamBar-ar.medi.LamLamMedi lamVabove-ar.medi.LamLamAlefFina(lamThreedotsabove-ar.medi.LamLamAlefFinalam-ar.medi.LamLamAlefFina(lamThreedotsbelow-ar.medi.LamLamAlefFina"lamDotabove-ar.medi.LamLamAlefFinalamBar-ar.medi.LamLamAlefFinalamVabove-ar.medi.LamLamMedi2%lamThreedotsabove-ar.medi.LamLamMedi2lam-ar.medi.LamLamMedi2%lamThreedotsbelow-ar.medi.LamLamMedi2lamDotabove-ar.medi.LamLamMedi2lamBar-ar.medi.LamLamMedi2.kehehTwodotshorizontalabove-ar.fina.LamKafFina&kehehThreedotsbelow-ar.fina.LamKafFina,kafTwodotshorizontalabove-ar.fina.LamKafFina(kehehThreedotsupbelow-ar.fina.LamKafFinakaf-ar.fina.LamKafFinagafRing-ar.fina.LamKafFinagueh-ar.fina.LamKafFina"gafTwodotsbelow-ar.fina.LamKafFinakafRing-ar.fina.LamKafFinakafDotabove-ar.fina.LamKafFinang-ar.fina.LamKafFina$kafThreedotsbelow-ar.fina.LamKafFinagaf-ar.fina.LamKafFinakeheh-ar.fina.LamKafFinagafThreedots-ar.fina.LamKafFina&kehehThreedotsabove-ar.fina.LamKafFina kehehDotabove-ar.fina.LamKafFinangoeh-ar.fina.LamKafFinalamVabove-ar.fina.LamLamFina$lamThreedotsabove-ar.fina.LamLamFinalam-ar.fina.LamLamFina$lamThreedotsbelow-ar.fina.LamLamFinalamDotabove-ar.fina.LamLamFinalamBar-ar.fina.LamLamFinalamVabove-ar.medi.LamLamMemInit'lamThreedotsabove-ar.medi.LamLamMemInitlam-ar.medi.LamLamMemInit'lamThreedotsbelow-ar.medi.LamLamMemInit!lamDotabove-ar.medi.LamLamMemInitlamBar-ar.medi.LamLamMemInitlamVabove-ar.medi.LamLamHehIsol'lamThreedotsabove-ar.medi.LamLamHehIsollam-ar.medi.LamLamHehIsol'lamThreedotsbelow-ar.medi.LamLamHehIsol!lamDotabove-ar.medi.LamLamHehIsollamBar-ar.medi.LamLamHehIsollamVabove-ar.medi.LamLamYaaIsol'lamThreedotsabove-ar.medi.LamLamYaaIsollam-ar.medi.LamLamYaaIsol'lamThreedotsbelow-ar.medi.LamLamYaaIsol!lamDotabove-ar.medi.LamLamYaaIsollamBar-ar.medi.LamLamYaaIsollamVabove-ar.medi.LamLamMemMedi'lamThreedotsabove-ar.medi.LamLamMemMedilam-ar.medi.LamLamMemMedi'lamThreedotsbelow-ar.medi.LamLamMemMedi!lamDotabove-ar.medi.LamLamMemMedilamBar-ar.medi.LamLamMemMedilamVabove-ar.medi.LamLamHehFina'lamThreedotsabove-ar.medi.LamLamHehFinalam-ar.medi.LamLamHehFina'lamThreedotsbelow-ar.medi.LamLamHehFina!lamDotabove-ar.medi.LamLamHehFinalamBar-ar.medi.LamLamHehFinalamVabove-ar.medi.LamLamYaaFina'lamThreedotsabove-ar.medi.LamLamYaaFinalam-ar.medi.LamLamYaaFina'lamThreedotsbelow-ar.medi.LamLamYaaFina!lamDotabove-ar.medi.LamLamYaaFinalamBar-ar.medi.LamLamYaaFinakhah-ar.medi.1LamHaaHaaInithah-ar.medi.1LamHaaHaaInit$hahHamzaabove-ar.medi.1LamHaaHaaInittcheheh-ar.medi.1LamHaaHaaInit(hahThreedotsabove-ar.medi.1LamHaaHaaInitjeem-ar.medi.1LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInitdyeh-ar.medi.1LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit"hahTahbelow-ar.medi.1LamHaaHaaInitnyeh-ar.medi.1LamHaaHaaInit$tchehDotabove-ar.medi.1LamHaaHaaInit#hahFourbelow-ar.medi.1LamHaaHaaInit*hahThreedotsupbelow-ar.medi.1LamHaaHaaInit"hahTahabove-ar.medi.1LamHaaHaaInittcheh-ar.medi.1LamHaaHaaInitkhah-ar.medi.2LamHaaHaaInithah-ar.medi.2LamHaaHaaInit$hahHamzaabove-ar.medi.2LamHaaHaaInittcheheh-ar.medi.2LamHaaHaaInit(hahThreedotsabove-ar.medi.2LamHaaHaaInitjeem-ar.medi.2LamHaaHaaInit.hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit0hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInitdyeh-ar.medi.2LamHaaHaaInit3hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit"hahTahbelow-ar.medi.2LamHaaHaaInitnyeh-ar.medi.2LamHaaHaaInit$tchehDotabove-ar.medi.2LamHaaHaaInit#hahFourbelow-ar.medi.2LamHaaHaaInit*hahThreedotsupbelow-ar.medi.2LamHaaHaaInit"hahTahabove-ar.medi.2LamHaaHaaInittcheh-ar.medi.2LamHaaHaaInitkafswash-ar.initkafswash-ar.medikafswash-ar.finaalefHamzabelow-ar.LowHamzaalefWavyhamzabelow-ar.LowHamzabeheh-ar.init.LDnoonThreedotsabove-ar.init.LDpeh-ar.init.LDbeeh-ar.init.LDbeh-ar.init.LDnoonTwodotsbelow-ar.init.LDyehFarsiVinverted-ar.init.LDyehFarsiFourbelow-ar.init.LDyehFarsiThreeabove-ar.init.LDyehFarsiTwoabove-ar.init.LDyehFarsi-ar.init.LDyeh-ar.init.LDyehVabove-ar.init.LDbehThreedotsupabove-ar.init.LD&behThreedotshorizontalbelow-ar.init.LDtehThreedotsupbelow-ar.init.LDbehThreedotsupbelow-ar.init.LDbehVinvertedbelow-ar.init.LD"behTwodotsbelowDotabove-ar.init.LDnoonDotbelow-ar.init.LDyehThreedotsbelow-ar.init.LD e-ar.init.LDbeheh-ar.init.BaaRaaIsolLD'noonThreedotsabove-ar.init.BaaRaaIsolLDpeh-ar.init.BaaRaaIsolLDbeeh-ar.init.BaaRaaIsolLDbeh-ar.init.BaaRaaIsolLD%noonTwodotsbelow-ar.init.BaaRaaIsolLD&yehFarsiVinverted-ar.init.BaaRaaIsolLD&yehFarsiFourbelow-ar.init.BaaRaaIsolLD'yehFarsiThreeabove-ar.init.BaaRaaIsolLD%yehFarsiTwoabove-ar.init.BaaRaaIsolLDyehFarsi-ar.init.BaaRaaIsolLDyeh-ar.init.BaaRaaIsolLDyehVabove-ar.init.BaaRaaIsolLD(behThreedotsupabove-ar.init.BaaRaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD(tehThreedotsupbelow-ar.init.BaaRaaIsolLD(behThreedotsupbelow-ar.init.BaaRaaIsolLD&behVinvertedbelow-ar.init.BaaRaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD!noonDotbelow-ar.init.BaaRaaIsolLD&yehThreedotsbelow-ar.init.BaaRaaIsolLDe-ar.init.BaaRaaIsolLDbeheh-ar.init.BaaDalLD#noonThreedotsabove-ar.init.BaaDalLDpeh-ar.init.BaaDalLDbeeh-ar.init.BaaDalLDbeh-ar.init.BaaDalLD!noonTwodotsbelow-ar.init.BaaDalLD"yehFarsiVinverted-ar.init.BaaDalLD"yehFarsiFourbelow-ar.init.BaaDalLD#yehFarsiThreeabove-ar.init.BaaDalLD!yehFarsiTwoabove-ar.init.BaaDalLDyehFarsi-ar.init.BaaDalLDyeh-ar.init.BaaDalLDyehVabove-ar.init.BaaDalLD$behThreedotsupabove-ar.init.BaaDalLD,behThreedotshorizontalbelow-ar.init.BaaDalLD$tehThreedotsupbelow-ar.init.BaaDalLD$behThreedotsupbelow-ar.init.BaaDalLD"behVinvertedbelow-ar.init.BaaDalLD(behTwodotsbelowDotabove-ar.init.BaaDalLDnoonDotbelow-ar.init.BaaDalLD"yehThreedotsbelow-ar.init.BaaDalLDe-ar.init.BaaDalLDbeheh-ar.init.BaaMemHaaInitLD*noonThreedotsabove-ar.init.BaaMemHaaInitLDpeh-ar.init.BaaMemHaaInitLDbeeh-ar.init.BaaMemHaaInitLDbeh-ar.init.BaaMemHaaInitLD(noonTwodotsbelow-ar.init.BaaMemHaaInitLD)yehFarsiVinverted-ar.init.BaaMemHaaInitLD)yehFarsiFourbelow-ar.init.BaaMemHaaInitLD*yehFarsiThreeabove-ar.init.BaaMemHaaInitLD(yehFarsiTwoabove-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLDyeh-ar.init.BaaMemHaaInitLD!yehVabove-ar.init.BaaMemHaaInitLD+behThreedotsupabove-ar.init.BaaMemHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD+tehThreedotsupbelow-ar.init.BaaMemHaaInitLD+behThreedotsupbelow-ar.init.BaaMemHaaInitLD)behVinvertedbelow-ar.init.BaaMemHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD$noonDotbelow-ar.init.BaaMemHaaInitLD)yehThreedotsbelow-ar.init.BaaMemHaaInitLDe-ar.init.BaaMemHaaInitLDbeheh-ar.init.BaaBaaYaaLD&noonThreedotsabove-ar.init.BaaBaaYaaLDpeh-ar.init.BaaBaaYaaLDbeeh-ar.init.BaaBaaYaaLDbeh-ar.init.BaaBaaYaaLD$noonTwodotsbelow-ar.init.BaaBaaYaaLD%yehFarsiVinverted-ar.init.BaaBaaYaaLD%yehFarsiFourbelow-ar.init.BaaBaaYaaLD&yehFarsiThreeabove-ar.init.BaaBaaYaaLD$yehFarsiTwoabove-ar.init.BaaBaaYaaLDyehFarsi-ar.init.BaaBaaYaaLDyeh-ar.init.BaaBaaYaaLDyehVabove-ar.init.BaaBaaYaaLD'behThreedotsupabove-ar.init.BaaBaaYaaLD/behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD'tehThreedotsupbelow-ar.init.BaaBaaYaaLD'behThreedotsupbelow-ar.init.BaaBaaYaaLD%behVinvertedbelow-ar.init.BaaBaaYaaLD+behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD noonDotbelow-ar.init.BaaBaaYaaLD%yehThreedotsbelow-ar.init.BaaBaaYaaLDe-ar.init.BaaBaaYaaLDbeheh-ar.init.BaaNonIsolLD'noonThreedotsabove-ar.init.BaaNonIsolLDpeh-ar.init.BaaNonIsolLDbeeh-ar.init.BaaNonIsolLDbeh-ar.init.BaaNonIsolLD%noonTwodotsbelow-ar.init.BaaNonIsolLD&yehFarsiVinverted-ar.init.BaaNonIsolLD&yehFarsiFourbelow-ar.init.BaaNonIsolLD'yehFarsiThreeabove-ar.init.BaaNonIsolLD%yehFarsiTwoabove-ar.init.BaaNonIsolLDyehFarsi-ar.init.BaaNonIsolLDyeh-ar.init.BaaNonIsolLDyehVabove-ar.init.BaaNonIsolLD(behThreedotsupabove-ar.init.BaaNonIsolLD0behThreedotshorizontalbelow-ar.init.BaaNonIsolLD(tehThreedotsupbelow-ar.init.BaaNonIsolLD(behThreedotsupbelow-ar.init.BaaNonIsolLD&behVinvertedbelow-ar.init.BaaNonIsolLD,behTwodotsbelowDotabove-ar.init.BaaNonIsolLD!noonDotbelow-ar.init.BaaNonIsolLD&yehThreedotsbelow-ar.init.BaaNonIsolLDe-ar.init.BaaNonIsolLDbeheh-ar.init.BaaSenInitLD'noonThreedotsabove-ar.init.BaaSenInitLDpeh-ar.init.BaaSenInitLDbeeh-ar.init.BaaSenInitLDbeh-ar.init.BaaSenInitLD%noonTwodotsbelow-ar.init.BaaSenInitLD&yehFarsiVinverted-ar.init.BaaSenInitLD&yehFarsiFourbelow-ar.init.BaaSenInitLD'yehFarsiThreeabove-ar.init.BaaSenInitLD%yehFarsiTwoabove-ar.init.BaaSenInitLDyehFarsi-ar.init.BaaSenInitLDyeh-ar.init.BaaSenInitLDyehVabove-ar.init.BaaSenInitLD(behThreedotsupabove-ar.init.BaaSenInitLD0behThreedotshorizontalbelow-ar.init.BaaSenInitLD(tehThreedotsupbelow-ar.init.BaaSenInitLD(behThreedotsupbelow-ar.init.BaaSenInitLD&behVinvertedbelow-ar.init.BaaSenInitLD,behTwodotsbelowDotabove-ar.init.BaaSenInitLD!noonDotbelow-ar.init.BaaSenInitLD&yehThreedotsbelow-ar.init.BaaSenInitLDe-ar.init.BaaSenInitLDbeheh-ar.init.BaaMemInitLD'noonThreedotsabove-ar.init.BaaMemInitLDpeh-ar.init.BaaMemInitLDbeeh-ar.init.BaaMemInitLDbeh-ar.init.BaaMemInitLD%noonTwodotsbelow-ar.init.BaaMemInitLD&yehFarsiVinverted-ar.init.BaaMemInitLD&yehFarsiFourbelow-ar.init.BaaMemInitLD'yehFarsiThreeabove-ar.init.BaaMemInitLD%yehFarsiTwoabove-ar.init.BaaMemInitLDyehFarsi-ar.init.BaaMemInitLDyeh-ar.init.BaaMemInitLDyehVabove-ar.init.BaaMemInitLD(behThreedotsupabove-ar.init.BaaMemInitLD0behThreedotshorizontalbelow-ar.init.BaaMemInitLD(tehThreedotsupbelow-ar.init.BaaMemInitLD(behThreedotsupbelow-ar.init.BaaMemInitLD&behVinvertedbelow-ar.init.BaaMemInitLD,behTwodotsbelowDotabove-ar.init.BaaMemInitLD!noonDotbelow-ar.init.BaaMemInitLD&yehThreedotsbelow-ar.init.BaaMemInitLDe-ar.init.BaaMemInitLDbeheh-ar.init.BaaBaaHaaInitLD*noonThreedotsabove-ar.init.BaaBaaHaaInitLDpeh-ar.init.BaaBaaHaaInitLDbeeh-ar.init.BaaBaaHaaInitLDbeh-ar.init.BaaBaaHaaInitLD(noonTwodotsbelow-ar.init.BaaBaaHaaInitLD)yehFarsiVinverted-ar.init.BaaBaaHaaInitLD)yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD*yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD(yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD yehFarsi-ar.init.BaaBaaHaaInitLDyeh-ar.init.BaaBaaHaaInitLD!yehVabove-ar.init.BaaBaaHaaInitLD+behThreedotsupabove-ar.init.BaaBaaHaaInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD+tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD+behThreedotsupbelow-ar.init.BaaBaaHaaInitLD)behVinvertedbelow-ar.init.BaaBaaHaaInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD$noonDotbelow-ar.init.BaaBaaHaaInitLD)yehThreedotsbelow-ar.init.BaaBaaHaaInitLDe-ar.init.BaaBaaHaaInitLDbeheh-ar.init.BaaBaaIsolLD'noonThreedotsabove-ar.init.BaaBaaIsolLDpeh-ar.init.BaaBaaIsolLDbeeh-ar.init.BaaBaaIsolLDbeh-ar.init.BaaBaaIsolLD%noonTwodotsbelow-ar.init.BaaBaaIsolLD&yehFarsiVinverted-ar.init.BaaBaaIsolLD&yehFarsiFourbelow-ar.init.BaaBaaIsolLD'yehFarsiThreeabove-ar.init.BaaBaaIsolLD%yehFarsiTwoabove-ar.init.BaaBaaIsolLDyehFarsi-ar.init.BaaBaaIsolLDyeh-ar.init.BaaBaaIsolLDyehVabove-ar.init.BaaBaaIsolLD(behThreedotsupabove-ar.init.BaaBaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD(tehThreedotsupbelow-ar.init.BaaBaaIsolLD(behThreedotsupbelow-ar.init.BaaBaaIsolLD&behVinvertedbelow-ar.init.BaaBaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD!noonDotbelow-ar.init.BaaBaaIsolLD&yehThreedotsbelow-ar.init.BaaBaaIsolLDe-ar.init.BaaBaaIsolLDbeheh-ar.init.BaaBaaMemInitLD*noonThreedotsabove-ar.init.BaaBaaMemInitLDpeh-ar.init.BaaBaaMemInitLDbeeh-ar.init.BaaBaaMemInitLDbeh-ar.init.BaaBaaMemInitLD(noonTwodotsbelow-ar.init.BaaBaaMemInitLD)yehFarsiVinverted-ar.init.BaaBaaMemInitLD)yehFarsiFourbelow-ar.init.BaaBaaMemInitLD*yehFarsiThreeabove-ar.init.BaaBaaMemInitLD(yehFarsiTwoabove-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLDyeh-ar.init.BaaBaaMemInitLD!yehVabove-ar.init.BaaBaaMemInitLD+behThreedotsupabove-ar.init.BaaBaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD+tehThreedotsupbelow-ar.init.BaaBaaMemInitLD+behThreedotsupbelow-ar.init.BaaBaaMemInitLD)behVinvertedbelow-ar.init.BaaBaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD$noonDotbelow-ar.init.BaaBaaMemInitLD)yehThreedotsbelow-ar.init.BaaBaaMemInitLDe-ar.init.BaaBaaMemInitLDbeheh-ar.init.BaaSenAltInitLD*noonThreedotsabove-ar.init.BaaSenAltInitLDpeh-ar.init.BaaSenAltInitLDbeeh-ar.init.BaaSenAltInitLDbeh-ar.init.BaaSenAltInitLD(noonTwodotsbelow-ar.init.BaaSenAltInitLD)yehFarsiVinverted-ar.init.BaaSenAltInitLD)yehFarsiFourbelow-ar.init.BaaSenAltInitLD*yehFarsiThreeabove-ar.init.BaaSenAltInitLD(yehFarsiTwoabove-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLDyeh-ar.init.BaaSenAltInitLD!yehVabove-ar.init.BaaSenAltInitLD+behThreedotsupabove-ar.init.BaaSenAltInitLD3behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD+tehThreedotsupbelow-ar.init.BaaSenAltInitLD+behThreedotsupbelow-ar.init.BaaSenAltInitLD)behVinvertedbelow-ar.init.BaaSenAltInitLD/behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD$noonDotbelow-ar.init.BaaSenAltInitLD)yehThreedotsbelow-ar.init.BaaSenAltInitLDe-ar.init.BaaSenAltInitLDbeheh-ar.init.BaaHaaInitLD'noonThreedotsabove-ar.init.BaaHaaInitLDpeh-ar.init.BaaHaaInitLDbeeh-ar.init.BaaHaaInitLDbeh-ar.init.BaaHaaInitLD%noonTwodotsbelow-ar.init.BaaHaaInitLD&yehFarsiVinverted-ar.init.BaaHaaInitLD&yehFarsiFourbelow-ar.init.BaaHaaInitLD'yehFarsiThreeabove-ar.init.BaaHaaInitLD%yehFarsiTwoabove-ar.init.BaaHaaInitLDyehFarsi-ar.init.BaaHaaInitLDyeh-ar.init.BaaHaaInitLDyehVabove-ar.init.BaaHaaInitLD(behThreedotsupabove-ar.init.BaaHaaInitLD0behThreedotshorizontalbelow-ar.init.BaaHaaInitLD(tehThreedotsupbelow-ar.init.BaaHaaInitLD(behThreedotsupbelow-ar.init.BaaHaaInitLD&behVinvertedbelow-ar.init.BaaHaaInitLD,behTwodotsbelowDotabove-ar.init.BaaHaaInitLD!noonDotbelow-ar.init.BaaHaaInitLD&yehThreedotsbelow-ar.init.BaaHaaInitLDe-ar.init.BaaHaaInitLDbeheh-ar.init.BaaHaaMemInitLD*noonThreedotsabove-ar.init.BaaHaaMemInitLDpeh-ar.init.BaaHaaMemInitLDbeeh-ar.init.BaaHaaMemInitLDbeh-ar.init.BaaHaaMemInitLD(noonTwodotsbelow-ar.init.BaaHaaMemInitLD)yehFarsiVinverted-ar.init.BaaHaaMemInitLD)yehFarsiFourbelow-ar.init.BaaHaaMemInitLD*yehFarsiThreeabove-ar.init.BaaHaaMemInitLD(yehFarsiTwoabove-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLDyeh-ar.init.BaaHaaMemInitLD!yehVabove-ar.init.BaaHaaMemInitLD+behThreedotsupabove-ar.init.BaaHaaMemInitLD3behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD+tehThreedotsupbelow-ar.init.BaaHaaMemInitLD+behThreedotsupbelow-ar.init.BaaHaaMemInitLD)behVinvertedbelow-ar.init.BaaHaaMemInitLD/behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD$noonDotbelow-ar.init.BaaHaaMemInitLD)yehThreedotsbelow-ar.init.BaaHaaMemInitLDe-ar.init.BaaHaaMemInitLDbeheh-ar.init.HighLD!noonThreedotsabove-ar.init.HighLDpeh-ar.init.HighLDbeeh-ar.init.HighLDbeh-ar.init.HighLDnoonTwodotsbelow-ar.init.HighLD yehFarsiVinverted-ar.init.HighLD yehFarsiFourbelow-ar.init.HighLD!yehFarsiThreeabove-ar.init.HighLDyehFarsiTwoabove-ar.init.HighLDyehFarsi-ar.init.HighLDyeh-ar.init.HighLDyehVabove-ar.init.HighLD"behThreedotsupabove-ar.init.HighLD*behThreedotshorizontalbelow-ar.init.HighLD"tehThreedotsupbelow-ar.init.HighLD"behThreedotsupbelow-ar.init.HighLD behVinvertedbelow-ar.init.HighLD&behTwodotsbelowDotabove-ar.init.HighLDnoonDotbelow-ar.init.HighLD yehThreedotsbelow-ar.init.HighLDe-ar.init.HighLDbeheh-ar.init.WideLD!noonThreedotsabove-ar.init.WideLDpeh-ar.init.WideLDbeeh-ar.init.WideLDbeh-ar.init.WideLDnoonTwodotsbelow-ar.init.WideLD yehFarsiVinverted-ar.init.WideLD yehFarsiFourbelow-ar.init.WideLD!yehFarsiThreeabove-ar.init.WideLDyehFarsiTwoabove-ar.init.WideLDyehFarsi-ar.init.WideLDyeh-ar.init.WideLDyehVabove-ar.init.WideLD"behThreedotsupabove-ar.init.WideLD*behThreedotshorizontalbelow-ar.init.WideLD"tehThreedotsupbelow-ar.init.WideLD"behThreedotsupbelow-ar.init.WideLD behVinvertedbelow-ar.init.WideLD&behTwodotsbelowDotabove-ar.init.WideLDnoonDotbelow-ar.init.WideLD yehThreedotsbelow-ar.init.WideLDe-ar.init.WideLDbeheh-ar.init.BaaYaaIsolLD'noonThreedotsabove-ar.init.BaaYaaIsolLDpeh-ar.init.BaaYaaIsolLDbeeh-ar.init.BaaYaaIsolLDbeh-ar.init.BaaYaaIsolLD%noonTwodotsbelow-ar.init.BaaYaaIsolLD&yehFarsiVinverted-ar.init.BaaYaaIsolLD&yehFarsiFourbelow-ar.init.BaaYaaIsolLD'yehFarsiThreeabove-ar.init.BaaYaaIsolLD%yehFarsiTwoabove-ar.init.BaaYaaIsolLDyehFarsi-ar.init.BaaYaaIsolLDyeh-ar.init.BaaYaaIsolLDyehVabove-ar.init.BaaYaaIsolLD(behThreedotsupabove-ar.init.BaaYaaIsolLD0behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD(tehThreedotsupbelow-ar.init.BaaYaaIsolLD(behThreedotsupbelow-ar.init.BaaYaaIsolLD&behVinvertedbelow-ar.init.BaaYaaIsolLD,behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD!noonDotbelow-ar.init.BaaYaaIsolLD&yehThreedotsbelow-ar.init.BaaYaaIsolLDe-ar.init.BaaYaaIsolLDbeheh-ar.init.BaaMemIsolLD'noonThreedotsabove-ar.init.BaaMemIsolLDpeh-ar.init.BaaMemIsolLDbeeh-ar.init.BaaMemIsolLDbeh-ar.init.BaaMemIsolLD%noonTwodotsbelow-ar.init.BaaMemIsolLD&yehFarsiVinverted-ar.init.BaaMemIsolLD&yehFarsiFourbelow-ar.init.BaaMemIsolLD'yehFarsiThreeabove-ar.init.BaaMemIsolLD%yehFarsiTwoabove-ar.init.BaaMemIsolLDyehFarsi-ar.init.BaaMemIsolLDyeh-ar.init.BaaMemIsolLDyehVabove-ar.init.BaaMemIsolLD(behThreedotsupabove-ar.init.BaaMemIsolLD0behThreedotshorizontalbelow-ar.init.BaaMemIsolLD(tehThreedotsupbelow-ar.init.BaaMemIsolLD(behThreedotsupbelow-ar.init.BaaMemIsolLD&behVinvertedbelow-ar.init.BaaMemIsolLD,behTwodotsbelowDotabove-ar.init.BaaMemIsolLD!noonDotbelow-ar.init.BaaMemIsolLD&yehThreedotsbelow-ar.init.BaaMemIsolLDe-ar.init.BaaMemIsolLDbeheh-ar.init.BaaHehInitLD'noonThreedotsabove-ar.init.BaaHehInitLDpeh-ar.init.BaaHehInitLDbeeh-ar.init.BaaHehInitLDbeh-ar.init.BaaHehInitLD%noonTwodotsbelow-ar.init.BaaHehInitLD&yehFarsiVinverted-ar.init.BaaHehInitLD&yehFarsiFourbelow-ar.init.BaaHehInitLD'yehFarsiThreeabove-ar.init.BaaHehInitLD%yehFarsiTwoabove-ar.init.BaaHehInitLDyehFarsi-ar.init.BaaHehInitLDyeh-ar.init.BaaHehInitLDyehVabove-ar.init.BaaHehInitLD(behThreedotsupabove-ar.init.BaaHehInitLD0behThreedotshorizontalbelow-ar.init.BaaHehInitLD(tehThreedotsupbelow-ar.init.BaaHehInitLD(behThreedotsupbelow-ar.init.BaaHehInitLD&behVinvertedbelow-ar.init.BaaHehInitLD,behTwodotsbelowDotabove-ar.init.BaaHehInitLD!noonDotbelow-ar.init.BaaHehInitLD&yehThreedotsbelow-ar.init.BaaHehInitLDe-ar.init.BaaHehInitLDyehKashmiri-ar.initLD yehKashmiri-ar.init.BaaRaaIsolLDyehKashmiri-ar.init.BaaDalLD#yehKashmiri-ar.init.BaaMemHaaInitLDyehKashmiri-ar.init.BaaBaaYaaLD yehKashmiri-ar.init.BaaNonIsolLD yehKashmiri-ar.init.BaaSenInitLD yehKashmiri-ar.init.BaaMemInitLD#yehKashmiri-ar.init.BaaBaaHaaInitLD yehKashmiri-ar.init.BaaBaaIsolLD#yehKashmiri-ar.init.BaaBaaMemInitLD#yehKashmiri-ar.init.BaaSenAltInitLD yehKashmiri-ar.init.BaaHaaInitLD#yehKashmiri-ar.init.BaaHaaMemInitLDyehKashmiri-ar.init.HighLDyehKashmiri-ar.init.WideLD yehKashmiri-ar.init.BaaYaaIsolLD yehKashmiri-ar.init.BaaMemIsolLD yehKashmiri-ar.init.BaaHehInitLDmeemDotabove-ar.init.MemHehInitaMem.init.MemHehInitmeem-ar.init.MemHehInitmeemDotbelow-ar.init.MemHehInitalefabove-ar.isolalefabove-ar.medi hamza-ar.medihamza-ar.floatkashida-ar.long1 zero-ar.small one-ar.small two-ar.smallthree-ar.small four-ar.small five-ar.small six-ar.smallseven-ar.smalleight-ar.small nine-ar.smallzeroFarsi-ar.smalloneFarsi-ar.smalltwoFarsi-ar.smallthreeFarsi-ar.smallfourFarsi-ar.smallfiveFarsi-ar.smallsixFarsi-ar.smallsevenFarsi-ar.smalleightFarsi-ar.smallnineFarsi-ar.smallfourFarsi-ar.urd.smallsixFarsi-ar.urd.smallsevenFarsi-ar.urd.smallopenfathatan-ar.smallfatha-ar.small2dammatan-ar.smallhighwaw-ar.mediyehabove-ar.medi radical.rtlm dot.percentmeem-ar.medi.KafMemMediTatweelmeem-ar.fina.LamMemFinaExtendedmeem-ar.fina.KafMemFinaExtendedaMem.fina.Extendedmeem-ar.fina.KafMemIsolExtended kashida-ar.1alef-ar.fina.Tatweel kashida-ar.2 kashida-ar.3 kashida-ar.4#sheenDotbelow-ar.init.SenBaaMemInit.seenTwodotsverticalabove-ar.init.SenBaaMemInitseen-ar.init.SenBaaMemInit(seenVinvertedabove-ar.init.SenBaaMemInit#seenFourabove-ar.init.SenBaaMemInitsheen-ar.init.SenBaaMemInit3seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit'seenFourdotsabove-ar.init.SenBaaMemInit*seenDotbelowDotabove-ar.init.SenBaaMemInit(seenThreedotsbelow-ar.init.SenBaaMemInit)sheenThreedotsbelow-ar.init.SenBaaMemInit%sadTwodotsbelow-ar.init.SenBaaMemInit!dadDotbelow-ar.init.SenBaaMemInitdad-ar.init.SenBaaMemInit"sadThreedots-ar.init.SenBaaMemInitsad-ar.init.SenBaaMemInit aYaaBari.isol aYaaBari.finaaYaaBari.fina.PostToothaSen.init.YaaBariaSad.init.YaaBariyehbarreeThreeabove-ar.fina%yehbarreeThreeabove-ar.fina.PostToothyehbarreeTwoabove-ar.fina#yehbarreeTwoabove-ar.fina.PostToothyehbarree-ar.finayehbarree-ar.fina.PostToothsheenDotbelow-ar.init.YaaBari(seenTwodotsverticalabove-ar.init.YaaBariseen-ar.init.YaaBari"seenVinvertedabove-ar.init.YaaBariseenFourabove-ar.init.YaaBarisheen-ar.init.YaaBari-seenTahTwodotshorizontalabove-ar.init.YaaBari!seenFourdotsabove-ar.init.YaaBari$seenDotbelowDotabove-ar.init.YaaBari"seenThreedotsbelow-ar.init.YaaBari#sheenThreedotsbelow-ar.init.YaaBarisadTwodotsbelow-ar.init.YaaBaridadDotbelow-ar.init.YaaBaridad-ar.init.YaaBarisadThreedots-ar.init.YaaBarisad-ar.init.YaaBariaYaaBari.fina.PostAscenderalef-ar.fina.WideaBaa.init.YaaBariaFaa.init.YaaBariwawSmall-ar.lowaLam.init.YaaBariaKaf.init.YaaBari+kehehTwodotshorizontalabove-ar.init.YaaBari#kehehThreedotsbelow-ar.init.YaaBari)kafTwodotshorizontalabove-ar.init.YaaBari%kehehThreedotsupbelow-ar.init.YaaBarikaf-ar.init.YaaBarigafRing-ar.init.YaaBarigueh-ar.init.YaaBarigafTwodotsbelow-ar.init.YaaBarikafRing-ar.init.YaaBarikafDotabove-ar.init.YaaBaring-ar.init.YaaBari!kafThreedotsbelow-ar.init.YaaBarigaf-ar.init.YaaBarikeheh-ar.init.YaaBarigafThreedots-ar.init.YaaBari#kehehThreedotsabove-ar.init.YaaBarikehehDotabove-ar.init.YaaBaringoeh-ar.init.YaaBari!yehFarsiFourbelow-ar.init.YaaBaribeheh-ar.init.YaaBari"yehFarsiThreeabove-ar.init.YaaBarinoonRing-ar.init.YaaBari+behThreedotshorizontalbelow-ar.init.YaaBaribehVabove-ar.init.YaaBarinoonTahabove-ar.init.YaaBariyehVabove-ar.init.YaaBari yehFarsiTwoabove-ar.init.YaaBari"noonThreedotsabove-ar.init.YaaBariyehHamzaabove-ar.init.YaaBaribehDotless-ar.init.YaaBariyehKashmiri-ar.init.YaaBariyeh-ar.init.YaaBarirnoon-ar.init.YaaBariteheh-ar.init.YaaBari!behVinvertedbelow-ar.init.YaaBari tehThreedotsdown-ar.init.YaaBaripeh-ar.init.YaaBaribeeh-ar.init.YaaBaribeh-ar.init.YaaBaritteheh-ar.init.YaaBari#behThreedotsupabove-ar.init.YaaBarinoon-ar.init.YaaBari#tehThreedotsupbelow-ar.init.YaaBari#behThreedotsupbelow-ar.init.YaaBariteh-ar.init.YaaBarihighhamzaYeh-ar.init.YaaBari!yehFarsiVinverted-ar.init.YaaBaritheh-ar.init.YaaBaritteh-ar.init.YaaBarinoonDotbelow-ar.init.YaaBarinoonVabove-ar.init.YaaBarialefMaksura-ar.init.YaaBaritehRing-ar.init.YaaBari'behTwodotsbelowDotabove-ar.init.YaaBari!yehThreedotsbelow-ar.init.YaaBarie-ar.init.YaaBarinoonghunna-ar.init.YaaBariyehFarsi-ar.init.YaaBari noonTwodotsbelow-ar.init.YaaBari(yehbarreeThreeabove-ar.fina.PostAscender&yehbarreeTwoabove-ar.fina.PostAscenderyehbarree-ar.fina.PostAscenderlamVabove-ar.init.YaaBari!lamThreedotsabove-ar.init.YaaBarilam-ar.init.YaaBari!lamThreedotsbelow-ar.init.YaaBarilamDotabove-ar.init.YaaBarilamBar-ar.init.YaaBariqafDotless-ar.init.YaaBari#fehThreedotsupbelow-ar.init.YaaBarifehTwodotsbelow-ar.init.YaaBariqaf-ar.init.YaaBarifeh-ar.init.YaaBari!qafThreedotsabove-ar.init.YaaBarifehDotless-ar.init.YaaBari fehDotmovedbelow-ar.init.YaaBarifehDotbelow-ar.init.YaaBariveh-ar.init.YaaBari!fehThreedotsbelow-ar.init.YaaBaripeheh-ar.init.YaaBariqafDotabove-ar.init.YaaBariaYaaBari.fina.PostAynaHaa.init.YaaBariaAyn.init.YaaBariaMem.init.YaaBari#yehbarreeThreeabove-ar.fina.PostAyn!yehbarreeTwoabove-ar.fina.PostAynyehbarree-ar.fina.PostAynmeemDotabove-ar.init.YaaBarimeem-ar.init.YaaBarimeemDotbelow-ar.init.YaaBarikhah-ar.init.YaaBarihah-ar.init.YaaBarihahHamzaabove-ar.init.YaaBaritcheheh-ar.init.YaaBari!hahThreedotsabove-ar.init.YaaBarijeem-ar.init.YaaBari'hahTwodotsverticalabove-ar.init.YaaBari)hahTwodotshorizontalabove-ar.init.YaaBaridyeh-ar.init.YaaBari,hahTahTwodotshorizontalabove-ar.init.YaaBarihahTahbelow-ar.init.YaaBarinyeh-ar.init.YaaBaritchehDotabove-ar.init.YaaBarihahFourbelow-ar.init.YaaBari#hahThreedotsupbelow-ar.init.YaaBarihahTahabove-ar.init.YaaBaritcheh-ar.init.YaaBarighainDotbelow-ar.init.YaaBarighain-ar.init.YaaBari%ainThreedotsdownabove-ar.init.YaaBari)ainTwodotshorizontalabove-ar.init.YaaBari'ainTwodotsverticalabove-ar.init.YaaBariainThreedots-ar.init.YaaBariain-ar.init.YaaBariaHeh.init.YaaBariheh-ar.init.YaaBarihehgoal-ar.init.YaaBariaTaa.init.YaaBareezah-ar.init.YaaBaritah-ar.init.YaaBaritahThreedots-ar.init.YaaBariaHehKnotted.isolhehDoachashmee-ar.inithehVinvertedabove-ar.inithehDoachashmee-ar.finahehVinvertedabove-ar.finahehDoachashmee-ar.medihehVinvertedabove-ar.mediaHehKnotted.finaaHeh.medi.HehYaaFinaheh-ar.medi.HehYaaFinahehgoal-ar.medi.HehYaaFinaheh-ar.medi.PostToothHehYaahehgoal-ar.medi.PostToothHehYaa hamza.abovezero-ar.medium one-ar.medium two-ar.mediumthree-ar.mediumfour-ar.mediumfive-ar.medium six-ar.mediumseven-ar.mediumeight-ar.mediumnine-ar.mediumzeroFarsi-ar.mediumoneFarsi-ar.mediumtwoFarsi-ar.mediumthreeFarsi-ar.mediumfourFarsi-ar.mediumfiveFarsi-ar.mediumsixFarsi-ar.mediumsevenFarsi-ar.mediumeightFarsi-ar.mediumnineFarsi-ar.mediumfourFarsi-ar.urd.mediumsixFarsi-ar.urd.mediumsevenFarsi-ar.urd.mediumaAlf.fina.NarrowalefMadda-ar.fina.NarrowalefHamzaabove-ar.fina.NarrowalefHamzabelow-ar.fina.Narrowalef-ar.fina.NarrowalefWasla-ar.fina.Narrow!alefWavyhamzaabove-ar.fina.Narrow!alefWavyhamzabelow-ar.fina.NarrowalefTwoabove-ar.fina.NarrowalefThreeabove-ar.fina.Narrow smallv.aboveaHehKnotted.init.YaaBarihehDoachashmee-ar.init.YaaBaribehVbelow-ar.finabehVbelow-ar.initbehVbelow-ar.medibehVbelow-ar.init.BaaRaaIsolbehVbelow-ar.medi.BaaMemFinabehVbelow-ar.medi.LamBaaMemInitbehVbelow-ar.init.BaaDalbehVbelow-ar.init.BaaMemHaaInitbehVbelow-ar.init.BaaBaaYaabehVbelow-ar.medi.BaaBaaYaabehVbelow-ar.medi.KafBaaInitbehVbelow-ar.medi.BaaBaaInitbehVbelow-ar.init.BaaNonIsolbehVbelow-ar.init.BaaSenInitbehVbelow-ar.medi.BaaRaaFinabehVbelow-ar.init.BaaMemInitbehVbelow-ar.init.BaaBaaHaaInitbehVbelow-ar.medi.BaaBaaHaaInitbehVbelow-ar.medi.SenBaaMemInitbehVbelow-ar.init.BaaBaaIsolbehVbelow-ar.fina.BaaBaaIsolbehVbelow-ar.init.BaaBaaMemInitbehVbelow-ar.medi.BaaBaaMemInitbehVbelow-ar.medi.KafBaaMedibehVbelow-ar.medi.BaaNonFinabehVbelow-ar.medi.BaaYaaFinabehVbelow-ar.init.BaaSenAltInitbehVbelow-ar.init.AboveHaabehVbelow-ar.init.BaaHaaInitbehVbelow-ar.init.BaaHaaMemInitbehVbelow-ar.init.HighbehVbelow-ar.medi.HighbehVbelow-ar.init.WidebehVbelow-ar.init.BaaYaaIsolbehVbelow-ar.init.BaaMemIsolbehVbelow-ar.medi.BaaMemAlfFinabehVbelow-ar.init.BaaHehInitbehVbelow-ar.medi.BaaHehMedibehVbelow-ar.init.LDbehVbelow-ar.init.BaaRaaIsolLDbehVbelow-ar.init.BaaDalLD!behVbelow-ar.init.BaaMemHaaInitLDbehVbelow-ar.init.BaaBaaYaaLDbehVbelow-ar.init.BaaNonIsolLDbehVbelow-ar.init.BaaSenInitLDbehVbelow-ar.init.BaaMemInitLD!behVbelow-ar.init.BaaBaaHaaInitLDbehVbelow-ar.init.BaaBaaIsolLD!behVbelow-ar.init.BaaBaaMemInitLD!behVbelow-ar.init.BaaSenAltInitLDbehVbelow-ar.init.BaaHaaInitLD!behVbelow-ar.init.BaaHaaMemInitLDbehVbelow-ar.init.HighLDbehVbelow-ar.init.WideLDbehVbelow-ar.init.BaaYaaIsolLDbehVbelow-ar.init.BaaMemIsolLDbehVbelow-ar.init.BaaHehInitLDbehVbelow-ar.init.YaaBari vbelow-ar.low number-ar.4smallv.above.inverted zero-ar.prop one-ar.prop two-ar.prop three-ar.prop four-ar.prop five-ar.prop six-ar.prop seven-ar.prop eight-ar.prop nine-ar.propzeroFarsi-ar.proponeFarsi-ar.proptwoFarsi-ar.propthreeFarsi-ar.propfourFarsi-ar.propfiveFarsi-ar.propsixFarsi-ar.propsevenFarsi-ar.propeightFarsi-ar.propnineFarsi-ar.propfourFarsi-ar.urd.propsixFarsi-ar.urd.propsevenFarsi-ar.urd.propalefHamzaabove-ar.fina.WidealefWasla-ar.fina.WideaBaa.init.BaaBaaHeh#yehFarsiFourbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHeh$yehFarsiThreeabove-ar.init.BaaBaaHehnoonRing-ar.init.BaaBaaHeh-behThreedotshorizontalbelow-ar.init.BaaBaaHehbehVabove-ar.init.BaaBaaHehnoonTahabove-ar.init.BaaBaaHehyehVabove-ar.init.BaaBaaHeh"yehFarsiTwoabove-ar.init.BaaBaaHeh$noonThreedotsabove-ar.init.BaaBaaHehyehHamzaabove-ar.init.BaaBaaHehbehDotless-ar.init.BaaBaaHehyehKashmiri-ar.init.BaaBaaHehyeh-ar.init.BaaBaaHehrnoon-ar.init.BaaBaaHehteheh-ar.init.BaaBaaHeh#behVinvertedbelow-ar.init.BaaBaaHeh"tehThreedotsdown-ar.init.BaaBaaHehpeh-ar.init.BaaBaaHehbeeh-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehtteheh-ar.init.BaaBaaHeh%behThreedotsupabove-ar.init.BaaBaaHehnoon-ar.init.BaaBaaHeh%tehThreedotsupbelow-ar.init.BaaBaaHeh%behThreedotsupbelow-ar.init.BaaBaaHehteh-ar.init.BaaBaaHehhighhamzaYeh-ar.init.BaaBaaHeh#yehFarsiVinverted-ar.init.BaaBaaHehtheh-ar.init.BaaBaaHehtteh-ar.init.BaaBaaHehnoonDotbelow-ar.init.BaaBaaHehnoonVabove-ar.init.BaaBaaHehalefMaksura-ar.init.BaaBaaHehtehRing-ar.init.BaaBaaHeh)behTwodotsbelowDotabove-ar.init.BaaBaaHeh#yehThreedotsbelow-ar.init.BaaBaaHehe-ar.init.BaaBaaHehnoonghunna-ar.init.BaaBaaHehyehFarsi-ar.init.BaaBaaHeh"noonTwodotsbelow-ar.init.BaaBaaHehbeheh-ar.init.BaaBaaHehLD&noonThreedotsabove-ar.init.BaaBaaHehLDpeh-ar.init.BaaBaaHehLDbeeh-ar.init.BaaBaaHehLDbeh-ar.init.BaaBaaHehLD$noonTwodotsbelow-ar.init.BaaBaaHehLD%yehFarsiVinverted-ar.init.BaaBaaHehLD%yehFarsiFourbelow-ar.init.BaaBaaHehLD&yehFarsiThreeabove-ar.init.BaaBaaHehLD$yehFarsiTwoabove-ar.init.BaaBaaHehLDyehFarsi-ar.init.BaaBaaHehLDyeh-ar.init.BaaBaaHehLDyehVabove-ar.init.BaaBaaHehLD'behThreedotsupabove-ar.init.BaaBaaHehLD/behThreedotshorizontalbelow-ar.init.BaaBaaHehLD'tehThreedotsupbelow-ar.init.BaaBaaHehLD'behThreedotsupbelow-ar.init.BaaBaaHehLD%behVinvertedbelow-ar.init.BaaBaaHehLD+behTwodotsbelowDotabove-ar.init.BaaBaaHehLD noonDotbelow-ar.init.BaaBaaHehLD%yehThreedotsbelow-ar.init.BaaBaaHehLDe-ar.init.BaaBaaHehLDcirclebelow-ar keheh-ar.altkeheh-ar.alt.fina gaf-ar.altgaf-ar.alt.finagafRing-ar.altgafRing-ar.alt.fina ngoeh-ar.altngoeh-ar.alt.finagafTwodotsbelow-ar.altgafTwodotsbelow-ar.alt.fina gueh-ar.altgueh-ar.alt.finagafThreedots-ar.altgafThreedots-ar.alt.finakehehDotabove-ar.altkehehDotabove-ar.alt.finakehehThreedotsabove-ar.altkehehThreedotsabove-ar.alt.finakehehThreedotsupbelow-ar.alt!kehehThreedotsupbelow-ar.alt.fina"kehehTwodotshorizontalabove-ar.alt'kehehTwodotshorizontalabove-ar.alt.finakehehThreedotsbelow-ar.altkehehThreedotsbelow-ar.alt.fina aGaf.isol aGaf.fina number-ar.3pagenumber-ar.3 kashida-ar.05aYaaBari.fina.PostToothFinaaBaa.medi.YaaBari!yehFarsiFourbelow-ar.medi.YaaBaribeheh-ar.medi.YaaBari"yehFarsiThreeabove-ar.medi.YaaBarinoonRing-ar.medi.YaaBari+behThreedotshorizontalbelow-ar.medi.YaaBaribehVabove-ar.medi.YaaBarinoonTahabove-ar.medi.YaaBariyehVabove-ar.medi.YaaBari yehFarsiTwoabove-ar.medi.YaaBari"noonThreedotsabove-ar.medi.YaaBariyehHamzaabove-ar.medi.YaaBaribehDotless-ar.medi.YaaBariyehKashmiri-ar.medi.YaaBariyeh-ar.medi.YaaBarirnoon-ar.medi.YaaBariteheh-ar.medi.YaaBari!behVinvertedbelow-ar.medi.YaaBari tehThreedotsdown-ar.medi.YaaBaripeh-ar.medi.YaaBaribeeh-ar.medi.YaaBaribeh-ar.medi.YaaBaritteheh-ar.medi.YaaBari#behThreedotsupabove-ar.medi.YaaBarinoon-ar.medi.YaaBari#tehThreedotsupbelow-ar.medi.YaaBari#behThreedotsupbelow-ar.medi.YaaBariteh-ar.medi.YaaBari!yehFarsiVinverted-ar.medi.YaaBaritheh-ar.medi.YaaBaritteh-ar.medi.YaaBarinoonDotbelow-ar.medi.YaaBarinoonVabove-ar.medi.YaaBarialefMaksura-ar.medi.YaaBaritehRing-ar.medi.YaaBari'behTwodotsbelowDotabove-ar.medi.YaaBari!yehThreedotsbelow-ar.medi.YaaBarie-ar.medi.YaaBarinoonghunna-ar.medi.YaaBariyehFarsi-ar.medi.YaaBari noonTwodotsbelow-ar.medi.YaaBari)yehbarreeThreeabove-ar.fina.PostToothFina'yehbarreeTwoabove-ar.fina.PostToothFinayehbarree-ar.fina.PostToothFinabehVbelow-ar.medi.YaaBariaBaa.init.BaaBaaYaaBari'yehFarsiFourbelow-ar.init.BaaBaaYaaBaribeheh-ar.init.BaaBaaYaaBari(yehFarsiThreeabove-ar.init.BaaBaaYaaBarinoonRing-ar.init.BaaBaaYaaBari1behThreedotshorizontalbelow-ar.init.BaaBaaYaaBaribehVabove-ar.init.BaaBaaYaaBari"noonTahabove-ar.init.BaaBaaYaaBariyehVabove-ar.init.BaaBaaYaaBari&yehFarsiTwoabove-ar.init.BaaBaaYaaBari(noonThreedotsabove-ar.init.BaaBaaYaaBari#yehHamzaabove-ar.init.BaaBaaYaaBari behDotless-ar.init.BaaBaaYaaBari!yehKashmiri-ar.init.BaaBaaYaaBariyeh-ar.init.BaaBaaYaaBarirnoon-ar.init.BaaBaaYaaBariteheh-ar.init.BaaBaaYaaBari'behVinvertedbelow-ar.init.BaaBaaYaaBari&tehThreedotsdown-ar.init.BaaBaaYaaBaripeh-ar.init.BaaBaaYaaBaribeeh-ar.init.BaaBaaYaaBaribeh-ar.init.BaaBaaYaaBaritteheh-ar.init.BaaBaaYaaBari)behThreedotsupabove-ar.init.BaaBaaYaaBarinoon-ar.init.BaaBaaYaaBari)tehThreedotsupbelow-ar.init.BaaBaaYaaBari)behThreedotsupbelow-ar.init.BaaBaaYaaBariteh-ar.init.BaaBaaYaaBari"highhamzaYeh-ar.init.BaaBaaYaaBari'yehFarsiVinverted-ar.init.BaaBaaYaaBaritheh-ar.init.BaaBaaYaaBaritteh-ar.init.BaaBaaYaaBari"noonDotbelow-ar.init.BaaBaaYaaBari noonVabove-ar.init.BaaBaaYaaBari!alefMaksura-ar.init.BaaBaaYaaBaritehRing-ar.init.BaaBaaYaaBari-behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari'yehThreedotsbelow-ar.init.BaaBaaYaaBarie-ar.init.BaaBaaYaaBari noonghunna-ar.init.BaaBaaYaaBariyehFarsi-ar.init.BaaBaaYaaBari&noonTwodotsbelow-ar.init.BaaBaaYaaBaribehVbelow-ar.init.BaaBaaYaaBaritcheheh-ar.init.BaaYaaBarijeem-ar.init.BaaYaaBaridyeh-ar.init.BaaYaaBari/hahTahTwodotshorizontalabove-ar.init.BaaYaaBarihahTahbelow-ar.init.BaaYaaBarinyeh-ar.init.BaaYaaBari tchehDotabove-ar.init.BaaYaaBarihahFourbelow-ar.init.BaaYaaBari&hahThreedotsupbelow-ar.init.BaaYaaBaritcheh-ar.init.BaaYaaBariaHaa.init.BaaYaaBaribehVbelow-ar.init.BaaBaaHehbehVbelow-ar.init.BaaBaaHehLDyehKashmiri-ar.init.BaaBaaHehLDdammainverted-ar.urddammainverted-ar.smallkasra-ar.smallkasratan-ar.small zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.smallyehFarsiTwodotsabove-ar.inityehFarsiThreedotsabove-ar.inityehFarsiTwodotsabove-ar.mediyehFarsiThreedotsabove-ar.medi'yehFarsiTwodotsabove-ar.init.BaaRaaIsol)yehFarsiThreedotsabove-ar.init.BaaRaaIsol'yehFarsiTwodotsabove-ar.medi.BaaMemFina)yehFarsiThreedotsabove-ar.medi.BaaMemFina*yehFarsiTwodotsabove-ar.medi.LamBaaMemInit,yehFarsiThreedotsabove-ar.medi.LamBaaMemInit#yehFarsiTwodotsabove-ar.init.BaaDal%yehFarsiThreedotsabove-ar.init.BaaDal*yehFarsiTwodotsabove-ar.init.BaaMemHaaInit,yehFarsiThreedotsabove-ar.init.BaaMemHaaInit&yehFarsiTwodotsabove-ar.init.BaaBaaYaa(yehFarsiThreedotsabove-ar.init.BaaBaaYaa&yehFarsiTwodotsabove-ar.medi.BaaBaaYaa(yehFarsiThreedotsabove-ar.medi.BaaBaaYaa'yehFarsiTwodotsabove-ar.medi.KafBaaInit)yehFarsiThreedotsabove-ar.medi.KafBaaInit'yehFarsiTwodotsabove-ar.medi.BaaBaaInit)yehFarsiThreedotsabove-ar.medi.BaaBaaInit'yehFarsiTwodotsabove-ar.init.BaaNonIsol)yehFarsiThreedotsabove-ar.init.BaaNonIsol'yehFarsiTwodotsabove-ar.init.BaaSenInit)yehFarsiThreedotsabove-ar.init.BaaSenInit'yehFarsiTwodotsabove-ar.medi.BaaRaaFina)yehFarsiThreedotsabove-ar.medi.BaaRaaFina'yehFarsiTwodotsabove-ar.init.BaaMemInit)yehFarsiThreedotsabove-ar.init.BaaMemInit*yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit,yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit*yehFarsiTwodotsabove-ar.medi.SenBaaMemInit,yehFarsiThreedotsabove-ar.medi.SenBaaMemInit'yehFarsiTwodotsabove-ar.init.BaaBaaIsol)yehFarsiThreedotsabove-ar.init.BaaBaaIsol*yehFarsiTwodotsabove-ar.init.BaaBaaMemInit,yehFarsiThreedotsabove-ar.init.BaaBaaMemInit*yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit,yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit'yehFarsiTwodotsabove-ar.medi.KafBaaMedi)yehFarsiThreedotsabove-ar.medi.KafBaaMedi'yehFarsiTwodotsabove-ar.medi.BaaNonFina)yehFarsiThreedotsabove-ar.medi.BaaNonFina'yehFarsiTwodotsabove-ar.medi.BaaYaaFina)yehFarsiThreedotsabove-ar.medi.BaaYaaFina*yehFarsiTwodotsabove-ar.init.BaaSenAltInit,yehFarsiThreedotsabove-ar.init.BaaSenAltInit%yehFarsiTwodotsabove-ar.init.AboveHaa'yehFarsiThreedotsabove-ar.init.AboveHaa'yehFarsiTwodotsabove-ar.init.BaaHaaInit)yehFarsiThreedotsabove-ar.init.BaaHaaInit*yehFarsiTwodotsabove-ar.init.BaaHaaMemInit,yehFarsiThreedotsabove-ar.init.BaaHaaMemInit!yehFarsiTwodotsabove-ar.init.High#yehFarsiThreedotsabove-ar.init.High!yehFarsiTwodotsabove-ar.medi.High#yehFarsiThreedotsabove-ar.medi.High!yehFarsiTwodotsabove-ar.init.Wide#yehFarsiThreedotsabove-ar.init.Wide'yehFarsiTwodotsabove-ar.init.BaaYaaIsol)yehFarsiThreedotsabove-ar.init.BaaYaaIsol'yehFarsiTwodotsabove-ar.init.BaaMemIsol)yehFarsiThreedotsabove-ar.init.BaaMemIsol*yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina,yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina'yehFarsiTwodotsabove-ar.init.BaaHehInit)yehFarsiThreedotsabove-ar.init.BaaHehInit'yehFarsiTwodotsabove-ar.medi.BaaHehMedi)yehFarsiThreedotsabove-ar.medi.BaaHehMediyehFarsiTwodotsabove-ar.init.LD!yehFarsiThreedotsabove-ar.init.LD)yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD%yehFarsiTwodotsabove-ar.init.BaaDalLD'yehFarsiThreedotsabove-ar.init.BaaDalLD,yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD(yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD*yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD)yehFarsiTwodotsabove-ar.init.BaaNonIsolLD+yehFarsiThreedotsabove-ar.init.BaaNonIsolLD)yehFarsiTwodotsabove-ar.init.BaaSenInitLD+yehFarsiThreedotsabove-ar.init.BaaSenInitLD)yehFarsiTwodotsabove-ar.init.BaaMemInitLD+yehFarsiThreedotsabove-ar.init.BaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD)yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD,yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD,yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD.yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD)yehFarsiTwodotsabove-ar.init.BaaHaaInitLD+yehFarsiThreedotsabove-ar.init.BaaHaaInitLD,yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD.yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD#yehFarsiTwodotsabove-ar.init.HighLD%yehFarsiThreedotsabove-ar.init.HighLD#yehFarsiTwodotsabove-ar.init.WideLD%yehFarsiThreedotsabove-ar.init.WideLD)yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD+yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD)yehFarsiTwodotsabove-ar.init.BaaMemIsolLD+yehFarsiThreedotsabove-ar.init.BaaMemIsolLD)yehFarsiTwodotsabove-ar.init.BaaHehInitLD+yehFarsiThreedotsabove-ar.init.BaaHehInitLD$yehFarsiTwodotsabove-ar.init.YaaBari&yehFarsiThreedotsabove-ar.init.YaaBari&yehFarsiTwodotsabove-ar.init.BaaBaaHeh(yehFarsiThreedotsabove-ar.init.BaaBaaHeh(yehFarsiTwodotsabove-ar.init.BaaBaaHehLD*yehFarsiThreedotsabove-ar.init.BaaBaaHehLD$yehFarsiTwodotsabove-ar.medi.YaaBari&yehFarsiThreedotsabove-ar.medi.YaaBari*yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari,yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari ampersand.ara u1EE03.alt0 u1EE00.alt0 u1EE0D.alt0u1EEF0.displayu1EEF1.display u1EE13.alt0lam-ar.medi.Lellah2 kashida-ar.5 kashida-ar.6 kashida-ar.7aKaf.init.PreHehaKaf.medi.PreHeh*kehehTwodotshorizontalabove-ar.init.PreHeh"kehehThreedotsbelow-ar.init.PreHeh(kafTwodotshorizontalabove-ar.init.PreHeh$kehehThreedotsupbelow-ar.init.PreHehkaf-ar.init.PreHehgafRing-ar.init.PreHehgueh-ar.init.PreHehgafTwodotsbelow-ar.init.PreHehkafRing-ar.init.PreHehkafDotabove-ar.init.PreHehng-ar.init.PreHeh kafThreedotsbelow-ar.init.PreHehgaf-ar.init.PreHehkeheh-ar.init.PreHehgafThreedots-ar.init.PreHeh"kehehThreedotsabove-ar.init.PreHehkehehDotabove-ar.init.PreHehngoeh-ar.init.PreHeh*kehehTwodotshorizontalabove-ar.medi.PreHeh"kehehThreedotsbelow-ar.medi.PreHeh(kafTwodotshorizontalabove-ar.medi.PreHeh$kehehThreedotsupbelow-ar.medi.PreHehkaf-ar.medi.PreHehgafRing-ar.medi.PreHehgueh-ar.medi.PreHehgafTwodotsbelow-ar.medi.PreHehkafRing-ar.medi.PreHehkafDotabove-ar.medi.PreHehng-ar.medi.PreHeh kafThreedotsbelow-ar.medi.PreHehgaf-ar.medi.PreHehkeheh-ar.medi.PreHehgafThreedots-ar.medi.PreHeh"kehehThreedotsabove-ar.medi.PreHehkehehDotabove-ar.medi.PreHehngoeh-ar.medi.PreHehsmallnoon.abovesmallteh.abovesmallmeem.above zero-ar.numr one-ar.numr two-ar.numr three-ar.numr four-ar.numr five-ar.numr six-ar.numr seven-ar.numr eight-ar.numr nine-ar.numrzeroFarsi-ar.numroneFarsi-ar.numrtwoFarsi-ar.numrthreeFarsi-ar.numrfourFarsi-ar.numrfiveFarsi-ar.numrsixFarsi-ar.numrsevenFarsi-ar.numreightFarsi-ar.numrnineFarsi-ar.numrfourFarsi-ar.urd.numrsixFarsi-ar.urd.numrsevenFarsi-ar.urd.numrkafRing-ar.altkafRing-ar.alt.fina_FDFD _arrowheaduni00A0uni00ADuni00B2uni00B3uni00B9AmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccentuni0122uni0123 Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflexuni0136uni0137 kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146Ncaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsGcarongcaronuni0237uni02BBuni02BCuni02BEuni02BF gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307uni0308uni030Auni030Cuni0312uni0315uni0325uni0326uni0327uni0328uni1E02uni1E03uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E1Euni1E1Funi1E24uni1E25uni1E28uni1E29uni1E2Auni1E2Buni1E40uni1E41uni1E56uni1E57uni1E60uni1E61uni1E62uni1E63uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6FWgravewgraveWacutewacute Wdieresis wdieresisuni1E92uni1E93uni1E96uni1E97Ygraveygraveuni2010uni2011 figuredashuni2015 quotereverseduni201Fonedotenleaderuni202Fminuteseconduni2038uni203Euni2042uni2070uni2074uni2075uni2076uni2077uni2078uni2079Eurouni2213 exclam.latnparenleft.latnparenright.latn slash.latnbracketleft.latnbackslash.latnbracketright.latnbraceleft.latnbar.latnbraceright.latnguillemotleft.latnguillemotright.latnf_ff_if_f_if_lf_f_lf_bf_f_bf_kf_f_kf_hf_f_hf_jf_f_jiogonek.dotless gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.capuni0308.narrow uni0308.cap uni030C.cap zero.propone.proptwo.prop three.prop four.prop five.propsix.prop seven.prop eight.prop nine.prop period.latni.TRK zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numrone.numrtwo.numr three.numr four.numr five.numrsix.numr seven.numr eight.numr nine.numr _arrowhead2_x uni0305.100 uni0305.1000 uni0305.1100 uni0305.11400 uni0305.1200 uni0305.1300 uni0305.1500 uni0305.1600 uni0305.1700 uni0305.1800 uni0305.1900 uni0305.200 uni0305.2000 uni0305.2200 uni0305.2800 uni0305.300 uni0305.400 uni0305.500 uni0305.600 uni0305.700 uni0305.800 uni0305.900bJ *013Z[o~  ?BCLfEEGGopuvwxyzz{}~~    @Y[\]`bdz|~"##;;=DEEFbcfg458vw"7 (04l>HPZblt~\X2#. 8*6!  ("]eZ0[\^_abdgjkLMOPRSTXY\]_`cdefYZ[#cdZd]`aeloNQUVWZ^abef| DDFLTarablatncurskernkernmarkmkmkss055 *4 (08@HPX`hpx>HR\fpzd`TRK `*`40123,-./DARA DKSH DMLY DSND DURD D !"#$&() !"#$&()+@\D  nP& 0 HRn.8 &$.8FNV^ 6 1I1I1j|1CCDCJCnCtCPCbCnCtCnCtCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C C C C C C C C C C&C&C&C&C&C&C&CCCCCCC,C,C,C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C>C>CCCCCCCCCCCCCCCCCCDCDCDCDCDCDCDCJCnCnCnCnCnCnCtCtCtCtCtCtCPCbCbCVCVCVC\CbCbChCnCnCnCnCnCnCtCtCtCtCtCtCnCnCnCnCnCnCtCtCtCtCtCtCzCzCzCzCzCzCzCzCzCzCzCzCzCzCzCzCzCCCCCCCCCCCCCCCCCCCCCCCCCCCDOA  : #R*b BlC %ze]ZrlV\|\bnhn$: 16@ZdBXgpnDa1 ^=  } BV ec1A1 eo%))() NQUVW^abefpy BK  d?DDSS[\^^    IZN_qr3bbb#45ABXX+,1189   !Sb"2? O \ ]  -^ @ On ~     Wf.013Z~*,  ?BCEEGGovwzz~~      <[??\]`bdz|~.123E"G;;=DFVbpqP45y2013OQZ~)+  ?BCEEGGovwzz~~       } Y@T\]`bddffjz|~),-".;;==?ACDFRblqK45qR<06H0600B 666$$* ("|0(o06MNOPXYZ567     #%)*+235:=?EFGHJKLMPQSYZ[\]_`abcdfgijklo~DXmq  !"#$%&'()*+,Wj & : O b j k l m n o p q r s t u v w x      w & : O b   ) Q d y   !"0Dghijklmnopqrstuo     9Mdw)?Ukefghiz|};? *8L_8APW~     "%&)*+,.02378:=?EFGHJKLMPQRSTUWXYZ[\]^_`abcdfghijlmno~/35BDIKkmrt`UW\^ $ & + - M O T V    5    + M V W u w | ~ $ & + - M O T V     O Q V X w y ~ .057dmotv     )*,79>@bdik   ")68?LNUbdkxzefghiz|~ !";  (*68=?_jjS7h'$*SS+#$'(5588@AYY `` dd ff sw  $ q |& 2 E P  W `vq $66sxVV9>EPWmJ_cc79;;>@DDGGIKMMOPSSVVZ\^_         " % & ) ) + - / / 1 2 5 5 8 8 < > @ A }                         j l n n q s v w z z | ~           " % & ) ) + - / / 1 2 5 5 8 8 < > @ A                          #%''*,/0335799;<??BBFHJKbdffiknorrtvxxz{~~,.003589<<>@BBDEHHKKOQSTIIKKNPTUWX[[]]bbdfhjll``qruv{KL"$79;;>@DDGGIKMMOPSSVVZ\^_sw         " % & ) ) + - / / 1 2 5 5 8 8 < > @ A  q { }                         j l n n q s v w z z | ~             " % & ) ) + - / / 1 2 5 5 8 8 < > @ A                           #%''*,/0335799;<??BBFHJKbdffiknorrtvxxz{~~ $6HIZN_%,.003589<<>@BBDEHHKKOQSTIIKKNPTUWX[[]]bbdfhjll``qruv{z $".(p.4:@FLRX^djjTTjjppv|lrx~f&v֣|, 2 ̣$*066<8BH>ңNTZZD`fllrJޣxx~P 4^V"(\Ƣ̢Ңآ.b4 &,2@8>LDJPV\\RbhhhntXn^zt djjppppjvvvv||||  44^^^^"((((....44@:@LFLRRXX^^^^ddddjjjjpppvvv|||ܦz¦覌 $*00000000B6<<<<<BHNNNNNTTZ`o.xxxx4T..4x..x..xx.pv*6 ~Z"`(.4f8r~x:Ɲ@>FD̝Ɲ̞ҝVLRXޜ^djJPpVv| \,8>"JbP\Vbn,zhn(. Оt zڛ&,$ 2|*06Dh̝̞VޝޝJPhV\ &,28">DbJhPV\bh,ntzhn(. tȟzΞ&&&&&&&ڛ&&&&&&&&,2 8>DJPV\"bhn(.tz4:@FLRXd^^djpv|ěsʝʝʝʝʝʐDʝʝʐJʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʐPʝʝʝʝʝʝʝʝʝʝʝʝʖV\bhܝܐnܐtttttttttttttz\\\ȄȄȄȄȄȄȄȄȄȄȄȄȜڜڜڜڜڜڜڜڜڜڜڜڜڜڜڐ000򐪓򝈝Ȟ$$Ξ$ԝڝ杦읦򝦐nНННННАННБНННННННННННННННБ НННБНННННННБ......."(...6N.֑4֛<.:...X@.F...LBNH.HR֛BXN^.HN....NjjjjjjjjjjjjjjjdjܝܛTܝܝܑpܛZܑvܝܝܝܑ|ܑܝܝܝܛ`ܝܝܝܑܛ`ܝܑܝܝܝܝܝܝܝܝ::::::::::::::nnnڄڄڄڄڄڄڄڄڄڄڑڄڄڑЄΑЄ΄΄΄΄΄ΑʑĄ΄΄ΑđđʑН*06DDJ\X\XXXXXXVPXXXPPV\bhntzz00x00000000000000000000000000000000$ȝȝ““ȝΓԓԓړZZZZZZZZZZZZZZ """""""""""""""""(.4n:@FLnRX^~d蛄j|p蛊v蛊|蔂蝚НННННННННННННННННʔĝʝН֝"""""""""""""""""""::::ܝ::::::::::::::::::::::НННННЕННЕ НННННННННННННННННННЕННННННННܕ$ԕ$ԄԄԄԄԄԕԄԄԕ$*06DJ(P((((((((𛮛V\zbhntz𖀛؞ƞ̛؛ҞҖ̖ؖқ؞ؖ–––––––––––––––ΖΖΖΖΖΖΖΖΖΖΖΖΖΖΖȖΖԖږ杔||||||||||`````` ````````````````````````````````"(444444.4444: @ F L R^^^^^^^^^^^^^^^X^dddddddddddddddddnn||||j|p||||||||v|ʝ@ʝ@@@@@@@ĝ@@@ėĝ@ʗЗ֝ܝܗܝܚܚ❾VVVVVVVVVVVVVVVnnnnn nR$$$**********$***$$**06P>PPPPPPPJPPPDJPVFFޝFF\FbFFFzhFnFFFFFFFFtzFFFFFFFFFnnnnnnnnnnnnn™ž<<<<<<<<<<<Ȟ<<<ΙΙΙΙΙΙΙڙԙΙΙΙԙԙڙ ĝĝĝĝĝĚ"ĝĝĚ(ĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĝĚ|.4:@RFLRڄڄڄڄڄښXڄڄښ^ڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڄڞ00ĝĝܚdܝܚjܚpv||Ěʞ$$О$Ěʞ$$О$@@@@@@@@@@֝@@@֚֝@@ܚ❾ ܚ❾ 8888888888888888$*0TTTTTTTTTTTTTTTTTTTTTTʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝʝНННННННННННННННННННННН.....N֝.6<..֛B.H..NN..ܝܝܝܝܝܝܝܛTZܝܝܛ`ܝܝܝܝܝܝܝ܄nnnnnnnnnnnnnnnnnnnnnn4444444fl44r4444444400000000x0000000000000~蛊:::::::::::::::::𛮛؞ƞ̞Ҟ؛؞`````````````````````` FFFFFFFޛFFFFFFFFFFTʝН.܄n40n:` FZZZZD$$$JPPPPPPVVVPPPPVPVPPV$$\$$b$h$n$$$t$z$$$$$$$$$$$$$$$$$$$$$$$ȜΝڜڜڜԜڜ<@BLMSl p$>?@X_0v2gjjll+1467:;J N8#=#< ''1; )( ?>  $2 +*0 @      )                ($      "!"!&%3.:89&%4,-56/ 7B88*<<K==*>>J@@!AA BB'LM-SS TT2UUWWXX1YYZ[\\&]]0^^__/``bb.dd#eeffgghhMiijjLkkllpp qq"rrssttuu%vvwwxxyyzz{{ |}~~$<  43C:; N D$                &&0 !!"" ##$$ %%&& ''((A))** ++,,--..//002233E557799::;;<<#==>>#??@@#AABBCC DDEE FFGG HHII JJKK LLMM NNOO PPQQRRSSTTUUVVWWXXYYZZ[[\\]]^^__``aabbccddeeffgg@jjll52"1%/.$       )(!)(!,+=8GIH,+% "'>679F  ?  !{lllRplmpm|qm|m|lmmNNmmvXvXmvmv}rnlmn|qRplm|mpmpllmpRpRpm|m|lm|m|lm|lmmm4lmm lNNNNNNNNNmmllmlmmmvXmvmmmmmm}rm}r}r}r}rnn}rm|||||m qqqqRpRpRpRpRpRpRpRpRpmmmLqNmmuzm|m"m"m|m(m|mmRNm.mmvmvmvmm}r}rnnn|||mmm4m:mmm@m@mFRpRpmLmLmRmXm^md{mj~\{mpmrmv{tx~m|~NNn6{mnTn~m|{jqjwpnwluX|jnNmnn6||mmn|NvXRvvoRvr~:qo&oDoh:N{Rvoo~J~ :~&Njpq~,p^pwp{:wTwTppv{X~8jpmp{qwTqq$~>{|{~D{~ mjmq:qq~P~8qqw`vXNqqrrwTS6w~mmmX~Vr\~\{~bX~h~nwT~J~t~zrssw{s.s@svs~{ms~m~vuPw`{wt|XwTt<t<t<~mww~txttttuu\u\u\uPu\ubutuz~bjuwx~uwlwTv~b~buwTjuju~8ujuNju~8v Njvv}*v{~v|vRvX~vdvvv~{vvvw~~:j{wB~wZwHwlmwTwZ~w`wljwx~jwx~{{{{}*{{{mmmmmmmrrrrrrr{{{{{{{txmmmtxtxtxtxtxtxmtxtxmtxmmtxtxmn~~~~~~~n ~~~~~~~~n n~~~~nn~~~~~~~~~~n n~~~n~~~~~~~~~~~~~~~n~~n$~~~~~~~~~~~~~~~~n$~~~NNNNNNNNNNNNNNn6n*n6n6n6n6n6n0n6{n<{{{{{{{{nB{{nTnHnTnTnTnTnTnTnTnTnNnTnTn~n~n~nZn~nZn~n~n`nfnlnrnnxnxn~n|||||||||n|||n||||||||||||n|||n|||{nn{{jjjj}rnn}rnn}r}r}r}r}r}r}rppppppppppppppppppnnnnnnnnnnnnnnnnnnwlwlwlwfwlwluuuuuuXXXXXXjjjNNNnnnnnnnnn||||NNNnnnNNNNNNNNNNnnnnnnnnnnn|||||||||||nnNNNRvRvRvNNNNNNNNNNNNNnnoooonooooooooRvRvRvRvRvRvro~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~jjjo oo jjjjjjjjjj::::::ttttttttttttto&o&o&o&o&o&oDo,o2oDoDoDoDo8o8oDo>oDoDoJoPohohohohoVohohohohoho\oboh::::::NNNNNN{{{{{{{{{on{{{ot{{{ozo~RvoRvRv~~oRvRvo~RvRvoRvoooRvoRvooRv~RvRvoRvRvRv~ooRv~~oooooo~J~J~J~J~J~Joo~ ~ ~ ~ ~ ~ ~ o~ ~ ~ ~ ~ ~ o~ oo~ ~ ~ ~ oo~ ~ ~ ~ ~ ~ ~ ~ ~ oo~ ~ ~ :o|@~&~&~&~&~&~&~&o~&~&~&~&~&~&o~&oo~&~&~&~&oo~&~&~&~&~&~&~&~&~&~&oo~&~&~&NNNNoNNNNNNNNNpjjjjjjjjjjjjjjjp jjpjjjjjjjjjjjjjjjjjpjjjpqqqqqqqqqpqqqp"qqqp(~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,~,p.p4~2p^p:p^p^~2~2pRp^p^p@~2p^p^pFp^pRpXp^p^p^p^pLpLp^~2p^p^p^p^p^p^~2pRpXp^~2~2pdpjppppppppppppvp|pwwwzlwwppppppppppppppp{{{{{{{{{{{{{{{{{{p::::::::::::::::::p::::::::::::::::p:::wTwTwTwTwTwTwTpppppppp{{ppppvvvvvv{{{{{{{{{{{{{p{{{Xp~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8p~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8~8jjjjjjjpppq~q~ppppq~q~q~q~q~q~q~q~q~q~ppppppppppppp{{{{{{{{{p{{{q{{{qqqqqqqqqqqqqq qqqwTwTwTwTwTwTqqqqqqqqqqqq$q*~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>q0~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>~>{q6{{{{q<{{||||||||||||||||||{qB~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D~D{{{{{{{{{{{qHt<~ ~ ~ ~ ~ ~ ~ qZ~ ~ ~ ~ ~ ~ qN~ qZq`~ ~ ~ ~ qTqT~ ~J~ ~ ~ ~ ~ ~ ~ qZq`~ ~ ~ {{{qlqfql{{{{{{{{{{jjjjjjjjjjjjjjjjjjq~q~q~qxqrqxq~q~q~q~q~q~q~q~q~q~qqqqqq::qqqqqqqqqqqqqqqqqqqq~P~P~P~P~P~P~Pq~P~P~P~P~P~Pq~Pqq~P~P~P~Pqq~P~P~P~P~P~P~P~P~P~Pqq~P~P~P~8qqqqqqqqqqqqqqqqqqqqqqqqqqqqqRvRvRvqqqRvRvRvRvRvRvRvRvRvRvvXvXvXvXvXvXvXNNNNNNNNNNNNNNNNNNqqqqqqqqqqqqqqqqqqqqqrrrrrrrrrrrrrrrrrrwTwTwTwTwTwTr S6rrS6S6r S6wwwwww~~~r&XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXr,r2~V~V~V~V~V~V~VrD~V~V~V~V~V~Vr8~VrDrJ~V~V~V~Vr>r>~V~V~V~V~V~V~V~V~VrDrJ~V~V~Vr\r\r\r\r\r\r\r\r\rPr\r\r\rVr\r\r\rb~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\{rhrn~b~b~b~b~b~b~brz~b~b~b~b~b~b~b~brzr~b~b~b~brtrt~b~b~b~b~b~b~b~b~b~brzr~b~b~bXvrrXXXXXXrXXrXrrXXr~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~h~hr~n~n~n~n~n~n~n~nr~n~n~n~n~n~nr~nrr~n~n~n~nrr~n~n~n~n~n~n~n~n~nrr~n~n~nwT~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~J~Jr~t~t~t~t~t~t~t~t~t~t~t~t~t~t~t~t~t~tr~t~t~t~t~t~t~t~t~t~t~t~t~t~t~t~tr~t~t~tr~z~z~z~z~z~z~z~zr~z~z~z~z~z~zr~zrr~z~z~z~zrr~z~z~z~z~z~z~z~z~zrr~z~z~zrrrrrrrrrssssssssssssss sssjjjsypsjjjjjjjjjjsswwwwwwt<t<t<s(s"s(t<t<t<t<t<t<t<t<t<t<s.s.s.s.s.s@s@s@s@s@s@s@s@s@s4s@s@s@s:s@s@s@sFsL~svsRsvsv~~sjsvsvsX~svsvs^svsjspsvsvsvsvsdsdsv~svsvsvsvsvsv~sjspsv~~sssssssssssssss~~~~~~~~~s~~~~~~~~ss~~~~s|s|~~~~~~~~~~ss~~~{{{{{{{{{{{{{{sss{{{{{{{{{{ssssssssssssssss~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~s~~~~~~~~~~~~~~~s~~s~~~~~~~~~~~~~~~~~s~~~s~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~vvvvvvvvvsvvvsvvvtttstu,ttsu8suJsuJsttw`w`w`t w`w`ttttttt|||||||||t||t*tt$|t*XXXXXXXXXt0XXXt6XXXwTwTwTwTwTwTwTwTwTwTwTt<t<t<t<t<t<t<t<t<t<t<t<t<t<t<t<t<t<t<t<t<tB~~~~~~~~~~~~~~~tH~~tN~~~~~~~~~~~~~~~~~tN~~~tTtZ~~~~~~~tl~~~~~~t`~tltr~~~~tftf~~~~~~~~~tltr~~~txtxtxtxtxtxtxtxtxt~t~ttt~vttt~~tttt~ttttttvtvttttt~ttvttv~ttt~~tttttutttttttttttttttttttttttttttt{u\u\u\u\u\tu\u\u\u\uuuuu&uu u\u&u\u\u\u\u\u\u\uPuPuPu,uPu,uPuPu2u8u>uDuVuJuJuPuVu\ububububububububububububububububububutunutuhutututututututunututututututuzuzuzuzuzuzuzuzuzuzuzuzuzuzuzuzuzuz~b~b~b~b~b~bjjjjjjuuuuuuuuuuuuuuuuuuwxwxwxwrwxwx~~~w~~~uuuuuuwlwlwlwfwlwluwT~t~tuwTuuvvvvvvvvvvvvvvvvvv~b~b~b~b~b~b~buuuuuuuwT@@uwTuujujujjjjjjjujjjjjjuuuuuuuuuuuuuuuuuujjjjjuuuuuuuuuuuuuu~8~8~8u~8~8uuuuuujjjjjuuuuuuuuuuuuuuNNNNNNNNNNNNNNNNNNjjjjjjjjjjjjjjjjjjuuuuuuu~8{{~8~8~8~8{{~8{~8~8v v v v v v v v v uv v v vv v v NNjvvvvvvvvvvvvvvvv}*v{v({v"{{{{{{{v({{{{{{v.v4~~~~~~~vF~~~~~~v:~vFvL~~~~v@v@~~~~~~~~~~vFvL~~~vvvvvvvvvvvvvvvvv|||vRvRvRvRvRvRvRvRvRvRvRvRvRvXvXvXvXvXvXvX~~~v^~~vdvdvjvpvvvvvvvvvvvv|vvvvvvvvvvvvvvvvvvvvvvvvvvv~~~~~~~~~~~~~~~v~~v~~~~~~~~~~~~~~~~~v~~~{vv~vvvv~~vvvv~vvvvvvvvvvvvv~vvvvvv~vvv~~vvww~\v~\wwXw ~~~~~~~~~~~~~~~w~~w~~~~~~~~~~~~~~~~~w~~~w~~~~~~~~w0~~~~~~w$~w0w6~~~~w*w*~~~~~~~~~w0w6~~~::jj{{{w<{{wBwBwBwBwBR|~~~~~~wZwZwZwZwZwZwHwHwHwHwHwHwHwHwHwHwHwHwHwHwHwHwHwHwlwlwlwfwlwlwTwTwTwNwTwTwZwZwZwZwZwZ~~~~~~w`w`w`w`w`w`w`w`w`w`w`w`w`w`w`w`w`w`wlwlwlwfwlwljjjjjjwxwxwxwrwxwx~~~w~~~jjjjjjwxwxwxwrwxwx~~~w~~~{{{{{{{{{w{{www{wwwwwwwwwwwwwwwwwwwwwwwwxxxx~~w~~~~~xwwww~xxxO@x2x2x8x,~~x~~~~~x,xx x x&~x,x2x8x>xbxbxhx\~~xD~~~~~x\xJxPxPxV~x\xbxhxnzzzz~~z~~~~~~zzzzz~zzz|xxxx~~xt~~~~~xxzxxx~xxxxxxyx~~x~~~~~xxxxx~xxyxxxxx~~x~~~~~xxxxx~xxxxyyy"y~~x~~~~~yyy y y~yyy"y(yLyLyRyF~~y.~~~~~yFy4y:y:y@~yFyLyRyXy|y|yyv~~y^~~~~~yvydyjyjyp~yvy|yyyyyyyyyyyyyyyyyyyy  y     yyyyy yyyyz z zzyzyyyzzz zzz<z<zBz6zz6z$z*z*z0z6z<zBzHzlzlzrzfzNzfzTzZzZz`zfzlzrzxzzzz""z~"""""zzzzz"zzzzzzzz((z(((((zzzzz(zzzzzz{z..z.....zzzzz.zz{{{,{,{2{&44{44444{&{{{{ 4{&{,{2{8{>{D{{J{P{V{\{b{h{n{t{z{{{{{{{{{{{{{{|||l~\lR{||||||||||||N{{NNN{{{{{{{{{{{{{{{{{:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::{{{:::::::::::::::::::{{{|{{{|||{{{{{{{{{{{{{{{{{{{{{{{{|||jj{{jj{{{{{{{}*{{{{{{{||| ||~||"|(|.~,|4|:|@|F~D|L|RX|X~\|^|d~h|j|p|v|||~|~|||||||||||}||||||||}}} }}}}$:}*@}N}0@@@@@@@}<@@}@@@}@}<}B@@@@}6}6@@@@@@@@@@}<}B@@@}H}f}f}l}`FF}NFFFFF}`}T}Z}Z~F}`}f}l}r}xlNL}~}LLLLLLL}LL}LLLLL}}LLLL}}LLLLLLLLL}}LLLNNN}R}}RRRRRRR}RR}RRRRR}}RRRR}}RRRRRRRRRR}}RRR}}}}}}}}}}}}}~~~~~~~~~~~ ~ ~&~&jj~,~,~2~2::~8~8~>~>~D~D~J~J~P~PXX~V~V~\~\~b~b~h~h~n~n~t~t~z~z~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ""((..44::@@FFLLRRX^djjjjjjjjjjjjjjjjjjjpv|*Gx{'''       Np!1 T>^6NL}n &={! Wz!ley$/       [$-u]$ $w{2S2$$j$$22K},pcV%Vo! !LMM!MMkMMM5+ &$x}n!!Xzm!!!M!!!!!!  !! !!!!TQYUziN{NJJN2{JV=d2/QLL2 iA665\9J1S65o1JYjdcBOBB?x |LI{7V7%ZVfHXmETsO'OpG(O,keL>; ! 3|;1FkGzGN@,9W%Azcc?i'`GXOSNVHkEGW_8SRb%OUVwnL,?d;J@_1[;nJ.Vs<VQsVsdo!sy>XVWi'i'G%GVi/- n= #{Wy[X4n{LYA=z%Wb'S G_%dbw,K?jd;@O_g[q;hns<{(]s%o-].!8q$nn/d%=%c% |w{jii5l'23 miwNw%tl owk_aMsDbSU]%zii==n_=c'U82!HusM%bGbXh_1PvFFbi4.FNU8@NpPbV%KNFIyCp% ]1kU,QpUIcd&WkDUL.]Qs4$By!zv1 `8D.G'u`/-V]w9]A_]tCV!>e!e3b!2! !!!!!'!?!,IJXW!!,{*tNe1[;6CF!!*!\!{!|!!'|'!?'j!L!b4!C! P!S;K_k-S!Y ?V|!S'1&MMV94 3PO7:!I+vI&EVY!&'hJ2h');)g,Jx6]o?oUhK11VVb#!_/lL33_QK !G mX!]=Iw!s4!8KKVwB!}Zrh""t'V'"o]p!`RjIou!D (MM-M(] !eoI <T!=y&!7!U=0!/!TpdqVv3$GeGHeLCGKKU3VV`C>!/-Co>RC9oHMC%7?yg6T1H1y6`CdD'l: ]!T!}C8+J!p}!I X\$;\"fIf4'DQ>!!R duG.).3d 3./hB=BtGVGBUpdhmmhI?![!D.j !!O~l!QP!t.3G#GD=!!GZ!!ZO!D!6YW9W!m9i!,;pn!\B6t> %~1Uxx[xob!s8!k!;""4L!y["b{!<!!g!t!1ZVi>e5yl!op!E!!)P1VY7$y [Czy)V$!!qTu}!kbVMn~8bC&#&X!6!6CJy[`~t+t& L%n! Hx!=x`!'X7m"!A)IbydLV!B*LN!!!!J?,?#\^?^5X;w^C}[_[*3ye[e!=cVFVx[!wGwUh<Yo<oF[!Fb!!g!n =!4!!p?!??2CoWRW[5[eOW6(IOQ9!vV4V!!G!x!!1!%[jy%!!!!{!![!n!![!0!I/!;!S!`!p!!!!b!G!!w!L!,&?!;_!z![MF![!s!<V! !I!W!h!!!!d!]!!.!cDm6$_ o}wntc|%WbTOez`b1WdDnnx]1n4FVky\}pS+?qMQgp+kClxVF*tQL%y~)=yJ8y;nFenwV_ti$0$IDcw%mKVyHLy\ 0 Jw+o'+8;p 8fHKIp  5s#zs|BLp,iKGP=b+upuIj1Dp6p@L**WH/]rTh5T\t\]~g\\X+{ci `|isiaG5tcl_.UdBpU~iGtkp&kvy}~k~V%!%N9g+zpN:~Nwa1!JLG t \Xza*WP#5ko 8pIgpyptcW|wqiQ%J%NB,Zk+X+tQiQ+p~~i M*W~nzUkpx1o\_D;sD/I\Z6ny_7xMM+#DRV+ztd:cmwc6m'c=&-:kRy{& t|d`xnd%G M MNE[]1, O?:xD_= _Km:r6' '6:P;H <4V:e[vhE hTv:s }:l {:s.B e=:ApNq]IeV4 VCe:j^ l: : :kg Xz: : :5& &5:O:   :$S0_0'0H0h000.0V0000k000&00s!MGrzz%??pkpoppRNpTypa{pBR]kMfSp:a}]WXptppq{W_?K4T}{|DC}iXc!T0}4tRc{`2To }tII(]m1O{x,`(m{tM=mB[8/Y/{X/MRMSu_t'Ha1h$IV%g 8ky&kX!i!1!!F!q!!!n!{0`!!!!!!!0!!b`^h!-!!4B*/V DFLTarablatncaltcaltJccmp.dnomfinainitligaloclloclloclloclloclloclmarkmedinumrpnumrlig36.v !~- (. ^L (%h<"7;,*.n d Z "P   6. ;0^         "(    ^  Z &   ^dj =&.f T  Z l t  |    ~zvrnjfb^ZVRNJFB>:6 @ X p  0  p 6  < N ` f l  V  h  & 6  P : b r P v !Z.z:*F\^v~(Lp7'n'''####$ $"$8$N''((2$d(N$z(j$$'$((($!$$$(%%*'<'T%@%V%l%%%%%%&(&&2&H)&^&t&        ~=<<r<=== = <~?<<|>^>L>?v::;-<":z5C:88?:V>>?h;FF>\>rH:XK@:::<:t6.7: g h i j k l m n o p::00:;D85v85vH5L;:,7B;;7*7J5L;__5~54;a`@9BD: : 9V9|9|:D468<9< :p  89 ?tDD:H4J4P489^484>499(4$4*4:          : 8r35:z357;;8;;  8^8x83`3f48h8b8N3J3P37j779BCCD: & ( ) * + , - . / 0 1 2 3 4 5 6 75R8V8\8b8h8n8t8z8888888888M223z))7223`));;L9F2z4F8j:b:b:bL7N2(2.2)):D  :( <6999!   :` y z { | } ~  :@ :]^_`abcdefghijklm9N8888"    ;j ;4 9  >45;. !"#$%&'()*+,;49:;<=>?@ABCDEFGHI-./012345678668888888888888888999999 9&9,92989>9D9J9P9V5999$9*90969<9B9H9N9T9Z8`9`9f9l9r9x9~9999999999996! 6! !"#$%&'()*+,-./01236R!BCDEFGHIJKLMNOPQRSTUVWXghijklmnop6 !$%&'()*+,-./0123456789:  :x! :!XYZ[\]^_`aBCDEFGHIJKLMNOPQRSTUVW9" V W X Y Z [ \ ] ^ _ ` a b c d e f9" . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O9t" 9@"%&'()*+,-./012345 E F G H I J K L M N O P Q R S T U9d"XYZ[\]^_`aBCDEFGHIJKLMNOPQRSTUVW."7Z7`7f7l7r7x7~777777777777777777777888888 9$ Y Z [ \ ] ^ _ ` a b c d e f g h i X X Y Z [ \ ] ^ _ ` a b c d e f g h i:$     G9%./0123456789:;)*+,- !"#$%&'(?@ABCD/*n7p*t+"/*Z+*`+8(   ! " # $ /)6)+0*/)+)+*.)++F)*x,) !"#$%&'()*+,-./0123456789:;<=>?@A.|)V6X)\*6* .d)>*~)D*~6).L)&*f*),*f).4)*N*)*N6)(()'(%-,h7,,JKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrLwx,R,`,R,789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_Iqr6.,WXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~k''(B''(%&3&''(%&(H&'z'(%+&&'\&(%5t- j k l m n o p q r s t u v w x y z { | } ~  W&*&0'j3&'(%& 3 &'J&'(%%'l%'*&'(%%' 'L%&~'(%*%%&&^&(%*2%%&>&(%*%p&%p&&(%%J2L%P&2%'(%%(&%.&h2%'(%%&F&% &F%'(%)$$&$2p%&(%)1$$&%v&(%)$&"$%%T&(%)1$&$%2&(%$\%%$b%1%'(%)P1:$>$>%x1$&(%),$%$%T1$&(%)0#%r#%0$&(%(0#%N#% 1X$&(%<22AKQTlj 3ANXD^#z|t9Dwoqjm22~xyz{|}Myz2(4 l m n o p q r s t u v w x y z { | } ~  `25 } ~  T?@ABCD4< { | } ~  uvwxyjklmnopqrstZ,pi:T=  5(*`^twgeQ->F#jmtwz|9Doq0= R0= D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C_2>                   O}~+PP~QQ,LnRR3T4SSfTT+J+zUUH*VV*WW*\\bbddtee)Tii*ljj0p`kk*"ll^nnoo2*qq)MqtrrBsstt02uu)pLvv(ww):xxz)LyyV/^CC) {{||0L)%)-?WXYZ[\]^_`abcdefXYZ[\]^_`aBCDEFGHIJKLMNOPQRSTUVWghijklmnopqrstueeN(pup6(Xup(.uLU,X}}}'-MMMrNNOVXXX:TYYYtj'<uZyX'*u[Q$^^^*cccfffDggg(hhh&'~tmmXzzz-'F<~~,B  U-0E,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST !"#$%&'()*+Uj2<K]_defIJKLMNOPQRSTUVWXYZyz{|}~mnopqrhg`lbaikj^[\c,L`abcdefghijklmnopqrstuvwxyz{|}~NOPQRSTUVWXYZ[\]^_<=>?@ABCDEFGHIJKLM,P | d,$QV]^_`aMNOPQRSTUVW#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVb-T*4Wbcdefghijklmnopqrstuvwxyz{|}~fg)X                           ! " # $ % & ' ( ) * + , - . / 0 1]^, Y#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKWXYZ[\]^_`abcdefLMNOPQRSTUVghijklmnopqrstub)\9;<lm*f        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w xPQ*(h        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y zXY)nk                        \[S.@zee-z}     i0z(("(&(*(.(2(6(:(>(B(F(J(N(R(V(Z(^(b(f(j(n(r(v(z(~(*&((((((((((((((((((((((((((((*((()*")) ))))))")&)*).)2)6):)>)B)F)J)N)R)V)Z)^)b)f**)j)n)r)v)z)~)))))))))))))))))))))))))))))))**)*** ******"*&/))) )$)(),)0)4)8)<)@)D)H)L)P)T)X)\)`)d)h)l)p)t)x)|+$)))))))))))))))))))))))))))))+)))*+ *** ***** *$*(*,*0*4*8*<*@*D*H*L*P*T*X*\*`*d+(*h*l*p*t*x*|*******************************++*++++ +++++ +$* !"#$vwxyz{|}~ 8 9 : ; < = > ? @ A B C D        789:;<=>?@ABCDEFGH   6stuvw q r s t u v w x y z {c)      !"#$%UVWXYZ[\]^      !"#$%+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS&'())T- (())) ))))))")&)*).)2)6):)>)B)F)J)N)R)V)Z)^)b)f)j)n)r)v)z)~))))))))+))))))))))))))))))))))))*** ******"*&***.*2*6*:*>*B*F*J+*N*R*V*Z*^*b*f*j*n*r*v*z*~***********+*****+*+***************++++ ++++++"+&+*+.+2+6+:+>+B+F+J+N+R+V+Z+^+b+f+j+n+r+v+z+~+++++++++++++++++++++++++++++'()*+ ,    %&,*'-)/ !"+-.$1023(#;4<B@=5.?E678ACD:GFHI>9QJRXVSK/U[LMNWYZP]\^_TOg`hnlia0kqbcdmopfsrtuje}v~w1xyz|{234567     8! #"$%nopqrstuvwxyz{|}~baxA.A6ADCd1e39>D39?|@mr7<*+1?7T7-<R 5]`]g`ghZg]e`egZe@@@t@j@b@:@2@8@>@D8~AZ@T@v@D@@Pag  y|]`ZDH|PP`WcPPP |FNSb@16+g^_`b 8 DPPPPa      y E U^_bPPPPPPPP]`l*?@$Ad@8@L@`?16?@TAZ@h@|@??@A`@@@??@Af@@A? PPPPPPT- E U hq} hl} >>>>>>>R>X>^>d>j>p>veghi7<>>16DDPPPPPPPPeghi]`lZei16@^@@@@@@t[\^_gXY7_II)qr*mm()Y[d7<CE}Xhh)*`JJ(st) 9W+07<7<ORtz277@BQIJTqtVr| KQ  Ee Fe Ge He Ie Je Ke Le Me Ne Oe Pe Qe Re Se Te Ue7<  7<  27Xr| MW [[)* SS()%*'  57< 16 mq 1< mr `*JJst . ? $ 6H5e  3d  AASb7_)616HIINqrO@B   l (VVP``QRTpy BK7<*>>D    1 7_)AA+hl,}1II<qr=>hq} hq} ^ $6`r|;FMWQ\HHJJmmst (*[\^_abgkmnXYY[AA | | 1<#*KL"#$`>>(JJ)st*`DD(JJ)st*7_DD)II*qr+ @B !"#A`FN(JJ1st2*`16(DD.JJ/st07_FN)II2qr3ORr|CDE>aA |1< #*Sb   7_)II7qr80 7<3DD9`(JJ7st8`Sb(JJ8st9AAhl} 16 (*[\]]^_``abgkllmnXYZZ7<>>Y[(*[\]]^_``abgkllmnXYZZ16DDY[(*[\]]^_``abgkllmnXYZZDDY[44ABXX+,1189Sb.; K  -X @ Oh x Wf=68:;<=>CDEFGHIJPQRSTUVWYZ(*5->FQegtw>\]eghi7_Sb)II9qr:`(JJ:st;`*(JJ:st;(*[\]]^_``abgkllmnXYZZ*>>Y[+0 7<(*[\]]^_``abgkllmnXYZZ16>>Y[Sbhq}0(*[\^_abgkmnXY7_ %*Y[IIqr7_)DD:II;qr<7_)16;IIAqrB$6`HH;JJ<st=>>Sb`DD(hl)}.JJ9st:   +07<7_r|)4II?qr@7_)IIRddSqrTVI23456789:;<=>?@ABCDEFGHIJPQRSTUVWXYZADKNQTX^ 3Ajl>\]efghi7_)16;>>AIIBqrC 7_0AAAChlD}IIITqrU 7_0=NP16b@BhIIkqrl%*'DDK7IJQqtS268:;<=>CDEFGHIJQRSTUVWYZ(*5->FQegtw7DDQIJRqtTDD mq  UUNO7_):AA<hl=}BIIMqrN7Q@BSIJVqtX" 0!7<9?E y ~K g lQ W i . ?     2 C l y#5 G#(Y<M_qVVw``xggyz|~6+,-./0789:;< y z { | } ~            #$%&'(5002OQZ~)+.atuv  9<?BB$6   +0>>Fgr|8CFHHb 7_)616HNOPIIQqrR7_)>>+Sb,<GIIVqrW7QIJ`qtb7QIJbqtd$HJdqtg<+,-./0123456789:;< y z { | } ~            #$%&'(5=23456789:;<=>?@ABCDEFGHIJQRSTUVWXYZADKNQTX^ 3Ajl   07<8>?@ABCDEFGHI55Jljtz|qo#{st9Dmk}usqroamp"&!"#$%* '7;8:~ncigndvyxpe !)(CEf<`hbJw#CAKQTljSqr 3AXDBRULJYHIF8hk  1524V]E:@^>\[}i;MPOZG< @B_=W6~7?9 IN#7_) :KIItdduqrvx 7_0=NP16b@BhkIIzqr{ 7_0=_a16sAAyhlz}IIqr`()*1 2 ZJJSS[[st  5(*`^twgeQ->F/  +64,230'STUVWXYZ[z{|cfPO+/,.LJIN]rd%$.&)1-\y=?GKM0absx_ vuHRH##j006688:>COQWYZ~ /UWXY  [^*h-0w22{57|:?BBIK006688:>COQWYZ~ 0VXYZ  \_*i-0x22|57}:?BBIK 002OQZ~)+.  ?BBIK789;>?@DGIJKMOPSVZ[\^_          ! " % & ) + , - / 1 2 5 8 < = > @ A } ~  j k l n q r s v w z | } ~     ! " % & ) + , - / 1 2 5 8 < = > @ A     #$%'*+,/035679;<?BFGHJKbcdfijknortuvxz{~,-.034589<>?@BDEHKOPQSTIKNOPTUWX[]bdefhijl`qruv{|}~    ++--./0011234455667788 99:; <>?BCD EF GHIJKL MOPPQQ RSTTUUVVWXYZpyzz{|}}~~                                     !!""##$$%%&&''()**++,./01122334456778:;<==>>??@CDDEEFFGGHJKKLNOOPQRRSSTTUUVVWWXXYYZZ[[\\]]^_``aabbccddeefghhiijjkkllmnoovvww zz~~    #$6 7QRRS     01<=?@BCEFRSbcg hqr| }  ,-2389IJqrrswx}~     3 4 4 5 A B i j x y ~             $ % ' ( 7 8 D E U V f g l m p q { | | } } ~ ~                                   - . ? @ O P W X X Y i j                 3 4 4 5 A B i j z {                  1 2 C D          "#=>>?KLVWfguv 01ABLMWXabdeeffghikllmmnnoopstuvyz{||}}~~       $%5667HIZ[lmrsxy  "#()-.;<MNfgst%&+,FGGHTUUVVW~  !2389>?JKPQ\]~ 34%&())*,--.1223344567<==>?AX\]^^__``adeeffgghhiijtuyzz {{||}~   !"$:;;<<=BCDFG HH IKLLMMNNOOPPQQRUVWXXYYZ[\\]`aabbccddeeffgghijjkkllmmnpqqrtuuvyzz{{||}~   %&())*TU_`bgpqtuxyz{|}~  3445566         o7fh=T7gP>?d\[] P~hPPiPPPPPPPPPPPP6PPPPPPP66quwxyz{AA@@uquwuxuyuzu{uQQkkddQQQQkkkkddddQkdooooooo     amiri-1.000/fonts/AmiriQuran.ttf000066400000000000000000005166701434272261000165530ustar00rootroot00000000000000pGDEF,GPOSVqXGSUB&VW^>OS/2S)x`cmap(JdTgasp$glyfd90%](headί'6hhea2*4$hmtxS|locakS0 NmaxpjX name  |post$xpreph(9M_< 1|%,H,,V+"GXKX^2 C BALIF H l!$@,=DXiXi,K$1/qZOqZtS }8j+6:*q5**==99==8888<:?[>8<<q566\V`pIIIlI?IIzI\ILINIx*:`*<<<69,,ZeX#HM)*IIIlI?IkIVIBILINIxIM=yz!qZ,qZ/,GA':8ns4*%=?'<z5b{=q56??L5[> 08g<<<_,: :=/=79898;78'D#>I96></2hBQQ)6Se?].T<ZHH_0&2A`>{>? =n=!R)9?`63+C;P>(738#<8Kbh0pE^X|077!00af=gITI\IcK= Z5I%%ng'P88784_` <hT(2D`i0'7M9l0-0P0'!"Gnns4s4s4s4s4%%??''''zzzz555bbb{={ 6?L5 0g<g<_,_,WW//79798888;;77''YYI9I9I+I98"62++@@/222hBBBQQQQQQQQQQQNQQ))66666666666SSSeeeeeeeeeee??)?].T<T<TTTZ  HHHHHHH_0_0&2A2A`&##{?           =n!!R)999?W~_d.'?;'33333ksx++CCC++P$$((777333333333338878##))8878KKKKKKKKKKKbbbbbbbbbbbh0h0h0^^^XX||::005NL88L777777P!!0000K= Z5I%%ng '!P8P887884_`  <hhhTT(222D`i0'' #77777777777M9l0-0P0pppEEE*666   KKKbbb||/$$$$^$^$$$ $6$,$$$$+$^$^$$$ $#$$ $$$+$$$$$WDDDDAs,88w'"\$$6$$$$$$ $#$YCC,G.&12'4& p95BR1RG=RH9%'A/[70dF(/(=( (/(<(1(&(u$0(0^(0c onGj|<Mq$&&',( &vh(/  !,7,+77 %$Z6H;&;C;+"r+r#nN2/ TBb@"/Z]z~ % :X\iqz     " & / "%? 0[^{ % !@\`nz    " & ( "%>mcTgzwuqnmbbz*+,-./0123 |HkP>;UR]iv"*6>JR^u (Rs<t > j  ' / J V b j r z  x 4Lbk%-5= (08gv  i &O!o  F ![!!"T""#1##$'$p$%%?%%&&C&&''Y'((M(()G)**q*+7+,,j,-I-..H..//A/u//020u0~0001 1t112#2P2|22233T334454o444585@5u566e6667.7c78838899`999::\::;=;;;;<5<_<<==R===>D>i>>??A??@@u@@AOAAB$B,BnBBC C;CkCCD(D_DDE4EEFFNFFFG&GpGGH"HHHHIII"IMIIIJJJKKK8KTKKKLLQLLMMSMMNNFNNOOJOOPPdPPQ>QzQR RYRRS!SWSST@TTUUGUUUV7VVW!WeWWXXMXoXXXY$YfYYZZLZZ[[B[[\\K\\]]E]]]]]]]]]^ ^^^%^1^=^E^Q^]^h^p^|^^^^^^^^^^^^_ __#_/_7_?_K_W___k_s_{____________````#`+`7`?`G`S`[`c`k`s`{`````````````aa aa!a)a5a=aIaUa]aiaqa}aaaaaaaaaaaaab bb#b/b7b?bKbXbabibvbbbbbbbbbbbbbbc ccc+c7cCcOc[cgcocwccccccccccccdd dd"d*d6d>dJdVdbdndzddddddddddddeeee&e.e6eBeMeUeaemeyeeeeeeeeeeeeeffff%f-f9fEfQf]fifuf}ffffffffffffg gg!g-g5g=gIgUg]gegqgyggggggggggggghhhh$h,h8hDhPh\hhhth|hhhhhhhhhhhhiiii i,i4i@iLiTi`ilixiiiiiiiiiiiijjjjj$j0j;jCjOj[jgjsjjjjjjjjjjjjjjkk kk%k-k5kAkIkUk]kikqk}kkkkkkkkkkkll lll%l1l9lElQl]lilullllllllllllmm mm$m0m8m@mLmWm_mkmwmmmmmmmmmmmmmn nn#n/n7n?nKnVn^njnvnnnnnnnnnnnnoooo o(o5o>oJoRo^oforo}oooooooooooopppp%p1p=pIpUpapmpup}pppppppppppq qq#q/q;qGqOqWqcqoqwqqqqqqqqqqqqrrrr+r7r?rGrSr_rgrsrrrrrrrrrrrrrss ss#s+s7s?sJsRs^sjsvsssssssssssstttt!t-t5tAtMtXt`tltxttttttttttttuu uu u,u8u@uLuTu`uhupuxuuuuuuuuuuuuuuvv vvv'v/v;vGvRvZvbvjvvvvvvvvvvvvvvvvwwww"w.w6w>wFwRw^wfwnwvw~wwwwwwwwwwwxx xxx&x2x>xFxRxZxbxjxrxzxxxxxxxxxxxxyyyy"y*y5y=yIyUyaymyyyyyyyyyyyyyyyz zz#z/z;zGzOzWzczozwzzzzzzzzzzzzz{{{{#{+{3{;{G{O{W{_{g{o{w{{{{{{{{{{{{||||+|7|C|O|[|g|s|||||||||||}}}}'}3}?}K}W}c}o}{}}}}}}}}}}}~ ~~#~/~;~G~S~|~~~~~~~~~~~~"+4=FOXajs|Vbn!Dg/7CKWb|˂ׂ߂ 9]gpy]WȆ6z̆JrHr1zՎ^ڏG=g9Œ?{t5ٖꗰ4nڙ.uT뜍j#)u֠bҢ R̤3--o멓Ҫ.e(NWuƬҬ-ӭ,9FS`mz!*3!'3#! f!X@ 2&'547647632#"'&z  %4ܩ Ri~7&'&57667?1S?$5k4$|Hzo{6V~,~874'&'7'676$4j:1$?Q2?~U.<{ozG}D 76''&7xX ' K= ]9F:2#"'&''47676.     c~=7"1'&"#&'476:&B" W      FJ2#"'&'6+   Y ,~2""''&547677&&'0&#&557 X "A&9    k)'&'&7676'56'&&'&5676D N LL M D1 == 1FL B#8S<e&J 5=Q X#n6.6P&KeJN`[ 677677677667G      `  ] \W!?J'&&''&767&'&76766'&'&7676'&7&'&$  'RJ! ; %R#  $ P  J    I = V *'Z     `>?Kn 65547X  e  Qkm#6'&''&767&'&76&61     ?OQ0  "  k#:  R'  /> >3 nA\H1 6''&767632  .$   *"  ] /D (VD ! 6'&7666'&#&u(?)$&P o%#I0 +6^ A! 6'''&76l /-  F 0 4 o)'&7&'&76'&'&2676632J' *  3%**/  !A   *99 )oGh`yYTlpBpK63276#"'& = 9@ QX=4ul}G 676''&7 S [ 8  5 c5{76'&56'&7(  k +=KEa4l 676327632''&''&7 2Ru  2w  x ^i #8,JvJ  ?-+632'&'''&''&7767676 ^0:? v : +; 79D%b 4v   e$'Ug %&$.632'&'&7767&&'&776$  9 E9  9"*W- vX  M5  L +' &(!E >%S%D 1D@z6#"'&5&&7676$C/B 22KM ! IL/!K5 " 2GE&& E5RE-' \3676'&&74'"#'&7o9j 40K )*V2_2,cp )TL3$'&5&'&&'&77676763279F+ 5\) )v"9&M  DDG Q5]w a 9o77yN!&6676'&&'&&#"''467667669E+ 4]) (w"8'  DCG Q5]w a9n77yxH6&'&''&&'&7276E;1 :.6 "J TT"cAYi|G4;  *e:Vu`q 6'&'&7v _ ?j  iN &Y*e8&Od<<6.!EL&&'&&'&7767676667676''&'676676'&'&7676%&76h   ! ;/;KM! */H2b/ D8 jMH9P$YA$)%"! 5)= )&+ "   )@(J!D_27&'&'&7676#"'676676'&'&7676'&&'&&'&776676'&&''&&'&75) - %@H*/H:b')C jMH9  5) !7$'6:H+ "   )/)%"2  + " 6'&7676#&8c_.5;3c /Dzk&"44<6'&7667632'&'&762567&'''&7763627&&  2 6@  *:V(  5h) ! U  b%" '{Q+ 3A|  2A#276#'&767&#"54767632766'&&'&7I9m G=))M#  JLqM( . #2 "1 %Hd6   78tw5 , 9$3+6'&&'&76''&776'0&'&7 0101405-15$G632'''&'&6766763276'&767676767674'&7 %0  AQd %Xx4  ~ & /+$4O !-HKQ,8   + ,4&'&'&7#&'&547672&76767663"&''&76767&'&'&''&7&'&'&7&76767&76676767&'&76667654'&6765&'676'&'&7632#"'&&7632#"'&&7632#"'&&7632#"'&;; #lp# ;;:: $pl$ ; OFF73zz4  DD 5zz3u HUUGHUUI     5    *+ QeeR +*** RddQ +T    >   >    &\]    <   =    ]\% 572>>284 571??166  i    i  ,`/676''''#"77'&7754'&76'&32#*66+#w))w#+77+#w))`*#w))w#+66+$w))w#*66Z9 6'&766'&'"x&<,,Mt' $C+ (2[0eOK"47632#"'&74'&#"3276e s :!##$7.""#9; (( Xe'&76367&'&'&76676   (F,  "    #  #o76676'&&'&767&S  #p *  Y  ! &p2 '6(J3eH6'''&76 U% $ 9 ' ()/"7'&7667632'&763767&'&1 &)B5 :/;   g A!0_@& u p*7632#"'&#"6760'&&'&7676! 8+ 9P  ; - 5E(($ 3'0   0' (1I7o4*#2'&7676367654'&'&776'6'&&'&7   !T< !$AL.f_-444 35- <&%0.-+N, *hw#-7AKU^g661632#"'&566666'''''47632#"'0&'#"544'&'1#"'&547632767&7'&'&7'&7'&754&76&7676&76&7&'&#"'&5476320676454326''&%776'&&7766''&776'&&776%76''&&77654'7&76'5432''&#"6#"327776'&776''&%76''&6'&767&67&'\ ,-   8 3( 0%2C >FDG:;-#*$8* 8   -,  ,.   7    /&4@ >FFH9:, #8+ 7   ., %iKy+ 'n Eu +n'OLi%Lj#h#jL;,,# E,,}!! l D D +o&+ &o^     : ,  /[4H;:,"*$9*344'0&4C >4[/  , :%*,  .\ 3)  &:,#)"7+334'/% !A >5 \.  ,*%Lj$ E +n' E:#jLk%iLLi%!!+ 'nw!!,,I++ +o&+ &o DF D+(0(,ya'77'{{{{SSSяJsU##"'&547632 .. .0-. .- M\kKl}GM{7NlO?-Pk$2-7676'&#76''&5&'&77676)){<9U 2`:'  ~ ?*d .d3 O[J  iV!*''&767&'&776767676'&&,;P</9f q #) %<` # XXu; '6 oy*G`#D]   ( >fB3.76676'&7667&'&7667632'&'&K#:  .\.WC ]@ [K#!' !F^D7$ S =)LeK80@2k"*"  #K FL3TN!UxHVQ 67767767767K       `   \ I\V/]7!9]99Yn#Dbf@9af@9yb/<F@9b&)zb&)<Daf@<)@b&&))Y!b/)</)<Z#&a,B,~|,<KYiy7#"'&547632"'&54762%#"'&54632#"'&547632#"'&47632#"'&54762#"'&547632#"'&547632"&47632#"'&47632#"'&47632#"'&462#"'&547632#"'&547632#"'&547632"'&547632V  &  j    h       {     @                     " t #       Z#&'&&'&7676#"'&$ =%%'{ 8:0  l `Vr0"76''02'&'&'&77&'&'&'&7676676667'&767676667'##"'&&'6'&6676'6763237&&327654'&#"7667767&''&&'75&&'&5476675'   F_    _ F   -f8-+ E_  !  _ F ,-8hH  9   9+5j2O96*9   9 ~ ! "  M  MM   M m `F !9F_  ^F !!! F _ œM  L  5\U  M  M !    9  9H9   9  /`:Ws&'&7676''&'&767&&'&7743&&''&&'&'&7676676667''&76667677667'#"'&'#36676327&&''&'&'4'&#"3276'5'75&'&'&766767&''&&'66+h8/+ E `      `E -8f-   F_    _F  'M54*8   9   9   9*6s! " M  M     M   Mm _ F !!! F^   _F$! F` fL  L  MfM  M  ! ! 89  9   A  9    9 p%7Sw #6676766'&&''&7632723&'47767267632667632#"'"'5667&'&#"&5476'&3676'&''&'#"'32767676326'476#"'"'#"'##"''"5476554767655'&''&'476767'4776'5477632327767&'#&'#"'&7&'&&'&''&76767'476327&&'&776074&'&'&77632#"'767&&4232676767&'#"547632&'&5#"54&'&&''&67657632677677677676'&'4'&576&#"2767463232763#"'#"54763276327&'767&4&#"%& #4#*  G*4T   _ GD652;!)X.[*%K3' 3I%   &+%iB ! +2o (>( . =  ):E.!"  <'4!PQQ$34`  + ')  $   WWC 16  -,  . ;$ ".q   ] h3F   h3E  c   !" />    77  k% #E u ',"0l@01/4 (*H   <%.    J# %&FK #& R@ 0 4F5I% ,9. . " - 'C= #    T&fE,9<#MlL26 1@(9q:7  ![7B  '(R$ *$I  " C +&4: !'&*6[D*' &65"n  # # *"(  .       $ }G,'j ~W'j*7-'Ymv'Y %>'Y'Y 'Dh'['D F'[ fw'Dw'[?'A<'A'A'A }'A 'AC'A+PT'8' 'U'J:s'KW'J,U~'0U'1'0 e'1 5e'#rk'"k'!k' (A5'276'&&'&'&67676   E퟿! n]g">M ;y ]=J;\v!'62#"'&&'&&'&7M] nh~\"6z3g4hR :6'&56'4''&7Y&/1/Y  Ti;5#"'&76&'&676676'&'&76676- 01%Gk ?͍  JI#Ex2)}  ' _ "6\q9  <z # <(%"'&7667&7676'&76676I,%# . )*  :IGQh P d%% &58 ! * C 8#56'&7676676%6676'&767&'&7676) |YF^!;B  (c; 3S 'g? r@"_~O .   o@ $( @=+^X@h  9 2{ " 0&VC%2''"'&7667&'&7676n"\]~7 (;<0Vk3C$Z#6mh&2  *FA*$4!76%67676#"'&#"'&76x$!  D-$ 0  1#? //:.xx:?>#776#"'&7676'&'&<  a   ;>%W4b3 # *e)'&766767667&'&7656765 PxR5% #R-t.976.6 fBW'1/'9$ 7#"'"''&76767632 66.Z  n& !Z7=7*  9 -%/%#&'&&1&'&76767676'&&'&76676 A 0=kS(  aN&   Zi U})e2?  i>D=667676727676'&'&  /j9P 7x'B I|"> h  d8?x,9676''&'&5467632767&767&767&@+6 6$  kC=bּb77(9$ c)  ^'1j):!)@'(> O0F!i9:<Q  Y(2#"'&676767&'&76763767&s ZJ }?#n $"Nx?%_   ? ,m4<:l& %<.66#'&767632766767&'&'&766'&('' a1o??s5 HHh\\7)P B# $ ==q(>3'03-r4K :/$4 L3f $ {'122'#"'&6767667&76676&3276  6 P~&9<  47) 0' %{(LC  ? C   ,3)Hj8'K5A27676'&7%6636'&77&'&56:( $<._  j@Q&( yR AA+'wf }X4    O#"*5PSIw<'  "ZLo,kV9$76763276'&#"'&767667&'& "%&@&MQ qe|JH8  H=o  9 = )$$ %L#2%676'&767&'&56767676676y_(yCG=="!ڂ//ÅEN'TT;H+6?{`6 ^_\!(59@676'&&'76&'&7667#"'&7676676676'4'&'&'&76{ATWK  ,''=( &>C._2A,Z& +E!. K,,& 81 * GV , ]=(4672'&''&'&7676767&547767&&  8 '* 5I N"6" :21; Q  "U5  " 3') - &%/6'&'#"'&767&767&'&&76'&65&'&V*+\[ *QZ_& .& 4  't!(# BZWV6C2 "UD'A.J 3$ 0 4 , 5=Q6#'&7676546'&"32@ &&1D8d /* 13F %;:?<##21PQA :%d%-7676'#''5#"'&76767676'&"676'& iZ> 0!"k1 8=)L&~.'' %<_ ^ ]  #"S& "0ClZ,|O 6"L&*?S46#"''&567632767676'&&1&7 ( b" $t4<+1  aW0J '*'<abH Cg6' !SQ9W*576'&'&'&76%6232'&'&5476^>!x RE+iO  Z^cJ 5KuGE~}G'*  ?R+%&'&5&&7476'&'&&'&776 #$Z@(^!>++#  ,1? 7  * +$&d.7'232767&'&'&76%632#"'&&'#"&'&54 *65!s  xfIjA E0 ['[U 5; @ s4vB_*&95%#"''&7667632767&776 u  H*Sq]e88 +%S 'tZ0\-$P>R77a1b1 }JZ X#<%x"67632"#&74767&&'&&''& ! N7  $ - 45 >''|SSf9 >#2632'&'&76767&&'&&''47   #TUAM5@  1   ![::Y fQ3$$md`+{R oPPF"7'&'&"'&7676'4776  9* F##  Z>kn E " " B*f0*+%#"'&'&&''&5&'&767676<##F$ [I*%4:  $$!m , +-(j# P6: v aյ^S- H>'&'#"'&763676766'&D7 M;/B .*3##7> E 227[>b" +8S")7667676'&'&&'&7667667&h!/C    T$-% < A,%~ ?; 9" +3 'c 0p?9&54 .76#"'#&'&"'&763676&6'&&$<=KDI qJ20  ^,< + 601A28 ZK- -Y3%<)%632##'&766763276'&7   AKZ76'#1U$ ucr55L&gA_$\yP<%'&7676367656'&&'&776 :g758 >&%rN !N/.Y,0"[ 33Y[M hA@U.O'9 J ,v08%32##'&'&776327676'"'&76&#"76?% 'OV?3C:3!UUVV! S#"4*  w  1j #6`u1dI0 !!CXEr :Vu)12'&766767667676''&76&#"4 Whe2 0%C12b?w71=BR,,@ >r8;d>H&36m7a@B./.,'$$@uv:d*!'&'&7676767676676676 W9(JK*8  @) %N+)-E6y(!EBj((N5Ab" #=(%7632'"'&&'&'&767667676'&xAA88&1A13]+$ +>P ,,`UU  ;/)(*V%676'&&'&54767667676'&'&7 ' ::^:I#:9 _,? (CEAXJK  =S 5N/`BL%''&7676327676'&'&776326676322'7"6767&?u`#it>= Bqf3Sm" )%7'%S.\4& 56 R|?CU>@#N-[%!"e GFXqK d3G( Y: R ? )L#F& 0B ? B2: "(/<2#"&''&7667&'&#"#"'&76767632676&7676 -, [8 4 ( 4# J,({z9G8& :hi! " 0/C G*$ F & A 20$k4$ =8>6''&&766766767676'&'&776676&K!Ho\-f0   q%$ %"OWXYb,B9WV:'.- '4 NsLB!KkD8 . W Q% J 2WED %R5 ?:ILW+2 +9UM%67676#"'&#'''&'&7676327676'&77676766767676 15J/ :25Y'v+ 2> EX\*; `1 '* ^9"q Q.; 6T-Y&GG\t/t"#?NX S !!1 ".6''#"'&767632763276'& I4">=@40 b4AN) () &($Q6RDK,+ Z%* ,9uE632'''&'&76763276'&7667676767674'&7}  # />.S 6q) .? $Y-  44 '2k .H: &Q +I =+Y(HIUy*N` #  *L3O:76767676767632#"'&'#"'#"'&76y0 "# $<  R&G$'98',c 1r  @]c>8.''C; 9@%'&'&776&'&&''66763267676#'667&ZA.% j]C    ]d8*=N, bwat]?&  ? H#nIJ@/  .  /B+P. 8 V,& q"C:E6676"'&76766776676454&'&'&766"6676'&}  H&$!J[U ! 8  c]`:)(  dn 2Pt 7 ?3$6'V=##)\<8=D667632667676&&'&'&776&'&&'&&'&667&!   >Y4'7DK-% $_;B Ilg=!  J%1 0< # 12* A4l99c++/6` - BC7@%&'&'&?6&'&&'&763267676#'&67&NKu;G $+7  {'(Dh* > ##'%62'&&'&767667667&''&7&;#/ AB'(B!/  NG=((0&;;!a(,2YYJK   (##:*;O/+9c-6766767676'&'&'&76676#"'&@   O&6 ==1$O8az( zH9t1=-  Jlk8!/ ): %& B56./&'&766767676'&'&'&7676676=[<kl 7 0 c#-v `b$i.[ 3#A 0'M-s Nj2 Wq^,-6lKc+7'&7476'&&'&&'4776#"i9' tP- p~? *Dy77M ) -H D2'&7767676'4x 9&   I// L  ( >6%'&'&76767654'&776 HH<  'cd #"&&''&7667632766763676   ! D*  L*B8R) (# =I 4   {)766763272#"'#7667&7&32767)   *B akN#b?0' %)H(LC A9JS?%F-8'K2y:UI7676'&&'&&'&776     11@99B  +$ L\#6#'"7763676'&&'&&'4776v YtWG %0  'x) |K8M j`$/$9KQ372#"'&'&7676#.8#2' C!=&z?  D @6  NL*22''&7&'76766766763266767&'&--/.O\   =I?%5Q*  D$Q.Z Xb^""L$$@?  '*dY)_67 6(H>a` ?8U#'&#"#"'&76767&76    ]5) Q') , 43 JP?q,7&'&776'&7676E  '&: L83/,'$ )*+'&#"'&76327676'&77632\ ' $^5 %OP(1# X` '4o=z (3 'v (F6 Z6'&#"'&5476I5& ($&&@"$$ K&+H $& d*-a@ 6676'&'&76Dn+W%<[1Zd'  )5  E/= Q3lA 6767676PO31  ,.O%6'&#"'&767676l2//DG  =P%***-.67N-# (&%b854?*%&'&7632'&5676327676'&'&&  6 ڙ?3=;!b1B $ (*02QBg}u  Q "676'&'7676'4&''&&766 )';% =5*  )  U.oK' 13WO  +k(667'&'&6326767&' } *[3ecE+l! ?>R@!"C  '$%!11z.I9<;$$+%'&'&765&%&'&767667676 EF%#5'$)xQW&  \ <89TC + yC !#E%]!+97&'&4767676'&t36 H- #25ZP   4   " 7"547676'&766769)   !6 Z{z' :8J<!%67&'&&'''&77636'&'&76H\ /F E[.O!  ]o <aBY JWn7i2؅8 + 7'&&'"'&7676=9!X%  !M(  E,+ 1  9"767632#"'&'&76767&'&^ %aQ*  $,.9j Ms& "' 7=6  :J0  9'5676''&76763&5478K  <*(+9"= Z; B&  Y!&'&'&7676'&767676'27&'& ./L'6!8:?%  b C \'Cx*)h."Q3V676'&&'&'676'&&'&RI0K{  $N+=DK %=2&T4T 3  ;300 A&63#"''&763676'&&'&7  4+ l / "W  8~GkQ Kg %9+Wx 0's))1%'&7676327676&''&'&7676&76k Fh660' H9 -2%/=$)6@_EEtWJ@<3d#"FF "N0*g86'&'&'&'&'&767676676766763276'&7@ ; B+7& 3,'lD E1    Z)N= 4 N4  |UQ% 0#1 +  2 #'&767'&76676? 6_  J  X Z (G  ((  ( PIA0F*%%'&5476676327676'&776@/3#F[  J --tqM/($I30Ao S_ @ ;`nA2#'&&''&767667&''&767676$76e̽X >Cb$ @{=Y2$-. )J"W"aD/@ ",+% .l>SECSK "1# ! PX A%,R&@ #"'&'&&763254'&7667632XY 3@ UF ˞  X    F `!%9%'&'&&''&'&#"'&76763236767276676 #,33461'1W1 M- ( 9 '5 ?4J Mg# e  - ,*#7'#"'&&'&&54'&7637676  ! @ !\( >5)!A 4<)R("A >.&'&767676654'&776G`K:3 @?8e3h%?f%,?@?IH {5#"'&&'#"'&767&'&&'&767767676 )3 Y999$! /6FQ 2D <0F"R/ ښ :7U -]??>$ ?@S] 555 #"%2'&'&7636767676'&774#+L*5`H!ED P23]49 0/=! Z>!6676'&'&&'&&'&D    '  +& C !cI] ,l /:7&7667676'&&''&767"6676'&7276'&&7 /"# /?  W+H5; %#8 2%7W 9h#,03A * ## #F$ ''12+  (Z76767'&7676V5 f  J  ) Y5H/:( 3=''&7676'&& 6h4'   <4B  ,') + 5$&I>6'&'&'&'&14#"76766767676327254&'&747@9& ?Du1!'H 4Q#" 0.+'C >O&C= V (_)  nH#'&7676'&'&&'&7676$76  ` 1@ Tq :GJqe/7  !F  (8Z"='%'&&'&'&763767676'&'&77676 *0R3 i(*>> )(.463  01* Fg&'&767&'&7676'&&76$ y%$67.C*3]&-C\y9 %.6 -70///= i,`u!197#X*m)4-#d ! # )g=f)%'&76676766767&'"776"O--V)9Q;  $LL6r:') G//3 Mm$  yCE -%  4 cK"632'&'&&'&&'&7     .  /-Z *6/GN '&'&7$p%*PFR11&;h*Q3076#"'&&'&&'&&'&'"547667676766'&6D 4 Vb+7'   )/)) ))2>    #^#"&767&&'&'&763 :'   $ xT @3dF-)7#'&''&763270&''&&'&776 ) % H  s5#+2q#/  .%((6%1%2'&5'&76767'476676'767&&i V!X. 238   c $ 6 j h1 :)* 1$$97 g   '767676#&'&'&)8D 8R 6())& '5 eh $ 4 '&767254'&77632KK @4'' 9E-,< 3&)%'&%&'&767626767667676   " A=A /g{33/ +'q  f&6763276676'&  , "   M/2#&'&'&76567632 .= .! 5+$N(&O  ' ."<872#"'&&'&'&'&72'&'&'&'&547676676od C@@_  Lz>,0'@ '(D  "bR'D W]+(()6$Z)[.#1 PJ '&.`0N7'&''&767632f$)' =+. 66'EB#03&'&'&'&76+ 9"!M'  # <+1W ,,+26/%'&7667632767676676&'&'&77636  GGp! H)_FC 9''I#E33lCH%C=X#"*!6!?/3*%'&&'&'&7676676'&&'&'&76767632 0!;w  >c% 1-Q--J2>sZ$  %< ,);u!%6'&&'&767667676'&7 AAZ32%;90' ,k pMM "$:(2<67632'&&''&76766767&7667667&'&&'&'6'& [\ O2sk6 )?$#   !h $-% D3 QQ/U# 84  .! O 2,G  ;R-2'&'&76327676''&'&&'&776E   S   ')(   '`JIfx00"y! +>6%'&767676'&'&77632%N'./n w: !('*'AZ/F0d1C  G-5'&7667&&'&'&7676767667672'767&T$     "(hg-U<;=$9qF'& 8ji!E_\0-G$  #",,;-,4*-/^$#!."=\3Q/776'&#"'&7676676636'&&'&&"7667676/n={F  61a&  b036 ; (5  )$"7     R%'&'&'&'&5&7676764 32 $$55%Z: &&; (;;*+/.8s5&'&76'&7676327667276'&'&'& " /e  ee|9:; w+5RRPQ_ 5    #00 4XW[iJ`& 1)  4&%'&'"'&6767676767676% # 92)4)(  2$' O ;-9"3 % ' O<8!"'&&'#"'&&'&766767676'&'&7676676! W;-8/-6$  )#(DD!   5d1    C,%D; 66L) ?    8'455!'6676767667632#"'&#"0 $u%'   '  /(C%'0' * n aG )'&'&'&'&76766767636  rr)=- 7^(H!2g  L :  --P@Wl6'&76'"7676766763< 2S!.? :jH8'`;   G   9V'M  "$&7632'&#"'&7667&&'&"'&766)[1"G> L+U!gg*>n.5?   F**?   T*%'&767237&'&7676'&776QN/[3  6<78X ^_*"$?@! < ! +'"1Y4; N $"58 ) #"/%72#&'&76676&'"7767682:   =""<%%  :$L>:.+    2` 2Ij#+! 7)%-767632#&76'&7#&767&36+% "V` %: /d  #  * ?)R@ h-+  M; 9 >I<A +62 -H+&6'#"'&767676036'&'&7$ E706 8  $ $Z%8]BN  , -52767676767632#"'&'"'&K  !# #/  D&F$., Z *  @]c<8,DV (676'&7#"'&766&676(-+0 6 +&4iJ1O\M7.01 19  9DGmP/ s;L0>%''&547661&'&76767676#'&'&667676` mn210 =2   l%$1[+'Y1d    F '0 "  A3X 76547&'&71 ?   2*^ //+ C'6'&&'&7(/" Li76'&&''&&'&776 +",  E 5B  f+76'&&''&&'&776'6'&&'&7 +  ,   , E 2A  D)2'&&'&54367676'&''&'&76V  DF4( )Q 5   c   ~ v%&7676#&'&'&'&7676'&&X   *  V!,N S" 4  %s) 0}x  :> ;'6'&&'&77&'&7!"+ ! - D0 0AO%676'&''&#''#"'&76676327676'&77676767676 %10.  :25Y 'qfAB"; 35LNSU+;  _<  () T EQ.; 4O7V@@j+Z.q35&' @QU S ! M 776'&'&7667&&'& 2  !)7"  >)W+C A  Q3Q3? 676'&&#667676'&&'&J'Vz #S2{a6- +A(*V2F *R.?vFg0>"'&767'&7676Hg 0U  L  (Y'\.P2:) 3nK%'&76767667&'&''&7676%6bi Q >!?%  3Bi 2  .- F 3MhS b`]|k7U UV <\3Sc#667766'&'&ho? D ?KLY o 2 D  3$'&'&7676'&'&5476766768:1  kLE #SJ 7Z.E;9%Fk3.&Pv/M ?E2d c0%'&'&'&767632676777632>% T2^OO30H|4h#!  ^ " C!? II3((.%H&?{#R / 7#"'&3270&'&&54776'&cN +B, *#II+wwky ,  Wx"H ,=4%%'&''&76307676&'&54776#S!P;-^ ^,= N3  6^X ,  Qy'H55357&'&547676676#"'&&''&76tX!&SJ 7YXoQA)1 k@$ A0$^O|J"!hv/M ?D11GR2(^C)%63!7'&7667676'&&'&776'&F<    * !+4   (Lyc45 207'&'7676&'&&5467762 P_>^   0+#{{ $ 17'&'&&'&&54#""'&76767654776  +22jH2 gC&{d @ECMMR"2*6fH+5{&%'&7667632767&776'&' Rlcc98 +%T!'tZ0:!<?S77a1b1 zMZ X#<&? R7'&'&76&'&&'&776#//6    ^80!88g.>P# . e^s("2'&767676'&'&547676676 +ST CX*fPPdU{%O #y% !#,+*aD7,!;x[ >&M&&8571/0 \=32#"'&&''"'&76763254'&'&547676676,b?#0 =W8& H]:Mq5 ) F \)bUF3)=>Jc>K %6KN#K%1"?v[ >%L(A^@'676'&'&76   f  C %FNX'&&'#"'&7674'&'&776b%E" %= ,=  t1-0"Y9D=%8$g1%'&&''&'&6767632767&7676}  'L&Q, && FTR#G  $ 1%Y4g ;  A'M>EF . $#''&'&'&&54'&776sN.  |Y*)Eo8F0I=j)6'&'&767&'&''&7676676$R  >kGR _S) Ig 0 H*,Lu+_q:M ;0 *T 6-.& 4y;/22#"'&'&76767&%&7676%26- Gi?QQ'9  (5="/&44!  / E6b,7?HHB d2&. *%0 * B wt8u)%'&'"'&'&767667'&776'676'&_ 5%* 9$   UY ! I/9 #RN&' -Pm8|0 .8.&'&'&76766767&&'&&'&77632)FD#   %e  ) y!1 R8 ")# .Hze %O*632'&7676'&&'&&'&766*  >   + Fk$$H%  T*``h #676'&&'&77632#"''&766 #, #4 J,C (X! 4PV  7{$/%'&''&'&767667'&&776'765;@ "=%.<( ? *G jR /VO*( /!Fx% 8'"'&''&'&7676767'&7763+/$Hx$ Tx)';`)rJ1 ))6 5 E  h)A __X-232#"&''&76767&'&'&76676; $_ J* X501;2 &K   YXC(Q' XE6#H" N \`--6'&76765&&'&'&'&5467676766%yu  =923(2E .Ih*8D=15  /8(; '1&8|&'6767&'&7676'&76'&DM5-6ubq{3T0 XD&   /0/f~$MF B  1 O-!6'&7676765&''&76&#"76)!2):C 76@I G $*Del)"  !=J|k2'&'&'&767&'&76:""f  tLQDM-<\t4  F$%  0PC='4<2#"&''&76637&&'&767&'&76&6676776'&i, U56F!  a- "+ W$ C k "= =M3(B 0 "FE  6%=6  402 :;7676676#&'#"'&327667&&k 7#* ^S-1'5 z:C9 ",5!(6cD  $$&0'&76767676'&776'&'&'&'&'&0  +X&AG  6 $C$3I( .  q*'r  $ ;%U H8 F(,4#"7672672''&77&'&&'&%"767&+ &e  4`%&' "cdn - VfoTT1 &  !.*#   !)   }E!767667'&76676ru' %    I/  R5/83+' / '%<R06'45&7766765&'&'&'&'&7676$ [ ,A7V>( " JE @z9 4w(36i&"<;?A6"7767676'&'&7B  :a P. ./023 B 945*,j1!76672'&'&'&7676'&76676C~;.,.DA/Oi$xvE * H 5E <5  \F'&76676'6676   /(5 +9Y"J  A  -  )7!8*>E'#"76767676'&&''&7676"76'&r5# y 9"*4G  J[& !1* 3*Djd Z$''47667&7676676'&76$oM5] \=E > 6/1e"a)z; ?,9+ )E'7< *d7?GS,7&76676676676'&'&&''&7667632Q4$       ]   kCW7 # SPOi,&0:'656766767&767&'&'&76'&&'%&76'&65&'& 3$$ 5*)]\ )%P,Pq (h'# !  *@/ZYW5B24 .&# $  4 , 2$&%62'&'&'&766763276'&'"7> @ $K11  # =  B((>>T+G  ]H!` o&76767&'&''&7676676%6l& #3Dl{ 9& W? <$  ט', ( )^v  RE&  FCZ &6'&'&767&&'&'&&'&7   , #4  #  C$   >!@f2< .X_'&'&'&767662H %C(/H .@2 'F7'&76676'&'&'&  7@= .+f /D,    * (7'&7#"'&&'&76761076676$V6") TA  $  .p@ 3 h   o B#e25! 7'&7476'&&'&&547762'&|:)  P gU0 ' NC{ $   i!7632'&7676&'&'   N & b+ 1 # C*]@_m 45 v\. '&'"'&76767&776h13 $"!F  5%!EG J Z6% +  4#7#&'&&'#"76767676'&776 >#kF tKp%'~/Tw`>  5Odx +  G9c/6'&'&76676327676'&&'&7 (L ^ )[O67Dxn&  !Z70sG$@ j*5RHiA0%'#"'&767627667&776l&/NRb77NX$8g.5P,  2GK;:``a yK[++ 3-: 3072#"'#"&767&&'&&'&76  ]6)'  3 "Z>=T @3:T+/T&'&767&&'&776#"'  '5  %D  2& =88 ):I" '0.T%70#&'&&'#"76767676'&776 @- kF tKp%%~ D~q`>  5Odx +  i"'&'#"'&76767&7760h   T#F  5%!=1# (7  6% + 40K+6'&''&766767676'&'&7 !#  I)<(N&G# CAKf8zz! ! e6 h4N5 ]DN >!/~ 0q)#"'&767627667&776'&IRb77QX$8g.5   ,CK;:`Vk yK[++ 3-:pT: %: O)7'&763076'&&'&&'&776'& =;-t 7 ##%03  4_Y8R,  OE  1!%7'&7667676'&&'&776'&F<     :  $"4   (M#մ/+@ /  77676'&&'4776'&V_B   93 $"!2+%F5S %X)E J )(7'&''&763076'&&'&&'&776 V'A;-t * %:  .3  4_Y8R,  #7'&7667676'&&'&776'&F<     !   >1   (M9֝/+8 %:  7'&'7676&'&&'4776T#_B  A %:  2+#!p5S %&Gz&'"<&<GL&bF1&1Y&J%;W&J&&JC4&Kd4X&Ld44&J48&Od^&GU##&Ks#&JSG&OUs&JUs&KSB6&LSB###&Ks @&Gz 1 &K+ &J 8&Ozd &Jzd &Kq% &Lq%  1 &K+%&JN6%?&&J?x~&Kqo&JN{&K&J{5&JVs55&JV&J*V9WV9&J*Y&J=9]9&J%_= f&Kd?S&Md2Wd.5x0*H><v&JL<,v&K%,vp'nJIpn/3&J6/`&J6p &J\U9U9U&L *"g&L=sOO+&L#7; &J@; &JvC&JVCoQ'nGon9c9c+&G$9c&Kp+8uE"tD&GwDI&KCX&J_ZD`&OwD&JwD&KD&LDDI&KC6K'nJt6Kn\h'nG\n{&K&J{2y:U2y:Uy'UG2:'UKeIQW&3JSQ3]Q&3J_^&G&K&J&OB&JB&KB6&LB&KNW8&JlL&G6$q,z,&Kq,&J'&OL3&JLB&KL&LLq,q,z,&K)*&J5*)*Z"&G,{Z, &K&&JZ&O,Z&J,Z&K,Z&L,ZZ, &K&QW&3JYQ3IQ&3JKA&G?lA A&K>/A&JH1z&O?%&J?%&K0%&L0%lAlA A&K>&GAmO|O&KvO&J&OAz&JA&K5&L5OO|O&Kv??)[&G?&Kukk&G5k&KI+R&GI1&K`+&Jb(&OT&JT&KOTH&LOT1&K`+'&J1)&Ozc&Jzr&Kq&LqD&Ki>&J9' 'J3\ dY.&K/&J*YQ&3JsQ3;Q&3J=`&J V@`&JBA0's&Kl0's)gg&L$#&IGd,PI:P&IKj4P&IJh&IOd9&IJdH&IKd&ILdPIPI:P&IKj4A0F&JBwA0F*`nA&@& G;@ 1& K+@& JB@;& O;g@& J;g@& K;g@[& L;g@ @ 1& K+ J& L4V#& G#7 "#7& K#7& J#x& O#&& J#5& K#& L#7 #7& O#7 "#7& K.M' nJ.M n{ 52'nJb5n>lZ&=J4=&=J&&G@&K&J&O@ &J@ &K@ &L@ &K8UII&LnH.J'nJb.n+&JgR8ff&G,f&KkcKQ&&3J|Q3XQ&3J5ZU&Gl?U&Gm P&F&Yl?4 W9&$G$?T&$K9N,&$JP~&$O&$J_&$Kd&$L$$?T&$K98Uj&%G%&%Kx &%Jp "&%ON&%JN&%KNB&%LN%%&%Kx3&&&Kd3&X&&Ld3&&3&&&J3&8&&OdH&'G[f'&'KX~&'JV&'O[-&'J[-&'K[-!&'L[-f'f'&'KX~k&(GW(&(K'&(J%&(Od&(Jss&(Kx&(L((&(K'8U)R&*GI*1&*Ke+&*Jg(&*OT&*JT&*KOTH&*LOT**1&*Ke+&+GS0+"0&+KP0&+JN?&+OSk&+JSk&+KSk_&+LSk0+0&+Ob0+"0&+KP+26&,J7]+26,/&-JZ/3-X3&-J ZJ'.nJ:Ju.n/R069 '1nJ691n&2Jm2Q&&3JXQ3;Q&3J=R^&4GbR4$e&4K3R&4J5R&4ObBR&4JbBR&4KgBR6&4LgBR4R4$e&4K8s58s57&5G>8s&5Kr?& G; & K& J& O;$& J;$& K;$& L;$  & K474&7Ln$A'8nJA8n8'458'457'4&5G=8'4&5Kr&:GG5:5&:K5&:JH&:OGt&:JGt&:KGth&:LGt5:5:5&:K&;G[);I;)&;KC)&;J;&;O[g&;J[g&;K[g[&;L[g););I;)&;KCW&<GWl<8Al&<K2Gl&<JIW~&<OW,&<JW;&<KW&<LWl<Wl<8Al&<K2&=J/=h&=Jj0\&>J0>0&>J? ?T7&BJpTB#&CJ~#C.#&CJ%07&DJ7)D=7)&DJ?+E+X&ELldF+&FLn7&&GJVG&HJLH^&IGGX I1 &IK+ &IJkiG&IO.sq&IJ.s&IKJB6&ILJBX IX I1 &IK+ &NG_U vN v&NK v&NJ &NO_ b&NJ_ q&NK_ &NL_ vN vN v&NK0AP0A&PL +Nj'8&QGs%Q&QK&QJ"&QOxN2&QJsA&QK*&QL6QQ&QKQ&3J( Q31Q&3J3Q&&3J,Q3;Q&3J=/'&TJkI?T?&TJk&Jg0&>J=0>0&>J "WnKXe c&fMeLg4h55ijkl5{m&nG5n5&nJGL&nbF&&n;Y"o\p^@qrgs &tG't!1&t\GL~&tbF &t6Yju;/v8uwu&wKSd8K&xJ8xOyz7{{&{KRN8J&|J!8|__X}`-~ &J|-&K&J-q&J&JM=;&LF&JxF(!8U<RAR&G<A&K&JA &O<6A&J<6A&K)6A*&L)6AA&Kj1y&J|j11&Js\FEE&KvE&JvEZ&JeZ$GS,2$2$$<&G2B&Ke<` oZ X&GXX_2_&K(,i_&J&X&OXf&JXu&KX&LX_X_2_&K(,u\^&Gb&K&J&ObB&JbB&KbB6&LbB&KT5&1F&G'c cX&eGLct&bFc)&6YQ&GC5f&K/C&JCG&OsC&JsL&KsIg&LsCC5f&K/F&GF F&KF&JFG&OsF&JsF&KsFg&LsFF F&K'!i9c&MF00K&Mk0qO )1&@J "@11&@J3$&AJ' $A1$&AJ3*&G7K#&J1M<#&KQ6<#&KQ6K&J_M<&Ka6<&Ka6Kq,&J'M<,&K)6<,&K)6K&JM< &K6< &K6KA&JHM<A&K>6<A&K>6KP&IJhM<P&IKj6<P&IKj6K& JM<& K6<& K6K&JM<&K6<&K6Z&%Jp\K&%KsEK&%KsEK&'JVM<&'KX6<&'KX6K& JM<& K6<& K6K)&;JM<;)&;K6<;)&;K6Kl&<JM<Al&<K6<Al&<K6K &IJkM< &IK6< &IK6K&QJM< &QK6< &QK6K&JM<&K6<&K6Ki_&J&M<_&K(6<_&K(6KC&JM<f&K6<f&K6e5567'&7676'&Dz  L  * Zq =) 4^e5/Y#G)'YG'GrG+33G] %6#!&''&%"   "Z",,"^_M&f^sN&f$eO&f oP!&f6iQ &f,R&f rS &frT &ffU&f+}V&f^_M&f^sN&f$eO&f oP!&f#,q{ &fe|&f q}&frT &ffU&f+}V&fb+&f rS &fhd &f 6'&77676'&7767 m   D$ :56'&554766# %F! ;M # ! #,k8A6''&7667&766'&'&7676'&7&6Q   -$"1. #S#  "!  V D   : #&/J +&[   G)'n'G 'o !767676#&''&''&767&&8#* ^S+,j 5:C9 -5!! 6D 5;)$$&D GFDRGDRG'&7676'&76#&7&&gAq+ (K    @ >I!G#  X+ P :0-8DGD\1"''&32676#" "//" .],!!,A5\"&'"''&3276#6]' "VddU" '],! ,O]!#"&'"''&3276-N>=N "z{" ," !, ]!#"&'"''&3276NllN "ל# ," !,'LLh'J6:h'!'&'&&'&'&'&776276zDA   d8U!F5g3n0AR 4;D En%'&7676325476#"'&'&'& >dC@[%  3C$^S6XL4y.6; ^3|C :&oG"&<GL&1Y 7676#"'&32oj]  ---&GX&KV&J`&OX&JX&KO&LO&KVK&J`M<&KV6<&KV6^1&''&32676#" ##  ,#", IN"547632769M ?  I`L2  lw]G{[V}Z$d747632#"'&7327654'&#"**==*++*==**D!! !O7789LK9878ND/010EE,./-6f.&'&547676613232&&#"&543276554'&#"@-$% & #"  fL&#"#"'&5476676676323326767667632'"#&'667654  #23   p   `@B9:#        +2 @%J!" eD22#"'&'&&547632327654'&#"&546767654#""'&76< +5     ':)e#5      %&  5  ?g -#"'&554##&'6676763232#"'54#"332.=!$(;ge\;'O'"1f?7254'&#""""#"'676326327'&"#"632#"'&'&&547632@ Z  $34#$%#I   P) K""64#"  h.7#"'&54673037632'327654'&#"!77##xZ{$7"! "##?S 0p ..P "   f43372#"'&547#"1'66 )\. +#f':L7&547632#"'&546767654'&327654'&&'&#"'37654&'&#"> ((  !!//  9      $ !$"!%%.  #'%&  $ h-632&'&5676#"#"'&54654'&#"32769!76$$= ? 3(7F!7 #+566767&'&767676#"''&,G w+ o1s?H7.LZ!CvJX]q F Iwwj  H*#?$#%G,h(2&'&&''&''&'%$''&'&#"'&76766765&76676$%$7767676327667667654&'&'&'&76676#&''%&&'&'&&'&&'077%6765&'&7767667%767667&&'&'&76766'&'&''&''&'&"'&766766765&7676%"&'&%&&&+d0''(*<=+ %Flh !T)208 pK& " 9:\>%;  $ &L*    )  ^R;:;atYRQ:""6/ CA9!|-*+4 !!4 "yM,0W T)/5 8^%$$aSO A; P 9 t & - ,DvG>  #07  $3 2P&Ac !"AC  , "    3 U7n %  5% 6F5uv395##@SS]D/38+ (&25    D5   b& #  3 #56 .&6 *W$%.b'7'0661D.. B.. D&#2"'&&546632"'&&5466Y     /:8 5I  /:8 5I 1>;?#32##"&17##"&17#"66737#"4673766323766323237@AB } A ?CB}>}hc lc lblbl2EP[2#"'&&'#"&'"&57&&'.566327.546632232654&&'7&&#"& #%93!8Z34  ($(#G05T/ &,D.-$ ),8* ? ?"+6#4M++& >0 341C-2J);7#*{!0-5'bv/?M2#"&&54662#"&&5466"326654&&"326654&&#"&'6632+?$"@-(C(&C+@$"@-(C(%C'#) %$* %^(  2,G+'G-*F+,G+D+G+'G.*G+,G*%8!B+&9!A+%8"A+&9!A+G b4FVb26654&#&#&473267#"326672#".1#"&54667&&5466.1326"6654&-AL*B%L% M0" /+!- -&( #_0Uh/J)%&A71 .'@#FC..3%95,C44f))C  ,B#"* # *SJ/E3#P2%=$HF0%1#.9)"$K+<8!6&r2"'&&5466Y   /:8 5I  "[660'&&'0&'&&766704'&&'&67670676'&&'&6760766'  1/ !  (#   $   W     (   #,    3 -6632132##"55#0&54673      $xx72"&5>54&&546h  #(  x 65+ + 98 70>32"546E*@C5  M[-  5r2#"&&5466"326654&& E_12_DB`32`H); 7$,:7rVUUWWUUV$K~MLLNLM{Is274&#"&50547>33203&&#"&67266766 . (M32.q % 1-l&  &Bs1%!&&5>76654&#""&5>323267632 )VN=/':$ 0?'/M-"SJ% =4  .db),B$2D"(  +/!/J**J *_S%&Rs@2#"&'&&54632326654&&#"&547>54&#""&5><++@-+GX.9 '5$$9 ! 'F+6*./>s8(4& &C02Q9    C8(=$   $9*'4+1u232#0#"55!&&5663:D #>8u   uRu?2#"&'&&54632326654&&#""&5>732661##66 :Q,+GX.9 '5$D96  * 8&R  A4O*2Q9    C8C/  7n_ ,[) Gx12#".5467>726632654&&#"3E)5Y8,G20.#[_)OP@@b,/<6,3&;A6]9'@O'K2&@.  $<[AW"!H>'XB*H, =m!2632#"&5>1#"#"&'667,  76'.54662654.'&#""321276654&&,I,$3;'4U15S.*+/!-J&09".((% 1#1#0$*t"@.&8(4@#1N-(H/ 4(  -<$*H-<15)@/(98@,%3 <(6$Hx17>7#".546632"&6654.#"326^OPAA3E)5Z7,G2//"\_),.=6,3 $<[A&;A7\9'@O'K2&@- 5"!H>'XB)I, 9 4632#"&4632#"&9   p!!!!%x#72"&5>54&&546'4632#"&|  #(  &  x 65+ + !!%#"'%&&5467%63210  h D"  Au8 !"667!2!"667!2t  t  /7461%%0&54632#"&&/C j "! 7/s.:"&547632&'&&546676654&#"4632#"&b !!A?),7 !&$1,1   /C+1D  6$- *#&* !!04IZ2#"&5467#"&&54>32326654.#"#"&'.54>"32>77&&HkH$5[9$-&+*1Rc2<=(=]@KvT,N4!  -M/0]i:2*'42Vk9J|I'-  +*&<"6iW4>g=2^K-?i@U~  PsEHtE)CS*.1(AL#ckXf70>766323&&#"&67267654.10&#&"#""#""103.#"&4726766033267261] )*'. "-" &  , *! ! +Y5%1Tgmd&:  +63!(7"  /(1BT2#&6726676654&'.#&&7326326654&&#'326654&#"*!F:$#/0/$#r8  :B5 '%G0OK;Q,6SD %!8*%<&):$*H &'  ?;%E.%"5AG"/i520#"'.#"32676676#".54>y0i6'J=6X?!?_@-? (fDHxW/1Xy )7- .2#1Se39nY5@ *1&3YsAEy^5($?2##&6726676654&'.#&&7326326654.#"-kR"Qg  :PB/FuH-Ma5 S[>v^7 &' s`<{_StI! !("j263#"'&&##"332>7632#"'.'.#"33267667632"&#"#&6726676654&'.#&&7EO :'T 3#'    $+ ! /#D  !Ob"6  :%>!;   , 5(Z  &' (a263#"'&&##"332>7632#"'.'.#"3&&#"#&6726676654&'.#&&7EO :'T 3#'    $+ !!%A"5  :%>!;     &' /T%4454&'.#&&73267"#".54>320#"'.#"3267665 83  7SAHxW/1XyH0i6'J=6X?!?_@&;  &E 3YsAEy^5 )7- .2#1Se39nY5 (267"1326706554&'.#&&73267"3&&#"&67266766554&1&&#"13&&#"&6726676654&'.#&&77 $L)#Q!9779"M&D@ 7:  : '  'e&  &  &' (;267"3&&#"&6726676654&'.#&&77  7:  : _  &' "2267"#"&'&5463232>54&'.#&&78 ;gB *    9 'dzD   >rX' (z267">7>76654&&#"#&473267#""&'&&'.'&#"3&&#"&6726676654&'.#&&77  $+&+ : -#)*GF+G{81(1K $ ?\7 7:  :  )&+  .GC)R5 Eh?  &' ("E733267667632"&#"#&6726676654&'.#&&73267" 7C  !Ob"6  :7 q   .'(Z  &'  W267327>7>132671"3&&#"&&726676654&5.'4&#"'&#3&&#"&&72667667>54&'.#"47&!-42./ /A7 "2"301#$* "."#"Pmzy4JwwH6( f|02 # GOKw{G:@g? XQ  $Z2274&'.#&6732667"#"&'3&&#"&&726676654&'.#&67* BX^X !3 #   V!2 "!!""*Tkro-r    s*' D      0'2#".54>"32>54.lAsX33XsA@sW22Ws27N1"32>54.lAsX32Ws27N176654&&#&4732667#"#"&'.'&&'.#"47k < !!() 0+  -+. !9;%  "- 2IXXJ/5Rcf-&   =CphpD W^. ul267">76632>76654&&#&4732667#"#"&'.11#"&'.'&&'&&#"47s , &,**$  (*  4)  ,+  $"$## 12  % "3 "(}E9p$Bg{:8ZQV4&  #\X  #bmhU3CskoA  [`% r267#"6676654&#&&73267"3&&#"&4326654&''3&&#"&672667>7.1&&'&&#"47$< q,P)-&4%%74#:*)=)30"")8&6)/ %<;# #%! ! $3 ;h -BD/ GD4  0PQ/5:2  Og754'.'&&'&&#"473267#">76654&#"&732667#"13&&#"&67266766!! ! $2$$< ($)+!"& (,) 7: q ':4;'   MI:  IQM G3  &L5"#"&'667332667132676676632!"&71D -)>=)$;INJ:# +    cD<"S15VjriU26&5+ U<0v2#.10"&5>76  " %!!% "!v &:7% +''+ %7:&  0663!21!0&N q $<J232672#"&'#"&5467>766554&&#"#"&5467>266551 !&% 0B!E<& %8G(:"&$<&  *A/+  + /& &)1B"&'&'&&"&56654&'&&#"&7667207>32"326654& -  $%G *2,C-?m6.*#;$O *  ,) %;G!@k@y 1K'U`&)#"&'&&#"32672#"&&54>32u  3!\B)5  &:&;Y1-GS&6"y 'H4UP&  '8Z36W@"&=L22554&'&&#"&76672023##"&554#"&&54>"326554&,$%G % ;*-6,O1/IP%5 >,!4?k   ,)^9    " 7_;0S=#)/J).N0 ''47326672#"&&54>32732676&&#"l,J+, &:&9X2#9D ,9!  5DB. #( >T) '6\91U?$,,$ ,$#-#?E2#"&'&&#"32#3&&#"&672667665#"&54661354>   !t k2-9 $#6: ..y &  &5\E'"BTd%2#"&&54667.5>7&&54663227.1"#"&'3"326654&&"326654&&&'E+)F\3'N4&2% !! $-+K/ , i  +K/ " F )%*D>"D.8V&*%(A.@8#5(( % E$'C*3""B+ E $/?0#"48$!39%^23&&#"&67266766554&&#"3&&#"&6726676654&'&&#"&766720327>,56.-*&+ .-#%F  -6,\Gl&  &b=E&  &  ,) "t'},t'j,c73&&#"&6726676654&'&&#"&7667206676654&&#&67327"7#"&'0.'&&1.-#%F +&323# 1"/3%H8 3&+B ,0 q&  &   ,)" * $('Q=   /4-4&'&&#"&7667203&&#"&672667665W#%F .-!   ,)0&  &266323&&#"&67266766544554&&#"3&&#"&67266766554&#"3&&#"&67266766554&'.#&&76672327>8,7 M#56-. &(,-.'5*-.&H (3%,4,\Gl&  i1D$ *x&  &dYE&  & $   _23&&#"&67266766554&&#"3&&#"&67266766554&'.#&&76672327>;56-.*&+ -.&H -6,\Gl&  &b=E&  & $   "(2#"&&5466"326654&&A]36^;@_37^0)2=,*1 <8`=?e;9a=?d:!1M*/^>1N)0]> #FV2#"&'03&&#"&6726676654&'.#&&76672327>"326654&-C+(BQ)& .-&I */&+)9P&>E /UA&^'  '   :  1L'W]&"8H232723&&#"&67266766554&#".54>"326554&&*, -.+3*A,-IT "2R=1) +_'  ' &(" #$(>4&H %. #* &  &  ()1#(A:2#"&'.#"#"&'.563232654&&'&&5466'   !#"'4&*D("0  ,($6-)@ ;*# +'=#  &( +$"%1'$6)*32#3267#"&&5#"&5466135>762~uA$(/9 $   P .*=  R454&'&&#&&7667223##"&554&1#".554&'&&#&&7667232665U& &F' ;* .6'0 & &F/3(8   $/  -%;D|  (NI ?267#"0>76654&#"473267#"#"'&&'&&#"1&&7d)k "#!$/G)$ &+CN" 4TOU4 qRd267"6654&'&&#&473267"6676654&&'&&73267"#"'#"'.'&&#&47c) 2)&)  ,0+(/   ++  lj%#'% %  xa_g#  nhGu  DkkD 9[UY7 u267">54&&'"#&&73267#"132&&#"&636654'0.'2&&#"&676670>7.1&&#"47x5 @ &+  *!"!'&-   %%#$6! +- f,%  <.&21  ()5  ')$10 !O267#"0>76654&#"473267#"#"&54672667>7.'&&#"1"47c9 h /'#!#"-#!01$ 6+CN" 4TOU4-Z'  +(Fyu>!43267032676320!&&5447'"#"56670}(1.78.-5      ) (BNOC(9 '6 i!  B'7Z&&#"&5466323267#"& 7!,*;#76"& %9$8  #  #,2<232#"&'&'32672#"'"&57.54>7&#" 0   2)5  &:& -B$'@L%92 3!.&  '%# :O+2S?%7'H4;J+mX2#"&'&&#"3#6632326672#"&&#""&546676654&'#&6633&&5&663    !* )!) &0*9.  !Q 57Vm  $:" 8$G5  &  %&N$*Ch<vq{735#&6633&'.'&&'&&#"473267#">76654&#"&732667#"3#3#13&&#"&6726676655#&66L` K!! ! $2$$< )% ).!"& ',)] T] U7: ` * ':4;'   MJ: IQN    &  &7CMY#Q4>32#".7326654&&#"#"&&5466320#"'.#"3267663227)Ia77aJ**Ja77aI) ?kAAl@@lAAk?f-;'?%#>(? &#(6!0& N7aI**Ia77aI**Ia7Ak@@kAAk@@k%?&'B' <)'3 7M#ky4>32#".7326654&&#"721"&'&&'.'&##3&&#"&47267645544'&&#&473264&#"3267)Ia77aJ**Ja77aI) ?kAAl@@lAAk?)!! '       <#$7aI**Ia77aI**Ia7Ak@@kAAk@@kN &-   +L     R% M%k 4632#"&732654&#"%9((77((9$$""$ (88((88(####Z: 4632#"&Z "" !!##6>57'46320763201#"'0.11#"&&50>Œ++() *+,+ (* **** +*++(); $70&54667!2%4632#"&4632#"&@ /73&&#"&67266766554&'.#&&76672-.&Hq&  &  "754&'.#&&76672&'&7>Z&I"4: 1,  FfE)  5^F2#".546   +* +,   # &H5!2X228H 4632#"&\ 4632#"&732654&#"3##22##3  >$33$$44$ 8\R;74663!21!0&;b ;  74663!21!0&;F +4>32#"&'&&+$1(#$   1  )B.-"    /"+h'#`/N j 4632#"&N?+,<<,+?,==,+??/d #74632#"&%4632#"&%4632#"&/"!!"2"!!"1# #,!!##!!##!!## }qX20#"'.#"32#32#32>721#"&&'#"676673&547#"676673>/c4   %G;9[<  =_A3B(  K~PT>'81W}q '4+ ,.!8]5   8\803(/%*?mC   Ck>B %*#"667!2NT  a'7#53'7D!_^ D  Db '7'77/////// ///00//H53222H5!2L22~H5!222H5!222FH5!2x22H5!2,22^H5!222H5!222&H5!2X22H5!222H5!2 22RH5!222H5!222&    : & ( $B f ~ 0 0 " 6  * 6 D `` d $$ *H Fr R L Copyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri).Amiri QuranRegular1.000;ALIF;AmiriQuran-RegularAmiri Quran RegularVersion 1.000AmiriQuran-RegularKhaled HosnyAmiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named.http://www.amirifont.orgThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttps://scripts.sil.org/OFL(P3EP qDDQNGP qD1QN-EN@pFP qD1QN-PEPa qD-NE/O DPDQNGP 1N(QP qD9N@pDNEPFNbInverted Arabic commaDisable curvilinear KashidaLow Baa dot following a Raa or WawAlternate medial Meem and final Alef combinationKasra is placed below Shadda instead of base glyphA'5D) 91(J) EBDH()*97JD 'DC4J/) 'DEBH3).A6 FB7) 'D('! 'DE3(HB) (1'! #H H'H4CD (/JD DDEJE 'DE*H37) E9 'D#DA 'DEF*GJ)H69 'DC31) *-* 'D4/) (/D' EF *-* 'D-1A2 >?@^_`      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~       !"#$%&'()*+,-./0123456789:;<=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]a !"#$%&'()*+,-./012nbspacecomma-ar tahabove-ar zainabove-ar fathasmall-ar dammasmall-ar kasrasmall-ar semicolon-ar threedots-ar question-arhamza-ar alefMadda-aralefHamzaabove-arwawHamzaabove-aralefHamzabelow-aryehHamzaabove-aralef-arbeh-ar tehMarbuta-arteh-artheh-arjeem-arhah-arkhah-ardal-arthal-arreh-arzain-arseen-arsheen-arsad-ardad-artah-arzah-arain-arghain-ar kashida-arfeh-arqaf-arkaf-arlam-armeem-arnoon-arheh-arwaw-aralefMaksura-aryeh-ar fathatan-ar dammatan-ar kasratan-arfatha-ardamma-arkasra-ar shadda-arsukun-armadda-ar hamzaabove-ar hamzabelow-ar alefbelow-ardammainverted-arnoonghunnaabove-ardotvowelbelow-arzero-arone-artwo-arthree-arfour-arfive-arsix-arseven-areight-arnine-ar behDotless-ar qafDotless-ar alefabove-ar alefWasla-ar tteheh-ar fehDotless-ar noonghunna-ar yehFarsi-arsadLamAlefMaksuraabove-arqafLamAlefMaksuraabove-ar meemabove-arlamAlefabove-ar jeemabove-arthreedotsabove-ar seenabove-ar endofayah-arhizb-ar sukunround-ar sukunoval-ar hahabove-armeemStopabove-ar seenbelow-ar maddalong-ar wawSmall-ar yehSmall-ar yehabove-ar noonabove-ar sajdah-arrhombusStopbelow-arrhombusStopabove-ardotStopabove-ar meembelow-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-aropenfathatan-aropendammatan-aropenkasratan-ar highwaw-arenquademquadenspaceemspacethreeperemspacefourperemspace sixperemspace figurespacepunctuationspace thinspace hairspacezerowidthspacezerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark lineseparatorparagraphseparatorlefttorightembeddingrighttoleftembeddingpopdirectionalformattinglefttorightoverriderighttoleftoverride narrownbspacereversedsemicolon dottedCircle commareversed parenleft-ar parenright-aruniFDFA bismillah-ar aAlf.fina.alt aAlf.fina aAlf.isol aAyn.fina aAyn.init aAyn.isol aAyn.medi aBaa.fina aBaa.init aBaa.isol aBaa.medi aDal.fina aDal.isol aFaa.fina aFaa.init aFaa.isol aFaa.medi aHaa.fina aHaa.init aHaa.isol aHaa.medi aHeh.fina aHeh.init aHeh.isol aHeh.medi aKaf.fina aKaf.init aKaf.isol aKaf.medi aLam.fina aLam.init aLam.isol aLam.medi aMem.fina aMem.init aMem.isol aMem.medi aNon.fina aNon.isol aQaf.fina aQaf.isolaRaa.fina.alt2 aRaa.fina aRaa.isol aSad.fina aSad.init aSad.isol aSad.medi aSen.fina aSen.init aSen.isol aSen.medi aTaa.fina aTaa.init aTaa.isol aTaa.medi aWaw.fina aWaw.isol aYaa.fina aYaa.isolaLam.medi.LamMemFinaaBaa.init.BaaRaaIsolaRaa.fina.BaaRaaIsolaLam.medi.LamWawFinaaWaw.fina.LamWawFinaaLam.init.LamHaaInitaFaa.medi.FaaYaaFinaaYaa.fina.FaaYaaFinaaLam.init.LamLamHaaInitaLam.medi.LamLamHaaInitaHaa.medi.LamLamHaaInitaBaa.medi.BaaMemFinaaSad.init.AboveHaaaMem.medi.LamBaaMemInitaBaa.init.BaaDalaDal.fina.BaaDalaBaa.init.BaaMemHaaInitaMem.medi.BaaMemHaaInitaHaa.medi.BaaMemHaaInitaBaa.init.BaaBaaYaaaBaa.medi.BaaBaaYaaaYaa.fina.BaaBaaYaaaLam.medi.LamYaaFinaaYaa.fina.LamYaaFinaaKaf.init.KafBaaInitaBaa.medi.KafBaaInitaLam.init.LamAlfIsolaAlf.fina.LamAlfIsolaBaa.medi.BaaBaaInitaAyn.medi.AynYaaFinaaMem.init.MemRaaIsolaFaa.init.FaaHaaInitaHaa.medi.FaaHaaInitaHaa.init.HaaHaaInitaLam.medi.LamQafFinaaQaf.fina.LamQafFinaaSen.init.AboveHaaaMem.init.MemHaaInitaBaa.init.BaaNonIsolaNon.fina.BaaNonIsolaKaf.medi.KafMemFinaaBaa.init.BaaSenInitaSen.medi.BaaSenInitaBaa.medi.BaaRaaFinaaRaa.fina.BaaRaaFinaaKaf.medi.KafRaaFinaaRaa.fina.KafRaaFinaaLam.init.LamHehInitaHeh.medi.LamHehInitaMem.init.MemHaaMemInitaHaa.medi.MemHaaMemInitaBaa.init.BaaMemInitaSen.init.SenHaaInitaKaf.init.KafRaaIsolaRaa.fina.KafRaaIsolaAyn.init.AynHaaInitaKaf.medi.KafYaaFinaaYaa.fina.KafYaaFinaaLam.init.LamMemHaaInitaMem.medi.LamMemHaaInitaHaa.medi.LamMemHaaInitaLam.medi.LamAlfFinaaAlf.fina.LamAlfFinaaLam.medi.LamMemMediaMem.medi.LamMemMedilam-ar.init.Lellahlam-ar.medi.Lellahheh-ar.fina.LellahaBaa.medi.SenBaaMemInitaBaa.init.BaaBaaIsolaBaa.fina.BaaBaaIsolaBaa.init.BaaBaaMemInitaBaa.medi.BaaBaaMemInitaKaf.medi.KafBaaMediaBaa.medi.KafBaaMediaBaa.medi.BaaNonFinaaNon.fina.BaaNonFinaaHaa.init.HaaRaaIsolaRaa.fina.HaaRaaIsolaHeh.init.HehHaaInitaLam.init.LamRaaIsolaRaa.fina.LamRaaIsolaSad.init.SadHaaInitaHaa.medi.SadHaaInitaBaa.medi.BaaYaaFinaaYaa.fina.BaaYaaFinaaBaa.init.BaaSenAltInitaSen.medi.BaaSenAltInitaRaa.fina.PostToothaYaa.fina.PostToothaBaa.init.AboveHaaaBaa.init.BaaHaaInitaBaa.init.BaaHaaMemInitaHaa.medi.BaaHaaMemInitaHaa.fina.AboveHaaIsolaLam.init.LamHaaHaaInitaHaa.medi.1LamHaaHaaInitaHaa.medi.2LamHaaHaaInitaAyn.init.FinjaniaHaa.init.FinjaniaHaa.medi.FinjaniaSen.init.PreYaaaSen.medi.PreYaaaSad.init.PreYaaaSad.medi.PreYaaaBaa.init.High dotabove-artwodotshorizontalabove-arthreedotsupabove-ar miniKeheh-araBaa.medi.Hightwodotsverticalabove-araSen.fina.BaaSenaBaa.init.WideaHaa.medi.HaaHaaInitaHaa.medi.AynHaaInitaHaa.init.AboveHaaaAyn.init.AboveHaaaHaa.fina.AboveHaaIsol2aMem.init.AboveHaaaKaf.init.AboveHaawasla-arfathatan-ar.smallfatha-ar.smallopendammatan-ar.smalldamma-ar.smallsukun-ar.small2kasra-ar.small2dot.1dot.2fourFarsi-ar.urdsixFarsi-ar.urdsevenFarsi-ar.urdaKaf.init.KafLamaKaf.fina.KafKafFinaaLam.medi.KafLamaLam.medi.KafLamMemMediaKaf.medi.KafLamaLam.medi.KafLamHehIsolaLam.medi.KafLamYaaaLam.medi.KafLamAlfaLam.fina.KafLamaAlf.fina.KafAlfaKaf.init.KafMemAlfaKaf.medi.KafMemAlfaMem.medi.KafMemAlfaLam.medi.KafMemLamaLam.fina.KafMemLamaAlf.fina.KafMemAlfaKaf.init.KafHehaKaf.medi.KafHehaHeh.fina.KafHehaDal.fina.KafDalaLam.init.LamHehaLam.medi.LamHehaHeh.fina.LamHehaDal.fina.LamDalaKaf.medi.KafMemMediaKaf.init.KafMemInitaAyn.init.AynMemInitaFaa.init.FaaMemInitaHaa.init.HaaMemInitaHeh.init.HehMemInitaMem.medi.KafMemMediaSen.init.SenMemInitaSad.init.SadMemInitaMem.init.MemMemInitaKaf.init.KafYaaIsolaBaa.init.BaaYaaIsolaHaa.init.HaaYaaIsolaMem.init.MemYaaIsolaFaa.init.FaaYaaIsolaAyn.init.AynYaaIsolaLam.init.LamYaaIsolaHeh.init.HehYaaIsolaYaa.fina.KafYaaIsolaKaf.init.KafMemIsolaLam.init.LamMemIsolaBaa.init.BaaMemIsolaMem.fina.KafMemIsolaMem.medi.MemAlfFinaaBaa.medi.BaaMemAlfFinaaMem.medi.BaaMemAlfFinaaAlf.fina.MemAlfFinaaBaa.init.BaaHehInitaBaa.medi.BaaHehMediaHeh.medi.BaaHehMediaLam.medi.KafLamMemFinaaLam.init.LamLamInitaLam.medi.LamLamInitaLam.medi.LamLamAlfIsolaKaf.fina.LamKafIsolaLam.fina.LamLamIsollam-ar.medi.FaLellahaLam.medi.LamLamMediaLam.medi.LamLamAlefFinaaLam.medi.LamLamMedi2aKaf.fina.LamKafFinaaLam.fina.LamLamFinaaLam.medi.LamLamMemInitaLam.medi.LamLamHehIsolaLam.medi.LamLamYaaIsolaLam.medi.LamLamMemMediaLam.medi.LamLamHehFinaaLam.medi.LamLamYaaFinaalefHamzabelow-ar.fina alef-ar.finaalefHamzaabove-ar.finaalefMadda-ar.finaalefWasla-ar.fina ghain-ar.fina ain-ar.fina ghain-ar.init ain-ar.init ghain-ar.medi ain-ar.medi teh-ar.fina theh-ar.finabehDotless-ar.fina beh-ar.finatteheh-ar.finayehHamzaabove-ar.initbehDotless-ar.init yeh-ar.init beh-ar.inittteheh-ar.init noon-ar.init teh-ar.init theh-ar.initalefMaksura-ar.initnoonghunna-ar.inityehFarsi-ar.inityehHamzaabove-ar.medibehDotless-ar.medi yeh-ar.medi beh-ar.meditteheh-ar.medi noon-ar.medi teh-ar.medi theh-ar.medialefMaksura-ar.medinoonghunna-ar.mediyehFarsi-ar.medi thal-ar.fina dal-ar.fina feh-ar.finafehDotless-ar.finaqafDotless-ar.init qaf-ar.init feh-ar.initfehDotless-ar.initqafDotless-ar.medi qaf-ar.medi feh-ar.medifehDotless-ar.medi khah-ar.fina hah-ar.fina jeem-ar.fina khah-ar.init hah-ar.init jeem-ar.init khah-ar.medi hah-ar.medi jeem-ar.medi heh-ar.finatehMarbuta-ar.fina heh-ar.init heh-ar.medi kaf-ar.fina kaf-ar.init kaf-ar.medi lam-ar.fina lam-ar.init lam-ar.medi meem-ar.fina meem-ar.init meem-ar.medi noon-ar.finanoonghunna-ar.fina qaf-ar.finaqafDotless-ar.fina zain-ar.fina reh-ar.fina dad-ar.fina sad-ar.fina dad-ar.init sad-ar.init dad-ar.medi sad-ar.medi seen-ar.fina sheen-ar.fina seen-ar.init sheen-ar.init seen-ar.medi sheen-ar.medi zah-ar.fina tah-ar.fina zah-ar.init tah-ar.init zah-ar.medi tah-ar.mediwawHamzaabove-ar.fina waw-ar.finaalefMaksura-ar.finayehFarsi-ar.finayehHamzaabove-ar.fina yeh-ar.finalam-ar.medi.LamMemFinameem-ar.fina.LamMemFina yehHamzaabove-ar.init.BaaRaaIsolbehDotless-ar.init.BaaRaaIsolyeh-ar.init.BaaRaaIsolbeh-ar.init.BaaRaaIsoltteheh-ar.init.BaaRaaIsolnoon-ar.init.BaaRaaIsolteh-ar.init.BaaRaaIsoltheh-ar.init.BaaRaaIsolalefMaksura-ar.init.BaaRaaIsolnoonghunna-ar.init.BaaRaaIsolyehFarsi-ar.init.BaaRaaIsolzain-ar.fina.BaaRaaIsolreh-ar.fina.BaaRaaIsollam-ar.medi.LamWawFina wawHamzaabove-ar.fina.LamWawFinawaw-ar.fina.LamWawFinalam-ar.init.LamHaaInitqafDotless-ar.medi.FaaYaaFinaqaf-ar.medi.FaaYaaFinafeh-ar.medi.FaaYaaFinafehDotless-ar.medi.FaaYaaFinaalefMaksura-ar.fina.FaaYaaFinayehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFinayeh-ar.fina.FaaYaaFinalam-ar.init.LamLamHaaInitlam-ar.medi.LamLamHaaInitkhah-ar.medi.LamLamHaaInithah-ar.medi.LamLamHaaInitjeem-ar.medi.LamLamHaaInit yehHamzaabove-ar.medi.BaaMemFinabehDotless-ar.medi.BaaMemFinayeh-ar.medi.BaaMemFinabeh-ar.medi.BaaMemFinatteheh-ar.medi.BaaMemFinanoon-ar.medi.BaaMemFinateh-ar.medi.BaaMemFinatheh-ar.medi.BaaMemFinaalefMaksura-ar.medi.BaaMemFinanoonghunna-ar.medi.BaaMemFinayehFarsi-ar.medi.BaaMemFinameem-ar.fina.BaaMemFinadad-ar.init.AboveHaasad-ar.init.AboveHaayehHamzaabove-ar.init.BaaDalbehDotless-ar.init.BaaDalyeh-ar.init.BaaDalbeh-ar.init.BaaDaltteheh-ar.init.BaaDalnoon-ar.init.BaaDalteh-ar.init.BaaDaltheh-ar.init.BaaDalalefMaksura-ar.init.BaaDalnoonghunna-ar.init.BaaDalyehFarsi-ar.init.BaaDalthal-ar.fina.BaaDaldal-ar.fina.BaaDal#yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInityeh-ar.init.BaaMemHaaInitbeh-ar.init.BaaMemHaaInittteheh-ar.init.BaaMemHaaInitnoon-ar.init.BaaMemHaaInitteh-ar.init.BaaMemHaaInittheh-ar.init.BaaMemHaaInit!alefMaksura-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInityehFarsi-ar.init.BaaMemHaaInitmeem-ar.medi.BaaMemHaaInitkhah-ar.medi.BaaMemHaaInithah-ar.medi.BaaMemHaaInitjeem-ar.medi.BaaMemHaaInityehHamzaabove-ar.init.BaaBaaYaabehDotless-ar.init.BaaBaaYaayeh-ar.init.BaaBaaYaabeh-ar.init.BaaBaaYaatteheh-ar.init.BaaBaaYaanoon-ar.init.BaaBaaYaateh-ar.init.BaaBaaYaatheh-ar.init.BaaBaaYaaalefMaksura-ar.init.BaaBaaYaanoonghunna-ar.init.BaaBaaYaayehFarsi-ar.init.BaaBaaYaayehHamzaabove-ar.medi.BaaBaaYaabehDotless-ar.medi.BaaBaaYaayeh-ar.medi.BaaBaaYaabeh-ar.medi.BaaBaaYaatteheh-ar.medi.BaaBaaYaanoon-ar.medi.BaaBaaYaateh-ar.medi.BaaBaaYaatheh-ar.medi.BaaBaaYaaalefMaksura-ar.medi.BaaBaaYaanoonghunna-ar.medi.BaaBaaYaayehFarsi-ar.medi.BaaBaaYaaalefMaksura-ar.fina.BaaBaaYaayehFarsi-ar.fina.BaaBaaYaayehHamzaabove-ar.fina.BaaBaaYaayeh-ar.fina.BaaBaaYaalam-ar.medi.LamYaaFinaalefMaksura-ar.fina.LamYaaFinayehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFinayeh-ar.fina.LamYaaFinakaf-ar.init.KafBaaInit yehHamzaabove-ar.medi.KafBaaInitbehDotless-ar.medi.KafBaaInityeh-ar.medi.KafBaaInitbeh-ar.medi.KafBaaInittteheh-ar.medi.KafBaaInitnoon-ar.medi.KafBaaInitteh-ar.medi.KafBaaInittheh-ar.medi.KafBaaInitalefMaksura-ar.medi.KafBaaInitnoonghunna-ar.medi.KafBaaInityehFarsi-ar.medi.KafBaaInitlam-ar.init.LamAlfIsol!alefHamzabelow-ar.fina.LamAlfIsolalef-ar.fina.LamAlfIsol!alefHamzaabove-ar.fina.LamAlfIsolalefMadda-ar.fina.LamAlfIsolalefWasla-ar.fina.LamAlfIsol yehHamzaabove-ar.medi.BaaBaaInitbehDotless-ar.medi.BaaBaaInityeh-ar.medi.BaaBaaInitbeh-ar.medi.BaaBaaInittteheh-ar.medi.BaaBaaInitnoon-ar.medi.BaaBaaInitteh-ar.medi.BaaBaaInittheh-ar.medi.BaaBaaInitalefMaksura-ar.medi.BaaBaaInitnoonghunna-ar.medi.BaaBaaInityehFarsi-ar.medi.BaaBaaInitghain-ar.medi.AynYaaFinaain-ar.medi.AynYaaFinameem-ar.init.MemRaaIsolzain-ar.fina.MemRaaIsolreh-ar.fina.MemRaaIsolqafDotless-ar.init.FaaHaaInitqaf-ar.init.FaaHaaInitfeh-ar.init.FaaHaaInitfehDotless-ar.init.FaaHaaInitkhah-ar.medi.FaaHaaInithah-ar.medi.FaaHaaInitjeem-ar.medi.FaaHaaInitkhah-ar.init.HaaHaaInithah-ar.init.HaaHaaInitjeem-ar.init.HaaHaaInitlam-ar.medi.LamQafFinaqaf-ar.fina.LamQafFinaqafDotless-ar.fina.LamQafFinaseen-ar.init.AboveHaasheen-ar.init.AboveHaameem-ar.init.MemHaaInit yehHamzaabove-ar.init.BaaNonIsolbehDotless-ar.init.BaaNonIsolyeh-ar.init.BaaNonIsolbeh-ar.init.BaaNonIsoltteheh-ar.init.BaaNonIsolnoon-ar.init.BaaNonIsolteh-ar.init.BaaNonIsoltheh-ar.init.BaaNonIsolalefMaksura-ar.init.BaaNonIsolnoonghunna-ar.init.BaaNonIsolyehFarsi-ar.init.BaaNonIsolnoon-ar.fina.BaaNonIsolnoonghunna-ar.fina.BaaNonIsolkaf-ar.medi.KafMemFinameem-ar.fina.KafMemFina yehHamzaabove-ar.init.BaaSenInitbehDotless-ar.init.BaaSenInityeh-ar.init.BaaSenInitbeh-ar.init.BaaSenInittteheh-ar.init.BaaSenInitnoon-ar.init.BaaSenInitteh-ar.init.BaaSenInittheh-ar.init.BaaSenInitalefMaksura-ar.init.BaaSenInitnoonghunna-ar.init.BaaSenInityehFarsi-ar.init.BaaSenInitseen-ar.medi.BaaSenInitsheen-ar.medi.BaaSenInit yehHamzaabove-ar.medi.BaaRaaFinabehDotless-ar.medi.BaaRaaFinayeh-ar.medi.BaaRaaFinabeh-ar.medi.BaaRaaFinatteheh-ar.medi.BaaRaaFinanoon-ar.medi.BaaRaaFinateh-ar.medi.BaaRaaFinatheh-ar.medi.BaaRaaFinaalefMaksura-ar.medi.BaaRaaFinae-ar.medi.BaaRaaFinanoonghunna-ar.medi.BaaRaaFinayehFarsi-ar.medi.BaaRaaFinazain-ar.fina.BaaRaaFinareh-ar.fina.BaaRaaFinakaf-ar.medi.KafRaaFinazain-ar.fina.KafRaaFinareh-ar.fina.KafRaaFinalam-ar.init.LamHehInitheh-ar.medi.LamHehInitmeem-ar.init.MemHaaMemInitkhah-ar.medi.MemHaaMemInithah-ar.medi.MemHaaMemInitjeem-ar.medi.MemHaaMemInit yehHamzaabove-ar.init.BaaMemInitbehDotless-ar.init.BaaMemInityeh-ar.init.BaaMemInitbeh-ar.init.BaaMemInittteheh-ar.init.BaaMemInitnoon-ar.init.BaaMemInitteh-ar.init.BaaMemInittheh-ar.init.BaaMemInitalefMaksura-ar.init.BaaMemInitnoonghunna-ar.init.BaaMemInityehFarsi-ar.init.BaaMemInitmeem-ar.medi.BaaMemInitseen-ar.init.SenHaaInitsheen-ar.init.SenHaaInitkaf-ar.init.KafRaaIsolzain-ar.fina.KafRaaIsolreh-ar.fina.KafRaaIsolghain-ar.init.AynHaaInitain-ar.init.AynHaaInitkaf-ar.medi.KafYaaFinaalefMaksura-ar.fina.KafYaaFinayehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFinayeh-ar.fina.KafYaaFinalam-ar.init.LamMemHaaInitmeem-ar.medi.LamMemHaaInitkhah-ar.medi.LamMemHaaInithah-ar.medi.LamMemHaaInitjeem-ar.medi.LamMemHaaInitlam-ar.medi.LamAlfFina!alefHamzabelow-ar.fina.LamAlfFinaalef-ar.fina.LamAlfFina!alefHamzaabove-ar.fina.LamAlfFinaalefMadda-ar.fina.LamAlfFinaalefWasla-ar.fina.LamAlfFinalam-ar.medi.LamMemMedimeem-ar.medi.LamMemMedi#yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInityeh-ar.medi.SenBaaMemInitbeh-ar.medi.SenBaaMemInittteheh-ar.medi.SenBaaMemInitnoon-ar.medi.SenBaaMemInitteh-ar.medi.SenBaaMemInittheh-ar.medi.SenBaaMemInit!alefMaksura-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInityehFarsi-ar.medi.SenBaaMemInitmeem-ar.medi.SenBaaMemInit yehHamzaabove-ar.init.BaaBaaIsolbehDotless-ar.init.BaaBaaIsolyeh-ar.init.BaaBaaIsolbeh-ar.init.BaaBaaIsoltteheh-ar.init.BaaBaaIsolnoon-ar.init.BaaBaaIsolteh-ar.init.BaaBaaIsoltheh-ar.init.BaaBaaIsolalefMaksura-ar.init.BaaBaaIsolnoonghunna-ar.init.BaaBaaIsolyehFarsi-ar.init.BaaBaaIsolteh-ar.fina.BaaBaaIsoltheh-ar.fina.BaaBaaIsolbehDotless-ar.fina.BaaBaaIsolbeh-ar.fina.BaaBaaIsoltteheh-ar.fina.BaaBaaIsol#yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInityeh-ar.init.BaaBaaMemInitbeh-ar.init.BaaBaaMemInittteheh-ar.init.BaaBaaMemInitnoon-ar.init.BaaBaaMemInitteh-ar.init.BaaBaaMemInittheh-ar.init.BaaBaaMemInit!alefMaksura-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInityehFarsi-ar.init.BaaBaaMemInit#yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInityeh-ar.medi.BaaBaaMemInitbeh-ar.medi.BaaBaaMemInittteheh-ar.medi.BaaBaaMemInitnoon-ar.medi.BaaBaaMemInitteh-ar.medi.BaaBaaMemInittheh-ar.medi.BaaBaaMemInit!alefMaksura-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInityehFarsi-ar.medi.BaaBaaMemInitmeem-ar.medi.BaaBaaMemInitkaf-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedibehDotless-ar.medi.KafBaaMediyeh-ar.medi.KafBaaMedibeh-ar.medi.KafBaaMeditteheh-ar.medi.KafBaaMedinoon-ar.medi.KafBaaMediteh-ar.medi.KafBaaMeditheh-ar.medi.KafBaaMedialefMaksura-ar.medi.KafBaaMedinoonghunna-ar.medi.KafBaaMediyehFarsi-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.BaaNonFinabehDotless-ar.medi.BaaNonFinayeh-ar.medi.BaaNonFinabeh-ar.medi.BaaNonFinatteheh-ar.medi.BaaNonFinanoon-ar.medi.BaaNonFinateh-ar.medi.BaaNonFinatheh-ar.medi.BaaNonFinaalefMaksura-ar.medi.BaaNonFinae-ar.medi.BaaNonFinanoonghunna-ar.medi.BaaNonFinayehFarsi-ar.medi.BaaNonFinanoon-ar.fina.BaaNonFinanoonghunna-ar.fina.BaaNonFinakhah-ar.init.HaaRaaIsolhah-ar.init.HaaRaaIsoljeem-ar.init.HaaRaaIsolzain-ar.fina.HaaRaaIsolreh-ar.fina.HaaRaaIsolheh-ar.init.HehHaaInitlam-ar.init.LamRaaIsolzain-ar.fina.LamRaaIsolreh-ar.fina.LamRaaIsoldad-ar.init.SadHaaInitsad-ar.init.SadHaaInitkhah-ar.medi.SadHaaInithah-ar.medi.SadHaaInitjeem-ar.medi.SadHaaInit yehHamzaabove-ar.medi.BaaYaaFinabehDotless-ar.medi.BaaYaaFinayeh-ar.medi.BaaYaaFinabeh-ar.medi.BaaYaaFinatteheh-ar.medi.BaaYaaFinanoon-ar.medi.BaaYaaFinateh-ar.medi.BaaYaaFinatheh-ar.medi.BaaYaaFinaalefMaksura-ar.medi.BaaYaaFinanoonghunna-ar.medi.BaaYaaFinayehFarsi-ar.medi.BaaYaaFinaalefMaksura-ar.fina.BaaYaaFinayehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFinayeh-ar.fina.BaaYaaFina#yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInityeh-ar.init.BaaSenAltInitbeh-ar.init.BaaSenAltInittteheh-ar.init.BaaSenAltInitnoon-ar.init.BaaSenAltInitteh-ar.init.BaaSenAltInittheh-ar.init.BaaSenAltInit!alefMaksura-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInityehFarsi-ar.init.BaaSenAltInitseen-ar.medi.BaaSenAltInitsheen-ar.medi.BaaSenAltInitzain-ar.fina.PostToothreh-ar.fina.PostToothalefMaksura-ar.fina.PostToothyehFarsi-ar.fina.PostToothyehHamzaabove-ar.fina.PostToothyeh-ar.fina.PostToothyehHamzaabove-ar.init.AboveHaabehDotless-ar.init.AboveHaayeh-ar.init.AboveHaabeh-ar.init.AboveHaatteheh-ar.init.AboveHaanoon-ar.init.AboveHaateh-ar.init.AboveHaatheh-ar.init.AboveHaaalefMaksura-ar.init.AboveHaanoonghunna-ar.init.AboveHaayehFarsi-ar.init.AboveHaa yehHamzaabove-ar.init.BaaHaaInitbehDotless-ar.init.BaaHaaInityeh-ar.init.BaaHaaInitbeh-ar.init.BaaHaaInittteheh-ar.init.BaaHaaInitnoon-ar.init.BaaHaaInitteh-ar.init.BaaHaaInittheh-ar.init.BaaHaaInitalefMaksura-ar.init.BaaHaaInitnoonghunna-ar.init.BaaHaaInityehFarsi-ar.init.BaaHaaInit#yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInityeh-ar.init.BaaHaaMemInitbeh-ar.init.BaaHaaMemInittteheh-ar.init.BaaHaaMemInitnoon-ar.init.BaaHaaMemInitteh-ar.init.BaaHaaMemInittheh-ar.init.BaaHaaMemInit!alefMaksura-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInityehFarsi-ar.init.BaaHaaMemInitkhah-ar.medi.BaaHaaMemInithah-ar.medi.BaaHaaMemInitjeem-ar.medi.BaaHaaMemInitkhah-ar.fina.AboveHaaIsolhah-ar.fina.AboveHaaIsoljeem-ar.fina.AboveHaaIsollam-ar.init.LamHaaHaaInitghain-ar.init.Finjaniain-ar.init.Finjanikhah-ar.init.Finjanihah-ar.init.Finjanijeem-ar.init.Finjanikhah-ar.medi.Finjanihah-ar.medi.Finjanijeem-ar.medi.Finjaniseen-ar.init.PreYaasheen-ar.init.PreYaaseen-ar.medi.PreYaasheen-ar.medi.PreYaadad-ar.init.PreYaasad-ar.init.PreYaadad-ar.medi.PreYaasad-ar.medi.PreYaayehHamzaabove-ar.init.HighbehDotless-ar.init.Highyeh-ar.init.Highbeh-ar.init.Hightteheh-ar.init.Highnoon-ar.init.Highteh-ar.init.Hightheh-ar.init.HighalefMaksura-ar.init.Highnoonghunna-ar.init.HighyehFarsi-ar.init.HighyehHamzaabove-ar.medi.HighbehDotless-ar.medi.Highyeh-ar.medi.Highbeh-ar.medi.Hightteheh-ar.medi.Highnoon-ar.medi.Highteh-ar.medi.Hightheh-ar.medi.HighalefMaksura-ar.medi.Highnoonghunna-ar.medi.HighyehFarsi-ar.medi.Highseen-ar.fina.BaaSensheen-ar.fina.BaaSenmeem-ar.fina.PostToothyehHamzaabove-ar.init.WidebehDotless-ar.init.Wideyeh-ar.init.Widebeh-ar.init.Widetteheh-ar.init.Widenoon-ar.init.Wideteh-ar.init.Widetheh-ar.init.WidealefMaksura-ar.init.Widenoonghunna-ar.init.WideyehFarsi-ar.init.Widekhah-ar.medi.HaaHaaInithah-ar.medi.HaaHaaInitjeem-ar.medi.HaaHaaInitkhah-ar.medi.AynHaaInithah-ar.medi.AynHaaInitjeem-ar.medi.AynHaaInitheh-ar.init.AboveHaakhah-ar.init.AboveHaahah-ar.init.AboveHaajeem-ar.init.AboveHaaghain-ar.init.AboveHaaain-ar.init.AboveHaakhah-ar.fina.AboveHaaIsol2hah-ar.fina.AboveHaaIsol2jeem-ar.fina.AboveHaaIsol2meem-ar.init.AboveHaakaf-ar.init.AboveHaakaf-ar.init.KafLamkaf-ar.fina.KafKafFinalam-ar.medi.KafLamlam-ar.medi.KafLamMemMedikaf-ar.medi.KafLamlam-ar.medi.KafLamHehIsollam-ar.medi.KafLamYaalam-ar.medi.KafLamAlflam-ar.fina.KafLamalefHamzabelow-ar.fina.KafAlfalef-ar.fina.KafAlfalefHamzaabove-ar.fina.KafAlfalefMadda-ar.fina.KafAlfalefWasla-ar.fina.KafAlfkaf-ar.init.KafMemAlfkaf-ar.medi.KafMemAlfmeem-ar.medi.KafMemAlflam-ar.medi.KafMemLamlam-ar.fina.KafMemLam alefHamzabelow-ar.fina.KafMemAlfalef-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlfalefMadda-ar.fina.KafMemAlfalefWasla-ar.fina.KafMemAlfkaf-ar.init.KafHehkaf-ar.medi.KafHehheh-ar.fina.KafHehtehMarbuta-ar.fina.KafHehthal-ar.fina.KafDaldal-ar.fina.KafDallam-ar.init.LamHehlam-ar.medi.LamHehheh-ar.fina.LamHehtehMarbuta-ar.fina.LamHehthal-ar.fina.LamDaldal-ar.fina.LamDalkaf-ar.medi.KafMemMedikaf-ar.init.KafMemInitghain-ar.init.AynMemInitain-ar.init.AynMemInitqafDotless-ar.init.FaaMemInitqaf-ar.init.FaaMemInitfeh-ar.init.FaaMemInitfehDotless-ar.init.FaaMemInitkhah-ar.init.HaaMemInithah-ar.init.HaaMemInitjeem-ar.init.HaaMemInitheh-ar.init.HehMemInitmeem-ar.medi.KafMemMediseen-ar.init.SenMemInitsheen-ar.init.SenMemInitdad-ar.init.SadMemInitsad-ar.init.SadMemInitmeem-ar.init.MemMemInitmeem-ar.medi.SenMemInitkaf-ar.init.KafYaaIsol yehHamzaabove-ar.init.BaaYaaIsolbehDotless-ar.init.BaaYaaIsolyeh-ar.init.BaaYaaIsolbeh-ar.init.BaaYaaIsoltteheh-ar.init.BaaYaaIsolnoon-ar.init.BaaYaaIsolteh-ar.init.BaaYaaIsoltheh-ar.init.BaaYaaIsolalefMaksura-ar.init.BaaYaaIsolnoonghunna-ar.init.BaaYaaIsolyehFarsi-ar.init.BaaYaaIsolkhah-ar.init.HaaYaaIsolhah-ar.init.HaaYaaIsoljeem-ar.init.HaaYaaIsolmeem-ar.init.MemYaaIsolqafDotless-ar.init.FaaYaaIsolqaf-ar.init.FaaYaaIsolfeh-ar.init.FaaYaaIsolfehDotless-ar.init.FaaYaaIsolghain-ar.init.AynYaaIsolain-ar.init.AynYaaIsollam-ar.init.LamYaaIsolheh-ar.init.HehYaaIsolalefMaksura-ar.fina.KafYaaIsolyehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsolyeh-ar.fina.KafYaaIsolkaf-ar.init.KafMemIsollam-ar.init.LamMemIsol yehHamzaabove-ar.init.BaaMemIsolbehDotless-ar.init.BaaMemIsolyeh-ar.init.BaaMemIsolbeh-ar.init.BaaMemIsoltteheh-ar.init.BaaMemIsolnoon-ar.init.BaaMemIsolteh-ar.init.BaaMemIsoltheh-ar.init.BaaMemIsolalefMaksura-ar.init.BaaMemIsolnoonghunna-ar.init.BaaMemIsolyehFarsi-ar.init.BaaMemIsolmeem-ar.fina.KafMemIsolmeem-ar.medi.MemAlfFina#yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFinayeh-ar.medi.BaaMemAlfFinabeh-ar.medi.BaaMemAlfFinatteheh-ar.medi.BaaMemAlfFinanoon-ar.medi.BaaMemAlfFinateh-ar.medi.BaaMemAlfFinatheh-ar.medi.BaaMemAlfFina!alefMaksura-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFinayehFarsi-ar.medi.BaaMemAlfFinameem-ar.medi.BaaMemAlfFinameem-ar.medi.AlfPostTooth!alefHamzabelow-ar.fina.MemAlfFinaalef-ar.fina.MemAlfFina!alefHamzaabove-ar.fina.MemAlfFinaalefMadda-ar.fina.MemAlfFinaalefWasla-ar.fina.MemAlfFina yehHamzaabove-ar.init.BaaHehInitbehDotless-ar.init.BaaHehInityeh-ar.init.BaaHehInitbeh-ar.init.BaaHehInittteheh-ar.init.BaaHehInitnoon-ar.init.BaaHehInitteh-ar.init.BaaHehInittheh-ar.init.BaaHehInitalefMaksura-ar.init.BaaHehInitnoonghunna-ar.init.BaaHehInityehFarsi-ar.init.BaaHehInit yehHamzaabove-ar.medi.BaaHehMedibehDotless-ar.medi.BaaHehMediyeh-ar.medi.BaaHehMedibeh-ar.medi.BaaHehMeditteheh-ar.medi.BaaHehMedinoon-ar.medi.BaaHehMediteh-ar.medi.BaaHehMeditheh-ar.medi.BaaHehMedialefMaksura-ar.medi.BaaHehMedinoonghunna-ar.medi.BaaHehMediyehFarsi-ar.medi.BaaHehMediheh-ar.medi.BaaHehMediheh-ar.medi.PostToothlam-ar.medi.KafLamMemFinalam-ar.init.LamLamInitlam-ar.medi.LamLamInitlam-ar.medi.LamLamAlfIsolkaf-ar.fina.LamKafIsollam-ar.fina.LamLamIsollam-ar.medi.LamLamMedilam-ar.medi.LamLamAlefFinalam-ar.medi.LamLamMedi2kaf-ar.fina.LamKafFinalam-ar.fina.LamLamFinalam-ar.medi.LamLamMemInitlam-ar.medi.LamLamHehIsollam-ar.medi.LamLamYaaIsollam-ar.medi.LamLamMemMedilam-ar.medi.LamLamHehFinalam-ar.medi.LamLamYaaFinakhah-ar.medi.1LamHaaHaaInithah-ar.medi.1LamHaaHaaInitjeem-ar.medi.1LamHaaHaaInitkhah-ar.medi.2LamHaaHaaInithah-ar.medi.2LamHaaHaaInitjeem-ar.medi.2LamHaaHaaInitalefHamzabelow-ar.LowHamzabeh-ar.init.LDyehFarsi-ar.init.LDyeh-ar.init.LDbeh-ar.init.BaaRaaIsolLDyehFarsi-ar.init.BaaRaaIsolLDyeh-ar.init.BaaRaaIsolLDbeh-ar.init.BaaDalLDyehFarsi-ar.init.BaaDalLDyeh-ar.init.BaaDalLDbeh-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLDyeh-ar.init.BaaMemHaaInitLDbeh-ar.init.BaaBaaYaaLDyehFarsi-ar.init.BaaBaaYaaLDyeh-ar.init.BaaBaaYaaLDbeh-ar.init.BaaNonIsolLDyehFarsi-ar.init.BaaNonIsolLDyeh-ar.init.BaaNonIsolLDbeh-ar.init.BaaSenInitLDyehFarsi-ar.init.BaaSenInitLDyeh-ar.init.BaaSenInitLDbeh-ar.init.BaaMemInitLDyehFarsi-ar.init.BaaMemInitLDyeh-ar.init.BaaMemInitLDbeh-ar.init.BaaBaaIsolLDyehFarsi-ar.init.BaaBaaIsolLDyeh-ar.init.BaaBaaIsolLDbeh-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLDyeh-ar.init.BaaBaaMemInitLDbeh-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLDyeh-ar.init.BaaSenAltInitLDbeh-ar.init.BaaHaaInitLDyehFarsi-ar.init.BaaHaaInitLDyeh-ar.init.BaaHaaInitLDbeh-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLDyeh-ar.init.BaaHaaMemInitLDbeh-ar.init.HighLDyehFarsi-ar.init.HighLDyeh-ar.init.HighLDbeh-ar.init.WideLDyehFarsi-ar.init.WideLDyeh-ar.init.WideLDbeh-ar.init.BaaYaaIsolLDyehFarsi-ar.init.BaaYaaIsolLDyeh-ar.init.BaaYaaIsolLDbeh-ar.init.BaaMemIsolLDyehFarsi-ar.init.BaaMemIsolLDyeh-ar.init.BaaMemIsolLDbeh-ar.init.BaaHehInitLDyehFarsi-ar.init.BaaHehInitLDyeh-ar.init.BaaHehInitLDaMem.init.MemHehInitmeem-ar.init.MemHehInitalefabove-ar.isolalefabove-ar.medi hamza-ar.medihamza-ar.floatkashida-ar.long1 zero-ar.small one-ar.small two-ar.smallthree-ar.small four-ar.small five-ar.small six-ar.smallseven-ar.smalleight-ar.small nine-ar.smallzeroFarsi-ar.smalloneFarsi-ar.smalltwoFarsi-ar.smallthreeFarsi-ar.smallfourFarsi-ar.smallfiveFarsi-ar.smallsixFarsi-ar.smallsevenFarsi-ar.smalleightFarsi-ar.smallnineFarsi-ar.smallfourFarsi-ar.urd.smallsixFarsi-ar.urd.smallsevenFarsi-ar.urd.smallopenfathatan-ar.smallfatha-ar.small2dammatan-ar.smallhighwaw-ar.mediyehabove-ar.medimeem-ar.medi.KafMemMediTatweelmeem-ar.fina.LamMemFinaExtendedmeem-ar.fina.KafMemFinaExtendedaMem.fina.Extendedmeem-ar.fina.KafMemIsolExtended kashida-ar.1alef-ar.fina.Tatweel kashida-ar.2 kashida-ar.3 kashida-ar.4seen-ar.init.SenBaaMemInitsheen-ar.init.SenBaaMemInitdad-ar.init.SenBaaMemInitsad-ar.init.SenBaaMemInitalef-ar.fina.WidewawSmall-ar.lowaHeh.medi.HehYaaFinaheh-ar.medi.HehYaaFinaheh-ar.medi.PostToothHehYaa hamza.abovealefHamzaabove-ar.fina.WidealefWasla-ar.fina.WideaBaa.init.BaaBaaHehyehHamzaabove-ar.init.BaaBaaHehbehDotless-ar.init.BaaBaaHehyeh-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehtteheh-ar.init.BaaBaaHehnoon-ar.init.BaaBaaHehteh-ar.init.BaaBaaHehtheh-ar.init.BaaBaaHehalefMaksura-ar.init.BaaBaaHehnoonghunna-ar.init.BaaBaaHehyehFarsi-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehLDyehFarsi-ar.init.BaaBaaHehLDyeh-ar.init.BaaBaaHehLD kashida-ar.05dammainverted-ar.urddammainverted-ar.smallkasra-ar.smallkasratan-ar.small zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small kashida-ar.5 kashida-ar.6 kashida-ar.7aKaf.init.PreHehaKaf.medi.PreHehkaf-ar.init.PreHehkaf-ar.medi.PreHeh_FDFD _arrowheaduni0237 gravecombuni0305uni0307uni030Auni0325Euro _arrowhead2_x uni0305.100 uni0305.1000 uni0305.1100 uni0305.1200 uni0305.1300 uni0305.200 uni0305.300 uni0305.400 uni0305.500 uni0305.600 uni0305.700 uni0305.800 uni0305.900(=>LWXYYZ^_ehmnopqsv!#Z_#&'*",hzY@H>?ABDEGJYjkmpquZ[\]^Ykm[] @CDHLv_ DDFLTzarabvlatnzcursjkernkernmarkmkmkvss05p&0:DNXblvXdj   2Pv ^@\ =bb$0' J/  6(#*:Zvb~[N(8X*RR$f hn0g & !SS(P VZ nnnn==zzzInn'';;==$XX==yy==II!9TTZZ``flrxx~~AADB92 :*%L,H@km,,,|,f-P-,,,,,l,r,~,x,~v_ Y[]DAHYelmqt,6,<,B,B |'C&Fm ,,,2,8,>,D,J,P,P,P @CDHL_MVw bd4= @CGHILYlsv,,,, ,,*,$EJYkmuZ[\]^,,, ,,,N,T,,$,*,0,6,<,B,H,N,T>?ABDGJjpqu[MVw bd .4=8MVwbd 4=!!::  ''CC +++++|++++++++`FFmm'(LM  >?ABDEFGJKYhijkmptu[]^*+*)Z)`+++++,+ ++&+++, ||''CC&&#'()*;  !#$LMVWZ[}~   )*;  !#$VWZ[}~_   >LYY_ehkmm pq!tv#&[[*]_+./"'()*;  !#$LMVWZ[}~   ||''CC&&).)|)R)X)4)^)d):)() ):($):):)@)v'\)v)F)L)j)p)v))())") )( ||\]&&=WX$Z^&+!#,/03|acGHINXZ[!#j&'m24=WX#Z^%no*!#,/02 {acEJOPQWY[&'i3''''''^'d%t''j''p'''&6(''&(''''''''''''''&<'''v'|%n''"'4'(%'.''4%%jjS7h'$*SS&CDKKPQXX_`gg$%,,rszz*+22GHOOfgnn3;<=^$*+,-5;CIPV_ejpstuvxyz{$*/5<BGMcilmnorx*0?@ABGMTZflqw !"#9?@^_`Q_`abc )3:W!456BCDOPQ^_`ijk~  #$%./0;<=FGHWX[bcdqrs~ )*+>FGHSTUefgpqrz{!"#8?@CDKKPQXX_`gg||$%,,\]rszz''*+22CCGHOOfgnn&&!!!!t!z!!!!!!!!!!!!!"!" !!!!!!"!!!!!@!|FLLLRX^djpv|   f  f       f $ * 0 6 6 6 6 < B H N f T Z ` f l r x ~ ! !!!!!! !&!,  !2!8!>!>!D!J!P""k LLL    .""L L"(.4:@F   LLLLLRRXX $ $ $ $^^^^ddd dd j p v <|       N * * * * * * * * * * <(  0 0 0 0 0 0 0 0 0 0 6 6 6 6 6 6: < < < < < < < < <"""           N N N N N N N N N N $*0000666<<BHNTZZ (` B B Bf B Bl B B Brxxd~ N N N N H H H H H H H H H H   N   DDDDDDDDDD N N N N N N N N N N N T T T T T T T T T 0 0 0 0 0 0 0 0 0 0 <         ` <   & Z Z Z Z Z Z, Z Z Z2288DD>DJ\\\P\\V\\\b ` ` `h ` `n ` ` `t f f fz f f f@@@ !!!!!!!!!!  <     "(. @4::@@FLRX^^    ddd jjpv| r r r r r r r r r   x x x x x x x x x x  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~"""""""""" H <           $ $ $ * * * 0 0 0 6 6 6 < < < B B B H H H N N N T T T Z Z Z ` ` ` f f f!!! l l l r r r x x x ~ ~ ~ o06<< `fffBHHNN    NNTTl  L< Zf `fl rx~TTTTTTTTTTTFF& F    BBBFFBBBBBBBB           FFFFFFFFFFF&,,,,,,,,,,,22822222228>>>DJJJPV\bbbFFhnnnntttLLzzFFFFBBNNPPP FF"vv((...44:4444444:LLLR@@@@@@@@@@@FFLLLRXXXXXXXXXXX^^^^^^^^^^^dddddddddddjjppvvvvvv|||||||||||6FB FFF FFF$$$F**006<<<<<<<<<<<BBBHHHHNNTZ```flrxxxxxxxxxxxL~FFF  &,,228>>DJJPVV\bbhnntzz$  """""""""""(..*4:@FL**.024>?E^ b{#=>*i*6*5! '++ 0/&.-,#87 "% $4 213 )()(*k#/#. %%+- '& 10  $, )(*"!"!*Cx{le Np8nJ&={! Wz!j!* u]$+b)K, npcV%V!o!5+! .!/Xzm!384853!!! . / !! !!!!T'`8SRQs.-]s-]!8%1 SU]%ii==n_=c'U82!HusM%bGbXh_1PvFFbi4pPbV%KNFIyCp %]1kU,QpUIcd&WkD]Qs`8.-V]b!!!w{! !!,IJX,{!!!!*!d!!'!!L!4!!!_!V!S!!!I#Y!'h5);Uhb#!Q!!X!w!s4!KB!"'Vwp!u!(M!<!y!7!;!Tdq`!!Co!=%!1HCd:!!J!!I "f4!! !.3d !BGV!wpmh<wUG!! !p!!l!!.G#_!=!!Z!!D!!m9`!i!,;!!ob!8!k!!!!!!!V>!!E!!1V$yF!!!!kbVbC&X!6!J1!~!n!`!b!"!n!%!!V!!!N!w!L!{!?!!h!z![!F![!!s!!! !Fb!!g!!n=!4!I!x!!W!!!]!!.!1`bm6zTODnn1nzzV*)=y8y/Vw_VymKt Jw' HaB|=PuIpLrhGXiscl_V%ga 5 py8qQi1D;I/IZ\671M+yBztu:cm'=&k bd`Sn%GkN?:X!m:i!6:1!!V:F!v:q!:!:!I{0e:`!:!:!:!z:!:!:!5:0! :!!s!%Vr`o ^!-!! DFLTarablatncaltcaltnccmpVfinainitlocllocllocl locl&mark,medi2rlig`ss018ss02>ss05Dss07Jss08P (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (2<FPZdnxARA KSH MLY SND :URD Z(&$" ) ,"$%'-/1369;=?tvxyz{~-"$%'-/1369;=?tvxyz{~ 2 Jrr    jd     v dbt   0 > Lb R Z d N P& " bb`  \ltrf 8B  . R6  ,6j`V  <:   v N <Pf 6   L ` x      . : j  &  x @2.J.DZpfL  6Lbx*(>TFj            1$;11G"ztn9tDM2v,vPj0|B/HNHB<60*$ :864|||(`*(&/Xrp"#$nljhfYZ[&bcd$<$<"Ncd]_^012./wxyz{STUVW."n~.  <"r&fb*j,,N..<00*D22<><     :%&#$!"8fV!|rr`L:".$U8&6r+,(2#RdFtZ[]\Z.D48\lFd@hPr(t(::~D>>rRRZTS4 D&'()*+,-&}~$pZZpf>>@D8F#:#dZPPP { x| t 2  p j X !##8 * * !   F8 3456789:;<=>z }~|l :;<=>?@ABCD9^ P RSTUVWXYZ[\]\8 ,  EFGHIJKLMOPQR  ! ABCDEFGHIJKLM    r 88EFGHIJKLMNOCDP}~ ~NOPQRSTUVWXZ[\Ydabcdefghijklmno  @  $       . 8778~ ~\^_`X\]xpqrstuvwxyz{}~{|\"#$%&'()*+,-./012345678_`abcQpqrstuvwxyz{|Bdefghijklmnopqrstuvwxyz]^_`abcdefghijklmnopqrstuv !;<()*+,-./012789:345>'=6?@AB"&*.26:>BFJNRVZ^bfjnrvz~PTX\`dhlptx|Z%?@! *8<@DHLPTX\`dhlptx|2    @Yb9xDD4.EE*FFGGJ^HHRIIJJKKOOZUUt4WW2YYnZZ&[[ \\Xd^^__,aaAabbccddee0ff ggFhhiiP77Nkk8llxoolopfqqzD:WW e`re`X*e@I<<mmmJAAA$$BBCLLLeMiNeNEF<QQQPVVVV:XXX]]rLjjjfvnnr=   nGCz{7@C@Cv@Cv* ~~;H<HHHHHL:^_`<L3DJ{}~G@Cv33@Coy333Fmf 2FJ}~ABCE[!:3333DuG~(ABE[33333333@CL >&^_`EP  '3333337 '!"#33333333!"#~w@CLsv_!#>?ABJGaH_Z[\]w^_`  "0>LZhv   8 &z{            MVw bd4=               oy)*;  !#$VWZ[}~    >?ABDEJKhijkmqtuZ[\]^      ^` >?ABDEJKhkmmqqtuZ^  "&+24:<=WX[^24=WX#Z^%   ~  9CDKPQX_`g$%,rsz*+2GHOfgn   ^_`>?@@ABCCDEJKLLhkmmqqsstuvvZ^__>?@@ABCCDEJKLLhkmmqqsstuvvZ^__>?@@ABCCDEJKLLhkmmqqsstuvvZ^__>?@@ABCCDEJKLLhkmmqqsstuvvZ^__A"w9EFGHIJKLMNOP '=^^$%'(*./145678:  <>?A!#F= "#$%&+,-./0123456789:<=^!"# 2 "#$%&+,-./012456789:<=^24=^^#$&')-.0345679  ;0 !!"# $&'*+, -. /0123344 56778899:;<=MVWW XXZZ[[ \\ ]]^^ff ggnnoorrw!"##bd        $%%&)*-..//023=>>?@AKLMNYZ\]ghrsvwwx{||}!"899:PQRSUVWXXYYZ[\]^`aklopz{|}~         !"#$%%&&''(235667:;<==>>?BCCDDEOPPQQR\]]^^_`abccdnoyzz{{| !! "" ## &&''Y73YGp 333333!3333"33333#33333335544[u[ur}r}[u[u[u[ur}r}r}r}EsEs[ur}EsEsEsEsEs_w_w_w_w_w_w_w     amiri-1.000/fonts/AmiriQuranColored.ttf000066400000000000000000006204301434272261000200510ustar00rootroot00000000000000COLRCVg CPALPlGDEFGPOSVq(XGSUBbd8>OS/2S)`cmap(Jd gaspgglyfa.2D~headί'6hhea2,T$hmtxlocaAW"|maxpjx nameC postແj|8preph"/_< 1|%,H,,V+"GXKX^2 C BALIF H l!$@,=DXiXi,K$1/qZOqZtS }8j+6:*q5**==99==8888<:?[>8<<q566\V`pIIIlI?IIzI\ILINIx*:`*<<<69,,ZeX#HM)*IIIlI?IkIVIBILINIxIM=yz!qZ,qZ/,GA':8ns4*%=?'<z5b{=q56??L5[> 08g<<<_,: :=/=79898;78'D#>I96></2hBQQ)6Se?].T<ZHH_0&2A`>{>? =n=!R)9?`63+C;P>(738#<8Kbh0pE^X|077!00af=gITI\IcK= Z5I%%ng'P88784_` <hT(2D`i0'7M9l0-0P0'!"Gnns4s4s4s4s4%%??''''zzzz555bbb{={ 6?L5 0g<g<_,_,WW//79798888;;77''YYI9I9I+I98"62++@@/222hBBBQQQQQQQQQQQNQQ))66666666666SSSeeeeeeeeeee??)?].T<T<TTTZ  HHHHHHH_0_0&2A2A`&##{?           =n!!R)999?W~_d.'?;'33333ksx++CCC++P$$((777333333333338878##))8878KKKKKKKKKKKbbbbbbbbbbbh0h0h0^^^XX||::005NL88L777777P!!0000K= Z5I%%ng '!P8P887884_`  <hhhTT(222D`i0'' #77777777777M9l0-0P0pppEEE*666   KKKbbb||/$$$$^$^$$$ $6$,$$$$+$^$^$$$ $#$$ $$$+$$$$$WDDDDAs,88w'"\$$6$$$$$$ $#$YCC,G.&12'4& p95BR1RG=RH9%'A/[70dF(/(=( (/(<(1(&(u$0(0^(0c onGj|<Mq$&&',( &vh(/  !,7,+77 %$Z6H;&;C;+"r+r#nN2/ TB_wP]'#]!cGXF,>, ,, u,3, #++,, s$) W8@YcX, w$;IQ6Se6HH 2E#i !98PC+h$q(f73)o,Kb=h\,^qb,,NB/77'!b?h8T7ipE\Nn;6 h' zbqgWk772'3<+bBQo<Kb'^c6^$M K,C73MKbQh^'C=77'K ch/J7xpEZss;CbBQ6^STeH$M@ K9,[# C,c,R,, ,,,+,}, ,, ,*RYOI+"@PFQ=6e)ET W.k377Kb!"!d' l77$"+T5 *,,,jGT#,l, ,d% 7d;&>x3#KbX|8  qz7D8sd7882QJ6eDqF_3Kb,8Plu7?s_'z[{ l_g6QE6eH_n  _?!9sKdbj6;66* #3*'Kdbj:L.;"78IQb66e* #}' ~+ (Qd6e+: ~EX 3K b2)s~7^I,, ,|T$b@"/Z]z~ % :X\iqz     " & / "%? 0[^{ % !@\`nz    " & ( "%>mcTgzwuqnmbbz*+,-./0123 |HkP>;UR]iv"*6>JR^u (Rs<t > j  ' / J V b j r z  x 4Lbk%-5= (08gv  i &O!o  F ![!!"T""#1##$'$p$%%?%%&&C&&''Y'((M(()G)**q*+7+,,j,-I-..H..//A/u//020u0~0001 1t112#2P2|22233T334454o444585@5u566e6667.7c78838899`999::\::;=;;;;<5<_<<==R===>D>i>>??A??@@u@@AOAAB$B,BnBBC C;CkCCD(D_DDE4EEFFNFFFG&GpGGH"HHHHIII"IMIIIJJJKKK8KTKKKLLQLLMMSMMNNFNNOOJOOPPdPPQ>QzQR RYRRS!SWSST@TTUUGUUUV7VVW!WeWWXXMXoXXXY$YfYYZZLZZ[[B[[\\K\\]]E]]]]]]]]]^ ^^^%^1^=^E^Q^]^h^p^|^^^^^^^^^^^^_ __#_/_7_?_K_W___k_s_{____________````#`+`7`?`G`S`[`c`k`s`{`````````````aa aa!a)a5a=aIaUa]aiaqa}aaaaaaaaaaaaab bb#b/b7b?bKbXbabibvbbbbbbbbbbbbbbc ccc+c7cCcOc[cgcocwccccccccccccdd dd"d*d6d>dJdVdbdndzddddddddddddeeee&e.e6eBeMeUeaemeyeeeeeeeeeeeeeffff%f-f9fEfQf]fifuf}ffffffffffffg gg!g-g5g=gIgUg]gegqgyggggggggggggghhhh$h,h8hDhPh\hhhth|hhhhhhhhhhhhiiii i,i4i@iLiTi`ilixiiiiiiiiiiiijjjjj$j0j;jCjOj[jgjsjjjjjjjjjjjjjjkk kk%k-k5kAkIkUk]kikqk}kkkkkkkkkkkll lll%l1l9lElQl]lilullllllllllllmm mm$m0m8m@mLmWm_mkmwmmmmmmmmmmmmmn nn#n/n7n?nKnVn^njnvnnnnnnnnnnnnoooo o(o5o>oJoRo^oforo}oooooooooooopppp%p1p=pIpUpapmpup}pppppppppppq qq#q/q;qGqOqWqcqoqwqqqqqqqqqqqqrrrr+r7r?rGrSr_rgrsrrrrrrrrrrrrrss ss#s+s7s?sJsRs^sjsvsssssssssssstttt!t-t5tAtMtXt`tltxttttttttttttuu uu u,u8u@uLuTu`uhupuxuuuuuuuuuuuuuuvv vvv'v/v;vGvRvZvbvjvvvvvvvvvvvvvvvvwwww"w.w6w>wFwRw^wfwnwvw~wwwwwwwwwwwxx xxx&x2x>xFxRxZxbxjxrxzxxxxxxxxxxxxyyyy"y*y5y=yIyUyaymyyyyyyyyyyyyyyyz zz#z/z;zGzOzWzczozwzzzzzzzzzzzzz{{{{#{+{3{;{G{O{W{_{g{o{w{{{{{{{{{{{{||||+|7|C|O|[|g|s|||||||||||}}}}'}3}?}K}W}c}o}{}}}}}}}}}}}~ ~~#~/~;~G~S~|~~~~~~~~~~~~"+4=FOXajs|Vbn!Dg/7CKWb|˂ׂ߂ 9]gpy]WȆ6z̆JrHr1zՎ^ڏG=g9Œ?{t5ٖꗰ4nڙ.uT뜍j#)u֠bҢ R̤3--o멓Ҫ.e(NWuƬҬ-ӭ $,4GPYbkt}űαױ (1:CLU^gpyʲӲܲ $-6?HQZclu~Ƴϳس )2;DMV_hqz´˴Դݴ %.7@IR[dmvǵеٵ )2;DMV_hqzɶҶ۶!*2;DMV_gpxǷϷ׷߷ &.7@IQZclu~Ÿθ׸ (1:CLU^gpyʹӹܹ $-6?HQZclu~ƺϺغ )2;DMV_hqz»˻Իݻ %.7@IR[dmvǼмټ!*3#8S<e&J 5=Q X#n6.6P&KeJN`[ 677677677667G      `  ] \W!?J'&&''&767&'&76766'&'&7676'&7&'&$  'RJ! ; %R#  $ P  J    I = V *'Z     `>?Kn 65547X  e  Qkm#6'&''&767&'&76&61     ?OQ0  "  k#:  R'  /> >3 nA\H1 6''&767632  .$   *"  ] /D (VD ! 6'&7666'&#&u(?)$&P o%#I0 +6^ A! 6'''&76l /-  F 0 4 o)'&7&'&76'&'&2676632J' *  3%**/  !A   *99 )oGh`yYTlpBpK63276#"'& = 9@ QX=4ul}G 676''&7 S [ 8  5 c5{76'&56'&7(  k +=KEa4l 676327632''&''&7 2Ru  2w  x ^i #8,JvJ  ?-+632'&'''&''&7767676 ^0:? v : +; 79D%b 4v   e$'Ug %&$.632'&'&7767&&'&776$  9 E9  9"*W- vX  M5  L +' &(!E >%S%D 1D@z6#"'&5&&7676$C/B 22KM ! IL/!K5 " 2GE&& E5RE-' \3676'&&74'"#'&7o9j 40K )*V2_2,cp )TL3$'&5&'&&'&77676763279F+ 5\) )v"9&M  DDG Q5]w a 9o77yN!&6676'&&'&&#"''467667669E+ 4]) (w"8'  DCG Q5]w a9n77yxH6&'&''&&'&7276E;1 :.6 "J TT"cAYi|G4;  *e:Vu`q 6'&'&7v _ ?j  iN &Y*e8&Od<<6.!EL&&'&&'&7767676667676''&'676676'&'&7676%&76h   ! ;/;KM! */H2b/ D8 jMH9P$YA$)%"! 5)= )&+ "   )@(J!D_27&'&'&7676#"'676676'&'&7676'&&'&&'&776676'&&''&&'&75) - %@H*/H:b')C jMH9  5) !7$'6:H+ "   )/)%"2  + " 6'&7676#&8c_.5;3c /Dzk&"44<6'&7667632'&'&762567&'''&7763627&&  2 6@  *:V(  5h) ! U  b%" '{Q+ 3A|  2A#276#'&767&#"54767632766'&&'&7I9m G=))M#  JLqM( . #2 "1 %Hd6   78tw5 , 9$3+6'&&'&76''&776'0&'&7 0101405-15$G632'''&'&6766763276'&767676767674'&7 %0  AQd %Xx4  ~ & /+$4O !-HKQ,8   + ,4&'&'&7#&'&547672&76767663"&''&76767&'&'&''&7&'&'&7&76767&76676767&'&76667654'&6765&'676'&'&7632#"'&&7632#"'&&7632#"'&&7632#"'&;; #lp# ;;:: $pl$ ; OFF73zz4  DD 5zz3u HUUGHUUI     5    *+ QeeR +*** RddQ +T    >   >    &\]    <   =    ]\% 572>>284 571??166  i    i  ,`/676''''#"77'&7754'&76'&32#*66+#w))w#+77+#w))`*#w))w#+66+$w))w#*66Z9 6'&766'&'"x&<,,Mt' $C+ (2[0eOK"47632#"'&74'&#"3276e s :!##$7.""#9; (( Xe'&76367&'&'&76676   (F,  "    #  #o76676'&&'&767&S  #p *  Y  ! &p2 '6(J3eH6'''&76 U% $ 9 ' ()/"7'&7667632'&763767&'&1 &)B5 :/;   g A!0_@& u p*7632#"'&#"6760'&&'&7676! 8+ 9P  ; - 5E(($ 3'0   0' (1I7o4*#2'&7676367654'&'&776'6'&&'&7   !T< !$AL.f_-444 35- <&%0.-+N, *hw#-7AKU^g661632#"'&566666'''''47632#"'0&'#"544'&'1#"'&547632767&7'&'&7'&7'&754&76&7676&76&7&'&#"'&5476320676454326''&%776'&&7766''&776'&&776%76''&&77654'7&76'5432''&#"6#"327776'&776''&%76''&6'&767&67&'\ ,-   8 3( 0%2C >FDG:;-#*$8* 8   -,  ,.   7    /&4@ >FFH9:, #8+ 7   ., %iKy+ 'n Eu +n'OLi%Lj#h#jL;,,# E,,}!! l D D +o&+ &o^     : ,  /[4H;:,"*$9*344'0&4C >4[/  , :%*,  .\ 3)  &:,#)"7+334'/% !A >5 \.  ,*%Lj$ E +n' E:#jLk%iLLi%!!+ 'nw!!,,I++ +o&+ &o DF D+(0(,ya'77'{{{{SSSяJsU##"'&547632 .. .0-. .- M\kKl}GM{7NlO?-Pk$2-7676'&#76''&5&'&77676)){<9U 2`:'  ~ ?*d .d3 O[J  iV!*''&767&'&776767676'&&,;P</9f q #) %<` # XXu; '6 oy*G`#D]   ( >fB3.76676'&7667&'&7667632'&'&K#:  .\.WC ]@ [K#!' !F^D7$ S =)LeK80@2k"*"  #K FL3TN!UxHVQ 67767767767K       `   \ I\V/]7!9]99Yn#Dbf@9af@9yb/<F@9b&)zb&)<Daf@<)@b&&))Y!b/)</)<Z#&a,B,~|,<KYiy7#"'&547632"'&54762%#"'&54632#"'&547632#"'&47632#"'&54762#"'&547632#"'&547632"&47632#"'&47632#"'&47632#"'&462#"'&547632#"'&547632#"'&547632"'&547632V  &  j    h       {     @                     " t #       Z#&'&&'&7676#"'&$ =%%'{ 8:0  l `Vr0"76''02'&'&'&77&'&'&'&7676676667'&767676667'##"'&&'6'&6676'6763237&&327654'&#"7667767&''&&'75&&'&5476675'   F_    _ F   -f8-+ E_  !  _ F ,-8hH  9   9+5j2O96*9   9 ~ ! "  M  MM   M m `F !9F_  ^F !!! F _ œM  L  5\U  M  M !    9  9H9   9  /`:Ws&'&7676''&'&767&&'&7743&&''&&'&'&7676676667''&76667677667'#"'&'#36676327&&''&'&'4'&#"3276'5'75&'&'&766767&''&&'66+h8/+ E `      `E -8f-   F_    _F  'M54*8   9   9   9*6s! " M  M     M   Mm _ F !!! F^   _F$! F` fL  L  MfM  M  ! ! 89  9   A  9    9 p%7Sw #6676766'&&''&7632723&'47767267632667632#"'"'5667&'&#"&5476'&3676'&''&'#"'32767676326'476#"'"'#"'##"''"5476554767655'&''&'476767'4776'5477632327767&'#&'#"'&7&'&&'&''&76767'476327&&'&776074&'&'&77632#"'767&&4232676767&'#"547632&'&5#"54&'&&''&67657632677677677676'&'4'&576&#"2767463232763#"'#"54763276327&'767&4&#"%& #4#*  G*4T   _ GD652;!)X.[*%K3' 3I%   &+%iB ! +2o (>( . =  ):E.!"  <'4!PQQ$34`  + ')  $   WWC 16  -,  . ;$ ".q   ] h3F   h3E  c   !" />    77  k% #E u ',"0l@01/4 (*H   <%.    J# %&FK #& R@ 0 4F5I% ,9. . " - 'C= #    T&fE,9<#MlL26 1@(9q:7  ![7B  '(R$ *$I  " C +&4: !'&*6[D*' &65"n  # # *"(  .       $ }G,'j ~W'j*7-'Ymv'Y %>'Y'Y 'Dh'['D F'[ fw'Dw'[?'A<'A'A'A }'A 'AC'A+PT'8' 'U'J:s'KW'J,U~'0U'1'0 e'1 5e'#rk'"k'!k' (A5'276'&&'&'&67676   E퟿! n]g">M ;y ]=J;\v!'62#"'&&'&&'&7M] nh~\"6z3g4hR :6'&56'4''&7Y&/1/Y  Ti;5#"'&76&'&676676'&'&76676- 01%Gk ?͍  JI#Ex2)}  ' _ "6\q9  <z # <(%"'&7667&7676'&76676I,%# . )*  :IGQh P d%% &58 ! * C 8#56'&7676676%6676'&767&'&7676) |YF^!;B  (c; 3S 'g? r@"_~O .   o@ $( @=+^X@h  9 2{ " 0&VC%2''"'&7667&'&7676n"\]~7 (;<0Vk3C$Z#6mh&2  *FA*$4!76%67676#"'&#"'&76x$!  D-$ 0  1#? //:.xx:?>#776#"'&7676'&'&<  a   ;>%W4b3 # *e)'&766767667&'&7656765 PxR5% #R-t.976.6 fBW'1/'9$ 7#"'"''&76767632 66.Z  n& !Z7=7*  9 -%/%#&'&&1&'&76767676'&&'&76676 A 0=kS(  aN&   Zi U})e2?  i>D=667676727676'&'&  /j9P 7x'B I|"> h  d8?x,9676''&'&5467632767&767&767&@+6 6$  kC=bּb77(9$ c)  ^'1j):!)@'(> O0F!i9:<Q  Y(2#"'&676767&'&76763767&s ZJ }?#n $"Nx?%_   ? ,m4<:l& %<.66#'&767632766767&'&'&766'&('' a1o??s5 HHh\\7)P B# $ ==q(>3'03-r4K :/$4 L3f $ {'122'#"'&6767667&76676&3276  6 P~&9<  47) 0' %{(LC  ? C   ,3)Hj8'K5A27676'&7%6636'&77&'&56:( $<._  j@Q&( yR AA+'wf }X4    O#"*5PSIw<'  "ZLo,kV9$76763276'&#"'&767667&'& "%&@&MQ qe|JH8  H=o  9 = )$$ %L#2%676'&767&'&56767676676y_(yCG=="!ڂ//ÅEN'TT;H+6?{`6 ^_\!(59@676'&&'76&'&7667#"'&7676676676'4'&'&'&76{ATWK  ,''=( &>C._2A,Z& +E!. K,,& 81 * GV , ]=(4672'&''&'&7676767&547767&&  8 '* 5I N"6" :21; Q  "U5  " 3') - &%/6'&'#"'&767&767&'&&76'&65&'&V*+\[ *QZ_& .& 4  't!(# BZWV6C2 "UD'A.J 3$ 0 4 , 5=Q6#'&7676546'&"32@ &&1D8d /* 13F %;:?<##21PQA :%d%-7676'#''5#"'&76767676'&"676'& iZ> 0!"k1 8=)L&~.'' %<_ ^ ]  #"S& "0ClZ,|O 6"L&*?S46#"''&567632767676'&&1&7 ( b" $t4<+1  aW0J '*'<abH Cg6' !SQ9W*576'&'&'&76%6232'&'&5476^>!x RE+iO  Z^cJ 5KuGE~}G'*  ?R+%&'&5&&7476'&'&&'&776 #$Z@(^!>++#  ,1? 7  * +$&d.7'232767&'&'&76%632#"'&&'#"&'&54 *65!s  xfIjA E0 ['[U 5; @ s4vB_*&95%#"''&7667632767&776 u  H*Sq]e88 +%S 'tZ0\-$P>R77a1b1 }JZ X#<%x"67632"#&74767&&'&&''& ! N7  $ - 45 >''|SSf9 >#2632'&'&76767&&'&&''47   #TUAM5@  1   ![::Y fQ3$$md`+{R oPPF"7'&'&"'&7676'4776  9* F##  Z>kn E " " B*f0*+%#"'&'&&''&5&'&767676<##F$ [I*%4:  $$!m , +-(j# P6: v aյ^S- H>'&'#"'&763676766'&D7 M;/B .*3##7> E 227[>b" +8S")7667676'&'&&'&7667667&h!/C    T$-% < A,%~ ?; 9" +3 'c 0p?9&54 .76#"'#&'&"'&763676&6'&&$<=KDI qJ20  ^,< + 601A28 ZK- -Y3%<)%632##'&766763276'&7   AKZ76'#1U$ ucr55L&gA_$\yP<%'&7676367656'&&'&776 :g758 >&%rN !N/.Y,0"[ 33Y[M hA@U.O'9 J ,v08%32##'&'&776327676'"'&76&#"76?% 'OV?3C:3!UUVV! S#"4*  w  1j #6`u1dI0 !!CXEr :Vu)12'&766767667676''&76&#"4 Whe2 0%C12b?w71=BR,,@ >r8;d>H&36m7a@B./.,'$$@uv:d*!'&'&7676767676676676 W9(JK*8  @) %N+)-E6y(!EBj((N5Ab" #=(%7632'"'&&'&'&767667676'&xAA88&1A13]+$ +>P ,,`UU  ;/)(*V%676'&&'&54767667676'&'&7 ' ::^:I#:9 _,? (CEAXJK  =S 5N/`BL%''&7676327676'&'&776326676322'7"6767&?u`#it>= Bqf3Sm" )%7'%S.\4& 56 R|?CU>@#N-[%!"e GFXqK d3G( Y: R ? )L#F& 0B ? B2: "(/<2#"&''&7667&'&#"#"'&76767632676&7676 -, [8 4 ( 4# J,({z9G8& :hi! " 0/C G*$ F & A 20$k4$ =8>6''&&766766767676'&'&776676&K!Ho\-f0   q%$ %"OWXYb,B9WV:'.- '4 NsLB!KkD8 . W Q% J 2WED %R5 ?:ILW+2 +9UM%67676#"'&#'''&'&7676327676'&77676766767676 15J/ :25Y'v+ 2> EX\*; `1 '* ^9"q Q.; 6T-Y&GG\t/t"#?NX S !!1 ".6''#"'&767632763276'& I4">=@40 b4AN) () &($Q6RDK,+ Z%* ,9uE632'''&'&76763276'&7667676767674'&7}  # />.S 6q) .? $Y-  44 '2k .H: &Q +I =+Y(HIUy*N` #  *L3O:76767676767632#"'&'#"'#"'&76y0 "# $<  R&G$'98',c 1r  @]c>8.''C; 9@%'&'&776&'&&''66763267676#'667&ZA.% j]C    ]d8*=N, bwat]?&  ? H#nIJ@/  .  /B+P. 8 V,& q"C:E6676"'&76766776676454&'&'&766"6676'&}  H&$!J[U ! 8  c]`:)(  dn 2Pt 7 ?3$6'V=##)\<8=D667632667676&&'&'&776&'&&'&&'&667&!   >Y4'7DK-% $_;B Ilg=!  J%1 0< # 12* A4l99c++/6` - BC7@%&'&'&?6&'&&'&763267676#'&67&NKu;G $+7  {'(Dh* > ##'%62'&&'&767667667&''&7&;#/ AB'(B!/  NG=((0&;;!a(,2YYJK   (##:*;O/+9c-6766767676'&'&'&76676#"'&@   O&6 ==1$O8az( zH9t1=-  Jlk8!/ ): %& B56./&'&766767676'&'&'&7676676=[<kl 7 0 c#-v `b$i.[ 3#A 0'M-s Nj2 Wq^,-6lKc+7'&7476'&&'&&'4776#"i9' tP- p~? *Dy77M ) -H D2'&7767676'4x 9&   I// L  ( >6%'&'&76767654'&776 HH<  'cd #"&&''&7667632766763676   ! D*  L*B8R) (# =I 4   {)766763272#"'#7667&7&32767)   *B akN#b?0' %)H(LC A9JS?%F-8'K2y:UI7676'&&'&&'&776     11@99B  +$ L\#6#'"7763676'&&'&&'4776v YtWG %0  'x) |K8M j`$/$9KQ372#"'&'&7676#.8#2' C!=&z?  D @6  NL*22''&7&'76766766763266767&'&--/.O\   =I?%5Q*  D$Q.Z Xb^""L$$@?  '*dY)_67 6(H>a` ?8U#'&#"#"'&76767&76    ]5) Q') , 43 JP?q,7&'&776'&7676E  '&: L83/,'$ )*+'&#"'&76327676'&77632\ ' $^5 %OP(1# X` '4o=z (3 'v (F6 Z6'&#"'&5476I5& ($&&@"$$ K&+H $& d*-a@ 6676'&'&76Dn+W%<[1Zd'  )5  E/= Q3lA 6767676PO31  ,.O%6'&#"'&767676l2//DG  =P%***-.67N-# (&%b854?*%&'&7632'&5676327676'&'&&  6 ڙ?3=;!b1B $ (*02QBg}u  Q "676'&'7676'4&''&&766 )';% =5*  )  U.oK' 13WO  +k(667'&'&6326767&' } *[3ecE+l! ?>R@!"C  '$%!11z.I9<;$$+%'&'&765&%&'&767667676 EF%#5'$)xQW&  \ <89TC + yC !#E%]!+97&'&4767676'&t36 H- #25ZP   4   " 7"547676'&766769)   !6 Z{z' :8J<!%67&'&&'''&77636'&'&76H\ /F E[.O!  ]o <aBY JWn7i2؅8 + 7'&&'"'&7676=9!X%  !M(  E,+ 1  9"767632#"'&'&76767&'&^ %aQ*  $,.9j Ms& "' 7=6  :J0  9'5676''&76763&5478K  <*(+9"= Z; B&  Y!&'&'&7676'&767676'27&'& ./L'6!8:?%  b C \'Cx*)h."Q3V676'&&'&'676'&&'&RI0K{  $N+=DK %=2&T4T 3  ;300 A&63#"''&763676'&&'&7  4+ l / "W  8~GkQ Kg %9+Wx 0's))1%'&7676327676&''&'&7676&76k Fh660' H9 -2%/=$)6@_EEtWJ@<3d#"FF "N0*g86'&'&'&'&'&767676676766763276'&7@ ; B+7& 3,'lD E1    Z)N= 4 N4  |UQ% 0#1 +  2 #'&767'&76676? 6_  J  X Z (G  ((  ( PIA0F*%%'&5476676327676'&776@/3#F[  J --tqM/($I30Ao S_ @ ;`nA2#'&&''&767667&''&767676$76e̽X >Cb$ @{=Y2$-. )J"W"aD/@ ",+% .l>SECSK "1# ! PX A%,R&@ #"'&'&&763254'&7667632XY 3@ UF ˞  X    F `!%9%'&'&&''&'&#"'&76763236767276676 #,33461'1W1 M- ( 9 '5 ?4J Mg# e  - ,*#7'#"'&&'&&54'&7637676  ! @ !\( >5)!A 4<)R("A >.&'&767676654'&776G`K:3 @?8e3h%?f%,?@?IH {5#"'&&'#"'&767&'&&'&767767676 )3 Y999$! /6FQ 2D <0F"R/ ښ :7U -]??>$ ?@S] 555 #"%2'&'&7636767676'&774#+L*5`H!ED P23]49 0/=! Z>!6676'&'&&'&&'&D    '  +& C !cI] ,l /:7&7667676'&&''&767"6676'&7276'&&7 /"# /?  W+H5; %#8 2%7W 9h#,03A * ## #F$ ''12+  (Z76767'&7676V5 f  J  ) Y5H/:( 3=''&7676'&& 6h4'   <4B  ,') + 5$&I>6'&'&'&'&14#"76766767676327254&'&747@9& ?Du1!'H 4Q#" 0.+'C >O&C= V (_)  nH#'&7676'&'&&'&7676$76  ` 1@ Tq :GJqe/7  !F  (8Z"='%'&&'&'&763767676'&'&77676 *0R3 i(*>> )(.463  01* Fg&'&767&'&7676'&&76$ y%$67.C*3]&-C\y9 %.6 -70///= i,`u!197#X*m)4-#d ! # )g=f)%'&76676766767&'"776"O--V)9Q;  $LL6r:') G//3 Mm$  yCE -%  4 cK"632'&'&&'&&'&7     .  /-Z *6/GN '&'&7$p%*PFR11&;h*Q3076#"'&&'&&'&&'&'"547667676766'&6D 4 Vb+7'   )/)) ))2>    #^#"&767&&'&'&763 :'   $ xT @3dF-)7#'&''&763270&''&&'&776 ) % H  s5#+2q#/  .%((6%1%2'&5'&76767'476676'767&&i V!X. 238   c $ 6 j h1 :)* 1$$97 g   '767676#&'&'&)8D 8R 6())& '5 eh $ 4 '&767254'&77632KK @4'' 9E-,< 3&)%'&%&'&767626767667676   " A=A /g{33/ +'q  f&6763276676'&  , "   M/2#&'&'&76567632 .= .! 5+$N(&O  ' ."<872#"'&&'&'&'&72'&'&'&'&547676676od C@@_  Lz>,0'@ '(D  "bR'D W]+(()6$Z)[.#1 PJ '&.`0N7'&''&767632f$)' =+. 66'EB#03&'&'&'&76+ 9"!M'  # <+1W ,,+26/%'&7667632767676676&'&'&77636  GGp! H)_FC 9''I#E33lCH%C=X#"*!6!?/3*%'&&'&'&7676676'&&'&'&76767632 0!;w  >c% 1-Q--J2>sZ$  %< ,);u!%6'&&'&767667676'&7 AAZ32%;90' ,k pMM "$:(2<67632'&&''&76766767&7667667&'&&'&'6'& [\ O2sk6 )?$#   !h $-% D3 QQ/U# 84  .! O 2,G  ;R-2'&'&76327676''&'&&'&776E   S   ')(   '`JIfx00"y! +>6%'&767676'&'&77632%N'./n w: !('*'AZ/F0d1C  G-5'&7667&&'&'&7676767667672'767&T$     "(hg-U<;=$9qF'& 8ji!E_\0-G$  #",,;-,4*-/^$#!."=\3Q/776'&#"'&7676676636'&&'&&"7667676/n={F  61a&  b036 ; (5  )$"7     R%'&'&'&'&5&7676764 32 $$55%Z: &&; (;;*+/.8s5&'&76'&7676327667276'&'&'& " /e  ee|9:; w+5RRPQ_ 5    #00 4XW[iJ`& 1)  4&%'&'"'&6767676767676% # 92)4)(  2$' O ;-9"3 % ' O<8!"'&&'#"'&&'&766767676'&'&7676676! W;-8/-6$  )#(DD!   5d1    C,%D; 66L) ?    8'455!'6676767667632#"'&#"0 $u%'   '  /(C%'0' * n aG )'&'&'&'&76766767636  rr)=- 7^(H!2g  L :  --P@Wl6'&76'"7676766763< 2S!.? :jH8'`;   G   9V'M  "$&7632'&#"'&7667&&'&"'&766)[1"G> L+U!gg*>n.5?   F**?   T*%'&767237&'&7676'&776QN/[3  6<78X ^_*"$?@! < ! +'"1Y4; N $"58 ) #"/%72#&'&76676&'"7767682:   =""<%%  :$L>:.+    2` 2Ij#+! 7)%-767632#&76'&7#&767&36+% "V` %: /d  #  * ?)R@ h-+  M; 9 >I<A +62 -H+&6'#"'&767676036'&'&7$ E706 8  $ $Z%8]BN  , -52767676767632#"'&'"'&K  !# #/  D&F$., Z *  @]c<8,DV (676'&7#"'&766&676(-+0 6 +&4iJ1O\M7.01 19  9DGmP/ s;L0>%''&547661&'&76767676#'&'&667676` mn210 =2   l%$1[+'Y1d    F '0 "  A3X 76547&'&71 ?   2*^ //+ C'6'&&'&7(/" Li76'&&''&&'&776 +",  E 5B  f+76'&&''&&'&776'6'&&'&7 +  ,   , E 2A  D)2'&&'&54367676'&''&'&76V  DF4( )Q 5   c   ~ v%&7676#&'&'&'&7676'&&X   *  V!,N S" 4  %s) 0}x  :> ;'6'&&'&77&'&7!"+ ! - D0 0AO%676'&''&#''#"'&76676327676'&77676767676 %10.  :25Y 'qfAB"; 35LNSU+;  _<  () T EQ.; 4O7V@@j+Z.q35&' @QU S ! M 776'&'&7667&&'& 2  !)7"  >)W+C A  Q3Q3? 676'&&#667676'&&'&J'Vz #S2{a6- +A(*V2F *R.?vFg0>"'&767'&7676Hg 0U  L  (Y'\.P2:) 3nK%'&76767667&'&''&7676%6bi Q >!?%  3Bi 2  .- F 3MhS b`]|k7U UV <\3Sc#667766'&'&ho? D ?KLY o 2 D  3$'&'&7676'&'&5476766768:1  kLE #SJ 7Z.E;9%Fk3.&Pv/M ?E2d c0%'&'&'&767632676777632>% T2^OO30H|4h#!  ^ " C!? II3((.%H&?{#R / 7#"'&3270&'&&54776'&cN +B, *#II+wwky ,  Wx"H ,=4%%'&''&76307676&'&54776#S!P;-^ ^,= N3  6^X ,  Qy'H55357&'&547676676#"'&&''&76tX!&SJ 7YXoQA)1 k@$ A0$^O|J"!hv/M ?D11GR2(^C)%63!7'&7667676'&&'&776'&F<    * !+4   (Lyc45 207'&'7676&'&&5467762 P_>^   0+#{{ $ 17'&'&&'&&54#""'&76767654776  +22jH2 gC&{d @ECMMR"2*6fH+5{&%'&7667632767&776'&' Rlcc98 +%T!'tZ0:!<?S77a1b1 zMZ X#<&? R7'&'&76&'&&'&776#//6    ^80!88g.>P# . e^s("2'&767676'&'&547676676 +ST CX*fPPdU{%O #y% !#,+*aD7,!;x[ >&M&&8571/0 \=32#"'&&''"'&76763254'&'&547676676,b?#0 =W8& H]:Mq5 ) F \)bUF3)=>Jc>K %6KN#K%1"?v[ >%L(A^@'676'&'&76   f  C %FNX'&&'#"'&7674'&'&776b%E" %= ,=  t1-0"Y9D=%8$g1%'&&''&'&6767632767&7676}  'L&Q, && FTR#G  $ 1%Y4g ;  A'M>EF . $#''&'&'&&54'&776sN.  |Y*)Eo8F0I=j)6'&'&767&'&''&7676676$R  >kGR _S) Ig 0 H*,Lu+_q:M ;0 *T 6-.& 4y;/22#"'&'&76767&%&7676%26- Gi?QQ'9  (5="/&44!  / E6b,7?HHB d2&. *%0 * B wt8u)%'&'"'&'&767667'&776'676'&_ 5%* 9$   UY ! I/9 #RN&' -Pm8|0 .8.&'&'&76766767&&'&&'&77632)FD#   %e  ) y!1 R8 ")# .Hze %O*632'&7676'&&'&&'&766*  >   + Fk$$H%  T*``h #676'&&'&77632#"''&766 #, #4 J,C (X! 4PV  7{$/%'&''&'&767667'&&776'765;@ "=%.<( ? *G jR /VO*( /!Fx% 8'"'&''&'&7676767'&7763+/$Hx$ Tx)';`)rJ1 ))6 5 E  h)A __X-232#"&''&76767&'&'&76676; $_ J* X501;2 &K   YXC(Q' XE6#H" N \`--6'&76765&&'&'&'&5467676766%yu  =923(2E .Ih*8D=15  /8(; '1&8|&'6767&'&7676'&76'&DM5-6ubq{3T0 XD&   /0/f~$MF B  1 O-!6'&7676765&''&76&#"76)!2):C 76@I G $*Del)"  !=J|k2'&'&'&767&'&76:""f  tLQDM-<\t4  F$%  0PC='4<2#"&''&76637&&'&767&'&76&6676776'&i, U56F!  a- "+ W$ C k "= =M3(B 0 "FE  6%=6  402 :;7676676#&'#"'&327667&&k 7#* ^S-1'5 z:C9 ",5!(6cD  $$&0'&76767676'&776'&'&'&'&'&0  +X&AG  6 $C$3I( .  q*'r  $ ;%U H8 F(,4#"7672672''&77&'&&'&%"767&+ &e  4`%&' "cdn - VfoTT1 &  !.*#   !)   }E!767667'&76676ru' %    I/  R5/83+' / '%<R06'45&7766765&'&'&'&'&7676$ [ ,A7V>( " JE @z9 4w(36i&"<;?A6"7767676'&'&7B  :a P. ./023 B 945*,j1!76672'&'&'&7676'&76676C~;.,.DA/Oi$xvE * H 5E <5  \F'&76676'6676   /(5 +9Y"J  A  -  )7!8*>E'#"76767676'&&''&7676"76'&r5# y 9"*4G  J[& !1* 3*Djd Z$''47667&7676676'&76$oM5] \=E > 6/1e"a)z; ?,9+ )E'7< *d7?GS,7&76676676676'&'&&''&7667632Q4$       ]   kCW7 # SPOi,&0:'656766767&767&'&'&76'&&'%&76'&65&'& 3$$ 5*)]\ )%P,Pq (h'# !  *@/ZYW5B24 .&# $  4 , 2$&%62'&'&'&766763276'&'"7> @ $K11  # =  B((>>T+G  ]H!` o&76767&'&''&7676676%6l& #3Dl{ 9& W? <$  ט', ( )^v  RE&  FCZ &6'&'&767&&'&'&&'&7   , #4  #  C$   >!@f2< .X_'&'&'&767662H %C(/H .@2 'F7'&76676'&'&'&  7@= .+f /D,    * (7'&7#"'&&'&76761076676$V6") TA  $  .p@ 3 h   o B#e25! 7'&7476'&&'&&547762'&|:)  P gU0 ' NC{ $   i!7632'&7676&'&'   N & b+ 1 # C*]@_m 45 v\. '&'"'&76767&776h13 $"!F  5%!EG J Z6% +  4#7#&'&&'#"76767676'&776 >#kF tKp%'~/Tw`>  5Odx +  G9c/6'&'&76676327676'&&'&7 (L ^ )[O67Dxn&  !Z70sG$@ j*5RHiA0%'#"'&767627667&776l&/NRb77NX$8g.5P,  2GK;:``a yK[++ 3-: 3072#"'#"&767&&'&&'&76  ]6)'  3 "Z>=T @3:T+/T&'&767&&'&776#"'  '5  %D  2& =88 ):I" '0.T%70#&'&&'#"76767676'&776 @- kF tKp%%~ D~q`>  5Odx +  i"'&'#"'&76767&7760h   T#F  5%!=1# (7  6% + 40K+6'&''&766767676'&'&7 !#  I)<(N&G# CAKf8zz! ! e6 h4N5 ]DN >!/~ 0q)#"'&767627667&776'&IRb77QX$8g.5   ,CK;:`Vk yK[++ 3-:pT: %: O)7'&763076'&&'&&'&776'& =;-t 7 ##%03  4_Y8R,  OE  1!%7'&7667676'&&'&776'&F<     :  $"4   (M#մ/+@ /  77676'&&'4776'&V_B   93 $"!2+%F5S %X)E J )(7'&''&763076'&&'&&'&776 V'A;-t * %:  .3  4_Y8R,  #7'&7667676'&&'&776'&F<     !   >1   (M9֝/+8 %:  7'&'7676&'&&'4776T#_B  A %:  2+#!p5S %&Gz&'"<&<GL&bF1&1Y&J%;W&J&&JC4&Kd4X&Ld44&J48&Od^&GU##&Ks#&JSG&OUs&JUs&KSB6&LSB###&Ks @&Gz 1 &K+ &J 8&Ozd &Jzd &Kq% &Lq%  1 &K+%&JN6%?&&J?x~&Kqo&JN{&K&J{5&JVs55&JV&J*V9WV9&J*Y&J=9]9&J%_= f&Kd?S&Md2Wd.5x0*H><v&JL<,v&K%,vp'nJIpn/3&J6/`&J6p &J\U9U9U&L *"g&L=sOO+&L#7; &J@; &JvC&JVCoQ'nGon9c9c+&G$9c&Kp+8uE"tD&GwDI&KCX&J_ZD`&OwD&JwD&KD&LDDI&KC6K'nJt6Kn\h'nG\n{&K&J{2y:U2y:Uy'UG2:'UKeIQW&3JSQ3]Q&3J_^&G&K&J&OB&JB&KB6&LB&KNW8&JlL&G6$q,z,&Kq,&J'&OL3&JLB&KL&LLq,q,z,&K)*&J5*)*Z"&G,{Z, &K&&JZ&O,Z&J,Z&K,Z&L,ZZ, &K&QW&3JYQ3IQ&3JKA&G?lA A&K>/A&JH1z&O?%&J?%&K0%&L0%lAlA A&K>&GAmO|O&KvO&J&OAz&JA&K5&L5OO|O&Kv??)[&G?&Kukk&G5k&KI+R&GI1&K`+&Jb(&OT&JT&KOTH&LOT1&K`+'&J1)&Ozc&Jzr&Kq&LqD&Ki>&J9' 'J3\ dY.&K/&J*YQ&3JsQ3;Q&3J=`&J V@`&JBA0's&Kl0's)gg&L$#&IGd,PI:P&IKj4P&IJh&IOd9&IJdH&IKd&ILdPIPI:P&IKj4A0F&JBwA0F*`nA&@& G;@ 1& K+@& JB@;& O;g@& J;g@& K;g@[& L;g@ @ 1& K+ J& L4V#& G#7 "#7& K#7& J#x& O#&& J#5& K#& L#7 #7& O#7 "#7& K.M' nJ.M n{ 52'nJb5n>lZ&=J4=&=J&&G@&K&J&O@ &J@ &K@ &L@ &K8UII&LnH.J'nJb.n+&JgR8ff&G,f&KkcKQ&&3J|Q3XQ&3J5ZU&Gl?U&Gm P&F&Yl?4 W9&$G$?T&$K9N,&$JP~&$O&$J_&$Kd&$L$$?T&$K98Uj&%G%&%Kx &%Jp "&%ON&%JN&%KNB&%LN%%&%Kx3&&&Kd3&X&&Ld3&&3&&&J3&8&&OdH&'G[f'&'KX~&'JV&'O[-&'J[-&'K[-!&'L[-f'f'&'KX~k&(GW(&(K'&(J%&(Od&(Jss&(Kx&(L((&(K'8U)R&*GI*1&*Ke+&*Jg(&*OT&*JT&*KOTH&*LOT**1&*Ke+&+GS0+"0&+KP0&+JN?&+OSk&+JSk&+KSk_&+LSk0+0&+Ob0+"0&+KP+26&,J7]+26,/&-JZ/3-X3&-J ZJ'.nJ:Ju.n/R069 '1nJ691n&2Jm2Q&&3JXQ3;Q&3J=R^&4GbR4$e&4K3R&4J5R&4ObBR&4JbBR&4KgBR6&4LgBR4R4$e&4K8s58s57&5G>8s&5Kr?& G; & K& J& O;$& J;$& K;$& L;$  & K474&7Ln$A'8nJA8n8'458'457'4&5G=8'4&5Kr&:GG5:5&:K5&:JH&:OGt&:JGt&:KGth&:LGt5:5:5&:K&;G[);I;)&;KC)&;J;&;O[g&;J[g&;K[g[&;L[g););I;)&;KCW&<GWl<8Al&<K2Gl&<JIW~&<OW,&<JW;&<KW&<LWl<Wl<8Al&<K2&=J/=h&=Jj0\&>J0>0&>J? ?T7&BJpTB#&CJ~#C.#&CJ%07&DJ7)D=7)&DJ?+E+X&ELldF+&FLn7&&GJVG&HJLH^&IGGX I1 &IK+ &IJkiG&IO.sq&IJ.s&IKJB6&ILJBX IX I1 &IK+ &NG_U vN v&NK v&NJ &NO_ b&NJ_ q&NK_ &NL_ vN vN v&NK0AP0A&PL +Nj'8&QGs%Q&QK&QJ"&QOxN2&QJsA&QK*&QL6QQ&QKQ&3J( Q31Q&3J3Q&&3J,Q3;Q&3J=/'&TJkI?T?&TJk&Jg0&>J=0>0&>J "WnKXe c&fMeLg4h55ijkl5{m&nG5n5&nJGL&nbF&&n;Y"o\p^@qrgs &tG't!1&t\GL~&tbF &t6Yju;/v8uwu&wKSd8K&xJ8xOyz7{{&{KRN8J&|J!8|__X}`-~ &J|-&K&J-q&J&JM=;&LF&JxF(!8U<RAR&G<A&K&JA &O<6A&J<6A&K)6A*&L)6AA&Kj1y&J|j11&Js\FEE&KvE&JvEZ&JeZ$GS,2$2$$<&G2B&Ke<` oZ X&GXX_2_&K(,i_&J&X&OXf&JXu&KX&LX_X_2_&K(,u\^&Gb&K&J&ObB&JbB&KbB6&LbB&KT5&1F&G'c cX&eGLct&bFc)&6YQ&GC5f&K/C&JCG&OsC&JsL&KsIg&LsCC5f&K/F&GF F&KF&JFG&OsF&JsF&KsFg&LsFF F&K'!i9c&MF00K&Mk0qO )1&@J "@11&@J3$&AJ' $A1$&AJ3*&G7K#&J1M<#&KQ6<#&KQ6K&J_M<&Ka6<&Ka6Kq,&J'M<,&K)6<,&K)6K&JM< &K6< &K6KA&JHM<A&K>6<A&K>6KP&IJhM<P&IKj6<P&IKj6K& JM<& K6<& K6K&JM<&K6<&K6Z&%Jp\K&%KsEK&%KsEK&'JVM<&'KX6<&'KX6K& JM<& K6<& K6K)&;JM<;)&;K6<;)&;K6Kl&<JM<Al&<K6<Al&<K6K &IJkM< &IK6< &IK6K&QJM< &QK6< &QK6K&JM<&K6<&K6Ki_&J&M<_&K(6<_&K(6KC&JM<f&K6<f&K6e5567'&7676'&Dz  L  * Zq =) 4^e5/Y#G)'YG'GrG+33G] %6#!&''&%"   "Z",,"^_M&f^sN&f$eO&f oP!&f6iQ &f,R&f rS &frT &ffU&f+}V&f^_M&f^sN&f$eO&f oP!&f#,q{ &fe|&f q}&frT &ffU&f+}V&fb+&f rS &fhd &f 6'&77676'&7767 m   D$ :56'&554766# %F! ;M # ! #,k8A6''&7667&766'&'&7676'&7&6Q   -$"1. #S#  "!  V D   : #&/J +&[   G)'n'G 'o !767676#&''&''&767&&8#* ^S+,j 5:C9 -5!! 6D 5;)$$&D GFDRGDRG'&7676'&76#&7&&gAq+ (K    @ >I!G#  X+ P :0-8DGD\1"''&32676#" "//" .],!!,A5\"&'"''&3276#6]' "VddU" '],! ,O]!#"&'"''&3276-N>=N "z{" ," !, ]!#"&'"''&3276NllN "ל# ," !,'LLh'J6:h'!'&'&&'&'&'&776276zDA   d8U!F5g3n0AR 4;D En%'&7676325476#"'&'&'& >dC@[%  3C$^S6XL4y.6; ^3|C :&oG"&<GL&1Y 7676#"'&32oj]  ---&GX&KV&J`&OX&JX&KO&LO&KVK&J`M<&KV6<&KV6^1&''&32676#" ##  ,#", IN"547632769M ?  I`L2  lw]G{[V}Z$d747632#"'&7327654'&#"**==*++*==**D!! !O7789LK9878ND/010EE,./-6f.&'&547676613232&&#"&543276554'&#"@-$% & #"  fL&#"#"'&5476676676323326767667632'"#&'667654  #23   p   `@B9:#        +2 @%J!" eD22#"'&'&&547632327654'&#"&546767654#""'&76< +5     ':)e#5      %&  5  ?g -#"'&554##&'6676763232#"'54#"332.=!$(;ge\;'O'"1f?7254'&#""""#"'676326327'&"#"632#"'&'&&547632@ Z  $34#$%#I   P) K""64#"  h.7#"'&54673037632'327654'&#"!77##xZ{$7"! "##?S 0p ..P "   f43372#"'&547#"1'66 )\. +#f':L7&547632#"'&546767654'&327654'&&'&#"'37654&'&#"> ((  !!//  9      $ !$"!%%.  #'%&  $ h-632&'&5676#"#"'&54654'&#"32769!76$$= ? 3(7F!7 #+566767&'&767676#"''&,G w+ o1s?H7.LZ!CvJX]q F Iwwj  H*#?$#%G,h(2&'&&''&''&'%$''&'&#"'&76766765&76676$%$7767676327667667654&'&'&'&76676#&''%&&'&'&&'&&'077%6765&'&7767667%767667&&'&'&76766'&'&''&''&'&"'&766766765&7676%"&'&%&&&+d0''(*<=+ %Flh !T)208 pK& " 9:\>%;  $ &L*    )  ^R;:;atYRQ:""6/ CA9!|-*+4 !!4 "yM,0W T)/5 8^%$$aSO A; P 9 t & - ,DvG>  #07  $3 2P&Ac !"AC  , "    3 U7n %  5% 6F5uv395##@SS]D/38+ (&25    D5   b& #  3 #56 .&6 *W$%.b'7'0661D.. B.. D&#2"'&&546632"'&&5466Y     /:8 5I  /:8 5I 1>;?#32##"&17##"&17#"66737#"4673766323766323237@AB } A ?CB}>}hc lc lblbl2EP[2#"'&&'#"&'"&57&&'.566327.546632232654&&'7&&#"& #%93!8Z34  ($(#G05T/ &,D.-$ ),8* ? ?"+6#4M++& >0 341C-2J);7#*{!0-5'bv/?M2#"&&54662#"&&5466"326654&&"326654&&#"&'6632+?$"@-(C(&C+@$"@-(C(%C'#) %$* %^(  2,G+'G-*F+,G+D+G+'G.*G+,G*%8!B+&9!A+%8"A+&9!A+G b4FVb26654&#&#&473267#"326672#".1#"&54667&&5466.1326"6654&-AL*B%L% M0" /+!- -&( #_0Uh/J)%&A71 .'@#FC..3%95,C44f))C  ,B#"* # *SJ/E3#P2%=$HF0%1#.9)"$K+<8!6&r2"'&&5466Y   /:8 5I  "[660'&&'0&'&&766704'&&'&67670676'&&'&6760766'  1/ !  (#   $   W     (   #,    3 -6632132##"55#0&54673      $xx72"&5>54&&546h  #(  x 65+ + 98 70>32"546E*@C5  M[-  5r2#"&&5466"326654&& E_12_DB`32`H); 7$,:7rVUUWWUUV$K~MLLNLM{Is274&#"&50547>33203&&#"&67266766 . (M32.q % 1-l&  &Bs1%!&&5>76654&#""&5>323267632 )VN=/':$ 0?'/M-"SJ% =4  .db),B$2D"(  +/!/J**J *_S%&Rs@2#"&'&&54632326654&&#"&547>54&#""&5><++@-+GX.9 '5$$9 ! 'F+6*./>s8(4& &C02Q9    C8(=$   $9*'4+1u232#0#"55!&&5663:D #>8u   uRu?2#"&'&&54632326654&&#""&5>732661##66 :Q,+GX.9 '5$D96  * 8&R  A4O*2Q9    C8C/  7n_ ,[) Gx12#".5467>726632654&&#"3E)5Y8,G20.#[_)OP@@b,/<6,3&;A6]9'@O'K2&@.  $<[AW"!H>'XB*H, =m!2632#"&5>1#"#"&'667,  76'.54662654.'&#""321276654&&,I,$3;'4U15S.*+/!-J&09".((% 1#1#0$*t"@.&8(4@#1N-(H/ 4(  -<$*H-<15)@/(98@,%3 <(6$Hx17>7#".546632"&6654.#"326^OPAA3E)5Z7,G2//"\_),.=6,3 $<[A&;A7\9'@O'K2&@- 5"!H>'XB)I, 9 4632#"&4632#"&9   p!!!!%x#72"&5>54&&546'4632#"&|  #(  &  x 65+ + !!%#"'%&&5467%63210  h D"  Au8 !"667!2!"667!2t  t  /7461%%0&54632#"&&/C j "! 7/s.:"&547632&'&&546676654&#"4632#"&b !!A?),7 !&$1,1   /C+1D  6$- *#&* !!04IZ2#"&5467#"&&54>32326654.#"#"&'.54>"32>77&&HkH$5[9$-&+*1Rc2<=(=]@KvT,N4!  -M/0]i:2*'42Vk9J|I'-  +*&<"6iW4>g=2^K-?i@U~  PsEHtE)CS*.1(AL#ckXf70>766323&&#"&67267654.10&#&"#""#""103.#"&4726766033267261] )*'. "-" &  , *! ! +Y5%1Tgmd&:  +63!(7"  /(1BT2#&6726676654&'.#&&7326326654&&#'326654&#"*!F:$#/0/$#r8  :B5 '%G0OK;Q,6SD %!8*%<&):$*H &'  ?;%E.%"5AG"/i520#"'.#"32676676#".54>y0i6'J=6X?!?_@-? (fDHxW/1Xy )7- .2#1Se39nY5@ *1&3YsAEy^5($?2##&6726676654&'.#&&7326326654.#"-kR"Qg  :PB/FuH-Ma5 S[>v^7 &' s`<{_StI! !("j263#"'&&##"332>7632#"'.'.#"33267667632"&#"#&6726676654&'.#&&7EO :'T 3#'    $+ ! /#D  !Ob"6  :%>!;   , 5(Z  &' (a263#"'&&##"332>7632#"'.'.#"3&&#"#&6726676654&'.#&&7EO :'T 3#'    $+ !!%A"5  :%>!;     &' /T%4454&'.#&&73267"#".54>320#"'.#"3267665 83  7SAHxW/1XyH0i6'J=6X?!?_@&;  &E 3YsAEy^5 )7- .2#1Se39nY5 (267"1326706554&'.#&&73267"3&&#"&67266766554&1&&#"13&&#"&6726676654&'.#&&77 $L)#Q!9779"M&D@ 7:  : '  'e&  &  &' (;267"3&&#"&6726676654&'.#&&77  7:  : _  &' "2267"#"&'&5463232>54&'.#&&78 ;gB *    9 'dzD   >rX' (z267">7>76654&&#"#&473267#""&'&&'.'&#"3&&#"&6726676654&'.#&&77  $+&+ : -#)*GF+G{81(1K $ ?\7 7:  :  )&+  .GC)R5 Eh?  &' ("E733267667632"&#"#&6726676654&'.#&&73267" 7C  !Ob"6  :7 q   .'(Z  &'  W267327>7>132671"3&&#"&&726676654&5.'4&#"'&#3&&#"&&72667667>54&'.#"47&!-42./ /A7 "2"301#$* "."#"Pmzy4JwwH6( f|02 # GOKw{G:@g? XQ  $Z2274&'.#&6732667"#"&'3&&#"&&726676654&'.#&67* BX^X !3 #   V!2 "!!""*Tkro-r    s*' D      0'2#".54>"32>54.lAsX33XsA@sW22Ws27N1"32>54.lAsX32Ws27N176654&&#&4732667#"#"&'.'&&'.#"47k < !!() 0+  -+. !9;%  "- 2IXXJ/5Rcf-&   =CphpD W^. ul267">76632>76654&&#&4732667#"#"&'.11#"&'.'&&'&&#"47s , &,**$  (*  4)  ,+  $"$## 12  % "3 "(}E9p$Bg{:8ZQV4&  #\X  #bmhU3CskoA  [`% r267#"6676654&#&&73267"3&&#"&4326654&''3&&#"&672667>7.1&&'&&#"47$< q,P)-&4%%74#:*)=)30"")8&6)/ %<;# #%! ! $3 ;h -BD/ GD4  0PQ/5:2  Og754'.'&&'&&#"473267#">76654&#"&732667#"13&&#"&67266766!! ! $2$$< ($)+!"& (,) 7: q ':4;'   MI:  IQM G3  &L5"#"&'667332667132676676632!"&71D -)>=)$;INJ:# +    cD<"S15VjriU26&5+ U<0v2#.10"&5>76  " %!!% "!v &:7% +''+ %7:&  0663!21!0&N q $<J232672#"&'#"&5467>766554&&#"#"&5467>266551 !&% 0B!E<& %8G(:"&$<&  *A/+  + /& &)1B"&'&'&&"&56654&'&&#"&7667207>32"326654& -  $%G *2,C-?m6.*#;$O *  ,) %;G!@k@y 1K'U`&)#"&'&&#"32672#"&&54>32u  3!\B)5  &:&;Y1-GS&6"y 'H4UP&  '8Z36W@"&=L22554&'&&#"&76672023##"&554#"&&54>"326554&,$%G % ;*-6,O1/IP%5 >,!4?k   ,)^9    " 7_;0S=#)/J).N0 ''47326672#"&&54>32732676&&#"l,J+, &:&9X2#9D ,9!  5DB. #( >T) '6\91U?$,,$ ,$#-#?E2#"&'&&#"32#3&&#"&672667665#"&54661354>   !t k2-9 $#6: ..y &  &5\E'"BTd%2#"&&54667.5>7&&54663227.1"#"&'3"326654&&"326654&&&'E+)F\3'N4&2% !! $-+K/ , i  +K/ " F )%*D>"D.8V&*%(A.@8#5(( % E$'C*3""B+ E $/?0#"48$!39%^23&&#"&67266766554&&#"3&&#"&6726676654&'&&#"&766720327>,56.-*&+ .-#%F  -6,\Gl&  &b=E&  &  ,) "t'},t'j,c73&&#"&6726676654&'&&#"&7667206676654&&#&67327"7#"&'0.'&&1.-#%F +&323# 1"/3%H8 3&+B ,0 q&  &   ,)" * $('Q=   /4-4&'&&#"&7667203&&#"&672667665W#%F .-!   ,)0&  &266323&&#"&67266766544554&&#"3&&#"&67266766554&#"3&&#"&67266766554&'.#&&76672327>8,7 M#56-. &(,-.'5*-.&H (3%,4,\Gl&  i1D$ *x&  &dYE&  & $   _23&&#"&67266766554&&#"3&&#"&67266766554&'.#&&76672327>;56-.*&+ -.&H -6,\Gl&  &b=E&  & $   "(2#"&&5466"326654&&A]36^;@_37^0)2=,*1 <8`=?e;9a=?d:!1M*/^>1N)0]> #FV2#"&'03&&#"&6726676654&'.#&&76672327>"326654&-C+(BQ)& .-&I */&+)9P&>E /UA&^'  '   :  1L'W]&"8H232723&&#"&67266766554&#".54>"326554&&*, -.+3*A,-IT "2R=1) +_'  ' &(" #$(>4&H %. #* &  &  ()1#(A:2#"&'.#"#"&'.563232654&&'&&5466'   !#"'4&*D("0  ,($6-)@ ;*# +'=#  &( +$"%1'$6)*32#3267#"&&5#"&5466135>762~uA$(/9 $   P .*=  R454&'&&#&&7667223##"&554&1#".554&'&&#&&7667232665U& &F' ;* .6'0 & &F/3(8   $/  -%;D|  (NI ?267#"0>76654&#"473267#"#"'&&'&&#"1&&7d)k "#!$/G)$ &+CN" 4TOU4 qRd267"6654&'&&#&473267"6676654&&'&&73267"#"'#"'.'&&#&47c) 2)&)  ,0+(/   ++  lj%#'% %  xa_g#  nhGu  DkkD 9[UY7 u267">54&&'"#&&73267#"132&&#"&636654'0.'2&&#"&676670>7.1&&#"47x5 @ &+  *!"!'&-   %%#$6! +- f,%  <.&21  ()5  ')$10 !O267#"0>76654&#"473267#"#"&54672667>7.'&&#"1"47c9 h /'#!#"-#!01$ 6+CN" 4TOU4-Z'  +(Fyu>!43267032676320!&&5447'"#"56670}(1.78.-5      ) (BNOC(9 '6 i!  B'7Z&&#"&5466323267#"& 7!,*;#76"& %9$8  #  #,2<232#"&'&'32672#"'"&57.54>7&#" 0   2)5  &:& -B$'@L%92 3!.&  '%# :O+2S?%7'H4;J+mX2#"&'&&#"3#6632326672#"&&#""&546676654&'#&6633&&5&663    !* )!) &0*9.  !Q 57Vm  $:" 8$G5  &  %&N$*Ch<vq{735#&6633&'.'&&'&&#"473267#">76654&#"&732667#"3#3#13&&#"&6726676655#&66L` K!! ! $2$$< )% ).!"& ',)] T] U7: ` * ':4;'   MJ: IQN    &  &7CMY#Q4>32#".7326654&&#"#"&&5466320#"'.#"3267663227)Ia77aJ**Ja77aI) ?kAAl@@lAAk?f-;'?%#>(? &#(6!0& N7aI**Ia77aI**Ia7Ak@@kAAk@@k%?&'B' <)'3 7M#ky4>32#".7326654&&#"721"&'&&'.'&##3&&#"&47267645544'&&#&473264&#"3267)Ia77aJ**Ja77aI) ?kAAl@@lAAk?)!! '       <#$7aI**Ia77aI**Ia7Ak@@kAAk@@kN &-   +L     R% M%k 4632#"&732654&#"%9((77((9$$""$ (88((88(####Z: 4632#"&Z "" !!##6>57'46320763201#"'0.11#"&&50>Œ++() *+,+ (* **** +*++(); $70&54667!2%4632#"&4632#"&@ /73&&#"&67266766554&'.#&&76672-.&Hq&  &  "754&'.#&&76672&'&7>Z&I"4: 1,  FfE)  5^F2#".546   +* +,   # &H5!2X228H 4632#"&\ 4632#"&732654&#"3##22##3  >$33$$44$ 8\R;74663!21!0&;b ;  74663!21!0&;F +4>32#"&'&&+$1(#$   1  )B.-"    /"+h'#`/N j 4632#"&N?+,<<,+?,==,+??/d #74632#"&%4632#"&%4632#"&/"!!"2"!!"1# #,!!##!!##!!## }qX20#"'.#"32#32#32>721#"&&'#"676673&547#"676673>/c4   %G;9[<  =_A3B(  K~PT>'81W}q '4+ ,.!8]5   8\803(/%*?mC   Ck>B %*#"667!2NT  a'7#53'7D!_^ D  Db '7'77/////// ///00//_5nJwMnbP&n;1t\7tb] t6cXecUb]c)6c<<bbX11F >38 W P_$U u\ F 30U j0 e.M n6KnJu.n5n.ni1 s <1 5e691nA8n dpnh\non X#nc<X1 wX Y ;)Y_V]7!9I\S]9jJl3JL(xJ5*oJ,WJY#J?%zJAR[JT6cJzJZvJ3\mJ*q+Js`J 9JduJBwe~J;gE&JiJ2Jb2RJ4J@ JJb+J8&J|JPLJN+J[-$dJR[JTiJSk[zJ7]JZh8J:q JfkJm&JX@JbB"~J;$o JrJGtq}J:seJ[g=,J-J/\\J,7Jpq|J~bJ,|,J,U~N&JBJqqJ.sbJ_qJVs/2JskJ( o&J,'GJkIJ;GJ=KJdJJ!b J}EJ?qJv>Jx4J<68yJ|tCJvcDJefJ@JbBq%JsiqJs1J jJ' 8yJ6:JXJ\QJhJ%NWJx\J5;&JqJUs6bJzd 4JN6h&J oJN0JqJVsmJ*y&J6J=qJvJLkGJIy3J6nyJ6p J\7MJ{O&J@2&Jv&JV3JwPeJ brJt`JWJSo@JBKtJ1MKJ_MKJVMJsiJ&JJ=zJxJ11J3Z1J3uJ`sbJJS;JCJWmJ*Y]hJ%_XJ_Z]_J_"JjJ'^uJTIJK/JH1JJb'tJ1);AJ=@`JB$JhM@JB@JJ>JKJXxJ5ZN,JP, Jp [qJJVhJ%#Jg JNXcJ ZcE>A<R;4A pA  A }Uy A 5AC+,VA+PT}mR[ J [ fw*[?  Jj ~W*+H j*7-GvLR7GOP4QG+G$GwPg5hGGFj+kG=]"^GG6$!"G,{@AG?GAm)Z[GE*G5QRGIGnBGzUGd,G;G%&G@G,Gm W8<9GijGGHG[kPGWQRGIGS]^Gb7G>>?G;7G=GGG[G"GL]^GGG_UGs%]^GUGL!GLQRG<;<GdIGX]^Gb GLlQG?@Gz7GGr"GL,-GX+G5Gz&y}zGGl5G5 GFGG*G7c#rklb!kkc"kj3FQFhFjPFF~FtFlADDh  "D F~Dwdo3XLdRLr[L;gaJL4V%LL@ 7Ld)3L&YBLN>o XLd8!L[-xGL_HLOTv_LSkM6LgB/L;$/Ln$hLGtr[L[gLoXLldB+Ln7M6LJBL_6pL + A*L6dLA*L)6q@LM6LbBz~IgLsD~gLsLLLOdo3XLdM6LSB0Lq%5qL *~gL=sB+L#7LJM6LBLLL,0L0%L5_HLOTLqD/L$LdFaK_j6KdZKOTqKSkHKgB*K;$zKGtmK[g;KKWHKJBqK_AKjKSdTKRNkK<K)6|iKvlCuKHKbBuyLKs?yKsKO_j6KdHKSB+Kq%~Kq[ 2K fKlCfKg+>K%K bKEHKBBKL K,+K0%K5ZKOTrKq.K/nrEKlHKdmK;g 5KK@ _$6K!TKN9jKd3K[-sJsK<KQ6<Ka6<KX6<K6d<;K6j<AK6<K66< K6;<K6<K(6<fK6<KV6<K)66< K6<K>6<Kj6*<K6#<K6KKsEPKeJ$eKRKr*xKRKr'>KdI;KCj8AK21K+K.KKs1K+;_KBKe<2K(,"K5fK/8 KmKVOKpIKC"Keb9KzK6, K& K>|wKvKu5KI1K`+DKi>:Kj4*1K+"K#KiKk}?TK9 KxKX~K'1Ke+"KP~n8Od+n8Ozd OX(`OwdLOBOLgO,/zO?%|OA^S(OT+OzOdqv;O;g:xO{O@ ~(OEX"ONXn8Od 7O[-O^S(OTu?OSkLObB.vO;$~HOGt q;O[g2~O}iGO.sO_)X"OxN~n8Od@w O<6}GOUsOLObB}GOs^}GOsIyOyObH53222H5!2L22~H5!222H5!222FH5!2x22H5!2,22^H5!222H5!222&H5!2X22H5!222H5!2 22RH5!222H5!222YYmvY Y %>|'YYYpuYl?YYY)n'6 o &  &  H 6  V 2p   0 0 " 6 P * 6" DX ` d $` * F R LFCopyright 2010-2022 The Amiri Project Authors (https://github.com/aliftype/amiri).Amiri Quran ColoredRegular1.000;ALIF;AmiriQuranColored-RegularAmiri Quran Colored RegularVersion 1.000AmiriQuranColored-RegularKhaled HosnyAmiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named.http://www.amirifont.orgThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttps://scripts.sil.org/OFL(P3EP qDDQNGP qD1QN-EN@pFP qD1QN-PEPa qD-NE/O DPDQNGP 1N(QP qD9N@pDNEPFNbInverted Arabic commaDisable curvilinear KashidaLow Baa dot following a Raa or WawAlternate medial Meem and final Alef combinationKasra is placed below Shadda instead of base glyphA'5D) 91(J) EBDH()*97JD 'DC4J/) 'DEBH3).A6 FB7) 'D('! 'DE3(HB) (1'! #H H'H4CD (/JD DDEJE 'DE*H37) E9 'D#DA 'DEF*GJ)H69 'DC31) *-* 'D4/) (/D' EF *-* 'D-1A2 >?@^_`      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~       !"#$%&'()*+,-./0123456789:;<=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]a !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHInbspacecomma-ar tahabove-ar zainabove-ar fathasmall-ar dammasmall-ar kasrasmall-ar semicolon-ar threedots-ar question-arhamza-ar alefMadda-aralefHamzaabove-arwawHamzaabove-aralefHamzabelow-aryehHamzaabove-aralef-arbeh-ar tehMarbuta-arteh-artheh-arjeem-arhah-arkhah-ardal-arthal-arreh-arzain-arseen-arsheen-arsad-ardad-artah-arzah-arain-arghain-ar kashida-arfeh-arqaf-arkaf-arlam-armeem-arnoon-arheh-arwaw-aralefMaksura-aryeh-ar fathatan-ar dammatan-ar kasratan-arfatha-ardamma-arkasra-ar shadda-arsukun-armadda-ar hamzaabove-ar hamzabelow-ar alefbelow-ardammainverted-arnoonghunnaabove-ardotvowelbelow-arzero-arone-artwo-arthree-arfour-arfive-arsix-arseven-areight-arnine-ar behDotless-ar qafDotless-ar alefabove-ar alefWasla-ar tteheh-ar fehDotless-ar noonghunna-ar yehFarsi-arsadLamAlefMaksuraabove-arqafLamAlefMaksuraabove-ar meemabove-arlamAlefabove-ar jeemabove-arthreedotsabove-ar seenabove-ar endofayah-arhizb-ar sukunround-ar sukunoval-ar hahabove-armeemStopabove-ar seenbelow-ar maddalong-ar wawSmall-ar yehSmall-ar yehabove-ar noonabove-ar sajdah-arrhombusStopbelow-arrhombusStopabove-ardotStopabove-ar meembelow-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-aropenfathatan-aropendammatan-aropenkasratan-ar highwaw-arenquademquadenspaceemspacethreeperemspacefourperemspace sixperemspace figurespacepunctuationspace thinspace hairspacezerowidthspacezerowidthnonjoinerzerowidthjoinerlefttorightmarkrighttoleftmark lineseparatorparagraphseparatorlefttorightembeddingrighttoleftembeddingpopdirectionalformattinglefttorightoverriderighttoleftoverride narrownbspacereversedsemicolon dottedCircle commareversed parenleft-ar parenright-aruniFDFA bismillah-ar aAlf.fina.alt aAlf.fina aAlf.isol aAyn.fina aAyn.init aAyn.isol aAyn.medi aBaa.fina aBaa.init aBaa.isol aBaa.medi aDal.fina aDal.isol aFaa.fina aFaa.init aFaa.isol aFaa.medi aHaa.fina aHaa.init aHaa.isol aHaa.medi aHeh.fina aHeh.init aHeh.isol aHeh.medi aKaf.fina aKaf.init aKaf.isol aKaf.medi aLam.fina aLam.init aLam.isol aLam.medi aMem.fina aMem.init aMem.isol aMem.medi aNon.fina aNon.isol aQaf.fina aQaf.isolaRaa.fina.alt2 aRaa.fina aRaa.isol aSad.fina aSad.init aSad.isol aSad.medi aSen.fina aSen.init aSen.isol aSen.medi aTaa.fina aTaa.init aTaa.isol aTaa.medi aWaw.fina aWaw.isol aYaa.fina aYaa.isolaLam.medi.LamMemFinaaBaa.init.BaaRaaIsolaRaa.fina.BaaRaaIsolaLam.medi.LamWawFinaaWaw.fina.LamWawFinaaLam.init.LamHaaInitaFaa.medi.FaaYaaFinaaYaa.fina.FaaYaaFinaaLam.init.LamLamHaaInitaLam.medi.LamLamHaaInitaHaa.medi.LamLamHaaInitaBaa.medi.BaaMemFinaaSad.init.AboveHaaaMem.medi.LamBaaMemInitaBaa.init.BaaDalaDal.fina.BaaDalaBaa.init.BaaMemHaaInitaMem.medi.BaaMemHaaInitaHaa.medi.BaaMemHaaInitaBaa.init.BaaBaaYaaaBaa.medi.BaaBaaYaaaYaa.fina.BaaBaaYaaaLam.medi.LamYaaFinaaYaa.fina.LamYaaFinaaKaf.init.KafBaaInitaBaa.medi.KafBaaInitaLam.init.LamAlfIsolaAlf.fina.LamAlfIsolaBaa.medi.BaaBaaInitaAyn.medi.AynYaaFinaaMem.init.MemRaaIsolaFaa.init.FaaHaaInitaHaa.medi.FaaHaaInitaHaa.init.HaaHaaInitaLam.medi.LamQafFinaaQaf.fina.LamQafFinaaSen.init.AboveHaaaMem.init.MemHaaInitaBaa.init.BaaNonIsolaNon.fina.BaaNonIsolaKaf.medi.KafMemFinaaBaa.init.BaaSenInitaSen.medi.BaaSenInitaBaa.medi.BaaRaaFinaaRaa.fina.BaaRaaFinaaKaf.medi.KafRaaFinaaRaa.fina.KafRaaFinaaLam.init.LamHehInitaHeh.medi.LamHehInitaMem.init.MemHaaMemInitaHaa.medi.MemHaaMemInitaBaa.init.BaaMemInitaSen.init.SenHaaInitaKaf.init.KafRaaIsolaRaa.fina.KafRaaIsolaAyn.init.AynHaaInitaKaf.medi.KafYaaFinaaYaa.fina.KafYaaFinaaLam.init.LamMemHaaInitaMem.medi.LamMemHaaInitaHaa.medi.LamMemHaaInitaLam.medi.LamAlfFinaaAlf.fina.LamAlfFinaaLam.medi.LamMemMediaMem.medi.LamMemMedilam-ar.init.Lellahlam-ar.medi.Lellahheh-ar.fina.LellahaBaa.medi.SenBaaMemInitaBaa.init.BaaBaaIsolaBaa.fina.BaaBaaIsolaBaa.init.BaaBaaMemInitaBaa.medi.BaaBaaMemInitaKaf.medi.KafBaaMediaBaa.medi.KafBaaMediaBaa.medi.BaaNonFinaaNon.fina.BaaNonFinaaHaa.init.HaaRaaIsolaRaa.fina.HaaRaaIsolaHeh.init.HehHaaInitaLam.init.LamRaaIsolaRaa.fina.LamRaaIsolaSad.init.SadHaaInitaHaa.medi.SadHaaInitaBaa.medi.BaaYaaFinaaYaa.fina.BaaYaaFinaaBaa.init.BaaSenAltInitaSen.medi.BaaSenAltInitaRaa.fina.PostToothaYaa.fina.PostToothaBaa.init.AboveHaaaBaa.init.BaaHaaInitaBaa.init.BaaHaaMemInitaHaa.medi.BaaHaaMemInitaHaa.fina.AboveHaaIsolaLam.init.LamHaaHaaInitaHaa.medi.1LamHaaHaaInitaHaa.medi.2LamHaaHaaInitaAyn.init.FinjaniaHaa.init.FinjaniaHaa.medi.FinjaniaSen.init.PreYaaaSen.medi.PreYaaaSad.init.PreYaaaSad.medi.PreYaaaBaa.init.High dotabove-artwodotshorizontalabove-arthreedotsupabove-ar miniKeheh-araBaa.medi.Hightwodotsverticalabove-araSen.fina.BaaSenaBaa.init.WideaHaa.medi.HaaHaaInitaHaa.medi.AynHaaInitaHaa.init.AboveHaaaAyn.init.AboveHaaaHaa.fina.AboveHaaIsol2aMem.init.AboveHaaaKaf.init.AboveHaawasla-arfathatan-ar.smallfatha-ar.smallopendammatan-ar.smalldamma-ar.smallsukun-ar.small2kasra-ar.small2dot.1dot.2fourFarsi-ar.urdsixFarsi-ar.urdsevenFarsi-ar.urdaKaf.init.KafLamaKaf.fina.KafKafFinaaLam.medi.KafLamaLam.medi.KafLamMemMediaKaf.medi.KafLamaLam.medi.KafLamHehIsolaLam.medi.KafLamYaaaLam.medi.KafLamAlfaLam.fina.KafLamaAlf.fina.KafAlfaKaf.init.KafMemAlfaKaf.medi.KafMemAlfaMem.medi.KafMemAlfaLam.medi.KafMemLamaLam.fina.KafMemLamaAlf.fina.KafMemAlfaKaf.init.KafHehaKaf.medi.KafHehaHeh.fina.KafHehaDal.fina.KafDalaLam.init.LamHehaLam.medi.LamHehaHeh.fina.LamHehaDal.fina.LamDalaKaf.medi.KafMemMediaKaf.init.KafMemInitaAyn.init.AynMemInitaFaa.init.FaaMemInitaHaa.init.HaaMemInitaHeh.init.HehMemInitaMem.medi.KafMemMediaSen.init.SenMemInitaSad.init.SadMemInitaMem.init.MemMemInitaKaf.init.KafYaaIsolaBaa.init.BaaYaaIsolaHaa.init.HaaYaaIsolaMem.init.MemYaaIsolaFaa.init.FaaYaaIsolaAyn.init.AynYaaIsolaLam.init.LamYaaIsolaHeh.init.HehYaaIsolaYaa.fina.KafYaaIsolaKaf.init.KafMemIsolaLam.init.LamMemIsolaBaa.init.BaaMemIsolaMem.fina.KafMemIsolaMem.medi.MemAlfFinaaBaa.medi.BaaMemAlfFinaaMem.medi.BaaMemAlfFinaaAlf.fina.MemAlfFinaaBaa.init.BaaHehInitaBaa.medi.BaaHehMediaHeh.medi.BaaHehMediaLam.medi.KafLamMemFinaaLam.init.LamLamInitaLam.medi.LamLamInitaLam.medi.LamLamAlfIsolaKaf.fina.LamKafIsolaLam.fina.LamLamIsollam-ar.medi.FaLellahaLam.medi.LamLamMediaLam.medi.LamLamAlefFinaaLam.medi.LamLamMedi2aKaf.fina.LamKafFinaaLam.fina.LamLamFinaaLam.medi.LamLamMemInitaLam.medi.LamLamHehIsolaLam.medi.LamLamYaaIsolaLam.medi.LamLamMemMediaLam.medi.LamLamHehFinaaLam.medi.LamLamYaaFinaalefHamzabelow-ar.fina alef-ar.finaalefHamzaabove-ar.finaalefMadda-ar.finaalefWasla-ar.fina ghain-ar.fina ain-ar.fina ghain-ar.init ain-ar.init ghain-ar.medi ain-ar.medi teh-ar.fina theh-ar.finabehDotless-ar.fina beh-ar.finatteheh-ar.finayehHamzaabove-ar.initbehDotless-ar.init yeh-ar.init beh-ar.inittteheh-ar.init noon-ar.init teh-ar.init theh-ar.initalefMaksura-ar.initnoonghunna-ar.inityehFarsi-ar.inityehHamzaabove-ar.medibehDotless-ar.medi yeh-ar.medi beh-ar.meditteheh-ar.medi noon-ar.medi teh-ar.medi theh-ar.medialefMaksura-ar.medinoonghunna-ar.mediyehFarsi-ar.medi thal-ar.fina dal-ar.fina feh-ar.finafehDotless-ar.finaqafDotless-ar.init qaf-ar.init feh-ar.initfehDotless-ar.initqafDotless-ar.medi qaf-ar.medi feh-ar.medifehDotless-ar.medi khah-ar.fina hah-ar.fina jeem-ar.fina khah-ar.init hah-ar.init jeem-ar.init khah-ar.medi hah-ar.medi jeem-ar.medi heh-ar.finatehMarbuta-ar.fina heh-ar.init heh-ar.medi kaf-ar.fina kaf-ar.init kaf-ar.medi lam-ar.fina lam-ar.init lam-ar.medi meem-ar.fina meem-ar.init meem-ar.medi noon-ar.finanoonghunna-ar.fina qaf-ar.finaqafDotless-ar.fina zain-ar.fina reh-ar.fina dad-ar.fina sad-ar.fina dad-ar.init sad-ar.init dad-ar.medi sad-ar.medi seen-ar.fina sheen-ar.fina seen-ar.init sheen-ar.init seen-ar.medi sheen-ar.medi zah-ar.fina tah-ar.fina zah-ar.init tah-ar.init zah-ar.medi tah-ar.mediwawHamzaabove-ar.fina waw-ar.finaalefMaksura-ar.finayehFarsi-ar.finayehHamzaabove-ar.fina yeh-ar.finalam-ar.medi.LamMemFinameem-ar.fina.LamMemFina yehHamzaabove-ar.init.BaaRaaIsolbehDotless-ar.init.BaaRaaIsolyeh-ar.init.BaaRaaIsolbeh-ar.init.BaaRaaIsoltteheh-ar.init.BaaRaaIsolnoon-ar.init.BaaRaaIsolteh-ar.init.BaaRaaIsoltheh-ar.init.BaaRaaIsolalefMaksura-ar.init.BaaRaaIsolnoonghunna-ar.init.BaaRaaIsolyehFarsi-ar.init.BaaRaaIsolzain-ar.fina.BaaRaaIsolreh-ar.fina.BaaRaaIsollam-ar.medi.LamWawFina wawHamzaabove-ar.fina.LamWawFinawaw-ar.fina.LamWawFinalam-ar.init.LamHaaInitqafDotless-ar.medi.FaaYaaFinaqaf-ar.medi.FaaYaaFinafeh-ar.medi.FaaYaaFinafehDotless-ar.medi.FaaYaaFinaalefMaksura-ar.fina.FaaYaaFinayehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFinayeh-ar.fina.FaaYaaFinalam-ar.init.LamLamHaaInitlam-ar.medi.LamLamHaaInitkhah-ar.medi.LamLamHaaInithah-ar.medi.LamLamHaaInitjeem-ar.medi.LamLamHaaInit yehHamzaabove-ar.medi.BaaMemFinabehDotless-ar.medi.BaaMemFinayeh-ar.medi.BaaMemFinabeh-ar.medi.BaaMemFinatteheh-ar.medi.BaaMemFinanoon-ar.medi.BaaMemFinateh-ar.medi.BaaMemFinatheh-ar.medi.BaaMemFinaalefMaksura-ar.medi.BaaMemFinanoonghunna-ar.medi.BaaMemFinayehFarsi-ar.medi.BaaMemFinameem-ar.fina.BaaMemFinadad-ar.init.AboveHaasad-ar.init.AboveHaayehHamzaabove-ar.init.BaaDalbehDotless-ar.init.BaaDalyeh-ar.init.BaaDalbeh-ar.init.BaaDaltteheh-ar.init.BaaDalnoon-ar.init.BaaDalteh-ar.init.BaaDaltheh-ar.init.BaaDalalefMaksura-ar.init.BaaDalnoonghunna-ar.init.BaaDalyehFarsi-ar.init.BaaDalthal-ar.fina.BaaDaldal-ar.fina.BaaDal#yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInityeh-ar.init.BaaMemHaaInitbeh-ar.init.BaaMemHaaInittteheh-ar.init.BaaMemHaaInitnoon-ar.init.BaaMemHaaInitteh-ar.init.BaaMemHaaInittheh-ar.init.BaaMemHaaInit!alefMaksura-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInityehFarsi-ar.init.BaaMemHaaInitmeem-ar.medi.BaaMemHaaInitkhah-ar.medi.BaaMemHaaInithah-ar.medi.BaaMemHaaInitjeem-ar.medi.BaaMemHaaInityehHamzaabove-ar.init.BaaBaaYaabehDotless-ar.init.BaaBaaYaayeh-ar.init.BaaBaaYaabeh-ar.init.BaaBaaYaatteheh-ar.init.BaaBaaYaanoon-ar.init.BaaBaaYaateh-ar.init.BaaBaaYaatheh-ar.init.BaaBaaYaaalefMaksura-ar.init.BaaBaaYaanoonghunna-ar.init.BaaBaaYaayehFarsi-ar.init.BaaBaaYaayehHamzaabove-ar.medi.BaaBaaYaabehDotless-ar.medi.BaaBaaYaayeh-ar.medi.BaaBaaYaabeh-ar.medi.BaaBaaYaatteheh-ar.medi.BaaBaaYaanoon-ar.medi.BaaBaaYaateh-ar.medi.BaaBaaYaatheh-ar.medi.BaaBaaYaaalefMaksura-ar.medi.BaaBaaYaanoonghunna-ar.medi.BaaBaaYaayehFarsi-ar.medi.BaaBaaYaaalefMaksura-ar.fina.BaaBaaYaayehFarsi-ar.fina.BaaBaaYaayehHamzaabove-ar.fina.BaaBaaYaayeh-ar.fina.BaaBaaYaalam-ar.medi.LamYaaFinaalefMaksura-ar.fina.LamYaaFinayehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFinayeh-ar.fina.LamYaaFinakaf-ar.init.KafBaaInit yehHamzaabove-ar.medi.KafBaaInitbehDotless-ar.medi.KafBaaInityeh-ar.medi.KafBaaInitbeh-ar.medi.KafBaaInittteheh-ar.medi.KafBaaInitnoon-ar.medi.KafBaaInitteh-ar.medi.KafBaaInittheh-ar.medi.KafBaaInitalefMaksura-ar.medi.KafBaaInitnoonghunna-ar.medi.KafBaaInityehFarsi-ar.medi.KafBaaInitlam-ar.init.LamAlfIsol!alefHamzabelow-ar.fina.LamAlfIsolalef-ar.fina.LamAlfIsol!alefHamzaabove-ar.fina.LamAlfIsolalefMadda-ar.fina.LamAlfIsolalefWasla-ar.fina.LamAlfIsol yehHamzaabove-ar.medi.BaaBaaInitbehDotless-ar.medi.BaaBaaInityeh-ar.medi.BaaBaaInitbeh-ar.medi.BaaBaaInittteheh-ar.medi.BaaBaaInitnoon-ar.medi.BaaBaaInitteh-ar.medi.BaaBaaInittheh-ar.medi.BaaBaaInitalefMaksura-ar.medi.BaaBaaInitnoonghunna-ar.medi.BaaBaaInityehFarsi-ar.medi.BaaBaaInitghain-ar.medi.AynYaaFinaain-ar.medi.AynYaaFinameem-ar.init.MemRaaIsolzain-ar.fina.MemRaaIsolreh-ar.fina.MemRaaIsolqafDotless-ar.init.FaaHaaInitqaf-ar.init.FaaHaaInitfeh-ar.init.FaaHaaInitfehDotless-ar.init.FaaHaaInitkhah-ar.medi.FaaHaaInithah-ar.medi.FaaHaaInitjeem-ar.medi.FaaHaaInitkhah-ar.init.HaaHaaInithah-ar.init.HaaHaaInitjeem-ar.init.HaaHaaInitlam-ar.medi.LamQafFinaqaf-ar.fina.LamQafFinaqafDotless-ar.fina.LamQafFinaseen-ar.init.AboveHaasheen-ar.init.AboveHaameem-ar.init.MemHaaInit yehHamzaabove-ar.init.BaaNonIsolbehDotless-ar.init.BaaNonIsolyeh-ar.init.BaaNonIsolbeh-ar.init.BaaNonIsoltteheh-ar.init.BaaNonIsolnoon-ar.init.BaaNonIsolteh-ar.init.BaaNonIsoltheh-ar.init.BaaNonIsolalefMaksura-ar.init.BaaNonIsolnoonghunna-ar.init.BaaNonIsolyehFarsi-ar.init.BaaNonIsolnoon-ar.fina.BaaNonIsolnoonghunna-ar.fina.BaaNonIsolkaf-ar.medi.KafMemFinameem-ar.fina.KafMemFina yehHamzaabove-ar.init.BaaSenInitbehDotless-ar.init.BaaSenInityeh-ar.init.BaaSenInitbeh-ar.init.BaaSenInittteheh-ar.init.BaaSenInitnoon-ar.init.BaaSenInitteh-ar.init.BaaSenInittheh-ar.init.BaaSenInitalefMaksura-ar.init.BaaSenInitnoonghunna-ar.init.BaaSenInityehFarsi-ar.init.BaaSenInitseen-ar.medi.BaaSenInitsheen-ar.medi.BaaSenInit yehHamzaabove-ar.medi.BaaRaaFinabehDotless-ar.medi.BaaRaaFinayeh-ar.medi.BaaRaaFinabeh-ar.medi.BaaRaaFinatteheh-ar.medi.BaaRaaFinanoon-ar.medi.BaaRaaFinateh-ar.medi.BaaRaaFinatheh-ar.medi.BaaRaaFinaalefMaksura-ar.medi.BaaRaaFinae-ar.medi.BaaRaaFinanoonghunna-ar.medi.BaaRaaFinayehFarsi-ar.medi.BaaRaaFinazain-ar.fina.BaaRaaFinareh-ar.fina.BaaRaaFinakaf-ar.medi.KafRaaFinazain-ar.fina.KafRaaFinareh-ar.fina.KafRaaFinalam-ar.init.LamHehInitheh-ar.medi.LamHehInitmeem-ar.init.MemHaaMemInitkhah-ar.medi.MemHaaMemInithah-ar.medi.MemHaaMemInitjeem-ar.medi.MemHaaMemInit yehHamzaabove-ar.init.BaaMemInitbehDotless-ar.init.BaaMemInityeh-ar.init.BaaMemInitbeh-ar.init.BaaMemInittteheh-ar.init.BaaMemInitnoon-ar.init.BaaMemInitteh-ar.init.BaaMemInittheh-ar.init.BaaMemInitalefMaksura-ar.init.BaaMemInitnoonghunna-ar.init.BaaMemInityehFarsi-ar.init.BaaMemInitmeem-ar.medi.BaaMemInitseen-ar.init.SenHaaInitsheen-ar.init.SenHaaInitkaf-ar.init.KafRaaIsolzain-ar.fina.KafRaaIsolreh-ar.fina.KafRaaIsolghain-ar.init.AynHaaInitain-ar.init.AynHaaInitkaf-ar.medi.KafYaaFinaalefMaksura-ar.fina.KafYaaFinayehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFinayeh-ar.fina.KafYaaFinalam-ar.init.LamMemHaaInitmeem-ar.medi.LamMemHaaInitkhah-ar.medi.LamMemHaaInithah-ar.medi.LamMemHaaInitjeem-ar.medi.LamMemHaaInitlam-ar.medi.LamAlfFina!alefHamzabelow-ar.fina.LamAlfFinaalef-ar.fina.LamAlfFina!alefHamzaabove-ar.fina.LamAlfFinaalefMadda-ar.fina.LamAlfFinaalefWasla-ar.fina.LamAlfFinalam-ar.medi.LamMemMedimeem-ar.medi.LamMemMedi#yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInityeh-ar.medi.SenBaaMemInitbeh-ar.medi.SenBaaMemInittteheh-ar.medi.SenBaaMemInitnoon-ar.medi.SenBaaMemInitteh-ar.medi.SenBaaMemInittheh-ar.medi.SenBaaMemInit!alefMaksura-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInityehFarsi-ar.medi.SenBaaMemInitmeem-ar.medi.SenBaaMemInit yehHamzaabove-ar.init.BaaBaaIsolbehDotless-ar.init.BaaBaaIsolyeh-ar.init.BaaBaaIsolbeh-ar.init.BaaBaaIsoltteheh-ar.init.BaaBaaIsolnoon-ar.init.BaaBaaIsolteh-ar.init.BaaBaaIsoltheh-ar.init.BaaBaaIsolalefMaksura-ar.init.BaaBaaIsolnoonghunna-ar.init.BaaBaaIsolyehFarsi-ar.init.BaaBaaIsolteh-ar.fina.BaaBaaIsoltheh-ar.fina.BaaBaaIsolbehDotless-ar.fina.BaaBaaIsolbeh-ar.fina.BaaBaaIsoltteheh-ar.fina.BaaBaaIsol#yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInityeh-ar.init.BaaBaaMemInitbeh-ar.init.BaaBaaMemInittteheh-ar.init.BaaBaaMemInitnoon-ar.init.BaaBaaMemInitteh-ar.init.BaaBaaMemInittheh-ar.init.BaaBaaMemInit!alefMaksura-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInityehFarsi-ar.init.BaaBaaMemInit#yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInityeh-ar.medi.BaaBaaMemInitbeh-ar.medi.BaaBaaMemInittteheh-ar.medi.BaaBaaMemInitnoon-ar.medi.BaaBaaMemInitteh-ar.medi.BaaBaaMemInittheh-ar.medi.BaaBaaMemInit!alefMaksura-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInityehFarsi-ar.medi.BaaBaaMemInitmeem-ar.medi.BaaBaaMemInitkaf-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedibehDotless-ar.medi.KafBaaMediyeh-ar.medi.KafBaaMedibeh-ar.medi.KafBaaMeditteheh-ar.medi.KafBaaMedinoon-ar.medi.KafBaaMediteh-ar.medi.KafBaaMeditheh-ar.medi.KafBaaMedialefMaksura-ar.medi.KafBaaMedinoonghunna-ar.medi.KafBaaMediyehFarsi-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.BaaNonFinabehDotless-ar.medi.BaaNonFinayeh-ar.medi.BaaNonFinabeh-ar.medi.BaaNonFinatteheh-ar.medi.BaaNonFinanoon-ar.medi.BaaNonFinateh-ar.medi.BaaNonFinatheh-ar.medi.BaaNonFinaalefMaksura-ar.medi.BaaNonFinae-ar.medi.BaaNonFinanoonghunna-ar.medi.BaaNonFinayehFarsi-ar.medi.BaaNonFinanoon-ar.fina.BaaNonFinanoonghunna-ar.fina.BaaNonFinakhah-ar.init.HaaRaaIsolhah-ar.init.HaaRaaIsoljeem-ar.init.HaaRaaIsolzain-ar.fina.HaaRaaIsolreh-ar.fina.HaaRaaIsolheh-ar.init.HehHaaInitlam-ar.init.LamRaaIsolzain-ar.fina.LamRaaIsolreh-ar.fina.LamRaaIsoldad-ar.init.SadHaaInitsad-ar.init.SadHaaInitkhah-ar.medi.SadHaaInithah-ar.medi.SadHaaInitjeem-ar.medi.SadHaaInit yehHamzaabove-ar.medi.BaaYaaFinabehDotless-ar.medi.BaaYaaFinayeh-ar.medi.BaaYaaFinabeh-ar.medi.BaaYaaFinatteheh-ar.medi.BaaYaaFinanoon-ar.medi.BaaYaaFinateh-ar.medi.BaaYaaFinatheh-ar.medi.BaaYaaFinaalefMaksura-ar.medi.BaaYaaFinanoonghunna-ar.medi.BaaYaaFinayehFarsi-ar.medi.BaaYaaFinaalefMaksura-ar.fina.BaaYaaFinayehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFinayeh-ar.fina.BaaYaaFina#yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInityeh-ar.init.BaaSenAltInitbeh-ar.init.BaaSenAltInittteheh-ar.init.BaaSenAltInitnoon-ar.init.BaaSenAltInitteh-ar.init.BaaSenAltInittheh-ar.init.BaaSenAltInit!alefMaksura-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInityehFarsi-ar.init.BaaSenAltInitseen-ar.medi.BaaSenAltInitsheen-ar.medi.BaaSenAltInitzain-ar.fina.PostToothreh-ar.fina.PostToothalefMaksura-ar.fina.PostToothyehFarsi-ar.fina.PostToothyehHamzaabove-ar.fina.PostToothyeh-ar.fina.PostToothyehHamzaabove-ar.init.AboveHaabehDotless-ar.init.AboveHaayeh-ar.init.AboveHaabeh-ar.init.AboveHaatteheh-ar.init.AboveHaanoon-ar.init.AboveHaateh-ar.init.AboveHaatheh-ar.init.AboveHaaalefMaksura-ar.init.AboveHaanoonghunna-ar.init.AboveHaayehFarsi-ar.init.AboveHaa yehHamzaabove-ar.init.BaaHaaInitbehDotless-ar.init.BaaHaaInityeh-ar.init.BaaHaaInitbeh-ar.init.BaaHaaInittteheh-ar.init.BaaHaaInitnoon-ar.init.BaaHaaInitteh-ar.init.BaaHaaInittheh-ar.init.BaaHaaInitalefMaksura-ar.init.BaaHaaInitnoonghunna-ar.init.BaaHaaInityehFarsi-ar.init.BaaHaaInit#yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInityeh-ar.init.BaaHaaMemInitbeh-ar.init.BaaHaaMemInittteheh-ar.init.BaaHaaMemInitnoon-ar.init.BaaHaaMemInitteh-ar.init.BaaHaaMemInittheh-ar.init.BaaHaaMemInit!alefMaksura-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInityehFarsi-ar.init.BaaHaaMemInitkhah-ar.medi.BaaHaaMemInithah-ar.medi.BaaHaaMemInitjeem-ar.medi.BaaHaaMemInitkhah-ar.fina.AboveHaaIsolhah-ar.fina.AboveHaaIsoljeem-ar.fina.AboveHaaIsollam-ar.init.LamHaaHaaInitghain-ar.init.Finjaniain-ar.init.Finjanikhah-ar.init.Finjanihah-ar.init.Finjanijeem-ar.init.Finjanikhah-ar.medi.Finjanihah-ar.medi.Finjanijeem-ar.medi.Finjaniseen-ar.init.PreYaasheen-ar.init.PreYaaseen-ar.medi.PreYaasheen-ar.medi.PreYaadad-ar.init.PreYaasad-ar.init.PreYaadad-ar.medi.PreYaasad-ar.medi.PreYaayehHamzaabove-ar.init.HighbehDotless-ar.init.Highyeh-ar.init.Highbeh-ar.init.Hightteheh-ar.init.Highnoon-ar.init.Highteh-ar.init.Hightheh-ar.init.HighalefMaksura-ar.init.Highnoonghunna-ar.init.HighyehFarsi-ar.init.HighyehHamzaabove-ar.medi.HighbehDotless-ar.medi.Highyeh-ar.medi.Highbeh-ar.medi.Hightteheh-ar.medi.Highnoon-ar.medi.Highteh-ar.medi.Hightheh-ar.medi.HighalefMaksura-ar.medi.Highnoonghunna-ar.medi.HighyehFarsi-ar.medi.Highseen-ar.fina.BaaSensheen-ar.fina.BaaSenmeem-ar.fina.PostToothyehHamzaabove-ar.init.WidebehDotless-ar.init.Wideyeh-ar.init.Widebeh-ar.init.Widetteheh-ar.init.Widenoon-ar.init.Wideteh-ar.init.Widetheh-ar.init.WidealefMaksura-ar.init.Widenoonghunna-ar.init.WideyehFarsi-ar.init.Widekhah-ar.medi.HaaHaaInithah-ar.medi.HaaHaaInitjeem-ar.medi.HaaHaaInitkhah-ar.medi.AynHaaInithah-ar.medi.AynHaaInitjeem-ar.medi.AynHaaInitheh-ar.init.AboveHaakhah-ar.init.AboveHaahah-ar.init.AboveHaajeem-ar.init.AboveHaaghain-ar.init.AboveHaaain-ar.init.AboveHaakhah-ar.fina.AboveHaaIsol2hah-ar.fina.AboveHaaIsol2jeem-ar.fina.AboveHaaIsol2meem-ar.init.AboveHaakaf-ar.init.AboveHaakaf-ar.init.KafLamkaf-ar.fina.KafKafFinalam-ar.medi.KafLamlam-ar.medi.KafLamMemMedikaf-ar.medi.KafLamlam-ar.medi.KafLamHehIsollam-ar.medi.KafLamYaalam-ar.medi.KafLamAlflam-ar.fina.KafLamalefHamzabelow-ar.fina.KafAlfalef-ar.fina.KafAlfalefHamzaabove-ar.fina.KafAlfalefMadda-ar.fina.KafAlfalefWasla-ar.fina.KafAlfkaf-ar.init.KafMemAlfkaf-ar.medi.KafMemAlfmeem-ar.medi.KafMemAlflam-ar.medi.KafMemLamlam-ar.fina.KafMemLam alefHamzabelow-ar.fina.KafMemAlfalef-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlfalefMadda-ar.fina.KafMemAlfalefWasla-ar.fina.KafMemAlfkaf-ar.init.KafHehkaf-ar.medi.KafHehheh-ar.fina.KafHehtehMarbuta-ar.fina.KafHehthal-ar.fina.KafDaldal-ar.fina.KafDallam-ar.init.LamHehlam-ar.medi.LamHehheh-ar.fina.LamHehtehMarbuta-ar.fina.LamHehthal-ar.fina.LamDaldal-ar.fina.LamDalkaf-ar.medi.KafMemMedikaf-ar.init.KafMemInitghain-ar.init.AynMemInitain-ar.init.AynMemInitqafDotless-ar.init.FaaMemInitqaf-ar.init.FaaMemInitfeh-ar.init.FaaMemInitfehDotless-ar.init.FaaMemInitkhah-ar.init.HaaMemInithah-ar.init.HaaMemInitjeem-ar.init.HaaMemInitheh-ar.init.HehMemInitmeem-ar.medi.KafMemMediseen-ar.init.SenMemInitsheen-ar.init.SenMemInitdad-ar.init.SadMemInitsad-ar.init.SadMemInitmeem-ar.init.MemMemInitmeem-ar.medi.SenMemInitkaf-ar.init.KafYaaIsol yehHamzaabove-ar.init.BaaYaaIsolbehDotless-ar.init.BaaYaaIsolyeh-ar.init.BaaYaaIsolbeh-ar.init.BaaYaaIsoltteheh-ar.init.BaaYaaIsolnoon-ar.init.BaaYaaIsolteh-ar.init.BaaYaaIsoltheh-ar.init.BaaYaaIsolalefMaksura-ar.init.BaaYaaIsolnoonghunna-ar.init.BaaYaaIsolyehFarsi-ar.init.BaaYaaIsolkhah-ar.init.HaaYaaIsolhah-ar.init.HaaYaaIsoljeem-ar.init.HaaYaaIsolmeem-ar.init.MemYaaIsolqafDotless-ar.init.FaaYaaIsolqaf-ar.init.FaaYaaIsolfeh-ar.init.FaaYaaIsolfehDotless-ar.init.FaaYaaIsolghain-ar.init.AynYaaIsolain-ar.init.AynYaaIsollam-ar.init.LamYaaIsolheh-ar.init.HehYaaIsolalefMaksura-ar.fina.KafYaaIsolyehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsolyeh-ar.fina.KafYaaIsolkaf-ar.init.KafMemIsollam-ar.init.LamMemIsol yehHamzaabove-ar.init.BaaMemIsolbehDotless-ar.init.BaaMemIsolyeh-ar.init.BaaMemIsolbeh-ar.init.BaaMemIsoltteheh-ar.init.BaaMemIsolnoon-ar.init.BaaMemIsolteh-ar.init.BaaMemIsoltheh-ar.init.BaaMemIsolalefMaksura-ar.init.BaaMemIsolnoonghunna-ar.init.BaaMemIsolyehFarsi-ar.init.BaaMemIsolmeem-ar.fina.KafMemIsolmeem-ar.medi.MemAlfFina#yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFinayeh-ar.medi.BaaMemAlfFinabeh-ar.medi.BaaMemAlfFinatteheh-ar.medi.BaaMemAlfFinanoon-ar.medi.BaaMemAlfFinateh-ar.medi.BaaMemAlfFinatheh-ar.medi.BaaMemAlfFina!alefMaksura-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFinayehFarsi-ar.medi.BaaMemAlfFinameem-ar.medi.BaaMemAlfFinameem-ar.medi.AlfPostTooth!alefHamzabelow-ar.fina.MemAlfFinaalef-ar.fina.MemAlfFina!alefHamzaabove-ar.fina.MemAlfFinaalefMadda-ar.fina.MemAlfFinaalefWasla-ar.fina.MemAlfFina yehHamzaabove-ar.init.BaaHehInitbehDotless-ar.init.BaaHehInityeh-ar.init.BaaHehInitbeh-ar.init.BaaHehInittteheh-ar.init.BaaHehInitnoon-ar.init.BaaHehInitteh-ar.init.BaaHehInittheh-ar.init.BaaHehInitalefMaksura-ar.init.BaaHehInitnoonghunna-ar.init.BaaHehInityehFarsi-ar.init.BaaHehInit yehHamzaabove-ar.medi.BaaHehMedibehDotless-ar.medi.BaaHehMediyeh-ar.medi.BaaHehMedibeh-ar.medi.BaaHehMeditteheh-ar.medi.BaaHehMedinoon-ar.medi.BaaHehMediteh-ar.medi.BaaHehMeditheh-ar.medi.BaaHehMedialefMaksura-ar.medi.BaaHehMedinoonghunna-ar.medi.BaaHehMediyehFarsi-ar.medi.BaaHehMediheh-ar.medi.BaaHehMediheh-ar.medi.PostToothlam-ar.medi.KafLamMemFinalam-ar.init.LamLamInitlam-ar.medi.LamLamInitlam-ar.medi.LamLamAlfIsolkaf-ar.fina.LamKafIsollam-ar.fina.LamLamIsollam-ar.medi.LamLamMedilam-ar.medi.LamLamAlefFinalam-ar.medi.LamLamMedi2kaf-ar.fina.LamKafFinalam-ar.fina.LamLamFinalam-ar.medi.LamLamMemInitlam-ar.medi.LamLamHehIsollam-ar.medi.LamLamYaaIsollam-ar.medi.LamLamMemMedilam-ar.medi.LamLamHehFinalam-ar.medi.LamLamYaaFinakhah-ar.medi.1LamHaaHaaInithah-ar.medi.1LamHaaHaaInitjeem-ar.medi.1LamHaaHaaInitkhah-ar.medi.2LamHaaHaaInithah-ar.medi.2LamHaaHaaInitjeem-ar.medi.2LamHaaHaaInitalefHamzabelow-ar.LowHamzabeh-ar.init.LDyehFarsi-ar.init.LDyeh-ar.init.LDbeh-ar.init.BaaRaaIsolLDyehFarsi-ar.init.BaaRaaIsolLDyeh-ar.init.BaaRaaIsolLDbeh-ar.init.BaaDalLDyehFarsi-ar.init.BaaDalLDyeh-ar.init.BaaDalLDbeh-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLDyeh-ar.init.BaaMemHaaInitLDbeh-ar.init.BaaBaaYaaLDyehFarsi-ar.init.BaaBaaYaaLDyeh-ar.init.BaaBaaYaaLDbeh-ar.init.BaaNonIsolLDyehFarsi-ar.init.BaaNonIsolLDyeh-ar.init.BaaNonIsolLDbeh-ar.init.BaaSenInitLDyehFarsi-ar.init.BaaSenInitLDyeh-ar.init.BaaSenInitLDbeh-ar.init.BaaMemInitLDyehFarsi-ar.init.BaaMemInitLDyeh-ar.init.BaaMemInitLDbeh-ar.init.BaaBaaIsolLDyehFarsi-ar.init.BaaBaaIsolLDyeh-ar.init.BaaBaaIsolLDbeh-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLDyeh-ar.init.BaaBaaMemInitLDbeh-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLDyeh-ar.init.BaaSenAltInitLDbeh-ar.init.BaaHaaInitLDyehFarsi-ar.init.BaaHaaInitLDyeh-ar.init.BaaHaaInitLDbeh-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLDyeh-ar.init.BaaHaaMemInitLDbeh-ar.init.HighLDyehFarsi-ar.init.HighLDyeh-ar.init.HighLDbeh-ar.init.WideLDyehFarsi-ar.init.WideLDyeh-ar.init.WideLDbeh-ar.init.BaaYaaIsolLDyehFarsi-ar.init.BaaYaaIsolLDyeh-ar.init.BaaYaaIsolLDbeh-ar.init.BaaMemIsolLDyehFarsi-ar.init.BaaMemIsolLDyeh-ar.init.BaaMemIsolLDbeh-ar.init.BaaHehInitLDyehFarsi-ar.init.BaaHehInitLDyeh-ar.init.BaaHehInitLDaMem.init.MemHehInitmeem-ar.init.MemHehInitalefabove-ar.isolalefabove-ar.medi hamza-ar.medihamza-ar.floatkashida-ar.long1 zero-ar.small one-ar.small two-ar.smallthree-ar.small four-ar.small five-ar.small six-ar.smallseven-ar.smalleight-ar.small nine-ar.smallzeroFarsi-ar.smalloneFarsi-ar.smalltwoFarsi-ar.smallthreeFarsi-ar.smallfourFarsi-ar.smallfiveFarsi-ar.smallsixFarsi-ar.smallsevenFarsi-ar.smalleightFarsi-ar.smallnineFarsi-ar.smallfourFarsi-ar.urd.smallsixFarsi-ar.urd.smallsevenFarsi-ar.urd.smallopenfathatan-ar.smallfatha-ar.small2dammatan-ar.smallhighwaw-ar.mediyehabove-ar.medimeem-ar.medi.KafMemMediTatweelmeem-ar.fina.LamMemFinaExtendedmeem-ar.fina.KafMemFinaExtendedaMem.fina.Extendedmeem-ar.fina.KafMemIsolExtended kashida-ar.1alef-ar.fina.Tatweel kashida-ar.2 kashida-ar.3 kashida-ar.4seen-ar.init.SenBaaMemInitsheen-ar.init.SenBaaMemInitdad-ar.init.SenBaaMemInitsad-ar.init.SenBaaMemInitalef-ar.fina.WidewawSmall-ar.lowaHeh.medi.HehYaaFinaheh-ar.medi.HehYaaFinaheh-ar.medi.PostToothHehYaa hamza.abovealefHamzaabove-ar.fina.WidealefWasla-ar.fina.WideaBaa.init.BaaBaaHehyehHamzaabove-ar.init.BaaBaaHehbehDotless-ar.init.BaaBaaHehyeh-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehtteheh-ar.init.BaaBaaHehnoon-ar.init.BaaBaaHehteh-ar.init.BaaBaaHehtheh-ar.init.BaaBaaHehalefMaksura-ar.init.BaaBaaHehnoonghunna-ar.init.BaaBaaHehyehFarsi-ar.init.BaaBaaHehbeh-ar.init.BaaBaaHehLDyehFarsi-ar.init.BaaBaaHehLDyeh-ar.init.BaaBaaHehLD kashida-ar.05dammainverted-ar.urddammainverted-ar.smallkasra-ar.smallkasratan-ar.small zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small kashida-ar.5 kashida-ar.6 kashida-ar.7aKaf.init.PreHehaKaf.medi.PreHehkaf-ar.init.PreHehkaf-ar.medi.PreHeh_FDFD _arrowheaduni0237 gravecombuni0305uni0307uni030Auni0325Euro _arrowhead2_xaAlf.fina.KafAlf.l0aAlf.fina.KafAlf.l1aAlf.fina.KafAlf.l2aAlf.fina.KafMemAlf.l0aAlf.fina.KafMemAlf.l1aAlf.fina.KafMemAlf.l2aAlf.fina.MemAlfFina.l0aAlf.fina.MemAlfFina.l1aAlf.fina.MemAlfFina.l2 aAlf.fina.l0 aAlf.fina.l1 aAlf.fina.l2 aAlf.isol.l0 aAlf.isol.l1 aAlf.isol.l2 aAlf.isol.l3aHaa.init.HaaMemInit.l0aLam.init.LamRaaIsol.l0aLam.init.LamRaaIsol.l1aRaa.fina.BaaRaaFina.l0aRaa.fina.BaaRaaIsol.l0aRaa.fina.HaaRaaIsol.l0aRaa.fina.KafRaaFina.l0aRaa.fina.KafRaaIsol.l0aRaa.fina.LamRaaIsol.l0aRaa.fina.LamRaaIsol.l1aRaa.fina.LamRaaIsol.l2aRaa.fina.PostTooth.l0aRaa.fina.alt2.l0 aRaa.fina.l0 aSad.init.l0 aSen.init.l0aWaw.fina.LamWawFina.l0 aWaw.fina.l0 aWaw.isol.l0alef-ar.fina.Wide.l0alef-ar.fina.Wide.l1alefabove-ar.l8alefabove-ar.l9damma-ar.small.l0damma-ar.small.l1dotabove-ar.l100dotabove-ar.l103dotabove-ar.l104dotabove-ar.l105dotabove-ar.l106dotabove-ar.l107dotabove-ar.l108dotabove-ar.l111dotabove-ar.l117dotabove-ar.l118dotabove-ar.l120dotabove-ar.l121dotabove-ar.l122dotabove-ar.l123dotabove-ar.l127dotabove-ar.l133dotabove-ar.l135dotabove-ar.l137dotabove-ar.l138dotabove-ar.l140dotabove-ar.l142dotabove-ar.l143dotabove-ar.l146dotabove-ar.l147dotabove-ar.l150dotabove-ar.l157dotabove-ar.l158dotabove-ar.l163dotabove-ar.l164dotabove-ar.l166dotabove-ar.l167dotabove-ar.l168dotabove-ar.l169dotabove-ar.l170dotabove-ar.l172dotabove-ar.l173dotabove-ar.l174dotabove-ar.l175dotabove-ar.l176dotabove-ar.l178dotabove-ar.l179dotabove-ar.l18dotabove-ar.l180dotabove-ar.l181dotabove-ar.l182dotabove-ar.l183dotabove-ar.l185dotabove-ar.l186dotabove-ar.l187dotabove-ar.l19dotabove-ar.l190dotabove-ar.l191dotabove-ar.l194dotabove-ar.l198dotabove-ar.l2dotabove-ar.l202dotabove-ar.l204dotabove-ar.l205dotabove-ar.l206dotabove-ar.l207dotabove-ar.l208dotabove-ar.l225dotabove-ar.l228dotabove-ar.l231dotabove-ar.l232dotabove-ar.l233dotabove-ar.l235dotabove-ar.l237dotabove-ar.l238dotabove-ar.l240dotabove-ar.l241dotabove-ar.l245dotabove-ar.l246dotabove-ar.l247dotabove-ar.l248dotabove-ar.l265dotabove-ar.l266dotabove-ar.l275dotabove-ar.l286dotabove-ar.l3dotabove-ar.l4dotabove-ar.l48dotabove-ar.l49dotabove-ar.l5dotabove-ar.l50dotabove-ar.l52dotabove-ar.l53dotabove-ar.l54dotabove-ar.l55dotabove-ar.l56dotabove-ar.l57dotabove-ar.l58dotabove-ar.l59dotabove-ar.l6dotabove-ar.l60dotabove-ar.l7dotabove-ar.l71dotabove-ar.l73dotabove-ar.l74dotabove-ar.l75dotabove-ar.l76dotabove-ar.l8dotabove-ar.l80dotabove-ar.l81dotabove-ar.l82dotabove-ar.l85dotabove-ar.l9dotabove-ar.l91dotabove-ar.l95dotabove-ar.l98dotabove-ar.l99dotbelow-ar.l.l0dotbelow-ar.l.l1dotbelow-ar.l.l10dotbelow-ar.l.l11dotbelow-ar.l.l12dotbelow-ar.l.l13dotbelow-ar.l.l14dotbelow-ar.l.l15dotbelow-ar.l.l16dotbelow-ar.l.l17dotbelow-ar.l.l18dotbelow-ar.l.l19dotbelow-ar.l.l2dotbelow-ar.l.l3dotbelow-ar.l.l4dotbelow-ar.l.l5dotbelow-ar.l.l6dotbelow-ar.l.l7dotbelow-ar.l.l9dotbelow-ar.l0dotbelow-ar.l1dotbelow-ar.l100dotbelow-ar.l101dotbelow-ar.l102dotbelow-ar.l105dotbelow-ar.l106dotbelow-ar.l107dotbelow-ar.l108dotbelow-ar.l109dotbelow-ar.l111dotbelow-ar.l112dotbelow-ar.l117dotbelow-ar.l119dotbelow-ar.l121dotbelow-ar.l123dotbelow-ar.l124dotbelow-ar.l125dotbelow-ar.l127dotbelow-ar.l132dotbelow-ar.l135dotbelow-ar.l136dotbelow-ar.l140dotbelow-ar.l141dotbelow-ar.l142dotbelow-ar.l143dotbelow-ar.l144dotbelow-ar.l145dotbelow-ar.l156dotbelow-ar.l21dotbelow-ar.l22dotbelow-ar.l23dotbelow-ar.l28dotbelow-ar.l29dotbelow-ar.l30dotbelow-ar.l42dotbelow-ar.l47dotbelow-ar.l48dotbelow-ar.l51dotbelow-ar.l53dotbelow-ar.l54dotbelow-ar.l55dotbelow-ar.l56dotbelow-ar.l57dotbelow-ar.l59dotbelow-ar.l64dotbelow-ar.l65dotbelow-ar.l67dotbelow-ar.l71dotbelow-ar.l73dotbelow-ar.l76dotbelow-ar.l77dotbelow-ar.l81dotbelow-ar.l86dotbelow-ar.l87dotbelow-ar.l90dotbelow-ar.l91dotbelow-ar.l92dotbelow-ar.l93dotbelow-ar.l94dotbelow-ar.l96 fatha-ar.l0 fatha-ar.l1 fatha-ar.l2 fatha-ar.l3 fatha-ar.l4 fatha-ar.l5 fatha-ar.l6fatha-ar.small.l2fatha-ar.small.l3fatha-ar.small.l4hahabove-ar.l0hahabove-ar.l1hamza.above.l0hamza.above.l1hamza.above.l14hamza.above.l15hamza.above.l16hamza.above.l18hamza.above.l19hamza.above.l2hamza.above.l21hamza.above.l23hamza.above.l24hamza.above.l26hamza.above.l27hamza.above.l28hamza.above.l29hamza.above.l30hamza.above.l31hamza.above.l33hamza.above.l37hamza.above.l38hamza.above.l39hamza.above.l43hamza.above.l45hamza.above.l47hamza.above.l51hamza.above.l52hamza.above.l53hamza.above.l54hamza.above.l55hamza.above.l56hamza.above.l61hamza.above.l62hamza.above.l63hamza.above.l65hamza.above.l66hamza.above.l67hamza.above.l68hamza.above.l7hamza.above.l73hamza.above.l74hamza.above.l75hamza.above.l8hamza.above.l80hamza.above.l81hamza.above.l83hamza.above.l85hamza.above.l86hamza.above.l87hamza.above.l88hamza.above.l89hamza.above.l9hamza.above.l90hamza.above.l93hamza.above.l97hamza.above.l98hamzabelow-ar.l0hamzabelow-ar.l1hamzabelow-ar.l2hamzabelow-ar.l3hamzabelow-ar.l4hamzabelow-ar.l5hamzabelow-ar.l6hamzabelow-ar.l7heh-ar.fina.Lellah.l0lam-ar.init.Lellah.l1lam-ar.medi.Lellah.l1 madda-ar.l0 madda-ar.l1 madda-ar.l2 madda-ar.l3 madda-ar.l4 madda-ar.l5 madda-ar.l6 shadda-ar.l2 shadda-ar.l3 shadda-ar.l4threedotsupabove-ar.l0threedotsupabove-ar.l1threedotsupabove-ar.l102threedotsupabove-ar.l103threedotsupabove-ar.l104threedotsupabove-ar.l110threedotsupabove-ar.l111threedotsupabove-ar.l124threedotsupabove-ar.l125threedotsupabove-ar.l126threedotsupabove-ar.l127threedotsupabove-ar.l128threedotsupabove-ar.l130threedotsupabove-ar.l131threedotsupabove-ar.l139threedotsupabove-ar.l141threedotsupabove-ar.l142threedotsupabove-ar.l145threedotsupabove-ar.l146threedotsupabove-ar.l147threedotsupabove-ar.l154threedotsupabove-ar.l155threedotsupabove-ar.l158threedotsupabove-ar.l159threedotsupabove-ar.l160threedotsupabove-ar.l161threedotsupabove-ar.l192threedotsupabove-ar.l196threedotsupabove-ar.l204threedotsupabove-ar.l205threedotsupabove-ar.l206threedotsupabove-ar.l207threedotsupabove-ar.l233threedotsupabove-ar.l245threedotsupabove-ar.l27threedotsupabove-ar.l28threedotsupabove-ar.l29threedotsupabove-ar.l52threedotsupabove-ar.l53threedotsupabove-ar.l54threedotsupabove-ar.l61threedotsupabove-ar.l71threedotsupabove-ar.l75threedotsupabove-ar.l77threedotsupabove-ar.l79threedotsupabove-ar.l80threedotsupabove-ar.l85threedotsupabove-ar.l90threedotsupabove-ar.l98threedotsupabove-ar.l99twodotshorizontalabove-ar.l0twodotshorizontalabove-ar.l1twodotshorizontalabove-ar.l101twodotshorizontalabove-ar.l102twodotshorizontalabove-ar.l107twodotshorizontalabove-ar.l109twodotshorizontalabove-ar.l113twodotshorizontalabove-ar.l114twodotshorizontalabove-ar.l115twodotshorizontalabove-ar.l12twodotshorizontalabove-ar.l124twodotshorizontalabove-ar.l125twodotshorizontalabove-ar.l128twodotshorizontalabove-ar.l143twodotshorizontalabove-ar.l146twodotshorizontalabove-ar.l151twodotshorizontalabove-ar.l156twodotshorizontalabove-ar.l158twodotshorizontalabove-ar.l162twodotshorizontalabove-ar.l163twodotshorizontalabove-ar.l164twodotshorizontalabove-ar.l165twodotshorizontalabove-ar.l185twodotshorizontalabove-ar.l22twodotshorizontalabove-ar.l23twodotshorizontalabove-ar.l24twodotshorizontalabove-ar.l26twodotshorizontalabove-ar.l27twodotshorizontalabove-ar.l32twodotshorizontalabove-ar.l4twodotshorizontalabove-ar.l40twodotshorizontalabove-ar.l47twodotshorizontalabove-ar.l50twodotshorizontalabove-ar.l53twodotshorizontalabove-ar.l55twodotshorizontalabove-ar.l57twodotshorizontalabove-ar.l59twodotshorizontalabove-ar.l60twodotshorizontalabove-ar.l64twodotshorizontalabove-ar.l66twodotshorizontalabove-ar.l70twodotshorizontalabove-ar.l73twodotshorizontalabove-ar.l75twodotshorizontalabove-ar.l77twodotshorizontalabove-ar.l79twodotshorizontalabove-ar.l84twodotshorizontalabove-ar.l95twodotshorizontalabove-ar.l96twodotshorizontalabove-ar.l97twodotshorizontalabove-ar.l98twodotshorizontalabove-ar.l99twodotshorizontalbelow-ar.l.l0twodotshorizontalbelow-ar.l.l1twodotshorizontalbelow-ar.l.l10twodotshorizontalbelow-ar.l.l11twodotshorizontalbelow-ar.l.l12twodotshorizontalbelow-ar.l.l13twodotshorizontalbelow-ar.l.l14twodotshorizontalbelow-ar.l.l15twodotshorizontalbelow-ar.l.l16twodotshorizontalbelow-ar.l.l17twodotshorizontalbelow-ar.l.l18twodotshorizontalbelow-ar.l.l19twodotshorizontalbelow-ar.l.l2twodotshorizontalbelow-ar.l.l3twodotshorizontalbelow-ar.l.l4twodotshorizontalbelow-ar.l.l5twodotshorizontalbelow-ar.l.l6twodotshorizontalbelow-ar.l.l7twodotshorizontalbelow-ar.l.l9twodotshorizontalbelow-ar.l0twodotshorizontalbelow-ar.l103twodotshorizontalbelow-ar.l104twodotshorizontalbelow-ar.l105twodotshorizontalbelow-ar.l106twodotshorizontalbelow-ar.l107twodotshorizontalbelow-ar.l108twodotshorizontalbelow-ar.l109twodotshorizontalbelow-ar.l120twodotshorizontalbelow-ar.l121twodotshorizontalbelow-ar.l122twodotshorizontalbelow-ar.l13twodotshorizontalbelow-ar.l14twodotshorizontalbelow-ar.l148twodotshorizontalbelow-ar.l152twodotshorizontalbelow-ar.l154twodotshorizontalbelow-ar.l155twodotshorizontalbelow-ar.l156twodotshorizontalbelow-ar.l157twodotshorizontalbelow-ar.l170twodotshorizontalbelow-ar.l32twodotshorizontalbelow-ar.l34twodotshorizontalbelow-ar.l39twodotshorizontalbelow-ar.l42twodotshorizontalbelow-ar.l45twodotshorizontalbelow-ar.l47twodotshorizontalbelow-ar.l50twodotshorizontalbelow-ar.l51twodotshorizontalbelow-ar.l52twodotshorizontalbelow-ar.l53twodotshorizontalbelow-ar.l55twodotshorizontalbelow-ar.l58twodotshorizontalbelow-ar.l66twodotshorizontalbelow-ar.l71twodotshorizontalbelow-ar.l72twodotshorizontalbelow-ar.l77twodotshorizontalbelow-ar.l80twodotshorizontalbelow-ar.l87twodotshorizontalbelow-ar.l89twodotshorizontalbelow-ar.l92twodotshorizontalbelow-ar.l93twodotshorizontalbelow-ar.l95twodotshorizontalbelow-ar.l96twodotsverticalabove-ar.l0twodotsverticalabove-ar.l10twodotsverticalabove-ar.l102twodotsverticalabove-ar.l18twodotsverticalabove-ar.l21twodotsverticalabove-ar.l23twodotsverticalabove-ar.l24twodotsverticalabove-ar.l26twodotsverticalabove-ar.l27twodotsverticalabove-ar.l28twodotsverticalabove-ar.l30twodotsverticalabove-ar.l36twodotsverticalabove-ar.l37twodotsverticalabove-ar.l39twodotsverticalabove-ar.l43twodotsverticalabove-ar.l51twodotsverticalabove-ar.l52twodotsverticalabove-ar.l53twodotsverticalabove-ar.l54twodotsverticalabove-ar.l55twodotsverticalabove-ar.l56twodotsverticalabove-ar.l57twodotsverticalabove-ar.l62twodotsverticalabove-ar.l63twodotsverticalabove-ar.l66twodotsverticalabove-ar.l67twodotsverticalabove-ar.l68twodotsverticalabove-ar.l76twodotsverticalabove-ar.l77twodotsverticalabove-ar.l79twodotsverticalabove-ar.l8twodotsverticalabove-ar.l88twodotsverticalabove-ar.l9twodotsverticalabove-ar.l91twodotsverticalabove-ar.l92twodotsverticalabove-ar.l93twodotsverticalabove-ar.l94twodotsverticalbelow-ar.l38twodotsverticalbelow-ar.l56 uni0305.100 uni0305.1000 uni0305.1100 uni0305.1200 uni0305.1300 uni0305.200 uni0305.300 uni0305.400 uni0305.500 uni0305.600 uni0305.700 uni0305.800 uni0305.900 wasla-ar.l0 wasla-ar.l1 wasla-ar.l11 wasla-ar.l2 wasla-ar.l3 wasla-ar.l4 wasla-ar.l5 wasla-ar.l6 wasla-ar.l7 wasla-ar.l8 wasla-ar.l9wawSmall-ar.l0yehSmall-ar.l0df   !"#$&(*, ."0$2&4(5*9,=.>0?1@2A3B4C5D6E7F8G9H:J;K<L=M>N?O@PAQBRCSDTEUFVGYHZI[K_M`NaObPcQdReSfTgUhViWjXkYlZm[n\o]p^q_r`satbucvdefhij"Z[\]^_      #'(,-023 5"6$7&8(9*:,=.?0A2C4D6E8F:G<H>K@LBNDPFQHRJSLTNUPXRZT\V]X_Z`\a^b`cbddgfhhjjkllnmpnrotrvuxvzz|{~}   " $ & ( * ,.02468:<>@B D!F"H$J%L&N'P(R)T,V-X/Z0\1^2`3b4d7f:h<j=l>n?p@rAtDvExGzH|I~JKLNPQSUVZ\^`acdefghknoprstuvwz|}   "$&(*,.02468:<>@BDFHJLNPRTVXZ\^`b d fhjlnprt"v#x(z*|+~,-./23589;ABEGHIJKLORTUVWXY\_abcdfghijknoqrstuvy   "$&(*,.02468:<>@BDFHJLNPRTVWY[\]^_`abcdefghikmoqrsuwy{}   D  E!'(,Q>?@ABCDEFGHJKLMNOPQRSTUVY|_`abcdefghijklmnopqrstuv(Z[\]^_"a\b#\]c}$]%&de f'")#$%&()*efg+*f-+.g/hhi0,hij-ijk.jlkm/kln0lmnoo1opp2p3qr4 qs5 q  r t   6  r   s u   7   svtw8tux$$v$y$$$9$$v%%w%z%%%:%%w&;&&{&''x'|'''<''x((y(}(((=((y**z*~*** **z++{+++++++{,--233F44R4G44444R55S66T6H66666T799U::V:I:::::V;;W;J;;;;;W<<X<K<<<<<X==L>>MBCCNDDOEFGHIIYIPIIIIIYNNZNQNNNNNZPQQ[QRQQQQQ[RRSSSTTTUUVVVntwx{|W^X^Y_`Z `a[ ab\ bc]  c@ @^AA_1>>2??=JJ>KK?LL@MM A N NBOO%C%P%P'3'@'@646A6A;5;B;B<6<C<CI7IDIDQ8QEQE9FF:GG;HHd`~!d<II33P3f3(=>LWXYYZ^_ehmnopqsv!#Z_#&'*",hzY@H>?ABDEGJYjkmpquZ[\]^Ykm[] @CDHLv_ DDFLTzarabvlatnzcursjkernkernmarkmkmkvss05p&0:DNXblvXdj   2Pv ^@\ =bb$0' J/  6(#*:Zvb~[N(8X*RR$f hn0g & !SS(P VZ nnnn==zzzInn'';;==$XX==yy==II!9TTZZ``flrxx~~AADB92 :*%L,H@km,,,|,f-P-,,,,,l,r,~,x,~v_ Y[]DAHYelmqt,6,<,B,B |'C&Fm ,,,2,8,>,D,J,P,P,P @CDHL_MVw bd4= @CGHILYlsv,,,, ,,*,$EJYkmuZ[\]^,,, ,,,N,T,,$,*,0,6,<,B,H,N,T>?ABDGJjpqu[MVw bd .4=8MVwbd 4=!!::  ''CC +++++|++++++++`FFmm'(LM  >?ABDEFGJKYhijkmptu[]^*+*)Z)`+++++,+ ++&+++, ||''CC&&#'()*;  !#$LMVWZ[}~   )*;  !#$VWZ[}~_   >LYY_ehkmm pq!tv#&[[*]_+./"'()*;  !#$LMVWZ[}~   ||''CC&&).)|)R)X)4)^)d):)() ):($):):)@)v'\)v)F)L)j)p)v))())") )( ||\]&&=WX$Z^&+!#,/03|acGHINXZ[!#j&'m24=WX#Z^%no*!#,/02 {acEJOPQWY[&'i3''''''^'d%t''j''p'''&6(''&(''''''''''''''&<'''v'|%n''"'4'(%'.''4%%jjS7h'$*SS&CDKKPQXX_`gg$%,,rszz*+22GHOOfgnn3;<=^$*+,-5;CIPV_ejpstuvxyz{$*/5<BGMcilmnorx*0?@ABGMTZflqw !"#9?@^_`Q_`abc )3:W!456BCDOPQ^_`ijk~  #$%./0;<=FGHWX[bcdqrs~ )*+>FGHSTUefgpqrz{!"#8?@CDKKPQXX_`gg||$%,,\]rszz''*+22CCGHOOfgnn&&!!!!t!z!!!!!!!!!!!!!"!" !!!!!!"!!!!!@!|FLLLRX^djpv|   f  f       f $ * 0 6 6 6 6 < B H N f T Z ` f l r x ~ ! !!!!!! !&!,  !2!8!>!>!D!J!P""k LLL    .""L L"(.4:@F   LLLLLRRXX $ $ $ $^^^^ddd dd j p v <|       N * * * * * * * * * * <(  0 0 0 0 0 0 0 0 0 0 6 6 6 6 6 6: < < < < < < < < <"""           N N N N N N N N N N $*0000666<<BHNTZZ (` B B Bf B Bl B B Brxxd~ N N N N H H H H H H H H H H   N   DDDDDDDDDD N N N N N N N N N N N T T T T T T T T T 0 0 0 0 0 0 0 0 0 0 <         ` <   & Z Z Z Z Z Z, Z Z Z2288DD>DJ\\\P\\V\\\b ` ` `h ` `n ` ` `t f f fz f f f@@@ !!!!!!!!!!  <     "(. @4::@@FLRX^^    ddd jjpv| r r r r r r r r r   x x x x x x x x x x  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~"""""""""" H <           $ $ $ * * * 0 0 0 6 6 6 < < < B B B H H H N N N T T T Z Z Z ` ` ` f f f!!! l l l r r r x x x ~ ~ ~ o06<< `fffBHHNN    NNTTl  L< Zf `fl rx~TTTTTTTTTTTFF& F    BBBFFBBBBBBBB           FFFFFFFFFFF&,,,,,,,,,,,22822222228>>>DJJJPV\bbbFFhnnnntttLLzzFFFFBBNNPPP FF"vv((...44:4444444:LLLR@@@@@@@@@@@FFLLLRXXXXXXXXXXX^^^^^^^^^^^dddddddddddjjppvvvvvv|||||||||||6FB FFF FFF$$$F**006<<<<<<<<<<<BBBHHHHNNTZ```flrxxxxxxxxxxxL~FFF  &,,228>>DJJPVV\bbhnntzz$  """""""""""(..*4:@FL**.024>?E^ b{#=>*i*6*5! '++ 0/&.-,#87 "% $4 213 )()(*k#/#. %%+- '& 10  $, )(*"!"!*Cx{le Np8nJ&={! Wz!j!* u]$+b)K, npcV%V!o!5+! .!/Xzm!384853!!! . / !! !!!!T'`8SRQs.-]s-]!8%1 SU]%ii==n_=c'U82!HusM%bGbXh_1PvFFbi4pPbV%KNFIyCp %]1kU,QpUIcd&WkD]Qs`8.-V]b!!!w{! !!,IJX,{!!!!*!d!!'!!L!4!!!_!V!S!!!I#Y!'h5);Uhb#!Q!!X!w!s4!KB!"'Vwp!u!(M!<!y!7!;!Tdq`!!Co!=%!1HCd:!!J!!I "f4!! !.3d !BGV!wpmh<wUG!! !p!!l!!.G#_!=!!Z!!D!!m9`!i!,;!!ob!8!k!!!!!!!V>!!E!!1V$yF!!!!kbVbC&X!6!J1!~!n!`!b!"!n!%!!V!!!N!w!L!{!?!!h!z![!F![!!s!!! !Fb!!g!!n=!4!I!x!!W!!!]!!.!1`bm6zTODnn1nzzV*)=y8y/Vw_VymKt Jw' HaB|=PuIpLrhGXiscl_V%ga 5 py8qQi1D;I/IZ\671M+yBztu:cm'=&k bd`Sn%GkN?:X!m:i!6:1!!V:F!v:q!:!:!I{0e:`!:!:!:!z:!:!:!5:0! :!!s!%Vr`o ^!-!! DFLTarablatncaltcaltnccmpVfinainitlocllocllocl locl&mark,medi2rlig`ss018ss02>ss05Dss07Jss08P (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (2<FPZdnxARA KSH MLY SND :URD Z(&$" ) ,"$%'-/1369;=?tvxyz{~-"$%'-/1369;=?tvxyz{~ 2 Jrr    jd     v dbt   0 > Lb R Z d N P& " bb`  \ltrf 8B  . R6  ,6j`V  <:   v N <Pf 6   L ` x      . : j  &  x @2.J.DZpfL  6Lbx*(>TFj            1$;11G"ztn9tDM2v,vPj0|B/HNHB <!6"0#*$$%& :864|||(`*(&/Xrp"#$nljhfYZ[&bcd$<$<"Ncd]_^012./wxyz{STUVW."n~.  <"r&fb*j,,N..<00*D22<><     :%&#$!"8fV!|rr`L:".$U8&6r+,(2#RdFtZ[]\Z.D48\lFd@hPr(t(::~D>>rRRZTS4 D&'()*+,-&}~$pZZpf>>@D8F#:#dZPPP { x| t 2  p j X !##8 * * !   F8 3456789:;<=>z }~|l :;<=>?@ABCD9^ P RSTUVWXYZ[\]\8 ,  EFGHIJKLMOPQR  ! ABCDEFGHIJKLM    r 88EFGHIJKLMNOCDP}~ ~NOPQRSTUVWXZ[\Ydabcdefghijklmno  @  $       . 8778~ ~\^_`X\]xpqrstuvwxyz{}~{|\"#$%&'()*+,-./012345678_`abcQpqrstuvwxyz{|Bdefghijklmnopqrstuvwxyz]^_`abcdefghijklmnopqrstuv !;<()*+,-./012789:345>'=6?@AB"&*.26:>BFJNRVZ^bfjnrvz~PTX\`dhlptx|Z%?@! *8<@DHLPTX\`dhlptx|2    @Yb9xDD4.EE*FFGGJ^HHRIIJJKKOOZUUt4WW2YYnZZ&[[ \\Xd^^__,aaAabbccddee0ff ggFhhiiP77Nkk8llxoolopfqqzD:WW e`re`X*e@I<<mmmJAAA$$BBCLLLeMiNeNEF<QQQPVVVV:XXX]]rLjjjfvnnr=   nGCz{7@C@Cv@Cv* ~~;H<HHHHHL:^_`<L3DJ{}~G@Cv33@Coy333Fmf 2FJ}~ABCE[!:3333DuG~(ABE[33333333@CL >&^_`EP  '3333337 '!"#33333333!"#~w@CLsv_!#>?ABJGaH_Z[\]w^_`  "0>LZhv   8 &z{            MVw bd4=               oy)*;  !#$VWZ[}~    >?ABDEJKhijkmqtuZ[\]^      ^` >?ABDEJKhkmmqqtuZ^  "&+24:<=WX[^24=WX#Z^%   ~  9CDKPQX_`g$%,rsz*+2GHOfgn   ^_`>?@@ABCCDEJKLLhkmmqqsstuvvZ^__>?@@ABCCDEJKLLhkmmqqsstuvvZ^__>?@@ABCCDEJKLLhkmmqqsstuvvZ^__>?@@ABCCDEJKLLhkmmqqsstuvvZ^__A"w9EFGHIJKLMNOP '=^^$%'(*./145678:  <>?A!#F= "#$%&+,-./0123456789:<=^!"# 2 "#$%&+,-./012456789:<=^24=^^#$&')-.0345679  ;0 !!"# $&'*+, -. /0123344 56778899:;<=MVWW XXZZ[[ \\ ]]^^ff ggnnoorrw!"##bd        $%%&)*-..//023=>>?@AKLMNYZ\]ghrsvwwx{||}!"899:PQRSUVWXXYYZ[\]^`aklopz{|}~         !"#$%%&&''(235667:;<==>>?BCCDDEOPPQQR\]]^^_`abccdnoyzz{{| !! "" ## &&''Y73YGp 333333!3333"33333#33333335544[u[ur}r}[u[u[u[ur}r}r}r}EsEs[ur}EsEsEsEsEs_w_w_w_w_w_w_w     amiri-1.000/requirements.in000066400000000000000000000001121434272261000156610ustar00rootroot00000000000000fonttools[lxml] pcpp opentype-sanitizer ufo2ft[pathops] ufoLib2 glyphsets amiri-1.000/requirements.txt000066400000000000000000000022501434272261000160770ustar00rootroot00000000000000# # This file is autogenerated by pip-compile with python 3.10 # To update, run: # # pip-compile requirements.in # appdirs==1.4.4 # via fs attrs==22.1.0 # via ufolib2 booleanoperations==0.9.0 # via ufo2ft cffsubr==0.2.9.post1 # via ufo2ft cu2qu==1.6.7.post1 # via ufo2ft defcon==0.10.1 # via glyphsets fonttools[lxml,ufo,unicode]==4.34.4 # via # -r requirements.in # booleanoperations # cffsubr # cu2qu # defcon # glyphsets # glyphslib # ufo2ft # ufolib2 fs==2.4.16 # via fonttools glyphsets==0.5.2 # via -r requirements.in glyphslib==6.0.7 # via glyphsets lxml==4.9.1 # via fonttools openstep-plist==0.3.0 # via glyphslib opentype-sanitizer==8.2.1 # via -r requirements.in pcpp==1.30 # via -r requirements.in pyclipper==1.3.0.post3 # via booleanoperations six==1.16.0 # via fs skia-pathops==0.7.2 # via ufo2ft ufo2ft[pathops]==2.28.0 # via -r requirements.in ufolib2==0.13.1 # via # -r requirements.in # glyphslib unicodedata2==14.0.0 # via fonttools # The following packages are considered to be unsafe in a requirements file: # setuptools amiri-1.000/scripts/000077500000000000000000000000001434272261000143035ustar00rootroot00000000000000amiri-1.000/scripts/build.py000066400000000000000000000522111434272261000157550ustar00rootroot00000000000000#!/usr/bin/env python # coding=utf-8 # # build.py - Amiri font build utility # # Copyright 2010-2022 Khaled Hosny # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from io import StringIO from pcpp.preprocessor import Preprocessor from ufo2ft import compileOTF, compileTTF from ufo2ft.featureWriters import ( KernFeatureWriter, MarkFeatureWriter, CursFeatureWriter, GdefFeatureWriter, ) from ufo2ft.filters import FlattenComponentsFilter from ufo2ft.filters.transformations import TransformationsFilter from ufoLib2 import Font REMOVE_GLYPHS = "com.schriftgestaltung.customParameter.GSFontMaster.Remove Glyphs" def cleanAnchors(font): """Removes anchor classes (and associated lookups) that are used only internally for building composite glyph.""" anchors = { "Dash", #"DigitAbove", "DigitBelow", "DotAbove", "DotAlt", "DotBelow", "DotBelowAlt", "DotHmaza", "MarkDotAbove", "MarkDotBelow", "RingBelow", "RingDash", "Stroke", #"TaaAbove", "TaaBelow", "Tail", "TashkilAboveDot", "TashkilBelowDot", "TwoDotsAbove", "TwoDotsBelow", "TwoDotsBelowAlt", "VAbove", } for glyph in font: glyph.anchors = [a for a in glyph.anchors if a.name not in anchors] def generateFeatures(font, args): """Generates feature text by merging feature file with mark positioning lookups (already in the font) and making sure they come after kerning lookups (from the feature file), which is required by Uniscribe to get correct mark positioning for kerned glyphs.""" # open feature file and insert the generated GPOS features in place of the # placeholder text preprocessor = Preprocessor() if args.quran: preprocessor.define("QURAN") elif args.slant: preprocessor.define("ITALIC") with open(args.features) as f: preprocessor.parse(f) o = StringIO() preprocessor.write(o) font.features.text = o.getvalue() + font.features.text def generateFont(options, font): generateFeatures(font, options) from datetime import datetime info = font.info major, minor = options.version.split(".") info.versionMajor, info.versionMinor = int(major), int(minor) year = datetime.now().year with open(options.license) as fp: info.copyright = fp.readline().strip() info.openTypeNameLicense = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL" info.openTypeNameLicenseURL = "https://scripts.sil.org/OFL" markWriter = MarkFeatureWriter(features=["mark", "mkmk"]) # ufo2ft mark feature writer decides what feature to use for what glyph # based on script, and it classifies kashida-ar with scripts using abvm # feature and doesn’t add it to mark feature, which is not what we want. markWriter.scriptsUsingAbvm = set() # Maintain our desired lookup order. markWriter.anchorSortKey = { "_MarkAbove": -1, "_MarkBelow": -2, "_HamzaAbove": -3, "_TaaAbove": -4, "_TashkilAbove": -5, "_TashkilBelow": -6, "_HamzaBelow": -7, "_AlefAbove": -8, "_DigitAbove": -9, "_TashkilTashkilAbove": -10, "_TashkilTashkilAbove2": -11, "_TashkilTashkilBelow": -12, "_TashkilBelowHamza": -13, "_SeenAbove": -14, "_SeenBelow": -15, "_NoonAbove": -16, } featureWriters = [ GdefFeatureWriter(), CursFeatureWriter(), KernFeatureWriter(features=["kern"]), markWriter, ] filters = [..., FlattenComponentsFilter()] if options.output.endswith(".ttf"): from fontTools.ttLib import newTable from fontTools.ttLib.tables import ttProgram otf = compileTTF(font, inplace=True, removeOverlaps=True, overlapsBackend="pathops", featureWriters=featureWriters, filters=filters) otf["prep"] = prep = newTable("prep") prep.program = ttProgram.Program() prep.program.fromAssembly([ 'PUSHW[]', '511', 'SCANCTRL[]', 'PUSHB[]', '4', 'SCANTYPE[]']) else: otf = compileOTF(font, inplace=True, optimizeCFF=1, removeOverlaps=True, overlapsBackend="pathops", featureWriters=featureWriters, filters=filters) if info.styleMapStyleName and "italic" in info.styleMapStyleName: otf['name'].names = [n for n in otf['name'].names if n.nameID != 17] for name in otf['name'].names: if name.nameID == 2: name.string = info.styleName return otf def drawOverline(font, name, uni, pos, thickness, width): try: glyph = font[name] except KeyError: glyph = font.newGlyph(name) glyph.width = 0 pen = glyph.getPen() glyph.clear() pen.moveTo((-50, pos)) pen.lineTo((-50, pos + thickness)) pen.lineTo((width + 50, pos + thickness)) pen.lineTo((width + 50, pos)) pen.closePath() return glyph def makeOverLine(font, posGlyph="qafLamAlefMaksuraabove-ar"): from fontTools.feaLib import ast pos = font[posGlyph].getBounds(font).yMax thickness = font.info.postscriptUnderlineThickness minwidth = 100 # collect glyphs grouped by their widths rounded by 100 units, we will use # them to decide the widths of over/underline glyphs we will draw widths = {} for glyph in font: u = glyph.unicode if ((u is None ) or (0x0600 <= u <= 0x06FF) or u == ord(" ")) \ and glyph.width > 0: width = round(glyph.width / minwidth) * minwidth width = width > minwidth and width or minwidth if not width in widths: widths[width] = [] widths[width].append(glyph.name) base = 'uni0305' drawOverline(font, base, 0x0305, pos, thickness, 500) mark = ast.FeatureBlock("mark") overset = ast.GlyphClassDefinition("OverSet", ast.GlyphClass([base])) lookupflag = ast.LookupFlagStatement(markFilteringSet=ast.GlyphClassName(overset)) mark.statements.extend([overset, lookupflag]) for width in sorted(widths.keys()): # for each width group we create an over/underline glyph with the same # width, and add a contextual substitution lookup to use it when an # over/underline follows any glyph in this group replace = f"uni0305.{width}" drawOverline(font, replace, None, pos, thickness, width) sub = ast.SingleSubstStatement([ast.GlyphName(base)], [ast.GlyphName(replace)], [ast.GlyphClass(widths[width])], [], False) font.lib["public.openTypeCategories"][replace] = "mark" mark.statements.append(sub) font.features.text += str(mark) def mergeLatin(font): fontname = font.info.postscriptFontName.replace("Amiri", "AmiriLatin") latin = openFont("sources/%s.ufo" % fontname) for glyph in latin: try: font.addGlyph(glyph) except KeyError: pass font.glyphOrder += latin.glyphOrder font.lib["public.openTypeCategories"].update(latin.lib["public.openTypeCategories"]) font.groups.update(latin.groups) font.kerning.update(latin.kerning) def makeItalic(options): font = makeDesktop(options, False) exclude = [f"u{i:X}" for i in range(0x1EE00, 0x1EEFF + 1)] exclude += [ "exclam", "period", "guillemotleft", "guillemotright", "braceleft", "bar", "braceright", "bracketleft", "bracketright", "parenleft", "parenright", "slash", "backslash", "brokenbar", "question-ar", "dot.1", "dot.2", "zerowidthnonjoiner", "zerowidthjoiner", "lefttorightmark", "righttoleftmark", "lefttorightembedding", "righttoleftembedding", "popdirectionalformatting", "lefttorightoverride", "righttoleftoverride", "_arrowhead", "_arrowhead2", "_x", ] skew = TransformationsFilter(Slant=-options.slant, exclude=exclude) skew(font) # fix metadata info = font.info info.italicAngle = options.slant info.postscriptFullName += " Italic" if info.postscriptWeightName == "Bold": info.postscriptFontName = info.postscriptFontName.replace("Bold", "BoldItalic") info.styleName = "Bold Italic" info.styleMapFamilyName = info.familyName info.styleMapStyleName = "bold italic" else: info.postscriptFontName = info.postscriptFontName.replace("Regular", "Italic") info.styleName = "Italic" info.styleMapFamilyName = info.familyName info.styleMapStyleName = "italic" mergeLatin(font) makeOverLine(font, posGlyph="uni0305") otf = generateFont(options, font) otf.save(options.output) def scaleGlyph(font, glyph, scale): """Scales the glyph, but keeps it centered around its original bounding box.""" from fontTools.pens.recordingPen import RecordingPointPen from fontTools.pens.transformPen import TransformPointPen from fontTools.misc.transform import Identity width = glyph.width bbox = glyph.getBounds(font) x = (bbox.xMin + bbox.xMax) / 2 y = (bbox.yMin + bbox.yMax) / 2 matrix = Identity matrix = matrix.translate(-x * scale + x, -y * scale + y) matrix = matrix.scale(scale) rec = RecordingPointPen() glyph.drawPoints(rec) glyph.clearContours() glyph.clearComponents() pen = TransformPointPen(glyph.getPointPen(), matrix) rec.replay(pen) for a in glyph.anchors: a.x, a.y = matrix.transformPoint((a.x, a.y)) if width == 0: glyph.width = width def makeQuran(options): from fontTools import subset from glyphsets import GFGlyphData font = makeDesktop(options, False) mergeLatin(font) # fix metadata info = font.info info.postscriptFontName = info.postscriptFontName.replace("-Regular", "QuranColored-Regular") info.familyName += " Quran Colored" info.postscriptFullName += " Quran Colored" info.openTypeNameSampleText = "بِسۡمِ ٱللَّهِ ٱلرَّحۡمَـٰنِ ٱلرَّحِیمِ ۝١ ٱلۡحَمۡدُ لِلَّهِ رَبِّ ٱلۡعَـٰلَمِینَ ۝٢" info.openTypeOS2TypoAscender = info.openTypeHheaAscender = 1815 # scale some vowel marks and dots down a bit marks = [ "fathatan-ar", "dammatan-ar", "fatha-ar", "damma-ar", "hahabove-ar", "openfathatan-ar", "opendammatan-ar", "openkasratan-ar", "twodotshorizontalabove-ar", "threedotsupabove-ar", "twodotsverticalabove-ar", ] shadda = ["shadda-ar"] for scale, names in ((0.9, marks), (0.8, shadda)): for name in names: scaleGlyph(font, font[name], scale) # create overline glyph to be used for sajda line, it is positioned # vertically at the level of the base of waqf marks makeOverLine(font) COLR, CPAL = makeCOLR(font) otf = generateFont(options, font) otf["COLR"] = COLR otf["CPAL"] = CPAL unicodes = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.', '(', ')', '[', ']', '{', '}', '|', ' ', '/', '\\', 0x00A0, 0x00AB, 0x00BB, 0x0305, 0x030A, 0x0325, 0x060C, 0x0615, 0x0617, 0x0618, 0x0619, 0x061A, 0x061B, 0x061E, 0x061F, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627, 0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, 0x062F, 0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x0637, 0x0638, 0x0639, 0x063A, 0x0640, 0x0641, 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647, 0x0648, 0x0649, 0x064A, 0x064B, 0x064C, 0x064D, 0x064E, 0x064F, 0x0650, 0x0651, 0x0652, 0x0653, 0x0654, 0x0655, 0x0656, 0x0657, 0x0658, 0x065C, 0x0660, 0x0661, 0x0662, 0x0663, 0x0664, 0x0665, 0x0666, 0x0667, 0x0668, 0x0669, 0x066E, 0x066F, 0x0670, 0x0671, 0x067A, 0x06A1, 0x06BA, 0x06CC, 0x06D6, 0x06D7, 0x06D8, 0x06D9, 0x06DA, 0x06DB, 0x06DC, 0x06DD, 0x06DE, 0x06DF, 0x06E0, 0x06E1, 0x06E2, 0x06E3, 0x06E4, 0x06E5, 0x06E6, 0x06E7, 0x06E8, 0x06E9, 0x06EA, 0x06EB, 0x06EC, 0x06ED, 0x06F0, 0x06F1, 0x06F2, 0x06F3, 0x06F4, 0x06F5, 0x06F6, 0x06F7, 0x06F8, 0x06F9, 0x08F0, 0x08F1, 0x08F2, 0x08F3, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x200B, 0x200C, 0x200D, 0x200E, 0x200F, 0x2028, 0x2029, 0x202A, 0x202B, 0x202C, 0x202D, 0x202E, 0x202F, 0x25CC, 0xFD3E, 0xFD3F, 0xFDFA, 0xFDFD] gf_latin_kernel = GFGlyphData.glyphs_in_glyphsets(["GF_Latin_Kernel"]) unicodes += [g["unicode"] for g in gf_latin_kernel if g["nice_name"] != ".notdef"] unicodes = [isinstance(u, str) and ord(u) or u for u in unicodes] opts = subset.Options() opts.set(layout_features='*', name_IDs='*', name_languages='*', notdef_outline=True, glyph_names=True, layout_scripts="*", recalc_average_width=True, recalc_max_context=True) subsetter = subset.Subsetter(options=opts) subsetter.populate(unicodes=unicodes) subsetter.subset(otf) # Use FontBBox for Win metrics since we use larger marks that can result in # bigger font bbox that the regular fonts. head = otf["head"] os_2 = otf["OS/2"] os_2.usWinAscent = max(head.yMax, os_2.usWinAscent) os_2.usWinDescent = max(abs(head.yMin), os_2.usWinDescent) otf.save(options.output) def makeCOLR(font): import re from fontTools.ttLib import getTableModule, newTable from fontTools.misc.transform import Identity Color = getTableModule("CPAL").Color hamzas = ("hamza-ar", "hamzaabove-ar", "hamzabelow-ar", "hamza.above") marks = ( "fathasmall-ar", "dammasmall-ar", "kasrasmall-ar", "fathatan-ar", "dammatan-ar", "kasratan-ar", "fatha-ar", "damma-ar", "kasra-ar", "shadda-ar", "sukun-ar", "dammainverted-ar", "noonghunnaabove-ar", "dotvowelbelow-ar", "alefabove-ar", "sukunround-ar", "sukunoval-ar", "hahabove-ar", "meemStopabove-ar", "seenbelow-ar", "maddalong-ar", "wawSmall-ar", "yehSmall-ar", "yehabove-ar", "noonabove-ar", "rhombusStopbelow-ar", "rhombusStopabove-ar", "dotStopabove-ar", "meembelow-ar", "openfathatan-ar", "opendammatan-ar", "openkasratan-ar", "highwaw-ar", "seenabove-ar", # XXX: can be both a mark and a pause "wasla-ar", "madda-ar", "dot.*.-ar", "twodots.*.-ar", "threedots.*.-ar", ) pauses = ( "tahabove-ar", "zainabove-ar", "sadLamAlefMaksuraabove-ar", "qafLamAlefMaksuraabove-ar", "meemabove-ar", "lamAlefabove-ar", "jeemabove-ar", "threedotsabove-ar", ) signs = ( "uni0305", "zero-ar", "one-ar", "two-ar", "three-ar", "four-ar", "five-ar", "six-ar", "seven-ar", "eight-ar", "nine-ar", "endofayah-ar", "hizb-ar", "sajdah-ar", ) groups = { marks: Color(red=0xcc, green=0x33, blue=0x33, alpha=0xff), # red signs: Color(red=0x00, green=0xa5, blue=0x50, alpha=0xff), # green hamzas: Color(red=0xee, green=0x99, blue=0x33, alpha=0xff), # yellow pauses: Color(red=0x33, green=0x66, blue=0x99, alpha=0xff), # blue } COLR = newTable("COLR") CPAL = newTable("CPAL") CPAL.version = 0 COLR.version = 0 palette = list(groups.values()) CPAL.palettes = [palette] CPAL.numPaletteEntries = len(palette) COLR.ColorLayers = {} def newLayer(name, colorID): return getTableModule("COLR").LayerRecord(name=name, colorID=colorID) def getColor(glyphName): for names, color in groups.items(): for name in names: if glyphName == name or re.match(name, glyphName): return palette.index(color) return 0xFFFF hashes = {} glyphOrder = list(font.glyphOrder) for name in glyphOrder: if name not in font: continue glyph = font[name] layers = [] components = [(c, getColor(c.baseGlyph)) for c in glyph.components] if len(components) > 1 and any(c[1] != 0xFFFF for c in components): for component, color in components: componentName = component.baseGlyph trans = component.transformation if trans != Identity: # Unique identifier for each layer, so we can reuse # identical layers and avoid needless duplication. componentHash = hash((trans, glyph.width)) if component.baseGlyph not in hashes: hashes[componentName] = [] if componentHash not in hashes[componentName]: hashes[componentName].append(componentHash) index = hashes[componentName].index(componentHash) componentName = f"{componentName}.l{index}" if componentName not in font: newGlyph = font.newGlyph(componentName) newGlyph.components = [component] newGlyph.width = glyph.width layers.append(newLayer(componentName, color)) if not layers: color = getColor(name) if color != 0xFFFF: layers = [newLayer(name, color)] if layers: COLR[name] = layers return COLR, CPAL def _build_production_name(glyph, font): """Build a production name for a single glyph.""" # use name derived from unicode value unicode_val = glyph.unicode if glyph.unicode is not None: return "{}{:04X}".format( "u" if unicode_val > 0xFFFF else "uni", unicode_val ) # use production name + last (non-script) suffix if possible parts = glyph.name.rsplit(".", 1) if len(parts) == 2 and parts[0] in font: return "{}.{}".format( _build_production_name(font[parts[0]], font), parts[1], ) # use ligature name, making sure to look up components with suffixes parts = glyph.name.split(".", 1) if len(parts) == 2: liga_parts = ["{}.{}".format(n, parts[1]) for n in parts[0].split("_")] else: liga_parts = glyph.name.split("_") if len(liga_parts) > 1 and all(n in font for n in liga_parts): unicode_vals = [font[n].unicode for n in liga_parts] if all(v and v <= 0xFFFF for v in unicode_vals): return "uni" + "".join("%04X" % v for v in unicode_vals) return "_".join( _build_production_name(font[n], font) for n in liga_parts ) return glyph.name def openFont(path): font = Font.open(path, validate=False) if REMOVE_GLYPHS in font.lib: import re pat = re.compile("(" + "|".join(font.lib[REMOVE_GLYPHS]) + ")") for name in list(font.keys()): if pat.match(name): del font[name] return font def makeDesktop(options, generate=True): font = openFont(options.input) # remove anchors that are not needed in the production font cleanAnchors(font) if generate: mergeLatin(font) makeOverLine(font, posGlyph="uni0305") otf = generateFont(options, font) otf.save(options.output) else: return font if __name__ == "__main__": import argparse parser = argparse.ArgumentParser(description="Build Amiri fonts.") parser.add_argument("--input", metavar="FILE", required=True, help="input font to process") parser.add_argument("--output", metavar="FILE", required=True, help="ouput font to write") parser.add_argument("--features", metavar="FILE", required=True, help="feature file to include") parser.add_argument("--version", type=str, required=True, help="font version") parser.add_argument("--license", type=str, required=True, help="license file") parser.add_argument("--slant", type=float, required=False, help="font slant") parser.add_argument("--quran", action='store_true', required=False, help="build Quran variant") args = parser.parse_args() if args.slant: makeItalic(args) elif args.quran: makeQuran(args) else: makeDesktop(args) amiri-1.000/scripts/fix-gf.py000077500000000000000000000013611434272261000160410ustar00rootroot00000000000000""" Script to do changes required for Google Fonts that we can’t have by default. """ from fontTools.ttLib import TTFont import shutil import os GF_DIR = "gf_fonts" if os.path.exists(GF_DIR): shutil.rmtree(GF_DIR) os.mkdir(GF_DIR) for path in ("Amiri-Italic.ttf", "Amiri-BoldItalic.ttf", "Amiri-Regular.ttf", "Amiri-Bold.ttf"): shutil.copy(path, GF_DIR) colr_font = TTFont("AmiriQuranColored.ttf") name_tbl = colr_font["name"] for name_record in colr_font["name"].names: name_tbl.setName( name_record.toUnicode().replace("Colored", "").strip().replace(" ", " "), name_record.nameID, name_record.platformID, name_record.platEncID, name_record.langID, ) colr_font.save(os.path.join(GF_DIR, "AmiriQuran-Regular.ttf"))amiri-1.000/scripts/mkquran.py000066400000000000000000000027151434272261000163400ustar00rootroot00000000000000import argparse import re from fontTools.ttLib import TTFont from fontTools import subset LAYER = re.compile('.*\.l\d+$') def rename(font): names = set() for layers in font["COLR"].ColorLayers.values(): names |= {l.name for l in layers if LAYER.match(l.name)} del font["COLR"] del font["CPAL"] glyphs = set(font.glyphOrder) - names options = subset.Options() options.set(layout_features='*', name_IDs='*', name_languages='*', notdef_outline=True, glyph_names=True) subsetter = subset.Subsetter(options=options) subsetter.populate(glyphs=glyphs) subsetter.subset(font) for name in font["name"].names: if name.nameID in (1, 3, 4, 6): string = name.toUnicode() if name.nameID in (3, 6): string = string.replace("QuranColored", "Quran") else: string = string.replace("Quran Colored", "Quran") name.string = string.encode(name.getEncoding()) def main(): parser = argparse.ArgumentParser(description="Create a version of Amiri with colored marks using COLR/CPAL tables.") parser.add_argument("infile", metavar="INFILE", type=str, help="input font to process") parser.add_argument("outfile", metavar="OUTFILE", type=str, help="output font to write") args = parser.parse_args() font = TTFont(args.infile, recalcTimestamp=False) rename(font) font.save(args.outfile) if __name__ == "__main__": main() amiri-1.000/scripts/no-glyphnames.py000066400000000000000000000002251434272261000174350ustar00rootroot00000000000000import sys from fontTools.ttLib import TTFont for path in sys.argv[1:]: font = TTFont(path) font["post"].formatType = 3 font.save(path) amiri-1.000/sources/000077500000000000000000000000001434272261000142775ustar00rootroot00000000000000amiri-1.000/sources/Amiri.fea000066400000000000000000000012641434272261000160200ustar00rootroot00000000000000languagesystem DFLT dflt; languagesystem arab dflt; languagesystem arab ARA; languagesystem arab URD; languagesystem arab SND; languagesystem arab KSH; languagesystem arab MLY; languagesystem latn dflt; languagesystem latn TRK; #include "classes.fea" #include "local.fea" #ifndef QURAN #include "digits.fea" #endif #include "basic.fea" #include "kashida.fea" #include "quran.fea" #include "enclosing.fea" #ifndef QURAN #include "rtlm.fea" #endif #include "lellah.fea" #include "contextuals.fea" #include "stylisticsets.fea" #include "kerning.fea" #ifdef QURAN #include "post_mark.fea" #endif #ifndef QURAN #include "latin.fea" #ifdef ITALIC #include "italic_kerning.fea" #endif #endif amiri-1.000/sources/Amiri.glyphs000066400000000000000000253400761434272261000166110ustar00rootroot00000000000000{ .appVersion = "3148"; customParameters = ( { name = hheaAscender; value = 1124; }, { name = hheaDescender; value = -634; }, { name = hheaLineGap; value = 0; }, { name = typoAscender; value = 1124; }, { name = typoDescender; value = -634; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1850; }, { name = winDescent; value = 910; }, { name = underlinePosition; value = -512; }, { name = panose; value = ( 0, 0, 5, 0, 0, 0, 0, 0, 0, 0 ); }, { name = fsType; value = ( ); }, { name = "GASP Table"; value = { "65535" = 15; }; }, { name = "Use Typo Metrics"; value = 1; }, { name = glyphOrder; value = ( .notdef, space, exclam, parenleft, parenright, period, slash, bracketleft, backslash, bracketright, braceleft, bar, braceright, nbspace, brokenbar, guillemotleft, guillemotright, "number-ar", "year-ar", "footnotemarker-ar", "pagenumber-ar", "samvat-ar", "cuberoot-ar", "fourthroot-ar", "ray-ar", "perthousand-ar", "pertenthousand-ar", "afghani-ar", "comma-ar", "dateseparator-ar", "verseComma-ar", "misraComma-ar", "sallallahouAlayheWassallamcomb-ar", "alayheAssallamcomb-ar", "rehHahabove-ar", "rehDadabove-ar", "takhallusabove-ar", "tahabove-ar", "alefLamYehabove-ar", "zainabove-ar", "fathasmall-ar", "dammasmall-ar", "kasrasmall-ar", "semicolon-ar", "mark-ar", "endoftext-ar", "threedots-ar", "question-ar", "yehKashmiri-ar", "hamza-ar", "alefMadda-ar", "alefHamzaabove-ar", "wawHamzaabove-ar", "alefHamzabelow-ar", "yehHamzaabove-ar", "alef-ar", "beh-ar", "tehMarbuta-ar", "teh-ar", "theh-ar", "jeem-ar", "hah-ar", "khah-ar", "dal-ar", "thal-ar", "reh-ar", "zain-ar", "seen-ar", "sheen-ar", "sad-ar", "dad-ar", "tah-ar", "zah-ar", "ain-ar", "ghain-ar", "kehehTwodotshorizontalabove-ar", "kehehThreedotsbelow-ar", "yehFarsiVinverted-ar", "yehFarsiTwodotsabove-ar", "yehFarsiThreedotsabove-ar", "kashida-ar", "feh-ar", "qaf-ar", "kaf-ar", "lam-ar", "meem-ar", "noon-ar", "heh-ar", "waw-ar", "alefMaksura-ar", "yeh-ar", "fathatan-ar", "dammatan-ar", "kasratan-ar", "fatha-ar", "damma-ar", "kasra-ar", "shadda-ar", "sukun-ar", "madda-ar", "hamzaabove-ar", "hamzabelow-ar", "alefbelow-ar", "dammainverted-ar", "noonghunnaabove-ar", "fathaHorizont-ar", "vabove-ar", "vinvertedabove-ar", "dotvowelbelow-ar", "dammareversed-ar", "fathatwodots-ar", "wavyhamzabelow-ar", "zero-ar", "one-ar", "two-ar", "three-ar", "four-ar", "five-ar", "six-ar", "seven-ar", "eight-ar", "nine-ar", "percent-ar", "decimalseparator-ar", "thousandseparator-ar", "asterisk-ar", "behDotless-ar", "qafDotless-ar", "alefabove-ar", "alefWasla-ar", "alefWavyhamzaabove-ar", "alefWavyhamzabelow-ar", "highhamza-ar", "highhamzaAlef-ar", "highhamzaWaw-ar", "uHamzaabove-ar", "highhamzaYeh-ar", "tteh-ar", "tteheh-ar", "beeh-ar", "tehRing-ar", "tehThreedotsdown-ar", "peh-ar", "teheh-ar", "beheh-ar", "hahHamzaabove-ar", "hahTwodotsverticalabove-ar", "nyeh-ar", "dyeh-ar", "hahThreedotsabove-ar", "tcheh-ar", "tcheheh-ar", "ddal-ar", "dalRing-ar", "dalDotbelow-ar", "dalDotbelowTah-ar", "dahal-ar", "ddahal-ar", "dul-ar", "dalThreedotsdown-ar", "dalFourdots-ar", "rreh-ar", "rehv-ar", "rehRing-ar", "rehDotbelow-ar", "rehVbelow-ar", "rehDotbelowdotabove-ar", "rehTwodots-ar", "jeh-ar", "rehFourdots-ar", "seenDotbelowDotabove-ar", "seenThreedotsbelow-ar", "sheenThreedotsbelow-ar", "sadTwodotsbelow-ar", "sadThreedots-ar", "tahThreedots-ar", "ainThreedots-ar", "fehDotless-ar", "fehDotmovedbelow-ar", "fehDotbelow-ar", "veh-ar", "fehThreedotsbelow-ar", "peheh-ar", "qafDotabove-ar", "qafThreedotsabove-ar", "keheh-ar", "kafswash-ar", "kafRing-ar", "kafDotabove-ar", "ng-ar", "kafThreedotsbelow-ar", "gaf-ar", "gafRing-ar", "ngoeh-ar", "gafTwodotsbelow-ar", "gueh-ar", "gafThreedots-ar", "lamVabove-ar", "lamDotabove-ar", "lamThreedotsabove-ar", "lamThreedotsbelow-ar", "noonDotbelow-ar", "noonghunna-ar", "rnoon-ar", "noonRing-ar", "noonThreedotsabove-ar", "hehDoachashmee-ar", "tchehDotabove-ar", "hehHamzaabove-ar", "hehgoal-ar", "hehgoalHamzaabove-ar", "tehMarbutagoal-ar", "wawring-ar", "kirghizoe-ar", "oe-ar", "u-ar", "yu-ar", "kirghizyu-ar", "wawTwodots-ar", "ve-ar", "yehFarsi-ar", "yehTail-ar", "yehVabove-ar", "wawDotabove-ar", "e-ar", "yehThreedotsbelow-ar", "yehbarree-ar", "yehbarreeHamzaabove-ar", "fullstop-ar", "ae-ar", "sadLamAlefMaksuraabove-ar", "qafLamAlefMaksuraabove-ar", "meemabove-ar", "lamAlefabove-ar", "jeemabove-ar", "threedotsabove-ar", "seenabove-ar", "endofayah-ar", "hizb-ar", "sukunround-ar", "sukunoval-ar", "hahabove-ar", "meemStopabove-ar", "seenbelow-ar", "maddalong-ar", "wawSmall-ar", "yehSmall-ar", "yehabove-ar", "noonabove-ar", "sajdah-ar", "rhombusStopbelow-ar", "rhombusStopabove-ar", "dotStopabove-ar", "meembelow-ar", "dalVinvertedabove-ar", "rehVinvertedabove-ar", "zeroFarsi-ar", "oneFarsi-ar", "twoFarsi-ar", "threeFarsi-ar", "fourFarsi-ar", "fiveFarsi-ar", "sixFarsi-ar", "sevenFarsi-ar", "eightFarsi-ar", "nineFarsi-ar", "sheenDotbelow-ar", "dadDotbelow-ar", "ghainDotbelow-ar", "sindhiampersand-ar", "sindhipostpositionmen-ar", "hehVinvertedabove-ar", "behThreedotshorizontalbelow-ar", "behThreedotsupabove-ar", "behThreedotsupbelow-ar", "tehThreedotsupbelow-ar", "behTwodotsbelowDotabove-ar", "behVinvertedbelow-ar", "behVabove-ar", "hahTwodotshorizontalabove-ar", "hahThreedotsupbelow-ar", "dalTwodotsverticalbelowTah-ar", "dalVinvertedbelow-ar", "rehStroke-ar", "seenFourdotsabove-ar", "ainTwodotshorizontalabove-ar", "ainThreedotsdownabove-ar", "ainTwodotsverticalabove-ar", "fehTwodotsbelow-ar", "fehThreedotsupbelow-ar", "kehehDotabove-ar", "kehehThreedotsabove-ar", "kehehThreedotsupbelow-ar", "meemDotabove-ar", "meemDotbelow-ar", "noonTwodotsbelow-ar", "noonTahabove-ar", "noonVabove-ar", "lamBar-ar", "rehTwodotsverticalabove-ar", "rehHamzaabove-ar", "seenTwodotsverticalabove-ar", "hahTahbelow-ar", "hahTahTwodotshorizontalabove-ar", "seenTahTwodotshorizontalabove-ar", "rehTwodotshorizontalaboveTahabove-ar", "hahTahabove-ar", "alefTwoabove-ar", "alefThreeabove-ar", "yehFarsiTwoabove-ar", "yehFarsiThreeabove-ar", "yehFarsiFourbelow-ar", "wawTwoabove-ar", "wawThreeAbove-ar", "yehbarreeTwoabove-ar", "yehbarreeThreeabove-ar", "hahFourbelow-ar", "seenFourabove-ar", "seenVinvertedabove-ar", "kafTwodotshorizontalabove-ar", "pound-ar", "piastre-ar", "behVbelow-ar", "yehRohingya-ar", "behMeemabove-ar", "pehMeemabove-ar", "tehTehabove-ar", "rehNoonabove-ar", "yehTwodotsbelowNoonabove-ar", "fehAfrican-ar", "qafAfrican-ar", "noonAfrican-ar", "fathaCurly-ar", "dammaCurly-ar", "kasraCurly-ar", "fathatanCurly-ar", "dammatanCurly-ar", "kasratanCurly-ar", "toneonedotabove-ar", "tonetwodotsabove-ar", "toneloopabove-ar", "toneonedotbelow-ar", "tonetwodotsbelow-ar", "toneloopbelow-ar", "openfathatan-ar", "opendammatan-ar", "openkasratan-ar", "highwaw-ar", "fathaRing-ar", "fathaDotabove-ar", "kasraDotbelow-ar", "leftarrowheadabove-ar", "rightarrowheadabove-ar", "leftarrowheadbelow-ar", "rightarrowheadbelow-ar", "doublerightarrowheadabove-ar", "doublerightarrowheadDotabove-ar", "rightarrowheadDotabove-ar", "dammaDot-ar", enquad, emquad, enspace, emspace, threeperemspace, fourperemspace, sixperemspace, figurespace, punctuationspace, thinspace, hairspace, zerowidthspace, zerowidthnonjoiner, zerowidthjoiner, lefttorightmark, righttoleftmark, lineseparator, paragraphseparator, lefttorightembedding, righttoleftembedding, popdirectionalformatting, lefttorightoverride, righttoleftoverride, narrownbspace, fraction, reversedsemicolon, dottedCircle, commareversed, uniFB50, uniFB51, uniFB52, uniFB53, uniFB54, uniFB55, uniFB56, uniFB57, uniFB58, uniFB59, uniFB5A, uniFB5B, uniFB5C, uniFB5D, uniFB5E, uniFB5F, uniFB60, uniFB61, uniFB62, uniFB63, uniFB64, uniFB65, uniFB66, uniFB67, uniFB68, uniFB69, uniFB6A, uniFB6B, uniFB6C, uniFB6D, uniFB6E, uniFB6F, uniFB70, uniFB71, uniFB72, uniFB73, uniFB74, uniFB75, uniFB76, uniFB77, uniFB78, uniFB79, uniFB7A, uniFB7B, uniFB7C, uniFB7D, uniFB7E, uniFB7F, uniFB80, uniFB81, uniFB82, uniFB83, uniFB84, uniFB85, uniFB86, uniFB87, uniFB88, uniFB89, uniFB8A, uniFB8B, uniFB8C, uniFB8D, uniFB8E, uniFB8F, uniFB90, uniFB91, uniFB92, uniFB93, uniFB94, uniFB95, uniFB96, uniFB97, uniFB98, uniFB99, uniFB9A, uniFB9B, uniFB9C, uniFB9D, uniFB9E, uniFB9F, uniFBA0, uniFBA1, uniFBA2, uniFBA3, uniFBA4, uniFBA5, uniFBA6, uniFBA7, uniFBA8, uniFBA9, uniFBAA, uniFBAB, uniFBAC, uniFBAD, uniFBAE, uniFBAF, uniFBB0, uniFBB1, "dotaboveSymbol-ar", "dotbelowSymbol-ar", "twodotshorizontalaboveSymbol-ar", "twodotshorizontalbelowSymbol-ar", "threedotsupaboveSymbol-ar", "threedotsupbelowSymbol-ar", "threedotsdownaboveSymbol-ar", "threedotsdownbelowSymbol-ar", "fourdotsaboveSymbol-ar", "fourdotsbelowSymbol-ar", "doubleverticalbarbelowSymbol-ar", "twodotsverticalaboveSymbol-ar", "twodotsverticalbelowSymbol-ar", "ringSymbol-ar", uniFBC0, "tahbelowSymbol-ar", uniFBD3, uniFBD4, uniFBD5, uniFBD6, uniFBD7, uniFBD8, uniFBD9, uniFBDA, uniFBDB, uniFBDC, uniFBDD, uniFBDE, uniFBDF, uniFBE0, uniFBE1, uniFBE2, uniFBE3, uniFBE4, uniFBE5, uniFBE6, uniFBE7, uniFBE8, uniFBE9, uniFBEA, uniFBEB, uniFBEC, uniFBED, uniFBEE, uniFBEF, uniFBF0, uniFBF1, uniFBF2, uniFBF3, uniFBF4, uniFBF5, uniFBF6, uniFBF7, uniFBF8, uniFBF9, uniFBFA, uniFBFB, uniFBFC, uniFBFD, uniFBFE, uniFBFF, uniFC00, uniFC01, uniFC02, uniFC03, uniFC04, uniFC05, uniFC06, uniFC07, uniFC08, uniFC09, uniFC0A, uniFC0B, uniFC0C, uniFC0D, uniFC0E, uniFC0F, uniFC10, uniFC11, uniFC12, uniFC13, uniFC14, uniFC15, uniFC16, uniFC17, uniFC18, uniFC19, uniFC1A, uniFC1B, uniFC1C, uniFC1D, uniFC1E, uniFC1F, uniFC20, uniFC21, uniFC22, uniFC23, uniFC24, uniFC25, uniFC26, uniFC27, uniFC28, uniFC29, uniFC2A, uniFC2B, uniFC2C, uniFC2D, uniFC2E, uniFC2F, uniFC30, uniFC31, uniFC32, uniFC33, uniFC34, uniFC35, uniFC36, uniFC37, uniFC38, uniFC39, uniFC3A, uniFC3B, uniFC3C, uniFC3D, uniFC3E, uniFC3F, uniFC40, uniFC41, uniFC42, uniFC43, uniFC44, uniFC45, uniFC46, uniFC47, uniFC48, uniFC49, uniFC4A, uniFC4B, uniFC4C, uniFC4D, uniFC4E, uniFC4F, uniFC50, uniFC51, uniFC52, uniFC53, uniFC54, uniFC55, uniFC56, uniFC57, uniFC58, uniFC59, uniFC5A, "thalAlefabove-ar", "rehAlefabove-ar", "alefMaksuraAlefabove-ar", uniFC5E, uniFC5F, uniFC60, uniFC61, uniFC62, uniFC63, uniFC64, uniFC65, uniFC66, uniFC67, uniFC68, uniFC69, uniFC6A, uniFC6B, uniFC6C, uniFC6D, uniFC6E, uniFC6F, uniFC70, uniFC71, uniFC72, uniFC73, uniFC74, uniFC75, uniFC76, uniFC77, uniFC78, uniFC79, uniFC7A, uniFC7B, uniFC7C, uniFC7D, uniFC7E, uniFC7F, uniFC80, uniFC81, uniFC82, uniFC83, uniFC84, uniFC85, uniFC86, uniFC87, uniFC88, uniFC89, uniFC8A, uniFC8B, uniFC8C, uniFC8D, uniFC8E, uniFC8F, "alefMaksuraAlefabove-ar.fina", uniFC91, uniFC92, uniFC93, uniFC94, uniFC95, uniFC96, uniFC97, uniFC98, uniFC99, uniFC9A, uniFC9B, uniFC9C, uniFC9D, uniFC9E, uniFC9F, uniFCA0, uniFCA1, uniFCA2, uniFCA3, uniFCA4, uniFCA5, uniFCA6, uniFCA7, uniFCA8, uniFCA9, uniFCAA, uniFCAB, uniFCAC, uniFCAD, uniFCAE, uniFCAF, uniFCB0, uniFCB1, uniFCB2, uniFCB3, uniFCB4, uniFCB5, uniFCB6, uniFCB7, uniFCB8, uniFCB9, uniFCBA, uniFCBB, uniFCBC, uniFCBD, uniFCBE, uniFCBF, uniFCC0, uniFCC1, uniFCC2, uniFCC3, uniFCC4, uniFCC5, uniFCC6, uniFCC7, uniFCC8, uniFCC9, uniFCCA, uniFCCB, uniFCCC, uniFCCD, uniFCCE, uniFCCF, uniFCD0, uniFCD1, uniFCD2, uniFCD3, uniFCD4, uniFCD5, uniFCD6, uniFCD7, uniFCD8, "hehAlefabove-ar.init", uniFCDA, uniFCDB, uniFCDC, uniFCDD, uniFCDE, uniFCDF, uniFCE0, uniFCE1, uniFCE2, uniFCE3, uniFCE4, uniFCE5, uniFCE6, uniFCE7, uniFCE8, uniFCE9, uniFCEA, uniFCEB, uniFCEC, uniFCED, uniFCEE, uniFCEF, uniFCF0, uniFCF1, uniFCF2, uniFCF3, uniFCF4, uniFCF5, uniFCF6, uniFCF7, uniFCF8, uniFCF9, uniFCFA, uniFCFB, uniFCFC, uniFCFD, uniFCFE, uniFCFF, uniFD00, uniFD01, uniFD02, uniFD03, uniFD04, uniFD05, uniFD06, uniFD07, uniFD08, uniFD09, uniFD0A, uniFD0B, uniFD0C, uniFD0D, uniFD0E, uniFD0F, uniFD10, uniFD11, uniFD12, uniFD13, uniFD14, uniFD15, uniFD16, uniFD17, uniFD18, uniFD19, uniFD1A, uniFD1B, uniFD1C, uniFD1D, uniFD1E, uniFD1F, uniFD20, uniFD21, uniFD22, uniFD23, uniFD24, uniFD25, uniFD26, uniFD27, uniFD28, uniFD29, uniFD2A, uniFD2B, uniFD2C, uniFD2D, uniFD2E, uniFD2F, uniFD30, uniFD31, uniFD32, uniFD33, uniFD34, uniFD35, uniFD36, uniFD37, uniFD38, uniFD39, uniFD3A, uniFD3B, "alefFathatan-ar.fina", "alefFathatan-ar", "parenleft-ar", "parenright-ar", uniFD50, uniFD51, uniFD52, uniFD53, uniFD54, uniFD55, uniFD56, uniFD57, uniFD58, uniFD59, uniFD5A, uniFD5B, uniFD5C, uniFD5D, uniFD5E, uniFD5F, uniFD60, uniFD61, uniFD62, uniFD63, uniFD64, uniFD65, uniFD66, uniFD67, uniFD68, uniFD69, uniFD6A, uniFD6B, uniFD6C, uniFD6D, uniFD6E, uniFD6F, uniFD70, uniFD71, uniFD72, uniFD73, uniFD74, uniFD75, uniFD76, uniFD77, uniFD78, uniFD79, uniFD7A, uniFD7B, uniFD7C, uniFD7D, uniFD7E, uniFD7F, uniFD80, uniFD81, uniFD82, uniFD83, uniFD84, uniFD85, uniFD86, uniFD87, uniFD88, uniFD89, uniFD8A, uniFD8B, uniFD8C, uniFD8D, uniFD8E, uniFD8F, uniFD92, uniFD93, uniFD94, uniFD95, uniFD96, uniFD97, uniFD98, uniFD99, uniFD9A, uniFD9B, uniFD9C, uniFD9D, uniFD9E, uniFD9F, uniFDA0, uniFDA1, uniFDA2, uniFDA3, uniFDA4, uniFDA5, uniFDA6, uniFDA7, uniFDA8, uniFDA9, uniFDAA, uniFDAB, uniFDAC, uniFDAD, uniFDAE, uniFDAF, uniFDB0, uniFDB1, uniFDB2, uniFDB3, uniFDB4, uniFDB5, uniFDB6, uniFDB7, uniFDB8, uniFDB9, uniFDBA, uniFDBB, uniFDBC, uniFDBD, uniFDBE, uniFDBF, uniFDC0, uniFDC1, uniFDC2, uniFDC3, uniFDC4, uniFDC5, uniFDC6, uniFDC7, uniFDF0, uniFDF1, uniFDF2, uniFDF3, uniFDF4, uniFDF5, uniFDF6, uniFDF7, uniFDF8, uniFDF9, uniFDFA, uniFDFB, rial, "bismillah-ar", uniFE70, uniFE71, uniFE72, uniFE74, uniFE76, uniFE77, uniFE78, uniFE79, uniFE7A, uniFE7B, uniFE7C, uniFE7D, uniFE7E, uniFE7F, uniFE80, uniFE81, uniFE82, uniFE83, uniFE84, uniFE85, uniFE86, uniFE87, uniFE88, uniFE89, uniFE8A, uniFE8B, uniFE8C, uniFE8D, uniFE8E, uniFE8F, uniFE90, uniFE91, uniFE92, uniFE93, uniFE94, uniFE95, uniFE96, uniFE97, uniFE98, uniFE99, uniFE9A, uniFE9B, uniFE9C, uniFE9D, uniFE9E, uniFE9F, uniFEA0, uniFEA1, uniFEA2, uniFEA3, uniFEA4, uniFEA5, uniFEA6, uniFEA7, uniFEA8, uniFEA9, uniFEAA, uniFEAB, uniFEAC, uniFEAD, uniFEAE, uniFEAF, uniFEB0, uniFEB1, uniFEB2, uniFEB3, uniFEB4, uniFEB5, uniFEB6, uniFEB7, uniFEB8, uniFEB9, uniFEBA, uniFEBB, uniFEBC, uniFEBD, uniFEBE, uniFEBF, uniFEC0, uniFEC1, uniFEC2, uniFEC3, uniFEC4, uniFEC5, uniFEC6, uniFEC7, uniFEC8, uniFEC9, uniFECA, uniFECB, uniFECC, uniFECD, uniFECE, uniFECF, uniFED0, uniFED1, uniFED2, uniFED3, uniFED4, uniFED5, uniFED6, uniFED7, uniFED8, uniFED9, uniFEDA, uniFEDB, uniFEDC, uniFEDD, uniFEDE, uniFEDF, uniFEE0, uniFEE1, uniFEE2, uniFEE3, uniFEE4, uniFEE5, uniFEE6, uniFEE7, uniFEE8, uniFEE9, uniFEEA, uniFEEB, uniFEEC, uniFEED, uniFEEE, uniFEEF, uniFEF0, uniFEF1, uniFEF2, uniFEF3, uniFEF4, uniFEF5, uniFEF6, uniFEF7, uniFEF8, uniFEF9, uniFEFA, uniFEFB, uniFEFC, zeroWidthNoBreakSpace, u1EE00, u1EE01, u1EE02, u1EE03, u1EE05, u1EE06, u1EE07, u1EE08, u1EE09, u1EE0A, u1EE0B, u1EE0C, u1EE0D, u1EE0E, u1EE0F, u1EE10, u1EE11, u1EE12, u1EE13, u1EE14, u1EE15, u1EE16, u1EE17, u1EE18, u1EE19, u1EE1A, u1EE1B, u1EE1C, u1EE1D, u1EE1E, u1EE1F, u1EE21, u1EE22, u1EE24, u1EE27, u1EE29, u1EE2A, u1EE2B, u1EE2C, u1EE2D, u1EE2E, u1EE2F, u1EE30, u1EE31, u1EE32, u1EE34, u1EE35, u1EE36, u1EE37, u1EE39, u1EE3B, u1EE42, u1EE47, u1EE49, u1EE4B, u1EE4D, u1EE4E, u1EE4F, u1EE51, u1EE52, u1EE54, u1EE57, u1EE59, u1EE5B, u1EE5D, u1EE5F, u1EE61, u1EE62, u1EE64, u1EE67, u1EE68, u1EE69, u1EE6A, u1EE6C, u1EE6D, u1EE6E, u1EE6F, u1EE70, u1EE71, u1EE72, u1EE74, u1EE75, u1EE76, u1EE77, u1EE79, u1EE7A, u1EE7B, u1EE7C, u1EE7E, u1EE80, u1EE81, u1EE82, u1EE83, u1EE84, u1EE85, u1EE86, u1EE87, u1EE88, u1EE89, u1EE8B, u1EE8C, u1EE8D, u1EE8E, u1EE8F, u1EE90, u1EE91, u1EE92, u1EE93, u1EE94, u1EE95, u1EE96, u1EE97, u1EE98, u1EE99, u1EE9A, u1EE9B, u1EEA1, u1EEA2, u1EEA3, u1EEA5, u1EEA6, u1EEA7, u1EEA8, u1EEA9, u1EEAB, u1EEAC, u1EEAD, u1EEAE, u1EEAF, u1EEB0, u1EEB1, u1EEB2, u1EEB3, u1EEB4, u1EEB5, u1EEB6, u1EEB7, u1EEB8, u1EEB9, u1EEBA, u1EEBB, u1EEF0, u1EEF1, aAlf.fina.alt, aAlf.fina, aAlf.isol, aAyn.fina, aAyn.init, aAyn.isol, aAyn.medi, aBaa.fina, aBaa.init, aBaa.isol, aBaa.medi, aDal.fina, aDal.isol, aFaa.fina, aFaa.init, aFaa.isol, aFaa.medi, aHaa.fina, aHaa.init, aHaa.isol, aHaa.medi, aHeh.fina, aHeh.init, aHeh.isol, aHeh.medi, aKaf.fina, aKaf.init.alt, aKaf.init, aKaf.isol, aKaf.medi, aLam.fina, aLam.init, aLam.isol, aLam.medi, aMem.fina.alt, aMem.fina, aMem.init, aMem.isol, aMem.medi, aNon.fina.alt, aNon.fina, aNon.isol.alt, aNon.isol, aQaf.fina, aQaf.isol, aRaa.fina.alt2, aRaa.fina, aRaa.isol, aSad.fina, aSad.init, aSad.isol, aSad.medi, aSen.fina, aSen.init, aSen.isol, aSen.medi, aTaa.fina, aTaa.init, aTaa.isol, aTaa.medi, aWaw.fina, aWaw.isol, aYaa.fina, aYaa.isol, aLam.medi.LamMemFina, aMem.fina.LamMemFina, aBaa.init.BaaRaaIsol, aRaa.fina.BaaRaaIsol, aLam.medi.LamWawFina, aWaw.fina.LamWawFina, aLam.init.LamHaaInit, aFaa.medi.FaaYaaFina, aYaa.fina.FaaYaaFina, aLam.init.LamLamHaaInit, aLam.medi.LamLamHaaInit, aHaa.medi.LamLamHaaInit, aBaa.medi.BaaMemFina, aMem.fina.BaaMemFina, aSad.init.AboveHaa, aLam.init.LamBaaMemInit, aBaa.medi.LamBaaMemInit, aMem.medi.LamBaaMemInit, aBaa.init.BaaDal, aDal.fina.BaaDal, aBaa.init.BaaMemHaaInit, aMem.medi.BaaMemHaaInit, aHaa.medi.BaaMemHaaInit, aBaa.init.BaaBaaYaa, aBaa.medi.BaaBaaYaa, aYaa.fina.BaaBaaYaa, aLam.medi.LamYaaFina, aYaa.fina.LamYaaFina, aKaf.init.KafBaaInit, aBaa.medi.KafBaaInit, aLam.init.LamMemInit, aMem.medi.LamMemInit, aLam.init.LamAlfIsol, aAlf.fina.LamAlfIsol, aLam.init.LamHaaMemInit, aHaa.medi.LamHaaMemInit, aMem.medi.LamHaaMemInit, aBaa.medi.BaaBaaInit, aAyn.medi.AynYaaFina, aMem.init.MemRaaIsol, aRaa.fina.MemRaaIsol, aFaa.init.FaaHaaInit, aHaa.medi.FaaHaaInit, aHaa.init.HaaHaaInit, aLam.medi.LamQafFina, aQaf.fina.LamQafFina, aSen.init.AboveHaa, aMem.init.MemHaaInit, aBaa.init.BaaNonIsol, aNon.fina.BaaNonIsol, aKaf.medi.KafMemFina, aMem.fina.KafMemFina, aBaa.init.BaaSenInit, aSen.medi.BaaSenInit, aBaa.medi.BaaRaaFina, aRaa.fina.BaaRaaFina, aKaf.medi.KafRaaFina, aRaa.fina.KafRaaFina, aLam.init.LamHehInit, aHeh.medi.LamHehInit, aMem.init.MemHaaMemInit, aHaa.medi.MemHaaMemInit, aBaa.init.BaaMemInit, aMem.medi.BaaMemInit, aSen.init.SenHaaInit, aKaf.init.KafRaaIsol, aRaa.fina.KafRaaIsol, aAyn.init.AynHaaInit, aKaf.medi.KafYaaFina, aYaa.fina.KafYaaFina, aLam.init.LamMemHaaInit, aMem.medi.LamMemHaaInit, aHaa.medi.LamMemHaaInit, aLam.medi.LamAlfFina, aAlf.fina.LamAlfFina, aLam.medi.LamMemMedi, aMem.medi.LamMemMedi, "lam-ar.init.Lellah", "lam-ar.medi.Lellah", "heh-ar.fina.Lellah", aBaa.init.BaaBaaHaaInit, aBaa.medi.BaaBaaHaaInit, aHaa.medi.BaaBaaHaaInit, aBaa.medi.SenBaaMemInit, aMem.medi.SenBaaMemInit, aBaa.init.BaaBaaIsol, aBaa.fina.BaaBaaIsol, aBaa.init.BaaBaaMemInit, aBaa.medi.BaaBaaMemInit, aMem.medi.BaaBaaMemInit, aKaf.medi.KafBaaMedi, aBaa.medi.KafBaaMedi, aBaa.medi.BaaNonFina, aNon.fina.BaaNonFina, aHaa.init.HaaRaaIsol, aRaa.fina.HaaRaaIsol, aHeh.init.HehHaaInit, aLam.init.LamRaaIsol, aRaa.fina.LamRaaIsol, aSad.init.SadHaaInit, aHaa.medi.SadHaaInit, aBaa.medi.BaaYaaFina, aYaa.fina.BaaYaaFina, aBaa.init.BaaSenAltInit, aSen.medi.BaaSenAltInit, aRaa.fina.PostTooth, aYaa.fina.PostTooth, aBaa.init.AboveHaa, aBaa.init.BaaHaaInit, aBaa.init.BaaHaaMemInit, aHaa.medi.BaaHaaMemInit, aHaa.fina.AboveHaaIsol, aLam.init.LamHaaHaaInit, aHaa.medi.1LamHaaHaaInit, aHaa.medi.2LamHaaHaaInit, aAyn.init.Finjani, aHaa.init.Finjani, aHaa.medi.Finjani, aSen.init.PreYaa, aSen.medi.PreYaa, aSad.init.PreYaa, aSad.medi.PreYaa, aBaa.init.High, "dotabove-ar", "twodotshorizontalabove-ar", "threedotsupabove-ar", "dotbelow-ar", "twodotshorizontalbelow-ar", "threedotsupbelow-ar", aKaf.isol.alt, aKaf.medi.alt, "miniKeheh-ar", dash.kaf, aKaf.fina.alt, "threedotsdownabove-ar", "threedotsdownbelow-ar", "gafsarkashabove-ar", aBaa.medi.High, smalltaa.above, "twodotsverticalabove-ar", "twodotsverticalbelow-ar", ring.below, aSen.fina.BaaSen, aMem.fina.PostTooth, "kashida-ar.LamKaf.1", dot.alt1, "gafsarkashabove-ar.alt2", "gafsarkashabove-ar.alt1", aBaa.init.Wide, aHaa.medi.HaaHaaInit, aHaa.medi.AynHaaInit, aMem.medi.LamMemInitTatweel, aHeh.init.AboveHaa, aHaa.init.AboveHaa, aAyn.init.AboveHaa, aHaa.fina.AboveHaaIsol2, aMem.init.AboveHaa, aKaf.init.AboveHaa, "fourdotsabove-ar", "fourdotsbelow-ar", "threedotshorizontalabove-ar", "threedotshorizontalbelow-ar", aYaa.tail, "wavyhamzaabove-ar", "vbelow-ar", "vinvertedbelow-ar", "tahbelow-ar", twostrokes.below, "wasla-ar", "fathatan-ar.small", "fatha-ar.small", "opendammatan-ar.small", "damma-ar.small", "sukun-ar.small2", "kasra-ar.small2", damma.mark, hamzadamma.mark, aAlf.dagger, dot.1, dot.2, dash.kaf_gaf, "dotbelow-ar.l", "twodotshorizontalbelow-ar.l", "threedotsupbelow-ar.l", "threedotsdownbelow-ar.l", "twodotsverticalbelow-ar.l", "fourdotsbelow-ar.l", "threedotshorizontalbelow-ar.l", "vinvertedbelow-ar.low", "stroke-ar", "twoabove-ar", "threeabove-ar", "fourabove-ar", "fourbelow-ar", "fourFarsi-ar.urd", "sixFarsi-ar.urd", "sevenFarsi-ar.urd", aKaf.init.KafLam, aKaf.fina.KafKafFina, aLam.medi.KafLam, aLam.medi.KafLamMemMedi, aKaf.medi.KafLam, aLam.medi.KafLamHehIsol, aLam.medi.KafLamYaa, aLam.medi.KafLamAlf, aLam.fina.KafLam, aAlf.fina.KafAlf, aKaf.init.KafMemAlf, aKaf.medi.KafMemAlf, aMem.medi.KafMemAlf, aLam.medi.KafMemLam, aLam.fina.KafMemLam, aAlf.fina.KafMemAlf, at.ara, aKaf.init.KafHeh, aKaf.medi.KafHeh, aHeh.fina.KafHeh, aDal.fina.KafDal, aLam.init.LamHeh, aLam.medi.LamHeh, aHeh.fina.LamHeh, aDal.fina.LamDal, aKaf.medi.KafMemMedi, aKaf.init.KafMemInit, aAyn.init.AynMemInit, aFaa.init.FaaMemInit, aHaa.init.HaaMemInit, aHeh.init.HehMemInit, aMem.medi.KafMemMedi, aSen.init.SenMemInit, aSad.init.SadMemInit, aMem.init.MemMemInit, aMem.medi.SenMemInit, aKaf.init.KafYaaIsol, aBaa.init.BaaYaaIsol, aHaa.init.HaaYaaIsol, aMem.init.MemYaaIsol, aFaa.init.FaaYaaIsol, aAyn.init.AynYaaIsol, aLam.init.LamYaaIsol, aHeh.init.HehYaaIsol, aYaa.fina.KafYaaIsol, aKaf.init.KafMemIsol, aLam.init.LamMemIsol, aBaa.init.BaaMemIsol, aMem.fina.KafMemIsol, aMem.medi.MemAlfFina, aBaa.medi.BaaMemAlfFina, aMem.medi.BaaMemAlfFina, aMem.medi.AlfPostTooth, aAlf.fina.MemAlfFina, aBaa.init.BaaHehInit, aBaa.medi.BaaHehMedi, aHeh.medi.BaaHehMedi, aHeh.medi.PostTooth, aLam.medi.KafLamMemFina, aLam.init.LamLamInit, aLam.medi.LamLamInit, aLam.medi.LamLamAlfIsol, aKaf.fina.LamKafIsol, aLam.fina.LamLamIsol, "lam-ar.medi.FaLellah", aLam.medi.LamLamMedi, aLam.medi.LamLamAlefFina, aLam.medi.LamLamMedi2, aKaf.fina.LamKafFina, aLam.fina.LamLamFina, aLam.medi.LamLamMemInit, aLam.medi.LamLamHehIsol, aLam.medi.LamLamYaaIsol, aLam.medi.LamLamMemMedi, aLam.medi.LamLamHehFina, aLam.medi.LamLamYaaFina, "alefHamzabelow-ar.fina", "alef-ar.fina", "alefThreeabove-ar.fina", "alefTwoabove-ar.fina", "alefHamzaabove-ar.fina", "alefMadda-ar.fina", "alefWavyhamzaabove-ar.fina", "alefWavyhamzabelow-ar.fina", "alefWasla-ar.fina", "ghainDotbelow-ar.fina", "ghain-ar.fina", "ainThreedotsdownabove-ar.fina", "ainTwodotshorizontalabove-ar.fina", "ainTwodotsverticalabove-ar.fina", "ainThreedots-ar.fina", "ain-ar.fina", "ghainDotbelow-ar.init", "ghain-ar.init", "ainThreedotsdownabove-ar.init", "ainTwodotshorizontalabove-ar.init", "ainTwodotsverticalabove-ar.init", "ainThreedots-ar.init", "ain-ar.init", "ghainDotbelow-ar.medi", "ghain-ar.medi", "ainThreedotsdownabove-ar.medi", "ainTwodotshorizontalabove-ar.medi", "ainTwodotsverticalabove-ar.medi", "ainThreedots-ar.medi", "ain-ar.medi", "behThreedotsupabove-ar.fina", "behThreedotshorizontalbelow-ar.fina", "tehThreedotsupbelow-ar.fina", "beheh-ar.fina", "teh-ar.fina", "behTwodotsbelowDotabove-ar.fina", "theh-ar.fina", "tteh-ar.fina", "tehRing-ar.fina", "behVabove-ar.fina", "behThreedotsupbelow-ar.fina", "behDotless-ar.fina", "teheh-ar.fina", "behVinvertedbelow-ar.fina", "tehThreedotsdown-ar.fina", "peh-ar.fina", "beeh-ar.fina", "beh-ar.fina", "tteheh-ar.fina", "yehFarsiFourbelow-ar.init", "beheh-ar.init", "yehFarsiThreeabove-ar.init", "noonRing-ar.init", "behThreedotshorizontalbelow-ar.init", "behVabove-ar.init", "noonTahabove-ar.init", "yehVabove-ar.init", "yehFarsiTwoabove-ar.init", "noonThreedotsabove-ar.init", "yehHamzaabove-ar.init", "behDotless-ar.init", "yehKashmiri-ar.init", "yeh-ar.init", "rnoon-ar.init", "teheh-ar.init", "behVinvertedbelow-ar.init", "tehThreedotsdown-ar.init", "peh-ar.init", "beeh-ar.init", "beh-ar.init", "tteheh-ar.init", "behThreedotsupabove-ar.init", "noon-ar.init", "tehThreedotsupbelow-ar.init", "behThreedotsupbelow-ar.init", "teh-ar.init", "highhamzaYeh-ar.init", "yehFarsiVinverted-ar.init", "theh-ar.init", "tteh-ar.init", "noonDotbelow-ar.init", "noonVabove-ar.init", "alefMaksura-ar.init", "tehRing-ar.init", "behTwodotsbelowDotabove-ar.init", "yehThreedotsbelow-ar.init", "e-ar.init", "noonghunna-ar.init", "yehFarsi-ar.init", "noonTwodotsbelow-ar.init", "yehFarsiFourbelow-ar.medi", "beheh-ar.medi", "yehFarsiThreeabove-ar.medi", "noonRing-ar.medi", "behThreedotshorizontalbelow-ar.medi", "behVabove-ar.medi", "noonTahabove-ar.medi", "yehVabove-ar.medi", "yehFarsiTwoabove-ar.medi", "noonThreedotsabove-ar.medi", "yehHamzaabove-ar.medi", "behDotless-ar.medi", "yehKashmiri-ar.medi", "yeh-ar.medi", "rnoon-ar.medi", "teheh-ar.medi", "behVinvertedbelow-ar.medi", "tehThreedotsdown-ar.medi", "peh-ar.medi", "beeh-ar.medi", "beh-ar.medi", "tteheh-ar.medi", "behThreedotsupabove-ar.medi", "noon-ar.medi", "tehThreedotsupbelow-ar.medi", "behThreedotsupbelow-ar.medi", "teh-ar.medi", "yehFarsiVinverted-ar.medi", "theh-ar.medi", "tteh-ar.medi", "noonDotbelow-ar.medi", "noonVabove-ar.medi", "alefMaksura-ar.medi", "tehRing-ar.medi", "behTwodotsbelowDotabove-ar.medi", "yehThreedotsbelow-ar.medi", "e-ar.medi", "noonghunna-ar.medi", "yehFarsi-ar.medi", "noonTwodotsbelow-ar.medi", "dalFourdots-ar.fina", "dalVinvertedabove-ar.fina", "dalRing-ar.fina", "ddal-ar.fina", "dalVinvertedbelow-ar.fina", "thal-ar.fina", "dal-ar.fina", "dalTwodotsverticalbelowTah-ar.fina", "dahal-ar.fina", "dalDotbelowTah-ar.fina", "dalDotbelow-ar.fina", "dalThreedotsdown-ar.fina", "dul-ar.fina", "ddahal-ar.fina", "fehTwodotsbelow-ar.fina", "fehThreedotsupbelow-ar.fina", "feh-ar.fina", "fehDotless-ar.fina", "fehDotmovedbelow-ar.fina", "fehDotbelow-ar.fina", "veh-ar.fina", "fehThreedotsbelow-ar.fina", "peheh-ar.fina", "qafDotless-ar.init", "fehThreedotsupbelow-ar.init", "fehTwodotsbelow-ar.init", "qaf-ar.init", "feh-ar.init", "qafThreedotsabove-ar.init", "fehDotless-ar.init", "fehDotmovedbelow-ar.init", "fehDotbelow-ar.init", "veh-ar.init", "fehThreedotsbelow-ar.init", "peheh-ar.init", "qafDotabove-ar.init", "qafDotless-ar.medi", "fehThreedotsupbelow-ar.medi", "fehTwodotsbelow-ar.medi", "qaf-ar.medi", "feh-ar.medi", "qafThreedotsabove-ar.medi", "fehDotless-ar.medi", "fehDotmovedbelow-ar.medi", "fehDotbelow-ar.medi", "veh-ar.medi", "fehThreedotsbelow-ar.medi", "peheh-ar.medi", "qafDotabove-ar.medi", "khah-ar.fina", "hah-ar.fina", "hahHamzaabove-ar.fina", "tcheheh-ar.fina", "hahThreedotsabove-ar.fina", "jeem-ar.fina", "hahTwodotsverticalabove-ar.fina", "hahTwodotshorizontalabove-ar.fina", "dyeh-ar.fina", "hahTahTwodotshorizontalabove-ar.fina", "hahTahbelow-ar.fina", "nyeh-ar.fina", "tchehDotabove-ar.fina", "hahFourbelow-ar.fina", "hahThreedotsupbelow-ar.fina", "hahTahabove-ar.fina", "tcheh-ar.fina", "khah-ar.init", "hah-ar.init", "hahHamzaabove-ar.init", "tcheheh-ar.init", "hahThreedotsabove-ar.init", "jeem-ar.init", "hahTwodotsverticalabove-ar.init", "hahTwodotshorizontalabove-ar.init", "dyeh-ar.init", "hahTahTwodotshorizontalabove-ar.init", "hahTahbelow-ar.init", "nyeh-ar.init", "tchehDotabove-ar.init", "hahFourbelow-ar.init", "hahThreedotsupbelow-ar.init", "hahTahabove-ar.init", "tcheh-ar.init", "khah-ar.medi", "hah-ar.medi", "hahHamzaabove-ar.medi", "tcheheh-ar.medi", "hahThreedotsabove-ar.medi", "jeem-ar.medi", "hahTwodotsverticalabove-ar.medi", "hahTwodotshorizontalabove-ar.medi", "dyeh-ar.medi", "hahTahTwodotshorizontalabove-ar.medi", "hahTahbelow-ar.medi", "nyeh-ar.medi", "tchehDotabove-ar.medi", "hahFourbelow-ar.medi", "hahThreedotsupbelow-ar.medi", "hahTahabove-ar.medi", "tcheh-ar.medi", "heh-ar.fina", "hehgoal-ar.fina", "tehMarbutagoal-ar.fina", "ae-ar.fina", "tehMarbuta-ar.fina", "heh-ar.init", "hehgoal-ar.init", "heh-ar.medi", "hehgoal-ar.medi", "kehehTwodotshorizontalabove-ar.fina", "kehehThreedotsbelow-ar.fina", "kafTwodotshorizontalabove-ar.fina", "kehehThreedotsupbelow-ar.fina", "kaf-ar.fina", "gafRing-ar.fina", "gueh-ar.fina", "gafTwodotsbelow-ar.fina", "kafRing-ar.fina", "kafDotabove-ar.fina", "ng-ar.fina", "kafThreedotsbelow-ar.fina", "gaf-ar.fina", "keheh-ar.fina", "gafThreedots-ar.fina", "kehehThreedotsabove-ar.fina", "kehehDotabove-ar.fina", "ngoeh-ar.fina", "kehehTwodotshorizontalabove-ar.init", "kehehThreedotsbelow-ar.init", "kafTwodotshorizontalabove-ar.init", "kehehThreedotsupbelow-ar.init", "kaf-ar.init", "gafRing-ar.init", "gueh-ar.init", "gafTwodotsbelow-ar.init", "kafRing-ar.init", "kafDotabove-ar.init", "ng-ar.init", "kafThreedotsbelow-ar.init", "gaf-ar.init", "keheh-ar.init", "gafThreedots-ar.init", "kehehThreedotsabove-ar.init", "kehehDotabove-ar.init", "ngoeh-ar.init", "kehehTwodotshorizontalabove-ar.medi", "kehehThreedotsbelow-ar.medi", "kafTwodotshorizontalabove-ar.medi", "kehehThreedotsupbelow-ar.medi", "kaf-ar.medi", "gafRing-ar.medi", "gueh-ar.medi", "gafTwodotsbelow-ar.medi", "kafRing-ar.medi", "kafDotabove-ar.medi", "ng-ar.medi", "kafThreedotsbelow-ar.medi", "gaf-ar.medi", "keheh-ar.medi", "gafThreedots-ar.medi", "kehehThreedotsabove-ar.medi", "kehehDotabove-ar.medi", "ngoeh-ar.medi", "lamVabove-ar.fina", "lamThreedotsabove-ar.fina", "lam-ar.fina", "lamThreedotsbelow-ar.fina", "lamDotabove-ar.fina", "lamBar-ar.fina", "lamVabove-ar.init", "lamThreedotsabove-ar.init", "lam-ar.init", "lamThreedotsbelow-ar.init", "lamDotabove-ar.init", "lamBar-ar.init", "lamVabove-ar.medi", "lamThreedotsabove-ar.medi", "lam-ar.medi", "lamThreedotsbelow-ar.medi", "lamDotabove-ar.medi", "lamBar-ar.medi", "meemDotabove-ar.fina", "meem-ar.fina", "meemDotbelow-ar.fina", "meemDotabove-ar.init", "meem-ar.init", "meemDotbelow-ar.init", "meemDotabove-ar.medi", "meem-ar.medi", "meemDotbelow-ar.medi", "noon-ar.fina", "noonTwodotsbelow-ar.fina", "noonghunna-ar.fina", "noonRing-ar.fina", "rnoon-ar.fina", "noonTahabove-ar.fina", "noonDotbelow-ar.fina", "noonVabove-ar.fina", "noonThreedotsabove-ar.fina", "qafThreedotsabove-ar.fina", "qafDotabove-ar.fina", "qaf-ar.fina", "qafDotless-ar.fina", "rreh-ar.fina", "rehv-ar.fina", "rehRing-ar.fina", "rehDotbelow-ar.fina", "rehVbelow-ar.fina", "rehDotbelowdotabove-ar.fina", "rehTwodots-ar.fina", "jeh-ar.fina", "rehFourdots-ar.fina", "rehStroke-ar.fina", "rehVinvertedabove-ar.fina", "zain-ar.fina", "rehTwodotshorizontalaboveTahabove-ar.fina", "reh-ar.fina", "rehTwodotsverticalabove-ar.fina", "rehHamzaabove-ar.fina", "sadTwodotsbelow-ar.fina", "dadDotbelow-ar.fina", "dad-ar.fina", "sadThreedots-ar.fina", "sad-ar.fina", "sadTwodotsbelow-ar.init", "dadDotbelow-ar.init", "dad-ar.init", "sadThreedots-ar.init", "sad-ar.init", "sadTwodotsbelow-ar.medi", "dadDotbelow-ar.medi", "dad-ar.medi", "sadThreedots-ar.medi", "sad-ar.medi", "sheenDotbelow-ar.fina", "seenTwodotsverticalabove-ar.fina", "seen-ar.fina", "seenVinvertedabove-ar.fina", "seenFourabove-ar.fina", "sheen-ar.fina", "seenTahTwodotshorizontalabove-ar.fina", "seenFourdotsabove-ar.fina", "seenDotbelowDotabove-ar.fina", "seenThreedotsbelow-ar.fina", "sheenThreedotsbelow-ar.fina", "sheenDotbelow-ar.init", "seenTwodotsverticalabove-ar.init", "seen-ar.init", "seenVinvertedabove-ar.init", "seenFourabove-ar.init", "sheen-ar.init", "seenTahTwodotshorizontalabove-ar.init", "seenFourdotsabove-ar.init", "seenDotbelowDotabove-ar.init", "seenThreedotsbelow-ar.init", "sheenThreedotsbelow-ar.init", "sheenDotbelow-ar.medi", "seenTwodotsverticalabove-ar.medi", "seen-ar.medi", "seenVinvertedabove-ar.medi", "seenFourabove-ar.medi", "sheen-ar.medi", "seenTahTwodotshorizontalabove-ar.medi", "seenFourdotsabove-ar.medi", "seenDotbelowDotabove-ar.medi", "seenThreedotsbelow-ar.medi", "sheenThreedotsbelow-ar.medi", "zah-ar.fina", "tah-ar.fina", "tahThreedots-ar.fina", "zah-ar.init", "tah-ar.init", "tahThreedots-ar.init", "zah-ar.medi", "tah-ar.medi", "tahThreedots-ar.medi", "ve-ar.fina", "wawHamzaabove-ar.fina", "wawTwodots-ar.fina", "wawDotabove-ar.fina", "wawTwoabove-ar.fina", "oe-ar.fina", "u-ar.fina", "wawring-ar.fina", "kirghizoe-ar.fina", "yu-ar.fina", "kirghizyu-ar.fina", "wawThreeAbove-ar.fina", "waw-ar.fina", "yehFarsiFourbelow-ar.fina", "yehThreedotsbelow-ar.fina", "yehFarsiTwoabove-ar.fina", "yehFarsiThreedotsabove-ar.fina", "yehFarsiVinverted-ar.fina", "yehFarsiTwodotsabove-ar.fina", "e-ar.fina", "alefMaksura-ar.fina", "yehFarsiThreeabove-ar.fina", "yehTail-ar.fina", "yehFarsi-ar.fina", "yehHamzaabove-ar.fina", "yehKashmiri-ar.fina", "yeh-ar.fina", "yehVabove-ar.fina", "lamVabove-ar.medi.LamMemFina", "lamThreedotsabove-ar.medi.LamMemFina", "lam-ar.medi.LamMemFina", "lamThreedotsbelow-ar.medi.LamMemFina", "lamDotabove-ar.medi.LamMemFina", "lamBar-ar.medi.LamMemFina", "meem-ar.fina.LamMemFina", "yehFarsiFourbelow-ar.init.BaaRaaIsol", "beheh-ar.init.BaaRaaIsol", "yehFarsiThreeabove-ar.init.BaaRaaIsol", "noonRing-ar.init.BaaRaaIsol", "behThreedotshorizontalbelow-ar.init.BaaRaaIsol", "behVabove-ar.init.BaaRaaIsol", "noonTahabove-ar.init.BaaRaaIsol", "yehVabove-ar.init.BaaRaaIsol", "yehFarsiTwoabove-ar.init.BaaRaaIsol", "noonThreedotsabove-ar.init.BaaRaaIsol", "yehHamzaabove-ar.init.BaaRaaIsol", "behDotless-ar.init.BaaRaaIsol", "yehKashmiri-ar.init.BaaRaaIsol", "yeh-ar.init.BaaRaaIsol", "rnoon-ar.init.BaaRaaIsol", "teheh-ar.init.BaaRaaIsol", "behVinvertedbelow-ar.init.BaaRaaIsol", "tehThreedotsdown-ar.init.BaaRaaIsol", "peh-ar.init.BaaRaaIsol", "beeh-ar.init.BaaRaaIsol", "beh-ar.init.BaaRaaIsol", "tteheh-ar.init.BaaRaaIsol", "behThreedotsupabove-ar.init.BaaRaaIsol", "noon-ar.init.BaaRaaIsol", "tehThreedotsupbelow-ar.init.BaaRaaIsol", "behThreedotsupbelow-ar.init.BaaRaaIsol", "teh-ar.init.BaaRaaIsol", "highhamzaYeh-ar.init.BaaRaaIsol", "yehFarsiVinverted-ar.init.BaaRaaIsol", "theh-ar.init.BaaRaaIsol", "tteh-ar.init.BaaRaaIsol", "noonDotbelow-ar.init.BaaRaaIsol", "noonVabove-ar.init.BaaRaaIsol", "alefMaksura-ar.init.BaaRaaIsol", "tehRing-ar.init.BaaRaaIsol", "behTwodotsbelowDotabove-ar.init.BaaRaaIsol", "yehThreedotsbelow-ar.init.BaaRaaIsol", "e-ar.init.BaaRaaIsol", "noonghunna-ar.init.BaaRaaIsol", "yehFarsi-ar.init.BaaRaaIsol", "noonTwodotsbelow-ar.init.BaaRaaIsol", "rreh-ar.fina.BaaRaaIsol", "rehv-ar.fina.BaaRaaIsol", "rehRing-ar.fina.BaaRaaIsol", "rehDotbelow-ar.fina.BaaRaaIsol", "rehVbelow-ar.fina.BaaRaaIsol", "rehDotbelowdotabove-ar.fina.BaaRaaIsol", "rehTwodots-ar.fina.BaaRaaIsol", "jeh-ar.fina.BaaRaaIsol", "rehFourdots-ar.fina.BaaRaaIsol", "rehStroke-ar.fina.BaaRaaIsol", "rehVinvertedabove-ar.fina.BaaRaaIsol", "zain-ar.fina.BaaRaaIsol", "rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsol", "reh-ar.fina.BaaRaaIsol", "rehTwodotsverticalabove-ar.fina.BaaRaaIsol", "rehHamzaabove-ar.fina.BaaRaaIsol", "lamVabove-ar.medi.LamWawFina", "lamThreedotsabove-ar.medi.LamWawFina", "lam-ar.medi.LamWawFina", "lamThreedotsbelow-ar.medi.LamWawFina", "lamDotabove-ar.medi.LamWawFina", "lamBar-ar.medi.LamWawFina", "ve-ar.fina.LamWawFina", "wawHamzaabove-ar.fina.LamWawFina", "wawTwodots-ar.fina.LamWawFina", "wawDotabove-ar.fina.LamWawFina", "wawTwoabove-ar.fina.LamWawFina", "oe-ar.fina.LamWawFina", "u-ar.fina.LamWawFina", "wawring-ar.fina.LamWawFina", "kirghizoe-ar.fina.LamWawFina", "yu-ar.fina.LamWawFina", "kirghizyu-ar.fina.LamWawFina", "wawThreeAbove-ar.fina.LamWawFina", "waw-ar.fina.LamWawFina", "lamVabove-ar.init.LamHaaInit", "lamThreedotsabove-ar.init.LamHaaInit", "lam-ar.init.LamHaaInit", "lamThreedotsbelow-ar.init.LamHaaInit", "lamDotabove-ar.init.LamHaaInit", "lamBar-ar.init.LamHaaInit", "qafDotless-ar.medi.FaaYaaFina", "fehThreedotsupbelow-ar.medi.FaaYaaFina", "fehTwodotsbelow-ar.medi.FaaYaaFina", "qaf-ar.medi.FaaYaaFina", "feh-ar.medi.FaaYaaFina", "qafThreedotsabove-ar.medi.FaaYaaFina", "fehDotless-ar.medi.FaaYaaFina", "fehDotmovedbelow-ar.medi.FaaYaaFina", "fehDotbelow-ar.medi.FaaYaaFina", "veh-ar.medi.FaaYaaFina", "fehThreedotsbelow-ar.medi.FaaYaaFina", "peheh-ar.medi.FaaYaaFina", "qafDotabove-ar.medi.FaaYaaFina", "yehFarsiFourbelow-ar.fina.FaaYaaFina", "yehThreedotsbelow-ar.fina.FaaYaaFina", "yehFarsiTwoabove-ar.fina.FaaYaaFina", "yehFarsiThreedotsabove-ar.fina.FaaYaaFina", "yehFarsiVinverted-ar.fina.FaaYaaFina", "yehFarsiTwodotsabove-ar.fina.FaaYaaFina", "e-ar.fina.FaaYaaFina", "alefMaksura-ar.fina.FaaYaaFina", "yehFarsiThreeabove-ar.fina.FaaYaaFina", "yehTail-ar.fina.FaaYaaFina", "yehFarsi-ar.fina.FaaYaaFina", "yehHamzaabove-ar.fina.FaaYaaFina", "yehKashmiri-ar.fina.FaaYaaFina", "yeh-ar.fina.FaaYaaFina", "yehVabove-ar.fina.FaaYaaFina", "lamVabove-ar.init.LamLamHaaInit", "lamThreedotsabove-ar.init.LamLamHaaInit", "lam-ar.init.LamLamHaaInit", "lamThreedotsbelow-ar.init.LamLamHaaInit", "lamDotabove-ar.init.LamLamHaaInit", "lamBar-ar.init.LamLamHaaInit", "lamVabove-ar.medi.LamLamHaaInit", "lamThreedotsabove-ar.medi.LamLamHaaInit", "lam-ar.medi.LamLamHaaInit", "lamThreedotsbelow-ar.medi.LamLamHaaInit", "lamDotabove-ar.medi.LamLamHaaInit", "lamBar-ar.medi.LamLamHaaInit", "khah-ar.medi.LamLamHaaInit", "hah-ar.medi.LamLamHaaInit", "hahHamzaabove-ar.medi.LamLamHaaInit", "tcheheh-ar.medi.LamLamHaaInit", "hahThreedotsabove-ar.medi.LamLamHaaInit", "jeem-ar.medi.LamLamHaaInit", "hahTwodotsverticalabove-ar.medi.LamLamHaaInit", "hahTwodotshorizontalabove-ar.medi.LamLamHaaInit", "dyeh-ar.medi.LamLamHaaInit", "hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit", "hahTahbelow-ar.medi.LamLamHaaInit", "nyeh-ar.medi.LamLamHaaInit", "tchehDotabove-ar.medi.LamLamHaaInit", "hahFourbelow-ar.medi.LamLamHaaInit", "hahThreedotsupbelow-ar.medi.LamLamHaaInit", "hahTahabove-ar.medi.LamLamHaaInit", "tcheh-ar.medi.LamLamHaaInit", "yehFarsiFourbelow-ar.medi.BaaMemFina", "beheh-ar.medi.BaaMemFina", "yehFarsiThreeabove-ar.medi.BaaMemFina", "noonRing-ar.medi.BaaMemFina", "behThreedotshorizontalbelow-ar.medi.BaaMemFina", "behVabove-ar.medi.BaaMemFina", "noonTahabove-ar.medi.BaaMemFina", "yehVabove-ar.medi.BaaMemFina", "yehFarsiTwoabove-ar.medi.BaaMemFina", "noonThreedotsabove-ar.medi.BaaMemFina", "yehHamzaabove-ar.medi.BaaMemFina", "behDotless-ar.medi.BaaMemFina", "yehKashmiri-ar.medi.BaaMemFina", "yeh-ar.medi.BaaMemFina", "rnoon-ar.medi.BaaMemFina", "teheh-ar.medi.BaaMemFina", "behVinvertedbelow-ar.medi.BaaMemFina", "tehThreedotsdown-ar.medi.BaaMemFina", "peh-ar.medi.BaaMemFina", "beeh-ar.medi.BaaMemFina", "beh-ar.medi.BaaMemFina", "tteheh-ar.medi.BaaMemFina", "behThreedotsupabove-ar.medi.BaaMemFina", "noon-ar.medi.BaaMemFina", "tehThreedotsupbelow-ar.medi.BaaMemFina", "behThreedotsupbelow-ar.medi.BaaMemFina", "teh-ar.medi.BaaMemFina", "yehFarsiVinverted-ar.medi.BaaMemFina", "theh-ar.medi.BaaMemFina", "tteh-ar.medi.BaaMemFina", "noonDotbelow-ar.medi.BaaMemFina", "noonVabove-ar.medi.BaaMemFina", "alefMaksura-ar.medi.BaaMemFina", "tehRing-ar.medi.BaaMemFina", "behTwodotsbelowDotabove-ar.medi.BaaMemFina", "yehThreedotsbelow-ar.medi.BaaMemFina", "e-ar.medi.BaaMemFina", "noonghunna-ar.medi.BaaMemFina", "yehFarsi-ar.medi.BaaMemFina", "noonTwodotsbelow-ar.medi.BaaMemFina", "meem-ar.fina.BaaMemFina", "sadTwodotsbelow-ar.init.AboveHaa", "dadDotbelow-ar.init.AboveHaa", "dad-ar.init.AboveHaa", "sadThreedots-ar.init.AboveHaa", "sad-ar.init.AboveHaa", "lamVabove-ar.init.LamBaaMemInit", "lamThreedotsabove-ar.init.LamBaaMemInit", "lam-ar.init.LamBaaMemInit", "lamThreedotsbelow-ar.init.LamBaaMemInit", "lamDotabove-ar.init.LamBaaMemInit", "lamBar-ar.init.LamBaaMemInit", "yehFarsiFourbelow-ar.medi.LamBaaMemInit", "beheh-ar.medi.LamBaaMemInit", "yehFarsiThreeabove-ar.medi.LamBaaMemInit", "noonRing-ar.medi.LamBaaMemInit", "behThreedotshorizontalbelow-ar.medi.LamBaaMemInit", "behVabove-ar.medi.LamBaaMemInit", "noonTahabove-ar.medi.LamBaaMemInit", "yehVabove-ar.medi.LamBaaMemInit", "yehFarsiTwoabove-ar.medi.LamBaaMemInit", "noonThreedotsabove-ar.medi.LamBaaMemInit", "yehHamzaabove-ar.medi.LamBaaMemInit", "behDotless-ar.medi.LamBaaMemInit", "yehKashmiri-ar.medi.LamBaaMemInit", "yeh-ar.medi.LamBaaMemInit", "rnoon-ar.medi.LamBaaMemInit", "teheh-ar.medi.LamBaaMemInit", "behVinvertedbelow-ar.medi.LamBaaMemInit", "tehThreedotsdown-ar.medi.LamBaaMemInit", "peh-ar.medi.LamBaaMemInit", "beeh-ar.medi.LamBaaMemInit", "beh-ar.medi.LamBaaMemInit", "tteheh-ar.medi.LamBaaMemInit", "behThreedotsupabove-ar.medi.LamBaaMemInit", "noon-ar.medi.LamBaaMemInit", "tehThreedotsupbelow-ar.medi.LamBaaMemInit", "behThreedotsupbelow-ar.medi.LamBaaMemInit", "teh-ar.medi.LamBaaMemInit", "yehFarsiVinverted-ar.medi.LamBaaMemInit", "theh-ar.medi.LamBaaMemInit", "tteh-ar.medi.LamBaaMemInit", "noonDotbelow-ar.medi.LamBaaMemInit", "noonVabove-ar.medi.LamBaaMemInit", "alefMaksura-ar.medi.LamBaaMemInit", "tehRing-ar.medi.LamBaaMemInit", "behTwodotsbelowDotabove-ar.medi.LamBaaMemInit", "yehThreedotsbelow-ar.medi.LamBaaMemInit", "e-ar.medi.LamBaaMemInit", "noonghunna-ar.medi.LamBaaMemInit", "yehFarsi-ar.medi.LamBaaMemInit", "noonTwodotsbelow-ar.medi.LamBaaMemInit", "meem-ar.medi.LamBaaMemInit", "yehFarsiFourbelow-ar.init.BaaDal", "beheh-ar.init.BaaDal", "yehFarsiThreeabove-ar.init.BaaDal", "noonRing-ar.init.BaaDal", "behThreedotshorizontalbelow-ar.init.BaaDal", "behVabove-ar.init.BaaDal", "noonTahabove-ar.init.BaaDal", "yehVabove-ar.init.BaaDal", "yehFarsiTwoabove-ar.init.BaaDal", "noonThreedotsabove-ar.init.BaaDal", "yehHamzaabove-ar.init.BaaDal", "behDotless-ar.init.BaaDal", "yehKashmiri-ar.init.BaaDal", "yeh-ar.init.BaaDal", "rnoon-ar.init.BaaDal", "teheh-ar.init.BaaDal", "behVinvertedbelow-ar.init.BaaDal", "tehThreedotsdown-ar.init.BaaDal", "peh-ar.init.BaaDal", "beeh-ar.init.BaaDal", "beh-ar.init.BaaDal", "tteheh-ar.init.BaaDal", "behThreedotsupabove-ar.init.BaaDal", "noon-ar.init.BaaDal", "tehThreedotsupbelow-ar.init.BaaDal", "behThreedotsupbelow-ar.init.BaaDal", "teh-ar.init.BaaDal", "highhamzaYeh-ar.init.BaaDal", "yehFarsiVinverted-ar.init.BaaDal", "theh-ar.init.BaaDal", "tteh-ar.init.BaaDal", "noonDotbelow-ar.init.BaaDal", "noonVabove-ar.init.BaaDal", "alefMaksura-ar.init.BaaDal", "tehRing-ar.init.BaaDal", "behTwodotsbelowDotabove-ar.init.BaaDal", "yehThreedotsbelow-ar.init.BaaDal", "e-ar.init.BaaDal", "noonghunna-ar.init.BaaDal", "yehFarsi-ar.init.BaaDal", "noonTwodotsbelow-ar.init.BaaDal", "dalFourdots-ar.fina.BaaDal", "dalVinvertedabove-ar.fina.BaaDal", "dalRing-ar.fina.BaaDal", "ddal-ar.fina.BaaDal", "dalVinvertedbelow-ar.fina.BaaDal", "thal-ar.fina.BaaDal", "dal-ar.fina.BaaDal", "dalTwodotsverticalbelowTah-ar.fina.BaaDal", "dahal-ar.fina.BaaDal", "dalDotbelowTah-ar.fina.BaaDal", "dalDotbelow-ar.fina.BaaDal", "dalThreedotsdown-ar.fina.BaaDal", "dul-ar.fina.BaaDal", "ddahal-ar.fina.BaaDal", "yehFarsiFourbelow-ar.init.BaaMemHaaInit", "beheh-ar.init.BaaMemHaaInit", "yehFarsiThreeabove-ar.init.BaaMemHaaInit", "noonRing-ar.init.BaaMemHaaInit", "behThreedotshorizontalbelow-ar.init.BaaMemHaaInit", "behVabove-ar.init.BaaMemHaaInit", "noonTahabove-ar.init.BaaMemHaaInit", "yehVabove-ar.init.BaaMemHaaInit", "yehFarsiTwoabove-ar.init.BaaMemHaaInit", "noonThreedotsabove-ar.init.BaaMemHaaInit", "yehHamzaabove-ar.init.BaaMemHaaInit", "behDotless-ar.init.BaaMemHaaInit", "yehKashmiri-ar.init.BaaMemHaaInit", "yeh-ar.init.BaaMemHaaInit", "rnoon-ar.init.BaaMemHaaInit", "teheh-ar.init.BaaMemHaaInit", "behVinvertedbelow-ar.init.BaaMemHaaInit", "tehThreedotsdown-ar.init.BaaMemHaaInit", "peh-ar.init.BaaMemHaaInit", "beeh-ar.init.BaaMemHaaInit", "beh-ar.init.BaaMemHaaInit", "tteheh-ar.init.BaaMemHaaInit", "behThreedotsupabove-ar.init.BaaMemHaaInit", "noon-ar.init.BaaMemHaaInit", "tehThreedotsupbelow-ar.init.BaaMemHaaInit", "behThreedotsupbelow-ar.init.BaaMemHaaInit", "teh-ar.init.BaaMemHaaInit", "highhamzaYeh-ar.init.BaaMemHaaInit", "yehFarsiVinverted-ar.init.BaaMemHaaInit", "theh-ar.init.BaaMemHaaInit", "tteh-ar.init.BaaMemHaaInit", "noonDotbelow-ar.init.BaaMemHaaInit", "noonVabove-ar.init.BaaMemHaaInit", "alefMaksura-ar.init.BaaMemHaaInit", "tehRing-ar.init.BaaMemHaaInit", "behTwodotsbelowDotabove-ar.init.BaaMemHaaInit", "yehThreedotsbelow-ar.init.BaaMemHaaInit", "e-ar.init.BaaMemHaaInit", "noonghunna-ar.init.BaaMemHaaInit", "yehFarsi-ar.init.BaaMemHaaInit", "noonTwodotsbelow-ar.init.BaaMemHaaInit", "meem-ar.medi.BaaMemHaaInit", "khah-ar.medi.BaaMemHaaInit", "hah-ar.medi.BaaMemHaaInit", "hahHamzaabove-ar.medi.BaaMemHaaInit", "tcheheh-ar.medi.BaaMemHaaInit", "hahThreedotsabove-ar.medi.BaaMemHaaInit", "jeem-ar.medi.BaaMemHaaInit", "hahTwodotsverticalabove-ar.medi.BaaMemHaaInit", "hahTwodotshorizontalabove-ar.medi.BaaMemHaaInit", "dyeh-ar.medi.BaaMemHaaInit", "hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit", "hahTahbelow-ar.medi.BaaMemHaaInit", "nyeh-ar.medi.BaaMemHaaInit", "tchehDotabove-ar.medi.BaaMemHaaInit", "hahFourbelow-ar.medi.BaaMemHaaInit", "hahThreedotsupbelow-ar.medi.BaaMemHaaInit", "hahTahabove-ar.medi.BaaMemHaaInit", "tcheh-ar.medi.BaaMemHaaInit", "yehFarsiFourbelow-ar.init.BaaBaaYaa", "beheh-ar.init.BaaBaaYaa", "yehFarsiThreeabove-ar.init.BaaBaaYaa", "noonRing-ar.init.BaaBaaYaa", "behThreedotshorizontalbelow-ar.init.BaaBaaYaa", "behVabove-ar.init.BaaBaaYaa", "noonTahabove-ar.init.BaaBaaYaa", "yehVabove-ar.init.BaaBaaYaa", "yehFarsiTwoabove-ar.init.BaaBaaYaa", "noonThreedotsabove-ar.init.BaaBaaYaa", "yehHamzaabove-ar.init.BaaBaaYaa", "behDotless-ar.init.BaaBaaYaa", "yehKashmiri-ar.init.BaaBaaYaa", "yeh-ar.init.BaaBaaYaa", "rnoon-ar.init.BaaBaaYaa", "teheh-ar.init.BaaBaaYaa", "behVinvertedbelow-ar.init.BaaBaaYaa", "tehThreedotsdown-ar.init.BaaBaaYaa", "peh-ar.init.BaaBaaYaa", "beeh-ar.init.BaaBaaYaa", "beh-ar.init.BaaBaaYaa", "tteheh-ar.init.BaaBaaYaa", "behThreedotsupabove-ar.init.BaaBaaYaa", "noon-ar.init.BaaBaaYaa", "tehThreedotsupbelow-ar.init.BaaBaaYaa", "behThreedotsupbelow-ar.init.BaaBaaYaa", "teh-ar.init.BaaBaaYaa", "highhamzaYeh-ar.init.BaaBaaYaa", "yehFarsiVinverted-ar.init.BaaBaaYaa", "theh-ar.init.BaaBaaYaa", "tteh-ar.init.BaaBaaYaa", "noonDotbelow-ar.init.BaaBaaYaa", "noonVabove-ar.init.BaaBaaYaa", "alefMaksura-ar.init.BaaBaaYaa", "tehRing-ar.init.BaaBaaYaa", "behTwodotsbelowDotabove-ar.init.BaaBaaYaa", "yehThreedotsbelow-ar.init.BaaBaaYaa", "e-ar.init.BaaBaaYaa", "noonghunna-ar.init.BaaBaaYaa", "yehFarsi-ar.init.BaaBaaYaa", "noonTwodotsbelow-ar.init.BaaBaaYaa", "yehFarsiFourbelow-ar.medi.BaaBaaYaa", "beheh-ar.medi.BaaBaaYaa", "yehFarsiThreeabove-ar.medi.BaaBaaYaa", "noonRing-ar.medi.BaaBaaYaa", "behThreedotshorizontalbelow-ar.medi.BaaBaaYaa", "behVabove-ar.medi.BaaBaaYaa", "noonTahabove-ar.medi.BaaBaaYaa", "yehVabove-ar.medi.BaaBaaYaa", "yehFarsiTwoabove-ar.medi.BaaBaaYaa", "noonThreedotsabove-ar.medi.BaaBaaYaa", "yehHamzaabove-ar.medi.BaaBaaYaa", "behDotless-ar.medi.BaaBaaYaa", "yehKashmiri-ar.medi.BaaBaaYaa", "yeh-ar.medi.BaaBaaYaa", "rnoon-ar.medi.BaaBaaYaa", "teheh-ar.medi.BaaBaaYaa", "behVinvertedbelow-ar.medi.BaaBaaYaa", "tehThreedotsdown-ar.medi.BaaBaaYaa", "peh-ar.medi.BaaBaaYaa", "beeh-ar.medi.BaaBaaYaa", "beh-ar.medi.BaaBaaYaa", "tteheh-ar.medi.BaaBaaYaa", "behThreedotsupabove-ar.medi.BaaBaaYaa", "noon-ar.medi.BaaBaaYaa", "tehThreedotsupbelow-ar.medi.BaaBaaYaa", "behThreedotsupbelow-ar.medi.BaaBaaYaa", "teh-ar.medi.BaaBaaYaa", "yehFarsiVinverted-ar.medi.BaaBaaYaa", "theh-ar.medi.BaaBaaYaa", "tteh-ar.medi.BaaBaaYaa", "noonDotbelow-ar.medi.BaaBaaYaa", "noonVabove-ar.medi.BaaBaaYaa", "alefMaksura-ar.medi.BaaBaaYaa", "tehRing-ar.medi.BaaBaaYaa", "behTwodotsbelowDotabove-ar.medi.BaaBaaYaa", "yehThreedotsbelow-ar.medi.BaaBaaYaa", "e-ar.medi.BaaBaaYaa", "noonghunna-ar.medi.BaaBaaYaa", "yehFarsi-ar.medi.BaaBaaYaa", "noonTwodotsbelow-ar.medi.BaaBaaYaa", "yehFarsiFourbelow-ar.fina.BaaBaaYaa", "yehThreedotsbelow-ar.fina.BaaBaaYaa", "yehFarsiTwoabove-ar.fina.BaaBaaYaa", "yehFarsiThreedotsabove-ar.fina.BaaBaaYaa", "yehFarsiVinverted-ar.fina.BaaBaaYaa", "yehFarsiTwodotsabove-ar.fina.BaaBaaYaa", "e-ar.fina.BaaBaaYaa", "alefMaksura-ar.fina.BaaBaaYaa", "yehFarsiThreeabove-ar.fina.BaaBaaYaa", "yehTail-ar.fina.BaaBaaYaa", "yehFarsi-ar.fina.BaaBaaYaa", "yehHamzaabove-ar.fina.BaaBaaYaa", "yehKashmiri-ar.fina.BaaBaaYaa", "yeh-ar.fina.BaaBaaYaa", "yehVabove-ar.fina.BaaBaaYaa", "lamVabove-ar.medi.LamYaaFina", "lamThreedotsabove-ar.medi.LamYaaFina", "lam-ar.medi.LamYaaFina", "lamThreedotsbelow-ar.medi.LamYaaFina", "lamDotabove-ar.medi.LamYaaFina", "lamBar-ar.medi.LamYaaFina", "yehFarsiFourbelow-ar.fina.LamYaaFina", "yehThreedotsbelow-ar.fina.LamYaaFina", "yehFarsiTwoabove-ar.fina.LamYaaFina", "yehFarsiThreedotsabove-ar.fina.LamYaaFina", "yehFarsiVinverted-ar.fina.LamYaaFina", "yehFarsiTwodotsabove-ar.fina.LamYaaFina", "e-ar.fina.LamYaaFina", "alefMaksura-ar.fina.LamYaaFina", "yehFarsiThreeabove-ar.fina.LamYaaFina", "yehTail-ar.fina.LamYaaFina", "yehFarsi-ar.fina.LamYaaFina", "yehHamzaabove-ar.fina.LamYaaFina", "yehKashmiri-ar.fina.LamYaaFina", "yeh-ar.fina.LamYaaFina", "yehVabove-ar.fina.LamYaaFina", "kehehTwodotshorizontalabove-ar.init.KafBaaInit", "kehehThreedotsbelow-ar.init.KafBaaInit", "kafTwodotshorizontalabove-ar.init.KafBaaInit", "kehehThreedotsupbelow-ar.init.KafBaaInit", "kaf-ar.init.KafBaaInit", "gafRing-ar.init.KafBaaInit", "gueh-ar.init.KafBaaInit", "gafTwodotsbelow-ar.init.KafBaaInit", "kafRing-ar.init.KafBaaInit", "kafDotabove-ar.init.KafBaaInit", "ng-ar.init.KafBaaInit", "kafThreedotsbelow-ar.init.KafBaaInit", "gaf-ar.init.KafBaaInit", "keheh-ar.init.KafBaaInit", "gafThreedots-ar.init.KafBaaInit", "kehehThreedotsabove-ar.init.KafBaaInit", "kehehDotabove-ar.init.KafBaaInit", "ngoeh-ar.init.KafBaaInit", "yehFarsiFourbelow-ar.medi.KafBaaInit", "beheh-ar.medi.KafBaaInit", "yehFarsiThreeabove-ar.medi.KafBaaInit", "noonRing-ar.medi.KafBaaInit", "behThreedotshorizontalbelow-ar.medi.KafBaaInit", "behVabove-ar.medi.KafBaaInit", "noonTahabove-ar.medi.KafBaaInit", "yehVabove-ar.medi.KafBaaInit", "yehFarsiTwoabove-ar.medi.KafBaaInit", "noonThreedotsabove-ar.medi.KafBaaInit", "yehHamzaabove-ar.medi.KafBaaInit", "behDotless-ar.medi.KafBaaInit", "yehKashmiri-ar.medi.KafBaaInit", "yeh-ar.medi.KafBaaInit", "rnoon-ar.medi.KafBaaInit", "teheh-ar.medi.KafBaaInit", "behVinvertedbelow-ar.medi.KafBaaInit", "tehThreedotsdown-ar.medi.KafBaaInit", "peh-ar.medi.KafBaaInit", "beeh-ar.medi.KafBaaInit", "beh-ar.medi.KafBaaInit", "tteheh-ar.medi.KafBaaInit", "behThreedotsupabove-ar.medi.KafBaaInit", "noon-ar.medi.KafBaaInit", "tehThreedotsupbelow-ar.medi.KafBaaInit", "behThreedotsupbelow-ar.medi.KafBaaInit", "teh-ar.medi.KafBaaInit", "yehFarsiVinverted-ar.medi.KafBaaInit", "theh-ar.medi.KafBaaInit", "tteh-ar.medi.KafBaaInit", "noonDotbelow-ar.medi.KafBaaInit", "noonVabove-ar.medi.KafBaaInit", "alefMaksura-ar.medi.KafBaaInit", "tehRing-ar.medi.KafBaaInit", "behTwodotsbelowDotabove-ar.medi.KafBaaInit", "yehThreedotsbelow-ar.medi.KafBaaInit", "e-ar.medi.KafBaaInit", "noonghunna-ar.medi.KafBaaInit", "yehFarsi-ar.medi.KafBaaInit", "noonTwodotsbelow-ar.medi.KafBaaInit", "lamVabove-ar.init.LamMemInit", "lamThreedotsabove-ar.init.LamMemInit", "lam-ar.init.LamMemInit", "lamThreedotsbelow-ar.init.LamMemInit", "lamDotabove-ar.init.LamMemInit", "lamBar-ar.init.LamMemInit", "meem-ar.medi.LamMemInit", "lamVabove-ar.init.LamAlfIsol", "lamThreedotsabove-ar.init.LamAlfIsol", "lam-ar.init.LamAlfIsol", "lamThreedotsbelow-ar.init.LamAlfIsol", "lamDotabove-ar.init.LamAlfIsol", "lamBar-ar.init.LamAlfIsol", "alefHamzabelow-ar.fina.LamAlfIsol", "alef-ar.fina.LamAlfIsol", "alefThreeabove-ar.fina.LamAlfIsol", "alefTwoabove-ar.fina.LamAlfIsol", "alefHamzaabove-ar.fina.LamAlfIsol", "alefMadda-ar.fina.LamAlfIsol", "alefWavyhamzaabove-ar.fina.LamAlfIsol", "alefWavyhamzabelow-ar.fina.LamAlfIsol", "alefWasla-ar.fina.LamAlfIsol", "lamVabove-ar.init.LamHaaMemInit", "lamThreedotsabove-ar.init.LamHaaMemInit", "lam-ar.init.LamHaaMemInit", "lamThreedotsbelow-ar.init.LamHaaMemInit", "lamDotabove-ar.init.LamHaaMemInit", "lamBar-ar.init.LamHaaMemInit", "khah-ar.medi.LamHaaMemInit", "hah-ar.medi.LamHaaMemInit", "hahHamzaabove-ar.medi.LamHaaMemInit", "tcheheh-ar.medi.LamHaaMemInit", "hahThreedotsabove-ar.medi.LamHaaMemInit", "jeem-ar.medi.LamHaaMemInit", "hahTwodotsverticalabove-ar.medi.LamHaaMemInit", "hahTwodotshorizontalabove-ar.medi.LamHaaMemInit", "dyeh-ar.medi.LamHaaMemInit", "hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit", "hahTahbelow-ar.medi.LamHaaMemInit", "nyeh-ar.medi.LamHaaMemInit", "tchehDotabove-ar.medi.LamHaaMemInit", "hahFourbelow-ar.medi.LamHaaMemInit", "hahThreedotsupbelow-ar.medi.LamHaaMemInit", "hahTahabove-ar.medi.LamHaaMemInit", "tcheh-ar.medi.LamHaaMemInit", "meem-ar.medi.LamHaaMemInit", "yehFarsiFourbelow-ar.medi.BaaBaaInit", "beheh-ar.medi.BaaBaaInit", "yehFarsiThreeabove-ar.medi.BaaBaaInit", "noonRing-ar.medi.BaaBaaInit", "behThreedotshorizontalbelow-ar.medi.BaaBaaInit", "behVabove-ar.medi.BaaBaaInit", "noonTahabove-ar.medi.BaaBaaInit", "yehVabove-ar.medi.BaaBaaInit", "yehFarsiTwoabove-ar.medi.BaaBaaInit", "noonThreedotsabove-ar.medi.BaaBaaInit", "yehHamzaabove-ar.medi.BaaBaaInit", "behDotless-ar.medi.BaaBaaInit", "yehKashmiri-ar.medi.BaaBaaInit", "yeh-ar.medi.BaaBaaInit", "rnoon-ar.medi.BaaBaaInit", "teheh-ar.medi.BaaBaaInit", "behVinvertedbelow-ar.medi.BaaBaaInit", "tehThreedotsdown-ar.medi.BaaBaaInit", "peh-ar.medi.BaaBaaInit", "beeh-ar.medi.BaaBaaInit", "beh-ar.medi.BaaBaaInit", "tteheh-ar.medi.BaaBaaInit", "behThreedotsupabove-ar.medi.BaaBaaInit", "noon-ar.medi.BaaBaaInit", "tehThreedotsupbelow-ar.medi.BaaBaaInit", "behThreedotsupbelow-ar.medi.BaaBaaInit", "teh-ar.medi.BaaBaaInit", "yehFarsiVinverted-ar.medi.BaaBaaInit", "theh-ar.medi.BaaBaaInit", "tteh-ar.medi.BaaBaaInit", "noonDotbelow-ar.medi.BaaBaaInit", "noonVabove-ar.medi.BaaBaaInit", "alefMaksura-ar.medi.BaaBaaInit", "tehRing-ar.medi.BaaBaaInit", "behTwodotsbelowDotabove-ar.medi.BaaBaaInit", "yehThreedotsbelow-ar.medi.BaaBaaInit", "e-ar.medi.BaaBaaInit", "noonghunna-ar.medi.BaaBaaInit", "yehFarsi-ar.medi.BaaBaaInit", "noonTwodotsbelow-ar.medi.BaaBaaInit", "ghainDotbelow-ar.medi.AynYaaFina", "ghain-ar.medi.AynYaaFina", "ainThreedotsdownabove-ar.medi.AynYaaFina", "ainTwodotshorizontalabove-ar.medi.AynYaaFina", "ainTwodotsverticalabove-ar.medi.AynYaaFina", "ainThreedots-ar.medi.AynYaaFina", "ain-ar.medi.AynYaaFina", "meemDotabove-ar.init.MemRaaIsol", "meem-ar.init.MemRaaIsol", "meemDotbelow-ar.init.MemRaaIsol", "rreh-ar.fina.MemRaaIsol", "rehv-ar.fina.MemRaaIsol", "rehRing-ar.fina.MemRaaIsol", "rehDotbelow-ar.fina.MemRaaIsol", "rehVbelow-ar.fina.MemRaaIsol", "rehDotbelowdotabove-ar.fina.MemRaaIsol", "rehTwodots-ar.fina.MemRaaIsol", "jeh-ar.fina.MemRaaIsol", "rehFourdots-ar.fina.MemRaaIsol", "rehStroke-ar.fina.MemRaaIsol", "rehVinvertedabove-ar.fina.MemRaaIsol", "zain-ar.fina.MemRaaIsol", "rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsol", "reh-ar.fina.MemRaaIsol", "rehTwodotsverticalabove-ar.fina.MemRaaIsol", "rehHamzaabove-ar.fina.MemRaaIsol", "qafDotless-ar.init.FaaHaaInit", "fehThreedotsupbelow-ar.init.FaaHaaInit", "fehTwodotsbelow-ar.init.FaaHaaInit", "qaf-ar.init.FaaHaaInit", "feh-ar.init.FaaHaaInit", "qafThreedotsabove-ar.init.FaaHaaInit", "fehDotless-ar.init.FaaHaaInit", "fehDotmovedbelow-ar.init.FaaHaaInit", "fehDotbelow-ar.init.FaaHaaInit", "veh-ar.init.FaaHaaInit", "fehThreedotsbelow-ar.init.FaaHaaInit", "peheh-ar.init.FaaHaaInit", "qafDotabove-ar.init.FaaHaaInit", "khah-ar.medi.FaaHaaInit", "hah-ar.medi.FaaHaaInit", "hahHamzaabove-ar.medi.FaaHaaInit", "tcheheh-ar.medi.FaaHaaInit", "hahThreedotsabove-ar.medi.FaaHaaInit", "jeem-ar.medi.FaaHaaInit", "hahTwodotsverticalabove-ar.medi.FaaHaaInit", "hahTwodotshorizontalabove-ar.medi.FaaHaaInit", "dyeh-ar.medi.FaaHaaInit", "hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit", "hahTahbelow-ar.medi.FaaHaaInit", "nyeh-ar.medi.FaaHaaInit", "tchehDotabove-ar.medi.FaaHaaInit", "hahFourbelow-ar.medi.FaaHaaInit", "hahThreedotsupbelow-ar.medi.FaaHaaInit", "hahTahabove-ar.medi.FaaHaaInit", "tcheh-ar.medi.FaaHaaInit", "khah-ar.init.HaaHaaInit", "hah-ar.init.HaaHaaInit", "hahHamzaabove-ar.init.HaaHaaInit", "tcheheh-ar.init.HaaHaaInit", "hahThreedotsabove-ar.init.HaaHaaInit", "jeem-ar.init.HaaHaaInit", "hahTwodotsverticalabove-ar.init.HaaHaaInit", "hahTwodotshorizontalabove-ar.init.HaaHaaInit", "dyeh-ar.init.HaaHaaInit", "hahTahTwodotshorizontalabove-ar.init.HaaHaaInit", "hahTahbelow-ar.init.HaaHaaInit", "nyeh-ar.init.HaaHaaInit", "tchehDotabove-ar.init.HaaHaaInit", "hahFourbelow-ar.init.HaaHaaInit", "hahThreedotsupbelow-ar.init.HaaHaaInit", "hahTahabove-ar.init.HaaHaaInit", "tcheh-ar.init.HaaHaaInit", "lamVabove-ar.medi.LamQafFina", "lamThreedotsabove-ar.medi.LamQafFina", "lam-ar.medi.LamQafFina", "lamThreedotsbelow-ar.medi.LamQafFina", "lamDotabove-ar.medi.LamQafFina", "lamBar-ar.medi.LamQafFina", "qafThreedotsabove-ar.fina.LamQafFina", "qafDotabove-ar.fina.LamQafFina", "qaf-ar.fina.LamQafFina", "qafDotless-ar.fina.LamQafFina", "sheenDotbelow-ar.init.AboveHaa", "seenTwodotsverticalabove-ar.init.AboveHaa", "seen-ar.init.AboveHaa", "seenVinvertedabove-ar.init.AboveHaa", "seenFourabove-ar.init.AboveHaa", "sheen-ar.init.AboveHaa", "seenTahTwodotshorizontalabove-ar.init.AboveHaa", "seenFourdotsabove-ar.init.AboveHaa", "seenDotbelowDotabove-ar.init.AboveHaa", "seenThreedotsbelow-ar.init.AboveHaa", "sheenThreedotsbelow-ar.init.AboveHaa", "meem-ar.init.MemHaaInit", "yehFarsiFourbelow-ar.init.BaaNonIsol", "beheh-ar.init.BaaNonIsol", "yehFarsiThreeabove-ar.init.BaaNonIsol", "noonRing-ar.init.BaaNonIsol", "behThreedotshorizontalbelow-ar.init.BaaNonIsol", "behVabove-ar.init.BaaNonIsol", "noonTahabove-ar.init.BaaNonIsol", "yehVabove-ar.init.BaaNonIsol", "yehFarsiTwoabove-ar.init.BaaNonIsol", "noonThreedotsabove-ar.init.BaaNonIsol", "yehHamzaabove-ar.init.BaaNonIsol", "behDotless-ar.init.BaaNonIsol", "yehKashmiri-ar.init.BaaNonIsol", "yeh-ar.init.BaaNonIsol", "rnoon-ar.init.BaaNonIsol", "teheh-ar.init.BaaNonIsol", "behVinvertedbelow-ar.init.BaaNonIsol", "tehThreedotsdown-ar.init.BaaNonIsol", "peh-ar.init.BaaNonIsol", "beeh-ar.init.BaaNonIsol", "beh-ar.init.BaaNonIsol", "tteheh-ar.init.BaaNonIsol", "behThreedotsupabove-ar.init.BaaNonIsol", "noon-ar.init.BaaNonIsol", "tehThreedotsupbelow-ar.init.BaaNonIsol", "behThreedotsupbelow-ar.init.BaaNonIsol", "teh-ar.init.BaaNonIsol", "highhamzaYeh-ar.init.BaaNonIsol", "yehFarsiVinverted-ar.init.BaaNonIsol", "theh-ar.init.BaaNonIsol", "tteh-ar.init.BaaNonIsol", "noonDotbelow-ar.init.BaaNonIsol", "noonVabove-ar.init.BaaNonIsol", "alefMaksura-ar.init.BaaNonIsol", "tehRing-ar.init.BaaNonIsol", "behTwodotsbelowDotabove-ar.init.BaaNonIsol", "yehThreedotsbelow-ar.init.BaaNonIsol", "e-ar.init.BaaNonIsol", "noonghunna-ar.init.BaaNonIsol", "yehFarsi-ar.init.BaaNonIsol", "noonTwodotsbelow-ar.init.BaaNonIsol", "noon-ar.fina.BaaNonIsol", "noonTwodotsbelow-ar.fina.BaaNonIsol", "noonghunna-ar.fina.BaaNonIsol", "noonRing-ar.fina.BaaNonIsol", "rnoon-ar.fina.BaaNonIsol", "noonTahabove-ar.fina.BaaNonIsol", "noonDotbelow-ar.fina.BaaNonIsol", "noonVabove-ar.fina.BaaNonIsol", "noonThreedotsabove-ar.fina.BaaNonIsol", "kehehTwodotshorizontalabove-ar.medi.KafMemFina", "kehehThreedotsbelow-ar.medi.KafMemFina", "kafTwodotshorizontalabove-ar.medi.KafMemFina", "kehehThreedotsupbelow-ar.medi.KafMemFina", "kaf-ar.medi.KafMemFina", "gafRing-ar.medi.KafMemFina", "gueh-ar.medi.KafMemFina", "gafTwodotsbelow-ar.medi.KafMemFina", "kafRing-ar.medi.KafMemFina", "kafDotabove-ar.medi.KafMemFina", "ng-ar.medi.KafMemFina", "kafThreedotsbelow-ar.medi.KafMemFina", "gaf-ar.medi.KafMemFina", "keheh-ar.medi.KafMemFina", "gafThreedots-ar.medi.KafMemFina", "kehehThreedotsabove-ar.medi.KafMemFina", "kehehDotabove-ar.medi.KafMemFina", "ngoeh-ar.medi.KafMemFina", "meem-ar.fina.KafMemFina", "yehFarsiFourbelow-ar.init.BaaSenInit", "beheh-ar.init.BaaSenInit", "yehFarsiThreeabove-ar.init.BaaSenInit", "noonRing-ar.init.BaaSenInit", "behThreedotshorizontalbelow-ar.init.BaaSenInit", "behVabove-ar.init.BaaSenInit", "noonTahabove-ar.init.BaaSenInit", "yehVabove-ar.init.BaaSenInit", "yehFarsiTwoabove-ar.init.BaaSenInit", "noonThreedotsabove-ar.init.BaaSenInit", "yehHamzaabove-ar.init.BaaSenInit", "behDotless-ar.init.BaaSenInit", "yehKashmiri-ar.init.BaaSenInit", "yeh-ar.init.BaaSenInit", "rnoon-ar.init.BaaSenInit", "teheh-ar.init.BaaSenInit", "behVinvertedbelow-ar.init.BaaSenInit", "tehThreedotsdown-ar.init.BaaSenInit", "peh-ar.init.BaaSenInit", "beeh-ar.init.BaaSenInit", "beh-ar.init.BaaSenInit", "tteheh-ar.init.BaaSenInit", "behThreedotsupabove-ar.init.BaaSenInit", "noon-ar.init.BaaSenInit", "tehThreedotsupbelow-ar.init.BaaSenInit", "behThreedotsupbelow-ar.init.BaaSenInit", "teh-ar.init.BaaSenInit", "highhamzaYeh-ar.init.BaaSenInit", "yehFarsiVinverted-ar.init.BaaSenInit", "theh-ar.init.BaaSenInit", "tteh-ar.init.BaaSenInit", "noonDotbelow-ar.init.BaaSenInit", "noonVabove-ar.init.BaaSenInit", "alefMaksura-ar.init.BaaSenInit", "tehRing-ar.init.BaaSenInit", "behTwodotsbelowDotabove-ar.init.BaaSenInit", "yehThreedotsbelow-ar.init.BaaSenInit", "e-ar.init.BaaSenInit", "noonghunna-ar.init.BaaSenInit", "yehFarsi-ar.init.BaaSenInit", "noonTwodotsbelow-ar.init.BaaSenInit", "sheenDotbelow-ar.medi.BaaSenInit", "seenTwodotsverticalabove-ar.medi.BaaSenInit", "seen-ar.medi.BaaSenInit", "seenVinvertedabove-ar.medi.BaaSenInit", "seenFourabove-ar.medi.BaaSenInit", "sheen-ar.medi.BaaSenInit", "seenTahTwodotshorizontalabove-ar.medi.BaaSenInit", "seenFourdotsabove-ar.medi.BaaSenInit", "seenDotbelowDotabove-ar.medi.BaaSenInit", "seenThreedotsbelow-ar.medi.BaaSenInit", "sheenThreedotsbelow-ar.medi.BaaSenInit", "yehFarsiFourbelow-ar.medi.BaaRaaFina", "beheh-ar.medi.BaaRaaFina", "yehFarsiThreeabove-ar.medi.BaaRaaFina", "noonRing-ar.medi.BaaRaaFina", "behThreedotshorizontalbelow-ar.medi.BaaRaaFina", "behVabove-ar.medi.BaaRaaFina", "noonTahabove-ar.medi.BaaRaaFina", "yehVabove-ar.medi.BaaRaaFina", "yehFarsiTwoabove-ar.medi.BaaRaaFina", "noonThreedotsabove-ar.medi.BaaRaaFina", "yehHamzaabove-ar.medi.BaaRaaFina", "behDotless-ar.medi.BaaRaaFina", "yehKashmiri-ar.medi.BaaRaaFina", "yeh-ar.medi.BaaRaaFina", "rnoon-ar.medi.BaaRaaFina", "teheh-ar.medi.BaaRaaFina", "behVinvertedbelow-ar.medi.BaaRaaFina", "tehThreedotsdown-ar.medi.BaaRaaFina", "peh-ar.medi.BaaRaaFina", "beeh-ar.medi.BaaRaaFina", "beh-ar.medi.BaaRaaFina", "tteheh-ar.medi.BaaRaaFina", "behThreedotsupabove-ar.medi.BaaRaaFina", "noon-ar.medi.BaaRaaFina", "tehThreedotsupbelow-ar.medi.BaaRaaFina", "behThreedotsupbelow-ar.medi.BaaRaaFina", "teh-ar.medi.BaaRaaFina", "yehFarsiVinverted-ar.medi.BaaRaaFina", "theh-ar.medi.BaaRaaFina", "tteh-ar.medi.BaaRaaFina", "noonDotbelow-ar.medi.BaaRaaFina", "noonVabove-ar.medi.BaaRaaFina", "alefMaksura-ar.medi.BaaRaaFina", "tehRing-ar.medi.BaaRaaFina", "behTwodotsbelowDotabove-ar.medi.BaaRaaFina", "yehThreedotsbelow-ar.medi.BaaRaaFina", "e-ar.medi.BaaRaaFina", "noonghunna-ar.medi.BaaRaaFina", "yehFarsi-ar.medi.BaaRaaFina", "noonTwodotsbelow-ar.medi.BaaRaaFina", "rreh-ar.fina.BaaRaaFina", "rehv-ar.fina.BaaRaaFina", "rehRing-ar.fina.BaaRaaFina", "rehDotbelow-ar.fina.BaaRaaFina", "rehVbelow-ar.fina.BaaRaaFina", "rehDotbelowdotabove-ar.fina.BaaRaaFina", "rehTwodots-ar.fina.BaaRaaFina", "jeh-ar.fina.BaaRaaFina", "rehFourdots-ar.fina.BaaRaaFina", "rehStroke-ar.fina.BaaRaaFina", "rehVinvertedabove-ar.fina.BaaRaaFina", "zain-ar.fina.BaaRaaFina", "rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFina", "reh-ar.fina.BaaRaaFina", "rehTwodotsverticalabove-ar.fina.BaaRaaFina", "rehHamzaabove-ar.fina.BaaRaaFina", "kehehTwodotshorizontalabove-ar.medi.KafRaaFina", "kehehThreedotsbelow-ar.medi.KafRaaFina", "kafTwodotshorizontalabove-ar.medi.KafRaaFina", "kehehThreedotsupbelow-ar.medi.KafRaaFina", "kaf-ar.medi.KafRaaFina", "gafRing-ar.medi.KafRaaFina", "gueh-ar.medi.KafRaaFina", "gafTwodotsbelow-ar.medi.KafRaaFina", "kafRing-ar.medi.KafRaaFina", "kafDotabove-ar.medi.KafRaaFina", "ng-ar.medi.KafRaaFina", "kafThreedotsbelow-ar.medi.KafRaaFina", "gaf-ar.medi.KafRaaFina", "keheh-ar.medi.KafRaaFina", "gafThreedots-ar.medi.KafRaaFina", "kehehThreedotsabove-ar.medi.KafRaaFina", "kehehDotabove-ar.medi.KafRaaFina", "ngoeh-ar.medi.KafRaaFina", "rreh-ar.fina.KafRaaFina", "rehv-ar.fina.KafRaaFina", "rehRing-ar.fina.KafRaaFina", "rehDotbelow-ar.fina.KafRaaFina", "rehVbelow-ar.fina.KafRaaFina", "rehDotbelowdotabove-ar.fina.KafRaaFina", "rehTwodots-ar.fina.KafRaaFina", "jeh-ar.fina.KafRaaFina", "rehFourdots-ar.fina.KafRaaFina", "rehStroke-ar.fina.KafRaaFina", "rehVinvertedabove-ar.fina.KafRaaFina", "zain-ar.fina.KafRaaFina", "rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFina", "reh-ar.fina.KafRaaFina", "rehTwodotsverticalabove-ar.fina.KafRaaFina", "rehHamzaabove-ar.fina.KafRaaFina", "lamVabove-ar.init.LamHehInit", "lamThreedotsabove-ar.init.LamHehInit", "lam-ar.init.LamHehInit", "lamThreedotsbelow-ar.init.LamHehInit", "lamDotabove-ar.init.LamHehInit", "lamBar-ar.init.LamHehInit", "heh-ar.medi.LamHehInit", "hehgoal-ar.medi.LamHehInit", "meem-ar.init.MemHaaMemInit", "khah-ar.medi.MemHaaMemInit", "hah-ar.medi.MemHaaMemInit", "hahHamzaabove-ar.medi.MemHaaMemInit", "tcheheh-ar.medi.MemHaaMemInit", "hahThreedotsabove-ar.medi.MemHaaMemInit", "jeem-ar.medi.MemHaaMemInit", "hahTwodotsverticalabove-ar.medi.MemHaaMemInit", "hahTwodotshorizontalabove-ar.medi.MemHaaMemInit", "dyeh-ar.medi.MemHaaMemInit", "hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit", "hahTahbelow-ar.medi.MemHaaMemInit", "nyeh-ar.medi.MemHaaMemInit", "tchehDotabove-ar.medi.MemHaaMemInit", "hahFourbelow-ar.medi.MemHaaMemInit", "hahThreedotsupbelow-ar.medi.MemHaaMemInit", "hahTahabove-ar.medi.MemHaaMemInit", "tcheh-ar.medi.MemHaaMemInit", "yehFarsiFourbelow-ar.init.BaaMemInit", "beheh-ar.init.BaaMemInit", "yehFarsiThreeabove-ar.init.BaaMemInit", "noonRing-ar.init.BaaMemInit", "behThreedotshorizontalbelow-ar.init.BaaMemInit", "behVabove-ar.init.BaaMemInit", "noonTahabove-ar.init.BaaMemInit", "yehVabove-ar.init.BaaMemInit", "yehFarsiTwoabove-ar.init.BaaMemInit", "noonThreedotsabove-ar.init.BaaMemInit", "yehHamzaabove-ar.init.BaaMemInit", "behDotless-ar.init.BaaMemInit", "yehKashmiri-ar.init.BaaMemInit", "yeh-ar.init.BaaMemInit", "rnoon-ar.init.BaaMemInit", "teheh-ar.init.BaaMemInit", "behVinvertedbelow-ar.init.BaaMemInit", "tehThreedotsdown-ar.init.BaaMemInit", "peh-ar.init.BaaMemInit", "beeh-ar.init.BaaMemInit", "beh-ar.init.BaaMemInit", "tteheh-ar.init.BaaMemInit", "behThreedotsupabove-ar.init.BaaMemInit", "noon-ar.init.BaaMemInit", "tehThreedotsupbelow-ar.init.BaaMemInit", "behThreedotsupbelow-ar.init.BaaMemInit", "teh-ar.init.BaaMemInit", "highhamzaYeh-ar.init.BaaMemInit", "yehFarsiVinverted-ar.init.BaaMemInit", "theh-ar.init.BaaMemInit", "tteh-ar.init.BaaMemInit", "noonDotbelow-ar.init.BaaMemInit", "noonVabove-ar.init.BaaMemInit", "alefMaksura-ar.init.BaaMemInit", "tehRing-ar.init.BaaMemInit", "behTwodotsbelowDotabove-ar.init.BaaMemInit", "yehThreedotsbelow-ar.init.BaaMemInit", "e-ar.init.BaaMemInit", "noonghunna-ar.init.BaaMemInit", "yehFarsi-ar.init.BaaMemInit", "noonTwodotsbelow-ar.init.BaaMemInit", "meem-ar.medi.BaaMemInit", "sheenDotbelow-ar.init.SenHaaInit", "seenTwodotsverticalabove-ar.init.SenHaaInit", "seen-ar.init.SenHaaInit", "seenVinvertedabove-ar.init.SenHaaInit", "seenFourabove-ar.init.SenHaaInit", "sheen-ar.init.SenHaaInit", "seenTahTwodotshorizontalabove-ar.init.SenHaaInit", "seenFourdotsabove-ar.init.SenHaaInit", "seenDotbelowDotabove-ar.init.SenHaaInit", "seenThreedotsbelow-ar.init.SenHaaInit", "sheenThreedotsbelow-ar.init.SenHaaInit", "kehehTwodotshorizontalabove-ar.init.KafRaaIsol", "kehehThreedotsbelow-ar.init.KafRaaIsol", "kafTwodotshorizontalabove-ar.init.KafRaaIsol", "kehehThreedotsupbelow-ar.init.KafRaaIsol", "kaf-ar.init.KafRaaIsol", "gafRing-ar.init.KafRaaIsol", "gueh-ar.init.KafRaaIsol", "gafTwodotsbelow-ar.init.KafRaaIsol", "kafRing-ar.init.KafRaaIsol", "kafDotabove-ar.init.KafRaaIsol", "ng-ar.init.KafRaaIsol", "kafThreedotsbelow-ar.init.KafRaaIsol", "gaf-ar.init.KafRaaIsol", "keheh-ar.init.KafRaaIsol", "gafThreedots-ar.init.KafRaaIsol", "kehehThreedotsabove-ar.init.KafRaaIsol", "kehehDotabove-ar.init.KafRaaIsol", "ngoeh-ar.init.KafRaaIsol", "rreh-ar.fina.KafRaaIsol", "rehv-ar.fina.KafRaaIsol", "rehRing-ar.fina.KafRaaIsol", "rehDotbelow-ar.fina.KafRaaIsol", "rehVbelow-ar.fina.KafRaaIsol", "rehDotbelowdotabove-ar.fina.KafRaaIsol", "rehTwodots-ar.fina.KafRaaIsol", "jeh-ar.fina.KafRaaIsol", "rehFourdots-ar.fina.KafRaaIsol", "rehStroke-ar.fina.KafRaaIsol", "rehVinvertedabove-ar.fina.KafRaaIsol", "zain-ar.fina.KafRaaIsol", "rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsol", "reh-ar.fina.KafRaaIsol", "rehTwodotsverticalabove-ar.fina.KafRaaIsol", "rehHamzaabove-ar.fina.KafRaaIsol", "ghainDotbelow-ar.init.AynHaaInit", "ghain-ar.init.AynHaaInit", "ainThreedotsdownabove-ar.init.AynHaaInit", "ainTwodotshorizontalabove-ar.init.AynHaaInit", "ainTwodotsverticalabove-ar.init.AynHaaInit", "ainThreedots-ar.init.AynHaaInit", "ain-ar.init.AynHaaInit", "kehehTwodotshorizontalabove-ar.medi.KafYaaFina", "kehehThreedotsbelow-ar.medi.KafYaaFina", "kafTwodotshorizontalabove-ar.medi.KafYaaFina", "kehehThreedotsupbelow-ar.medi.KafYaaFina", "kaf-ar.medi.KafYaaFina", "gafRing-ar.medi.KafYaaFina", "gueh-ar.medi.KafYaaFina", "gafTwodotsbelow-ar.medi.KafYaaFina", "kafRing-ar.medi.KafYaaFina", "kafDotabove-ar.medi.KafYaaFina", "ng-ar.medi.KafYaaFina", "kafThreedotsbelow-ar.medi.KafYaaFina", "gaf-ar.medi.KafYaaFina", "keheh-ar.medi.KafYaaFina", "gafThreedots-ar.medi.KafYaaFina", "kehehThreedotsabove-ar.medi.KafYaaFina", "kehehDotabove-ar.medi.KafYaaFina", "ngoeh-ar.medi.KafYaaFina", "yehFarsiFourbelow-ar.fina.KafYaaFina", "yehThreedotsbelow-ar.fina.KafYaaFina", "yehFarsiTwoabove-ar.fina.KafYaaFina", "yehFarsiThreedotsabove-ar.fina.KafYaaFina", "yehFarsiVinverted-ar.fina.KafYaaFina", "yehFarsiTwodotsabove-ar.fina.KafYaaFina", "e-ar.fina.KafYaaFina", "alefMaksura-ar.fina.KafYaaFina", "yehFarsiThreeabove-ar.fina.KafYaaFina", "yehTail-ar.fina.KafYaaFina", "yehFarsi-ar.fina.KafYaaFina", "yehHamzaabove-ar.fina.KafYaaFina", "yehKashmiri-ar.fina.KafYaaFina", "yeh-ar.fina.KafYaaFina", "yehVabove-ar.fina.KafYaaFina", "lamVabove-ar.init.LamMemHaaInit", "lamThreedotsabove-ar.init.LamMemHaaInit", "lam-ar.init.LamMemHaaInit", "lamThreedotsbelow-ar.init.LamMemHaaInit", "lamDotabove-ar.init.LamMemHaaInit", "lamBar-ar.init.LamMemHaaInit", "meem-ar.medi.LamMemHaaInit", "khah-ar.medi.LamMemHaaInit", "hah-ar.medi.LamMemHaaInit", "hahHamzaabove-ar.medi.LamMemHaaInit", "tcheheh-ar.medi.LamMemHaaInit", "hahThreedotsabove-ar.medi.LamMemHaaInit", "jeem-ar.medi.LamMemHaaInit", "hahTwodotsverticalabove-ar.medi.LamMemHaaInit", "hahTwodotshorizontalabove-ar.medi.LamMemHaaInit", "dyeh-ar.medi.LamMemHaaInit", "hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit", "hahTahbelow-ar.medi.LamMemHaaInit", "nyeh-ar.medi.LamMemHaaInit", "tchehDotabove-ar.medi.LamMemHaaInit", "hahFourbelow-ar.medi.LamMemHaaInit", "hahThreedotsupbelow-ar.medi.LamMemHaaInit", "hahTahabove-ar.medi.LamMemHaaInit", "tcheh-ar.medi.LamMemHaaInit", "lamVabove-ar.medi.LamAlfFina", "lamThreedotsabove-ar.medi.LamAlfFina", "lam-ar.medi.LamAlfFina", "lamThreedotsbelow-ar.medi.LamAlfFina", "lamDotabove-ar.medi.LamAlfFina", "lamBar-ar.medi.LamAlfFina", "alefHamzabelow-ar.fina.LamAlfFina", "alef-ar.fina.LamAlfFina", "alefThreeabove-ar.fina.LamAlfFina", "alefTwoabove-ar.fina.LamAlfFina", "alefHamzaabove-ar.fina.LamAlfFina", "alefMadda-ar.fina.LamAlfFina", "alefWavyhamzaabove-ar.fina.LamAlfFina", "alefWavyhamzabelow-ar.fina.LamAlfFina", "alefWasla-ar.fina.LamAlfFina", "lamVabove-ar.medi.LamMemMedi", "lamThreedotsabove-ar.medi.LamMemMedi", "lam-ar.medi.LamMemMedi", "lamThreedotsbelow-ar.medi.LamMemMedi", "lamDotabove-ar.medi.LamMemMedi", "lamBar-ar.medi.LamMemMedi", "meemDotabove-ar.medi.LamMemMedi", "meem-ar.medi.LamMemMedi", "meemDotbelow-ar.medi.LamMemMedi", "yehFarsiFourbelow-ar.init.BaaBaaHaaInit", "beheh-ar.init.BaaBaaHaaInit", "yehFarsiThreeabove-ar.init.BaaBaaHaaInit", "noonRing-ar.init.BaaBaaHaaInit", "behThreedotshorizontalbelow-ar.init.BaaBaaHaaInit", "behVabove-ar.init.BaaBaaHaaInit", "noonTahabove-ar.init.BaaBaaHaaInit", "yehVabove-ar.init.BaaBaaHaaInit", "yehFarsiTwoabove-ar.init.BaaBaaHaaInit", "noonThreedotsabove-ar.init.BaaBaaHaaInit", "yehHamzaabove-ar.init.BaaBaaHaaInit", "behDotless-ar.init.BaaBaaHaaInit", "yehKashmiri-ar.init.BaaBaaHaaInit", "yeh-ar.init.BaaBaaHaaInit", "rnoon-ar.init.BaaBaaHaaInit", "teheh-ar.init.BaaBaaHaaInit", "behVinvertedbelow-ar.init.BaaBaaHaaInit", "tehThreedotsdown-ar.init.BaaBaaHaaInit", "peh-ar.init.BaaBaaHaaInit", "beeh-ar.init.BaaBaaHaaInit", "beh-ar.init.BaaBaaHaaInit", "tteheh-ar.init.BaaBaaHaaInit", "behThreedotsupabove-ar.init.BaaBaaHaaInit", "noon-ar.init.BaaBaaHaaInit", "tehThreedotsupbelow-ar.init.BaaBaaHaaInit", "behThreedotsupbelow-ar.init.BaaBaaHaaInit", "teh-ar.init.BaaBaaHaaInit", "highhamzaYeh-ar.init.BaaBaaHaaInit", "yehFarsiVinverted-ar.init.BaaBaaHaaInit", "theh-ar.init.BaaBaaHaaInit", "tteh-ar.init.BaaBaaHaaInit", "noonDotbelow-ar.init.BaaBaaHaaInit", "noonVabove-ar.init.BaaBaaHaaInit", "alefMaksura-ar.init.BaaBaaHaaInit", "tehRing-ar.init.BaaBaaHaaInit", "behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit", "yehThreedotsbelow-ar.init.BaaBaaHaaInit", "e-ar.init.BaaBaaHaaInit", "noonghunna-ar.init.BaaBaaHaaInit", "yehFarsi-ar.init.BaaBaaHaaInit", "noonTwodotsbelow-ar.init.BaaBaaHaaInit", "yehFarsiFourbelow-ar.medi.BaaBaaHaaInit", "beheh-ar.medi.BaaBaaHaaInit", "yehFarsiThreeabove-ar.medi.BaaBaaHaaInit", "noonRing-ar.medi.BaaBaaHaaInit", "behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInit", "behVabove-ar.medi.BaaBaaHaaInit", "noonTahabove-ar.medi.BaaBaaHaaInit", "yehVabove-ar.medi.BaaBaaHaaInit", "yehFarsiTwoabove-ar.medi.BaaBaaHaaInit", "noonThreedotsabove-ar.medi.BaaBaaHaaInit", "yehHamzaabove-ar.medi.BaaBaaHaaInit", "behDotless-ar.medi.BaaBaaHaaInit", "yehKashmiri-ar.medi.BaaBaaHaaInit", "yeh-ar.medi.BaaBaaHaaInit", "rnoon-ar.medi.BaaBaaHaaInit", "teheh-ar.medi.BaaBaaHaaInit", "behVinvertedbelow-ar.medi.BaaBaaHaaInit", "tehThreedotsdown-ar.medi.BaaBaaHaaInit", "peh-ar.medi.BaaBaaHaaInit", "beeh-ar.medi.BaaBaaHaaInit", "beh-ar.medi.BaaBaaHaaInit", "tteheh-ar.medi.BaaBaaHaaInit", "behThreedotsupabove-ar.medi.BaaBaaHaaInit", "noon-ar.medi.BaaBaaHaaInit", "tehThreedotsupbelow-ar.medi.BaaBaaHaaInit", "behThreedotsupbelow-ar.medi.BaaBaaHaaInit", "teh-ar.medi.BaaBaaHaaInit", "yehFarsiVinverted-ar.medi.BaaBaaHaaInit", "theh-ar.medi.BaaBaaHaaInit", "tteh-ar.medi.BaaBaaHaaInit", "noonDotbelow-ar.medi.BaaBaaHaaInit", "noonVabove-ar.medi.BaaBaaHaaInit", "alefMaksura-ar.medi.BaaBaaHaaInit", "tehRing-ar.medi.BaaBaaHaaInit", "behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit", "yehThreedotsbelow-ar.medi.BaaBaaHaaInit", "e-ar.medi.BaaBaaHaaInit", "noonghunna-ar.medi.BaaBaaHaaInit", "yehFarsi-ar.medi.BaaBaaHaaInit", "noonTwodotsbelow-ar.medi.BaaBaaHaaInit", "khah-ar.medi.BaaBaaHaaInit", "hah-ar.medi.BaaBaaHaaInit", "hahHamzaabove-ar.medi.BaaBaaHaaInit", "tcheheh-ar.medi.BaaBaaHaaInit", "hahThreedotsabove-ar.medi.BaaBaaHaaInit", "jeem-ar.medi.BaaBaaHaaInit", "hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit", "hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit", "dyeh-ar.medi.BaaBaaHaaInit", "hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit", "hahTahbelow-ar.medi.BaaBaaHaaInit", "nyeh-ar.medi.BaaBaaHaaInit", "tchehDotabove-ar.medi.BaaBaaHaaInit", "hahFourbelow-ar.medi.BaaBaaHaaInit", "hahThreedotsupbelow-ar.medi.BaaBaaHaaInit", "hahTahabove-ar.medi.BaaBaaHaaInit", "tcheh-ar.medi.BaaBaaHaaInit", "yehFarsiFourbelow-ar.medi.SenBaaMemInit", "beheh-ar.medi.SenBaaMemInit", "yehFarsiThreeabove-ar.medi.SenBaaMemInit", "noonRing-ar.medi.SenBaaMemInit", "behThreedotshorizontalbelow-ar.medi.SenBaaMemInit", "behVabove-ar.medi.SenBaaMemInit", "noonTahabove-ar.medi.SenBaaMemInit", "yehVabove-ar.medi.SenBaaMemInit", "yehFarsiTwoabove-ar.medi.SenBaaMemInit", "noonThreedotsabove-ar.medi.SenBaaMemInit", "yehHamzaabove-ar.medi.SenBaaMemInit", "behDotless-ar.medi.SenBaaMemInit", "yehKashmiri-ar.medi.SenBaaMemInit", "yeh-ar.medi.SenBaaMemInit", "rnoon-ar.medi.SenBaaMemInit", "teheh-ar.medi.SenBaaMemInit", "behVinvertedbelow-ar.medi.SenBaaMemInit", "tehThreedotsdown-ar.medi.SenBaaMemInit", "peh-ar.medi.SenBaaMemInit", "beeh-ar.medi.SenBaaMemInit", "beh-ar.medi.SenBaaMemInit", "tteheh-ar.medi.SenBaaMemInit", "behThreedotsupabove-ar.medi.SenBaaMemInit", "noon-ar.medi.SenBaaMemInit", "tehThreedotsupbelow-ar.medi.SenBaaMemInit", "behThreedotsupbelow-ar.medi.SenBaaMemInit", "teh-ar.medi.SenBaaMemInit", "yehFarsiVinverted-ar.medi.SenBaaMemInit", "theh-ar.medi.SenBaaMemInit", "tteh-ar.medi.SenBaaMemInit", "noonDotbelow-ar.medi.SenBaaMemInit", "noonVabove-ar.medi.SenBaaMemInit", "alefMaksura-ar.medi.SenBaaMemInit", "tehRing-ar.medi.SenBaaMemInit", "behTwodotsbelowDotabove-ar.medi.SenBaaMemInit", "yehThreedotsbelow-ar.medi.SenBaaMemInit", "e-ar.medi.SenBaaMemInit", "noonghunna-ar.medi.SenBaaMemInit", "yehFarsi-ar.medi.SenBaaMemInit", "noonTwodotsbelow-ar.medi.SenBaaMemInit", "meem-ar.medi.SenBaaMemInit", "yehFarsiFourbelow-ar.init.BaaBaaIsol", "beheh-ar.init.BaaBaaIsol", "yehFarsiThreeabove-ar.init.BaaBaaIsol", "noonRing-ar.init.BaaBaaIsol", "behThreedotshorizontalbelow-ar.init.BaaBaaIsol", "behVabove-ar.init.BaaBaaIsol", "noonTahabove-ar.init.BaaBaaIsol", "yehVabove-ar.init.BaaBaaIsol", "yehFarsiTwoabove-ar.init.BaaBaaIsol", "noonThreedotsabove-ar.init.BaaBaaIsol", "yehHamzaabove-ar.init.BaaBaaIsol", "behDotless-ar.init.BaaBaaIsol", "yehKashmiri-ar.init.BaaBaaIsol", "yeh-ar.init.BaaBaaIsol", "rnoon-ar.init.BaaBaaIsol", "teheh-ar.init.BaaBaaIsol", "behVinvertedbelow-ar.init.BaaBaaIsol", "tehThreedotsdown-ar.init.BaaBaaIsol", "peh-ar.init.BaaBaaIsol", "beeh-ar.init.BaaBaaIsol", "beh-ar.init.BaaBaaIsol", "tteheh-ar.init.BaaBaaIsol", "behThreedotsupabove-ar.init.BaaBaaIsol", "noon-ar.init.BaaBaaIsol", "tehThreedotsupbelow-ar.init.BaaBaaIsol", "behThreedotsupbelow-ar.init.BaaBaaIsol", "teh-ar.init.BaaBaaIsol", "highhamzaYeh-ar.init.BaaBaaIsol", "yehFarsiVinverted-ar.init.BaaBaaIsol", "theh-ar.init.BaaBaaIsol", "tteh-ar.init.BaaBaaIsol", "noonDotbelow-ar.init.BaaBaaIsol", "noonVabove-ar.init.BaaBaaIsol", "alefMaksura-ar.init.BaaBaaIsol", "tehRing-ar.init.BaaBaaIsol", "behTwodotsbelowDotabove-ar.init.BaaBaaIsol", "yehThreedotsbelow-ar.init.BaaBaaIsol", "e-ar.init.BaaBaaIsol", "noonghunna-ar.init.BaaBaaIsol", "yehFarsi-ar.init.BaaBaaIsol", "noonTwodotsbelow-ar.init.BaaBaaIsol", "behThreedotsupabove-ar.fina.BaaBaaIsol", "behThreedotshorizontalbelow-ar.fina.BaaBaaIsol", "tehThreedotsupbelow-ar.fina.BaaBaaIsol", "beheh-ar.fina.BaaBaaIsol", "teh-ar.fina.BaaBaaIsol", "behTwodotsbelowDotabove-ar.fina.BaaBaaIsol", "theh-ar.fina.BaaBaaIsol", "tteh-ar.fina.BaaBaaIsol", "tehRing-ar.fina.BaaBaaIsol", "behVabove-ar.fina.BaaBaaIsol", "behThreedotsupbelow-ar.fina.BaaBaaIsol", "behDotless-ar.fina.BaaBaaIsol", "teheh-ar.fina.BaaBaaIsol", "behVinvertedbelow-ar.fina.BaaBaaIsol", "tehThreedotsdown-ar.fina.BaaBaaIsol", "peh-ar.fina.BaaBaaIsol", "beeh-ar.fina.BaaBaaIsol", "beh-ar.fina.BaaBaaIsol", "tteheh-ar.fina.BaaBaaIsol", "yehFarsiFourbelow-ar.init.BaaBaaMemInit", "beheh-ar.init.BaaBaaMemInit", "yehFarsiThreeabove-ar.init.BaaBaaMemInit", "noonRing-ar.init.BaaBaaMemInit", "behThreedotshorizontalbelow-ar.init.BaaBaaMemInit", "behVabove-ar.init.BaaBaaMemInit", "noonTahabove-ar.init.BaaBaaMemInit", "yehVabove-ar.init.BaaBaaMemInit", "yehFarsiTwoabove-ar.init.BaaBaaMemInit", "noonThreedotsabove-ar.init.BaaBaaMemInit", "yehHamzaabove-ar.init.BaaBaaMemInit", "behDotless-ar.init.BaaBaaMemInit", "yehKashmiri-ar.init.BaaBaaMemInit", "yeh-ar.init.BaaBaaMemInit", "rnoon-ar.init.BaaBaaMemInit", "teheh-ar.init.BaaBaaMemInit", "behVinvertedbelow-ar.init.BaaBaaMemInit", "tehThreedotsdown-ar.init.BaaBaaMemInit", "peh-ar.init.BaaBaaMemInit", "beeh-ar.init.BaaBaaMemInit", "beh-ar.init.BaaBaaMemInit", "tteheh-ar.init.BaaBaaMemInit", "behThreedotsupabove-ar.init.BaaBaaMemInit", "noon-ar.init.BaaBaaMemInit", "tehThreedotsupbelow-ar.init.BaaBaaMemInit", "behThreedotsupbelow-ar.init.BaaBaaMemInit", "teh-ar.init.BaaBaaMemInit", "highhamzaYeh-ar.init.BaaBaaMemInit", "yehFarsiVinverted-ar.init.BaaBaaMemInit", "theh-ar.init.BaaBaaMemInit", "tteh-ar.init.BaaBaaMemInit", "noonDotbelow-ar.init.BaaBaaMemInit", "noonVabove-ar.init.BaaBaaMemInit", "alefMaksura-ar.init.BaaBaaMemInit", "tehRing-ar.init.BaaBaaMemInit", "behTwodotsbelowDotabove-ar.init.BaaBaaMemInit", "yehThreedotsbelow-ar.init.BaaBaaMemInit", "e-ar.init.BaaBaaMemInit", "noonghunna-ar.init.BaaBaaMemInit", "yehFarsi-ar.init.BaaBaaMemInit", "noonTwodotsbelow-ar.init.BaaBaaMemInit", "yehFarsiFourbelow-ar.medi.BaaBaaMemInit", "beheh-ar.medi.BaaBaaMemInit", "yehFarsiThreeabove-ar.medi.BaaBaaMemInit", "noonRing-ar.medi.BaaBaaMemInit", "behThreedotshorizontalbelow-ar.medi.BaaBaaMemInit", "behVabove-ar.medi.BaaBaaMemInit", "noonTahabove-ar.medi.BaaBaaMemInit", "yehVabove-ar.medi.BaaBaaMemInit", "yehFarsiTwoabove-ar.medi.BaaBaaMemInit", "noonThreedotsabove-ar.medi.BaaBaaMemInit", "yehHamzaabove-ar.medi.BaaBaaMemInit", "behDotless-ar.medi.BaaBaaMemInit", "yehKashmiri-ar.medi.BaaBaaMemInit", "yeh-ar.medi.BaaBaaMemInit", "rnoon-ar.medi.BaaBaaMemInit", "teheh-ar.medi.BaaBaaMemInit", "behVinvertedbelow-ar.medi.BaaBaaMemInit", "tehThreedotsdown-ar.medi.BaaBaaMemInit", "peh-ar.medi.BaaBaaMemInit", "beeh-ar.medi.BaaBaaMemInit", "beh-ar.medi.BaaBaaMemInit", "tteheh-ar.medi.BaaBaaMemInit", "behThreedotsupabove-ar.medi.BaaBaaMemInit", "noon-ar.medi.BaaBaaMemInit", "tehThreedotsupbelow-ar.medi.BaaBaaMemInit", "behThreedotsupbelow-ar.medi.BaaBaaMemInit", "teh-ar.medi.BaaBaaMemInit", "yehFarsiVinverted-ar.medi.BaaBaaMemInit", "theh-ar.medi.BaaBaaMemInit", "tteh-ar.medi.BaaBaaMemInit", "noonDotbelow-ar.medi.BaaBaaMemInit", "noonVabove-ar.medi.BaaBaaMemInit", "alefMaksura-ar.medi.BaaBaaMemInit", "tehRing-ar.medi.BaaBaaMemInit", "behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit", "yehThreedotsbelow-ar.medi.BaaBaaMemInit", "e-ar.medi.BaaBaaMemInit", "noonghunna-ar.medi.BaaBaaMemInit", "yehFarsi-ar.medi.BaaBaaMemInit", "noonTwodotsbelow-ar.medi.BaaBaaMemInit", "meem-ar.medi.BaaBaaMemInit", "kehehTwodotshorizontalabove-ar.medi.KafBaaMedi", "kehehThreedotsbelow-ar.medi.KafBaaMedi", "kafTwodotshorizontalabove-ar.medi.KafBaaMedi", "kehehThreedotsupbelow-ar.medi.KafBaaMedi", "kaf-ar.medi.KafBaaMedi", "gafRing-ar.medi.KafBaaMedi", "gueh-ar.medi.KafBaaMedi", "gafTwodotsbelow-ar.medi.KafBaaMedi", "kafRing-ar.medi.KafBaaMedi", "kafDotabove-ar.medi.KafBaaMedi", "ng-ar.medi.KafBaaMedi", "kafThreedotsbelow-ar.medi.KafBaaMedi", "gaf-ar.medi.KafBaaMedi", "keheh-ar.medi.KafBaaMedi", "gafThreedots-ar.medi.KafBaaMedi", "kehehThreedotsabove-ar.medi.KafBaaMedi", "kehehDotabove-ar.medi.KafBaaMedi", "ngoeh-ar.medi.KafBaaMedi", "yehFarsiFourbelow-ar.medi.KafBaaMedi", "beheh-ar.medi.KafBaaMedi", "yehFarsiThreeabove-ar.medi.KafBaaMedi", "noonRing-ar.medi.KafBaaMedi", "behThreedotshorizontalbelow-ar.medi.KafBaaMedi", "behVabove-ar.medi.KafBaaMedi", "noonTahabove-ar.medi.KafBaaMedi", "yehVabove-ar.medi.KafBaaMedi", "yehFarsiTwoabove-ar.medi.KafBaaMedi", "noonThreedotsabove-ar.medi.KafBaaMedi", "yehHamzaabove-ar.medi.KafBaaMedi", "behDotless-ar.medi.KafBaaMedi", "yehKashmiri-ar.medi.KafBaaMedi", "yeh-ar.medi.KafBaaMedi", "rnoon-ar.medi.KafBaaMedi", "teheh-ar.medi.KafBaaMedi", "behVinvertedbelow-ar.medi.KafBaaMedi", "tehThreedotsdown-ar.medi.KafBaaMedi", "peh-ar.medi.KafBaaMedi", "beeh-ar.medi.KafBaaMedi", "beh-ar.medi.KafBaaMedi", "tteheh-ar.medi.KafBaaMedi", "behThreedotsupabove-ar.medi.KafBaaMedi", "noon-ar.medi.KafBaaMedi", "tehThreedotsupbelow-ar.medi.KafBaaMedi", "behThreedotsupbelow-ar.medi.KafBaaMedi", "teh-ar.medi.KafBaaMedi", "yehFarsiVinverted-ar.medi.KafBaaMedi", "theh-ar.medi.KafBaaMedi", "tteh-ar.medi.KafBaaMedi", "noonDotbelow-ar.medi.KafBaaMedi", "noonVabove-ar.medi.KafBaaMedi", "alefMaksura-ar.medi.KafBaaMedi", "tehRing-ar.medi.KafBaaMedi", "behTwodotsbelowDotabove-ar.medi.KafBaaMedi", "yehThreedotsbelow-ar.medi.KafBaaMedi", "e-ar.medi.KafBaaMedi", "noonghunna-ar.medi.KafBaaMedi", "yehFarsi-ar.medi.KafBaaMedi", "noonTwodotsbelow-ar.medi.KafBaaMedi", "yehFarsiFourbelow-ar.medi.BaaNonFina", "beheh-ar.medi.BaaNonFina", "yehFarsiThreeabove-ar.medi.BaaNonFina", "noonRing-ar.medi.BaaNonFina", "behThreedotshorizontalbelow-ar.medi.BaaNonFina", "behVabove-ar.medi.BaaNonFina", "noonTahabove-ar.medi.BaaNonFina", "yehVabove-ar.medi.BaaNonFina", "yehFarsiTwoabove-ar.medi.BaaNonFina", "noonThreedotsabove-ar.medi.BaaNonFina", "yehHamzaabove-ar.medi.BaaNonFina", "behDotless-ar.medi.BaaNonFina", "yehKashmiri-ar.medi.BaaNonFina", "yeh-ar.medi.BaaNonFina", "rnoon-ar.medi.BaaNonFina", "teheh-ar.medi.BaaNonFina", "behVinvertedbelow-ar.medi.BaaNonFina", "tehThreedotsdown-ar.medi.BaaNonFina", "peh-ar.medi.BaaNonFina", "beeh-ar.medi.BaaNonFina", "beh-ar.medi.BaaNonFina", "tteheh-ar.medi.BaaNonFina", "behThreedotsupabove-ar.medi.BaaNonFina", "noon-ar.medi.BaaNonFina", "tehThreedotsupbelow-ar.medi.BaaNonFina", "behThreedotsupbelow-ar.medi.BaaNonFina", "teh-ar.medi.BaaNonFina", "yehFarsiVinverted-ar.medi.BaaNonFina", "theh-ar.medi.BaaNonFina", "tteh-ar.medi.BaaNonFina", "noonDotbelow-ar.medi.BaaNonFina", "noonVabove-ar.medi.BaaNonFina", "alefMaksura-ar.medi.BaaNonFina", "tehRing-ar.medi.BaaNonFina", "behTwodotsbelowDotabove-ar.medi.BaaNonFina", "yehThreedotsbelow-ar.medi.BaaNonFina", "e-ar.medi.BaaNonFina", "noonghunna-ar.medi.BaaNonFina", "yehFarsi-ar.medi.BaaNonFina", "noonTwodotsbelow-ar.medi.BaaNonFina", "noon-ar.fina.BaaNonFina", "noonTwodotsbelow-ar.fina.BaaNonFina", "noonghunna-ar.fina.BaaNonFina", "noonRing-ar.fina.BaaNonFina", "rnoon-ar.fina.BaaNonFina", "noonTahabove-ar.fina.BaaNonFina", "noonDotbelow-ar.fina.BaaNonFina", "noonVabove-ar.fina.BaaNonFina", "noonThreedotsabove-ar.fina.BaaNonFina", "khah-ar.init.HaaRaaIsol", "hah-ar.init.HaaRaaIsol", "hahHamzaabove-ar.init.HaaRaaIsol", "tcheheh-ar.init.HaaRaaIsol", "hahThreedotsabove-ar.init.HaaRaaIsol", "jeem-ar.init.HaaRaaIsol", "hahTwodotsverticalabove-ar.init.HaaRaaIsol", "hahTwodotshorizontalabove-ar.init.HaaRaaIsol", "dyeh-ar.init.HaaRaaIsol", "hahTahTwodotshorizontalabove-ar.init.HaaRaaIsol", "hahTahbelow-ar.init.HaaRaaIsol", "nyeh-ar.init.HaaRaaIsol", "tchehDotabove-ar.init.HaaRaaIsol", "hahFourbelow-ar.init.HaaRaaIsol", "hahThreedotsupbelow-ar.init.HaaRaaIsol", "hahTahabove-ar.init.HaaRaaIsol", "tcheh-ar.init.HaaRaaIsol", "rreh-ar.fina.HaaRaaIsol", "rehv-ar.fina.HaaRaaIsol", "rehRing-ar.fina.HaaRaaIsol", "rehDotbelow-ar.fina.HaaRaaIsol", "rehVbelow-ar.fina.HaaRaaIsol", "rehDotbelowdotabove-ar.fina.HaaRaaIsol", "rehTwodots-ar.fina.HaaRaaIsol", "jeh-ar.fina.HaaRaaIsol", "rehFourdots-ar.fina.HaaRaaIsol", "rehStroke-ar.fina.HaaRaaIsol", "rehVinvertedabove-ar.fina.HaaRaaIsol", "zain-ar.fina.HaaRaaIsol", "rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsol", "reh-ar.fina.HaaRaaIsol", "rehTwodotsverticalabove-ar.fina.HaaRaaIsol", "rehHamzaabove-ar.fina.HaaRaaIsol", "heh-ar.init.HehHaaInit", "hehgoal-ar.init.HehHaaInit", "lamVabove-ar.init.LamRaaIsol", "lamThreedotsabove-ar.init.LamRaaIsol", "lam-ar.init.LamRaaIsol", "lamThreedotsbelow-ar.init.LamRaaIsol", "lamDotabove-ar.init.LamRaaIsol", "lamBar-ar.init.LamRaaIsol", "rreh-ar.fina.LamRaaIsol", "rehv-ar.fina.LamRaaIsol", "rehRing-ar.fina.LamRaaIsol", "rehDotbelow-ar.fina.LamRaaIsol", "rehVbelow-ar.fina.LamRaaIsol", "rehDotbelowdotabove-ar.fina.LamRaaIsol", "rehTwodots-ar.fina.LamRaaIsol", "jeh-ar.fina.LamRaaIsol", "rehFourdots-ar.fina.LamRaaIsol", "rehStroke-ar.fina.LamRaaIsol", "rehVinvertedabove-ar.fina.LamRaaIsol", "zain-ar.fina.LamRaaIsol", "rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsol", "reh-ar.fina.LamRaaIsol", "rehTwodotsverticalabove-ar.fina.LamRaaIsol", "rehHamzaabove-ar.fina.LamRaaIsol", "sadTwodotsbelow-ar.init.SadHaaInit", "dadDotbelow-ar.init.SadHaaInit", "dad-ar.init.SadHaaInit", "sadThreedots-ar.init.SadHaaInit", "sad-ar.init.SadHaaInit", "khah-ar.medi.SadHaaInit", "hah-ar.medi.SadHaaInit", "hahHamzaabove-ar.medi.SadHaaInit", "tcheheh-ar.medi.SadHaaInit", "hahThreedotsabove-ar.medi.SadHaaInit", "jeem-ar.medi.SadHaaInit", "hahTwodotsverticalabove-ar.medi.SadHaaInit", "hahTwodotshorizontalabove-ar.medi.SadHaaInit", "dyeh-ar.medi.SadHaaInit", "hahTahTwodotshorizontalabove-ar.medi.SadHaaInit", "hahTahbelow-ar.medi.SadHaaInit", "nyeh-ar.medi.SadHaaInit", "tchehDotabove-ar.medi.SadHaaInit", "hahFourbelow-ar.medi.SadHaaInit", "hahThreedotsupbelow-ar.medi.SadHaaInit", "hahTahabove-ar.medi.SadHaaInit", "tcheh-ar.medi.SadHaaInit", "yehFarsiFourbelow-ar.medi.BaaYaaFina", "beheh-ar.medi.BaaYaaFina", "yehFarsiThreeabove-ar.medi.BaaYaaFina", "noonRing-ar.medi.BaaYaaFina", "behThreedotshorizontalbelow-ar.medi.BaaYaaFina", "behVabove-ar.medi.BaaYaaFina", "noonTahabove-ar.medi.BaaYaaFina", "yehVabove-ar.medi.BaaYaaFina", "yehFarsiTwoabove-ar.medi.BaaYaaFina", "noonThreedotsabove-ar.medi.BaaYaaFina", "yehHamzaabove-ar.medi.BaaYaaFina", "behDotless-ar.medi.BaaYaaFina", "yehKashmiri-ar.medi.BaaYaaFina", "yeh-ar.medi.BaaYaaFina", "rnoon-ar.medi.BaaYaaFina", "teheh-ar.medi.BaaYaaFina", "behVinvertedbelow-ar.medi.BaaYaaFina", "tehThreedotsdown-ar.medi.BaaYaaFina", "peh-ar.medi.BaaYaaFina", "beeh-ar.medi.BaaYaaFina", "beh-ar.medi.BaaYaaFina", "tteheh-ar.medi.BaaYaaFina", "behThreedotsupabove-ar.medi.BaaYaaFina", "noon-ar.medi.BaaYaaFina", "tehThreedotsupbelow-ar.medi.BaaYaaFina", "behThreedotsupbelow-ar.medi.BaaYaaFina", "teh-ar.medi.BaaYaaFina", "yehFarsiVinverted-ar.medi.BaaYaaFina", "theh-ar.medi.BaaYaaFina", "tteh-ar.medi.BaaYaaFina", "noonDotbelow-ar.medi.BaaYaaFina", "noonVabove-ar.medi.BaaYaaFina", "alefMaksura-ar.medi.BaaYaaFina", "tehRing-ar.medi.BaaYaaFina", "behTwodotsbelowDotabove-ar.medi.BaaYaaFina", "yehThreedotsbelow-ar.medi.BaaYaaFina", "e-ar.medi.BaaYaaFina", "noonghunna-ar.medi.BaaYaaFina", "yehFarsi-ar.medi.BaaYaaFina", "noonTwodotsbelow-ar.medi.BaaYaaFina", "yehFarsiFourbelow-ar.fina.BaaYaaFina", "yehThreedotsbelow-ar.fina.BaaYaaFina", "yehFarsiTwoabove-ar.fina.BaaYaaFina", "yehFarsiThreedotsabove-ar.fina.BaaYaaFina", "yehFarsiVinverted-ar.fina.BaaYaaFina", "yehFarsiTwodotsabove-ar.fina.BaaYaaFina", "e-ar.fina.BaaYaaFina", "alefMaksura-ar.fina.BaaYaaFina", "yehFarsiThreeabove-ar.fina.BaaYaaFina", "yehTail-ar.fina.BaaYaaFina", "yehFarsi-ar.fina.BaaYaaFina", "yehHamzaabove-ar.fina.BaaYaaFina", "yehKashmiri-ar.fina.BaaYaaFina", "yeh-ar.fina.BaaYaaFina", "yehVabove-ar.fina.BaaYaaFina", "yehFarsiFourbelow-ar.init.BaaSenAltInit", "beheh-ar.init.BaaSenAltInit", "yehFarsiThreeabove-ar.init.BaaSenAltInit", "noonRing-ar.init.BaaSenAltInit", "behThreedotshorizontalbelow-ar.init.BaaSenAltInit", "behVabove-ar.init.BaaSenAltInit", "noonTahabove-ar.init.BaaSenAltInit", "yehVabove-ar.init.BaaSenAltInit", "yehFarsiTwoabove-ar.init.BaaSenAltInit", "noonThreedotsabove-ar.init.BaaSenAltInit", "yehHamzaabove-ar.init.BaaSenAltInit", "behDotless-ar.init.BaaSenAltInit", "yehKashmiri-ar.init.BaaSenAltInit", "yeh-ar.init.BaaSenAltInit", "rnoon-ar.init.BaaSenAltInit", "teheh-ar.init.BaaSenAltInit", "behVinvertedbelow-ar.init.BaaSenAltInit", "tehThreedotsdown-ar.init.BaaSenAltInit", "peh-ar.init.BaaSenAltInit", "beeh-ar.init.BaaSenAltInit", "beh-ar.init.BaaSenAltInit", "tteheh-ar.init.BaaSenAltInit", "behThreedotsupabove-ar.init.BaaSenAltInit", "noon-ar.init.BaaSenAltInit", "tehThreedotsupbelow-ar.init.BaaSenAltInit", "behThreedotsupbelow-ar.init.BaaSenAltInit", "teh-ar.init.BaaSenAltInit", "highhamzaYeh-ar.init.BaaSenAltInit", "yehFarsiVinverted-ar.init.BaaSenAltInit", "theh-ar.init.BaaSenAltInit", "tteh-ar.init.BaaSenAltInit", "noonDotbelow-ar.init.BaaSenAltInit", "noonVabove-ar.init.BaaSenAltInit", "alefMaksura-ar.init.BaaSenAltInit", "tehRing-ar.init.BaaSenAltInit", "behTwodotsbelowDotabove-ar.init.BaaSenAltInit", "yehThreedotsbelow-ar.init.BaaSenAltInit", "e-ar.init.BaaSenAltInit", "noonghunna-ar.init.BaaSenAltInit", "yehFarsi-ar.init.BaaSenAltInit", "noonTwodotsbelow-ar.init.BaaSenAltInit", "sheenDotbelow-ar.medi.BaaSenAltInit", "seenTwodotsverticalabove-ar.medi.BaaSenAltInit", "seen-ar.medi.BaaSenAltInit", "seenVinvertedabove-ar.medi.BaaSenAltInit", "seenFourabove-ar.medi.BaaSenAltInit", "sheen-ar.medi.BaaSenAltInit", "seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit", "seenFourdotsabove-ar.medi.BaaSenAltInit", "seenDotbelowDotabove-ar.medi.BaaSenAltInit", "seenThreedotsbelow-ar.medi.BaaSenAltInit", "sheenThreedotsbelow-ar.medi.BaaSenAltInit", "rreh-ar.fina.PostTooth", "rehv-ar.fina.PostTooth", "rehRing-ar.fina.PostTooth", "rehDotbelow-ar.fina.PostTooth", "rehVbelow-ar.fina.PostTooth", "rehDotbelowdotabove-ar.fina.PostTooth", "rehTwodots-ar.fina.PostTooth", "jeh-ar.fina.PostTooth", "rehFourdots-ar.fina.PostTooth", "rehStroke-ar.fina.PostTooth", "rehVinvertedabove-ar.fina.PostTooth", "zain-ar.fina.PostTooth", "rehTwodotshorizontalaboveTahabove-ar.fina.PostTooth", "reh-ar.fina.PostTooth", "rehTwodotsverticalabove-ar.fina.PostTooth", "rehHamzaabove-ar.fina.PostTooth", "yehFarsiFourbelow-ar.fina.PostTooth", "yehThreedotsbelow-ar.fina.PostTooth", "yehFarsiTwoabove-ar.fina.PostTooth", "yehFarsiThreedotsabove-ar.fina.PostTooth", "yehFarsiVinverted-ar.fina.PostTooth", "yehFarsiTwodotsabove-ar.fina.PostTooth", "e-ar.fina.PostTooth", "alefMaksura-ar.fina.PostTooth", "yehFarsiThreeabove-ar.fina.PostTooth", "yehTail-ar.fina.PostTooth", "yehFarsi-ar.fina.PostTooth", "yehHamzaabove-ar.fina.PostTooth", "yehKashmiri-ar.fina.PostTooth", "yeh-ar.fina.PostTooth", "yehVabove-ar.fina.PostTooth", "yehFarsiFourbelow-ar.init.AboveHaa", "beheh-ar.init.AboveHaa", "yehFarsiThreeabove-ar.init.AboveHaa", "noonRing-ar.init.AboveHaa", "behThreedotshorizontalbelow-ar.init.AboveHaa", "behVabove-ar.init.AboveHaa", "noonTahabove-ar.init.AboveHaa", "yehVabove-ar.init.AboveHaa", "yehFarsiTwoabove-ar.init.AboveHaa", "noonThreedotsabove-ar.init.AboveHaa", "yehHamzaabove-ar.init.AboveHaa", "behDotless-ar.init.AboveHaa", "yehKashmiri-ar.init.AboveHaa", "yeh-ar.init.AboveHaa", "rnoon-ar.init.AboveHaa", "teheh-ar.init.AboveHaa", "behVinvertedbelow-ar.init.AboveHaa", "tehThreedotsdown-ar.init.AboveHaa", "peh-ar.init.AboveHaa", "beeh-ar.init.AboveHaa", "beh-ar.init.AboveHaa", "tteheh-ar.init.AboveHaa", "behThreedotsupabove-ar.init.AboveHaa", "noon-ar.init.AboveHaa", "tehThreedotsupbelow-ar.init.AboveHaa", "behThreedotsupbelow-ar.init.AboveHaa", "teh-ar.init.AboveHaa", "highhamzaYeh-ar.init.AboveHaa", "yehFarsiVinverted-ar.init.AboveHaa", "theh-ar.init.AboveHaa", "tteh-ar.init.AboveHaa", "noonDotbelow-ar.init.AboveHaa", "noonVabove-ar.init.AboveHaa", "alefMaksura-ar.init.AboveHaa", "tehRing-ar.init.AboveHaa", "behTwodotsbelowDotabove-ar.init.AboveHaa", "yehThreedotsbelow-ar.init.AboveHaa", "e-ar.init.AboveHaa", "noonghunna-ar.init.AboveHaa", "yehFarsi-ar.init.AboveHaa", "noonTwodotsbelow-ar.init.AboveHaa", "yehFarsiFourbelow-ar.init.BaaHaaInit", "beheh-ar.init.BaaHaaInit", "yehFarsiThreeabove-ar.init.BaaHaaInit", "noonRing-ar.init.BaaHaaInit", "behThreedotshorizontalbelow-ar.init.BaaHaaInit", "behVabove-ar.init.BaaHaaInit", "noonTahabove-ar.init.BaaHaaInit", "yehVabove-ar.init.BaaHaaInit", "yehFarsiTwoabove-ar.init.BaaHaaInit", "noonThreedotsabove-ar.init.BaaHaaInit", "yehHamzaabove-ar.init.BaaHaaInit", "behDotless-ar.init.BaaHaaInit", "yehKashmiri-ar.init.BaaHaaInit", "yeh-ar.init.BaaHaaInit", "rnoon-ar.init.BaaHaaInit", "teheh-ar.init.BaaHaaInit", "behVinvertedbelow-ar.init.BaaHaaInit", "tehThreedotsdown-ar.init.BaaHaaInit", "peh-ar.init.BaaHaaInit", "beeh-ar.init.BaaHaaInit", "beh-ar.init.BaaHaaInit", "tteheh-ar.init.BaaHaaInit", "behThreedotsupabove-ar.init.BaaHaaInit", "noon-ar.init.BaaHaaInit", "tehThreedotsupbelow-ar.init.BaaHaaInit", "behThreedotsupbelow-ar.init.BaaHaaInit", "teh-ar.init.BaaHaaInit", "highhamzaYeh-ar.init.BaaHaaInit", "yehFarsiVinverted-ar.init.BaaHaaInit", "theh-ar.init.BaaHaaInit", "tteh-ar.init.BaaHaaInit", "noonDotbelow-ar.init.BaaHaaInit", "noonVabove-ar.init.BaaHaaInit", "alefMaksura-ar.init.BaaHaaInit", "tehRing-ar.init.BaaHaaInit", "behTwodotsbelowDotabove-ar.init.BaaHaaInit", "yehThreedotsbelow-ar.init.BaaHaaInit", "e-ar.init.BaaHaaInit", "noonghunna-ar.init.BaaHaaInit", "yehFarsi-ar.init.BaaHaaInit", "noonTwodotsbelow-ar.init.BaaHaaInit", "yehFarsiFourbelow-ar.init.BaaHaaMemInit", "beheh-ar.init.BaaHaaMemInit", "yehFarsiThreeabove-ar.init.BaaHaaMemInit", "noonRing-ar.init.BaaHaaMemInit", "behThreedotshorizontalbelow-ar.init.BaaHaaMemInit", "behVabove-ar.init.BaaHaaMemInit", "noonTahabove-ar.init.BaaHaaMemInit", "yehVabove-ar.init.BaaHaaMemInit", "yehFarsiTwoabove-ar.init.BaaHaaMemInit", "noonThreedotsabove-ar.init.BaaHaaMemInit", "yehHamzaabove-ar.init.BaaHaaMemInit", "behDotless-ar.init.BaaHaaMemInit", "yehKashmiri-ar.init.BaaHaaMemInit", "yeh-ar.init.BaaHaaMemInit", "rnoon-ar.init.BaaHaaMemInit", "teheh-ar.init.BaaHaaMemInit", "behVinvertedbelow-ar.init.BaaHaaMemInit", "tehThreedotsdown-ar.init.BaaHaaMemInit", "peh-ar.init.BaaHaaMemInit", "beeh-ar.init.BaaHaaMemInit", "beh-ar.init.BaaHaaMemInit", "tteheh-ar.init.BaaHaaMemInit", "behThreedotsupabove-ar.init.BaaHaaMemInit", "noon-ar.init.BaaHaaMemInit", "tehThreedotsupbelow-ar.init.BaaHaaMemInit", "behThreedotsupbelow-ar.init.BaaHaaMemInit", "teh-ar.init.BaaHaaMemInit", "highhamzaYeh-ar.init.BaaHaaMemInit", "yehFarsiVinverted-ar.init.BaaHaaMemInit", "theh-ar.init.BaaHaaMemInit", "tteh-ar.init.BaaHaaMemInit", "noonDotbelow-ar.init.BaaHaaMemInit", "noonVabove-ar.init.BaaHaaMemInit", "alefMaksura-ar.init.BaaHaaMemInit", "tehRing-ar.init.BaaHaaMemInit", "behTwodotsbelowDotabove-ar.init.BaaHaaMemInit", "yehThreedotsbelow-ar.init.BaaHaaMemInit", "e-ar.init.BaaHaaMemInit", "noonghunna-ar.init.BaaHaaMemInit", "yehFarsi-ar.init.BaaHaaMemInit", "noonTwodotsbelow-ar.init.BaaHaaMemInit", "khah-ar.medi.BaaHaaMemInit", "hah-ar.medi.BaaHaaMemInit", "hahHamzaabove-ar.medi.BaaHaaMemInit", "tcheheh-ar.medi.BaaHaaMemInit", "hahThreedotsabove-ar.medi.BaaHaaMemInit", "jeem-ar.medi.BaaHaaMemInit", "hahTwodotsverticalabove-ar.medi.BaaHaaMemInit", "hahTwodotshorizontalabove-ar.medi.BaaHaaMemInit", "dyeh-ar.medi.BaaHaaMemInit", "hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit", "hahTahbelow-ar.medi.BaaHaaMemInit", "nyeh-ar.medi.BaaHaaMemInit", "tchehDotabove-ar.medi.BaaHaaMemInit", "hahFourbelow-ar.medi.BaaHaaMemInit", "hahThreedotsupbelow-ar.medi.BaaHaaMemInit", "hahTahabove-ar.medi.BaaHaaMemInit", "tcheh-ar.medi.BaaHaaMemInit", "khah-ar.fina.AboveHaaIsol", "hah-ar.fina.AboveHaaIsol", "hahHamzaabove-ar.fina.AboveHaaIsol", "tcheheh-ar.fina.AboveHaaIsol", "hahThreedotsabove-ar.fina.AboveHaaIsol", "jeem-ar.fina.AboveHaaIsol", "hahTwodotsverticalabove-ar.fina.AboveHaaIsol", "hahTwodotshorizontalabove-ar.fina.AboveHaaIsol", "dyeh-ar.fina.AboveHaaIsol", "hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol", "hahTahbelow-ar.fina.AboveHaaIsol", "nyeh-ar.fina.AboveHaaIsol", "tchehDotabove-ar.fina.AboveHaaIsol", "hahFourbelow-ar.fina.AboveHaaIsol", "hahThreedotsupbelow-ar.fina.AboveHaaIsol", "hahTahabove-ar.fina.AboveHaaIsol", "tcheh-ar.fina.AboveHaaIsol", "lamVabove-ar.init.LamHaaHaaInit", "lamThreedotsabove-ar.init.LamHaaHaaInit", "lam-ar.init.LamHaaHaaInit", "lamThreedotsbelow-ar.init.LamHaaHaaInit", "lamDotabove-ar.init.LamHaaHaaInit", "lamBar-ar.init.LamHaaHaaInit", "ghainDotbelow-ar.init.Finjani", "ghain-ar.init.Finjani", "ainThreedotsdownabove-ar.init.Finjani", "ainTwodotshorizontalabove-ar.init.Finjani", "ainTwodotsverticalabove-ar.init.Finjani", "ainThreedots-ar.init.Finjani", "ain-ar.init.Finjani", "khah-ar.init.Finjani", "hah-ar.init.Finjani", "hahHamzaabove-ar.init.Finjani", "tcheheh-ar.init.Finjani", "hahThreedotsabove-ar.init.Finjani", "jeem-ar.init.Finjani", "hahTwodotsverticalabove-ar.init.Finjani", "hahTwodotshorizontalabove-ar.init.Finjani", "dyeh-ar.init.Finjani", "hahTahTwodotshorizontalabove-ar.init.Finjani", "hahTahbelow-ar.init.Finjani", "nyeh-ar.init.Finjani", "tchehDotabove-ar.init.Finjani", "hahFourbelow-ar.init.Finjani", "hahThreedotsupbelow-ar.init.Finjani", "hahTahabove-ar.init.Finjani", "tcheh-ar.init.Finjani", "khah-ar.medi.Finjani", "hah-ar.medi.Finjani", "hahHamzaabove-ar.medi.Finjani", "tcheheh-ar.medi.Finjani", "hahThreedotsabove-ar.medi.Finjani", "jeem-ar.medi.Finjani", "hahTwodotsverticalabove-ar.medi.Finjani", "hahTwodotshorizontalabove-ar.medi.Finjani", "dyeh-ar.medi.Finjani", "hahTahTwodotshorizontalabove-ar.medi.Finjani", "hahTahbelow-ar.medi.Finjani", "nyeh-ar.medi.Finjani", "tchehDotabove-ar.medi.Finjani", "hahFourbelow-ar.medi.Finjani", "hahThreedotsupbelow-ar.medi.Finjani", "hahTahabove-ar.medi.Finjani", "tcheh-ar.medi.Finjani", "sheenDotbelow-ar.init.PreYaa", "seenTwodotsverticalabove-ar.init.PreYaa", "seen-ar.init.PreYaa", "seenVinvertedabove-ar.init.PreYaa", "seenFourabove-ar.init.PreYaa", "sheen-ar.init.PreYaa", "seenTahTwodotshorizontalabove-ar.init.PreYaa", "seenFourdotsabove-ar.init.PreYaa", "seenDotbelowDotabove-ar.init.PreYaa", "seenThreedotsbelow-ar.init.PreYaa", "sheenThreedotsbelow-ar.init.PreYaa", "sheenDotbelow-ar.medi.PreYaa", "seenTwodotsverticalabove-ar.medi.PreYaa", "seen-ar.medi.PreYaa", "seenVinvertedabove-ar.medi.PreYaa", "seenFourabove-ar.medi.PreYaa", "sheen-ar.medi.PreYaa", "seenTahTwodotshorizontalabove-ar.medi.PreYaa", "seenFourdotsabove-ar.medi.PreYaa", "seenDotbelowDotabove-ar.medi.PreYaa", "seenThreedotsbelow-ar.medi.PreYaa", "sheenThreedotsbelow-ar.medi.PreYaa", "sadTwodotsbelow-ar.init.PreYaa", "dadDotbelow-ar.init.PreYaa", "dad-ar.init.PreYaa", "sadThreedots-ar.init.PreYaa", "sad-ar.init.PreYaa", "sadTwodotsbelow-ar.medi.PreYaa", "dadDotbelow-ar.medi.PreYaa", "dad-ar.medi.PreYaa", "sadThreedots-ar.medi.PreYaa", "sad-ar.medi.PreYaa", "yehFarsiFourbelow-ar.init.High", "beheh-ar.init.High", "yehFarsiThreeabove-ar.init.High", "noonRing-ar.init.High", "behThreedotshorizontalbelow-ar.init.High", "behVabove-ar.init.High", "noonTahabove-ar.init.High", "yehVabove-ar.init.High", "yehFarsiTwoabove-ar.init.High", "noonThreedotsabove-ar.init.High", "yehHamzaabove-ar.init.High", "behDotless-ar.init.High", "yehKashmiri-ar.init.High", "yeh-ar.init.High", "rnoon-ar.init.High", "teheh-ar.init.High", "behVinvertedbelow-ar.init.High", "tehThreedotsdown-ar.init.High", "peh-ar.init.High", "beeh-ar.init.High", "beh-ar.init.High", "tteheh-ar.init.High", "behThreedotsupabove-ar.init.High", "noon-ar.init.High", "tehThreedotsupbelow-ar.init.High", "behThreedotsupbelow-ar.init.High", "teh-ar.init.High", "highhamzaYeh-ar.init.High", "yehFarsiVinverted-ar.init.High", "theh-ar.init.High", "tteh-ar.init.High", "noonDotbelow-ar.init.High", "noonVabove-ar.init.High", "alefMaksura-ar.init.High", "tehRing-ar.init.High", "behTwodotsbelowDotabove-ar.init.High", "yehThreedotsbelow-ar.init.High", "e-ar.init.High", "noonghunna-ar.init.High", "yehFarsi-ar.init.High", "noonTwodotsbelow-ar.init.High", "yehFarsiFourbelow-ar.medi.High", "beheh-ar.medi.High", "yehFarsiThreeabove-ar.medi.High", "noonRing-ar.medi.High", "behThreedotshorizontalbelow-ar.medi.High", "behVabove-ar.medi.High", "noonTahabove-ar.medi.High", "yehVabove-ar.medi.High", "yehFarsiTwoabove-ar.medi.High", "noonThreedotsabove-ar.medi.High", "yehHamzaabove-ar.medi.High", "behDotless-ar.medi.High", "yehKashmiri-ar.medi.High", "yeh-ar.medi.High", "rnoon-ar.medi.High", "teheh-ar.medi.High", "behVinvertedbelow-ar.medi.High", "tehThreedotsdown-ar.medi.High", "peh-ar.medi.High", "beeh-ar.medi.High", "beh-ar.medi.High", "tteheh-ar.medi.High", "behThreedotsupabove-ar.medi.High", "noon-ar.medi.High", "tehThreedotsupbelow-ar.medi.High", "behThreedotsupbelow-ar.medi.High", "teh-ar.medi.High", "yehFarsiVinverted-ar.medi.High", "theh-ar.medi.High", "tteh-ar.medi.High", "noonDotbelow-ar.medi.High", "noonVabove-ar.medi.High", "alefMaksura-ar.medi.High", "tehRing-ar.medi.High", "behTwodotsbelowDotabove-ar.medi.High", "yehThreedotsbelow-ar.medi.High", "e-ar.medi.High", "noonghunna-ar.medi.High", "yehFarsi-ar.medi.High", "noonTwodotsbelow-ar.medi.High", "sheenDotbelow-ar.fina.BaaSen", "seenTwodotsverticalabove-ar.fina.BaaSen", "seen-ar.fina.BaaSen", "seenVinvertedabove-ar.fina.BaaSen", "seenFourabove-ar.fina.BaaSen", "sheen-ar.fina.BaaSen", "seenTahTwodotshorizontalabove-ar.fina.BaaSen", "seenFourdotsabove-ar.fina.BaaSen", "seenDotbelowDotabove-ar.fina.BaaSen", "seenThreedotsbelow-ar.fina.BaaSen", "sheenThreedotsbelow-ar.fina.BaaSen", "meem-ar.fina.PostTooth", "yehFarsiFourbelow-ar.init.Wide", "beheh-ar.init.Wide", "yehFarsiThreeabove-ar.init.Wide", "noonRing-ar.init.Wide", "behThreedotshorizontalbelow-ar.init.Wide", "behVabove-ar.init.Wide", "noonTahabove-ar.init.Wide", "yehVabove-ar.init.Wide", "yehFarsiTwoabove-ar.init.Wide", "noonThreedotsabove-ar.init.Wide", "yehHamzaabove-ar.init.Wide", "behDotless-ar.init.Wide", "yehKashmiri-ar.init.Wide", "yeh-ar.init.Wide", "rnoon-ar.init.Wide", "teheh-ar.init.Wide", "behVinvertedbelow-ar.init.Wide", "tehThreedotsdown-ar.init.Wide", "peh-ar.init.Wide", "beeh-ar.init.Wide", "beh-ar.init.Wide", "tteheh-ar.init.Wide", "behThreedotsupabove-ar.init.Wide", "noon-ar.init.Wide", "tehThreedotsupbelow-ar.init.Wide", "behThreedotsupbelow-ar.init.Wide", "teh-ar.init.Wide", "highhamzaYeh-ar.init.Wide", "yehFarsiVinverted-ar.init.Wide", "theh-ar.init.Wide", "tteh-ar.init.Wide", "noonDotbelow-ar.init.Wide", "noonVabove-ar.init.Wide", "alefMaksura-ar.init.Wide", "tehRing-ar.init.Wide", "behTwodotsbelowDotabove-ar.init.Wide", "yehThreedotsbelow-ar.init.Wide", "e-ar.init.Wide", "noonghunna-ar.init.Wide", "yehFarsi-ar.init.Wide", "noonTwodotsbelow-ar.init.Wide", "khah-ar.medi.HaaHaaInit", "hah-ar.medi.HaaHaaInit", "hahHamzaabove-ar.medi.HaaHaaInit", "tcheheh-ar.medi.HaaHaaInit", "hahThreedotsabove-ar.medi.HaaHaaInit", "jeem-ar.medi.HaaHaaInit", "hahTwodotsverticalabove-ar.medi.HaaHaaInit", "hahTwodotshorizontalabove-ar.medi.HaaHaaInit", "dyeh-ar.medi.HaaHaaInit", "hahTahTwodotshorizontalabove-ar.medi.HaaHaaInit", "hahTahbelow-ar.medi.HaaHaaInit", "nyeh-ar.medi.HaaHaaInit", "tchehDotabove-ar.medi.HaaHaaInit", "hahFourbelow-ar.medi.HaaHaaInit", "hahThreedotsupbelow-ar.medi.HaaHaaInit", "hahTahabove-ar.medi.HaaHaaInit", "tcheh-ar.medi.HaaHaaInit", "khah-ar.medi.AynHaaInit", "hah-ar.medi.AynHaaInit", "hahHamzaabove-ar.medi.AynHaaInit", "tcheheh-ar.medi.AynHaaInit", "hahThreedotsabove-ar.medi.AynHaaInit", "jeem-ar.medi.AynHaaInit", "hahTwodotsverticalabove-ar.medi.AynHaaInit", "hahTwodotshorizontalabove-ar.medi.AynHaaInit", "dyeh-ar.medi.AynHaaInit", "hahTahTwodotshorizontalabove-ar.medi.AynHaaInit", "hahTahbelow-ar.medi.AynHaaInit", "nyeh-ar.medi.AynHaaInit", "tchehDotabove-ar.medi.AynHaaInit", "hahFourbelow-ar.medi.AynHaaInit", "hahThreedotsupbelow-ar.medi.AynHaaInit", "hahTahabove-ar.medi.AynHaaInit", "tcheh-ar.medi.AynHaaInit", "meem-ar.medi.LamMemInitTatweel", "heh-ar.init.AboveHaa", "hehgoal-ar.init.AboveHaa", "khah-ar.init.AboveHaa", "hah-ar.init.AboveHaa", "hahHamzaabove-ar.init.AboveHaa", "tcheheh-ar.init.AboveHaa", "hahThreedotsabove-ar.init.AboveHaa", "jeem-ar.init.AboveHaa", "hahTwodotsverticalabove-ar.init.AboveHaa", "hahTwodotshorizontalabove-ar.init.AboveHaa", "dyeh-ar.init.AboveHaa", "hahTahTwodotshorizontalabove-ar.init.AboveHaa", "hahTahbelow-ar.init.AboveHaa", "nyeh-ar.init.AboveHaa", "tchehDotabove-ar.init.AboveHaa", "hahFourbelow-ar.init.AboveHaa", "hahThreedotsupbelow-ar.init.AboveHaa", "hahTahabove-ar.init.AboveHaa", "tcheh-ar.init.AboveHaa", "ghainDotbelow-ar.init.AboveHaa", "ghain-ar.init.AboveHaa", "ainThreedotsdownabove-ar.init.AboveHaa", "ainTwodotshorizontalabove-ar.init.AboveHaa", "ainTwodotsverticalabove-ar.init.AboveHaa", "ainThreedots-ar.init.AboveHaa", "ain-ar.init.AboveHaa", "khah-ar.fina.AboveHaaIsol2", "hah-ar.fina.AboveHaaIsol2", "hahHamzaabove-ar.fina.AboveHaaIsol2", "tcheheh-ar.fina.AboveHaaIsol2", "hahThreedotsabove-ar.fina.AboveHaaIsol2", "jeem-ar.fina.AboveHaaIsol2", "hahTwodotsverticalabove-ar.fina.AboveHaaIsol2", "hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2", "dyeh-ar.fina.AboveHaaIsol2", "hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2", "hahTahbelow-ar.fina.AboveHaaIsol2", "nyeh-ar.fina.AboveHaaIsol2", "tchehDotabove-ar.fina.AboveHaaIsol2", "hahFourbelow-ar.fina.AboveHaaIsol2", "hahThreedotsupbelow-ar.fina.AboveHaaIsol2", "hahTahabove-ar.fina.AboveHaaIsol2", "tcheh-ar.fina.AboveHaaIsol2", "meem-ar.init.AboveHaa", "kehehTwodotshorizontalabove-ar.init.AboveHaa", "kehehThreedotsbelow-ar.init.AboveHaa", "kafTwodotshorizontalabove-ar.init.AboveHaa", "kehehThreedotsupbelow-ar.init.AboveHaa", "kaf-ar.init.AboveHaa", "gafRing-ar.init.AboveHaa", "gueh-ar.init.AboveHaa", "gafTwodotsbelow-ar.init.AboveHaa", "kafRing-ar.init.AboveHaa", "kafDotabove-ar.init.AboveHaa", "ng-ar.init.AboveHaa", "kafThreedotsbelow-ar.init.AboveHaa", "gaf-ar.init.AboveHaa", "keheh-ar.init.AboveHaa", "gafThreedots-ar.init.AboveHaa", "kehehThreedotsabove-ar.init.AboveHaa", "kehehDotabove-ar.init.AboveHaa", "ngoeh-ar.init.AboveHaa", "kehehTwodotshorizontalabove-ar.init.KafLam", "kehehThreedotsbelow-ar.init.KafLam", "kafTwodotshorizontalabove-ar.init.KafLam", "kehehThreedotsupbelow-ar.init.KafLam", "kaf-ar.init.KafLam", "gafRing-ar.init.KafLam", "gueh-ar.init.KafLam", "gafTwodotsbelow-ar.init.KafLam", "kafRing-ar.init.KafLam", "kafDotabove-ar.init.KafLam", "ng-ar.init.KafLam", "kafThreedotsbelow-ar.init.KafLam", "gaf-ar.init.KafLam", "keheh-ar.init.KafLam", "gafThreedots-ar.init.KafLam", "kehehThreedotsabove-ar.init.KafLam", "kehehDotabove-ar.init.KafLam", "ngoeh-ar.init.KafLam", "kehehTwodotshorizontalabove-ar.fina.KafKafFina", "kehehThreedotsbelow-ar.fina.KafKafFina", "kafTwodotshorizontalabove-ar.fina.KafKafFina", "kehehThreedotsupbelow-ar.fina.KafKafFina", "kaf-ar.fina.KafKafFina", "gafRing-ar.fina.KafKafFina", "gueh-ar.fina.KafKafFina", "gafTwodotsbelow-ar.fina.KafKafFina", "kafRing-ar.fina.KafKafFina", "kafDotabove-ar.fina.KafKafFina", "ng-ar.fina.KafKafFina", "kafThreedotsbelow-ar.fina.KafKafFina", "gaf-ar.fina.KafKafFina", "keheh-ar.fina.KafKafFina", "gafThreedots-ar.fina.KafKafFina", "kehehThreedotsabove-ar.fina.KafKafFina", "kehehDotabove-ar.fina.KafKafFina", "ngoeh-ar.fina.KafKafFina", "lamVabove-ar.medi.KafLam", "lamThreedotsabove-ar.medi.KafLam", "lam-ar.medi.KafLam", "lamThreedotsbelow-ar.medi.KafLam", "lamDotabove-ar.medi.KafLam", "lamBar-ar.medi.KafLam", "lamVabove-ar.medi.KafLamMemMedi", "lamThreedotsabove-ar.medi.KafLamMemMedi", "lam-ar.medi.KafLamMemMedi", "lamThreedotsbelow-ar.medi.KafLamMemMedi", "lamDotabove-ar.medi.KafLamMemMedi", "lamBar-ar.medi.KafLamMemMedi", "kehehTwodotshorizontalabove-ar.medi.KafLam", "kehehThreedotsbelow-ar.medi.KafLam", "kafTwodotshorizontalabove-ar.medi.KafLam", "kehehThreedotsupbelow-ar.medi.KafLam", "kaf-ar.medi.KafLam", "gafRing-ar.medi.KafLam", "gueh-ar.medi.KafLam", "gafTwodotsbelow-ar.medi.KafLam", "kafRing-ar.medi.KafLam", "kafDotabove-ar.medi.KafLam", "ng-ar.medi.KafLam", "kafThreedotsbelow-ar.medi.KafLam", "gaf-ar.medi.KafLam", "keheh-ar.medi.KafLam", "gafThreedots-ar.medi.KafLam", "kehehThreedotsabove-ar.medi.KafLam", "kehehDotabove-ar.medi.KafLam", "ngoeh-ar.medi.KafLam", "lamVabove-ar.medi.KafLamHehIsol", "lamThreedotsabove-ar.medi.KafLamHehIsol", "lam-ar.medi.KafLamHehIsol", "lamThreedotsbelow-ar.medi.KafLamHehIsol", "lamDotabove-ar.medi.KafLamHehIsol", "lamBar-ar.medi.KafLamHehIsol", "lamVabove-ar.medi.KafLamYaa", "lamThreedotsabove-ar.medi.KafLamYaa", "lam-ar.medi.KafLamYaa", "lamThreedotsbelow-ar.medi.KafLamYaa", "lamDotabove-ar.medi.KafLamYaa", "lamBar-ar.medi.KafLamYaa", "lamVabove-ar.medi.KafLamAlf", "lamThreedotsabove-ar.medi.KafLamAlf", "lam-ar.medi.KafLamAlf", "lamThreedotsbelow-ar.medi.KafLamAlf", "lamDotabove-ar.medi.KafLamAlf", "lamBar-ar.medi.KafLamAlf", "lamVabove-ar.fina.KafLam", "lamThreedotsabove-ar.fina.KafLam", "lam-ar.fina.KafLam", "lamThreedotsbelow-ar.fina.KafLam", "lamDotabove-ar.fina.KafLam", "lamBar-ar.fina.KafLam", "alefHamzabelow-ar.fina.KafAlf", "alef-ar.fina.KafAlf", "alefThreeabove-ar.fina.KafAlf", "alefTwoabove-ar.fina.KafAlf", "alefHamzaabove-ar.fina.KafAlf", "alefMadda-ar.fina.KafAlf", "alefWavyhamzaabove-ar.fina.KafAlf", "alefWavyhamzabelow-ar.fina.KafAlf", "alefWasla-ar.fina.KafAlf", "kehehTwodotshorizontalabove-ar.init.KafMemAlf", "kehehThreedotsbelow-ar.init.KafMemAlf", "kafTwodotshorizontalabove-ar.init.KafMemAlf", "kehehThreedotsupbelow-ar.init.KafMemAlf", "kaf-ar.init.KafMemAlf", "gafRing-ar.init.KafMemAlf", "gueh-ar.init.KafMemAlf", "gafTwodotsbelow-ar.init.KafMemAlf", "kafRing-ar.init.KafMemAlf", "kafDotabove-ar.init.KafMemAlf", "ng-ar.init.KafMemAlf", "kafThreedotsbelow-ar.init.KafMemAlf", "gaf-ar.init.KafMemAlf", "keheh-ar.init.KafMemAlf", "gafThreedots-ar.init.KafMemAlf", "kehehThreedotsabove-ar.init.KafMemAlf", "kehehDotabove-ar.init.KafMemAlf", "ngoeh-ar.init.KafMemAlf", "kehehTwodotshorizontalabove-ar.medi.KafMemAlf", "kehehThreedotsbelow-ar.medi.KafMemAlf", "kafTwodotshorizontalabove-ar.medi.KafMemAlf", "kehehThreedotsupbelow-ar.medi.KafMemAlf", "kaf-ar.medi.KafMemAlf", "gafRing-ar.medi.KafMemAlf", "gueh-ar.medi.KafMemAlf", "gafTwodotsbelow-ar.medi.KafMemAlf", "kafRing-ar.medi.KafMemAlf", "kafDotabove-ar.medi.KafMemAlf", "ng-ar.medi.KafMemAlf", "kafThreedotsbelow-ar.medi.KafMemAlf", "gaf-ar.medi.KafMemAlf", "keheh-ar.medi.KafMemAlf", "gafThreedots-ar.medi.KafMemAlf", "kehehThreedotsabove-ar.medi.KafMemAlf", "kehehDotabove-ar.medi.KafMemAlf", "ngoeh-ar.medi.KafMemAlf", "meem-ar.medi.KafMemAlf", "lamVabove-ar.medi.KafMemLam", "lamThreedotsabove-ar.medi.KafMemLam", "lam-ar.medi.KafMemLam", "lamThreedotsbelow-ar.medi.KafMemLam", "lamDotabove-ar.medi.KafMemLam", "lamBar-ar.medi.KafMemLam", "lamVabove-ar.fina.KafMemLam", "lamThreedotsabove-ar.fina.KafMemLam", "lam-ar.fina.KafMemLam", "lamThreedotsbelow-ar.fina.KafMemLam", "lamDotabove-ar.fina.KafMemLam", "lamBar-ar.fina.KafMemLam", "alefHamzabelow-ar.fina.KafMemAlf", "alef-ar.fina.KafMemAlf", "alefThreeabove-ar.fina.KafMemAlf", "alefTwoabove-ar.fina.KafMemAlf", "alefHamzaabove-ar.fina.KafMemAlf", "alefMadda-ar.fina.KafMemAlf", "alefWavyhamzaabove-ar.fina.KafMemAlf", "alefWavyhamzabelow-ar.fina.KafMemAlf", "alefWasla-ar.fina.KafMemAlf", "kehehTwodotshorizontalabove-ar.init.KafHeh", "kehehThreedotsbelow-ar.init.KafHeh", "kafTwodotshorizontalabove-ar.init.KafHeh", "kehehThreedotsupbelow-ar.init.KafHeh", "kaf-ar.init.KafHeh", "gafRing-ar.init.KafHeh", "gueh-ar.init.KafHeh", "gafTwodotsbelow-ar.init.KafHeh", "kafRing-ar.init.KafHeh", "kafDotabove-ar.init.KafHeh", "ng-ar.init.KafHeh", "kafThreedotsbelow-ar.init.KafHeh", "gaf-ar.init.KafHeh", "keheh-ar.init.KafHeh", "gafThreedots-ar.init.KafHeh", "kehehThreedotsabove-ar.init.KafHeh", "kehehDotabove-ar.init.KafHeh", "ngoeh-ar.init.KafHeh", "kehehTwodotshorizontalabove-ar.medi.KafHeh", "kehehThreedotsbelow-ar.medi.KafHeh", "kafTwodotshorizontalabove-ar.medi.KafHeh", "kehehThreedotsupbelow-ar.medi.KafHeh", "kaf-ar.medi.KafHeh", "gafRing-ar.medi.KafHeh", "gueh-ar.medi.KafHeh", "gafTwodotsbelow-ar.medi.KafHeh", "kafRing-ar.medi.KafHeh", "kafDotabove-ar.medi.KafHeh", "ng-ar.medi.KafHeh", "kafThreedotsbelow-ar.medi.KafHeh", "gaf-ar.medi.KafHeh", "keheh-ar.medi.KafHeh", "gafThreedots-ar.medi.KafHeh", "kehehThreedotsabove-ar.medi.KafHeh", "kehehDotabove-ar.medi.KafHeh", "ngoeh-ar.medi.KafHeh", "heh-ar.fina.KafHeh", "hehgoal-ar.fina.KafHeh", "tehMarbutagoal-ar.fina.KafHeh", "ae-ar.fina.KafHeh", "tehMarbuta-ar.fina.KafHeh", "dalFourdots-ar.fina.KafDal", "dalVinvertedabove-ar.fina.KafDal", "dalRing-ar.fina.KafDal", "ddal-ar.fina.KafDal", "dalVinvertedbelow-ar.fina.KafDal", "thal-ar.fina.KafDal", "dal-ar.fina.KafDal", "dalTwodotsverticalbelowTah-ar.fina.KafDal", "dahal-ar.fina.KafDal", "dalDotbelowTah-ar.fina.KafDal", "dalDotbelow-ar.fina.KafDal", "dalThreedotsdown-ar.fina.KafDal", "dul-ar.fina.KafDal", "ddahal-ar.fina.KafDal", "lamVabove-ar.init.LamHeh", "lamThreedotsabove-ar.init.LamHeh", "lam-ar.init.LamHeh", "lamThreedotsbelow-ar.init.LamHeh", "lamDotabove-ar.init.LamHeh", "lamBar-ar.init.LamHeh", "lamVabove-ar.medi.LamHeh", "lamThreedotsabove-ar.medi.LamHeh", "lam-ar.medi.LamHeh", "lamThreedotsbelow-ar.medi.LamHeh", "lamDotabove-ar.medi.LamHeh", "lamBar-ar.medi.LamHeh", "heh-ar.fina.LamHeh", "hehgoal-ar.fina.LamHeh", "tehMarbutagoal-ar.fina.LamHeh", "ae-ar.fina.LamHeh", "tehMarbuta-ar.fina.LamHeh", "dalFourdots-ar.fina.LamDal", "dalVinvertedabove-ar.fina.LamDal", "dalRing-ar.fina.LamDal", "ddal-ar.fina.LamDal", "dalVinvertedbelow-ar.fina.LamDal", "thal-ar.fina.LamDal", "dal-ar.fina.LamDal", "dalTwodotsverticalbelowTah-ar.fina.LamDal", "dahal-ar.fina.LamDal", "dalDotbelowTah-ar.fina.LamDal", "dalDotbelow-ar.fina.LamDal", "dalThreedotsdown-ar.fina.LamDal", "dul-ar.fina.LamDal", "ddahal-ar.fina.LamDal", "kehehTwodotshorizontalabove-ar.medi.KafMemMedi", "kehehThreedotsbelow-ar.medi.KafMemMedi", "kafTwodotshorizontalabove-ar.medi.KafMemMedi", "kehehThreedotsupbelow-ar.medi.KafMemMedi", "kaf-ar.medi.KafMemMedi", "gafRing-ar.medi.KafMemMedi", "gueh-ar.medi.KafMemMedi", "gafTwodotsbelow-ar.medi.KafMemMedi", "kafRing-ar.medi.KafMemMedi", "kafDotabove-ar.medi.KafMemMedi", "ng-ar.medi.KafMemMedi", "kafThreedotsbelow-ar.medi.KafMemMedi", "gaf-ar.medi.KafMemMedi", "keheh-ar.medi.KafMemMedi", "gafThreedots-ar.medi.KafMemMedi", "kehehThreedotsabove-ar.medi.KafMemMedi", "kehehDotabove-ar.medi.KafMemMedi", "ngoeh-ar.medi.KafMemMedi", "kehehTwodotshorizontalabove-ar.init.KafMemInit", "kehehThreedotsbelow-ar.init.KafMemInit", "kafTwodotshorizontalabove-ar.init.KafMemInit", "kehehThreedotsupbelow-ar.init.KafMemInit", "kaf-ar.init.KafMemInit", "gafRing-ar.init.KafMemInit", "gueh-ar.init.KafMemInit", "gafTwodotsbelow-ar.init.KafMemInit", "kafRing-ar.init.KafMemInit", "kafDotabove-ar.init.KafMemInit", "ng-ar.init.KafMemInit", "kafThreedotsbelow-ar.init.KafMemInit", "gaf-ar.init.KafMemInit", "keheh-ar.init.KafMemInit", "gafThreedots-ar.init.KafMemInit", "kehehThreedotsabove-ar.init.KafMemInit", "kehehDotabove-ar.init.KafMemInit", "ngoeh-ar.init.KafMemInit", "ghainDotbelow-ar.init.AynMemInit", "ghain-ar.init.AynMemInit", "ainThreedotsdownabove-ar.init.AynMemInit", "ainTwodotshorizontalabove-ar.init.AynMemInit", "ainTwodotsverticalabove-ar.init.AynMemInit", "ainThreedots-ar.init.AynMemInit", "ain-ar.init.AynMemInit", "qafDotless-ar.init.FaaMemInit", "fehThreedotsupbelow-ar.init.FaaMemInit", "fehTwodotsbelow-ar.init.FaaMemInit", "qaf-ar.init.FaaMemInit", "feh-ar.init.FaaMemInit", "qafThreedotsabove-ar.init.FaaMemInit", "fehDotless-ar.init.FaaMemInit", "fehDotmovedbelow-ar.init.FaaMemInit", "fehDotbelow-ar.init.FaaMemInit", "veh-ar.init.FaaMemInit", "fehThreedotsbelow-ar.init.FaaMemInit", "peheh-ar.init.FaaMemInit", "qafDotabove-ar.init.FaaMemInit", "khah-ar.init.HaaMemInit", "hah-ar.init.HaaMemInit", "hahHamzaabove-ar.init.HaaMemInit", "tcheheh-ar.init.HaaMemInit", "hahThreedotsabove-ar.init.HaaMemInit", "jeem-ar.init.HaaMemInit", "hahTwodotsverticalabove-ar.init.HaaMemInit", "hahTwodotshorizontalabove-ar.init.HaaMemInit", "dyeh-ar.init.HaaMemInit", "hahTahTwodotshorizontalabove-ar.init.HaaMemInit", "hahTahbelow-ar.init.HaaMemInit", "nyeh-ar.init.HaaMemInit", "tchehDotabove-ar.init.HaaMemInit", "hahFourbelow-ar.init.HaaMemInit", "hahThreedotsupbelow-ar.init.HaaMemInit", "hahTahabove-ar.init.HaaMemInit", "tcheh-ar.init.HaaMemInit", "heh-ar.init.HehMemInit", "hehgoal-ar.init.HehMemInit", "meem-ar.medi.KafMemMedi", "sheenDotbelow-ar.init.SenMemInit", "seenTwodotsverticalabove-ar.init.SenMemInit", "seen-ar.init.SenMemInit", "seenVinvertedabove-ar.init.SenMemInit", "seenFourabove-ar.init.SenMemInit", "sheen-ar.init.SenMemInit", "seenTahTwodotshorizontalabove-ar.init.SenMemInit", "seenFourdotsabove-ar.init.SenMemInit", "seenDotbelowDotabove-ar.init.SenMemInit", "seenThreedotsbelow-ar.init.SenMemInit", "sheenThreedotsbelow-ar.init.SenMemInit", "sadTwodotsbelow-ar.init.SadMemInit", "dadDotbelow-ar.init.SadMemInit", "dad-ar.init.SadMemInit", "sadThreedots-ar.init.SadMemInit", "sad-ar.init.SadMemInit", "meem-ar.init.MemMemInit", "meem-ar.medi.SenMemInit", "kehehTwodotshorizontalabove-ar.init.KafYaaIsol", "kehehThreedotsbelow-ar.init.KafYaaIsol", "kafTwodotshorizontalabove-ar.init.KafYaaIsol", "kehehThreedotsupbelow-ar.init.KafYaaIsol", "kaf-ar.init.KafYaaIsol", "gafRing-ar.init.KafYaaIsol", "gueh-ar.init.KafYaaIsol", "gafTwodotsbelow-ar.init.KafYaaIsol", "kafRing-ar.init.KafYaaIsol", "kafDotabove-ar.init.KafYaaIsol", "ng-ar.init.KafYaaIsol", "kafThreedotsbelow-ar.init.KafYaaIsol", "gaf-ar.init.KafYaaIsol", "keheh-ar.init.KafYaaIsol", "gafThreedots-ar.init.KafYaaIsol", "kehehThreedotsabove-ar.init.KafYaaIsol", "kehehDotabove-ar.init.KafYaaIsol", "ngoeh-ar.init.KafYaaIsol", "yehFarsiFourbelow-ar.init.BaaYaaIsol", "beheh-ar.init.BaaYaaIsol", "yehFarsiThreeabove-ar.init.BaaYaaIsol", "noonRing-ar.init.BaaYaaIsol", "behThreedotshorizontalbelow-ar.init.BaaYaaIsol", "behVabove-ar.init.BaaYaaIsol", "noonTahabove-ar.init.BaaYaaIsol", "yehVabove-ar.init.BaaYaaIsol", "yehFarsiTwoabove-ar.init.BaaYaaIsol", "noonThreedotsabove-ar.init.BaaYaaIsol", "yehHamzaabove-ar.init.BaaYaaIsol", "behDotless-ar.init.BaaYaaIsol", "yehKashmiri-ar.init.BaaYaaIsol", "yeh-ar.init.BaaYaaIsol", "rnoon-ar.init.BaaYaaIsol", "teheh-ar.init.BaaYaaIsol", "behVinvertedbelow-ar.init.BaaYaaIsol", "tehThreedotsdown-ar.init.BaaYaaIsol", "peh-ar.init.BaaYaaIsol", "beeh-ar.init.BaaYaaIsol", "beh-ar.init.BaaYaaIsol", "tteheh-ar.init.BaaYaaIsol", "behThreedotsupabove-ar.init.BaaYaaIsol", "noon-ar.init.BaaYaaIsol", "tehThreedotsupbelow-ar.init.BaaYaaIsol", "behThreedotsupbelow-ar.init.BaaYaaIsol", "teh-ar.init.BaaYaaIsol", "highhamzaYeh-ar.init.BaaYaaIsol", "yehFarsiVinverted-ar.init.BaaYaaIsol", "theh-ar.init.BaaYaaIsol", "tteh-ar.init.BaaYaaIsol", "noonDotbelow-ar.init.BaaYaaIsol", "noonVabove-ar.init.BaaYaaIsol", "alefMaksura-ar.init.BaaYaaIsol", "tehRing-ar.init.BaaYaaIsol", "behTwodotsbelowDotabove-ar.init.BaaYaaIsol", "yehThreedotsbelow-ar.init.BaaYaaIsol", "e-ar.init.BaaYaaIsol", "noonghunna-ar.init.BaaYaaIsol", "yehFarsi-ar.init.BaaYaaIsol", "noonTwodotsbelow-ar.init.BaaYaaIsol", "khah-ar.init.HaaYaaIsol", "hah-ar.init.HaaYaaIsol", "hahHamzaabove-ar.init.HaaYaaIsol", "tcheheh-ar.init.HaaYaaIsol", "hahThreedotsabove-ar.init.HaaYaaIsol", "jeem-ar.init.HaaYaaIsol", "hahTwodotsverticalabove-ar.init.HaaYaaIsol", "hahTwodotshorizontalabove-ar.init.HaaYaaIsol", "dyeh-ar.init.HaaYaaIsol", "hahTahTwodotshorizontalabove-ar.init.HaaYaaIsol", "hahTahbelow-ar.init.HaaYaaIsol", "nyeh-ar.init.HaaYaaIsol", "tchehDotabove-ar.init.HaaYaaIsol", "hahFourbelow-ar.init.HaaYaaIsol", "hahThreedotsupbelow-ar.init.HaaYaaIsol", "hahTahabove-ar.init.HaaYaaIsol", "tcheh-ar.init.HaaYaaIsol", "meemDotabove-ar.init.MemYaaIsol", "meem-ar.init.MemYaaIsol", "meemDotbelow-ar.init.MemYaaIsol", "qafDotless-ar.init.FaaYaaIsol", "fehThreedotsupbelow-ar.init.FaaYaaIsol", "fehTwodotsbelow-ar.init.FaaYaaIsol", "qaf-ar.init.FaaYaaIsol", "feh-ar.init.FaaYaaIsol", "qafThreedotsabove-ar.init.FaaYaaIsol", "fehDotless-ar.init.FaaYaaIsol", "fehDotmovedbelow-ar.init.FaaYaaIsol", "fehDotbelow-ar.init.FaaYaaIsol", "veh-ar.init.FaaYaaIsol", "fehThreedotsbelow-ar.init.FaaYaaIsol", "peheh-ar.init.FaaYaaIsol", "qafDotabove-ar.init.FaaYaaIsol", "ghainDotbelow-ar.init.AynYaaIsol", "ghain-ar.init.AynYaaIsol", "ainThreedotsdownabove-ar.init.AynYaaIsol", "ainTwodotshorizontalabove-ar.init.AynYaaIsol", "ainTwodotsverticalabove-ar.init.AynYaaIsol", "ainThreedots-ar.init.AynYaaIsol", "ain-ar.init.AynYaaIsol", "lamVabove-ar.init.LamYaaIsol", "lamThreedotsabove-ar.init.LamYaaIsol", "lam-ar.init.LamYaaIsol", "lamThreedotsbelow-ar.init.LamYaaIsol", "lamDotabove-ar.init.LamYaaIsol", "lamBar-ar.init.LamYaaIsol", "heh-ar.init.HehYaaIsol", "hehgoal-ar.init.HehYaaIsol", "yehFarsiFourbelow-ar.fina.KafYaaIsol", "yehThreedotsbelow-ar.fina.KafYaaIsol", "yehFarsiTwoabove-ar.fina.KafYaaIsol", "yehFarsiThreedotsabove-ar.fina.KafYaaIsol", "yehFarsiVinverted-ar.fina.KafYaaIsol", "yehFarsiTwodotsabove-ar.fina.KafYaaIsol", "e-ar.fina.KafYaaIsol", "alefMaksura-ar.fina.KafYaaIsol", "yehFarsiThreeabove-ar.fina.KafYaaIsol", "yehTail-ar.fina.KafYaaIsol", "yehFarsi-ar.fina.KafYaaIsol", "yehHamzaabove-ar.fina.KafYaaIsol", "yehKashmiri-ar.fina.KafYaaIsol", "yeh-ar.fina.KafYaaIsol", "yehVabove-ar.fina.KafYaaIsol", "kehehTwodotshorizontalabove-ar.init.KafMemIsol", "kehehThreedotsbelow-ar.init.KafMemIsol", "kafTwodotshorizontalabove-ar.init.KafMemIsol", "kehehThreedotsupbelow-ar.init.KafMemIsol", "kaf-ar.init.KafMemIsol", "gafRing-ar.init.KafMemIsol", "gueh-ar.init.KafMemIsol", "gafTwodotsbelow-ar.init.KafMemIsol", "kafRing-ar.init.KafMemIsol", "kafDotabove-ar.init.KafMemIsol", "ng-ar.init.KafMemIsol", "kafThreedotsbelow-ar.init.KafMemIsol", "gaf-ar.init.KafMemIsol", "keheh-ar.init.KafMemIsol", "gafThreedots-ar.init.KafMemIsol", "kehehThreedotsabove-ar.init.KafMemIsol", "kehehDotabove-ar.init.KafMemIsol", "ngoeh-ar.init.KafMemIsol", "lamVabove-ar.init.LamMemIsol", "lamThreedotsabove-ar.init.LamMemIsol", "lam-ar.init.LamMemIsol", "lamThreedotsbelow-ar.init.LamMemIsol", "lamDotabove-ar.init.LamMemIsol", "lamBar-ar.init.LamMemIsol", "yehFarsiFourbelow-ar.init.BaaMemIsol", "beheh-ar.init.BaaMemIsol", "yehFarsiThreeabove-ar.init.BaaMemIsol", "noonRing-ar.init.BaaMemIsol", "behThreedotshorizontalbelow-ar.init.BaaMemIsol", "behVabove-ar.init.BaaMemIsol", "noonTahabove-ar.init.BaaMemIsol", "yehVabove-ar.init.BaaMemIsol", "yehFarsiTwoabove-ar.init.BaaMemIsol", "noonThreedotsabove-ar.init.BaaMemIsol", "yehHamzaabove-ar.init.BaaMemIsol", "behDotless-ar.init.BaaMemIsol", "yehKashmiri-ar.init.BaaMemIsol", "yeh-ar.init.BaaMemIsol", "rnoon-ar.init.BaaMemIsol", "teheh-ar.init.BaaMemIsol", "behVinvertedbelow-ar.init.BaaMemIsol", "tehThreedotsdown-ar.init.BaaMemIsol", "peh-ar.init.BaaMemIsol", "beeh-ar.init.BaaMemIsol", "beh-ar.init.BaaMemIsol", "tteheh-ar.init.BaaMemIsol", "behThreedotsupabove-ar.init.BaaMemIsol", "noon-ar.init.BaaMemIsol", "tehThreedotsupbelow-ar.init.BaaMemIsol", "behThreedotsupbelow-ar.init.BaaMemIsol", "teh-ar.init.BaaMemIsol", "highhamzaYeh-ar.init.BaaMemIsol", "yehFarsiVinverted-ar.init.BaaMemIsol", "theh-ar.init.BaaMemIsol", "tteh-ar.init.BaaMemIsol", "noonDotbelow-ar.init.BaaMemIsol", "noonVabove-ar.init.BaaMemIsol", "alefMaksura-ar.init.BaaMemIsol", "tehRing-ar.init.BaaMemIsol", "behTwodotsbelowDotabove-ar.init.BaaMemIsol", "yehThreedotsbelow-ar.init.BaaMemIsol", "e-ar.init.BaaMemIsol", "noonghunna-ar.init.BaaMemIsol", "yehFarsi-ar.init.BaaMemIsol", "noonTwodotsbelow-ar.init.BaaMemIsol", "meem-ar.fina.KafMemIsol", "meem-ar.medi.MemAlfFina", "yehFarsiFourbelow-ar.medi.BaaMemAlfFina", "beheh-ar.medi.BaaMemAlfFina", "yehFarsiThreeabove-ar.medi.BaaMemAlfFina", "noonRing-ar.medi.BaaMemAlfFina", "behThreedotshorizontalbelow-ar.medi.BaaMemAlfFina", "behVabove-ar.medi.BaaMemAlfFina", "noonTahabove-ar.medi.BaaMemAlfFina", "yehVabove-ar.medi.BaaMemAlfFina", "yehFarsiTwoabove-ar.medi.BaaMemAlfFina", "noonThreedotsabove-ar.medi.BaaMemAlfFina", "yehHamzaabove-ar.medi.BaaMemAlfFina", "behDotless-ar.medi.BaaMemAlfFina", "yehKashmiri-ar.medi.BaaMemAlfFina", "yeh-ar.medi.BaaMemAlfFina", "rnoon-ar.medi.BaaMemAlfFina", "teheh-ar.medi.BaaMemAlfFina", "behVinvertedbelow-ar.medi.BaaMemAlfFina", "tehThreedotsdown-ar.medi.BaaMemAlfFina", "peh-ar.medi.BaaMemAlfFina", "beeh-ar.medi.BaaMemAlfFina", "beh-ar.medi.BaaMemAlfFina", "tteheh-ar.medi.BaaMemAlfFina", "behThreedotsupabove-ar.medi.BaaMemAlfFina", "noon-ar.medi.BaaMemAlfFina", "tehThreedotsupbelow-ar.medi.BaaMemAlfFina", "behThreedotsupbelow-ar.medi.BaaMemAlfFina", "teh-ar.medi.BaaMemAlfFina", "yehFarsiVinverted-ar.medi.BaaMemAlfFina", "theh-ar.medi.BaaMemAlfFina", "tteh-ar.medi.BaaMemAlfFina", "noonDotbelow-ar.medi.BaaMemAlfFina", "noonVabove-ar.medi.BaaMemAlfFina", "alefMaksura-ar.medi.BaaMemAlfFina", "tehRing-ar.medi.BaaMemAlfFina", "behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina", "yehThreedotsbelow-ar.medi.BaaMemAlfFina", "e-ar.medi.BaaMemAlfFina", "noonghunna-ar.medi.BaaMemAlfFina", "yehFarsi-ar.medi.BaaMemAlfFina", "noonTwodotsbelow-ar.medi.BaaMemAlfFina", "meem-ar.medi.BaaMemAlfFina", "meem-ar.medi.AlfPostTooth", "alefHamzabelow-ar.fina.MemAlfFina", "alef-ar.fina.MemAlfFina", "alefThreeabove-ar.fina.MemAlfFina", "alefTwoabove-ar.fina.MemAlfFina", "alefHamzaabove-ar.fina.MemAlfFina", "alefMadda-ar.fina.MemAlfFina", "alefWavyhamzaabove-ar.fina.MemAlfFina", "alefWavyhamzabelow-ar.fina.MemAlfFina", "alefWasla-ar.fina.MemAlfFina", "yehFarsiFourbelow-ar.init.BaaHehInit", "beheh-ar.init.BaaHehInit", "yehFarsiThreeabove-ar.init.BaaHehInit", "noonRing-ar.init.BaaHehInit", "behThreedotshorizontalbelow-ar.init.BaaHehInit", "behVabove-ar.init.BaaHehInit", "noonTahabove-ar.init.BaaHehInit", "yehVabove-ar.init.BaaHehInit", "yehFarsiTwoabove-ar.init.BaaHehInit", "noonThreedotsabove-ar.init.BaaHehInit", "yehHamzaabove-ar.init.BaaHehInit", "behDotless-ar.init.BaaHehInit", "yehKashmiri-ar.init.BaaHehInit", "yeh-ar.init.BaaHehInit", "rnoon-ar.init.BaaHehInit", "teheh-ar.init.BaaHehInit", "behVinvertedbelow-ar.init.BaaHehInit", "tehThreedotsdown-ar.init.BaaHehInit", "peh-ar.init.BaaHehInit", "beeh-ar.init.BaaHehInit", "beh-ar.init.BaaHehInit", "tteheh-ar.init.BaaHehInit", "behThreedotsupabove-ar.init.BaaHehInit", "noon-ar.init.BaaHehInit", "tehThreedotsupbelow-ar.init.BaaHehInit", "behThreedotsupbelow-ar.init.BaaHehInit", "teh-ar.init.BaaHehInit", "highhamzaYeh-ar.init.BaaHehInit", "yehFarsiVinverted-ar.init.BaaHehInit", "theh-ar.init.BaaHehInit", "tteh-ar.init.BaaHehInit", "noonDotbelow-ar.init.BaaHehInit", "noonVabove-ar.init.BaaHehInit", "alefMaksura-ar.init.BaaHehInit", "tehRing-ar.init.BaaHehInit", "behTwodotsbelowDotabove-ar.init.BaaHehInit", "yehThreedotsbelow-ar.init.BaaHehInit", "e-ar.init.BaaHehInit", "noonghunna-ar.init.BaaHehInit", "yehFarsi-ar.init.BaaHehInit", "noonTwodotsbelow-ar.init.BaaHehInit", "yehFarsiFourbelow-ar.medi.BaaHehMedi", "beheh-ar.medi.BaaHehMedi", "yehFarsiThreeabove-ar.medi.BaaHehMedi", "noonRing-ar.medi.BaaHehMedi", "behThreedotshorizontalbelow-ar.medi.BaaHehMedi", "behVabove-ar.medi.BaaHehMedi", "noonTahabove-ar.medi.BaaHehMedi", "yehVabove-ar.medi.BaaHehMedi", "yehFarsiTwoabove-ar.medi.BaaHehMedi", "noonThreedotsabove-ar.medi.BaaHehMedi", "yehHamzaabove-ar.medi.BaaHehMedi", "behDotless-ar.medi.BaaHehMedi", "yehKashmiri-ar.medi.BaaHehMedi", "yeh-ar.medi.BaaHehMedi", "rnoon-ar.medi.BaaHehMedi", "teheh-ar.medi.BaaHehMedi", "behVinvertedbelow-ar.medi.BaaHehMedi", "tehThreedotsdown-ar.medi.BaaHehMedi", "peh-ar.medi.BaaHehMedi", "beeh-ar.medi.BaaHehMedi", "beh-ar.medi.BaaHehMedi", "tteheh-ar.medi.BaaHehMedi", "behThreedotsupabove-ar.medi.BaaHehMedi", "noon-ar.medi.BaaHehMedi", "tehThreedotsupbelow-ar.medi.BaaHehMedi", "behThreedotsupbelow-ar.medi.BaaHehMedi", "teh-ar.medi.BaaHehMedi", "yehFarsiVinverted-ar.medi.BaaHehMedi", "theh-ar.medi.BaaHehMedi", "tteh-ar.medi.BaaHehMedi", "noonDotbelow-ar.medi.BaaHehMedi", "noonVabove-ar.medi.BaaHehMedi", "alefMaksura-ar.medi.BaaHehMedi", "tehRing-ar.medi.BaaHehMedi", "behTwodotsbelowDotabove-ar.medi.BaaHehMedi", "yehThreedotsbelow-ar.medi.BaaHehMedi", "e-ar.medi.BaaHehMedi", "noonghunna-ar.medi.BaaHehMedi", "yehFarsi-ar.medi.BaaHehMedi", "noonTwodotsbelow-ar.medi.BaaHehMedi", "heh-ar.medi.BaaHehMedi", "hehgoal-ar.medi.BaaHehMedi", "heh-ar.medi.PostTooth", "hehgoal-ar.medi.PostTooth", "lamVabove-ar.medi.KafLamMemFina", "lamThreedotsabove-ar.medi.KafLamMemFina", "lam-ar.medi.KafLamMemFina", "lamThreedotsbelow-ar.medi.KafLamMemFina", "lamDotabove-ar.medi.KafLamMemFina", "lamBar-ar.medi.KafLamMemFina", "lamVabove-ar.init.LamLamInit", "lamThreedotsabove-ar.init.LamLamInit", "lam-ar.init.LamLamInit", "lamThreedotsbelow-ar.init.LamLamInit", "lamDotabove-ar.init.LamLamInit", "lamBar-ar.init.LamLamInit", "lamVabove-ar.medi.LamLamInit", "lamThreedotsabove-ar.medi.LamLamInit", "lam-ar.medi.LamLamInit", "lamThreedotsbelow-ar.medi.LamLamInit", "lamDotabove-ar.medi.LamLamInit", "lamBar-ar.medi.LamLamInit", "lamVabove-ar.medi.LamLamAlfIsol", "lamThreedotsabove-ar.medi.LamLamAlfIsol", "lam-ar.medi.LamLamAlfIsol", "lamThreedotsbelow-ar.medi.LamLamAlfIsol", "lamDotabove-ar.medi.LamLamAlfIsol", "lamBar-ar.medi.LamLamAlfIsol", "kehehTwodotshorizontalabove-ar.fina.LamKafIsol", "kehehThreedotsbelow-ar.fina.LamKafIsol", "kafTwodotshorizontalabove-ar.fina.LamKafIsol", "kehehThreedotsupbelow-ar.fina.LamKafIsol", "kaf-ar.fina.LamKafIsol", "gafRing-ar.fina.LamKafIsol", "gueh-ar.fina.LamKafIsol", "gafTwodotsbelow-ar.fina.LamKafIsol", "kafRing-ar.fina.LamKafIsol", "kafDotabove-ar.fina.LamKafIsol", "ng-ar.fina.LamKafIsol", "kafThreedotsbelow-ar.fina.LamKafIsol", "gaf-ar.fina.LamKafIsol", "keheh-ar.fina.LamKafIsol", "gafThreedots-ar.fina.LamKafIsol", "kehehThreedotsabove-ar.fina.LamKafIsol", "kehehDotabove-ar.fina.LamKafIsol", "ngoeh-ar.fina.LamKafIsol", "lamVabove-ar.fina.LamLamIsol", "lamThreedotsabove-ar.fina.LamLamIsol", "lam-ar.fina.LamLamIsol", "lamThreedotsbelow-ar.fina.LamLamIsol", "lamDotabove-ar.fina.LamLamIsol", "lamBar-ar.fina.LamLamIsol", "lamVabove-ar.medi.LamLamMedi", "lamThreedotsabove-ar.medi.LamLamMedi", "lam-ar.medi.LamLamMedi", "lamThreedotsbelow-ar.medi.LamLamMedi", "lamDotabove-ar.medi.LamLamMedi", "lamBar-ar.medi.LamLamMedi", "lamVabove-ar.medi.LamLamAlefFina", "lamThreedotsabove-ar.medi.LamLamAlefFina", "lam-ar.medi.LamLamAlefFina", "lamThreedotsbelow-ar.medi.LamLamAlefFina", "lamDotabove-ar.medi.LamLamAlefFina", "lamBar-ar.medi.LamLamAlefFina", "lamVabove-ar.medi.LamLamMedi2", "lamThreedotsabove-ar.medi.LamLamMedi2", "lam-ar.medi.LamLamMedi2", "lamThreedotsbelow-ar.medi.LamLamMedi2", "lamDotabove-ar.medi.LamLamMedi2", "lamBar-ar.medi.LamLamMedi2", "kehehTwodotshorizontalabove-ar.fina.LamKafFina", "kehehThreedotsbelow-ar.fina.LamKafFina", "kafTwodotshorizontalabove-ar.fina.LamKafFina", "kehehThreedotsupbelow-ar.fina.LamKafFina", "kaf-ar.fina.LamKafFina", "gafRing-ar.fina.LamKafFina", "gueh-ar.fina.LamKafFina", "gafTwodotsbelow-ar.fina.LamKafFina", "kafRing-ar.fina.LamKafFina", "kafDotabove-ar.fina.LamKafFina", "ng-ar.fina.LamKafFina", "kafThreedotsbelow-ar.fina.LamKafFina", "gaf-ar.fina.LamKafFina", "keheh-ar.fina.LamKafFina", "gafThreedots-ar.fina.LamKafFina", "kehehThreedotsabove-ar.fina.LamKafFina", "kehehDotabove-ar.fina.LamKafFina", "ngoeh-ar.fina.LamKafFina", "lamVabove-ar.fina.LamLamFina", "lamThreedotsabove-ar.fina.LamLamFina", "lam-ar.fina.LamLamFina", "lamThreedotsbelow-ar.fina.LamLamFina", "lamDotabove-ar.fina.LamLamFina", "lamBar-ar.fina.LamLamFina", "lamVabove-ar.medi.LamLamMemInit", "lamThreedotsabove-ar.medi.LamLamMemInit", "lam-ar.medi.LamLamMemInit", "lamThreedotsbelow-ar.medi.LamLamMemInit", "lamDotabove-ar.medi.LamLamMemInit", "lamBar-ar.medi.LamLamMemInit", "lamVabove-ar.medi.LamLamHehIsol", "lamThreedotsabove-ar.medi.LamLamHehIsol", "lam-ar.medi.LamLamHehIsol", "lamThreedotsbelow-ar.medi.LamLamHehIsol", "lamDotabove-ar.medi.LamLamHehIsol", "lamBar-ar.medi.LamLamHehIsol", "lamVabove-ar.medi.LamLamYaaIsol", "lamThreedotsabove-ar.medi.LamLamYaaIsol", "lam-ar.medi.LamLamYaaIsol", "lamThreedotsbelow-ar.medi.LamLamYaaIsol", "lamDotabove-ar.medi.LamLamYaaIsol", "lamBar-ar.medi.LamLamYaaIsol", "lamVabove-ar.medi.LamLamMemMedi", "lamThreedotsabove-ar.medi.LamLamMemMedi", "lam-ar.medi.LamLamMemMedi", "lamThreedotsbelow-ar.medi.LamLamMemMedi", "lamDotabove-ar.medi.LamLamMemMedi", "lamBar-ar.medi.LamLamMemMedi", "lamVabove-ar.medi.LamLamHehFina", "lamThreedotsabove-ar.medi.LamLamHehFina", "lam-ar.medi.LamLamHehFina", "lamThreedotsbelow-ar.medi.LamLamHehFina", "lamDotabove-ar.medi.LamLamHehFina", "lamBar-ar.medi.LamLamHehFina", "lamVabove-ar.medi.LamLamYaaFina", "lamThreedotsabove-ar.medi.LamLamYaaFina", "lam-ar.medi.LamLamYaaFina", "lamThreedotsbelow-ar.medi.LamLamYaaFina", "lamDotabove-ar.medi.LamLamYaaFina", "lamBar-ar.medi.LamLamYaaFina", "khah-ar.medi.1LamHaaHaaInit", "hah-ar.medi.1LamHaaHaaInit", "hahHamzaabove-ar.medi.1LamHaaHaaInit", "tcheheh-ar.medi.1LamHaaHaaInit", "hahThreedotsabove-ar.medi.1LamHaaHaaInit", "jeem-ar.medi.1LamHaaHaaInit", "hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit", "hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit", "dyeh-ar.medi.1LamHaaHaaInit", "hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit", "hahTahbelow-ar.medi.1LamHaaHaaInit", "nyeh-ar.medi.1LamHaaHaaInit", "tchehDotabove-ar.medi.1LamHaaHaaInit", "hahFourbelow-ar.medi.1LamHaaHaaInit", "hahThreedotsupbelow-ar.medi.1LamHaaHaaInit", "hahTahabove-ar.medi.1LamHaaHaaInit", "tcheh-ar.medi.1LamHaaHaaInit", "khah-ar.medi.2LamHaaHaaInit", "hah-ar.medi.2LamHaaHaaInit", "hahHamzaabove-ar.medi.2LamHaaHaaInit", "tcheheh-ar.medi.2LamHaaHaaInit", "hahThreedotsabove-ar.medi.2LamHaaHaaInit", "jeem-ar.medi.2LamHaaHaaInit", "hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit", "hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit", "dyeh-ar.medi.2LamHaaHaaInit", "hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit", "hahTahbelow-ar.medi.2LamHaaHaaInit", "nyeh-ar.medi.2LamHaaHaaInit", "tchehDotabove-ar.medi.2LamHaaHaaInit", "hahFourbelow-ar.medi.2LamHaaHaaInit", "hahThreedotsupbelow-ar.medi.2LamHaaHaaInit", "hahTahabove-ar.medi.2LamHaaHaaInit", "tcheh-ar.medi.2LamHaaHaaInit", "kafswash-ar.init", "kafswash-ar.medi", "kafswash-ar.fina", "alefHamzabelow-ar.LowHamza", "alefWavyhamzabelow-ar.LowHamza", "beheh-ar.init.LD", "noonThreedotsabove-ar.init.LD", "peh-ar.init.LD", "beeh-ar.init.LD", "beh-ar.init.LD", "noonTwodotsbelow-ar.init.LD", "yehFarsiVinverted-ar.init.LD", "yehFarsiFourbelow-ar.init.LD", "yehFarsiThreeabove-ar.init.LD", "yehFarsiTwoabove-ar.init.LD", "yehFarsi-ar.init.LD", "yeh-ar.init.LD", "yehVabove-ar.init.LD", "behThreedotsupabove-ar.init.LD", "behThreedotshorizontalbelow-ar.init.LD", "tehThreedotsupbelow-ar.init.LD", "behThreedotsupbelow-ar.init.LD", "behVinvertedbelow-ar.init.LD", "behTwodotsbelowDotabove-ar.init.LD", "noonDotbelow-ar.init.LD", "yehThreedotsbelow-ar.init.LD", "e-ar.init.LD", "beheh-ar.init.BaaRaaIsolLD", "noonThreedotsabove-ar.init.BaaRaaIsolLD", "peh-ar.init.BaaRaaIsolLD", "beeh-ar.init.BaaRaaIsolLD", "beh-ar.init.BaaRaaIsolLD", "noonTwodotsbelow-ar.init.BaaRaaIsolLD", "yehFarsiVinverted-ar.init.BaaRaaIsolLD", "yehFarsiFourbelow-ar.init.BaaRaaIsolLD", "yehFarsiThreeabove-ar.init.BaaRaaIsolLD", "yehFarsiTwoabove-ar.init.BaaRaaIsolLD", "yehFarsi-ar.init.BaaRaaIsolLD", "yeh-ar.init.BaaRaaIsolLD", "yehVabove-ar.init.BaaRaaIsolLD", "behThreedotsupabove-ar.init.BaaRaaIsolLD", "behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD", "tehThreedotsupbelow-ar.init.BaaRaaIsolLD", "behThreedotsupbelow-ar.init.BaaRaaIsolLD", "behVinvertedbelow-ar.init.BaaRaaIsolLD", "behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD", "noonDotbelow-ar.init.BaaRaaIsolLD", "yehThreedotsbelow-ar.init.BaaRaaIsolLD", "e-ar.init.BaaRaaIsolLD", "beheh-ar.init.BaaDalLD", "noonThreedotsabove-ar.init.BaaDalLD", "peh-ar.init.BaaDalLD", "beeh-ar.init.BaaDalLD", "beh-ar.init.BaaDalLD", "noonTwodotsbelow-ar.init.BaaDalLD", "yehFarsiVinverted-ar.init.BaaDalLD", "yehFarsiFourbelow-ar.init.BaaDalLD", "yehFarsiThreeabove-ar.init.BaaDalLD", "yehFarsiTwoabove-ar.init.BaaDalLD", "yehFarsi-ar.init.BaaDalLD", "yeh-ar.init.BaaDalLD", "yehVabove-ar.init.BaaDalLD", "behThreedotsupabove-ar.init.BaaDalLD", "behThreedotshorizontalbelow-ar.init.BaaDalLD", "tehThreedotsupbelow-ar.init.BaaDalLD", "behThreedotsupbelow-ar.init.BaaDalLD", "behVinvertedbelow-ar.init.BaaDalLD", "behTwodotsbelowDotabove-ar.init.BaaDalLD", "noonDotbelow-ar.init.BaaDalLD", "yehThreedotsbelow-ar.init.BaaDalLD", "e-ar.init.BaaDalLD", "beheh-ar.init.BaaMemHaaInitLD", "noonThreedotsabove-ar.init.BaaMemHaaInitLD", "peh-ar.init.BaaMemHaaInitLD", "beeh-ar.init.BaaMemHaaInitLD", "beh-ar.init.BaaMemHaaInitLD", "noonTwodotsbelow-ar.init.BaaMemHaaInitLD", "yehFarsiVinverted-ar.init.BaaMemHaaInitLD", "yehFarsiFourbelow-ar.init.BaaMemHaaInitLD", "yehFarsiThreeabove-ar.init.BaaMemHaaInitLD", "yehFarsiTwoabove-ar.init.BaaMemHaaInitLD", "yehFarsi-ar.init.BaaMemHaaInitLD", "yeh-ar.init.BaaMemHaaInitLD", "yehVabove-ar.init.BaaMemHaaInitLD", "behThreedotsupabove-ar.init.BaaMemHaaInitLD", "behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD", "tehThreedotsupbelow-ar.init.BaaMemHaaInitLD", "behThreedotsupbelow-ar.init.BaaMemHaaInitLD", "behVinvertedbelow-ar.init.BaaMemHaaInitLD", "behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD", "noonDotbelow-ar.init.BaaMemHaaInitLD", "yehThreedotsbelow-ar.init.BaaMemHaaInitLD", "e-ar.init.BaaMemHaaInitLD", "beheh-ar.init.BaaBaaYaaLD", "noonThreedotsabove-ar.init.BaaBaaYaaLD", "peh-ar.init.BaaBaaYaaLD", "beeh-ar.init.BaaBaaYaaLD", "beh-ar.init.BaaBaaYaaLD", "noonTwodotsbelow-ar.init.BaaBaaYaaLD", "yehFarsiVinverted-ar.init.BaaBaaYaaLD", "yehFarsiFourbelow-ar.init.BaaBaaYaaLD", "yehFarsiThreeabove-ar.init.BaaBaaYaaLD", "yehFarsiTwoabove-ar.init.BaaBaaYaaLD", "yehFarsi-ar.init.BaaBaaYaaLD", "yeh-ar.init.BaaBaaYaaLD", "yehVabove-ar.init.BaaBaaYaaLD", "behThreedotsupabove-ar.init.BaaBaaYaaLD", "behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD", "tehThreedotsupbelow-ar.init.BaaBaaYaaLD", "behThreedotsupbelow-ar.init.BaaBaaYaaLD", "behVinvertedbelow-ar.init.BaaBaaYaaLD", "behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD", "noonDotbelow-ar.init.BaaBaaYaaLD", "yehThreedotsbelow-ar.init.BaaBaaYaaLD", "e-ar.init.BaaBaaYaaLD", "beheh-ar.init.BaaNonIsolLD", "noonThreedotsabove-ar.init.BaaNonIsolLD", "peh-ar.init.BaaNonIsolLD", "beeh-ar.init.BaaNonIsolLD", "beh-ar.init.BaaNonIsolLD", "noonTwodotsbelow-ar.init.BaaNonIsolLD", "yehFarsiVinverted-ar.init.BaaNonIsolLD", "yehFarsiFourbelow-ar.init.BaaNonIsolLD", "yehFarsiThreeabove-ar.init.BaaNonIsolLD", "yehFarsiTwoabove-ar.init.BaaNonIsolLD", "yehFarsi-ar.init.BaaNonIsolLD", "yeh-ar.init.BaaNonIsolLD", "yehVabove-ar.init.BaaNonIsolLD", "behThreedotsupabove-ar.init.BaaNonIsolLD", "behThreedotshorizontalbelow-ar.init.BaaNonIsolLD", "tehThreedotsupbelow-ar.init.BaaNonIsolLD", "behThreedotsupbelow-ar.init.BaaNonIsolLD", "behVinvertedbelow-ar.init.BaaNonIsolLD", "behTwodotsbelowDotabove-ar.init.BaaNonIsolLD", "noonDotbelow-ar.init.BaaNonIsolLD", "yehThreedotsbelow-ar.init.BaaNonIsolLD", "e-ar.init.BaaNonIsolLD", "beheh-ar.init.BaaSenInitLD", "noonThreedotsabove-ar.init.BaaSenInitLD", "peh-ar.init.BaaSenInitLD", "beeh-ar.init.BaaSenInitLD", "beh-ar.init.BaaSenInitLD", "noonTwodotsbelow-ar.init.BaaSenInitLD", "yehFarsiVinverted-ar.init.BaaSenInitLD", "yehFarsiFourbelow-ar.init.BaaSenInitLD", "yehFarsiThreeabove-ar.init.BaaSenInitLD", "yehFarsiTwoabove-ar.init.BaaSenInitLD", "yehFarsi-ar.init.BaaSenInitLD", "yeh-ar.init.BaaSenInitLD", "yehVabove-ar.init.BaaSenInitLD", "behThreedotsupabove-ar.init.BaaSenInitLD", "behThreedotshorizontalbelow-ar.init.BaaSenInitLD", "tehThreedotsupbelow-ar.init.BaaSenInitLD", "behThreedotsupbelow-ar.init.BaaSenInitLD", "behVinvertedbelow-ar.init.BaaSenInitLD", "behTwodotsbelowDotabove-ar.init.BaaSenInitLD", "noonDotbelow-ar.init.BaaSenInitLD", "yehThreedotsbelow-ar.init.BaaSenInitLD", "e-ar.init.BaaSenInitLD", "beheh-ar.init.BaaMemInitLD", "noonThreedotsabove-ar.init.BaaMemInitLD", "peh-ar.init.BaaMemInitLD", "beeh-ar.init.BaaMemInitLD", "beh-ar.init.BaaMemInitLD", "noonTwodotsbelow-ar.init.BaaMemInitLD", "yehFarsiVinverted-ar.init.BaaMemInitLD", "yehFarsiFourbelow-ar.init.BaaMemInitLD", "yehFarsiThreeabove-ar.init.BaaMemInitLD", "yehFarsiTwoabove-ar.init.BaaMemInitLD", "yehFarsi-ar.init.BaaMemInitLD", "yeh-ar.init.BaaMemInitLD", "yehVabove-ar.init.BaaMemInitLD", "behThreedotsupabove-ar.init.BaaMemInitLD", "behThreedotshorizontalbelow-ar.init.BaaMemInitLD", "tehThreedotsupbelow-ar.init.BaaMemInitLD", "behThreedotsupbelow-ar.init.BaaMemInitLD", "behVinvertedbelow-ar.init.BaaMemInitLD", "behTwodotsbelowDotabove-ar.init.BaaMemInitLD", "noonDotbelow-ar.init.BaaMemInitLD", "yehThreedotsbelow-ar.init.BaaMemInitLD", "e-ar.init.BaaMemInitLD", "beheh-ar.init.BaaBaaHaaInitLD", "noonThreedotsabove-ar.init.BaaBaaHaaInitLD", "peh-ar.init.BaaBaaHaaInitLD", "beeh-ar.init.BaaBaaHaaInitLD", "beh-ar.init.BaaBaaHaaInitLD", "noonTwodotsbelow-ar.init.BaaBaaHaaInitLD", "yehFarsiVinverted-ar.init.BaaBaaHaaInitLD", "yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD", "yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD", "yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD", "yehFarsi-ar.init.BaaBaaHaaInitLD", "yeh-ar.init.BaaBaaHaaInitLD", "yehVabove-ar.init.BaaBaaHaaInitLD", "behThreedotsupabove-ar.init.BaaBaaHaaInitLD", "behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD", "tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD", "behThreedotsupbelow-ar.init.BaaBaaHaaInitLD", "behVinvertedbelow-ar.init.BaaBaaHaaInitLD", "behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD", "noonDotbelow-ar.init.BaaBaaHaaInitLD", "yehThreedotsbelow-ar.init.BaaBaaHaaInitLD", "e-ar.init.BaaBaaHaaInitLD", "beheh-ar.init.BaaBaaIsolLD", "noonThreedotsabove-ar.init.BaaBaaIsolLD", "peh-ar.init.BaaBaaIsolLD", "beeh-ar.init.BaaBaaIsolLD", "beh-ar.init.BaaBaaIsolLD", "noonTwodotsbelow-ar.init.BaaBaaIsolLD", "yehFarsiVinverted-ar.init.BaaBaaIsolLD", "yehFarsiFourbelow-ar.init.BaaBaaIsolLD", "yehFarsiThreeabove-ar.init.BaaBaaIsolLD", "yehFarsiTwoabove-ar.init.BaaBaaIsolLD", "yehFarsi-ar.init.BaaBaaIsolLD", "yeh-ar.init.BaaBaaIsolLD", "yehVabove-ar.init.BaaBaaIsolLD", "behThreedotsupabove-ar.init.BaaBaaIsolLD", "behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD", "tehThreedotsupbelow-ar.init.BaaBaaIsolLD", "behThreedotsupbelow-ar.init.BaaBaaIsolLD", "behVinvertedbelow-ar.init.BaaBaaIsolLD", "behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD", "noonDotbelow-ar.init.BaaBaaIsolLD", "yehThreedotsbelow-ar.init.BaaBaaIsolLD", "e-ar.init.BaaBaaIsolLD", "beheh-ar.init.BaaBaaMemInitLD", "noonThreedotsabove-ar.init.BaaBaaMemInitLD", "peh-ar.init.BaaBaaMemInitLD", "beeh-ar.init.BaaBaaMemInitLD", "beh-ar.init.BaaBaaMemInitLD", "noonTwodotsbelow-ar.init.BaaBaaMemInitLD", "yehFarsiVinverted-ar.init.BaaBaaMemInitLD", "yehFarsiFourbelow-ar.init.BaaBaaMemInitLD", "yehFarsiThreeabove-ar.init.BaaBaaMemInitLD", "yehFarsiTwoabove-ar.init.BaaBaaMemInitLD", "yehFarsi-ar.init.BaaBaaMemInitLD", "yeh-ar.init.BaaBaaMemInitLD", "yehVabove-ar.init.BaaBaaMemInitLD", "behThreedotsupabove-ar.init.BaaBaaMemInitLD", "behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD", "tehThreedotsupbelow-ar.init.BaaBaaMemInitLD", "behThreedotsupbelow-ar.init.BaaBaaMemInitLD", "behVinvertedbelow-ar.init.BaaBaaMemInitLD", "behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD", "noonDotbelow-ar.init.BaaBaaMemInitLD", "yehThreedotsbelow-ar.init.BaaBaaMemInitLD", "e-ar.init.BaaBaaMemInitLD", "beheh-ar.init.BaaSenAltInitLD", "noonThreedotsabove-ar.init.BaaSenAltInitLD", "peh-ar.init.BaaSenAltInitLD", "beeh-ar.init.BaaSenAltInitLD", "beh-ar.init.BaaSenAltInitLD", "noonTwodotsbelow-ar.init.BaaSenAltInitLD", "yehFarsiVinverted-ar.init.BaaSenAltInitLD", "yehFarsiFourbelow-ar.init.BaaSenAltInitLD", "yehFarsiThreeabove-ar.init.BaaSenAltInitLD", "yehFarsiTwoabove-ar.init.BaaSenAltInitLD", "yehFarsi-ar.init.BaaSenAltInitLD", "yeh-ar.init.BaaSenAltInitLD", "yehVabove-ar.init.BaaSenAltInitLD", "behThreedotsupabove-ar.init.BaaSenAltInitLD", "behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD", "tehThreedotsupbelow-ar.init.BaaSenAltInitLD", "behThreedotsupbelow-ar.init.BaaSenAltInitLD", "behVinvertedbelow-ar.init.BaaSenAltInitLD", "behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD", "noonDotbelow-ar.init.BaaSenAltInitLD", "yehThreedotsbelow-ar.init.BaaSenAltInitLD", "e-ar.init.BaaSenAltInitLD", "beheh-ar.init.BaaHaaInitLD", "noonThreedotsabove-ar.init.BaaHaaInitLD", "peh-ar.init.BaaHaaInitLD", "beeh-ar.init.BaaHaaInitLD", "beh-ar.init.BaaHaaInitLD", "noonTwodotsbelow-ar.init.BaaHaaInitLD", "yehFarsiVinverted-ar.init.BaaHaaInitLD", "yehFarsiFourbelow-ar.init.BaaHaaInitLD", "yehFarsiThreeabove-ar.init.BaaHaaInitLD", "yehFarsiTwoabove-ar.init.BaaHaaInitLD", "yehFarsi-ar.init.BaaHaaInitLD", "yeh-ar.init.BaaHaaInitLD", "yehVabove-ar.init.BaaHaaInitLD", "behThreedotsupabove-ar.init.BaaHaaInitLD", "behThreedotshorizontalbelow-ar.init.BaaHaaInitLD", "tehThreedotsupbelow-ar.init.BaaHaaInitLD", "behThreedotsupbelow-ar.init.BaaHaaInitLD", "behVinvertedbelow-ar.init.BaaHaaInitLD", "behTwodotsbelowDotabove-ar.init.BaaHaaInitLD", "noonDotbelow-ar.init.BaaHaaInitLD", "yehThreedotsbelow-ar.init.BaaHaaInitLD", "e-ar.init.BaaHaaInitLD", "beheh-ar.init.BaaHaaMemInitLD", "noonThreedotsabove-ar.init.BaaHaaMemInitLD", "peh-ar.init.BaaHaaMemInitLD", "beeh-ar.init.BaaHaaMemInitLD", "beh-ar.init.BaaHaaMemInitLD", "noonTwodotsbelow-ar.init.BaaHaaMemInitLD", "yehFarsiVinverted-ar.init.BaaHaaMemInitLD", "yehFarsiFourbelow-ar.init.BaaHaaMemInitLD", "yehFarsiThreeabove-ar.init.BaaHaaMemInitLD", "yehFarsiTwoabove-ar.init.BaaHaaMemInitLD", "yehFarsi-ar.init.BaaHaaMemInitLD", "yeh-ar.init.BaaHaaMemInitLD", "yehVabove-ar.init.BaaHaaMemInitLD", "behThreedotsupabove-ar.init.BaaHaaMemInitLD", "behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD", "tehThreedotsupbelow-ar.init.BaaHaaMemInitLD", "behThreedotsupbelow-ar.init.BaaHaaMemInitLD", "behVinvertedbelow-ar.init.BaaHaaMemInitLD", "behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD", "noonDotbelow-ar.init.BaaHaaMemInitLD", "yehThreedotsbelow-ar.init.BaaHaaMemInitLD", "e-ar.init.BaaHaaMemInitLD", "beheh-ar.init.HighLD", "noonThreedotsabove-ar.init.HighLD", "peh-ar.init.HighLD", "beeh-ar.init.HighLD", "beh-ar.init.HighLD", "noonTwodotsbelow-ar.init.HighLD", "yehFarsiVinverted-ar.init.HighLD", "yehFarsiFourbelow-ar.init.HighLD", "yehFarsiThreeabove-ar.init.HighLD", "yehFarsiTwoabove-ar.init.HighLD", "yehFarsi-ar.init.HighLD", "yeh-ar.init.HighLD", "yehVabove-ar.init.HighLD", "behThreedotsupabove-ar.init.HighLD", "behThreedotshorizontalbelow-ar.init.HighLD", "tehThreedotsupbelow-ar.init.HighLD", "behThreedotsupbelow-ar.init.HighLD", "behVinvertedbelow-ar.init.HighLD", "behTwodotsbelowDotabove-ar.init.HighLD", "noonDotbelow-ar.init.HighLD", "yehThreedotsbelow-ar.init.HighLD", "e-ar.init.HighLD", "beheh-ar.init.WideLD", "noonThreedotsabove-ar.init.WideLD", "peh-ar.init.WideLD", "beeh-ar.init.WideLD", "beh-ar.init.WideLD", "noonTwodotsbelow-ar.init.WideLD", "yehFarsiVinverted-ar.init.WideLD", "yehFarsiFourbelow-ar.init.WideLD", "yehFarsiThreeabove-ar.init.WideLD", "yehFarsiTwoabove-ar.init.WideLD", "yehFarsi-ar.init.WideLD", "yeh-ar.init.WideLD", "yehVabove-ar.init.WideLD", "behThreedotsupabove-ar.init.WideLD", "behThreedotshorizontalbelow-ar.init.WideLD", "tehThreedotsupbelow-ar.init.WideLD", "behThreedotsupbelow-ar.init.WideLD", "behVinvertedbelow-ar.init.WideLD", "behTwodotsbelowDotabove-ar.init.WideLD", "noonDotbelow-ar.init.WideLD", "yehThreedotsbelow-ar.init.WideLD", "e-ar.init.WideLD", "beheh-ar.init.BaaYaaIsolLD", "noonThreedotsabove-ar.init.BaaYaaIsolLD", "peh-ar.init.BaaYaaIsolLD", "beeh-ar.init.BaaYaaIsolLD", "beh-ar.init.BaaYaaIsolLD", "noonTwodotsbelow-ar.init.BaaYaaIsolLD", "yehFarsiVinverted-ar.init.BaaYaaIsolLD", "yehFarsiFourbelow-ar.init.BaaYaaIsolLD", "yehFarsiThreeabove-ar.init.BaaYaaIsolLD", "yehFarsiTwoabove-ar.init.BaaYaaIsolLD", "yehFarsi-ar.init.BaaYaaIsolLD", "yeh-ar.init.BaaYaaIsolLD", "yehVabove-ar.init.BaaYaaIsolLD", "behThreedotsupabove-ar.init.BaaYaaIsolLD", "behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD", "tehThreedotsupbelow-ar.init.BaaYaaIsolLD", "behThreedotsupbelow-ar.init.BaaYaaIsolLD", "behVinvertedbelow-ar.init.BaaYaaIsolLD", "behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD", "noonDotbelow-ar.init.BaaYaaIsolLD", "yehThreedotsbelow-ar.init.BaaYaaIsolLD", "e-ar.init.BaaYaaIsolLD", "beheh-ar.init.BaaMemIsolLD", "noonThreedotsabove-ar.init.BaaMemIsolLD", "peh-ar.init.BaaMemIsolLD", "beeh-ar.init.BaaMemIsolLD", "beh-ar.init.BaaMemIsolLD", "noonTwodotsbelow-ar.init.BaaMemIsolLD", "yehFarsiVinverted-ar.init.BaaMemIsolLD", "yehFarsiFourbelow-ar.init.BaaMemIsolLD", "yehFarsiThreeabove-ar.init.BaaMemIsolLD", "yehFarsiTwoabove-ar.init.BaaMemIsolLD", "yehFarsi-ar.init.BaaMemIsolLD", "yeh-ar.init.BaaMemIsolLD", "yehVabove-ar.init.BaaMemIsolLD", "behThreedotsupabove-ar.init.BaaMemIsolLD", "behThreedotshorizontalbelow-ar.init.BaaMemIsolLD", "tehThreedotsupbelow-ar.init.BaaMemIsolLD", "behThreedotsupbelow-ar.init.BaaMemIsolLD", "behVinvertedbelow-ar.init.BaaMemIsolLD", "behTwodotsbelowDotabove-ar.init.BaaMemIsolLD", "noonDotbelow-ar.init.BaaMemIsolLD", "yehThreedotsbelow-ar.init.BaaMemIsolLD", "e-ar.init.BaaMemIsolLD", "beheh-ar.init.BaaHehInitLD", "noonThreedotsabove-ar.init.BaaHehInitLD", "peh-ar.init.BaaHehInitLD", "beeh-ar.init.BaaHehInitLD", "beh-ar.init.BaaHehInitLD", "noonTwodotsbelow-ar.init.BaaHehInitLD", "yehFarsiVinverted-ar.init.BaaHehInitLD", "yehFarsiFourbelow-ar.init.BaaHehInitLD", "yehFarsiThreeabove-ar.init.BaaHehInitLD", "yehFarsiTwoabove-ar.init.BaaHehInitLD", "yehFarsi-ar.init.BaaHehInitLD", "yeh-ar.init.BaaHehInitLD", "yehVabove-ar.init.BaaHehInitLD", "behThreedotsupabove-ar.init.BaaHehInitLD", "behThreedotshorizontalbelow-ar.init.BaaHehInitLD", "tehThreedotsupbelow-ar.init.BaaHehInitLD", "behThreedotsupbelow-ar.init.BaaHehInitLD", "behVinvertedbelow-ar.init.BaaHehInitLD", "behTwodotsbelowDotabove-ar.init.BaaHehInitLD", "noonDotbelow-ar.init.BaaHehInitLD", "yehThreedotsbelow-ar.init.BaaHehInitLD", "e-ar.init.BaaHehInitLD", "yehKashmiri-ar.initLD", "yehKashmiri-ar.init.BaaRaaIsolLD", "yehKashmiri-ar.init.BaaDalLD", "yehKashmiri-ar.init.BaaMemHaaInitLD", "yehKashmiri-ar.init.BaaBaaYaaLD", "yehKashmiri-ar.init.BaaNonIsolLD", "yehKashmiri-ar.init.BaaSenInitLD", "yehKashmiri-ar.init.BaaMemInitLD", "yehKashmiri-ar.init.BaaBaaHaaInitLD", "yehKashmiri-ar.init.BaaBaaIsolLD", "yehKashmiri-ar.init.BaaBaaMemInitLD", "yehKashmiri-ar.init.BaaSenAltInitLD", "yehKashmiri-ar.init.BaaHaaInitLD", "yehKashmiri-ar.init.BaaHaaMemInitLD", "yehKashmiri-ar.init.HighLD", "yehKashmiri-ar.init.WideLD", "yehKashmiri-ar.init.BaaYaaIsolLD", "yehKashmiri-ar.init.BaaMemIsolLD", "yehKashmiri-ar.init.BaaHehInitLD", "meemDotabove-ar.init.MemHehInit", aMem.init.MemHehInit, "meem-ar.init.MemHehInit", "meemDotbelow-ar.init.MemHehInit", "alefabove-ar.isol", "alefabove-ar.medi", "hamza-ar.medi", "hamza-ar.float", "kashida-ar.long1", "zero-ar.small", "one-ar.small", "two-ar.small", "three-ar.small", "four-ar.small", "five-ar.small", "six-ar.small", "seven-ar.small", "eight-ar.small", "nine-ar.small", "zeroFarsi-ar.small", "oneFarsi-ar.small", "twoFarsi-ar.small", "threeFarsi-ar.small", "fourFarsi-ar.small", "fiveFarsi-ar.small", "sixFarsi-ar.small", "sevenFarsi-ar.small", "eightFarsi-ar.small", "nineFarsi-ar.small", "fourFarsi-ar.urd.small", "sixFarsi-ar.urd.small", "sevenFarsi-ar.urd.small", "openfathatan-ar.small", "fatha-ar.small2", "dammatan-ar.small", "highwaw-ar.medi", "yehabove-ar.medi", radical.rtlm, dot.percent, "meem-ar.medi.KafMemMediTatweel", "meem-ar.fina.LamMemFinaExtended", "meem-ar.fina.KafMemFinaExtended", aMem.fina.Extended, "meem-ar.fina.KafMemIsolExtended", "kashida-ar.1", "alef-ar.fina.Tatweel", "kashida-ar.2", "kashida-ar.3", "kashida-ar.4", "sheenDotbelow-ar.init.SenBaaMemInit", "seenTwodotsverticalabove-ar.init.SenBaaMemInit", "seen-ar.init.SenBaaMemInit", "seenVinvertedabove-ar.init.SenBaaMemInit", "seenFourabove-ar.init.SenBaaMemInit", "sheen-ar.init.SenBaaMemInit", "seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit", "seenFourdotsabove-ar.init.SenBaaMemInit", "seenDotbelowDotabove-ar.init.SenBaaMemInit", "seenThreedotsbelow-ar.init.SenBaaMemInit", "sheenThreedotsbelow-ar.init.SenBaaMemInit", "sadTwodotsbelow-ar.init.SenBaaMemInit", "dadDotbelow-ar.init.SenBaaMemInit", "dad-ar.init.SenBaaMemInit", "sadThreedots-ar.init.SenBaaMemInit", "sad-ar.init.SenBaaMemInit", aYaaBari.isol, aYaaBari.fina, aYaaBari.fina.PostTooth, aSen.init.YaaBari, aSad.init.YaaBari, "yehbarreeThreeabove-ar.fina", "yehbarreeThreeabove-ar.fina.PostTooth", "yehbarreeTwoabove-ar.fina", "yehbarreeTwoabove-ar.fina.PostTooth", "yehbarree-ar.fina", "yehbarree-ar.fina.PostTooth", "sheenDotbelow-ar.init.YaaBari", "seenTwodotsverticalabove-ar.init.YaaBari", "seen-ar.init.YaaBari", "seenVinvertedabove-ar.init.YaaBari", "seenFourabove-ar.init.YaaBari", "sheen-ar.init.YaaBari", "seenTahTwodotshorizontalabove-ar.init.YaaBari", "seenFourdotsabove-ar.init.YaaBari", "seenDotbelowDotabove-ar.init.YaaBari", "seenThreedotsbelow-ar.init.YaaBari", "sheenThreedotsbelow-ar.init.YaaBari", "sadTwodotsbelow-ar.init.YaaBari", "dadDotbelow-ar.init.YaaBari", "dad-ar.init.YaaBari", "sadThreedots-ar.init.YaaBari", "sad-ar.init.YaaBari", aYaaBari.fina.PostAscender, "alef-ar.fina.Wide", aBaa.init.YaaBari, aFaa.init.YaaBari, "wawSmall-ar.low", aLam.init.YaaBari, aKaf.init.YaaBari, "kehehTwodotshorizontalabove-ar.init.YaaBari", "kehehThreedotsbelow-ar.init.YaaBari", "kafTwodotshorizontalabove-ar.init.YaaBari", "kehehThreedotsupbelow-ar.init.YaaBari", "kaf-ar.init.YaaBari", "gafRing-ar.init.YaaBari", "gueh-ar.init.YaaBari", "gafTwodotsbelow-ar.init.YaaBari", "kafRing-ar.init.YaaBari", "kafDotabove-ar.init.YaaBari", "ng-ar.init.YaaBari", "kafThreedotsbelow-ar.init.YaaBari", "gaf-ar.init.YaaBari", "keheh-ar.init.YaaBari", "gafThreedots-ar.init.YaaBari", "kehehThreedotsabove-ar.init.YaaBari", "kehehDotabove-ar.init.YaaBari", "ngoeh-ar.init.YaaBari", "yehFarsiFourbelow-ar.init.YaaBari", "beheh-ar.init.YaaBari", "yehFarsiThreeabove-ar.init.YaaBari", "noonRing-ar.init.YaaBari", "behThreedotshorizontalbelow-ar.init.YaaBari", "behVabove-ar.init.YaaBari", "noonTahabove-ar.init.YaaBari", "yehVabove-ar.init.YaaBari", "yehFarsiTwoabove-ar.init.YaaBari", "noonThreedotsabove-ar.init.YaaBari", "yehHamzaabove-ar.init.YaaBari", "behDotless-ar.init.YaaBari", "yehKashmiri-ar.init.YaaBari", "yeh-ar.init.YaaBari", "rnoon-ar.init.YaaBari", "teheh-ar.init.YaaBari", "behVinvertedbelow-ar.init.YaaBari", "tehThreedotsdown-ar.init.YaaBari", "peh-ar.init.YaaBari", "beeh-ar.init.YaaBari", "beh-ar.init.YaaBari", "tteheh-ar.init.YaaBari", "behThreedotsupabove-ar.init.YaaBari", "noon-ar.init.YaaBari", "tehThreedotsupbelow-ar.init.YaaBari", "behThreedotsupbelow-ar.init.YaaBari", "teh-ar.init.YaaBari", "highhamzaYeh-ar.init.YaaBari", "yehFarsiVinverted-ar.init.YaaBari", "theh-ar.init.YaaBari", "tteh-ar.init.YaaBari", "noonDotbelow-ar.init.YaaBari", "noonVabove-ar.init.YaaBari", "alefMaksura-ar.init.YaaBari", "tehRing-ar.init.YaaBari", "behTwodotsbelowDotabove-ar.init.YaaBari", "yehThreedotsbelow-ar.init.YaaBari", "e-ar.init.YaaBari", "noonghunna-ar.init.YaaBari", "yehFarsi-ar.init.YaaBari", "noonTwodotsbelow-ar.init.YaaBari", "yehbarreeThreeabove-ar.fina.PostAscender", "yehbarreeTwoabove-ar.fina.PostAscender", "yehbarree-ar.fina.PostAscender", "lamVabove-ar.init.YaaBari", "lamThreedotsabove-ar.init.YaaBari", "lam-ar.init.YaaBari", "lamThreedotsbelow-ar.init.YaaBari", "lamDotabove-ar.init.YaaBari", "lamBar-ar.init.YaaBari", "qafDotless-ar.init.YaaBari", "fehThreedotsupbelow-ar.init.YaaBari", "fehTwodotsbelow-ar.init.YaaBari", "qaf-ar.init.YaaBari", "feh-ar.init.YaaBari", "qafThreedotsabove-ar.init.YaaBari", "fehDotless-ar.init.YaaBari", "fehDotmovedbelow-ar.init.YaaBari", "fehDotbelow-ar.init.YaaBari", "veh-ar.init.YaaBari", "fehThreedotsbelow-ar.init.YaaBari", "peheh-ar.init.YaaBari", "qafDotabove-ar.init.YaaBari", aYaaBari.fina.PostAyn, aHaa.init.YaaBari, aAyn.init.YaaBari, aMem.init.YaaBari, "yehbarreeThreeabove-ar.fina.PostAyn", "yehbarreeTwoabove-ar.fina.PostAyn", "yehbarree-ar.fina.PostAyn", "meemDotabove-ar.init.YaaBari", "meem-ar.init.YaaBari", "meemDotbelow-ar.init.YaaBari", "khah-ar.init.YaaBari", "hah-ar.init.YaaBari", "hahHamzaabove-ar.init.YaaBari", "tcheheh-ar.init.YaaBari", "hahThreedotsabove-ar.init.YaaBari", "jeem-ar.init.YaaBari", "hahTwodotsverticalabove-ar.init.YaaBari", "hahTwodotshorizontalabove-ar.init.YaaBari", "dyeh-ar.init.YaaBari", "hahTahTwodotshorizontalabove-ar.init.YaaBari", "hahTahbelow-ar.init.YaaBari", "nyeh-ar.init.YaaBari", "tchehDotabove-ar.init.YaaBari", "hahFourbelow-ar.init.YaaBari", "hahThreedotsupbelow-ar.init.YaaBari", "hahTahabove-ar.init.YaaBari", "tcheh-ar.init.YaaBari", "ghainDotbelow-ar.init.YaaBari", "ghain-ar.init.YaaBari", "ainThreedotsdownabove-ar.init.YaaBari", "ainTwodotshorizontalabove-ar.init.YaaBari", "ainTwodotsverticalabove-ar.init.YaaBari", "ainThreedots-ar.init.YaaBari", "ain-ar.init.YaaBari", aHeh.init.YaaBari, "heh-ar.init.YaaBari", "hehgoal-ar.init.YaaBari", aTaa.init.YaaBaree, "zah-ar.init.YaaBari", "tah-ar.init.YaaBari", "tahThreedots-ar.init.YaaBari", aHehKnotted.isol, "hehDoachashmee-ar.init", "hehVinvertedabove-ar.init", "hehDoachashmee-ar.fina", "hehVinvertedabove-ar.fina", "hehDoachashmee-ar.medi", "hehVinvertedabove-ar.medi", aHehKnotted.fina, aHeh.medi.HehYaaFina, "heh-ar.medi.HehYaaFina", "hehgoal-ar.medi.HehYaaFina", "heh-ar.medi.PostToothHehYaa", "hehgoal-ar.medi.PostToothHehYaa", hamza.above, "zero-ar.medium", "one-ar.medium", "two-ar.medium", "three-ar.medium", "four-ar.medium", "five-ar.medium", "six-ar.medium", "seven-ar.medium", "eight-ar.medium", "nine-ar.medium", "zeroFarsi-ar.medium", "oneFarsi-ar.medium", "twoFarsi-ar.medium", "threeFarsi-ar.medium", "fourFarsi-ar.medium", "fiveFarsi-ar.medium", "sixFarsi-ar.medium", "sevenFarsi-ar.medium", "eightFarsi-ar.medium", "nineFarsi-ar.medium", "fourFarsi-ar.urd.medium", "sixFarsi-ar.urd.medium", "sevenFarsi-ar.urd.medium", aAlf.fina.Narrow, "alefMadda-ar.fina.Narrow", "alefHamzaabove-ar.fina.Narrow", "alefHamzabelow-ar.fina.Narrow", "alef-ar.fina.Narrow", "alefWasla-ar.fina.Narrow", "alefWavyhamzaabove-ar.fina.Narrow", "alefWavyhamzabelow-ar.fina.Narrow", "alefTwoabove-ar.fina.Narrow", "alefThreeabove-ar.fina.Narrow", smallv.above, aHehKnotted.init.YaaBari, "hehDoachashmee-ar.init.YaaBari", "behVbelow-ar.fina", "behVbelow-ar.init", "behVbelow-ar.medi", "behVbelow-ar.init.BaaRaaIsol", "behVbelow-ar.medi.BaaMemFina", "behVbelow-ar.medi.LamBaaMemInit", "behVbelow-ar.init.BaaDal", "behVbelow-ar.init.BaaMemHaaInit", "behVbelow-ar.init.BaaBaaYaa", "behVbelow-ar.medi.BaaBaaYaa", "behVbelow-ar.medi.KafBaaInit", "behVbelow-ar.medi.BaaBaaInit", "behVbelow-ar.init.BaaNonIsol", "behVbelow-ar.init.BaaSenInit", "behVbelow-ar.medi.BaaRaaFina", "behVbelow-ar.init.BaaMemInit", "behVbelow-ar.init.BaaBaaHaaInit", "behVbelow-ar.medi.BaaBaaHaaInit", "behVbelow-ar.medi.SenBaaMemInit", "behVbelow-ar.init.BaaBaaIsol", "behVbelow-ar.fina.BaaBaaIsol", "behVbelow-ar.init.BaaBaaMemInit", "behVbelow-ar.medi.BaaBaaMemInit", "behVbelow-ar.medi.KafBaaMedi", "behVbelow-ar.medi.BaaNonFina", "behVbelow-ar.medi.BaaYaaFina", "behVbelow-ar.init.BaaSenAltInit", "behVbelow-ar.init.AboveHaa", "behVbelow-ar.init.BaaHaaInit", "behVbelow-ar.init.BaaHaaMemInit", "behVbelow-ar.init.High", "behVbelow-ar.medi.High", "behVbelow-ar.init.Wide", "behVbelow-ar.init.BaaYaaIsol", "behVbelow-ar.init.BaaMemIsol", "behVbelow-ar.medi.BaaMemAlfFina", "behVbelow-ar.init.BaaHehInit", "behVbelow-ar.medi.BaaHehMedi", "behVbelow-ar.init.LD", "behVbelow-ar.init.BaaRaaIsolLD", "behVbelow-ar.init.BaaDalLD", "behVbelow-ar.init.BaaMemHaaInitLD", "behVbelow-ar.init.BaaBaaYaaLD", "behVbelow-ar.init.BaaNonIsolLD", "behVbelow-ar.init.BaaSenInitLD", "behVbelow-ar.init.BaaMemInitLD", "behVbelow-ar.init.BaaBaaHaaInitLD", "behVbelow-ar.init.BaaBaaIsolLD", "behVbelow-ar.init.BaaBaaMemInitLD", "behVbelow-ar.init.BaaSenAltInitLD", "behVbelow-ar.init.BaaHaaInitLD", "behVbelow-ar.init.BaaHaaMemInitLD", "behVbelow-ar.init.HighLD", "behVbelow-ar.init.WideLD", "behVbelow-ar.init.BaaYaaIsolLD", "behVbelow-ar.init.BaaMemIsolLD", "behVbelow-ar.init.BaaHehInitLD", "behVbelow-ar.init.YaaBari", "vbelow-ar.low", "number-ar.4", smallv.above.inverted, "zero-ar.prop", "one-ar.prop", "two-ar.prop", "three-ar.prop", "four-ar.prop", "five-ar.prop", "six-ar.prop", "seven-ar.prop", "eight-ar.prop", "nine-ar.prop", "zeroFarsi-ar.prop", "oneFarsi-ar.prop", "twoFarsi-ar.prop", "threeFarsi-ar.prop", "fourFarsi-ar.prop", "fiveFarsi-ar.prop", "sixFarsi-ar.prop", "sevenFarsi-ar.prop", "eightFarsi-ar.prop", "nineFarsi-ar.prop", "fourFarsi-ar.urd.prop", "sixFarsi-ar.urd.prop", "sevenFarsi-ar.urd.prop", "alefHamzaabove-ar.fina.Wide", "alefWasla-ar.fina.Wide", aBaa.init.BaaBaaHeh, "yehFarsiFourbelow-ar.init.BaaBaaHeh", "beheh-ar.init.BaaBaaHeh", "yehFarsiThreeabove-ar.init.BaaBaaHeh", "noonRing-ar.init.BaaBaaHeh", "behThreedotshorizontalbelow-ar.init.BaaBaaHeh", "behVabove-ar.init.BaaBaaHeh", "noonTahabove-ar.init.BaaBaaHeh", "yehVabove-ar.init.BaaBaaHeh", "yehFarsiTwoabove-ar.init.BaaBaaHeh", "noonThreedotsabove-ar.init.BaaBaaHeh", "yehHamzaabove-ar.init.BaaBaaHeh", "behDotless-ar.init.BaaBaaHeh", "yehKashmiri-ar.init.BaaBaaHeh", "yeh-ar.init.BaaBaaHeh", "rnoon-ar.init.BaaBaaHeh", "teheh-ar.init.BaaBaaHeh", "behVinvertedbelow-ar.init.BaaBaaHeh", "tehThreedotsdown-ar.init.BaaBaaHeh", "peh-ar.init.BaaBaaHeh", "beeh-ar.init.BaaBaaHeh", "beh-ar.init.BaaBaaHeh", "tteheh-ar.init.BaaBaaHeh", "behThreedotsupabove-ar.init.BaaBaaHeh", "noon-ar.init.BaaBaaHeh", "tehThreedotsupbelow-ar.init.BaaBaaHeh", "behThreedotsupbelow-ar.init.BaaBaaHeh", "teh-ar.init.BaaBaaHeh", "highhamzaYeh-ar.init.BaaBaaHeh", "yehFarsiVinverted-ar.init.BaaBaaHeh", "theh-ar.init.BaaBaaHeh", "tteh-ar.init.BaaBaaHeh", "noonDotbelow-ar.init.BaaBaaHeh", "noonVabove-ar.init.BaaBaaHeh", "alefMaksura-ar.init.BaaBaaHeh", "tehRing-ar.init.BaaBaaHeh", "behTwodotsbelowDotabove-ar.init.BaaBaaHeh", "yehThreedotsbelow-ar.init.BaaBaaHeh", "e-ar.init.BaaBaaHeh", "noonghunna-ar.init.BaaBaaHeh", "yehFarsi-ar.init.BaaBaaHeh", "noonTwodotsbelow-ar.init.BaaBaaHeh", "beheh-ar.init.BaaBaaHehLD", "noonThreedotsabove-ar.init.BaaBaaHehLD", "peh-ar.init.BaaBaaHehLD", "beeh-ar.init.BaaBaaHehLD", "beh-ar.init.BaaBaaHehLD", "noonTwodotsbelow-ar.init.BaaBaaHehLD", "yehFarsiVinverted-ar.init.BaaBaaHehLD", "yehFarsiFourbelow-ar.init.BaaBaaHehLD", "yehFarsiThreeabove-ar.init.BaaBaaHehLD", "yehFarsiTwoabove-ar.init.BaaBaaHehLD", "yehFarsi-ar.init.BaaBaaHehLD", "yeh-ar.init.BaaBaaHehLD", "yehVabove-ar.init.BaaBaaHehLD", "behThreedotsupabove-ar.init.BaaBaaHehLD", "behThreedotshorizontalbelow-ar.init.BaaBaaHehLD", "tehThreedotsupbelow-ar.init.BaaBaaHehLD", "behThreedotsupbelow-ar.init.BaaBaaHehLD", "behVinvertedbelow-ar.init.BaaBaaHehLD", "behTwodotsbelowDotabove-ar.init.BaaBaaHehLD", "noonDotbelow-ar.init.BaaBaaHehLD", "yehThreedotsbelow-ar.init.BaaBaaHehLD", "e-ar.init.BaaBaaHehLD", "circlebelow-ar", "keheh-ar.alt", "keheh-ar.alt.fina", "gaf-ar.alt", "gaf-ar.alt.fina", "gafRing-ar.alt", "gafRing-ar.alt.fina", "ngoeh-ar.alt", "ngoeh-ar.alt.fina", "gafTwodotsbelow-ar.alt", "gafTwodotsbelow-ar.alt.fina", "gueh-ar.alt", "gueh-ar.alt.fina", "gafThreedots-ar.alt", "gafThreedots-ar.alt.fina", "kehehDotabove-ar.alt", "kehehDotabove-ar.alt.fina", "kehehThreedotsabove-ar.alt", "kehehThreedotsabove-ar.alt.fina", "kehehThreedotsupbelow-ar.alt", "kehehThreedotsupbelow-ar.alt.fina", "kehehTwodotshorizontalabove-ar.alt", "kehehTwodotshorizontalabove-ar.alt.fina", "kehehThreedotsbelow-ar.alt", "kehehThreedotsbelow-ar.alt.fina", aGaf.isol, aGaf.fina, "number-ar.3", "pagenumber-ar.3", "kashida-ar.05", aYaaBari.fina.PostToothFina, aBaa.medi.YaaBari, "yehFarsiFourbelow-ar.medi.YaaBari", "beheh-ar.medi.YaaBari", "yehFarsiThreeabove-ar.medi.YaaBari", "noonRing-ar.medi.YaaBari", "behThreedotshorizontalbelow-ar.medi.YaaBari", "behVabove-ar.medi.YaaBari", "noonTahabove-ar.medi.YaaBari", "yehVabove-ar.medi.YaaBari", "yehFarsiTwoabove-ar.medi.YaaBari", "noonThreedotsabove-ar.medi.YaaBari", "yehHamzaabove-ar.medi.YaaBari", "behDotless-ar.medi.YaaBari", "yehKashmiri-ar.medi.YaaBari", "yeh-ar.medi.YaaBari", "rnoon-ar.medi.YaaBari", "teheh-ar.medi.YaaBari", "behVinvertedbelow-ar.medi.YaaBari", "tehThreedotsdown-ar.medi.YaaBari", "peh-ar.medi.YaaBari", "beeh-ar.medi.YaaBari", "beh-ar.medi.YaaBari", "tteheh-ar.medi.YaaBari", "behThreedotsupabove-ar.medi.YaaBari", "noon-ar.medi.YaaBari", "tehThreedotsupbelow-ar.medi.YaaBari", "behThreedotsupbelow-ar.medi.YaaBari", "teh-ar.medi.YaaBari", "yehFarsiVinverted-ar.medi.YaaBari", "theh-ar.medi.YaaBari", "tteh-ar.medi.YaaBari", "noonDotbelow-ar.medi.YaaBari", "noonVabove-ar.medi.YaaBari", "alefMaksura-ar.medi.YaaBari", "tehRing-ar.medi.YaaBari", "behTwodotsbelowDotabove-ar.medi.YaaBari", "yehThreedotsbelow-ar.medi.YaaBari", "e-ar.medi.YaaBari", "noonghunna-ar.medi.YaaBari", "yehFarsi-ar.medi.YaaBari", "noonTwodotsbelow-ar.medi.YaaBari", "yehbarreeThreeabove-ar.fina.PostToothFina", "yehbarreeTwoabove-ar.fina.PostToothFina", "yehbarree-ar.fina.PostToothFina", "behVbelow-ar.medi.YaaBari", aBaa.init.BaaBaaYaaBari, "yehFarsiFourbelow-ar.init.BaaBaaYaaBari", "beheh-ar.init.BaaBaaYaaBari", "yehFarsiThreeabove-ar.init.BaaBaaYaaBari", "noonRing-ar.init.BaaBaaYaaBari", "behThreedotshorizontalbelow-ar.init.BaaBaaYaaBari", "behVabove-ar.init.BaaBaaYaaBari", "noonTahabove-ar.init.BaaBaaYaaBari", "yehVabove-ar.init.BaaBaaYaaBari", "yehFarsiTwoabove-ar.init.BaaBaaYaaBari", "noonThreedotsabove-ar.init.BaaBaaYaaBari", "yehHamzaabove-ar.init.BaaBaaYaaBari", "behDotless-ar.init.BaaBaaYaaBari", "yehKashmiri-ar.init.BaaBaaYaaBari", "yeh-ar.init.BaaBaaYaaBari", "rnoon-ar.init.BaaBaaYaaBari", "teheh-ar.init.BaaBaaYaaBari", "behVinvertedbelow-ar.init.BaaBaaYaaBari", "tehThreedotsdown-ar.init.BaaBaaYaaBari", "peh-ar.init.BaaBaaYaaBari", "beeh-ar.init.BaaBaaYaaBari", "beh-ar.init.BaaBaaYaaBari", "tteheh-ar.init.BaaBaaYaaBari", "behThreedotsupabove-ar.init.BaaBaaYaaBari", "noon-ar.init.BaaBaaYaaBari", "tehThreedotsupbelow-ar.init.BaaBaaYaaBari", "behThreedotsupbelow-ar.init.BaaBaaYaaBari", "teh-ar.init.BaaBaaYaaBari", "highhamzaYeh-ar.init.BaaBaaYaaBari", "yehFarsiVinverted-ar.init.BaaBaaYaaBari", "theh-ar.init.BaaBaaYaaBari", "tteh-ar.init.BaaBaaYaaBari", "noonDotbelow-ar.init.BaaBaaYaaBari", "noonVabove-ar.init.BaaBaaYaaBari", "alefMaksura-ar.init.BaaBaaYaaBari", "tehRing-ar.init.BaaBaaYaaBari", "behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari", "yehThreedotsbelow-ar.init.BaaBaaYaaBari", "e-ar.init.BaaBaaYaaBari", "noonghunna-ar.init.BaaBaaYaaBari", "yehFarsi-ar.init.BaaBaaYaaBari", "noonTwodotsbelow-ar.init.BaaBaaYaaBari", "behVbelow-ar.init.BaaBaaYaaBari", "tcheheh-ar.init.BaaYaaBari", "jeem-ar.init.BaaYaaBari", "dyeh-ar.init.BaaYaaBari", "hahTahTwodotshorizontalabove-ar.init.BaaYaaBari", "hahTahbelow-ar.init.BaaYaaBari", "nyeh-ar.init.BaaYaaBari", "tchehDotabove-ar.init.BaaYaaBari", "hahFourbelow-ar.init.BaaYaaBari", "hahThreedotsupbelow-ar.init.BaaYaaBari", "tcheh-ar.init.BaaYaaBari", aHaa.init.BaaYaaBari, "behVbelow-ar.init.BaaBaaHeh", "behVbelow-ar.init.BaaBaaHehLD", "yehKashmiri-ar.init.BaaBaaHehLD", "dammainverted-ar.urd", "dammainverted-ar.small", "kasra-ar.small", "kasratan-ar.small", zero.small, one.small, two.small, three.small, four.small, five.small, six.small, seven.small, eight.small, nine.small, "yehFarsiTwodotsabove-ar.init", "yehFarsiThreedotsabove-ar.init", "yehFarsiTwodotsabove-ar.medi", "yehFarsiThreedotsabove-ar.medi", "yehFarsiTwodotsabove-ar.init.BaaRaaIsol", "yehFarsiThreedotsabove-ar.init.BaaRaaIsol", "yehFarsiTwodotsabove-ar.medi.BaaMemFina", "yehFarsiThreedotsabove-ar.medi.BaaMemFina", "yehFarsiTwodotsabove-ar.medi.LamBaaMemInit", "yehFarsiThreedotsabove-ar.medi.LamBaaMemInit", "yehFarsiTwodotsabove-ar.init.BaaDal", "yehFarsiThreedotsabove-ar.init.BaaDal", "yehFarsiTwodotsabove-ar.init.BaaMemHaaInit", "yehFarsiThreedotsabove-ar.init.BaaMemHaaInit", "yehFarsiTwodotsabove-ar.init.BaaBaaYaa", "yehFarsiThreedotsabove-ar.init.BaaBaaYaa", "yehFarsiTwodotsabove-ar.medi.BaaBaaYaa", "yehFarsiThreedotsabove-ar.medi.BaaBaaYaa", "yehFarsiTwodotsabove-ar.medi.KafBaaInit", "yehFarsiThreedotsabove-ar.medi.KafBaaInit", "yehFarsiTwodotsabove-ar.medi.BaaBaaInit", "yehFarsiThreedotsabove-ar.medi.BaaBaaInit", "yehFarsiTwodotsabove-ar.init.BaaNonIsol", "yehFarsiThreedotsabove-ar.init.BaaNonIsol", "yehFarsiTwodotsabove-ar.init.BaaSenInit", "yehFarsiThreedotsabove-ar.init.BaaSenInit", "yehFarsiTwodotsabove-ar.medi.BaaRaaFina", "yehFarsiThreedotsabove-ar.medi.BaaRaaFina", "yehFarsiTwodotsabove-ar.init.BaaMemInit", "yehFarsiThreedotsabove-ar.init.BaaMemInit", "yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit", "yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit", "yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit", "yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit", "yehFarsiTwodotsabove-ar.medi.SenBaaMemInit", "yehFarsiThreedotsabove-ar.medi.SenBaaMemInit", "yehFarsiTwodotsabove-ar.init.BaaBaaIsol", "yehFarsiThreedotsabove-ar.init.BaaBaaIsol", "yehFarsiTwodotsabove-ar.init.BaaBaaMemInit", "yehFarsiThreedotsabove-ar.init.BaaBaaMemInit", "yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit", "yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit", "yehFarsiTwodotsabove-ar.medi.KafBaaMedi", "yehFarsiThreedotsabove-ar.medi.KafBaaMedi", "yehFarsiTwodotsabove-ar.medi.BaaNonFina", "yehFarsiThreedotsabove-ar.medi.BaaNonFina", "yehFarsiTwodotsabove-ar.medi.BaaYaaFina", "yehFarsiThreedotsabove-ar.medi.BaaYaaFina", "yehFarsiTwodotsabove-ar.init.BaaSenAltInit", "yehFarsiThreedotsabove-ar.init.BaaSenAltInit", "yehFarsiTwodotsabove-ar.init.AboveHaa", "yehFarsiThreedotsabove-ar.init.AboveHaa", "yehFarsiTwodotsabove-ar.init.BaaHaaInit", "yehFarsiThreedotsabove-ar.init.BaaHaaInit", "yehFarsiTwodotsabove-ar.init.BaaHaaMemInit", "yehFarsiThreedotsabove-ar.init.BaaHaaMemInit", "yehFarsiTwodotsabove-ar.init.High", "yehFarsiThreedotsabove-ar.init.High", "yehFarsiTwodotsabove-ar.medi.High", "yehFarsiThreedotsabove-ar.medi.High", "yehFarsiTwodotsabove-ar.init.Wide", "yehFarsiThreedotsabove-ar.init.Wide", "yehFarsiTwodotsabove-ar.init.BaaYaaIsol", "yehFarsiThreedotsabove-ar.init.BaaYaaIsol", "yehFarsiTwodotsabove-ar.init.BaaMemIsol", "yehFarsiThreedotsabove-ar.init.BaaMemIsol", "yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina", "yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina", "yehFarsiTwodotsabove-ar.init.BaaHehInit", "yehFarsiThreedotsabove-ar.init.BaaHehInit", "yehFarsiTwodotsabove-ar.medi.BaaHehMedi", "yehFarsiThreedotsabove-ar.medi.BaaHehMedi", "yehFarsiTwodotsabove-ar.init.LD", "yehFarsiThreedotsabove-ar.init.LD", "yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD", "yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD", "yehFarsiTwodotsabove-ar.init.BaaDalLD", "yehFarsiThreedotsabove-ar.init.BaaDalLD", "yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD", "yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD", "yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD", "yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD", "yehFarsiTwodotsabove-ar.init.BaaNonIsolLD", "yehFarsiThreedotsabove-ar.init.BaaNonIsolLD", "yehFarsiTwodotsabove-ar.init.BaaSenInitLD", "yehFarsiThreedotsabove-ar.init.BaaSenInitLD", "yehFarsiTwodotsabove-ar.init.BaaMemInitLD", "yehFarsiThreedotsabove-ar.init.BaaMemInitLD", "yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD", "yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD", "yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD", "yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD", "yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD", "yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD", "yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD", "yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD", "yehFarsiTwodotsabove-ar.init.BaaHaaInitLD", "yehFarsiThreedotsabove-ar.init.BaaHaaInitLD", "yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD", "yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD", "yehFarsiTwodotsabove-ar.init.HighLD", "yehFarsiThreedotsabove-ar.init.HighLD", "yehFarsiTwodotsabove-ar.init.WideLD", "yehFarsiThreedotsabove-ar.init.WideLD", "yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD", "yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD", "yehFarsiTwodotsabove-ar.init.BaaMemIsolLD", "yehFarsiThreedotsabove-ar.init.BaaMemIsolLD", "yehFarsiTwodotsabove-ar.init.BaaHehInitLD", "yehFarsiThreedotsabove-ar.init.BaaHehInitLD", "yehFarsiTwodotsabove-ar.init.YaaBari", "yehFarsiThreedotsabove-ar.init.YaaBari", "yehFarsiTwodotsabove-ar.init.BaaBaaHeh", "yehFarsiThreedotsabove-ar.init.BaaBaaHeh", "yehFarsiTwodotsabove-ar.init.BaaBaaHehLD", "yehFarsiThreedotsabove-ar.init.BaaBaaHehLD", "yehFarsiTwodotsabove-ar.medi.YaaBari", "yehFarsiThreedotsabove-ar.medi.YaaBari", "yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari", "yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari", ampersand.ara, u1EE03.alt0, u1EE00.alt0, u1EE0D.alt0, u1EEF0.display, u1EEF1.display, u1EE13.alt0, "lam-ar.medi.Lellah2", "kashida-ar.5", "kashida-ar.6", "kashida-ar.7", aKaf.init.PreHeh, aKaf.medi.PreHeh, "kehehTwodotshorizontalabove-ar.init.PreHeh", "kehehThreedotsbelow-ar.init.PreHeh", "kafTwodotshorizontalabove-ar.init.PreHeh", "kehehThreedotsupbelow-ar.init.PreHeh", "kaf-ar.init.PreHeh", "gafRing-ar.init.PreHeh", "gueh-ar.init.PreHeh", "gafTwodotsbelow-ar.init.PreHeh", "kafRing-ar.init.PreHeh", "kafDotabove-ar.init.PreHeh", "ng-ar.init.PreHeh", "kafThreedotsbelow-ar.init.PreHeh", "gaf-ar.init.PreHeh", "keheh-ar.init.PreHeh", "gafThreedots-ar.init.PreHeh", "kehehThreedotsabove-ar.init.PreHeh", "kehehDotabove-ar.init.PreHeh", "ngoeh-ar.init.PreHeh", "kehehTwodotshorizontalabove-ar.medi.PreHeh", "kehehThreedotsbelow-ar.medi.PreHeh", "kafTwodotshorizontalabove-ar.medi.PreHeh", "kehehThreedotsupbelow-ar.medi.PreHeh", "kaf-ar.medi.PreHeh", "gafRing-ar.medi.PreHeh", "gueh-ar.medi.PreHeh", "gafTwodotsbelow-ar.medi.PreHeh", "kafRing-ar.medi.PreHeh", "kafDotabove-ar.medi.PreHeh", "ng-ar.medi.PreHeh", "kafThreedotsbelow-ar.medi.PreHeh", "gaf-ar.medi.PreHeh", "keheh-ar.medi.PreHeh", "gafThreedots-ar.medi.PreHeh", "kehehThreedotsabove-ar.medi.PreHeh", "kehehDotabove-ar.medi.PreHeh", "ngoeh-ar.medi.PreHeh", smallnoon.above, smallteh.above, smallmeem.above, "zero-ar.numr", "one-ar.numr", "two-ar.numr", "three-ar.numr", "four-ar.numr", "five-ar.numr", "six-ar.numr", "seven-ar.numr", "eight-ar.numr", "nine-ar.numr", "zeroFarsi-ar.numr", "oneFarsi-ar.numr", "twoFarsi-ar.numr", "threeFarsi-ar.numr", "fourFarsi-ar.numr", "fiveFarsi-ar.numr", "sixFarsi-ar.numr", "sevenFarsi-ar.numr", "eightFarsi-ar.numr", "nineFarsi-ar.numr", "fourFarsi-ar.urd.numr", "sixFarsi-ar.urd.numr", "sevenFarsi-ar.urd.numr", "kafRing-ar.alt", "kafRing-ar.alt.fina", _FDFD, _arrowhead ); }, { name = "Disable Last Change"; value = 1; }, { name = "Don't use Production Names"; value = 1; }, { name = "Propagate Anchors"; value = 0; }, { name = "Enforce Compatibility Check"; value = 0; }, { name = "Write DisplayStrings"; value = 0; }, { name = description; value = "Amiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named."; }, { name = sampleText; value = "صِفْ خَلْقَ خَوْدٍ كَمِثْلِ ٱلشَّمْسِ إِذْ بَزَغَتْ يَحْظَىٰ ٱلضَّجِيعُ بِهَا نَجْلَاءَ مِعْطَارِ."; }, { name = vendorID; value = ALIF; }, { name = Axes; value = ( { Name = Weight; Tag = wght; } ); } ); date = "2010-05-07 21:08:01 +0000"; designer = "Khaled Hosny"; designerURL = "http://www.amirifont.org"; disablesAutomaticAlignment = 1; familyName = Amiri; fontMaster = ( { ascender = 1124; capHeight = 646; customParameters = ( { name = postscriptFullName; value = Amiri; }, { name = postscriptFontName; value = "Amiri-Regular"; }, { name = postscriptWeightName; value = Regular; } ); descender = -634; id = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; weightValue = 400; xHeight = 433; }, { ascender = 1124; capHeight = 646; customParameters = ( { name = postscriptFullName; value = "Amiri Bold"; }, { name = postscriptFontName; value = "Amiri-Bold"; }, { name = postscriptWeightName; value = Bold; }, { name = weightClass; value = 700; }, { name = "Remove Glyphs"; value = ( "u1EE*" ); } ); descender = -634; id = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; name = Bold; weight = SemiBold; weightValue = 700; xHeight = 433; } ); glyphs = ( { glyphname = .notdef; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "33 666 LINE", "298 666 LINE", "298 0 LINE", "33 0 LINE" ); }, { closed = 1; nodes = ( "265 33 LINE", "265 633 LINE", "66 633 LINE", "66 33 LINE" ); } ); width = 364; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "33 666 LINE", "298 666 LINE", "298 0 LINE", "33 0 LINE" ); }, { closed = 1; nodes = ( "265 33 LINE", "265 633 LINE", "66 633 LINE", "66 33 LINE" ); } ); width = 364; } ); }, { glyphname = space; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = 0020; }, { glyphname = exclam; layers = ( { components = ( { name = dot.2; transform = "{1, 0, 0, 1, -39, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "136 666 OFFCURVE", "147 660 OFFCURVE", "154 648 CURVE SMOOTH", "161 636 OFFCURVE", "165 623 OFFCURVE", "165 609 CURVE SMOOTH", "165 539 OFFCURVE", "154 393 OFFCURVE", "131 168 CURVE", "127 160 OFFCURVE", "122 156 OFFCURVE", "115 155 CURVE", "109 158 OFFCURVE", "105 161 OFFCURVE", "103 166 CURVE", "83 391 OFFCURVE", "73 538 OFFCURVE", "73 609 CURVE SMOOTH", "73 623 OFFCURVE", "78 636 OFFCURVE", "87 648 CURVE SMOOTH", "96 660 OFFCURVE", "108 666 OFFCURVE", "122 666 CURVE SMOOTH" ); } ); width = 235; }, { components = ( { name = dot.2; transform = "{1, 0, 0, 1, -27, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "151 671 OFFCURVE", "165 665 OFFCURVE", "177 653 CURVE SMOOTH", "189 641 OFFCURVE", "195 624 OFFCURVE", "195 604 CURVE SMOOTH", "195 591 OFFCURVE", "190 535 OFFCURVE", "180 435 CURVE SMOOTH", "171 358 OFFCURVE", "162 285 OFFCURVE", "154 216 CURVE SMOOTH", "152 199 OFFCURVE", "146 191 OFFCURVE", "134 191 CURVE SMOOTH", "121 191 OFFCURVE", "113 200 OFFCURVE", "111 217 CURVE SMOOTH", "101 291 OFFCURVE", "93 360 OFFCURVE", "86 424 CURVE SMOOTH", "76 522 OFFCURVE", "70 582 OFFCURVE", "70 605 CURVE SMOOTH", "70 625 OFFCURVE", "77 641 OFFCURVE", "89 653 CURVE SMOOTH", "101 665 OFFCURVE", "117 671 OFFCURVE", "135 671 CURVE SMOOTH" ); } ); width = 263; } ); unicode = 0021; }, { glyphname = parenleft; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "220 47 OFFCURVE", "241 -66 OFFCURVE", "283 -173 CURVE SMOOTH", "316 -256 OFFCURVE", "360 -321 OFFCURVE", "415 -369 CURVE", "400 -386 LINE", "297 -305 OFFCURVE", "224 -199 OFFCURVE", "182 -68 CURVE SMOOTH", "158 6 OFFCURVE", "146 84 OFFCURVE", "146 166 CURVE SMOOTH", "146 341 OFFCURVE", "196 490 OFFCURVE", "294 611 CURVE SMOOTH", "326 650 OFFCURVE", "361 686 OFFCURVE", "400 717 CURVE", "415 696 LINE", "345 640 OFFCURVE", "291 550 OFFCURVE", "256 426 CURVE SMOOTH", "232 342 OFFCURVE", "220 255 OFFCURVE", "220 166 CURVE SMOOTH" ); } ); width = 458; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "259 317 OFFCURVE", "289 453 OFFCURVE", "350 574 CURVE SMOOTH", "378 630 OFFCURVE", "406 670 OFFCURVE", "433 693 CURVE", "421 720 LINE SMOOTH", "366 691 OFFCURVE", "316 646 OFFCURVE", "269 586 CURVE SMOOTH", "178 469 OFFCURVE", "133 330 OFFCURVE", "133 167 CURVE SMOOTH", "133 3 OFFCURVE", "178 -136 OFFCURVE", "269 -253 CURVE SMOOTH", "316 -313 OFFCURVE", "366 -358 OFFCURVE", "421 -387 CURVE SMOOTH", "433 -360 LINE", "406 -337 OFFCURVE", "378 -297 OFFCURVE", "350 -241 CURVE SMOOTH", "289 -120 OFFCURVE", "259 16 OFFCURVE", "259 167 CURVE SMOOTH" ); } ); width = 458; } ); unicode = 0028; }, { glyphname = parenright; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "238 47 OFFCURVE", "217 -66 OFFCURVE", "175 -173 CURVE SMOOTH", "142 -256 OFFCURVE", "99 -321 OFFCURVE", "44 -369 CURVE", "58 -386 LINE", "161 -305 OFFCURVE", "234 -199 OFFCURVE", "276 -68 CURVE SMOOTH", "300 6 OFFCURVE", "312 84 OFFCURVE", "312 166 CURVE SMOOTH", "312 341 OFFCURVE", "263 490 OFFCURVE", "165 611 CURVE SMOOTH", "133 650 OFFCURVE", "97 686 OFFCURVE", "58 717 CURVE", "44 696 LINE", "114 640 OFFCURVE", "167 550 OFFCURVE", "202 426 CURVE SMOOTH", "226 342 OFFCURVE", "238 255 OFFCURVE", "238 166 CURVE SMOOTH" ); } ); width = 458; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "200 317 OFFCURVE", "170 453 OFFCURVE", "109 574 CURVE SMOOTH", "81 630 OFFCURVE", "53 670 OFFCURVE", "26 693 CURVE", "38 720 LINE SMOOTH", "93 691 OFFCURVE", "143 646 OFFCURVE", "190 586 CURVE SMOOTH", "281 469 OFFCURVE", "326 330 OFFCURVE", "326 167 CURVE SMOOTH", "326 3 OFFCURVE", "281 -136 OFFCURVE", "190 -253 CURVE SMOOTH", "143 -313 OFFCURVE", "93 -358 OFFCURVE", "38 -387 CURVE SMOOTH", "26 -360 LINE", "53 -337 OFFCURVE", "81 -297 OFFCURVE", "109 -241 CURVE SMOOTH", "170 -120 OFFCURVE", "200 16 OFFCURVE", "200 167 CURVE SMOOTH" ); } ); width = 458; } ); unicode = 0029; }, { glyphname = period; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "125 221 OFFCURVE", "134 222 OFFCURVE", "148 212 CURVE SMOOTH", "236 151 LINE SMOOTH", "246 144 OFFCURVE", "247 131 OFFCURVE", "239 111 CURVE SMOOTH", "200 18 LINE SMOOTH", "193 1 OFFCURVE", "180 -1 OFFCURVE", "162 13 CURVE SMOOTH", "87 70 LINE SMOOTH", "74 80 OFFCURVE", "70 90 OFFCURVE", "75 101 CURVE SMOOTH", "120 208 LINE SMOOTH" ); } ); width = 317; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "110 223 OFFCURVE", "116 229 OFFCURVE", "125 232 CURVE SMOOTH", "134 235 OFFCURVE", "145 233 OFFCURVE", "157 224 CURVE SMOOTH", "244 163 LINE SMOOTH", "260 151 OFFCURVE", "263 132 OFFCURVE", "252 105 CURVE", "213 12 LINE SMOOTH", "208 1 OFFCURVE", "200 -6 OFFCURVE", "190 -10 CURVE SMOOTH", "180 -14 OFFCURVE", "168 -10 OFFCURVE", "153 1 CURVE SMOOTH", "78 58 LINE SMOOTH", "60 72 OFFCURVE", "55 89 OFFCURVE", "62 107 CURVE SMOOTH", "106 214 LINE SMOOTH" ); } ); width = 317; } ); unicode = 002E; }, { glyphname = slash; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "309 702 OFFCURVE", "312 699 OFFCURVE", "314 693 CURVE", "71 -164 LINE SMOOTH", "70 -168 OFFCURVE", "66 -172 OFFCURVE", "58 -178 CURVE SMOOTH", "51 -183 OFFCURVE", "43 -186 OFFCURVE", "33 -186 CURVE SMOOTH", "29 -186 OFFCURVE", "25 -185 OFFCURVE", "22 -184 CURVE SMOOTH", "19 -183 OFFCURVE", "17 -182 OFFCURVE", "16 -181 CURVE SMOOTH", "15 -179 LINE", "263 688 LINE SMOOTH", "263 689 OFFCURVE", "265 691 OFFCURVE", "268 693 CURVE SMOOTH", "271 695 OFFCURVE", "276 697 OFFCURVE", "282 699 CURVE SMOOTH", "288 701 OFFCURVE", "295 702 OFFCURVE", "302 702 CURVE SMOOTH" ); } ); width = 344; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "325 711 OFFCURVE", "332 709 OFFCURVE", "333 704 CURVE", "81 -182 LINE", "80 -187 OFFCURVE", "74 -192 OFFCURVE", "66 -196 CURVE SMOOTH", "58 -200 OFFCURVE", "47 -203 OFFCURVE", "32 -203 CURVE SMOOTH", "28 -203 OFFCURVE", "24 -202 OFFCURVE", "21 -201 CURVE SMOOTH", "18 -200 OFFCURVE", "16 -199 OFFCURVE", "15 -198 CURVE SMOOTH", "14 -196 LINE", "267 690 LINE", "270 695 OFFCURVE", "275 700 OFFCURVE", "283 705 CURVE SMOOTH", "291 710 OFFCURVE", "301 711 OFFCURVE", "314 711 CURVE SMOOTH" ); } ); width = 344; } ); unicode = 002F; }, { glyphname = bracketleft; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "314 716 LINE", "317 710 LINE SMOOTH", "317 709 OFFCURVE", "317 708 OFFCURVE", "317 707 CURVE SMOOTH", "317 700 OFFCURVE", "315 695 OFFCURVE", "309 692 CURVE SMOOTH", "308 692 OFFCURVE", "308 691 OFFCURVE", "308 691 CURVE SMOOTH", "283 683 OFFCURVE", "244 676 OFFCURVE", "193 669 CURVE", "193 -339 LINE", "259 -349 LINE", "280 -353 OFFCURVE", "297 -357 OFFCURVE", "308 -361 CURVE", "315 -365 OFFCURVE", "317 -370 OFFCURVE", "317 -377 CURVE SMOOTH", "317 -379 OFFCURVE", "317 -381 OFFCURVE", "316 -382 CURVE SMOOTH", "315 -385 LINE SMOOTH", "314 -386 LINE", "227 -381 LINE", "206 -380 OFFCURVE", "185 -380 OFFCURVE", "165 -380 CURVE", "154 -379 OFFCURVE", "148 -371 OFFCURVE", "146 -357 CURVE", "146 688 LINE SMOOTH", "146 698 OFFCURVE", "150 704 OFFCURVE", "156 708 CURVE SMOOTH", "159 710 OFFCURVE", "161 710 OFFCURVE", "165 710 CURVE SMOOTH" ); } ); width = 361; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "206 713 OFFCURVE", "273 719 OFFCURVE", "326 729 CURVE", "329 729 OFFCURVE", "331 727 OFFCURVE", "332 723 CURVE SMOOTH", "332 722 OFFCURVE", "332 721 OFFCURVE", "332 720 CURVE SMOOTH", "332 715 OFFCURVE", "329 707 OFFCURVE", "323 695 CURVE SMOOTH", "323 694 OFFCURVE", "322 694 OFFCURVE", "322 694 CURVE SMOOTH", "309 687 OFFCURVE", "280 680 OFFCURVE", "232 672 CURVE SMOOTH", "223 670 OFFCURVE", "216 669 OFFCURVE", "212 668 CURVE", "212 -338 LINE", "217 -339 OFFCURVE", "225 -341 OFFCURVE", "238 -343 CURVE SMOOTH", "277 -350 OFFCURVE", "305 -356 OFFCURVE", "322 -364 CURVE SMOOTH", "326 -366 OFFCURVE", "329 -371 OFFCURVE", "331 -379 CURVE SMOOTH", "332 -383 OFFCURVE", "332 -387 OFFCURVE", "332 -390 CURVE SMOOTH", "332 -395 OFFCURVE", "330 -397 OFFCURVE", "326 -398 CURVE", "272 -388 OFFCURVE", "205 -383 OFFCURVE", "126 -383 CURVE", "116 -382 OFFCURVE", "110 -376 OFFCURVE", "108 -365 CURVE SMOOTH", "108 -363 OFFCURVE", "107 -362 OFFCURVE", "107 -360 CURVE SMOOTH", "107 690 LINE SMOOTH", "107 700 OFFCURVE", "113 708 OFFCURVE", "122 712 CURVE SMOOTH", "124 713 OFFCURVE", "125 713 OFFCURVE", "126 713 CURVE SMOOTH" ); } ); width = 361; } ); unicode = 005B; }, { glyphname = backslash; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "36 702 OFFCURVE", "32 699 OFFCURVE", "30 693 CURVE", "274 -164 LINE SMOOTH", "275 -168 OFFCURVE", "279 -172 OFFCURVE", "287 -178 CURVE SMOOTH", "294 -183 OFFCURVE", "302 -186 OFFCURVE", "312 -186 CURVE SMOOTH", "316 -186 OFFCURVE", "320 -185 OFFCURVE", "323 -184 CURVE SMOOTH", "326 -183 OFFCURVE", "327 -182 OFFCURVE", "328 -181 CURVE SMOOTH", "330 -179 LINE", "82 688 LINE SMOOTH", "82 689 OFFCURVE", "80 691 OFFCURVE", "77 693 CURVE SMOOTH", "74 695 OFFCURVE", "69 697 OFFCURVE", "63 699 CURVE SMOOTH", "57 701 OFFCURVE", "50 702 OFFCURVE", "43 702 CURVE SMOOTH" ); } ); width = 344; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "19 711 OFFCURVE", "13 709 OFFCURVE", "12 704 CURVE", "264 -182 LINE", "265 -187 OFFCURVE", "270 -192 OFFCURVE", "278 -196 CURVE SMOOTH", "286 -200 OFFCURVE", "298 -203 OFFCURVE", "313 -203 CURVE SMOOTH", "317 -203 OFFCURVE", "321 -202 OFFCURVE", "324 -201 CURVE SMOOTH", "327 -200 OFFCURVE", "328 -199 OFFCURVE", "329 -198 CURVE SMOOTH", "331 -196 LINE", "78 690 LINE", "75 695 OFFCURVE", "70 700 OFFCURVE", "62 705 CURVE SMOOTH", "54 710 OFFCURVE", "43 711 OFFCURVE", "30 711 CURVE SMOOTH" ); } ); width = 344; } ); unicode = 005C; }, { glyphname = bracketright; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "47 716 LINE", "44 710 LINE SMOOTH", "44 709 OFFCURVE", "44 708 OFFCURVE", "44 707 CURVE SMOOTH", "44 700 OFFCURVE", "46 695 OFFCURVE", "52 692 CURVE SMOOTH", "53 692 OFFCURVE", "54 691 OFFCURVE", "54 691 CURVE SMOOTH", "79 683 OFFCURVE", "117 676 OFFCURVE", "168 669 CURVE", "168 -339 LINE", "103 -349 LINE", "82 -353 OFFCURVE", "65 -357 OFFCURVE", "54 -361 CURVE", "47 -365 OFFCURVE", "44 -370 OFFCURVE", "44 -377 CURVE SMOOTH", "44 -379 OFFCURVE", "44 -381 OFFCURVE", "45 -382 CURVE SMOOTH", "46 -385 LINE SMOOTH", "47 -386 LINE", "135 -381 LINE", "156 -380 OFFCURVE", "176 -380 OFFCURVE", "196 -380 CURVE", "207 -379 OFFCURVE", "213 -371 OFFCURVE", "215 -357 CURVE", "215 688 LINE SMOOTH", "215 698 OFFCURVE", "212 704 OFFCURVE", "206 708 CURVE SMOOTH", "203 710 OFFCURVE", "200 710 OFFCURVE", "196 710 CURVE SMOOTH" ); } ); width = 361; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "155 713 OFFCURVE", "88 719 OFFCURVE", "35 729 CURVE", "32 729 OFFCURVE", "31 727 OFFCURVE", "30 723 CURVE SMOOTH", "30 722 OFFCURVE", "29 721 OFFCURVE", "29 720 CURVE SMOOTH", "29 715 OFFCURVE", "32 707 OFFCURVE", "38 695 CURVE SMOOTH", "38 694 OFFCURVE", "39 694 OFFCURVE", "39 694 CURVE SMOOTH", "52 687 OFFCURVE", "81 680 OFFCURVE", "129 672 CURVE SMOOTH", "138 670 OFFCURVE", "145 669 OFFCURVE", "149 668 CURVE", "149 -338 LINE", "144 -339 OFFCURVE", "136 -341 OFFCURVE", "123 -343 CURVE SMOOTH", "84 -350 OFFCURVE", "56 -356 OFFCURVE", "39 -364 CURVE SMOOTH", "35 -366 OFFCURVE", "33 -371 OFFCURVE", "31 -379 CURVE SMOOTH", "30 -383 OFFCURVE", "29 -387 OFFCURVE", "29 -390 CURVE SMOOTH", "29 -395 OFFCURVE", "31 -397 OFFCURVE", "35 -398 CURVE", "89 -388 OFFCURVE", "156 -383 OFFCURVE", "235 -383 CURVE", "245 -382 OFFCURVE", "251 -376 OFFCURVE", "253 -365 CURVE SMOOTH", "253 -363 OFFCURVE", "254 -362 OFFCURVE", "254 -360 CURVE SMOOTH", "254 690 LINE SMOOTH", "254 700 OFFCURVE", "249 708 OFFCURVE", "240 712 CURVE SMOOTH", "238 713 OFFCURVE", "236 713 OFFCURVE", "235 713 CURVE SMOOTH" ); } ); width = 361; } ); unicode = 005D; }, { glyphname = braceleft; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "187 -273 OFFCURVE", "209 -321 OFFCURVE", "254 -371 CURVE SMOOTH", "260 -379 OFFCURVE", "259 -387 OFFCURVE", "252 -394 CURVE SMOOTH", "245 -401 OFFCURVE", "237 -402 OFFCURVE", "229 -395 CURVE SMOOTH", "177 -351 OFFCURVE", "150 -286 OFFCURVE", "149 -201 CURVE SMOOTH", "148 -163 OFFCURVE", "157 -117 OFFCURVE", "177 -66 CURVE SMOOTH", "195 -17 OFFCURVE", "206 18 OFFCURVE", "209 38 CURVE SMOOTH", "215 83 OFFCURVE", "193 119 OFFCURVE", "142 150 CURVE", "142 182 LINE", "193 213 OFFCURVE", "215 249 OFFCURVE", "209 294 CURVE SMOOTH", "206 315 OFFCURVE", "195 349 OFFCURVE", "177 398 CURVE SMOOTH", "158 450 OFFCURVE", "149 495 OFFCURVE", "149 533 CURVE SMOOTH", "151 618 OFFCURVE", "177 682 OFFCURVE", "229 726 CURVE SMOOTH", "237 733 OFFCURVE", "245 733 OFFCURVE", "252 726 CURVE SMOOTH", "259 718 OFFCURVE", "259 710 OFFCURVE", "253 702 CURVE SMOOTH", "208 652 OFFCURVE", "187 603 OFFCURVE", "190 556 CURVE SMOOTH", "192 530 OFFCURVE", "202 502 OFFCURVE", "221 470 CURVE SMOOTH", "254 415 OFFCURVE", "265 357 OFFCURVE", "256 296 CURVE", "247 237 OFFCURVE", "222 194 OFFCURVE", "182 166 CURVE", "222 137 OFFCURVE", "247 94 OFFCURVE", "256 36 CURVE", "265 -26 OFFCURVE", "254 -83 OFFCURVE", "221 -138 CURVE SMOOTH", "202 -170 OFFCURVE", "192 -199 OFFCURVE", "190 -225 CURVE SMOOTH" ); } ); width = 397; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "184 121 OFFCURVE", "208 84 OFFCURVE", "199 39 CURVE SMOOTH", "196 22 OFFCURVE", "185 -12 OFFCURVE", "166 -62 CURVE SMOOTH", "149 -107 OFFCURVE", "141 -154 OFFCURVE", "142 -201 CURVE SMOOTH", "144 -290 OFFCURVE", "171 -356 OFFCURVE", "226 -399 CURVE SMOOTH", "241 -411 OFFCURVE", "253 -412 OFFCURVE", "261 -402 CURVE SMOOTH", "270 -390 OFFCURVE", "270 -378 OFFCURVE", "258 -366 CURVE SMOOTH", "215 -321 OFFCURVE", "195 -274 OFFCURVE", "197 -225 CURVE SMOOTH", "198 -208 OFFCURVE", "209 -182 OFFCURVE", "231 -145 CURVE SMOOTH", "266 -88 OFFCURVE", "278 -27 OFFCURVE", "266 38 CURVE SMOOTH", "256 97 OFFCURVE", "227 140 OFFCURVE", "182 166 CURVE", "227 192 OFFCURVE", "256 235 OFFCURVE", "266 294 CURVE SMOOTH", "278 359 OFFCURVE", "266 420 OFFCURVE", "231 477 CURVE SMOOTH", "209 514 OFFCURVE", "198 540 OFFCURVE", "197 557 CURVE SMOOTH", "195 606 OFFCURVE", "215 653 OFFCURVE", "258 698 CURVE SMOOTH", "270 710 OFFCURVE", "270 722 OFFCURVE", "261 734 CURVE SMOOTH", "253 744 OFFCURVE", "241 743 OFFCURVE", "226 731 CURVE SMOOTH", "171 688 OFFCURVE", "144 622 OFFCURVE", "142 533 CURVE SMOOTH", "141 486 OFFCURVE", "149 439 OFFCURVE", "166 394 CURVE SMOOTH", "185 344 OFFCURVE", "196 310 OFFCURVE", "199 293 CURVE SMOOTH", "208 248 OFFCURVE", "184 211 OFFCURVE", "129 179 CURVE", "129 153 LINE" ); } ); width = 397; } ); unicode = 007B; }, { glyphname = bar; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "125 -375 OFFCURVE", "111 -380 OFFCURVE", "84 -385 CURVE SMOOTH", "82 -385 OFFCURVE", "82 -385 OFFCURVE", "81 -385 CURVE SMOOTH", "78 -385 OFFCURVE", "75 -384 OFFCURVE", "75 -382 CURVE SMOOTH", "75 -382 OFFCURVE", "75 -381 OFFCURVE", "75 -380 CURVE SMOOTH", "75 -379 OFFCURVE", "76 -377 OFFCURVE", "76 -377 CURVE SMOOTH", "76 700 LINE", "77 706 LINE", "78 707 OFFCURVE", "80 707 OFFCURVE", "81 708 CURVE SMOOTH", "96 713 OFFCURVE", "108 715 OFFCURVE", "117 715 CURVE", "123 715 OFFCURVE", "125 713 OFFCURVE", "125 709 CURVE", "125 -369 LINE SMOOTH" ); } ); width = 200; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "125 -374 OFFCURVE", "110 -378 OFFCURVE", "81 -384 CURVE SMOOTH", "79 -384 OFFCURVE", "79 -384 OFFCURVE", "78 -384 CURVE SMOOTH", "75 -384 OFFCURVE", "72 -383 OFFCURVE", "72 -381 CURVE SMOOTH", "72 -381 OFFCURVE", "73 -380 OFFCURVE", "73 -379 CURVE SMOOTH", "73 -378 OFFCURVE", "73 -376 OFFCURVE", "73 -376 CURVE SMOOTH", "73 705 LINE", "74 710 LINE", "75 711 OFFCURVE", "77 712 OFFCURVE", "78 713 CURVE SMOOTH", "89 716 OFFCURVE", "102 718 OFFCURVE", "116 718 CURVE", "122 718 OFFCURVE", "124 716 OFFCURVE", "124 712 CURVE", "125 -370 LINE SMOOTH" ); } ); width = 197; } ); unicode = 007C; }, { glyphname = braceright; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "211 -273 OFFCURVE", "189 -321 OFFCURVE", "144 -371 CURVE SMOOTH", "138 -379 OFFCURVE", "138 -387 OFFCURVE", "145 -394 CURVE SMOOTH", "152 -401 OFFCURVE", "160 -402 OFFCURVE", "168 -395 CURVE SMOOTH", "220 -351 OFFCURVE", "248 -286 OFFCURVE", "249 -201 CURVE SMOOTH", "250 -163 OFFCURVE", "240 -117 OFFCURVE", "220 -66 CURVE SMOOTH", "202 -17 OFFCURVE", "191 18 OFFCURVE", "188 38 CURVE SMOOTH", "182 83 OFFCURVE", "205 119 OFFCURVE", "256 150 CURVE", "256 182 LINE", "205 213 OFFCURVE", "182 249 OFFCURVE", "188 294 CURVE SMOOTH", "191 315 OFFCURVE", "202 349 OFFCURVE", "220 398 CURVE SMOOTH", "239 450 OFFCURVE", "249 495 OFFCURVE", "249 533 CURVE SMOOTH", "247 618 OFFCURVE", "220 682 OFFCURVE", "168 726 CURVE SMOOTH", "160 733 OFFCURVE", "152 733 OFFCURVE", "145 726 CURVE SMOOTH", "138 718 OFFCURVE", "138 710 OFFCURVE", "144 702 CURVE SMOOTH", "189 652 OFFCURVE", "211 603 OFFCURVE", "208 556 CURVE SMOOTH", "206 530 OFFCURVE", "195 502 OFFCURVE", "176 470 CURVE SMOOTH", "143 415 OFFCURVE", "133 357 OFFCURVE", "142 296 CURVE", "151 237 OFFCURVE", "176 194 OFFCURVE", "216 166 CURVE", "176 137 OFFCURVE", "151 94 OFFCURVE", "142 36 CURVE", "133 -26 OFFCURVE", "143 -83 OFFCURVE", "176 -138 CURVE SMOOTH", "195 -170 OFFCURVE", "206 -199 OFFCURVE", "208 -225 CURVE SMOOTH" ); } ); width = 397; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "211 121 OFFCURVE", "187 84 OFFCURVE", "196 39 CURVE SMOOTH", "199 22 OFFCURVE", "210 -12 OFFCURVE", "229 -62 CURVE SMOOTH", "246 -107 OFFCURVE", "254 -154 OFFCURVE", "253 -201 CURVE SMOOTH", "251 -290 OFFCURVE", "224 -356 OFFCURVE", "169 -399 CURVE SMOOTH", "154 -411 OFFCURVE", "142 -412 OFFCURVE", "134 -402 CURVE SMOOTH", "125 -390 OFFCURVE", "125 -378 OFFCURVE", "137 -366 CURVE SMOOTH", "180 -321 OFFCURVE", "200 -274 OFFCURVE", "198 -225 CURVE SMOOTH", "197 -208 OFFCURVE", "186 -182 OFFCURVE", "164 -145 CURVE SMOOTH", "129 -88 OFFCURVE", "117 -27 OFFCURVE", "129 38 CURVE SMOOTH", "139 97 OFFCURVE", "168 140 OFFCURVE", "213 166 CURVE", "168 192 OFFCURVE", "139 235 OFFCURVE", "129 294 CURVE SMOOTH", "117 359 OFFCURVE", "129 420 OFFCURVE", "164 477 CURVE SMOOTH", "186 514 OFFCURVE", "197 540 OFFCURVE", "198 557 CURVE SMOOTH", "200 606 OFFCURVE", "180 653 OFFCURVE", "137 698 CURVE SMOOTH", "125 710 OFFCURVE", "125 722 OFFCURVE", "134 734 CURVE SMOOTH", "142 744 OFFCURVE", "154 743 OFFCURVE", "169 731 CURVE SMOOTH", "224 688 OFFCURVE", "251 622 OFFCURVE", "253 533 CURVE SMOOTH", "254 486 OFFCURVE", "246 439 OFFCURVE", "229 394 CURVE SMOOTH", "210 344 OFFCURVE", "199 310 OFFCURVE", "196 293 CURVE SMOOTH", "187 248 OFFCURVE", "211 211 OFFCURVE", "266 179 CURVE", "266 153 LINE" ); } ); width = 397; } ); unicode = 007D; }, { glyphname = nbspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = 00A0; }, { glyphname = brokenbar; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "124 246 OFFCURVE", "116 242 OFFCURVE", "103 239 CURVE SMOOTH", "90 236 OFFCURVE", "82 234 OFFCURVE", "78 234 CURVE SMOOTH", "76 234 OFFCURVE", "75 235 OFFCURVE", "74 235 CURVE SMOOTH", "73 235 OFFCURVE", "73 237 OFFCURVE", "73 237 CURVE SMOOTH", "73 237 OFFCURVE", "73 239 OFFCURVE", "73 240 CURVE SMOOTH", "73 241 OFFCURVE", "73 242 OFFCURVE", "73 242 CURVE SMOOTH", "73 705 LINE", "72 709 OFFCURVE", "74 712 OFFCURVE", "78 713 CURVE SMOOTH", "89 716 OFFCURVE", "102 718 OFFCURVE", "116 718 CURVE SMOOTH", "119 718 OFFCURVE", "121 717 OFFCURVE", "122 716 CURVE SMOOTH", "123 715 OFFCURVE", "124 714 OFFCURVE", "124 713 CURVE SMOOTH", "124 712 LINE", "124 249 LINE" ); }, { closed = 1; nodes = ( "73 102 LINE", "72 106 OFFCURVE", "74 108 OFFCURVE", "78 109 CURVE SMOOTH", "89 112 OFFCURVE", "102 114 OFFCURVE", "116 114 CURVE SMOOTH", "119 114 OFFCURVE", "121 114 OFFCURVE", "122 113 CURVE SMOOTH", "123 112 OFFCURVE", "124 111 OFFCURVE", "124 110 CURVE SMOOTH", "124 108 LINE", "124 -369 LINE", "124 -372 OFFCURVE", "116 -376 OFFCURVE", "103 -379 CURVE SMOOTH", "90 -382 OFFCURVE", "82 -384 OFFCURVE", "78 -384 CURVE SMOOTH", "76 -384 OFFCURVE", "75 -383 OFFCURVE", "74 -383 CURVE SMOOTH", "73 -383 OFFCURVE", "73 -382 OFFCURVE", "73 -382 CURVE SMOOTH", "73 -382 OFFCURVE", "73 -380 OFFCURVE", "73 -379 CURVE SMOOTH", "73 -378 OFFCURVE", "73 -376 OFFCURVE", "73 -376 CURVE SMOOTH" ); } ); width = 200; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "125 236 OFFCURVE", "118 232 OFFCURVE", "104 229 CURVE SMOOTH", "90 226 OFFCURVE", "82 225 OFFCURVE", "78 225 CURVE SMOOTH", "76 225 OFFCURVE", "75 225 OFFCURVE", "74 225 CURVE SMOOTH", "73 225 OFFCURVE", "73 227 OFFCURVE", "73 227 CURVE SMOOTH", "73 227 OFFCURVE", "73 229 OFFCURVE", "73 230 CURVE SMOOTH", "73 231 OFFCURVE", "73 232 OFFCURVE", "73 232 CURVE SMOOTH", "73 705 LINE", "72 709 OFFCURVE", "74 712 OFFCURVE", "78 713 CURVE SMOOTH", "89 716 OFFCURVE", "102 718 OFFCURVE", "117 718 CURVE SMOOTH", "120 718 OFFCURVE", "122 717 OFFCURVE", "123 716 CURVE SMOOTH", "124 715 OFFCURVE", "125 714 OFFCURVE", "125 713 CURVE SMOOTH", "125 712 LINE", "125 239 LINE" ); }, { closed = 1; nodes = ( "73 92 LINE", "72 96 OFFCURVE", "74 99 OFFCURVE", "78 100 CURVE SMOOTH", "89 103 OFFCURVE", "102 104 OFFCURVE", "117 104 CURVE SMOOTH", "120 104 OFFCURVE", "122 104 OFFCURVE", "123 103 CURVE SMOOTH", "124 102 OFFCURVE", "125 101 OFFCURVE", "125 100 CURVE SMOOTH", "125 99 LINE", "125 -369 LINE", "125 -372 OFFCURVE", "118 -376 OFFCURVE", "104 -379 CURVE SMOOTH", "90 -382 OFFCURVE", "82 -384 OFFCURVE", "78 -384 CURVE SMOOTH", "76 -384 OFFCURVE", "75 -383 OFFCURVE", "74 -383 CURVE SMOOTH", "73 -383 OFFCURVE", "73 -382 OFFCURVE", "73 -382 CURVE SMOOTH", "73 -382 OFFCURVE", "73 -380 OFFCURVE", "73 -379 CURVE SMOOTH", "73 -378 OFFCURVE", "73 -376 OFFCURVE", "73 -376 CURVE SMOOTH" ); } ); width = 205; } ); unicode = 00A6; }, { glyphname = guillemotleft; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "97 98 OFFCURVE", "127 38 OFFCURVE", "186 -13 CURVE SMOOTH", "192 -18 OFFCURVE", "192 -22 OFFCURVE", "189 -28 CURVE SMOOTH", "185 -34 OFFCURVE", "180 -36 OFFCURVE", "172 -32 CURVE SMOOTH", "133 -12 OFFCURVE", "104 15 OFFCURVE", "82 51 CURVE SMOOTH", "60 87 OFFCURVE", "49 125 OFFCURVE", "49 166 CURVE SMOOTH", "49 207 OFFCURVE", "60 246 OFFCURVE", "82 281 CURVE SMOOTH", "104 317 OFFCURVE", "134 345 OFFCURVE", "172 364 CURVE SMOOTH", "180 368 OFFCURVE", "186 366 OFFCURVE", "189 360 CURVE SMOOTH", "192 354 OFFCURVE", "192 350 OFFCURVE", "186 345 CURVE SMOOTH", "127 298 OFFCURVE", "97 238 OFFCURVE", "97 166 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "272 98 OFFCURVE", "302 38 OFFCURVE", "361 -13 CURVE SMOOTH", "367 -18 OFFCURVE", "367 -22 OFFCURVE", "364 -28 CURVE SMOOTH", "360 -34 OFFCURVE", "355 -36 OFFCURVE", "347 -32 CURVE SMOOTH", "308 -12 OFFCURVE", "278 15 OFFCURVE", "256 51 CURVE SMOOTH", "234 87 OFFCURVE", "224 125 OFFCURVE", "224 166 CURVE SMOOTH", "224 207 OFFCURVE", "234 246 OFFCURVE", "256 281 CURVE SMOOTH", "278 317 OFFCURVE", "309 345 OFFCURVE", "347 364 CURVE SMOOTH", "355 368 OFFCURVE", "361 366 OFFCURVE", "364 360 CURVE SMOOTH", "367 354 OFFCURVE", "367 350 OFFCURVE", "361 345 CURVE SMOOTH", "302 298 OFFCURVE", "272 238 OFFCURVE", "272 166 CURVE SMOOTH" ); } ); width = 415; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "140 288 OFFCURVE", "112 234 OFFCURVE", "112 168 CURVE SMOOTH", "112 102 OFFCURVE", "140 47 OFFCURVE", "195 -1 CURVE SMOOTH", "206 -10 OFFCURVE", "208 -22 OFFCURVE", "201 -36 CURVE SMOOTH", "194 -50 OFFCURVE", "182 -53 OFFCURVE", "166 -45 CURVE", "125 -24 OFFCURVE", "92 5 OFFCURVE", "69 43 CURVE SMOOTH", "46 81 OFFCURVE", "34 123 OFFCURVE", "34 167 CURVE SMOOTH", "34 211 OFFCURVE", "46 252 OFFCURVE", "70 290 CURVE SMOOTH", "94 328 OFFCURVE", "126 357 OFFCURVE", "166 377 CURVE SMOOTH", "182 385 OFFCURVE", "195 382 OFFCURVE", "202 369 CURVE SMOOTH", "209 356 OFFCURVE", "207 343 OFFCURVE", "195 333 CURVE" ); }, { closed = 1; nodes = ( "315 288 OFFCURVE", "287 234 OFFCURVE", "287 168 CURVE SMOOTH", "287 102 OFFCURVE", "315 47 OFFCURVE", "370 -1 CURVE SMOOTH", "381 -10 OFFCURVE", "383 -22 OFFCURVE", "376 -36 CURVE SMOOTH", "369 -50 OFFCURVE", "357 -53 OFFCURVE", "341 -45 CURVE", "300 -24 OFFCURVE", "267 5 OFFCURVE", "244 43 CURVE SMOOTH", "221 81 OFFCURVE", "209 123 OFFCURVE", "209 167 CURVE SMOOTH", "209 211 OFFCURVE", "221 252 OFFCURVE", "245 290 CURVE SMOOTH", "269 328 OFFCURVE", "301 357 OFFCURVE", "341 377 CURVE SMOOTH", "357 385 OFFCURVE", "369 382 OFFCURVE", "376 369 CURVE SMOOTH", "383 356 OFFCURVE", "382 343 OFFCURVE", "370 333 CURVE" ); } ); width = 415; } ); unicode = 00AB; }, { glyphname = guillemotright; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "318 238 OFFCURVE", "288 298 OFFCURVE", "229 345 CURVE SMOOTH", "223 350 OFFCURVE", "223 354 OFFCURVE", "226 360 CURVE SMOOTH", "229 366 OFFCURVE", "235 368 OFFCURVE", "243 364 CURVE SMOOTH", "281 345 OFFCURVE", "311 317 OFFCURVE", "333 281 CURVE SMOOTH", "355 246 OFFCURVE", "366 207 OFFCURVE", "366 166 CURVE SMOOTH", "366 125 OFFCURVE", "355 87 OFFCURVE", "333 51 CURVE SMOOTH", "311 15 OFFCURVE", "282 -12 OFFCURVE", "243 -32 CURVE SMOOTH", "235 -36 OFFCURVE", "230 -34 OFFCURVE", "226 -28 CURVE SMOOTH", "223 -22 OFFCURVE", "223 -18 OFFCURVE", "229 -13 CURVE SMOOTH", "288 38 OFFCURVE", "318 98 OFFCURVE", "318 166 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "143 238 OFFCURVE", "113 298 OFFCURVE", "54 345 CURVE SMOOTH", "48 350 OFFCURVE", "48 354 OFFCURVE", "51 360 CURVE SMOOTH", "54 366 OFFCURVE", "60 368 OFFCURVE", "68 364 CURVE SMOOTH", "106 345 OFFCURVE", "137 317 OFFCURVE", "159 281 CURVE SMOOTH", "181 246 OFFCURVE", "191 207 OFFCURVE", "191 166 CURVE SMOOTH", "191 125 OFFCURVE", "181 87 OFFCURVE", "159 51 CURVE SMOOTH", "137 15 OFFCURVE", "107 -12 OFFCURVE", "68 -32 CURVE SMOOTH", "60 -36 OFFCURVE", "55 -34 OFFCURVE", "51 -28 CURVE SMOOTH", "48 -22 OFFCURVE", "48 -18 OFFCURVE", "54 -13 CURVE SMOOTH", "113 38 OFFCURVE", "143 98 OFFCURVE", "143 166 CURVE SMOOTH" ); } ); width = 415; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "276 47 OFFCURVE", "303 104 OFFCURVE", "303 169 CURVE SMOOTH", "303 234 OFFCURVE", "275 289 OFFCURVE", "220 333 CURVE SMOOTH", "208 342 OFFCURVE", "206 354 OFFCURVE", "213 368 CURVE SMOOTH", "220 382 OFFCURVE", "232 385 OFFCURVE", "249 377 CURVE", "290 357 OFFCURVE", "321 327 OFFCURVE", "345 289 CURVE SMOOTH", "369 251 OFFCURVE", "381 210 OFFCURVE", "381 166 CURVE SMOOTH", "381 122 OFFCURVE", "368 81 OFFCURVE", "345 43 CURVE SMOOTH", "322 5 OFFCURVE", "290 -24 OFFCURVE", "249 -45 CURVE SMOOTH", "233 -53 OFFCURVE", "222 -50 OFFCURVE", "214 -37 CURVE SMOOTH", "206 -24 OFFCURVE", "208 -11 OFFCURVE", "220 -1 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "101 47 OFFCURVE", "128 104 OFFCURVE", "128 169 CURVE SMOOTH", "128 234 OFFCURVE", "100 289 OFFCURVE", "45 333 CURVE SMOOTH", "33 342 OFFCURVE", "31 354 OFFCURVE", "38 368 CURVE SMOOTH", "45 382 OFFCURVE", "57 385 OFFCURVE", "74 377 CURVE SMOOTH", "115 357 OFFCURVE", "147 327 OFFCURVE", "171 289 CURVE SMOOTH", "195 251 OFFCURVE", "206 210 OFFCURVE", "206 166 CURVE SMOOTH", "206 122 OFFCURVE", "194 81 OFFCURVE", "171 43 CURVE SMOOTH", "148 5 OFFCURVE", "115 -24 OFFCURVE", "74 -45 CURVE SMOOTH", "58 -53 OFFCURVE", "47 -50 OFFCURVE", "39 -37 CURVE SMOOTH", "31 -24 OFFCURVE", "33 -11 OFFCURVE", "45 -1 CURVE SMOOTH" ); } ); width = 415; } ); unicode = 00BB; }, { glyphname = "number-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "936 -47 OFFCURVE", "931 -28 OFFCURVE", "930 -6 CURVE SMOOTH", "929 16 OFFCURVE", "932 35 OFFCURVE", "938 52 CURVE SMOOTH", "961 118 OFFCURVE", "995 155 OFFCURVE", "1040 162 CURVE SMOOTH", "1062 165 OFFCURVE", "1082 158 OFFCURVE", "1099 140 CURVE SMOOTH", "1105 134 OFFCURVE", "1106 129 OFFCURVE", "1105 125 CURVE SMOOTH", "1100 106 OFFCURVE", "1094 91 OFFCURVE", "1087 81 CURVE SMOOTH", "1084 77 OFFCURVE", "1082 77 OFFCURVE", "1078 80 CURVE SMOOTH", "1052 103 OFFCURVE", "1027 106 OFFCURVE", "1001 92 CURVE SMOOTH", "975 78 OFFCURVE", "961 63 OFFCURVE", "957 49 CURVE SMOOTH", "953 35 OFFCURVE", "952 24 OFFCURVE", "954 17 CURVE SMOOTH", "962 -15 OFFCURVE", "975 -36 OFFCURVE", "993 -47 CURVE SMOOTH", "1060 -71 LINE SMOOTH", "1067 -75 OFFCURVE", "1071 -81 OFFCURVE", "1071 -89 CURVE SMOOTH", "1070 -112 OFFCURVE", "1068 -131 OFFCURVE", "1065 -143 CURVE SMOOTH", "1063 -150 OFFCURVE", "1061 -151 OFFCURVE", "1055 -148 CURVE SMOOTH", "1015 -126 OFFCURVE", "989 -115 OFFCURVE", "976 -115 CURVE SMOOTH", "963 -115 OFFCURVE", "947 -119 OFFCURVE", "928 -128 CURVE SMOOTH", "878 -152 OFFCURVE", "757 -164 OFFCURVE", "565 -164 CURVE SMOOTH", "296 -164 OFFCURVE", "142 -156 OFFCURVE", "103 -141 CURVE SMOOTH", "93 -137 OFFCURVE", "81 -129 OFFCURVE", "67 -116 CURVE SMOOTH", "35 -85 LINE SMOOTH", "31 -81 OFFCURVE", "29 -79 OFFCURVE", "29 -76 CURVE SMOOTH", "29 -73 OFFCURVE", "35 -72 OFFCURVE", "46 -74 CURVE SMOOTH", "167 -91 OFFCURVE", "322 -99 OFFCURVE", "513 -99 CURVE SMOOTH", "704 -99 OFFCURVE", "821 -96 OFFCURVE", "865 -89 CURVE SMOOTH", "909 -82 OFFCURVE", "935 -74 OFFCURVE", "946 -66 CURVE" ); } ); width = 1134; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "917 -31 OFFCURVE", "917 10 OFFCURVE", "933 57 CURVE SMOOTH", "942 82 OFFCURVE", "957 107 OFFCURVE", "978 130 CURVE SMOOTH", "999 153 OFFCURVE", "1021 166 OFFCURVE", "1045 170 CURVE SMOOTH", "1070 174 OFFCURVE", "1091 167 OFFCURVE", "1108 149 CURVE SMOOTH", "1114 143 OFFCURVE", "1116 137 OFFCURVE", "1114 132 CURVE SMOOTH", "1104 96 OFFCURVE", "1092 75 OFFCURVE", "1077 68 CURVE SMOOTH", "1075 67 OFFCURVE", "1072 68 OFFCURVE", "1069 71 CURVE SMOOTH", "1038 99 OFFCURVE", "1006 98 OFFCURVE", "973 70 CURVE SMOOTH", "961 60 OFFCURVE", "958 44 OFFCURVE", "963 25 CURVE SMOOTH", "974 -16 OFFCURVE", "998 -41 OFFCURVE", "1035 -51 CURVE SMOOTH", "1050 -55 OFFCURVE", "1061 -59 OFFCURVE", "1069 -63 CURVE SMOOTH", "1077 -67 OFFCURVE", "1080 -73 OFFCURVE", "1080 -81 CURVE SMOOTH", "1079 -109 OFFCURVE", "1075 -130 OFFCURVE", "1069 -145 CURVE SMOOTH", "1064 -158 OFFCURVE", "1056 -163 OFFCURVE", "1046 -157 CURVE SMOOTH", "1006 -135 OFFCURVE", "981 -124 OFFCURVE", "968 -124 CURVE SMOOTH", "955 -124 OFFCURVE", "939 -128 OFFCURVE", "921 -136 CURVE SMOOTH", "870 -160 OFFCURVE", "749 -172 OFFCURVE", "557 -172 CURVE SMOOTH", "288 -172 OFFCURVE", "134 -164 OFFCURVE", "95 -149 CURVE SMOOTH", "85 -145 OFFCURVE", "73 -138 OFFCURVE", "59 -125 CURVE SMOOTH", "26 -94 LINE SMOOTH", "15 -84 OFFCURVE", "12 -75 OFFCURVE", "18 -68 CURVE SMOOTH", "22 -63 OFFCURVE", "33 -61 OFFCURVE", "54 -65 CURVE SMOOTH", "156 -82 OFFCURVE", "312 -90 OFFCURVE", "521 -90 CURVE SMOOTH", "706 -90 OFFCURVE", "827 -86 OFFCURVE", "885 -78 CURVE SMOOTH", "906 -75 OFFCURVE", "922 -71 OFFCURVE", "934 -67 CURVE" ); } ); width = 1134; } ); unicode = 0600; }, { glyphname = "year-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1743 -35 OFFCURVE", "1753 -42 OFFCURVE", "1753 -57 CURVE SMOOTH", "1753 -65 OFFCURVE", "1751 -78 OFFCURVE", "1746 -94 CURVE SMOOTH", "1741 -110 OFFCURVE", "1733 -124 OFFCURVE", "1722 -136 CURVE SMOOTH", "1711 -148 OFFCURVE", "1691 -169 OFFCURVE", "1661 -201 CURVE SMOOTH", "1631 -233 OFFCURVE", "1607 -263 OFFCURVE", "1587 -291 CURVE SMOOTH", "1580 -300 OFFCURVE", "1576 -303 OFFCURVE", "1573 -300 CURVE SMOOTH", "1570 -297 OFFCURVE", "1571 -292 OFFCURVE", "1575 -284 CURVE", "1600 -243 OFFCURVE", "1623 -210 OFFCURVE", "1646 -185 CURVE SMOOTH", "1669 -160 OFFCURVE", "1691 -137 OFFCURVE", "1714 -116 CURVE", "1710 -106 OFFCURVE", "1702 -101 OFFCURVE", "1689 -101 CURVE SMOOTH", "1676 -101 OFFCURVE", "1660 -105 OFFCURVE", "1640 -113 CURVE SMOOTH", "1521 -162 OFFCURVE", "1426 -198 OFFCURVE", "1353 -221 CURVE SMOOTH", "1201 -270 OFFCURVE", "1049 -293 OFFCURVE", "899 -293 CURVE SMOOTH", "797 -293 OFFCURVE", "717 -284 OFFCURVE", "655 -265 CURVE SMOOTH", "593 -246 OFFCURVE", "539 -216 OFFCURVE", "493 -178 CURVE", "488 -174 OFFCURVE", "484 -175 OFFCURVE", "480 -181 CURVE SMOOTH", "462 -212 OFFCURVE", "440 -234 OFFCURVE", "417 -247 CURVE SMOOTH", "402 -255 OFFCURVE", "389 -260 OFFCURVE", "375 -260 CURVE SMOOTH", "350 -260 OFFCURVE", "325 -246 OFFCURVE", "301 -220 CURVE SMOOTH", "297 -216 OFFCURVE", "289 -207 OFFCURVE", "278 -193 CURVE SMOOTH", "267 -179 OFFCURVE", "255 -171 OFFCURVE", "243 -171 CURVE SMOOTH", "231 -171 OFFCURVE", "216 -181 OFFCURVE", "202 -200 CURVE SMOOTH", "188 -219 OFFCURVE", "179 -234 OFFCURVE", "175 -243 CURVE SMOOTH", "171 -252 OFFCURVE", "165 -267 OFFCURVE", "157 -289 CURVE SMOOTH", "149 -311 OFFCURVE", "142 -328 OFFCURVE", "133 -339 CURVE SMOOTH", "124 -350 OFFCURVE", "114 -356 OFFCURVE", "102 -356 CURVE", "78 -356 OFFCURVE", "59 -341 OFFCURVE", "47 -311 CURVE SMOOTH", "35 -281 OFFCURVE", "29 -226 OFFCURVE", "29 -146 CURVE SMOOTH", "29 -139 OFFCURVE", "32 -135 OFFCURVE", "36 -134 CURVE SMOOTH", "40 -133 OFFCURVE", "43 -134 OFFCURVE", "44 -139 CURVE SMOOTH", "45 -144 OFFCURVE", "47 -161 OFFCURVE", "47 -191 CURVE SMOOTH", "48 -259 OFFCURVE", "64 -295 OFFCURVE", "97 -300 CURVE", "99 -300 LINE SMOOTH", "112 -300 OFFCURVE", "125 -286 OFFCURVE", "139 -257 CURVE SMOOTH", "143 -250 OFFCURVE", "148 -239 OFFCURVE", "154 -225 CURVE SMOOTH", "188 -143 OFFCURVE", "223 -102 OFFCURVE", "260 -102 CURVE SMOOTH", "272 -102 OFFCURVE", "287 -113 OFFCURVE", "305 -134 CURVE SMOOTH", "323 -155 OFFCURVE", "337 -169 OFFCURVE", "349 -177 CURVE SMOOTH", "361 -185 OFFCURVE", "374 -188 OFFCURVE", "389 -188 CURVE SMOOTH", "426 -188 OFFCURVE", "459 -164 OFFCURVE", "490 -114 CURVE SMOOTH", "499 -99 OFFCURVE", "508 -91 OFFCURVE", "515 -91 CURVE SMOOTH", "520 -91 OFFCURVE", "526 -97 OFFCURVE", "533 -108 CURVE SMOOTH", "556 -145 OFFCURVE", "602 -173 OFFCURVE", "672 -193 CURVE SMOOTH", "742 -213 OFFCURVE", "835 -222 OFFCURVE", "950 -222 CURVE SMOOTH", "1088 -222 OFFCURVE", "1243 -193 OFFCURVE", "1417 -135 CURVE SMOOTH", "1440 -127 OFFCURVE", "1489 -109 OFFCURVE", "1563 -79 CURVE SMOOTH", "1637 -49 OFFCURVE", "1690 -35 OFFCURVE", "1721 -35 CURVE SMOOTH" ); } ); width = 1782; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "455 -247 OFFCURVE", "418 -274 OFFCURVE", "375 -274 CURVE", "345 -274 OFFCURVE", "317 -259 OFFCURVE", "290 -230 CURVE SMOOTH", "286 -225 OFFCURVE", "279 -216 OFFCURVE", "269 -204 CURVE SMOOTH", "259 -192 OFFCURVE", "251 -186 OFFCURVE", "243 -186 CURVE SMOOTH", "235 -186 OFFCURVE", "224 -196 OFFCURVE", "212 -212 CURVE SMOOTH", "200 -228 OFFCURVE", "192 -240 OFFCURVE", "188 -249 CURVE SMOOTH", "184 -258 OFFCURVE", "179 -274 OFFCURVE", "171 -296 CURVE SMOOTH", "163 -318 OFFCURVE", "153 -337 OFFCURVE", "142 -350 CURVE SMOOTH", "131 -363 OFFCURVE", "119 -370 OFFCURVE", "102 -371 CURVE", "71 -370 OFFCURVE", "48 -353 OFFCURVE", "35 -319 CURVE SMOOTH", "22 -285 OFFCURVE", "15 -228 OFFCURVE", "15 -146 CURVE SMOOTH", "15 -133 OFFCURVE", "20 -125 OFFCURVE", "30 -121 CURVE SMOOTH", "45 -116 OFFCURVE", "55 -121 OFFCURVE", "59 -138 CURVE SMOOTH", "60 -142 OFFCURVE", "62 -160 OFFCURVE", "62 -191 CURVE SMOOTH", "63 -249 OFFCURVE", "75 -281 OFFCURVE", "98 -286 CURVE", "99 -286 LINE SMOOTH", "107 -286 OFFCURVE", "121 -263 OFFCURVE", "140 -219 CURVE", "176 -132 OFFCURVE", "216 -87 OFFCURVE", "260 -87 CURVE", "277 -87 OFFCURVE", "295 -99 OFFCURVE", "313 -121 CURVE SMOOTH", "331 -143 OFFCURVE", "346 -158 OFFCURVE", "356 -164 CURVE SMOOTH", "366 -170 OFFCURVE", "377 -174 OFFCURVE", "389 -174 CURVE SMOOTH", "420 -173 OFFCURVE", "450 -151 OFFCURVE", "478 -106 CURVE SMOOTH", "501 -68 OFFCURVE", "524 -66 OFFCURVE", "545 -100 CURVE SMOOTH", "566 -134 OFFCURVE", "611 -160 OFFCURVE", "679 -179 CURVE SMOOTH", "747 -198 OFFCURVE", "842 -207 OFFCURVE", "967 -207 CURVE SMOOTH", "1092 -207 OFFCURVE", "1241 -178 OFFCURVE", "1413 -121 CURVE SMOOTH", "1436 -113 OFFCURVE", "1485 -95 OFFCURVE", "1560 -65 CURVE SMOOTH", "1635 -35 OFFCURVE", "1685 -20 OFFCURVE", "1713 -20 CURVE SMOOTH", "1749 -20 OFFCURVE", "1768 -32 OFFCURVE", "1768 -57 CURVE SMOOTH", "1768 -67 OFFCURVE", "1765 -81 OFFCURVE", "1759 -99 CURVE SMOOTH", "1753 -117 OFFCURVE", "1745 -132 OFFCURVE", "1733 -145 CURVE SMOOTH", "1721 -158 OFFCURVE", "1701 -180 OFFCURVE", "1672 -211 CURVE SMOOTH", "1643 -242 OFFCURVE", "1622 -266 OFFCURVE", "1611 -282 CURVE SMOOTH", "1600 -298 OFFCURVE", "1592 -309 OFFCURVE", "1587 -313 CURVE SMOOTH", "1582 -317 OFFCURVE", "1577 -318 OFFCURVE", "1572 -316 CURVE SMOOTH", "1555 -309 OFFCURVE", "1551 -296 OFFCURVE", "1562 -276 CURVE", "1587 -234 OFFCURVE", "1611 -201 OFFCURVE", "1632 -178 CURVE SMOOTH", "1653 -155 OFFCURVE", "1674 -135 OFFCURVE", "1693 -116 CURVE", "1682 -115 OFFCURVE", "1666 -119 OFFCURVE", "1646 -127 CURVE SMOOTH", "1527 -176 OFFCURVE", "1430 -212 OFFCURVE", "1357 -235 CURVE SMOOTH", "1203 -284 OFFCURVE", "1050 -308 OFFCURVE", "899 -308 CURVE SMOOTH", "796 -308 OFFCURVE", "714 -298 OFFCURVE", "652 -279 CURVE SMOOTH", "590 -260 OFFCURVE", "535 -231 OFFCURVE", "489 -194 CURVE" ); } ); width = 1782; } ); unicode = 0601; }, { glyphname = "footnotemarker-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "86 -1 OFFCURVE", "75 -14 OFFCURVE", "75 -39 CURVE SMOOTH", "75 -56 OFFCURVE", "86 -70 OFFCURVE", "108 -78 CURVE", "119 -82 OFFCURVE", "139 -85 OFFCURVE", "166 -90 CURVE", "166 -30 OFFCURVE", "147 -1 OFFCURVE", "110 -1 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "76 -130 OFFCURVE", "65 -120 OFFCURVE", "55 -109 CURVE SMOOTH", "45 -98 OFFCURVE", "41 -84 OFFCURVE", "41 -69 CURVE SMOOTH", "41 -34 OFFCURVE", "53 -4 OFFCURVE", "77 24 CURVE SMOOTH", "93 42 OFFCURVE", "109 52 OFFCURVE", "123 52 CURVE SMOOTH", "137 52 OFFCURVE", "151 49 OFFCURVE", "162 42 CURVE SMOOTH", "180 32 OFFCURVE", "189 4 OFFCURVE", "189 -40 CURVE SMOOTH", "189 -56 OFFCURVE", "188 -74 OFFCURVE", "186 -94 CURVE", "227 -100 OFFCURVE", "294 -103 OFFCURVE", "386 -103 CURVE SMOOTH", "518 -102 OFFCURVE", "640 -92 OFFCURVE", "750 -73 CURVE SMOOTH", "765 -70 OFFCURVE", "772 -70 OFFCURVE", "772 -73 CURVE SMOOTH", "772 -75 OFFCURVE", "768 -79 OFFCURVE", "761 -84 CURVE SMOOTH", "719 -113 LINE SMOOTH", "707 -121 OFFCURVE", "693 -127 OFFCURVE", "678 -131 CURVE SMOOTH", "599 -151 OFFCURVE", "489 -162 OFFCURVE", "351 -162 CURVE SMOOTH", "213 -162 OFFCURVE", "125 -153 OFFCURVE", "89 -136 CURVE SMOOTH" ); } ); width = 812; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "147 -40 OFFCURVE", "138 -21 OFFCURVE", "121 -17 CURVE SMOOTH", "104 -13 OFFCURVE", "94 -16 OFFCURVE", "91 -25 CURVE", "86 -43 OFFCURVE", "92 -55 OFFCURVE", "108 -61 CURVE SMOOTH", "120 -65 OFFCURVE", "134 -70 OFFCURVE", "150 -73 CURVE" ); }, { closed = 1; nodes = ( "68 -142 OFFCURVE", "54 -132 OFFCURVE", "43 -118 CURVE SMOOTH", "32 -104 OFFCURVE", "26 -88 OFFCURVE", "26 -69 CURVE SMOOTH", "26 -31 OFFCURVE", "39 3 OFFCURVE", "66 34 CURVE", "98 69 OFFCURVE", "133 76 OFFCURVE", "170 54 CURVE SMOOTH", "193 40 OFFCURVE", "204 9 OFFCURVE", "204 -40 CURVE SMOOTH", "204 -53 OFFCURVE", "203 -66 OFFCURVE", "202 -81 CURVE", "244 -85 OFFCURVE", "317 -87 OFFCURVE", "424 -87 CURVE SMOOTH", "531 -87 OFFCURVE", "638 -78 OFFCURVE", "747 -59 CURVE SMOOTH", "755 -58 OFFCURVE", "762 -57 OFFCURVE", "766 -57 CURVE", "775 -57 LINE", "782 -60 OFFCURVE", "786 -65 OFFCURVE", "786 -73 CURVE SMOOTH", "786 -81 OFFCURVE", "782 -88 OFFCURVE", "773 -94 CURVE SMOOTH", "771 -95 OFFCURVE", "770 -97 OFFCURVE", "769 -97 CURVE SMOOTH", "728 -125 LINE SMOOTH", "714 -134 OFFCURVE", "698 -142 OFFCURVE", "681 -146 CURVE SMOOTH", "600 -166 OFFCURVE", "490 -176 OFFCURVE", "350 -176 CURVE SMOOTH", "210 -176 OFFCURVE", "122 -167 OFFCURVE", "83 -149 CURVE SMOOTH" ); } ); width = 812; } ); unicode = 0602; }, { glyphname = "pagenumber-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "795 -204 OFFCURVE", "791 -199 OFFCURVE", "791 -189 CURVE SMOOTH", "791 -179 OFFCURVE", "796 -162 OFFCURVE", "805 -140 CURVE", "784 -136 OFFCURVE", "763 -127 OFFCURVE", "745 -112 CURVE", "686 -146 OFFCURVE", "572 -163 OFFCURVE", "402 -163 CURVE SMOOTH", "292 -163 OFFCURVE", "195 -151 OFFCURVE", "110 -128 CURVE SMOOTH", "90 -122 OFFCURVE", "75 -115 OFFCURVE", "67 -106 CURVE SMOOTH", "35 -70 LINE SMOOTH", "31 -66 OFFCURVE", "29 -63 OFFCURVE", "29 -60 CURVE SMOOTH", "29 -57 OFFCURVE", "35 -57 OFFCURVE", "46 -59 CURVE SMOOTH", "192 -88 OFFCURVE", "320 -103 OFFCURVE", "429 -103 CURVE SMOOTH", "587 -103 OFFCURVE", "697 -86 OFFCURVE", "762 -54 CURVE SMOOTH", "765 -53 OFFCURVE", "769 -56 OFFCURVE", "776 -64 CURVE SMOOTH", "790 -80 OFFCURVE", "812 -89 OFFCURVE", "840 -92 CURVE", "901 -3 OFFCURVE", "957 42 OFFCURVE", "1011 42 CURVE SMOOTH", "1021 42 OFFCURVE", "1035 37 OFFCURVE", "1053 25 CURVE SMOOTH", "1071 13 OFFCURVE", "1080 -2 OFFCURVE", "1080 -20 CURVE SMOOTH", "1080 -38 OFFCURVE", "1074 -58 OFFCURVE", "1062 -80 CURVE SMOOTH", "1050 -102 OFFCURVE", "1041 -114 OFFCURVE", "1037 -117 CURVE SMOOTH", "1002 -144 OFFCURVE", "954 -157 OFFCURVE", "893 -157 CURVE SMOOTH", "869 -157 OFFCURVE", "847 -154 OFFCURVE", "826 -148 CURVE", "821 -155 OFFCURVE", "816 -171 OFFCURVE", "810 -197 CURVE SMOOTH", "809 -202 OFFCURVE", "807 -204 OFFCURVE", "803 -204 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1018 -36 OFFCURVE", "994 -21 OFFCURVE", "965 -21 CURVE SMOOTH", "936 -21 OFFCURVE", "902 -47 OFFCURVE", "865 -98 CURVE", "875 -100 OFFCURVE", "888 -101 OFFCURVE", "903 -101 CURVE SMOOTH", "918 -101 OFFCURVE", "942 -99 OFFCURVE", "975 -95 CURVE SMOOTH", "1008 -91 OFFCURVE", "1029 -84 OFFCURVE", "1037 -74 CURVE SMOOTH", "1038 -73 OFFCURVE", "1038 -73 OFFCURVE", "1038 -72 CURVE SMOOTH", "1038 -71 OFFCURVE", "1038 -69 OFFCURVE", "1037 -68 CURVE SMOOTH" ); } ); width = 1109; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "15 -44 OFFCURVE", "25 -38 OFFCURVE", "47 -44 CURVE SMOOTH", "48 -44 OFFCURVE", "49 -44 OFFCURVE", "49 -44 CURVE SMOOTH", "194 -73 OFFCURVE", "321 -88 OFFCURVE", "429 -88 CURVE SMOOTH", "584 -88 OFFCURVE", "693 -72 OFFCURVE", "756 -41 CURVE SMOOTH", "766 -36 OFFCURVE", "776 -39 OFFCURVE", "786 -52 CURVE SMOOTH", "796 -65 OFFCURVE", "812 -73 OFFCURVE", "833 -76 CURVE", "895 12 OFFCURVE", "954 56 OFFCURVE", "1011 57 CURVE", "1024 57 OFFCURVE", "1042 50 OFFCURVE", "1063 36 CURVE SMOOTH", "1084 22 OFFCURVE", "1094 4 OFFCURVE", "1094 -18 CURVE SMOOTH", "1094 -40 OFFCURVE", "1088 -64 OFFCURVE", "1075 -87 CURVE SMOOTH", "1062 -110 OFFCURVE", "1052 -124 OFFCURVE", "1046 -129 CURVE SMOOTH", "1008 -158 OFFCURVE", "957 -172 OFFCURVE", "893 -172 CURVE SMOOTH", "872 -172 OFFCURVE", "852 -170 OFFCURVE", "834 -166 CURVE", "831 -175 OFFCURVE", "828 -185 OFFCURVE", "825 -198 CURVE SMOOTH", "822 -211 OFFCURVE", "814 -219 OFFCURVE", "802 -219 CURVE SMOOTH", "790 -219 OFFCURVE", "782 -213 OFFCURVE", "779 -201 CURVE SMOOTH", "776 -189 OFFCURVE", "777 -173 OFFCURVE", "785 -151 CURVE", "770 -146 OFFCURVE", "757 -139 OFFCURVE", "744 -130 CURVE", "680 -162 OFFCURVE", "566 -178 OFFCURVE", "402 -178 CURVE SMOOTH", "291 -178 OFFCURVE", "192 -166 OFFCURVE", "106 -143 CURVE SMOOTH", "83 -137 OFFCURVE", "66 -127 OFFCURVE", "56 -116 CURVE SMOOTH", "24 -80 LINE SMOOTH", "18 -73 OFFCURVE", "15 -66 OFFCURVE", "15 -60 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "986 -20 OFFCURVE", "944 -25 OFFCURVE", "893 -86 CURVE", "912 -86 OFFCURVE", "935 -85 OFFCURVE", "963 -82 CURVE SMOOTH", "991 -79 OFFCURVE", "1011 -74 OFFCURVE", "1020 -69 CURVE" ); } ); width = 1109; } ); unicode = 0603; }, { glyphname = "samvat-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "98 -143 OFFCURVE", "84 -131 OFFCURVE", "67 -116 CURVE SMOOTH", "35 -85 LINE SMOOTH", "31 -82 OFFCURVE", "29 -80 OFFCURVE", "29 -77 CURVE SMOOTH", "29 -74 OFFCURVE", "35 -73 OFFCURVE", "46 -74 CURVE SMOOTH", "207 -89 OFFCURVE", "478 -97 OFFCURVE", "861 -97 CURVE SMOOTH", "1244 -97 OFFCURVE", "1510 -90 OFFCURVE", "1658 -75 CURVE", "1702 -71 OFFCURVE", "1734 -61 OFFCURVE", "1754 -48 CURVE", "1731 -6 OFFCURVE", "1727 35 OFFCURVE", "1741 76 CURVE", "1764 137 OFFCURVE", "1798 168 OFFCURVE", "1845 170 CURVE SMOOTH", "1859 171 OFFCURVE", "1872 160 OFFCURVE", "1884 138 CURVE SMOOTH", "1896 116 OFFCURVE", "1911 105 OFFCURVE", "1931 104 CURVE", "1966 102 OFFCURVE", "2003 132 OFFCURVE", "2040 193 CURVE SMOOTH", "2045 200 OFFCURVE", "2049 202 OFFCURVE", "2053 197 CURVE SMOOTH", "2057 192 OFFCURVE", "2057 184 OFFCURVE", "2052 175 CURVE SMOOTH", "2047 166 OFFCURVE", "2045 160 OFFCURVE", "2045 158 CURVE SMOOTH", "2045 150 OFFCURVE", "2050 144 OFFCURVE", "2058 141 CURVE SMOOTH", "2087 129 OFFCURVE", "2109 125 OFFCURVE", "2125 130 CURVE SMOOTH", "2130 131 OFFCURVE", "2126 141 OFFCURVE", "2112 158 CURVE SMOOTH", "2111 160 OFFCURVE", "2110 161 OFFCURVE", "2111 163 CURVE SMOOTH", "2140 209 LINE SMOOTH", "2141 211 OFFCURVE", "2143 211 OFFCURVE", "2145 209 CURVE SMOOTH", "2162 189 OFFCURVE", "2164 156 OFFCURVE", "2151 111 CURVE SMOOTH", "2144 87 OFFCURVE", "2136 72 OFFCURVE", "2128 63 CURVE SMOOTH", "2120 54 OFFCURVE", "2108 51 OFFCURVE", "2092 53 CURVE", "2057 58 OFFCURVE", "2030 68 OFFCURVE", "2009 82 CURVE SMOOTH", "2007 83 OFFCURVE", "2005 83 OFFCURVE", "2004 81 CURVE SMOOTH", "1977 43 OFFCURVE", "1944 25 OFFCURVE", "1905 29 CURVE SMOOTH", "1884 31 OFFCURVE", "1866 47 OFFCURVE", "1850 77 CURVE SMOOTH", "1845 87 OFFCURVE", "1837 93 OFFCURVE", "1827 95 CURVE", "1800 100 OFFCURVE", "1778 94 OFFCURVE", "1762 76 CURVE", "1762 53 OFFCURVE", "1768 31 OFFCURVE", "1780 12 CURVE SMOOTH", "1792 -7 OFFCURVE", "1805 -20 OFFCURVE", "1819 -28 CURVE", "1824 -31 OFFCURVE", "1835 -35 OFFCURVE", "1853 -40 CURVE SMOOTH", "1871 -45 OFFCURVE", "1885 -50 OFFCURVE", "1894 -55 CURVE SMOOTH", "1903 -60 OFFCURVE", "1907 -67 OFFCURVE", "1907 -76 CURVE SMOOTH", "1906 -104 OFFCURVE", "1904 -127 OFFCURVE", "1900 -143 CURVE SMOOTH", "1898 -151 OFFCURVE", "1894 -153 OFFCURVE", "1887 -149 CURVE SMOOTH", "1838 -122 OFFCURVE", "1806 -108 OFFCURVE", "1790 -108 CURVE SMOOTH", "1774 -108 OFFCURVE", "1753 -113 OFFCURVE", "1727 -126 CURVE SMOOTH", "1701 -139 OFFCURVE", "1643 -150 OFFCURVE", "1556 -158 CURVE SMOOTH", "1469 -166 OFFCURVE", "1252 -170 OFFCURVE", "904 -170 CURVE SMOOTH", "556 -170 OFFCURVE", "291 -163 OFFCURVE", "110 -150 CURVE" ); } ); width = 2183; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "103 -155 OFFCURVE", "89 -143 OFFCURVE", "66 -120 CURVE SMOOTH", "34 -89 LINE SMOOTH", "23 -79 OFFCURVE", "19 -70 OFFCURVE", "25 -63 CURVE SMOOTH", "28 -59 OFFCURVE", "40 -59 OFFCURVE", "62 -61 CURVE SMOOTH", "221 -75 OFFCURVE", "486 -82 OFFCURVE", "857 -82 CURVE SMOOTH", "1301 -82 OFFCURVE", "1568 -75 OFFCURVE", "1659 -60 CURVE SMOOTH", "1660 -60 OFFCURVE", "1661 -60 OFFCURVE", "1662 -60 CURVE SMOOTH", "1701 -57 OFFCURVE", "1730 -50 OFFCURVE", "1748 -40 CURVE", "1729 2 OFFCURVE", "1726 43 OFFCURVE", "1741 83 CURVE", "1767 149 OFFCURVE", "1803 183 OFFCURVE", "1849 185 CURVE SMOOTH", "1868 186 OFFCURVE", "1884 173 OFFCURVE", "1899 146 CURVE SMOOTH", "1909 128 OFFCURVE", "1921 119 OFFCURVE", "1936 119 CURVE SMOOTH", "1972 118 OFFCURVE", "2007 146 OFFCURVE", "2042 203 CURVE SMOOTH", "2046 210 OFFCURVE", "2053 210 OFFCURVE", "2060 205 CURVE SMOOTH", "2067 200 OFFCURVE", "2067 191 OFFCURVE", "2060 177 CURVE SMOOTH", "2057 171 OFFCURVE", "2055 168 OFFCURVE", "2055 166 CURVE SMOOTH", "2055 164 OFFCURVE", "2056 162 OFFCURVE", "2060 160 CURVE SMOOTH", "2082 147 OFFCURVE", "2105 140 OFFCURVE", "2129 139 CURVE", "2124 146 OFFCURVE", "2118 152 OFFCURVE", "2112 157 CURVE SMOOTH", "2106 162 OFFCURVE", "2106 169 OFFCURVE", "2110 176 CURVE SMOOTH", "2135 220 LINE SMOOTH", "2141 231 OFFCURVE", "2148 230 OFFCURVE", "2155 220 CURVE SMOOTH", "2173 193 OFFCURVE", "2176 157 OFFCURVE", "2163 111 CURVE SMOOTH", "2156 86 OFFCURVE", "2147 68 OFFCURVE", "2136 57 CURVE SMOOTH", "2125 46 OFFCURVE", "2112 42 OFFCURVE", "2095 44 CURVE SMOOTH", "2061 49 OFFCURVE", "2033 60 OFFCURVE", "2010 74 CURVE", "1980 37 OFFCURVE", "1946 19 OFFCURVE", "1909 21 CURVE", "1885 24 OFFCURVE", "1863 42 OFFCURVE", "1844 75 CURVE SMOOTH", "1840 82 OFFCURVE", "1836 85 OFFCURVE", "1829 87 CURVE", "1805 91 OFFCURVE", "1787 87 OFFCURVE", "1773 75 CURVE", "1774 57 OFFCURVE", "1780 39 OFFCURVE", "1791 22 CURVE SMOOTH", "1802 5 OFFCURVE", "1814 -8 OFFCURVE", "1826 -15 CURVE SMOOTH", "1831 -18 OFFCURVE", "1841 -21 OFFCURVE", "1859 -26 CURVE SMOOTH", "1877 -31 OFFCURVE", "1892 -35 OFFCURVE", "1905 -42 CURVE SMOOTH", "1918 -49 OFFCURVE", "1924 -59 OFFCURVE", "1924 -73 CURVE SMOOTH", "1922 -113 OFFCURVE", "1918 -139 OFFCURVE", "1913 -150 CURVE SMOOTH", "1908 -161 OFFCURVE", "1899 -163 OFFCURVE", "1887 -156 CURVE SMOOTH", "1839 -130 OFFCURVE", "1808 -117 OFFCURVE", "1794 -117 CURVE SMOOTH", "1780 -117 OFFCURVE", "1759 -123 OFFCURVE", "1732 -136 CURVE SMOOTH", "1705 -149 OFFCURVE", "1646 -159 OFFCURVE", "1556 -167 CURVE SMOOTH", "1466 -175 OFFCURVE", "1240 -177 OFFCURVE", "880 -173 CURVE SMOOTH", "372 -168 OFFCURVE", "114 -163 OFFCURVE", "107 -158 CURVE SMOOTH" ); } ); width = 2183; } ); unicode = 0604; }, { glyphname = "cuberoot-ar"; layers = ( { components = ( { name = radical.rtlm; }, { name = "three-ar.small"; transform = "{1, 0, 0, 1, 188, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 503; }, { components = ( { name = "three-ar.small"; transform = "{1, 0, 0, 1, 188, 403}"; }, { name = radical.rtlm; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); unicode = 0606; }, { glyphname = "fourthroot-ar"; layers = ( { components = ( { name = radical.rtlm; }, { name = "four-ar.small"; transform = "{1, 0, 0, 1, 188, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 503; }, { components = ( { name = "four-ar.small"; transform = "{1, 0, 0, 1, 188, 403}"; }, { name = radical.rtlm; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); unicode = 0607; }, { glyphname = "ray-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "715 91 OFFCURVE", "747 102 OFFCURVE", "765 124 CURVE SMOOTH", "766 125 OFFCURVE", "767 127 OFFCURVE", "766 130 CURVE SMOOTH", "762 149 OFFCURVE", "753 168 OFFCURVE", "739 188 CURVE SMOOTH", "733 196 OFFCURVE", "732 205 OFFCURVE", "736 213 CURVE SMOOTH", "764 275 LINE SMOOTH", "770 288 OFFCURVE", "776 287 OFFCURVE", "783 275 CURVE SMOOTH", "810 225 OFFCURVE", "814 167 OFFCURVE", "797 100 CURVE SMOOTH", "780 33 OFFCURVE", "736 0 OFFCURVE", "665 1 CURVE", "663 -10 OFFCURVE", "657 -29 OFFCURVE", "650 -55 CURVE SMOOTH", "641 -88 OFFCURVE", "630 -113 OFFCURVE", "617 -130 CURVE SMOOTH", "564 -201 OFFCURVE", "486 -242 OFFCURVE", "383 -255 CURVE SMOOTH", "325 -262 OFFCURVE", "275 -253 OFFCURVE", "234 -230 CURVE SMOOTH", "200 -210 OFFCURVE", "178 -183 OFFCURVE", "167 -146 CURVE SMOOTH", "151 -92 OFFCURVE", "157 -33 OFFCURVE", "187 31 CURVE", "147 -5 OFFCURVE", "103 -27 OFFCURVE", "57 -33 CURVE SMOOTH", "48 -34 OFFCURVE", "43 -30 OFFCURVE", "44 -19 CURVE SMOOTH", "46 16 LINE SMOOTH", "47 28 OFFCURVE", "50 34 OFFCURVE", "57 34 CURVE SMOOTH", "120 37 OFFCURVE", "177 64 OFFCURVE", "229 114 CURVE SMOOTH", "238 123 OFFCURVE", "245 126 OFFCURVE", "250 122 CURVE SMOOTH", "256 117 OFFCURVE", "257 112 OFFCURVE", "252 105 CURVE SMOOTH", "194 22 OFFCURVE", "184 -49 OFFCURVE", "222 -107 CURVE SMOOTH", "243 -139 OFFCURVE", "281 -158 OFFCURVE", "339 -165 CURVE SMOOTH", "396 -172 OFFCURVE", "453 -165 OFFCURVE", "510 -142 CURVE SMOOTH", "570 -118 OFFCURVE", "610 -84 OFFCURVE", "629 -42 CURVE SMOOTH", "632 -35 OFFCURVE", "632 -21 OFFCURVE", "626 0 CURVE", "565 2 OFFCURVE", "525 11 OFFCURVE", "504 30 CURVE SMOOTH", "482 50 OFFCURVE", "488 92 OFFCURVE", "521 155 CURVE SMOOTH", "545 200 OFFCURVE", "565 223 OFFCURVE", "583 223 CURVE SMOOTH", "624 223 OFFCURVE", "652 179 OFFCURVE", "667 92 CURVE" ); }, { closed = 1; nodes = ( "590 131 OFFCURVE", "574 146 OFFCURVE", "552 146 CURVE SMOOTH", "538 146 OFFCURVE", "533 139 OFFCURVE", "538 127 CURVE SMOOTH", "545 111 OFFCURVE", "565 102 OFFCURVE", "599 97 CURVE" ); } ); width = 860; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "590 122 OFFCURVE", "580 129 OFFCURVE", "566 129 CURVE SMOOTH", "552 129 OFFCURVE", "547 125 OFFCURVE", "551 116 CURVE SMOOTH", "558 101 OFFCURVE", "571 94 OFFCURVE", "593 96 CURVE SMOOTH", "598 97 OFFCURVE", "600 100 OFFCURVE", "598 104 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "241 137 OFFCURVE", "253 142 OFFCURVE", "260 134 CURVE SMOOTH", "267 126 OFFCURVE", "265 113 OFFCURVE", "254 98 CURVE SMOOTH", "201 22 OFFCURVE", "194 -43 OFFCURVE", "233 -98 CURVE SMOOTH", "253 -126 OFFCURVE", "290 -142 OFFCURVE", "345 -149 CURVE SMOOTH", "400 -156 OFFCURVE", "455 -148 OFFCURVE", "511 -127 CURVE SMOOTH", "567 -106 OFFCURVE", "604 -76 OFFCURVE", "625 -36 CURVE", "626 -31 OFFCURVE", "626 -23 OFFCURVE", "624 -13 CURVE", "565 -11 OFFCURVE", "524 -1 OFFCURVE", "502 20 CURVE SMOOTH", "476 44 OFFCURVE", "482 89 OFFCURVE", "521 156 CURVE SMOOTH", "551 208 OFFCURVE", "576 233 OFFCURVE", "595 231 CURVE SMOOTH", "638 226 OFFCURVE", "667 184 OFFCURVE", "683 105 CURVE", "720 108 OFFCURVE", "757 117 OFFCURVE", "794 131 CURVE", "827 144 OFFCURVE", "836 131 OFFCURVE", "821 91 CURVE SMOOTH", "786 0 LINE SMOOTH", "780 -15 OFFCURVE", "771 -21 OFFCURVE", "761 -19 CURVE SMOOTH", "751 -17 OFFCURVE", "747 -10 OFFCURVE", "750 2 CURVE", "724 -5 OFFCURVE", "699 -10 OFFCURVE", "676 -14 CURVE", "673 -24 OFFCURVE", "668 -42 OFFCURVE", "661 -69 CURVE SMOOTH", "654 -96 OFFCURVE", "643 -118 OFFCURVE", "628 -138 CURVE SMOOTH", "574 -211 OFFCURVE", "494 -254 OFFCURVE", "389 -269 CURVE SMOOTH", "336 -276 OFFCURVE", "289 -268 OFFCURVE", "247 -243 CURVE SMOOTH", "205 -218 OFFCURVE", "179 -186 OFFCURVE", "167 -147 CURVE SMOOTH", "152 -100 OFFCURVE", "156 -48 OFFCURVE", "177 13 CURVE", "141 -16 OFFCURVE", "103 -35 OFFCURVE", "63 -42 CURVE SMOOTH", "42 -46 OFFCURVE", "32 -39 OFFCURVE", "33 -22 CURVE SMOOTH", "37 29 LINE SMOOTH", "38 45 OFFCURVE", "46 54 OFFCURVE", "61 54 CURVE SMOOTH", "129 56 OFFCURVE", "183 78 OFFCURVE", "224 120 CURVE SMOOTH" ); } ); width = 860; } ); unicode = 0608; }, { glyphname = "perthousand-ar"; layers = ( { components = ( { name = dot.percent; transform = "{1, 0, 0, 1, 205, 0}"; }, { name = dot.percent; }, { name = dot.percent; transform = "{1, 0, 0, 1, -425, 489}"; }, { name = slash; transform = "{1, 0, 0, 1, 156, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 866; }, { components = ( { name = dot.percent; transform = "{1, 0, 0, 1, 205, 0}"; }, { name = dot.percent; }, { name = dot.percent; transform = "{1, 0, 0, 1, -425, 489}"; }, { name = slash; transform = "{1, 0, 0, 1, 156, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 866; } ); unicode = 0609; }, { glyphname = "pertenthousand-ar"; layers = ( { components = ( { name = dot.percent; transform = "{1, 0, 0, 1, 410, 0}"; }, { name = dot.percent; transform = "{1, 0, 0, 1, 205, 0}"; }, { name = dot.percent; }, { name = dot.percent; transform = "{1, 0, 0, 1, -425, 489}"; }, { name = slash; transform = "{1, 0, 0, 1, 156, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1071; }, { components = ( { name = dot.percent; transform = "{1, 0, 0, 1, 410, 0}"; }, { name = dot.percent; transform = "{1, 0, 0, 1, 205, 0}"; }, { name = dot.percent; }, { name = dot.percent; transform = "{1, 0, 0, 1, -425, 489}"; }, { name = slash; transform = "{1, 0, 0, 1, 156, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1071; } ); unicode = 060A; }, { glyphname = "afghani-ar"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 117, -1226}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 303, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "349 409 OFFCURVE", "360 404 OFFCURVE", "373 393 CURVE SMOOTH", "433 341 OFFCURVE", "460 274 OFFCURVE", "457 195 CURVE SMOOTH", "455 158 OFFCURVE", "445 125 OFFCURVE", "426 95 CURVE SMOOTH", "377 19 OFFCURVE", "262 -12 OFFCURVE", "79 5 CURVE SMOOTH", "66 6 OFFCURVE", "57 12 OFFCURVE", "55 22 CURVE SMOOTH", "45 70 LINE SMOOTH", "41 90 OFFCURVE", "51 98 OFFCURVE", "74 95 CURVE SMOOTH", "237 77 OFFCURVE", "350 100 OFFCURVE", "413 162 CURVE", "411 182 OFFCURVE", "409 194 OFFCURVE", "404 201 CURVE SMOOTH", "399 208 OFFCURVE", "396 211 OFFCURVE", "393 210 CURVE SMOOTH", "390 209 OFFCURVE", "388 208 OFFCURVE", "387 206 CURVE SMOOTH", "376 177 OFFCURVE", "358 159 OFFCURVE", "335 154 CURVE SMOOTH", "262 138 OFFCURVE", "228 167 OFFCURVE", "234 239 CURVE SMOOTH", "237 274 OFFCURVE", "251 312 OFFCURVE", "274 351 CURVE SMOOTH", "297 390 OFFCURVE", "319 409 OFFCURVE", "340 409 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "316 249 OFFCURVE", "339 253 OFFCURVE", "349 266 CURVE", "334 290 OFFCURVE", "319 302 OFFCURVE", "307 301 CURVE SMOOTH", "290 300 OFFCURVE", "281 285 OFFCURVE", "280 256 CURVE" ); } ); width = 500; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 117, -1226}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 303, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "297 322 OFFCURVE", "288 307 OFFCURVE", "286 277 CURVE", "296 274 OFFCURVE", "308 273 OFFCURVE", "324 275 CURVE SMOOTH", "340 277 OFFCURVE", "350 281 OFFCURVE", "354 287 CURVE", "339 310 OFFCURVE", "325 322 OFFCURVE", "312 322 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "412 212 OFFCURVE", "405 220 OFFCURVE", "396 203 CURVE SMOOTH", "383 181 OFFCURVE", "367 167 OFFCURVE", "347 162 CURVE SMOOTH", "282 146 OFFCURVE", "247 164 OFFCURVE", "243 214 CURVE SMOOTH", "238 272 OFFCURVE", "246 325 OFFCURVE", "268 373 CURVE SMOOTH", "290 421 OFFCURVE", "313 445 OFFCURVE", "337 445 CURVE SMOOTH", "357 445 OFFCURVE", "374 438 OFFCURVE", "387 425 CURVE SMOOTH", "440 371 OFFCURVE", "467 298 OFFCURVE", "467 206 CURVE SMOOTH", "467 156 OFFCURVE", "457 116 OFFCURVE", "438 87 CURVE SMOOTH", "383 4 OFFCURVE", "263 -28 OFFCURVE", "77 -10 CURVE SMOOTH", "56 -8 OFFCURVE", "45 2 OFFCURVE", "41 20 CURVE SMOOTH", "31 67 LINE SMOOTH", "28 80 OFFCURVE", "31 92 OFFCURVE", "38 100 CURVE SMOOTH", "45 108 OFFCURVE", "58 112 OFFCURVE", "76 110 CURVE SMOOTH", "232 93 OFFCURVE", "345 117 OFFCURVE", "416 181 CURVE" ); } ); width = 500; } ); unicode = 060B; }, { glyphname = "comma-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "217 404 OFFCURVE", "226 404 OFFCURVE", "233 396 CURVE SMOOTH", "240 388 OFFCURVE", "238 380 OFFCURVE", "229 371 CURVE SMOOTH", "147 286 OFFCURVE", "119 207 OFFCURVE", "145 135 CURVE SMOOTH", "148 127 OFFCURVE", "151 126 OFFCURVE", "156 131 CURVE SMOOTH", "171 150 OFFCURVE", "191 159 OFFCURVE", "215 159 CURVE SMOOTH", "236 159 OFFCURVE", "254 151 OFFCURVE", "269 136 CURVE SMOOTH", "284 121 OFFCURVE", "291 104 OFFCURVE", "291 83 CURVE SMOOTH", "291 62 OFFCURVE", "283 44 OFFCURVE", "267 29 CURVE SMOOTH", "251 14 OFFCURVE", "232 6 OFFCURVE", "211 7 CURVE SMOOTH", "186 8 OFFCURVE", "166 14 OFFCURVE", "151 25 CURVE SMOOTH", "109 58 OFFCURVE", "93 117 OFFCURVE", "100 205 CURVE SMOOTH", "104 245 OFFCURVE", "117 284 OFFCURVE", "141 321 CURVE SMOOTH", "165 358 OFFCURVE", "186 383 OFFCURVE", "206 397 CURVE SMOOTH" ); } ); width = 369; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "207 416 OFFCURVE", "217 418 OFFCURVE", "225 416 CURVE SMOOTH", "241 412 OFFCURVE", "249 403 OFFCURVE", "251 389 CURVE", "252 379 OFFCURVE", "248 369 OFFCURVE", "240 361 CURVE SMOOTH", "166 284 OFFCURVE", "137 213 OFFCURVE", "155 150 CURVE", "172 165 OFFCURVE", "193 173 OFFCURVE", "217 173 CURVE SMOOTH", "241 173 OFFCURVE", "261 164 OFFCURVE", "279 146 CURVE SMOOTH", "297 128 OFFCURVE", "305 108 OFFCURVE", "305 83 CURVE SMOOTH", "305 58 OFFCURVE", "295 36 OFFCURVE", "276 18 CURVE", "257 0 OFFCURVE", "235 -9 OFFCURVE", "208 -8 CURVE SMOOTH", "181 -7 OFFCURVE", "160 0 OFFCURVE", "143 13 CURVE SMOOTH", "97 49 OFFCURVE", "78 113 OFFCURVE", "85 206 CURVE", "89 248 OFFCURVE", "103 289 OFFCURVE", "128 328 CURVE SMOOTH", "153 367 OFFCURVE", "176 394 OFFCURVE", "197 409 CURVE" ); } ); width = 369; } ); unicode = 060C; }, { glyphname = "dateseparator-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "253 428 LINE SMOOTH", "241 402 OFFCURVE", "228 395 OFFCURVE", "213 408 CURVE SMOOTH", "197 422 OFFCURVE", "176 417 OFFCURVE", "151 392 CURVE SMOOTH", "125 367 OFFCURVE", "97 329 OFFCURVE", "66 280 CURVE SMOOTH", "58 267 OFFCURVE", "52 263 OFFCURVE", "45 266 CURVE SMOOTH", "38 270 OFFCURVE", "37 280 OFFCURVE", "44 296 CURVE SMOOTH", "62 337 OFFCURVE", "89 384 OFFCURVE", "127 439 CURVE SMOOTH", "170 500 OFFCURVE", "213 527 OFFCURVE", "255 519 CURVE SMOOTH", "280 514 OFFCURVE", "284 495 OFFCURVE", "268 460 CURVE SMOOTH" ); } ); width = 316; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "267 422 LINE", "256 400 OFFCURVE", "244 388 OFFCURVE", "229 387 CURVE", "220 387 OFFCURVE", "211 390 OFFCURVE", "202 397 CURVE SMOOTH", "193 404 OFFCURVE", "178 397 OFFCURVE", "156 376 CURVE SMOOTH", "134 355 OFFCURVE", "109 321 OFFCURVE", "79 273 CURVE", "66 252 OFFCURVE", "52 245 OFFCURVE", "37 253 CURVE SMOOTH", "22 261 OFFCURVE", "20 278 OFFCURVE", "30 302 CURVE", "48 344 OFFCURVE", "77 392 OFFCURVE", "115 448 CURVE", "162 514 OFFCURVE", "210 542 OFFCURVE", "258 533 CURVE", "295 526 OFFCURVE", "302 500 OFFCURVE", "281 454 CURVE" ); } ); width = 316; } ); unicode = 060D; }, { glyphname = "verseComma-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "85 221 OFFCURVE", "73 208 OFFCURVE", "73 183 CURVE SMOOTH", "73 166 OFFCURVE", "85 152 OFFCURVE", "107 144 CURVE SMOOTH", "118 140 OFFCURVE", "137 136 OFFCURVE", "164 131 CURVE", "164 191 OFFCURVE", "146 221 OFFCURVE", "109 221 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "74 92 OFFCURVE", "63 101 OFFCURVE", "53 112 CURVE SMOOTH", "43 123 OFFCURVE", "39 137 OFFCURVE", "39 152 CURVE SMOOTH", "39 187 OFFCURVE", "52 218 OFFCURVE", "76 246 CURVE", "92 264 OFFCURVE", "108 273 OFFCURVE", "122 273 CURVE SMOOTH", "136 273 OFFCURVE", "150 270 OFFCURVE", "161 263 CURVE SMOOTH", "179 253 OFFCURVE", "188 226 OFFCURVE", "188 182 CURVE SMOOTH", "188 166 OFFCURVE", "186 147 OFFCURVE", "184 127 CURVE", "226 121 OFFCURVE", "275 118 OFFCURVE", "331 119 CURVE SMOOTH", "407 120 OFFCURVE", "500 129 OFFCURVE", "610 148 CURVE SMOOTH", "625 151 OFFCURVE", "633 151 OFFCURVE", "633 148 CURVE SMOOTH", "633 146 OFFCURVE", "629 142 OFFCURVE", "622 137 CURVE SMOOTH", "580 109 LINE SMOOTH", "568 101 OFFCURVE", "554 94 OFFCURVE", "539 90 CURVE SMOOTH", "460 70 OFFCURVE", "378 60 OFFCURVE", "294 60 CURVE SMOOTH", "193 60 OFFCURVE", "123 69 OFFCURVE", "87 86 CURVE SMOOTH" ); } ); width = 671; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "146 182 OFFCURVE", "136 201 OFFCURVE", "119 205 CURVE SMOOTH", "102 209 OFFCURVE", "93 206 OFFCURVE", "90 197 CURVE", "85 179 OFFCURVE", "90 167 OFFCURVE", "106 161 CURVE SMOOTH", "118 157 OFFCURVE", "133 152 OFFCURVE", "149 149 CURVE" ); }, { closed = 1; nodes = ( "66 80 OFFCURVE", "53 90 OFFCURVE", "42 104 CURVE SMOOTH", "31 118 OFFCURVE", "24 133 OFFCURVE", "24 152 CURVE SMOOTH", "24 190 OFFCURVE", "38 225 OFFCURVE", "65 256 CURVE", "97 291 OFFCURVE", "131 298 OFFCURVE", "168 276 CURVE SMOOTH", "191 262 OFFCURVE", "202 231 OFFCURVE", "202 182 CURVE SMOOTH", "202 169 OFFCURVE", "201 155 OFFCURVE", "200 140 CURVE", "238 135 OFFCURVE", "289 133 OFFCURVE", "351 134 CURVE SMOOTH", "413 135 OFFCURVE", "499 144 OFFCURVE", "608 163 CURVE SMOOTH", "616 164 OFFCURVE", "623 165 OFFCURVE", "627 165 CURVE", "636 164 LINE", "643 161 OFFCURVE", "647 156 OFFCURVE", "647 148 CURVE SMOOTH", "647 140 OFFCURVE", "642 133 OFFCURVE", "633 127 CURVE SMOOTH", "631 126 OFFCURVE", "631 125 OFFCURVE", "630 125 CURVE SMOOTH", "588 97 LINE SMOOTH", "574 88 OFFCURVE", "559 80 OFFCURVE", "542 76 CURVE SMOOTH", "461 56 OFFCURVE", "374 46 OFFCURVE", "280 46 CURVE SMOOTH", "186 46 OFFCURVE", "119 55 OFFCURVE", "81 73 CURVE SMOOTH" ); } ); width = 671; } ); unicode = 060E; }, { glyphname = "misraComma-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "163 -48 OFFCURVE", "207 64 OFFCURVE", "298 160 CURVE", "246 181 OFFCURVE", "212 203 OFFCURVE", "195 226 CURVE SMOOTH", "188 235 OFFCURVE", "185 245 OFFCURVE", "186 257 CURVE SMOOTH", "189 288 OFFCURVE", "197 317 OFFCURVE", "211 343 CURVE SMOOTH", "243 401 OFFCURVE", "278 440 OFFCURVE", "318 459 CURVE SMOOTH", "338 468 OFFCURVE", "360 465 OFFCURVE", "388 449 CURVE SMOOTH", "416 433 OFFCURVE", "436 416 OFFCURVE", "447 400 CURVE SMOOTH", "454 390 OFFCURVE", "450 387 OFFCURVE", "434 390 CURVE SMOOTH", "348 407 OFFCURVE", "277 379 OFFCURVE", "221 304 CURVE SMOOTH", "218 300 OFFCURVE", "218 296 OFFCURVE", "223 291 CURVE SMOOTH", "267 247 OFFCURVE", "322 229 OFFCURVE", "388 237 CURVE SMOOTH", "399 238 OFFCURVE", "414 245 OFFCURVE", "435 257 CURVE SMOOTH", "513 304 OFFCURVE", "557 331 OFFCURVE", "566 337 CURVE SMOOTH", "579 344 OFFCURVE", "583 339 OFFCURVE", "576 320 CURVE SMOOTH", "561 278 OFFCURVE", "550 254 OFFCURVE", "541 250 CURVE SMOOTH", "478 220 OFFCURVE", "411 179 OFFCURVE", "342 128 CURVE SMOOTH", "251 61 OFFCURVE", "201 -32 OFFCURVE", "193 -150 CURVE", "270 -78 OFFCURVE", "336 -29 OFFCURVE", "391 -2 CURVE SMOOTH", "501 51 OFFCURVE", "592 63 OFFCURVE", "663 33 CURVE SMOOTH", "711 12 OFFCURVE", "742 -20 OFFCURVE", "757 -65 CURVE SMOOTH", "778 -133 OFFCURVE", "762 -210 OFFCURVE", "706 -297 CURVE SMOOTH", "629 -416 OFFCURVE", "535 -477 OFFCURVE", "426 -477 CURVE SMOOTH", "272 -477 OFFCURVE", "185 -394 OFFCURVE", "167 -229 CURVE", "132 -264 OFFCURVE", "96 -304 OFFCURVE", "59 -348 CURVE SMOOTH", "46 -364 OFFCURVE", "41 -363 OFFCURVE", "45 -348 CURVE SMOOTH", "62 -287 LINE SMOOTH", "65 -277 OFFCURVE", "100 -240 OFFCURVE", "165 -177 CURVE" ); }, { closed = 1; nodes = ( "231 -326 OFFCURVE", "318 -388 OFFCURVE", "459 -388 CURVE SMOOTH", "590 -388 OFFCURVE", "674 -332 OFFCURVE", "711 -220 CURVE SMOOTH", "731 -160 OFFCURVE", "716 -107 OFFCURVE", "666 -61 CURVE SMOOTH", "616 -15 OFFCURVE", "533 -13 OFFCURVE", "418 -55 CURVE SMOOTH", "357 -77 OFFCURVE", "283 -126 OFFCURVE", "198 -201 CURVE" ); } ); width = 809; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "150 -48 OFFCURVE", "190 60 OFFCURVE", "273 154 CURVE", "202 186 OFFCURVE", "168 221 OFFCURVE", "171 259 CURVE", "174 292 OFFCURVE", "183 323 OFFCURVE", "198 350 CURVE SMOOTH", "231 411 OFFCURVE", "269 451 OFFCURVE", "311 472 CURVE", "335 483 OFFCURVE", "363 480 OFFCURVE", "394 462 CURVE SMOOTH", "425 444 OFFCURVE", "446 427 OFFCURVE", "459 409 CURVE SMOOTH", "464 402 OFFCURVE", "466 396 OFFCURVE", "465 390 CURVE SMOOTH", "463 376 OFFCURVE", "451 372 OFFCURVE", "431 376 CURVE SMOOTH", "353 391 OFFCURVE", "288 365 OFFCURVE", "236 299 CURVE", "276 260 OFFCURVE", "326 244 OFFCURVE", "386 251 CURVE SMOOTH", "395 252 OFFCURVE", "409 259 OFFCURVE", "427 270 CURVE SMOOTH", "505 317 OFFCURVE", "549 343 OFFCURVE", "558 348 CURVE SMOOTH", "567 353 OFFCURVE", "575 356 OFFCURVE", "581 354 CURVE", "594 349 OFFCURVE", "598 336 OFFCURVE", "590 315 CURVE SMOOTH", "578 280 OFFCURVE", "568 258 OFFCURVE", "562 251 CURVE SMOOTH", "556 244 OFFCURVE", "551 239 OFFCURVE", "547 237 CURVE SMOOTH", "485 207 OFFCURVE", "419 167 OFFCURVE", "351 117 CURVE SMOOTH", "273 59 OFFCURVE", "227 -18 OFFCURVE", "212 -113 CURVE", "278 -54 OFFCURVE", "336 -13 OFFCURVE", "385 11 CURVE SMOOTH", "499 66 OFFCURVE", "593 78 OFFCURVE", "668 47 CURVE", "720 24 OFFCURVE", "755 -12 OFFCURVE", "771 -61 CURVE", "794 -133 OFFCURVE", "776 -215 OFFCURVE", "718 -305 CURVE", "638 -429 OFFCURVE", "540 -490 OFFCURVE", "426 -491 CURVE SMOOTH", "273 -491 OFFCURVE", "184 -415 OFFCURVE", "157 -261 CURVE", "112 -308 OFFCURVE", "83 -339 OFFCURVE", "72 -354 CURVE SMOOTH", "61 -369 OFFCURVE", "52 -376 OFFCURVE", "45 -374 CURVE SMOOTH", "29 -370 OFFCURVE", "24 -360 OFFCURVE", "31 -344 CURVE", "48 -283 LINE SMOOTH", "51 -272 OFFCURVE", "70 -250 OFFCURVE", "103 -217 CURVE SMOOTH", "110 -210 OFFCURVE", "126 -194 OFFCURVE", "150 -171 CURVE" ); }, { closed = 1; nodes = ( "248 -317 OFFCURVE", "327 -373 OFFCURVE", "454 -373 CURVE SMOOTH", "581 -373 OFFCURVE", "663 -320 OFFCURVE", "698 -215 CURVE", "715 -161 OFFCURVE", "701 -114 OFFCURVE", "655 -72 CURVE SMOOTH", "609 -30 OFFCURVE", "532 -28 OFFCURVE", "423 -68 CURVE SMOOTH", "365 -89 OFFCURVE", "296 -136 OFFCURVE", "215 -206 CURVE" ); } ); width = 809; } ); unicode = 060F; }, { glyphname = "sallallahouAlayheWassallamcomb-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "259 1018 OFFCURVE", "238 1024 OFFCURVE", "215 1018 CURVE SMOOTH", "192 1012 OFFCURVE", "161 994 OFFCURVE", "123 965 CURVE", "193 961 OFFCURVE", "245 973 OFFCURVE", "280 999 CURVE" ); }, { closed = 1; nodes = ( "55 971 OFFCURVE", "74 966 OFFCURVE", "99 965 CURVE", "128 995 OFFCURVE", "158 1020 OFFCURVE", "187 1041 CURVE SMOOTH", "216 1062 OFFCURVE", "239 1072 OFFCURVE", "256 1072 CURVE", "281 1073 OFFCURVE", "299 1058 OFFCURVE", "310 1028 CURVE", "312 1020 OFFCURVE", "310 1009 OFFCURVE", "303 994 CURVE SMOOTH", "296 979 OFFCURVE", "290 969 OFFCURVE", "285 964 CURVE SMOOTH", "261 938 OFFCURVE", "216 923 OFFCURVE", "150 917 CURVE SMOOTH", "116 914 OFFCURVE", "85 915 OFFCURVE", "54 921 CURVE", "56 889 OFFCURVE", "51 856 OFFCURVE", "37 820 CURVE SMOOTH", "34 813 OFFCURVE", "29 810 OFFCURVE", "24 811 CURVE SMOOTH", "19 812 OFFCURVE", "17 816 OFFCURVE", "19 823 CURVE SMOOTH", "30 874 OFFCURVE", "25 919 OFFCURVE", "3 958 CURVE SMOOTH", "0 963 OFFCURVE", "-1 966 OFFCURVE", "0 967 CURVE SMOOTH", "16 1008 LINE SMOOTH", "18 1014 OFFCURVE", "22 1013 OFFCURVE", "27 1006 CURVE SMOOTH", "32 999 OFFCURVE", "37 989 OFFCURVE", "41 979 CURVE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "251 1011 OFFCURVE", "234 1015 OFFCURVE", "216 1010 CURVE SMOOTH", "198 1005 OFFCURVE", "173 993 OFFCURVE", "144 972 CURVE", "197 971 OFFCURVE", "238 980 OFFCURVE", "268 999 CURVE" ); }, { closed = 1; nodes = ( "58 977 OFFCURVE", "75 974 OFFCURVE", "96 973 CURVE", "125 1002 OFFCURVE", "155 1027 OFFCURVE", "184 1048 CURVE SMOOTH", "251 1096 OFFCURVE", "295 1090 OFFCURVE", "317 1031 CURVE SMOOTH", "320 1022 OFFCURVE", "318 1008 OFFCURVE", "310 992 CURVE SMOOTH", "302 976 OFFCURVE", "296 965 OFFCURVE", "291 959 CURVE SMOOTH", "265 932 OFFCURVE", "218 915 OFFCURVE", "151 909 CURVE SMOOTH", "120 906 OFFCURVE", "90 908 OFFCURVE", "62 913 CURVE", "62 883 OFFCURVE", "56 850 OFFCURVE", "43 817 CURVE", "38 806 OFFCURVE", "31 802 OFFCURVE", "22 804 CURVE SMOOTH", "13 806 OFFCURVE", "9 813 OFFCURVE", "12 825 CURVE SMOOTH", "23 874 OFFCURVE", "18 918 OFFCURVE", "-3 955 CURVE SMOOTH", "-6 961 OFFCURVE", "-8 966 OFFCURVE", "-7 969 CURVE SMOOTH", "9 1010 LINE SMOOTH", "10 1013 OFFCURVE", "11 1015 OFFCURVE", "13 1017 CURVE", "23 1024 OFFCURVE", "34 1013 OFFCURVE", "46 984 CURVE" ); } ); width = 0; } ); unicode = 0610; }, { glyphname = "alayheAssallamcomb-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "56 889 OFFCURVE", "51 856 OFFCURVE", "37 820 CURVE SMOOTH", "34 813 OFFCURVE", "29 810 OFFCURVE", "24 811 CURVE SMOOTH", "19 812 OFFCURVE", "17 816 OFFCURVE", "19 823 CURVE SMOOTH", "30 874 OFFCURVE", "25 919 OFFCURVE", "3 958 CURVE SMOOTH", "0 963 OFFCURVE", "-1 966 OFFCURVE", "0 967 CURVE SMOOTH", "16 1008 LINE SMOOTH", "20 1018 OFFCURVE", "29 1009 OFFCURVE", "41 979 CURVE", "62 969 OFFCURVE", "90 964 OFFCURVE", "124 965 CURVE", "114 978 OFFCURVE", "108 993 OFFCURVE", "107 1010 CURVE SMOOTH", "104 1042 OFFCURVE", "112 1068 OFFCURVE", "132 1087 CURVE SMOOTH", "152 1106 OFFCURVE", "172 1118 OFFCURVE", "192 1122 CURVE SMOOTH", "212 1126 OFFCURVE", "237 1114 OFFCURVE", "269 1086 CURVE SMOOTH", "273 1082 OFFCURVE", "274 1079 OFFCURVE", "271 1074 CURVE", "268 1070 OFFCURVE", "265 1068 OFFCURVE", "260 1070 CURVE SMOOTH", "226 1083 OFFCURVE", "193 1083 OFFCURVE", "159 1071 CURVE SMOOTH", "144 1066 OFFCURVE", "136 1060 OFFCURVE", "133 1052 CURVE", "130 1044 OFFCURVE", "135 1030 OFFCURVE", "148 1010 CURVE SMOOTH", "161 990 OFFCURVE", "171 979 OFFCURVE", "181 978 CURVE", "203 974 OFFCURVE", "231 982 OFFCURVE", "265 1003 CURVE SMOOTH", "277 1010 OFFCURVE", "285 1013 OFFCURVE", "287 1011 CURVE SMOOTH", "289 1009 OFFCURVE", "290 1006 OFFCURVE", "289 1004 CURVE SMOOTH", "270 963 LINE SMOOTH", "268 958 OFFCURVE", "265 956 OFFCURVE", "263 954 CURVE", "201 917 OFFCURVE", "132 905 OFFCURVE", "54 921 CURVE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "63 883 OFFCURVE", "56 850 OFFCURVE", "43 817 CURVE", "38 806 OFFCURVE", "31 802 OFFCURVE", "22 804 CURVE SMOOTH", "13 806 OFFCURVE", "9 813 OFFCURVE", "12 825 CURVE SMOOTH", "23 874 OFFCURVE", "18 918 OFFCURVE", "-3 955 CURVE SMOOTH", "-6 961 OFFCURVE", "-8 966 OFFCURVE", "-7 969 CURVE SMOOTH", "9 1010 LINE", "11 1014 OFFCURVE", "13 1017 OFFCURVE", "16 1018 CURVE SMOOTH", "24 1022 OFFCURVE", "33 1015 OFFCURVE", "41 997 CURVE SMOOTH", "42 995 OFFCURVE", "43 991 OFFCURVE", "46 984 CURVE", "64 977 OFFCURVE", "85 974 OFFCURVE", "110 973 CURVE", "104 984 OFFCURVE", "101 996 OFFCURVE", "100 1009 CURVE SMOOTH", "97 1043 OFFCURVE", "106 1071 OFFCURVE", "127 1092 CURVE SMOOTH", "148 1113 OFFCURVE", "169 1125 OFFCURVE", "191 1129 CURVE SMOOTH", "213 1133 OFFCURVE", "240 1120 OFFCURVE", "274 1091 CURVE", "281 1084 OFFCURVE", "282 1076 OFFCURVE", "277 1069 CURVE SMOOTH", "272 1062 OFFCURVE", "265 1060 OFFCURVE", "257 1063 CURVE SMOOTH", "225 1075 OFFCURVE", "194 1075 OFFCURVE", "162 1064 CURVE SMOOTH", "150 1059 OFFCURVE", "143 1055 OFFCURVE", "140 1049 CURVE", "139 1042 OFFCURVE", "143 1030 OFFCURVE", "154 1013 CURVE SMOOTH", "165 996 OFFCURVE", "175 986 OFFCURVE", "182 985 CURVE SMOOTH", "203 982 OFFCURVE", "229 990 OFFCURVE", "261 1010 CURVE SMOOTH", "273 1017 OFFCURVE", "281 1021 OFFCURVE", "284 1020 CURVE SMOOTH", "287 1019 OFFCURVE", "291 1017 OFFCURVE", "294 1014 CURVE SMOOTH", "297 1011 OFFCURVE", "298 1006 OFFCURVE", "296 1001 CURVE", "276 960 LINE SMOOTH", "273 954 OFFCURVE", "270 950 OFFCURVE", "267 948 CURVE SMOOTH", "206 911 OFFCURVE", "138 900 OFFCURVE", "62 913 CURVE" ); } ); width = 0; } ); unicode = 0611; }, { glyphname = "rehHahabove-ar"; layers = ( { components = ( { name = aRaa.isol; transform = "{0.5, 0, 0, 0.5, 220, 915}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "0 915 OFFCURVE", "42 982 OFFCURVE", "127 1020 CURVE", "89 1029 OFFCURVE", "55 1028 OFFCURVE", "25 1016 CURVE SMOOTH", "19 1014 OFFCURVE", "17 1015 OFFCURVE", "17 1019 CURVE SMOOTH", "18 1053 OFFCURVE", "36 1069 OFFCURVE", "70 1071 CURVE SMOOTH", "83 1072 OFFCURVE", "104 1070 OFFCURVE", "132 1064 CURVE SMOOTH", "160 1058 OFFCURVE", "183 1056 OFFCURVE", "203 1056 CURVE SMOOTH", "223 1056 OFFCURVE", "246 1059 OFFCURVE", "275 1064 CURVE SMOOTH", "285 1066 OFFCURVE", "289 1063 OFFCURVE", "285 1055 CURVE SMOOTH", "272 1028 LINE SMOOTH", "271 1025 OFFCURVE", "269 1024 OFFCURVE", "267 1023 CURVE SMOOTH", "185 1011 OFFCURVE", "130 997 OFFCURVE", "100 977 CURVE SMOOTH", "45 941 OFFCURVE", "17 889 OFFCURVE", "17 820 CURVE SMOOTH", "16 814 OFFCURVE", "13 812 OFFCURVE", "8 812 CURVE SMOOTH", "4 812 OFFCURVE", "1 814 OFFCURVE", "0 820 CURVE SMOOTH" ); } ); width = 0; }, { components = ( { name = aRaa.isol; transform = "{0.5, 0, 0, 0.5, 220, 915}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-1 805 OFFCURVE", "-6 810 OFFCURVE", "-7 820 CURVE", "-7 910 OFFCURVE", "30 976 OFFCURVE", "104 1017 CURVE", "76 1021 OFFCURVE", "51 1018 OFFCURVE", "28 1009 CURVE SMOOTH", "18 1005 OFFCURVE", "12 1008 OFFCURVE", "10 1016 CURVE SMOOTH", "10 1017 OFFCURVE", "10 1018 OFFCURVE", "10 1019 CURVE SMOOTH", "11 1057 OFFCURVE", "31 1077 OFFCURVE", "70 1079 CURVE SMOOTH", "84 1080 OFFCURVE", "109 1076 OFFCURVE", "145 1069 CURVE SMOOTH", "181 1062 OFFCURVE", "218 1061 OFFCURVE", "257 1068 CURVE SMOOTH", "274 1071 OFFCURVE", "285 1071 OFFCURVE", "290 1069 CURVE SMOOTH", "295 1067 OFFCURVE", "296 1061 OFFCURVE", "292 1052 CURVE SMOOTH", "279 1025 LINE", "276 1020 OFFCURVE", "273 1017 OFFCURVE", "268 1016 CURVE SMOOTH", "187 1004 OFFCURVE", "133 989 OFFCURVE", "104 970 CURVE SMOOTH", "51 935 OFFCURVE", "24 885 OFFCURVE", "24 820 CURVE SMOOTH", "24 818 LINE", "21 810 OFFCURVE", "16 805 OFFCURVE", "8 804 CURVE" ); } ); width = 0; } ); unicode = 0612; }, { glyphname = "rehDadabove-ar"; layers = ( { components = ( { name = aRaa.isol; transform = "{0.5, 0, 0, 0.5, 257, 915}"; }, { name = "sallallahouAlayheWassallamcomb-ar"; }, { name = "dotabove-ar"; transform = "{0.5, 0, 0, 0.5, 206, 1112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = aRaa.isol; transform = "{0.5, 0, 0, 0.5, 257, 915}"; }, { name = "sallallahouAlayheWassallamcomb-ar"; }, { name = "dotabove-ar"; transform = "{0.5, 0, 0, 0.5, 206, 1112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 0613; }, { glyphname = "takhallusabove-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "192 847 OFFCURVE", "95 837 OFFCURVE", "-9 856 CURVE SMOOTH", "-20 858 OFFCURVE", "-25 864 OFFCURVE", "-24 872 CURVE SMOOTH", "-23 879 OFFCURVE", "-17 882 OFFCURVE", "-6 881 CURVE SMOOTH", "148 875 OFFCURVE", "250 896 OFFCURVE", "301 944 CURVE SMOOTH", "307 949 OFFCURVE", "311 951 OFFCURVE", "314 949 CURVE SMOOTH", "319 946 OFFCURVE", "320 942 OFFCURVE", "317 935 CURVE SMOOTH", "313 925 LINE", "341 904 OFFCURVE", "370 894 OFFCURVE", "398 896 CURVE", "398 901 OFFCURVE", "396 907 OFFCURVE", "390 917 CURVE SMOOTH", "387 923 OFFCURVE", "386 929 OFFCURVE", "390 937 CURVE SMOOTH", "406 970 LINE SMOOTH", "410 978 OFFCURVE", "414 976 OFFCURVE", "419 964 CURVE SMOOTH", "426 947 OFFCURVE", "426 926 OFFCURVE", "422 900 CURVE SMOOTH", "416 867 OFFCURVE", "407 850 OFFCURVE", "392 848 CURVE SMOOTH", "357 844 OFFCURVE", "321 856 OFFCURVE", "284 884 CURVE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "191 839 OFFCURVE", "93 830 OFFCURVE", "-11 849 CURVE", "-26 852 OFFCURVE", "-33 860 OFFCURVE", "-32 873 CURVE", "-30 884 OFFCURVE", "-21 890 OFFCURVE", "-6 889 CURVE SMOOTH", "145 884 OFFCURVE", "246 904 OFFCURVE", "296 950 CURVE", "304 957 OFFCURVE", "312 958 OFFCURVE", "319 954 CURVE SMOOTH", "326 950 OFFCURVE", "328 941 OFFCURVE", "322 927 CURVE", "345 911 OFFCURVE", "367 903 OFFCURVE", "389 903 CURVE", "387 906 OFFCURVE", "385 911 OFFCURVE", "382 917 CURVE SMOOTH", "379 923 OFFCURVE", "379 930 OFFCURVE", "383 940 CURVE", "399 973 LINE SMOOTH", "401 977 OFFCURVE", "404 979 OFFCURVE", "407 981 CURVE", "415 984 OFFCURVE", "421 978 OFFCURVE", "427 962 CURVE SMOOTH", "433 946 OFFCURVE", "433 922 OFFCURVE", "428 891 CURVE SMOOTH", "423 860 OFFCURVE", "411 843 OFFCURVE", "393 841 CURVE", "357 837 OFFCURVE", "320 848 OFFCURVE", "283 875 CURVE" ); } ); width = 0; } ); unicode = 0614; }, { glyphname = "tahabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{233, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "193 1603 OFFCURVE", "198 1500 OFFCURVE", "191 1438 CURVE", "266 1518 OFFCURVE", "324 1546 OFFCURVE", "364 1521 CURVE SMOOTH", "385 1508 OFFCURVE", "396 1494 OFFCURVE", "398 1478 CURVE SMOOTH", "400 1462 OFFCURVE", "396 1443 OFFCURVE", "384 1420 CURVE SMOOTH", "372 1397 OFFCURVE", "362 1383 OFFCURVE", "356 1379 CURVE SMOOTH", "303 1343 OFFCURVE", "214 1320 OFFCURVE", "89 1311 CURVE", "67 1315 OFFCURVE", "48 1322 OFFCURVE", "33 1332 CURVE SMOOTH", "18 1342 OFFCURVE", "8 1352 OFFCURVE", "3 1362 CURVE SMOOTH", "-2 1372 OFFCURVE", "-2 1377 OFFCURVE", "5 1376 CURVE", "34 1372 OFFCURVE", "73 1372 OFFCURVE", "120 1375 CURVE", "159 1413 LINE", "159 1514 OFFCURVE", "152 1612 OFFCURVE", "137 1709 CURVE SMOOTH", "135 1722 OFFCURVE", "136 1731 OFFCURVE", "140 1737 CURVE SMOOTH", "155 1761 LINE SMOOTH", "164 1775 OFFCURVE", "171 1769 OFFCURVE", "175 1744 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "245 1454 OFFCURVE", "209 1427 OFFCURVE", "155 1379 CURVE", "237 1388 OFFCURVE", "303 1406 OFFCURVE", "352 1432 CURVE", "334 1464 OFFCURVE", "305 1473 OFFCURVE", "264 1460 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{233, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "198 1618 OFFCURVE", "204 1522 OFFCURVE", "200 1458 CURVE", "271 1529 OFFCURVE", "327 1552 OFFCURVE", "368 1527 CURVE", "390 1513 OFFCURVE", "403 1497 OFFCURVE", "405 1479 CURVE SMOOTH", "407 1461 OFFCURVE", "403 1440 OFFCURVE", "390 1416 CURVE SMOOTH", "377 1392 OFFCURVE", "367 1378 OFFCURVE", "360 1373 CURVE SMOOTH", "305 1337 OFFCURVE", "215 1314 OFFCURVE", "89 1304 CURVE", "88 1304 LINE", "65 1308 OFFCURVE", "43 1317 OFFCURVE", "22 1331 CURVE SMOOTH", "1 1345 OFFCURVE", "-9 1359 OFFCURVE", "-8 1373 CURVE SMOOTH", "-7 1381 OFFCURVE", "-3 1384 OFFCURVE", "6 1383 CURVE SMOOTH", "34 1379 OFFCURVE", "71 1379 OFFCURVE", "116 1382 CURVE", "152 1416 LINE", "151 1515 OFFCURVE", "143 1612 OFFCURVE", "129 1708 CURVE SMOOTH", "127 1723 OFFCURVE", "129 1735 OFFCURVE", "134 1742 CURVE SMOOTH", "149 1765 LINE SMOOTH", "154 1772 OFFCURVE", "158 1775 OFFCURVE", "163 1776 CURVE SMOOTH", "171 1777 OFFCURVE", "177 1772 OFFCURVE", "180 1759 CURVE SMOOTH", "181 1755 OFFCURVE", "181 1751 OFFCURVE", "182 1745 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "250 1448 OFFCURVE", "220 1426 OFFCURVE", "177 1389 CURVE", "244 1398 OFFCURVE", "299 1414 OFFCURVE", "342 1435 CURVE", "325 1458 OFFCURVE", "300 1463 OFFCURVE", "266 1453 CURVE" ); } ); width = 0; } ); unicode = 0615; }, { glyphname = "alefLamYehabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{214, 801}"; }, { name = _TashkilAbove; position = "{213, 801}"; }, { name = _TashkilAboveDot; position = "{213, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "275 1080 OFFCURVE", "279 1023 OFFCURVE", "277 991 CURVE SMOOTH", "275 959 OFFCURVE", "272 937 OFFCURVE", "267 923 CURVE SMOOTH", "262 909 OFFCURVE", "258 901 OFFCURVE", "255 901 CURVE SMOOTH", "250 901 OFFCURVE", "249 906 OFFCURVE", "250 914 CURVE", "252 947 OFFCURVE", "248 1014 OFFCURVE", "238 1117 CURVE SMOOTH", "237 1126 OFFCURVE", "237 1133 OFFCURVE", "239 1136 CURVE SMOOTH", "251 1160 LINE SMOOTH", "258 1175 OFFCURVE", "263 1176 OFFCURVE", "265 1162 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "158 1085 OFFCURVE", "160 1029 OFFCURVE", "153 990 CURVE SMOOTH", "146 951 OFFCURVE", "120 919 OFFCURVE", "77 893 CURVE", "144 883 OFFCURVE", "261 884 OFFCURVE", "428 899 CURVE SMOOTH", "436 900 OFFCURVE", "439 896 OFFCURVE", "434 889 CURVE SMOOTH", "416 863 LINE SMOOTH", "413 859 OFFCURVE", "409 856 OFFCURVE", "406 855 CURVE SMOOTH", "376 850 OFFCURVE", "323 847 OFFCURVE", "246 844 CURVE SMOOTH", "169 841 OFFCURVE", "113 843 OFFCURVE", "75 849 CURVE SMOOTH", "63 851 OFFCURVE", "56 856 OFFCURVE", "54 865 CURVE", "52 879 OFFCURVE", "56 894 OFFCURVE", "64 908 CURVE SMOOTH", "72 922 OFFCURVE", "81 932 OFFCURVE", "91 939 CURVE SMOOTH", "121 960 OFFCURVE", "135 983 OFFCURVE", "134 1008 CURVE", "129 1056 OFFCURVE", "126 1096 OFFCURVE", "121 1128 CURVE SMOOTH", "120 1136 OFFCURVE", "120 1143 OFFCURVE", "123 1147 CURVE SMOOTH", "132 1162 LINE SMOOTH", "140 1174 OFFCURVE", "145 1172 OFFCURVE", "147 1158 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{214, 801}"; }, { name = _TashkilAbove; position = "{213, 801}"; }, { name = _TashkilAboveDot; position = "{213, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "269 1177 OFFCURVE", "264 1183 OFFCURVE", "254 1178 CURVE SMOOTH", "252 1177 OFFCURVE", "249 1172 OFFCURVE", "245 1164 CURVE SMOOTH", "233 1140 LINE", "230 1135 OFFCURVE", "229 1128 OFFCURVE", "230 1117 CURVE SMOOTH", "240 1015 OFFCURVE", "244 947 OFFCURVE", "242 914 CURVE SMOOTH", "241 901 OFFCURVE", "245 894 OFFCURVE", "255 894 CURVE", "258 894 OFFCURVE", "261 896 OFFCURVE", "263 898 CURVE SMOOTH", "265 900 OFFCURVE", "269 907 OFFCURVE", "274 920 CURVE SMOOTH", "289 961 OFFCURVE", "288 1042 OFFCURVE", "272 1163 CURVE" ); }, { closed = 1; nodes = ( "167 1092 OFFCURVE", "168 1034 OFFCURVE", "160 989 CURVE", "153 954 OFFCURVE", "132 922 OFFCURVE", "97 897 CURVE", "166 890 OFFCURVE", "276 893 OFFCURVE", "427 906 CURVE SMOOTH", "432 906 OFFCURVE", "436 906 OFFCURVE", "441 903 CURVE SMOOTH", "446 900 OFFCURVE", "445 894 OFFCURVE", "439 885 CURVE SMOOTH", "421 858 LINE", "416 852 OFFCURVE", "412 849 OFFCURVE", "407 848 CURVE SMOOTH", "376 843 OFFCURVE", "323 840 OFFCURVE", "246 837 CURVE SMOOTH", "169 834 OFFCURVE", "112 835 OFFCURVE", "74 841 CURVE SMOOTH", "58 844 OFFCURVE", "49 851 OFFCURVE", "47 864 CURVE SMOOTH", "45 880 OFFCURVE", "49 896 OFFCURVE", "58 911 CURVE SMOOTH", "67 926 OFFCURVE", "77 937 OFFCURVE", "87 945 CURVE SMOOTH", "114 965 OFFCURVE", "127 985 OFFCURVE", "127 1007 CURVE", "122 1055 OFFCURVE", "119 1090 OFFCURVE", "116 1111 CURVE SMOOTH", "113 1132 OFFCURVE", "113 1145 OFFCURVE", "116 1151 CURVE", "126 1166 LINE SMOOTH", "131 1173 OFFCURVE", "136 1176 OFFCURVE", "140 1177 CURVE", "147 1178 OFFCURVE", "152 1173 OFFCURVE", "154 1163 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0616; }, { glyphname = "zainabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{233, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "216 1772 OFFCURVE", "222 1770 OFFCURVE", "231 1767 CURVE SMOOTH", "240 1764 OFFCURVE", "251 1757 OFFCURVE", "263 1746 CURVE SMOOTH", "265 1744 OFFCURVE", "265 1742 OFFCURVE", "264 1740 CURVE SMOOTH", "235 1695 LINE SMOOTH", "234 1693 OFFCURVE", "232 1694 OFFCURVE", "229 1696 CURVE SMOOTH", "226 1698 OFFCURVE", "212 1707 OFFCURVE", "187 1722 CURVE SMOOTH", "185 1723 OFFCURVE", "185 1725 OFFCURVE", "186 1726 CURVE", "215 1770 LINE SMOOTH" ); }, { closed = 1; nodes = ( "278 1612 OFFCURVE", "282 1612 OFFCURVE", "288 1606 CURVE SMOOTH", "304 1590 OFFCURVE", "315 1569 OFFCURVE", "323 1542 CURVE SMOOTH", "331 1515 OFFCURVE", "333 1486 OFFCURVE", "329 1455 CURVE SMOOTH", "325 1424 OFFCURVE", "312 1394 OFFCURVE", "289 1364 CURVE SMOOTH", "266 1334 OFFCURVE", "235 1315 OFFCURVE", "198 1305 CURVE SMOOTH", "188 1302 OFFCURVE", "178 1302 OFFCURVE", "169 1305 CURVE SMOOTH", "109 1326 OFFCURVE", "79 1338 OFFCURVE", "79 1343 CURVE SMOOTH", "79 1348 OFFCURVE", "82 1349 OFFCURVE", "86 1348 CURVE SMOOTH", "113 1340 OFFCURVE", "137 1336 OFFCURVE", "157 1339 CURVE SMOOTH", "223 1348 OFFCURVE", "274 1387 OFFCURVE", "309 1455 CURVE SMOOTH", "311 1458 OFFCURVE", "311 1461 OFFCURVE", "310 1464 CURVE SMOOTH", "304 1485 OFFCURVE", "288 1511 OFFCURVE", "263 1543 CURVE SMOOTH", "262 1545 OFFCURVE", "261 1546 OFFCURVE", "262 1547 CURVE SMOOTH", "277 1607 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{233, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "213 1779 OFFCURVE", "218 1780 OFFCURVE", "224 1778 CURVE SMOOTH", "230 1776 OFFCURVE", "234 1773 OFFCURVE", "240 1771 CURVE SMOOTH", "246 1769 OFFCURVE", "255 1762 OFFCURVE", "268 1751 CURVE", "272 1746 OFFCURVE", "274 1741 OFFCURVE", "271 1736 CURVE", "242 1691 LINE", "238 1685 OFFCURVE", "233 1684 OFFCURVE", "228 1688 CURVE SMOOTH", "223 1692 OFFCURVE", "208 1701 OFFCURVE", "183 1716 CURVE SMOOTH", "177 1720 OFFCURVE", "176 1724 OFFCURVE", "180 1730 CURVE SMOOTH", "209 1774 LINE" ); }, { closed = 1; nodes = ( "273 1618 OFFCURVE", "278 1621 OFFCURVE", "288 1615 CURVE SMOOTH", "290 1614 OFFCURVE", "292 1612 OFFCURVE", "293 1611 CURVE SMOOTH", "310 1594 OFFCURVE", "322 1571 OFFCURVE", "330 1543 CURVE SMOOTH", "350 1476 OFFCURVE", "337 1414 OFFCURVE", "294 1359 CURVE SMOOTH", "270 1328 OFFCURVE", "239 1307 OFFCURVE", "200 1297 CURVE SMOOTH", "188 1294 OFFCURVE", "177 1294 OFFCURVE", "167 1298 CURVE SMOOTH", "122 1313 OFFCURVE", "94 1323 OFFCURVE", "85 1328 CURVE SMOOTH", "76 1333 OFFCURVE", "72 1339 OFFCURVE", "72 1345 CURVE SMOOTH", "73 1355 OFFCURVE", "78 1358 OFFCURVE", "88 1355 CURVE SMOOTH", "114 1347 OFFCURVE", "137 1344 OFFCURVE", "156 1347 CURVE SMOOTH", "219 1356 OFFCURVE", "269 1393 OFFCURVE", "303 1458 CURVE SMOOTH", "304 1460 OFFCURVE", "303 1461 OFFCURVE", "303 1462 CURVE SMOOTH", "297 1483 OFFCURVE", "282 1508 OFFCURVE", "257 1539 CURVE SMOOTH", "254 1543 OFFCURVE", "254 1546 OFFCURVE", "255 1550 CURVE", "270 1609 LINE" ); } ); width = 0; } ); unicode = 0617; }, { glyphname = "fathasmall-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{249, 801}"; }, { name = _TashkilAbove; position = "{247, 801}"; }, { name = _TashkilAboveDot; position = "{247, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "314 948 LINE SMOOTH", "323 952 OFFCURVE", "327 949 OFFCURVE", "326 941 CURVE SMOOTH", "323 914 LINE SMOOTH", "322 909 OFFCURVE", "320 905 OFFCURVE", "316 903 CURVE SMOOTH", "148 844 LINE SMOOTH", "137 840 OFFCURVE", "131 843 OFFCURVE", "132 851 CURVE SMOOTH", "134 862 LINE SMOOTH", "135 867 OFFCURVE", "138 870 OFFCURVE", "143 872 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{249, 801}"; }, { name = _TashkilAbove; position = "{247, 801}"; }, { name = _TashkilAboveDot; position = "{247, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "312 952 LINE", "317 954 OFFCURVE", "321 955 OFFCURVE", "326 954 CURVE SMOOTH", "331 953 OFFCURVE", "332 949 OFFCURVE", "331 941 CURVE SMOOTH", "328 913 LINE SMOOTH", "327 905 OFFCURVE", "323 900 OFFCURVE", "317 898 CURVE SMOOTH", "149 840 LINE", "133 835 OFFCURVE", "126 839 OFFCURVE", "127 852 CURVE", "129 862 LINE SMOOTH", "130 868 OFFCURVE", "134 873 OFFCURVE", "141 876 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0618; }, { glyphname = "dammasmall-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{244, 801}"; }, { name = _TashkilAbove; position = "{244, 801}"; }, { name = _TashkilAboveDot; position = "{244, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "277 1056 OFFCURVE", "285 1054 OFFCURVE", "290 1047 CURVE SMOOTH", "295 1040 OFFCURVE", "296 1031 OFFCURVE", "297 1019 CURVE SMOOTH", "298 1007 OFFCURVE", "293 987 OFFCURVE", "282 962 CURVE", "291 956 OFFCURVE", "298 952 OFFCURVE", "302 950 CURVE SMOOTH", "306 948 OFFCURVE", "307 944 OFFCURVE", "304 937 CURVE SMOOTH", "294 917 LINE SMOOTH", "291 911 OFFCURVE", "281 914 OFFCURVE", "262 925 CURVE", "232 886 OFFCURVE", "204 860 OFFCURVE", "180 847 CURVE SMOOTH", "169 841 OFFCURVE", "162 840 OFFCURVE", "159 845 CURVE SMOOTH", "156 850 OFFCURVE", "160 857 OFFCURVE", "174 867 CURVE SMOOTH", "200 886 OFFCURVE", "224 908 OFFCURVE", "245 936 CURVE", "212 952 OFFCURVE", "201 973 OFFCURVE", "213 998 CURVE SMOOTH", "228 1029 OFFCURVE", "247 1048 OFFCURVE", "269 1054 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "260 1007 OFFCURVE", "253 1009 OFFCURVE", "243 1005 CURVE SMOOTH", "233 1001 OFFCURVE", "229 997 OFFCURVE", "232 994 CURVE SMOOTH", "237 988 OFFCURVE", "248 980 OFFCURVE", "264 972 CURVE", "268 984 OFFCURVE", "268 993 OFFCURVE", "264 1000 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{244, 801}"; }, { name = _TashkilAbove; position = "{244, 801}"; }, { name = _TashkilAboveDot; position = "{244, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "279 1062 OFFCURVE", "286 1058 OFFCURVE", "292 1050 CURVE SMOOTH", "305 1031 OFFCURVE", "304 1002 OFFCURVE", "288 964 CURVE", "295 959 OFFCURVE", "302 956 OFFCURVE", "307 953 CURVE SMOOTH", "312 950 OFFCURVE", "312 944 OFFCURVE", "308 935 CURVE SMOOTH", "298 916 LINE SMOOTH", "294 908 OFFCURVE", "282 908 OFFCURVE", "263 919 CURVE", "233 882 OFFCURVE", "207 856 OFFCURVE", "183 843 CURVE", "169 836 OFFCURVE", "160 835 OFFCURVE", "155 842 CURVE", "150 849 OFFCURVE", "158 861 OFFCURVE", "178 875 CURVE SMOOTH", "198 889 OFFCURVE", "217 910 OFFCURVE", "237 935 CURVE", "206 952 OFFCURVE", "197 974 OFFCURVE", "209 1000 CURVE SMOOTH", "224 1033 OFFCURVE", "244 1052 OFFCURVE", "268 1059 CURVE" ); }, { closed = 1; nodes = ( "254 1004 OFFCURVE", "247 1004 OFFCURVE", "237 996 CURVE", "242 991 OFFCURVE", "250 985 OFFCURVE", "261 979 CURVE", "262 987 OFFCURVE", "261 993 OFFCURVE", "259 998 CURVE" ); } ); width = 0; } ); unicode = 0619; }, { glyphname = "kasrasmall-ar"; layers = ( { anchors = ( { name = _MarkBelow; position = "{249, -327}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; } ); components = ( { name = "fathasmall-ar"; transform = "{1, 0, 0, 1, 34, -1284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{249, -327}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; } ); components = ( { name = "fathasmall-ar"; transform = "{1, 0, 0, 1, 34, -1284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 061A; }, { glyphname = "semicolon-ar"; layers = ( { components = ( { name = dot.1; transform = "{1, 0, 0, 1, 219, -148}"; }, { name = "comma-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { components = ( { name = dot.1; transform = "{1, 0, 0, 1, 219, -148}"; }, { name = "comma-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = 061B; }, { glyphname = "mark-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 061C; }, { glyphname = "endoftext-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "361 212 OFFCURVE", "336 276 OFFCURVE", "294 329 CURVE SMOOTH", "276 350 OFFCURVE", "246 378 OFFCURVE", "203 413 CURVE SMOOTH", "168 441 OFFCURVE", "141 465 OFFCURVE", "122 485 CURVE SMOOTH", "116 491 OFFCURVE", "119 508 OFFCURVE", "123 513 CURVE SMOOTH", "152 568 OFFCURVE", "227 655 OFFCURVE", "304 655 CURVE SMOOTH", "352 655 OFFCURVE", "381 631 OFFCURVE", "381 579 CURVE SMOOTH", "381 556 OFFCURVE", "373 525 OFFCURVE", "357 486 CURVE", "372 476 LINE", "399 516 OFFCURVE", "420 574 OFFCURVE", "420 635 CURVE SMOOTH", "420 707 OFFCURVE", "387 758 OFFCURVE", "317 758 CURVE SMOOTH", "206 758 OFFCURVE", "116 642 OFFCURVE", "87 583 CURVE SMOOTH", "78 564 OFFCURVE", "72 542 OFFCURVE", "72 517 CURVE SMOOTH", "72 459 OFFCURVE", "99 398 OFFCURVE", "131 370 CURVE SMOOTH", "173 331 OFFCURVE", "227 297 OFFCURVE", "262 250 CURVE SMOOTH", "316 183 OFFCURVE", "336 134 OFFCURVE", "376 47 CURVE SMOOTH", "395 1 OFFCURVE", "433 -43 OFFCURVE", "488 -43 CURVE SMOOTH", "548 -43 OFFCURVE", "603 18 OFFCURVE", "603 80 CURVE SMOOTH", "603 124 OFFCURVE", "577 166 OFFCURVE", "534 166 CURVE SMOOTH", "493 166 OFFCURVE", "466 136 OFFCURVE", "466 95 CURVE SMOOTH", "466 83 OFFCURVE", "468 70 OFFCURVE", "473 55 CURVE", "466 53 OFFCURVE", "461 52 OFFCURVE", "455 52 CURVE SMOOTH", "406 52 OFFCURVE", "386 125 OFFCURVE", "378 154 CURVE SMOOTH" ); } ); width = 674; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "587 180 OFFCURVE", "617 130 OFFCURVE", "617 80 CURVE SMOOTH", "617 43 OFFCURVE", "600 7 OFFCURVE", "574 -19 CURVE SMOOTH", "551 -42 OFFCURVE", "521 -57 OFFCURVE", "488 -57 CURVE SMOOTH", "423 -57 OFFCURVE", "393 -6 OFFCURVE", "373 41 CURVE SMOOTH", "335 124 OFFCURVE", "303 176 OFFCURVE", "250 241 CURVE SMOOTH", "215 288 OFFCURVE", "164 319 OFFCURVE", "121 359 CURVE SMOOTH", "85 391 OFFCURVE", "65 455 OFFCURVE", "65 517 CURVE SMOOTH", "65 545 OFFCURVE", "71 569 OFFCURVE", "81 590 CURVE SMOOTH", "105 638 OFFCURVE", "146 697 OFFCURVE", "202 735 CURVE SMOOTH", "256 772 OFFCURVE", "347 793 OFFCURVE", "398 742 CURVE SMOOTH", "472 668 OFFCURVE", "417 529 OFFCURVE", "373 464 CURVE", "347 481 LINE", "361 517 OFFCURVE", "374 559 OFFCURVE", "374 579 CURVE SMOOTH", "374 622 OFFCURVE", "347 641 OFFCURVE", "304 641 CURVE SMOOTH", "234 641 OFFCURVE", "148 557 OFFCURVE", "122 496 CURVE", "143 474 OFFCURVE", "178 452 OFFCURVE", "212 424 CURVE SMOOTH", "253 390 OFFCURVE", "279 370 OFFCURVE", "305 338 CURVE SMOOTH", "349 282 OFFCURVE", "366 216 OFFCURVE", "383 156 CURVE SMOOTH", "390 131 OFFCURVE", "418 67 OFFCURVE", "455 67 CURVE", "453 77 OFFCURVE", "451 86 OFFCURVE", "451 95 CURVE SMOOTH", "451 119 OFFCURVE", "459 141 OFFCURVE", "475 157 CURVE SMOOTH", "490 172 OFFCURVE", "511 180 OFFCURVE", "534 180 CURVE SMOOTH" ); } ); width = 674; } ); unicode = 061D; }, { glyphname = "threedots-ar"; layers = ( { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 188, -22}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 372; }, { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 188, -22}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 372; } ); unicode = 061E; }, { glyphname = "question-ar"; layers = ( { components = ( { name = dot.2; transform = "{1, 0, 0, 1, 44, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "325 565 OFFCURVE", "310 598 OFFCURVE", "276 620 CURVE SMOOTH", "255 634 OFFCURVE", "233 640 OFFCURVE", "207 640 CURVE SMOOTH", "179 639 OFFCURVE", "158 631 OFFCURVE", "144 614 CURVE SMOOTH", "113 579 OFFCURVE", "114 532 OFFCURVE", "148 476 CURVE SMOOTH", "193 402 OFFCURVE", "216 327 OFFCURVE", "219 252 CURVE SMOOTH", "220 218 OFFCURVE", "219 190 OFFCURVE", "214 168 CURVE SMOOTH", "212 160 OFFCURVE", "208 156 OFFCURVE", "201 156 CURVE SMOOTH", "193 156 OFFCURVE", "189 161 OFFCURVE", "190 171 CURVE SMOOTH", "191 184 OFFCURVE", "191 198 OFFCURVE", "191 210 CURVE SMOOTH", "191 245 OFFCURVE", "181 270 OFFCURVE", "162 287 CURVE SMOOTH", "93 346 OFFCURVE", "53 392 OFFCURVE", "42 428 CURVE SMOOTH", "21 493 OFFCURVE", "29 551 OFFCURVE", "65 601 CURVE SMOOTH", "98 646 OFFCURVE", "146 668 OFFCURVE", "210 669 CURVE SMOOTH", "237 669 OFFCURVE", "264 662 OFFCURVE", "290 647 CURVE SMOOTH", "318 631 OFFCURVE", "338 605 OFFCURVE", "349 570 CURVE SMOOTH", "354 554 OFFCURVE", "356 534 OFFCURVE", "354 510 CURVE SMOOTH", "352 486 OFFCURVE", "349 469 OFFCURVE", "344 458 CURVE SMOOTH", "331 429 OFFCURVE", "311 415 OFFCURVE", "284 415 CURVE SMOOTH", "265 415 OFFCURVE", "250 422 OFFCURVE", "239 435 CURVE SMOOTH", "229 448 OFFCURVE", "224 461 OFFCURVE", "224 476 CURVE SMOOTH", "224 491 OFFCURVE", "228 504 OFFCURVE", "237 516 CURVE SMOOTH", "246 528 OFFCURVE", "260 534 OFFCURVE", "278 535 CURVE SMOOTH", "297 536 OFFCURVE", "311 530 OFFCURVE", "322 519 CURVE" ); } ); width = 413; }, { components = ( { name = dot.2; transform = "{1, 0, 0, 1, 51, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "312 599 OFFCURVE", "276 636 OFFCURVE", "218 636 CURVE SMOOTH", "170 636 OFFCURVE", "144 614 OFFCURVE", "139 570 CURVE SMOOTH", "136 543 OFFCURVE", "145 511 OFFCURVE", "165 473 CURVE SMOOTH", "203 400 OFFCURVE", "223 334 OFFCURVE", "226 276 CURVE SMOOTH", "228 243 OFFCURVE", "227 215 OFFCURVE", "222 192 CURVE SMOOTH", "221 185 OFFCURVE", "216 182 OFFCURVE", "209 182 CURVE SMOOTH", "201 182 OFFCURVE", "196 184 OFFCURVE", "195 190 CURVE SMOOTH", "193 197 OFFCURVE", "193 208 OFFCURVE", "192 223 CURVE SMOOTH", "191 254 OFFCURVE", "178 277 OFFCURVE", "155 294 CURVE SMOOTH", "81 347 OFFCURVE", "39 394 OFFCURVE", "28 435 CURVE SMOOTH", "12 495 OFFCURVE", "21 549 OFFCURVE", "55 596 CURVE SMOOTH", "90 644 OFFCURVE", "143 669 OFFCURVE", "215 671 CURVE SMOOTH", "252 672 OFFCURVE", "284 660 OFFCURVE", "312 637 CURVE SMOOTH", "335 618 OFFCURVE", "350 594 OFFCURVE", "359 564 CURVE SMOOTH", "372 521 OFFCURVE", "372 482 OFFCURVE", "358 447 CURVE SMOOTH", "344 412 OFFCURVE", "322 395 OFFCURVE", "289 393 CURVE SMOOTH", "267 392 OFFCURVE", "249 400 OFFCURVE", "234 417 CURVE SMOOTH", "220 433 OFFCURVE", "214 450 OFFCURVE", "214 468 CURVE SMOOTH", "214 486 OFFCURVE", "219 502 OFFCURVE", "230 516 CURVE SMOOTH", "241 530 OFFCURVE", "257 539 OFFCURVE", "277 541 CURVE SMOOTH", "297 543 OFFCURVE", "314 538 OFFCURVE", "327 526 CURVE" ); } ); width = 413; } ); unicode = 061F; }, { glyphname = "yehKashmiri-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{355, -444}"; } ); components = ( { name = aYaa.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 355, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{355, -444}"; } ); components = ( { name = aYaa.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 355, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 0620; }, { glyphname = "hamza-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 342}"; }, { name = TashkilBelow; position = "{210, 29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "305 116 OFFCURVE", "301 109 OFFCURVE", "295 105 CURVE", "245 87 OFFCURVE", "183 54 OFFCURVE", "109 4 CURVE SMOOTH", "102 0 OFFCURVE", "97 0 OFFCURVE", "93 4 CURVE SMOOTH", "82 15 OFFCURVE", "97 38 OFFCURVE", "138 73 CURVE", "84 93 OFFCURVE", "58 119 OFFCURVE", "63 152 CURVE", "66 179 OFFCURVE", "87 215 OFFCURVE", "125 259 CURVE SMOOTH", "148 285 OFFCURVE", "168 298 OFFCURVE", "184 298 CURVE SMOOTH", "218 298 OFFCURVE", "233 279 OFFCURVE", "230 242 CURVE SMOOTH", "229 229 OFFCURVE", "224 216 OFFCURVE", "217 204 CURVE SMOOTH", "210 192 OFFCURVE", "201 190 OFFCURVE", "192 199 CURVE SMOOTH", "162 228 OFFCURVE", "140 232 OFFCURVE", "127 214 CURVE SMOOTH", "113 193 OFFCURVE", "125 174 OFFCURVE", "163 156 CURVE SMOOTH", "186 145 OFFCURVE", "212 142 OFFCURVE", "243 148 CURVE SMOOTH", "252 150 OFFCURVE", "262 154 OFFCURVE", "274 161 CURVE SMOOTH", "286 168 OFFCURVE", "297 172 OFFCURVE", "305 174 CURVE", "318 176 OFFCURVE", "321 168 OFFCURVE", "316 151 CURVE SMOOTH", "308 125 LINE SMOOTH" ); } ); width = 381; }, { anchors = ( { name = TashkilAbove; position = "{146, 342}"; }, { name = TashkilBelow; position = "{210, 29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "223 305 OFFCURVE", "241 284 OFFCURVE", "237 242 CURVE", "235 222 OFFCURVE", "229 206 OFFCURVE", "219 195 CURVE SMOOTH", "209 184 OFFCURVE", "199 183 OFFCURVE", "187 193 CURVE", "159 219 OFFCURVE", "140 224 OFFCURVE", "131 206 CURVE", "124 192 OFFCURVE", "134 179 OFFCURVE", "160 166 CURVE SMOOTH", "200 147 OFFCURVE", "237 147 OFFCURVE", "271 167 CURVE SMOOTH", "291 178 OFFCURVE", "305 183 OFFCURVE", "315 180 CURVE SMOOTH", "325 177 OFFCURVE", "328 167 OFFCURVE", "323 149 CURVE SMOOTH", "315 123 LINE", "311 110 OFFCURVE", "305 101 OFFCURVE", "298 98 CURVE", "248 80 OFFCURVE", "186 47 OFFCURVE", "113 -2 CURVE", "103 -8 OFFCURVE", "95 -8 OFFCURVE", "88 -1 CURVE", "74 13 OFFCURVE", "86 36 OFFCURVE", "124 70 CURVE", "75 91 OFFCURVE", "52 117 OFFCURVE", "56 149 CURVE SMOOTH", "60 181 OFFCURVE", "82 219 OFFCURVE", "120 264 CURVE SMOOTH", "144 292 OFFCURVE", "166 306 OFFCURVE", "184 306 CURVE SMOOTH" ); } ); width = 381; } ); unicode = "0621,FE80"; }, { glyphname = "alefMadda-ar"; layers = ( { components = ( { name = aAlf.isol; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 81, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { components = ( { name = aAlf.isol; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 81, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = "0622,FE81"; }, { glyphname = "alefHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 1050}"; }, { name = TashkilBelow; position = "{134, -93}"; } ); components = ( { name = aAlf.isol; transform = "{1, 0, 0, 1, 12, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 118, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 234; }, { anchors = ( { name = TashkilAbove; position = "{93, 1050}"; }, { name = TashkilBelow; position = "{134, -93}"; } ); components = ( { name = aAlf.isol; transform = "{1, 0, 0, 1, 12, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 118, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 234; } ); unicode = "0623,FE83"; }, { glyphname = "wawHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 200, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 200, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "0624,FE85"; }, { glyphname = "alefHamzabelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{161, -342}"; } ); components = ( { name = aAlf.isol; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 161, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{161, -342}"; } ); components = ( { name = aAlf.isol; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 161, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = "0625,FE87"; }, { glyphname = "yehHamzaabove-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{164, 658}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 188, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{164, 658}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 188, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = "0626,FE89"; }, { glyphname = "alef-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = aAlf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = aAlf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = "0627,FE8D"; }, { glyphname = "beh-ar"; layers = ( { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "0628,FE8F"; }, { glyphname = "tehMarbuta-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 180, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 180, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = "0629,FE93"; }, { glyphname = "teh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "062A,FE95"; }, { glyphname = "theh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "062B,FE99"; }, { glyphname = "jeem-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "062C,FE9D"; }, { glyphname = "hah-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "062D,FEA1"; }, { glyphname = "khah-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "062E,FEA5"; }, { glyphname = "dal-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = "062F,FEA9"; }, { glyphname = "thal-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = "0630,FEAB"; }, { glyphname = "reh-ar"; layers = ( { anchors = ( { name = TaaAbove; position = "{160, 434}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TaaAbove; position = "{160, 434}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = "0631,FEAD"; }, { glyphname = "zain-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 160, 463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 160, 463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = "0632,FEAF"; }, { glyphname = "seen-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = "0633,FEB1"; }, { glyphname = "sheen-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = "0634,FEB5"; }, { glyphname = "sad-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1212; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1212; } ); unicode = "0635,FEB9"; }, { glyphname = "dad-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 821, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1212; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 821, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1212; } ); unicode = "0636,FEBD"; }, { glyphname = "tah-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aTaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 792; }, { anchors = ( { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aTaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 792; } ); unicode = "0637,FEC1"; }, { glyphname = "zah-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aTaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 566, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 792; }, { anchors = ( { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aTaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 566, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 792; } ); unicode = "0638,FEC5"; }, { glyphname = "ain-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = "0639,FEC9"; }, { glyphname = "ghain-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = "063A,FECD"; }, { glyphname = "kehehTwodotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 542, 628}"; }, { name = aGaf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 542, 628}"; }, { name = aGaf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 063B; }, { glyphname = "kehehThreedotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{503, -386}"; } ); components = ( { name = aGaf.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 457, -347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{503, -386}"; } ); components = ( { name = aGaf.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 457, -347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 063C; }, { glyphname = "yehFarsiVinverted-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 237, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 237, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 063D; }, { glyphname = "yehFarsiTwodotsabove-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 286, 336}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 286, 336}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 063E; }, { glyphname = "yehFarsiThreedotsabove-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 286, 336}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 286, 336}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 063F; }, { glyphname = "kashida-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{93, 244}"; }, { name = HamzaAbove; position = "{93, 244}"; }, { name = HamzaBelow; position = "{93, -92.773}"; }, { name = MarkAbove; position = "{93, 801}"; }, { name = MarkBelow; position = "{93, -327}"; }, { name = NoonAbove; position = "{93, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 81 OFFCURVE", "-22 91 OFFCURVE", "0 90 CURVE SMOOTH", "186 90 LINE SMOOTH", "208 91 OFFCURVE", "217 81 OFFCURVE", "211 59 CURVE SMOOTH", "198 15 LINE SMOOTH", "195 5 OFFCURVE", "192 0 OFFCURVE", "186 0 CURVE SMOOTH", "0 0 LINE SMOOTH" ); } ); width = 185; }, { anchors = ( { name = AlefAbove; position = "{93, 244}"; }, { name = HamzaAbove; position = "{93, 244}"; }, { name = HamzaBelow; position = "{93, -92.773}"; }, { name = MarkAbove; position = "{93, 801}"; }, { name = MarkBelow; position = "{93, -327}"; }, { name = NoonAbove; position = "{93, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-13 -15 OFFCURVE", "-22 -6 OFFCURVE", "-27 11 CURVE SMOOTH", "-40 55 LINE", "-46 87 OFFCURVE", "-32 104 OFFCURVE", "0 104 CURVE SMOOTH", "186 104 LINE SMOOTH", "214 104 OFFCURVE", "227 92 OFFCURVE", "227 69 CURVE SMOOTH", "227 63 OFFCURVE", "226 59 OFFCURVE", "225 55 CURVE SMOOTH", "212 11 LINE SMOOTH", "207 -6 OFFCURVE", "198 -15 OFFCURVE", "186 -15 CURVE SMOOTH", "0 -15 LINE SMOOTH" ); } ); width = 185; } ); unicode = 0640; }, { glyphname = "feh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = "0641,FED1"; }, { glyphname = "qaf-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 474, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 687; }, { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 474, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 687; } ); unicode = "0642,FED5"; }, { glyphname = "kaf-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = "0643,FED9"; }, { glyphname = "lam-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 603; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 603; } ); unicode = "0644,FEDD"; }, { glyphname = "meem-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aMem.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aMem.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = "0645,FEE1"; }, { glyphname = "noon-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = "0646,FEE5"; }, { glyphname = "heh-ar"; layers = ( { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = "0647,FEE9"; }, { glyphname = "waw-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{244, 317}"; }, { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = AlefAbove; position = "{244, 317}"; }, { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "0648,FEED"; }, { glyphname = "alefMaksura-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = HamzaBelow; position = "{545, -200}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = HamzaBelow; position = "{545, -200}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = "0649,FEEF"; }, { glyphname = "yeh-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = DigitAbove; position = "{286, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{365, -458}"; } ); components = ( { name = aYaa.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 355, -415}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = DigitAbove; position = "{286, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{365, -458}"; } ); components = ( { name = aYaa.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 355, -415}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = "064A,FEF1"; }, { glyphname = "fathatan-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{140, 1060}"; }, { name = _MarkAbove; position = "{258, 801}"; }, { name = _TashkilAbove; position = "{258, 801}"; }, { name = _TashkilAboveDot; position = "{258, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "357 1027 OFFCURVE", "366 1024 OFFCURVE", "359 1004 CURVE SMOOTH", "349 973 LINE SMOOTH", "346 963 OFFCURVE", "340 955 OFFCURVE", "332 950 CURVE SMOOTH", "157 843 LINE SMOOTH", "143 835 OFFCURVE", "138 837 OFFCURVE", "140 852 CURVE SMOOTH", "143 871 LINE SMOOTH", "145 880 OFFCURVE", "150 888 OFFCURVE", "159 895 CURVE SMOOTH", "336 1012 LINE SMOOTH" ); }, { closed = 1; nodes = ( "352 1124 OFFCURVE", "359 1122 OFFCURVE", "354 1104 CURVE SMOOTH", "347 1078 LINE SMOOTH", "344 1067 OFFCURVE", "337 1058 OFFCURVE", "326 1052 CURVE SMOOTH", "149 949 LINE SMOOTH", "127 936 OFFCURVE", "120 939 OFFCURVE", "128 959 CURVE SMOOTH", "137 978 LINE SMOOTH", "141 987 OFFCURVE", "145 994 OFFCURVE", "152 998 CURVE SMOOTH", "333 1112 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{140, 1060}"; }, { name = _MarkAbove; position = "{258, 801}"; }, { name = _TashkilAbove; position = "{258, 801}"; }, { name = _TashkilAboveDot; position = "{258, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "345 1026 OFFCURVE", "355 1029 OFFCURVE", "362 1027 CURVE SMOOTH", "369 1025 OFFCURVE", "371 1016 OFFCURVE", "366 1001 CURVE SMOOTH", "355 970 LINE SMOOTH", "351 958 OFFCURVE", "345 950 OFFCURVE", "336 944 CURVE SMOOTH", "161 836 LINE SMOOTH", "154 832 OFFCURVE", "147 831 OFFCURVE", "140 832 CURVE SMOOTH", "133 833 OFFCURVE", "130 840 OFFCURVE", "132 853 CURVE SMOOTH", "135 872 LINE", "137 883 OFFCURVE", "144 893 OFFCURVE", "155 900 CURVE", "333 1018 LINE SMOOTH" ); }, { closed = 1; nodes = ( "340 1125 OFFCURVE", "348 1127 OFFCURVE", "355 1125 CURVE SMOOTH", "362 1123 OFFCURVE", "364 1116 OFFCURVE", "361 1102 CURVE SMOOTH", "354 1076 LINE SMOOTH", "350 1063 OFFCURVE", "342 1053 OFFCURVE", "330 1046 CURVE SMOOTH", "153 943 LINE SMOOTH", "140 936 OFFCURVE", "130 933 OFFCURVE", "123 936 CURVE SMOOTH", "116 939 OFFCURVE", "115 948 OFFCURVE", "121 962 CURVE", "130 981 LINE SMOOTH", "135 992 OFFCURVE", "140 999 OFFCURVE", "148 1004 CURVE SMOOTH", "329 1118 LINE SMOOTH" ); } ); width = 0; } ); unicode = 064B; }, { glyphname = "dammatan-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{91, 1060}"; }, { name = _MarkAbove; position = "{249, 801}"; }, { name = _TashkilAbove; position = "{249, 801}"; }, { name = _TashkilAboveDot; position = "{249, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "307 1105 OFFCURVE", "314 1098 OFFCURVE", "318 1084 CURVE SMOOTH", "322 1070 OFFCURVE", "325 1055 OFFCURVE", "324 1041 CURVE SMOOTH", "323 1027 OFFCURVE", "321 1012 OFFCURVE", "316 998 CURVE", "327 991 OFFCURVE", "335 986 OFFCURVE", "340 983 CURVE SMOOTH", "345 980 OFFCURVE", "348 977 OFFCURVE", "347 974 CURVE SMOOTH", "340 941 LINE SMOOTH", "338 931 OFFCURVE", "330 929 OFFCURVE", "316 938 CURVE SMOOTH", "305 945 OFFCURVE", "296 951 OFFCURVE", "292 955 CURVE", "263 901 OFFCURVE", "219 866 OFFCURVE", "158 848 CURVE SMOOTH", "143 843 OFFCURVE", "135 846 OFFCURVE", "133 855 CURVE SMOOTH", "131 864 OFFCURVE", "138 871 OFFCURVE", "154 876 CURVE SMOOTH", "209 892 OFFCURVE", "249 923 OFFCURVE", "273 968 CURVE", "250 985 OFFCURVE", "237 998 OFFCURVE", "234 1008 CURVE SMOOTH", "231 1018 OFFCURVE", "232 1032 OFFCURVE", "238 1049 CURVE SMOOTH", "244 1066 OFFCURVE", "252 1081 OFFCURVE", "263 1092 CURVE SMOOTH", "274 1103 OFFCURVE", "286 1107 OFFCURVE", "298 1106 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "282 1053 OFFCURVE", "272 1054 OFFCURVE", "259 1047 CURVE SMOOTH", "253 1044 OFFCURVE", "254 1039 OFFCURVE", "261 1033 CURVE SMOOTH", "272 1024 OFFCURVE", "283 1018 OFFCURVE", "292 1014 CURVE SMOOTH", "295 1013 OFFCURVE", "295 1018 OFFCURVE", "294 1028 CURVE SMOOTH", "293 1036 OFFCURVE", "292 1041 OFFCURVE", "289 1045 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "218 1013 OFFCURVE", "219 1009 OFFCURVE", "216 1000 CURVE SMOOTH", "208 974 LINE SMOOTH", "204 963 OFFCURVE", "197 959 OFFCURVE", "185 962 CURVE SMOOTH", "174 966 OFFCURVE", "165 976 OFFCURVE", "159 992 CURVE SMOOTH", "153 1008 OFFCURVE", "152 1025 OFFCURVE", "156 1042 CURVE SMOOTH", "163 1073 OFFCURVE", "180 1103 OFFCURVE", "207 1132 CURVE SMOOTH", "268 1199 OFFCURVE", "311 1226 OFFCURVE", "337 1213 CURVE SMOOTH", "346 1208 OFFCURVE", "352 1200 OFFCURVE", "353 1187 CURVE SMOOTH", "354 1174 OFFCURVE", "350 1160 OFFCURVE", "342 1147 CURVE SMOOTH", "335 1136 OFFCURVE", "326 1135 OFFCURVE", "316 1145 CURVE SMOOTH", "298 1163 OFFCURVE", "276 1162 OFFCURVE", "250 1143 CURVE SMOOTH", "227 1127 OFFCURVE", "211 1110 OFFCURVE", "201 1094 CURVE SMOOTH", "189 1075 OFFCURVE", "182 1060 OFFCURVE", "181 1048 CURVE SMOOTH", "180 1036 OFFCURVE", "183 1027 OFFCURVE", "190 1020 CURVE SMOOTH", "197 1013 OFFCURVE", "205 1011 OFFCURVE", "213 1012 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{91, 1060}"; }, { name = _MarkAbove; position = "{249, 801}"; }, { name = _TashkilAbove; position = "{249, 801}"; }, { name = _TashkilAboveDot; position = "{249, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "243 982 OFFCURVE", "230 996 OFFCURVE", "227 1007 CURVE SMOOTH", "224 1018 OFFCURVE", "225 1032 OFFCURVE", "231 1051 CURVE SMOOTH", "237 1070 OFFCURVE", "247 1085 OFFCURVE", "259 1097 CURVE SMOOTH", "271 1109 OFFCURVE", "283 1115 OFFCURVE", "297 1113 CURVE SMOOTH", "311 1111 OFFCURVE", "320 1103 OFFCURVE", "325 1087 CURVE SMOOTH", "333 1060 OFFCURVE", "333 1031 OFFCURVE", "325 1001 CURVE", "334 996 OFFCURVE", "341 992 OFFCURVE", "347 988 CURVE SMOOTH", "353 984 OFFCURVE", "355 978 OFFCURVE", "354 972 CURVE", "348 939 LINE", "344 922 OFFCURVE", "332 920 OFFCURVE", "312 932 CURVE SMOOTH", "305 937 OFFCURVE", "299 941 OFFCURVE", "295 944 CURVE", "265 893 OFFCURVE", "220 858 OFFCURVE", "160 841 CURVE SMOOTH", "140 835 OFFCURVE", "128 840 OFFCURVE", "125 854 CURVE", "123 867 OFFCURVE", "132 877 OFFCURVE", "152 883 CURVE SMOOTH", "203 898 OFFCURVE", "240 926 OFFCURVE", "264 966 CURVE" ); }, { closed = 1; nodes = ( "287 1031 OFFCURVE", "285 1037 OFFCURVE", "281 1041 CURVE SMOOTH", "277 1045 OFFCURVE", "271 1045 OFFCURVE", "263 1041 CURVE", "269 1035 OFFCURVE", "277 1030 OFFCURVE", "287 1024 CURVE" ); }, { closed = 1; nodes = ( "219 1022 OFFCURVE", "225 1017 OFFCURVE", "225 1007 CURVE SMOOTH", "225 1004 OFFCURVE", "224 1001 OFFCURVE", "223 998 CURVE SMOOTH", "215 972 LINE SMOOTH", "210 957 OFFCURVE", "199 951 OFFCURVE", "183 956 CURVE", "169 961 OFFCURVE", "160 972 OFFCURVE", "153 990 CURVE SMOOTH", "146 1008 OFFCURVE", "145 1029 OFFCURVE", "151 1054 CURVE SMOOTH", "157 1079 OFFCURVE", "174 1107 OFFCURVE", "201 1137 CURVE SMOOTH", "264 1206 OFFCURVE", "311 1233 OFFCURVE", "341 1219 CURVE", "353 1213 OFFCURVE", "359 1203 OFFCURVE", "360 1188 CURVE SMOOTH", "361 1167 OFFCURVE", "356 1151 OFFCURVE", "346 1140 CURVE SMOOTH", "335 1128 OFFCURVE", "323 1128 OFFCURVE", "309 1141 CURVE SMOOTH", "295 1154 OFFCURVE", "277 1153 OFFCURVE", "255 1137 CURVE SMOOTH", "233 1121 OFFCURVE", "217 1105 OFFCURVE", "206 1088 CURVE SMOOTH", "195 1071 OFFCURVE", "189 1058 OFFCURVE", "188 1048 CURVE SMOOTH", "187 1038 OFFCURVE", "190 1031 OFFCURVE", "195 1026 CURVE SMOOTH", "200 1021 OFFCURVE", "205 1019 OFFCURVE", "211 1020 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 064C; }, { glyphname = "kasratan-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{140, -434}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{244, -327}"; }, { name = _TashkilBelowDot; position = "{244, -327}"; }, { name = _TashkilBelowHamza; position = "{244, -327}"; } ); components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, 0, -1473}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{140, -434}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{244, -327}"; }, { name = _TashkilBelowDot; position = "{244, -327}"; }, { name = _TashkilBelowHamza; position = "{244, -327}"; } ); components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, 0, -1473}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 064D; }, { glyphname = "fatha-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{145, 955}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "371 1031 OFFCURVE", "377 1028 OFFCURVE", "372 1011 CURVE SMOOTH", "362 979 LINE SMOOTH", "360 971 OFFCURVE", "352 962 OFFCURVE", "340 955 CURVE SMOOTH", "146 843 LINE SMOOTH", "134 836 OFFCURVE", "128 839 OFFCURVE", "128 852 CURVE SMOOTH", "128 869 LINE SMOOTH", "128 876 OFFCURVE", "135 883 OFFCURVE", "146 892 CURVE SMOOTH", "354 1021 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{145, 955}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "359 1034 OFFCURVE", "367 1035 OFFCURVE", "374 1033 CURVE SMOOTH", "381 1031 OFFCURVE", "382 1023 OFFCURVE", "378 1009 CURVE SMOOTH", "369 977 LINE SMOOTH", "366 967 OFFCURVE", "357 957 OFFCURVE", "344 949 CURVE", "149 836 LINE SMOOTH", "144 833 OFFCURVE", "140 832 OFFCURVE", "136 832 CURVE", "127 833 OFFCURVE", "122 840 OFFCURVE", "121 852 CURVE", "121 869 LINE", "122 879 OFFCURVE", "129 889 OFFCURVE", "142 898 CURVE", "350 1028 LINE SMOOTH" ); } ); width = 0; } ); unicode = 064E; }, { glyphname = "damma-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{195, 1074}"; }, { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "322 1148 OFFCURVE", "331 1142 OFFCURVE", "339 1130 CURVE SMOOTH", "356 1104 OFFCURVE", "356 1070 OFFCURVE", "339 1026 CURVE", "350 1020 OFFCURVE", "357 1015 OFFCURVE", "362 1013 CURVE SMOOTH", "371 1009 OFFCURVE", "373 1003 OFFCURVE", "368 993 CURVE SMOOTH", "357 972 LINE SMOOTH", "353 965 OFFCURVE", "348 963 OFFCURVE", "342 965 CURVE SMOOTH", "336 967 OFFCURVE", "327 971 OFFCURVE", "315 978 CURVE", "269 917 OFFCURVE", "217 872 OFFCURVE", "158 843 CURVE SMOOTH", "145 836 OFFCURVE", "137 837 OFFCURVE", "132 845 CURVE SMOOTH", "127 855 OFFCURVE", "131 864 OFFCURVE", "146 872 CURVE SMOOTH", "206 907 OFFCURVE", "254 948 OFFCURVE", "289 993 CURVE", "270 1003 OFFCURVE", "256 1012 OFFCURVE", "247 1021 CURVE SMOOTH", "231 1036 OFFCURVE", "227 1053 OFFCURVE", "234 1070 CURVE SMOOTH", "253 1116 OFFCURVE", "279 1141 OFFCURVE", "311 1146 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "285 1096 OFFCURVE", "273 1094 OFFCURVE", "264 1079 CURVE SMOOTH", "261 1075 OFFCURVE", "263 1070 OFFCURVE", "269 1064 CURVE SMOOTH", "275 1058 OFFCURVE", "290 1049 OFFCURVE", "311 1039 CURVE", "314 1059 OFFCURVE", "310 1074 OFFCURVE", "300 1082 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{195, 1074}"; }, { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "325 1156 OFFCURVE", "337 1149 OFFCURVE", "346 1134 CURVE SMOOTH", "363 1107 OFFCURVE", "364 1072 OFFCURVE", "348 1029 CURVE", "356 1025 OFFCURVE", "361 1022 OFFCURVE", "365 1020 CURVE SMOOTH", "379 1014 OFFCURVE", "382 1005 OFFCURVE", "375 990 CURVE SMOOTH", "363 968 LINE SMOOTH", "357 957 OFFCURVE", "351 954 OFFCURVE", "343 957 CURVE SMOOTH", "335 960 OFFCURVE", "326 964 OFFCURVE", "317 969 CURVE", "271 910 OFFCURVE", "220 865 OFFCURVE", "162 836 CURVE SMOOTH", "145 828 OFFCURVE", "132 830 OFFCURVE", "125 843 CURVE SMOOTH", "118 856 OFFCURVE", "124 868 OFFCURVE", "143 878 CURVE SMOOTH", "199 911 OFFCURVE", "244 948 OFFCURVE", "278 990 CURVE", "232 1016 OFFCURVE", "215 1044 OFFCURVE", "227 1073 CURVE SMOOTH", "248 1122 OFFCURVE", "275 1148 OFFCURVE", "310 1154 CURVE" ); }, { closed = 1; nodes = ( "304 1062 OFFCURVE", "302 1070 OFFCURVE", "298 1074 CURVE SMOOTH", "294 1078 OFFCURVE", "289 1080 OFFCURVE", "285 1083 CURVE SMOOTH", "280 1086 OFFCURVE", "276 1083 OFFCURVE", "271 1075 CURVE", "274 1068 OFFCURVE", "284 1060 OFFCURVE", "304 1050 CURVE" ); } ); width = 0; } ); unicode = 064F; }, { glyphname = "kasra-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{145, -400}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; } ); components = ( { name = "fatha-ar"; transform = "{1, 0, 0, 1, 0, -1338}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{145, -400}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; } ); components = ( { name = "fatha-ar"; transform = "{1, 0, 0, 1, 0, -1338}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 0650; }, { glyphname = "shadda-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{200, 1003}"; }, { name = TashkilTashkilBelow; position = "{198, 801}"; }, { name = _MarkAbove; position = "{208, 801}"; }, { name = _TashkilAbove; position = "{208, 801}"; }, { name = _TashkilAboveDot; position = "{208, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "301 998 OFFCURVE", "306 1005 OFFCURVE", "314 1004 CURVE SMOOTH", "324 1003 OFFCURVE", "329 996 OFFCURVE", "328 983 CURVE SMOOTH", "326 947 OFFCURVE", "319 918 OFFCURVE", "308 894 CURVE SMOOTH", "295 866 OFFCURVE", "276 850 OFFCURVE", "252 848 CURVE SMOOTH", "236 847 OFFCURVE", "222 855 OFFCURVE", "208 872 CURVE", "199 855 OFFCURVE", "185 843 OFFCURVE", "170 835 CURVE SMOOTH", "153 826 OFFCURVE", "137 825 OFFCURVE", "121 832 CURVE SMOOTH", "82 848 OFFCURVE", "78 894 OFFCURVE", "108 972 CURVE SMOOTH", "113 984 OFFCURVE", "120 988 OFFCURVE", "129 984 CURVE SMOOTH", "136 981 OFFCURVE", "139 974 OFFCURVE", "136 962 CURVE SMOOTH", "125 923 OFFCURVE", "129 902 OFFCURVE", "150 899 CURVE SMOOTH", "175 896 OFFCURVE", "195 923 OFFCURVE", "210 980 CURVE SMOOTH", "213 991 OFFCURVE", "219 996 OFFCURVE", "226 994 CURVE SMOOTH", "234 992 OFFCURVE", "238 987 OFFCURVE", "236 979 CURVE SMOOTH", "230 945 OFFCURVE", "238 928 OFFCURVE", "260 928 CURVE SMOOTH", "282 928 OFFCURVE", "295 946 OFFCURVE", "299 983 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{200, 1003}"; }, { name = TashkilTashkilBelow; position = "{198, 801}"; }, { name = _MarkAbove; position = "{208, 801}"; }, { name = _TashkilAbove; position = "{208, 801}"; }, { name = _TashkilAboveDot; position = "{208, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "296 1002 OFFCURVE", "302 1011 OFFCURVE", "314 1010 CURVE SMOOTH", "326 1009 OFFCURVE", "333 1002 OFFCURVE", "334 988 CURVE SMOOTH", "334 986 OFFCURVE", "333 985 OFFCURVE", "333 983 CURVE SMOOTH", "331 947 OFFCURVE", "324 916 OFFCURVE", "313 891 CURVE SMOOTH", "299 861 OFFCURVE", "278 844 OFFCURVE", "252 842 CURVE", "236 841 OFFCURVE", "222 848 OFFCURVE", "208 862 CURVE", "198 848 OFFCURVE", "187 837 OFFCURVE", "173 830 CURVE", "154 821 OFFCURVE", "137 819 OFFCURVE", "119 826 CURVE", "77 844 OFFCURVE", "71 893 OFFCURVE", "102 975 CURVE SMOOTH", "108 990 OFFCURVE", "117 995 OFFCURVE", "129 991 CURVE SMOOTH", "130 991 OFFCURVE", "131 990 OFFCURVE", "132 990 CURVE SMOOTH", "142 985 OFFCURVE", "146 975 OFFCURVE", "142 960 CURVE SMOOTH", "140 953 OFFCURVE", "138 946 OFFCURVE", "137 940 CURVE SMOOTH", "134 919 OFFCURVE", "139 907 OFFCURVE", "151 905 CURVE", "168 903 OFFCURVE", "183 918 OFFCURVE", "195 952 CURVE SMOOTH", "198 961 OFFCURVE", "201 970 OFFCURVE", "204 981 CURVE SMOOTH", "208 995 OFFCURVE", "215 1001 OFFCURVE", "226 1000 CURVE SMOOTH", "227 1000 OFFCURVE", "227 1000 OFFCURVE", "227 1000 CURVE SMOOTH", "238 997 OFFCURVE", "243 991 OFFCURVE", "242 982 CURVE SMOOTH", "242 981 OFFCURVE", "242 979 OFFCURVE", "242 978 CURVE", "242 979 LINE SMOOTH", "241 973 OFFCURVE", "240 967 OFFCURVE", "240 962 CURVE SMOOTH", "240 945 OFFCURVE", "245 936 OFFCURVE", "256 934 CURVE SMOOTH", "257 934 OFFCURVE", "259 934 OFFCURVE", "260 934 CURVE SMOOTH", "276 934 OFFCURVE", "286 946 OFFCURVE", "291 972 CURVE SMOOTH", "292 976 OFFCURVE", "293 980 OFFCURVE", "293 984 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0651; }, { glyphname = "sukun-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; }, { name = _TashkilAboveDot; position = "{182, 801}"; }, { name = _TashkilTashkilAbove; position = "{112, 791}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "144 1033 OFFCURVE", "178 1041 OFFCURVE", "220 1009 CURVE SMOOTH", "247 988 OFFCURVE", "262 964 OFFCURVE", "264 934 CURVE SMOOTH", "266 898 OFFCURVE", "255 871 OFFCURVE", "231 854 CURVE SMOOTH", "213 842 OFFCURVE", "192 837 OFFCURVE", "166 839 CURVE SMOOTH", "112 843 OFFCURVE", "91 876 OFFCURVE", "101 939 CURVE SMOOTH", "104 956 OFFCURVE", "110 970 OFFCURVE", "117 984 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "242 914 OFFCURVE", "242 927 OFFCURVE", "222 947 CURVE SMOOTH", "208 961 OFFCURVE", "190 969 OFFCURVE", "169 969 CURVE SMOOTH", "144 970 OFFCURVE", "131 959 OFFCURVE", "130 937 CURVE SMOOTH", "130 923 OFFCURVE", "135 913 OFFCURVE", "146 909 CURVE SMOOTH", "169 901 OFFCURVE", "195 901 OFFCURVE", "223 909 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; }, { name = _TashkilAboveDot; position = "{182, 801}"; }, { name = _TashkilTashkilAbove; position = "{112, 791}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "242 914 OFFCURVE", "242 927 OFFCURVE", "222 947 CURVE SMOOTH", "208 961 OFFCURVE", "190 969 OFFCURVE", "169 969 CURVE SMOOTH", "144 970 OFFCURVE", "131 959 OFFCURVE", "130 937 CURVE SMOOTH", "130 923 OFFCURVE", "135 913 OFFCURVE", "146 909 CURVE SMOOTH", "169 901 OFFCURVE", "195 901 OFFCURVE", "223 909 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "115 994 OFFCURVE", "119 1001 OFFCURVE", "123 1006 CURVE SMOOTH", "148 1040 OFFCURVE", "179 1044 OFFCURVE", "216 1020 CURVE SMOOTH", "219 1018 OFFCURVE", "222 1016 OFFCURVE", "224 1014 CURVE SMOOTH", "253 992 OFFCURVE", "268 965 OFFCURVE", "270 934 CURVE", "272 896 OFFCURVE", "259 867 OFFCURVE", "234 849 CURVE", "215 836 OFFCURVE", "193 831 OFFCURVE", "166 833 CURVE SMOOTH", "162 833 OFFCURVE", "157 834 OFFCURVE", "153 834 CURVE SMOOTH", "108 841 OFFCURVE", "88 871 OFFCURVE", "93 924 CURVE SMOOTH", "93 929 OFFCURVE", "94 934 OFFCURVE", "95 940 CURVE SMOOTH", "98 958 OFFCURVE", "103 973 OFFCURVE", "111 987 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0652; }, { glyphname = "madda-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{0, 767}"; }, { name = _TashkilAbove; position = "{0, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "208 915 OFFCURVE", "216 911 OFFCURVE", "220 901 CURVE SMOOTH", "224 891 OFFCURVE", "220 882 OFFCURVE", "211 876 CURVE SMOOTH", "139 829 OFFCURVE", "23 808 OFFCURVE", "-138 813 CURVE", "-144 800 OFFCURVE", "-150 790 OFFCURVE", "-156 783 CURVE SMOOTH", "-162 776 OFFCURVE", "-166 775 OFFCURVE", "-170 779 CURVE SMOOTH", "-217 827 LINE", "-226 835 OFFCURVE", "-216 856 OFFCURVE", "-186 891 CURVE SMOOTH", "-180 897 OFFCURVE", "-171 899 OFFCURVE", "-158 897 CURVE SMOOTH", "-40 878 OFFCURVE", "79 883 OFFCURVE", "196 912 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{0, 767}"; }, { name = _TashkilAbove; position = "{0, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "210 926 OFFCURVE", "222 921 OFFCURVE", "227 907 CURVE SMOOTH", "233 892 OFFCURVE", "229 881 OFFCURVE", "217 873 CURVE SMOOTH", "139 821 OFFCURVE", "24 800 OFFCURVE", "-128 808 CURVE", "-140 779 OFFCURVE", "-152 764 OFFCURVE", "-164 763 CURVE SMOOTH", "-171 763 OFFCURVE", "-176 764 OFFCURVE", "-181 769 CURVE SMOOTH", "-224 816 LINE SMOOTH", "-235 828 OFFCURVE", "-236 840 OFFCURVE", "-229 852 CURVE SMOOTH", "-200 896 LINE SMOOTH", "-193 907 OFFCURVE", "-178 911 OFFCURVE", "-155 907 CURVE SMOOTH", "-35 886 OFFCURVE", "81 890 OFFCURVE", "192 921 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0653; }, { glyphname = "hamzaabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{-24, 718}"; }, { name = _HamzaAbove; position = "{0, 464}"; }, { name = _MarkAbove; position = "{0, 405}"; }, { name = _TashkilAbove; position = "{0, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "38 473 OFFCURVE", "12 468 OFFCURVE", "-3 463 CURVE SMOOTH", "-18 458 OFFCURVE", "-46 446 OFFCURVE", "-87 428 CURVE SMOOTH", "-96 424 OFFCURVE", "-102 426 OFFCURVE", "-106 432 CURVE SMOOTH", "-114 444 OFFCURVE", "-101 460 OFFCURVE", "-67 481 CURVE", "-92 493 OFFCURVE", "-106 507 OFFCURVE", "-109 523 CURVE SMOOTH", "-114 550 OFFCURVE", "-103 584 OFFCURVE", "-75 622 CURVE", "-47 660 OFFCURVE", "-18 678 OFFCURVE", "14 675 CURVE SMOOTH", "34 673 OFFCURVE", "43 662 OFFCURVE", "41 641 CURVE SMOOTH", "39 620 OFFCURVE", "33 603 OFFCURVE", "23 589 CURVE SMOOTH", "13 575 OFFCURVE", "6 573 OFFCURVE", "-1 584 CURVE SMOOTH", "-8 595 OFFCURVE", "-18 602 OFFCURVE", "-31 603 CURVE SMOOTH", "-44 604 OFFCURVE", "-55 600 OFFCURVE", "-62 591 CURVE SMOOTH", "-69 582 OFFCURVE", "-70 573 OFFCURVE", "-61 565 CURVE SMOOTH", "-39 544 OFFCURVE", "-6 533 OFFCURVE", "37 532 CURVE SMOOTH", "44 532 OFFCURVE", "53 534 OFFCURVE", "67 537 CURVE SMOOTH", "81 540 OFFCURVE", "91 542 OFFCURVE", "96 542 CURVE SMOOTH", "101 542 OFFCURVE", "106 539 OFFCURVE", "108 535 CURVE SMOOTH", "110 531 OFFCURVE", "111 528 OFFCURVE", "109 524 CURVE SMOOTH", "96 497 OFFCURVE", "85 482 OFFCURVE", "74 480 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{-24, 718}"; }, { name = _HamzaAbove; position = "{0, 464}"; }, { name = _MarkAbove; position = "{0, 405}"; }, { name = _TashkilAbove; position = "{0, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "39 466 OFFCURVE", "14 460 OFFCURVE", "-1 455 CURVE SMOOTH", "-16 450 OFFCURVE", "-43 439 OFFCURVE", "-84 421 CURVE", "-96 416 OFFCURVE", "-106 419 OFFCURVE", "-112 428 CURVE", "-121 443 OFFCURVE", "-112 460 OFFCURVE", "-82 481 CURVE", "-102 493 OFFCURVE", "-113 507 OFFCURVE", "-116 522 CURVE", "-121 551 OFFCURVE", "-109 586 OFFCURVE", "-80 626 CURVE SMOOTH", "-51 666 OFFCURVE", "-19 685 OFFCURVE", "15 682 CURVE SMOOTH", "40 680 OFFCURVE", "51 667 OFFCURVE", "49 643 CURVE SMOOTH", "47 619 OFFCURVE", "41 602 OFFCURVE", "34 592 CURVE SMOOTH", "27 582 OFFCURVE", "22 575 OFFCURVE", "19 573 CURVE SMOOTH", "9 566 OFFCURVE", "1 568 OFFCURVE", "-6 578 CURVE SMOOTH", "-13 588 OFFCURVE", "-21 594 OFFCURVE", "-32 595 CURVE SMOOTH", "-43 596 OFFCURVE", "-51 593 OFFCURVE", "-56 587 CURVE SMOOTH", "-61 581 OFFCURVE", "-61 576 OFFCURVE", "-56 571 CURVE SMOOTH", "-35 551 OFFCURVE", "-3 541 OFFCURVE", "37 540 CURVE SMOOTH", "44 540 OFFCURVE", "53 541 OFFCURVE", "67 544 CURVE SMOOTH", "81 547 OFFCURVE", "90 549 OFFCURVE", "97 549 CURVE SMOOTH", "104 549 OFFCURVE", "110 545 OFFCURVE", "114 539 CURVE", "118 532 OFFCURVE", "118 527 OFFCURVE", "116 521 CURVE", "102 492 OFFCURVE", "88 476 OFFCURVE", "75 473 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0654; }, { glyphname = "hamzabelow-ar"; layers = ( { anchors = ( { name = TashkilBelowHamza; position = "{0, -488}"; }, { name = TashkilTashkilBelow; position = "{0, -547}"; }, { name = _HamzaBelow; position = "{0, -244}"; }, { name = _MarkBelow; position = "{0, -225}"; }, { name = _TashkilBelow; position = "{0, -244}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 0, -920}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowHamza; position = "{0, -488}"; }, { name = TashkilTashkilBelow; position = "{0, -547}"; }, { name = _HamzaBelow; position = "{0, -244}"; }, { name = _MarkBelow; position = "{0, -225}"; }, { name = _TashkilBelow; position = "{0, -244}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 0, -920}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 0655; }, { glyphname = "alefbelow-ar"; layers = ( { anchors = ( { name = _MarkBelow; position = "{137, -327}"; }, { name = _TashkilBelow; position = "{156, -327}"; }, { name = _TashkilBelowDot; position = "{156, -327}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 0, -1528}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{137, -327}"; }, { name = _TashkilBelow; position = "{156, -327}"; }, { name = _TashkilBelowDot; position = "{156, -327}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 0, -1528}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 0656; }, { glyphname = "dammainverted-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{300, 1203}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; }, { name = _TashkilTashkilAbove; position = "{271, 801}"; } ); components = ( { name = "damma-ar"; transform = "{-1, 0, 0, -1, 501, 1985}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{300, 1203}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; }, { name = _TashkilTashkilAbove; position = "{271, 801}"; } ); components = ( { name = "damma-ar"; transform = "{-1, 0, 0, -1, 501, 1985}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 0657; }, { glyphname = "noonghunnaabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; }, { name = _TashkilAboveDot; position = "{182, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "152 1016 OFFCURVE", "157 1020 OFFCURVE", "161 1020 CURVE SMOOTH", "165 1020 OFFCURVE", "167 1014 OFFCURVE", "166 1006 CURVE SMOOTH", "159 952 OFFCURVE", "176 922 OFFCURVE", "216 917 CURVE SMOOTH", "229 915 OFFCURVE", "240 923 OFFCURVE", "250 937 CURVE SMOOTH", "257 947 OFFCURVE", "262 951 OFFCURVE", "266 949 CURVE SMOOTH", "270 947 OFFCURVE", "270 942 OFFCURVE", "267 931 CURVE SMOOTH", "249 873 OFFCURVE", "221 843 OFFCURVE", "183 843 CURVE SMOOTH", "141 843 OFFCURVE", "118 863 OFFCURVE", "115 904 CURVE SMOOTH", "113 938 OFFCURVE", "123 973 OFFCURVE", "147 1009 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; }, { name = _TashkilAboveDot; position = "{182, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "148 1022 OFFCURVE", "155 1027 OFFCURVE", "162 1027 CURVE", "171 1026 OFFCURVE", "175 1018 OFFCURVE", "173 1005 CURVE SMOOTH", "167 956 OFFCURVE", "182 930 OFFCURVE", "217 925 CURVE", "227 924 OFFCURVE", "236 929 OFFCURVE", "244 941 CURVE SMOOTH", "253 954 OFFCURVE", "262 960 OFFCURVE", "270 956 CURVE", "277 952 OFFCURVE", "278 943 OFFCURVE", "274 929 CURVE", "255 868 OFFCURVE", "224 837 OFFCURVE", "183 836 CURVE", "137 836 OFFCURVE", "112 858 OFFCURVE", "108 904 CURVE", "106 940 OFFCURVE", "117 976 OFFCURVE", "141 1013 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 0658; }, { glyphname = "fathaHorizont-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "112 845 OFFCURVE", "108 851 OFFCURVE", "121 863 CURVE SMOOTH", "146 886 LINE SMOOTH", "153 892 OFFCURVE", "163 896 OFFCURVE", "177 896 CURVE SMOOTH", "411 896 LINE SMOOTH", "431 896 OFFCURVE", "435 889 OFFCURVE", "422 877 CURVE SMOOTH", "396 854 LINE SMOOTH", "389 848 OFFCURVE", "380 845 OFFCURVE", "366 845 CURVE SMOOTH", "132 845 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "121 837 OFFCURVE", "113 840 OFFCURVE", "108 845 CURVE SMOOTH", "103 850 OFFCURVE", "106 858 OFFCURVE", "116 868 CURVE SMOOTH", "142 892 LINE", "150 899 OFFCURVE", "162 903 OFFCURVE", "177 903 CURVE", "411 903 LINE SMOOTH", "422 903 OFFCURVE", "430 900 OFFCURVE", "435 895 CURVE SMOOTH", "440 890 OFFCURVE", "437 882 OFFCURVE", "427 872 CURVE SMOOTH", "401 849 LINE", "393 842 OFFCURVE", "381 837 OFFCURVE", "366 837 CURVE", "132 837 LINE SMOOTH" ); } ); width = 0; } ); unicode = 0659; }, { glyphname = "vabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _MarkAbove; position = "{0, 410}"; }, { name = _MarkDotAbove; position = "{0, 464}"; }, { name = _TashkilAbove; position = "{0, 464}"; }, { name = _VAbove; position = "{0, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "88 611 LINE SMOOTH", "90 607 OFFCURVE", "91 605 OFFCURVE", "91 602 CURVE SMOOTH", "91 599 OFFCURVE", "90 595 OFFCURVE", "88 592 CURVE SMOOTH", "55 538 OFFCURVE", "33 491 OFFCURVE", "22 452 CURVE SMOOTH", "13 445 LINE SMOOTH", "12 444 OFFCURVE", "10 444 OFFCURVE", "8 444 CURVE SMOOTH", "5 444 OFFCURVE", "3 446 OFFCURVE", "0 449 CURVE SMOOTH", "-38 496 OFFCURVE", "-68 546 OFFCURVE", "-89 599 CURVE SMOOTH", "-91 604 OFFCURVE", "-92 608 OFFCURVE", "-92 611 CURVE SMOOTH", "-92 617 OFFCURVE", "-89 621 OFFCURVE", "-83 623 CURVE SMOOTH", "-75 626 OFFCURVE", "-68 621 OFFCURVE", "-64 610 CURVE SMOOTH", "-55 586 OFFCURVE", "-37 552 OFFCURVE", "-12 509 CURVE", "2 558 OFFCURVE", "22 601 OFFCURVE", "51 636 CURVE SMOOTH", "55 641 OFFCURVE", "59 643 OFFCURVE", "62 643 CURVE SMOOTH", "65 643 OFFCURVE", "67 641 OFFCURVE", "69 638 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _MarkAbove; position = "{0, 410}"; }, { name = _MarkDotAbove; position = "{0, 464}"; }, { name = _TashkilAbove; position = "{0, 464}"; }, { name = _VAbove; position = "{0, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "94 615 LINE", "100 605 OFFCURVE", "100 596 OFFCURVE", "94 588 CURVE", "62 535 OFFCURVE", "40 489 OFFCURVE", "29 450 CURVE SMOOTH", "28 448 OFFCURVE", "27 447 OFFCURVE", "26 446 CURVE SMOOTH", "17 439 LINE", "9 434 OFFCURVE", "2 436 OFFCURVE", "-5 444 CURVE SMOOTH", "-43 492 OFFCURVE", "-74 542 OFFCURVE", "-96 596 CURVE SMOOTH", "-103 613 OFFCURVE", "-99 625 OFFCURVE", "-86 629 CURVE SMOOTH", "-73 633 OFFCURVE", "-63 627 OFFCURVE", "-57 612 CURVE", "-49 591 OFFCURVE", "-35 562 OFFCURVE", "-15 527 CURVE", "-1 571 OFFCURVE", "20 609 OFFCURVE", "46 641 CURVE SMOOTH", "52 647 OFFCURVE", "57 650 OFFCURVE", "62 650 CURVE SMOOTH", "67 650 OFFCURVE", "72 647 OFFCURVE", "75 642 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 065A; }, { glyphname = "vinvertedabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _MarkAbove; position = "{0, 410}"; }, { name = _TashkilAbove; position = "{0, 464}"; }, { name = _TashkilAboveDot; position = "{0, 464}"; }, { name = _VAbove; position = "{0, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "75 455 OFFCURVE", "73 453 OFFCURVE", "70 453 CURVE SMOOTH", "67 452 OFFCURVE", "63 454 OFFCURVE", "59 458 CURVE SMOOTH", "27 490 OFFCURVE", "1 529 OFFCURVE", "-18 577 CURVE", "-39 532 OFFCURVE", "-51 497 OFFCURVE", "-58 472 CURVE SMOOTH", "-61 461 OFFCURVE", "-67 455 OFFCURVE", "-75 457 CURVE SMOOTH", "-82 458 OFFCURVE", "-85 462 OFFCURVE", "-86 468 CURVE SMOOTH", "-86 471 OFFCURVE", "-85 474 OFFCURVE", "-84 479 CURVE SMOOTH", "-68 534 OFFCURVE", "-44 588 OFFCURVE", "-11 639 CURVE SMOOTH", "-9 643 OFFCURVE", "-7 645 OFFCURVE", "-4 645 CURVE SMOOTH", "-2 645 OFFCURVE", "-1 645 OFFCURVE", "0 644 CURVE SMOOTH", "10 638 LINE SMOOTH", "26 600 OFFCURVE", "53 555 OFFCURVE", "91 505 CURVE SMOOTH", "94 502 OFFCURVE", "95 500 OFFCURVE", "95 497 CURVE SMOOTH", "95 494 OFFCURVE", "95 491 OFFCURVE", "93 487 CURVE SMOOTH", "77 458 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _MarkAbove; position = "{0, 410}"; }, { name = _TashkilAbove; position = "{0, 464}"; }, { name = _TashkilAboveDot; position = "{0, 464}"; }, { name = _VAbove; position = "{0, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-55 456 OFFCURVE", "-62 450 OFFCURVE", "-74 450 CURVE SMOOTH", "-86 450 OFFCURVE", "-92 456 OFFCURVE", "-93 468 CURVE SMOOTH", "-93 472 OFFCURVE", "-93 476 OFFCURVE", "-91 481 CURVE SMOOTH", "-75 537 OFFCURVE", "-51 592 OFFCURVE", "-18 643 CURVE", "-11 652 OFFCURVE", "-4 654 OFFCURVE", "4 649 CURVE SMOOTH", "12 644 OFFCURVE", "16 642 OFFCURVE", "17 641 CURVE SMOOTH", "33 603 OFFCURVE", "59 559 OFFCURVE", "96 510 CURVE", "103 502 OFFCURVE", "104 493 OFFCURVE", "99 483 CURVE", "83 454 LINE SMOOTH", "80 449 OFFCURVE", "77 446 OFFCURVE", "71 445 CURVE SMOOTH", "65 444 OFFCURVE", "60 447 OFFCURVE", "54 453 CURVE SMOOTH", "25 482 OFFCURVE", "1 517 OFFCURVE", "-18 559 CURVE", "-34 522 OFFCURVE", "-45 492 OFFCURVE", "-51 470 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 065B; }, { glyphname = "dotvowelbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{110, -596}"; }, { name = _MarkBelow; position = "{110, -327}"; }, { name = _TashkilBelow; position = "{110, -327}"; }, { name = _TashkilBelowDot; position = "{110, -327}"; } ); components = ( { name = "dotStopabove-ar"; transform = "{1, 0, 0, 1, 1, -1349}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{110, -596}"; }, { name = _MarkBelow; position = "{110, -327}"; }, { name = _TashkilBelow; position = "{110, -327}"; }, { name = _TashkilBelowDot; position = "{110, -327}"; } ); components = ( { name = "dotStopabove-ar"; transform = "{1, 0, 0, 1, 1, -1349}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 065C; }, { glyphname = "dammareversed-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "221 1141 OFFCURVE", "247 1116 OFFCURVE", "266 1070 CURVE SMOOTH", "273 1053 OFFCURVE", "268 1036 OFFCURVE", "252 1021 CURVE SMOOTH", "243 1012 OFFCURVE", "229 1003 OFFCURVE", "210 993 CURVE", "245 948 OFFCURVE", "294 907 OFFCURVE", "354 872 CURVE SMOOTH", "369 864 OFFCURVE", "373 855 OFFCURVE", "368 845 CURVE SMOOTH", "363 837 OFFCURVE", "354 836 OFFCURVE", "341 843 CURVE SMOOTH", "282 872 OFFCURVE", "231 917 OFFCURVE", "185 978 CURVE", "173 971 OFFCURVE", "163 967 OFFCURVE", "157 965 CURVE SMOOTH", "151 963 OFFCURVE", "147 965 OFFCURVE", "143 972 CURVE SMOOTH", "131 993 LINE SMOOTH", "126 1003 OFFCURVE", "128 1009 OFFCURVE", "137 1013 CURVE SMOOTH", "142 1015 OFFCURVE", "150 1020 OFFCURVE", "161 1026 CURVE", "144 1070 OFFCURVE", "143 1104 OFFCURVE", "160 1130 CURVE SMOOTH", "168 1142 OFFCURVE", "178 1148 OFFCURVE", "189 1146 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "189 1074 OFFCURVE", "186 1059 OFFCURVE", "189 1039 CURVE", "210 1049 OFFCURVE", "224 1058 OFFCURVE", "230 1064 CURVE SMOOTH", "236 1070 OFFCURVE", "238 1075 OFFCURVE", "235 1079 CURVE SMOOTH", "226 1094 OFFCURVE", "214 1096 OFFCURVE", "199 1082 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "225 1148 OFFCURVE", "252 1121 OFFCURVE", "272 1073 CURVE SMOOTH", "284 1044 OFFCURVE", "268 1016 OFFCURVE", "222 990 CURVE", "257 948 OFFCURVE", "301 911 OFFCURVE", "357 878 CURVE", "376 868 OFFCURVE", "382 856 OFFCURVE", "375 843 CURVE SMOOTH", "368 830 OFFCURVE", "355 827 OFFCURVE", "338 836 CURVE SMOOTH", "280 865 OFFCURVE", "229 910 OFFCURVE", "183 969 CURVE", "174 964 OFFCURVE", "165 960 OFFCURVE", "157 957 CURVE SMOOTH", "149 954 OFFCURVE", "142 957 OFFCURVE", "136 968 CURVE SMOOTH", "125 990 LINE SMOOTH", "118 1004 OFFCURVE", "120 1014 OFFCURVE", "134 1020 CURVE SMOOTH", "138 1022 OFFCURVE", "145 1025 OFFCURVE", "152 1029 CURVE", "137 1073 OFFCURVE", "137 1108 OFFCURVE", "154 1134 CURVE SMOOTH", "164 1149 OFFCURVE", "176 1156 OFFCURVE", "190 1154 CURVE" ); }, { closed = 1; nodes = ( "215 1060 OFFCURVE", "227 1069 OFFCURVE", "229 1075 CURVE", "223 1085 OFFCURVE", "216 1087 OFFCURVE", "208 1079 CURVE SMOOTH", "200 1071 OFFCURVE", "195 1061 OFFCURVE", "195 1050 CURVE" ); } ); width = 0; } ); unicode = 065D; }, { glyphname = "fathatwodots-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); components = ( { name = "fatha-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "153 1018 OFFCURVE", "154 1018 OFFCURVE", "155 1018 CURVE SMOOTH", "164 1018 OFFCURVE", "176 1011 OFFCURVE", "192 997 CURVE SMOOTH", "193 996 OFFCURVE", "194 994 OFFCURVE", "193 992 CURVE SMOOTH", "169 955 LINE SMOOTH", "168 953 OFFCURVE", "167 953 OFFCURVE", "165 955 CURVE SMOOTH", "163 957 OFFCURVE", "156 961 OFFCURVE", "145 968 CURVE SMOOTH", "134 975 OFFCURVE", "128 978 OFFCURVE", "128 979 CURVE SMOOTH", "128 980 OFFCURVE", "128 980 OFFCURVE", "128 980 CURVE SMOOTH", "153 1017 LINE SMOOTH" ); }, { closed = 1; nodes = ( "332 913 OFFCURVE", "332 913 OFFCURVE", "333 913 CURVE SMOOTH", "334 913 OFFCURVE", "338 912 OFFCURVE", "346 909 CURVE SMOOTH", "354 906 OFFCURVE", "359 902 OFFCURVE", "364 897 CURVE SMOOTH", "369 891 OFFCURVE", "372 888 OFFCURVE", "371 887 CURVE SMOOTH", "347 850 LINE SMOOTH", "347 849 OFFCURVE", "347 849 OFFCURVE", "346 849 CURVE SMOOTH", "345 849 OFFCURVE", "342 851 OFFCURVE", "335 856 CURVE SMOOTH", "328 861 OFFCURVE", "322 865 OFFCURVE", "315 868 CURVE SMOOTH", "308 871 OFFCURVE", "306 873 OFFCURVE", "306 874 CURVE SMOOTH", "306 875 OFFCURVE", "306 875 OFFCURVE", "306 875 CURVE SMOOTH", "331 912 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); components = ( { name = "fatha-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "148 1023 OFFCURVE", "154 1025 OFFCURVE", "161 1025 CURVE SMOOTH", "168 1025 OFFCURVE", "180 1017 OFFCURVE", "197 1002 CURVE", "201 997 OFFCURVE", "202 993 OFFCURVE", "200 988 CURVE", "176 951 LINE", "172 946 OFFCURVE", "168 945 OFFCURVE", "163 948 CURVE SMOOTH", "152 955 OFFCURVE", "143 961 OFFCURVE", "134 965 CURVE", "126 970 OFFCURVE", "122 975 OFFCURVE", "121 979 CURVE", "122 983 LINE", "146 1020 LINE SMOOTH" ); }, { closed = 1; nodes = ( "327 919 OFFCURVE", "329 920 OFFCURVE", "332 920 CURVE SMOOTH", "335 920 OFFCURVE", "340 919 OFFCURVE", "349 916 CURVE SMOOTH", "357 913 OFFCURVE", "363 910 OFFCURVE", "366 907 CURVE SMOOTH", "369 904 OFFCURVE", "372 900 OFFCURVE", "376 896 CURVE SMOOTH", "380 892 OFFCURVE", "380 888 OFFCURVE", "377 883 CURVE SMOOTH", "354 846 LINE", "349 840 OFFCURVE", "341 840 OFFCURVE", "333 848 CURVE SMOOTH", "325 855 OFFCURVE", "317 861 OFFCURVE", "310 863 CURVE SMOOTH", "303 865 OFFCURVE", "298 869 OFFCURVE", "298 874 CURVE", "299 878 LINE", "325 916 LINE" ); } ); width = 0; } ); unicode = 065E; }, { glyphname = "wavyhamzabelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{0, -547}"; }, { name = _HamzaBelow; position = "{0, -244}"; }, { name = _MarkBelow; position = "{0, -225}"; }, { name = _TashkilBelow; position = "{0, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-77 -447 OFFCURVE", "-71 -443 OFFCURVE", "-67 -438 CURVE", "-92 -426 OFFCURVE", "-106 -412 OFFCURVE", "-109 -396 CURVE SMOOTH", "-114 -369 OFFCURVE", "-103 -336 OFFCURVE", "-75 -298 CURVE", "-47 -260 OFFCURVE", "-18 -242 OFFCURVE", "14 -245 CURVE SMOOTH", "34 -247 OFFCURVE", "43 -258 OFFCURVE", "41 -279 CURVE SMOOTH", "39 -300 OFFCURVE", "33 -317 OFFCURVE", "23 -331 CURVE SMOOTH", "13 -345 OFFCURVE", "6 -346 OFFCURVE", "-1 -335 CURVE SMOOTH", "-8 -324 OFFCURVE", "-18 -318 OFFCURVE", "-31 -317 CURVE SMOOTH", "-44 -316 OFFCURVE", "-55 -320 OFFCURVE", "-62 -329 CURVE SMOOTH", "-69 -338 OFFCURVE", "-70 -346 OFFCURVE", "-61 -354 CURVE SMOOTH", "-39 -375 OFFCURVE", "-6 -387 OFFCURVE", "37 -388 CURVE SMOOTH", "44 -388 OFFCURVE", "53 -386 OFFCURVE", "67 -383 CURVE SMOOTH", "81 -380 OFFCURVE", "91 -378 OFFCURVE", "96 -378 CURVE SMOOTH", "101 -378 OFFCURVE", "106 -381 OFFCURVE", "108 -385 CURVE SMOOTH", "110 -389 OFFCURVE", "111 -392 OFFCURVE", "109 -396 CURVE SMOOTH", "97 -423 OFFCURVE", "85 -437 OFFCURVE", "74 -439 CURVE SMOOTH", "23 -450 OFFCURVE", "-30 -468 OFFCURVE", "-87 -492 CURVE SMOOTH", "-104 -499 OFFCURVE", "-130 -495 OFFCURVE", "-165 -481 CURVE SMOOTH", "-182 -474 OFFCURVE", "-195 -476 OFFCURVE", "-207 -484 CURVE SMOOTH", "-219 -492 OFFCURVE", "-232 -506 OFFCURVE", "-246 -526 CURVE", "-248 -529 OFFCURVE", "-250 -529 OFFCURVE", "-253 -526 CURVE SMOOTH", "-256 -523 OFFCURVE", "-256 -520 OFFCURVE", "-255 -517 CURVE SMOOTH", "-232 -477 OFFCURVE", "-212 -451 OFFCURVE", "-195 -440 CURVE SMOOTH", "-180 -430 OFFCURVE", "-164 -427 OFFCURVE", "-148 -434 CURVE SMOOTH", "-113 -448 OFFCURVE", "-91 -453 OFFCURVE", "-84 -450 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{0, -547}"; }, { name = _HamzaBelow; position = "{0, -244}"; }, { name = _MarkBelow; position = "{0, -225}"; }, { name = _TashkilBelow; position = "{0, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-84 -442 OFFCURVE", "-83 -441 OFFCURVE", "-81 -440 CURVE", "-102 -428 OFFCURVE", "-113 -414 OFFCURVE", "-116 -398 CURVE", "-121 -369 OFFCURVE", "-109 -334 OFFCURVE", "-80 -294 CURVE SMOOTH", "-51 -254 OFFCURVE", "-19 -235 OFFCURVE", "15 -238 CURVE SMOOTH", "40 -240 OFFCURVE", "51 -253 OFFCURVE", "49 -277 CURVE SMOOTH", "47 -301 OFFCURVE", "41 -318 OFFCURVE", "34 -328 CURVE SMOOTH", "27 -338 OFFCURVE", "22 -345 OFFCURVE", "19 -347 CURVE SMOOTH", "9 -354 OFFCURVE", "1 -352 OFFCURVE", "-6 -342 CURVE SMOOTH", "-13 -332 OFFCURVE", "-21 -326 OFFCURVE", "-32 -325 CURVE SMOOTH", "-43 -324 OFFCURVE", "-51 -327 OFFCURVE", "-56 -333 CURVE SMOOTH", "-61 -339 OFFCURVE", "-61 -344 OFFCURVE", "-56 -349 CURVE SMOOTH", "-35 -369 OFFCURVE", "-3 -379 OFFCURVE", "37 -380 CURVE SMOOTH", "44 -380 OFFCURVE", "53 -378 OFFCURVE", "67 -375 CURVE SMOOTH", "81 -372 OFFCURVE", "90 -371 OFFCURVE", "97 -371 CURVE SMOOTH", "104 -371 OFFCURVE", "110 -375 OFFCURVE", "114 -381 CURVE", "118 -388 OFFCURVE", "118 -393 OFFCURVE", "116 -399 CURVE SMOOTH", "103 -428 OFFCURVE", "89 -444 OFFCURVE", "75 -447 CURVE", "25 -458 OFFCURVE", "-28 -475 OFFCURVE", "-84 -499 CURVE SMOOTH", "-103 -507 OFFCURVE", "-131 -503 OFFCURVE", "-167 -488 CURVE SMOOTH", "-181 -482 OFFCURVE", "-195 -484 OFFCURVE", "-205 -491 CURVE SMOOTH", "-215 -498 OFFCURVE", "-227 -511 OFFCURVE", "-240 -530 CURVE SMOOTH", "-245 -537 OFFCURVE", "-251 -538 OFFCURVE", "-257 -531 CURVE SMOOTH", "-263 -524 OFFCURVE", "-264 -519 OFFCURVE", "-261 -513 CURVE SMOOTH", "-237 -472 OFFCURVE", "-217 -446 OFFCURVE", "-199 -434 CURVE SMOOTH", "-181 -422 OFFCURVE", "-164 -420 OFFCURVE", "-146 -427 CURVE SMOOTH", "-116 -439 OFFCURVE", "-95 -444 OFFCURVE", "-87 -443 CURVE" ); } ); width = 0; } ); unicode = 065F; }, { glyphname = "zero-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "256 326 OFFCURVE", "266 328 OFFCURVE", "281 318 CURVE SMOOTH", "364 265 LINE SMOOTH", "376 257 OFFCURVE", "379 246 OFFCURVE", "374 231 CURVE SMOOTH", "342 132 LINE SMOOTH", "336 115 OFFCURVE", "325 113 OFFCURVE", "308 123 CURVE SMOOTH", "217 176 LINE SMOOTH", "209 181 OFFCURVE", "208 191 OFFCURVE", "213 206 CURVE SMOOTH", "251 312 LINE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "246 342 OFFCURVE", "264 347 OFFCURVE", "289 331 CURVE SMOOTH", "372 277 LINE SMOOTH", "390 265 OFFCURVE", "395 248 OFFCURVE", "388 226 CURVE SMOOTH", "356 128 LINE SMOOTH", "347 100 OFFCURVE", "329 94 OFFCURVE", "301 110 CURVE SMOOTH", "210 164 LINE SMOOTH", "195 173 OFFCURVE", "191 188 OFFCURVE", "199 210 CURVE SMOOTH", "237 317 LINE SMOOTH" ); } ); width = 585; } ); unicode = 0660; }, { glyphname = "one-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "255 552 OFFCURVE", "269 546 OFFCURVE", "286 506 CURVE", "325 406 OFFCURVE", "352 310 OFFCURVE", "365 218 CURVE SMOOTH", "383 89 OFFCURVE", "379 -10 OFFCURVE", "356 -79 CURVE SMOOTH", "352 -89 OFFCURVE", "347 -94 OFFCURVE", "338 -92 CURVE SMOOTH", "329 -90 OFFCURVE", "325 -84 OFFCURVE", "325 -72 CURVE SMOOTH", "327 99 OFFCURVE", "292 247 OFFCURVE", "221 373 CURVE SMOOTH", "210 393 OFFCURVE", "207 410 OFFCURVE", "212 424 CURVE SMOOTH", "246 524 LINE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "251 584 OFFCURVE", "273 579 OFFCURVE", "299 512 CURVE SMOOTH", "339 411 OFFCURVE", "367 302 OFFCURVE", "380 185 CURVE SMOOTH", "393 68 OFFCURVE", "388 -21 OFFCURVE", "363 -84 CURVE SMOOTH", "356 -103 OFFCURVE", "345 -111 OFFCURVE", "334 -107 CURVE SMOOTH", "323 -103 OFFCURVE", "317 -92 OFFCURVE", "317 -72 CURVE SMOOTH", "318 90 OFFCURVE", "282 236 OFFCURVE", "208 366 CURVE SMOOTH", "195 389 OFFCURVE", "191 410 OFFCURVE", "198 429 CURVE SMOOTH", "232 529 LINE SMOOTH" ); } ); width = 585; } ); unicode = 0661; }, { glyphname = "two-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "144 551 OFFCURVE", "157 548 OFFCURVE", "176 512 CURVE SMOOTH", "209 450 OFFCURVE", "253 418 OFFCURVE", "308 418 CURVE SMOOTH", "387 418 OFFCURVE", "430 454 OFFCURVE", "439 523 CURVE SMOOTH", "441 535 OFFCURVE", "447 541 OFFCURVE", "456 541 CURVE SMOOTH", "465 541 OFFCURVE", "471 537 OFFCURVE", "474 530 CURVE SMOOTH", "477 523 OFFCURVE", "474 499 OFFCURVE", "468 462 CURVE SMOOTH", "462 425 OFFCURVE", "449 392 OFFCURVE", "428 362 CURVE SMOOTH", "395 313 OFFCURVE", "338 295 OFFCURVE", "259 308 CURVE", "301 150 OFFCURVE", "313 22 OFFCURVE", "293 -77 CURVE SMOOTH", "292 -84 OFFCURVE", "289 -89 OFFCURVE", "283 -91 CURVE SMOOTH", "277 -93 OFFCURVE", "272 -93 OFFCURVE", "268 -89 CURVE SMOOTH", "264 -85 OFFCURVE", "262 -80 OFFCURVE", "261 -73 CURVE SMOOTH", "250 99 OFFCURVE", "204 248 OFFCURVE", "125 372 CURVE SMOOTH", "113 391 OFFCURVE", "109 406 OFFCURVE", "112 419 CURVE SMOOTH", "137 521 LINE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "136 579 OFFCURVE", "157 578 OFFCURVE", "188 520 CURVE SMOOTH", "219 462 OFFCURVE", "259 433 OFFCURVE", "308 433 CURVE SMOOTH", "377 433 OFFCURVE", "418 464 OFFCURVE", "433 525 CURVE SMOOTH", "438 545 OFFCURVE", "446 554 OFFCURVE", "460 553 CURVE SMOOTH", "473 552 OFFCURVE", "480 543 OFFCURVE", "481 526 CURVE SMOOTH", "482 509 OFFCURVE", "479 482 OFFCURVE", "473 446 CURVE SMOOTH", "467 410 OFFCURVE", "455 379 OFFCURVE", "437 354 CURVE SMOOTH", "403 305 OFFCURVE", "350 284 OFFCURVE", "278 291 CURVE", "313 141 OFFCURVE", "321 17 OFFCURVE", "300 -80 CURVE SMOOTH", "297 -92 OFFCURVE", "292 -100 OFFCURVE", "285 -104 CURVE SMOOTH", "278 -108 OFFCURVE", "271 -107 OFFCURVE", "264 -101 CURVE SMOOTH", "257 -95 OFFCURVE", "254 -87 OFFCURVE", "253 -74 CURVE SMOOTH", "242 97 OFFCURVE", "196 243 OFFCURVE", "113 364 CURVE", "99 386 OFFCURVE", "94 406 OFFCURVE", "98 423 CURVE SMOOTH", "123 524 LINE SMOOTH" ); } ); width = 585; } ); unicode = 0662; }, { glyphname = "three-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "488 543 OFFCURVE", "493 549 OFFCURVE", "503 549 CURVE SMOOTH", "513 549 OFFCURVE", "519 540 OFFCURVE", "518 520 CURVE SMOOTH", "516 479 OFFCURVE", "509 433 OFFCURVE", "496 384 CURVE SMOOTH", "478 319 OFFCURVE", "438 296 OFFCURVE", "375 316 CURVE SMOOTH", "355 322 OFFCURVE", "338 331 OFFCURVE", "324 342 CURVE", "292 307 OFFCURVE", "257 291 OFFCURVE", "218 294 CURVE", "260 125 OFFCURVE", "271 2 OFFCURVE", "251 -77 CURVE SMOOTH", "249 -84 OFFCURVE", "246 -88 OFFCURVE", "240 -90 CURVE SMOOTH", "234 -92 OFFCURVE", "230 -92 OFFCURVE", "226 -89 CURVE SMOOTH", "222 -86 OFFCURVE", "220 -80 OFFCURVE", "219 -72 CURVE SMOOTH", "208 106 OFFCURVE", "163 254 OFFCURVE", "84 371 CURVE SMOOTH", "70 391 OFFCURVE", "65 407 OFFCURVE", "68 420 CURVE SMOOTH", "93 521 LINE SMOOTH", "99 544 OFFCURVE", "111 544 OFFCURVE", "128 518 CURVE SMOOTH", "167 461 OFFCURVE", "191 430 OFFCURVE", "199 425 CURVE SMOOTH", "218 414 OFFCURVE", "241 410 OFFCURVE", "270 413 CURVE SMOOTH", "310 417 OFFCURVE", "336 453 OFFCURVE", "350 522 CURVE SMOOTH", "353 535 OFFCURVE", "357 542 OFFCURVE", "365 541 CURVE SMOOTH", "373 540 OFFCURVE", "378 535 OFFCURVE", "380 527 CURVE SMOOTH", "382 519 OFFCURVE", "381 501 OFFCURVE", "376 476 CURVE SMOOTH", "371 451 OFFCURVE", "387 433 OFFCURVE", "423 423 CURVE", "461 413 OFFCURVE", "482 449 OFFCURVE", "487 531 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "521 561 OFFCURVE", "529 547 OFFCURVE", "528 519 CURVE SMOOTH", "526 469 OFFCURVE", "517 419 OFFCURVE", "502 372 CURVE SMOOTH", "487 325 OFFCURVE", "462 300 OFFCURVE", "426 296 CURVE SMOOTH", "394 293 OFFCURVE", "360 302 OFFCURVE", "326 323 CURVE", "299 297 OFFCURVE", "269 283 OFFCURVE", "236 280 CURVE", "272 120 OFFCURVE", "279 -1 OFFCURVE", "258 -81 CURVE SMOOTH", "255 -92 OFFCURVE", "250 -98 OFFCURVE", "243 -101 CURVE SMOOTH", "224 -108 OFFCURVE", "213 -98 OFFCURVE", "211 -73 CURVE SMOOTH", "201 93 OFFCURVE", "155 238 OFFCURVE", "72 362 CURVE SMOOTH", "56 386 OFFCURVE", "50 406 OFFCURVE", "54 423 CURVE SMOOTH", "79 525 LINE SMOOTH", "90 569 OFFCURVE", "110 569 OFFCURVE", "140 526 CURVE", "177 472 OFFCURVE", "199 443 OFFCURVE", "206 438 CURVE SMOOTH", "219 429 OFFCURVE", "240 426 OFFCURVE", "268 428 CURVE SMOOTH", "307 431 OFFCURVE", "332 463 OFFCURVE", "343 525 CURVE SMOOTH", "346 544 OFFCURVE", "355 553 OFFCURVE", "370 551 CURVE SMOOTH", "380 550 OFFCURVE", "386 543 OFFCURVE", "389 532 CURVE SMOOTH", "392 521 OFFCURVE", "390 502 OFFCURVE", "385 474 CURVE SMOOTH", "383 462 OFFCURVE", "392 451 OFFCURVE", "411 443 CURVE SMOOTH", "420 439 OFFCURVE", "427 437 OFFCURVE", "433 437 CURVE SMOOTH", "459 436 OFFCURVE", "473 467 OFFCURVE", "477 532 CURVE SMOOTH", "478 551 OFFCURVE", "486 561 OFFCURVE", "502 561 CURVE" ); } ); width = 585; } ); unicode = 0663; }, { glyphname = "four-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "296 546 OFFCURVE", "301 548 OFFCURVE", "308 548 CURVE SMOOTH", "315 548 OFFCURVE", "320 547 OFFCURVE", "324 542 CURVE SMOOTH", "328 537 OFFCURVE", "329 532 OFFCURVE", "328 526 CURVE SMOOTH", "310 450 LINE SMOOTH", "309 445 OFFCURVE", "303 440 OFFCURVE", "295 437 CURVE SMOOTH", "257 424 OFFCURVE", "234 409 OFFCURVE", "226 393 CURVE SMOOTH", "220 382 OFFCURVE", "223 372 OFFCURVE", "236 364 CURVE SMOOTH", "282 335 OFFCURVE", "324 316 OFFCURVE", "362 307 CURVE SMOOTH", "378 303 OFFCURVE", "382 291 OFFCURVE", "373 271 CURVE SMOOTH", "355 232 LINE SMOOTH", "348 217 OFFCURVE", "339 205 OFFCURVE", "328 198 CURVE SMOOTH", "289 172 OFFCURVE", "259 146 OFFCURVE", "237 120 CURVE SMOOTH", "223 103 OFFCURVE", "224 90 OFFCURVE", "241 79 CURVE SMOOTH", "297 44 OFFCURVE", "355 22 OFFCURVE", "415 15 CURVE SMOOTH", "434 13 OFFCURVE", "439 3 OFFCURVE", "432 -15 CURVE SMOOTH", "403 -84 LINE SMOOTH", "399 -94 OFFCURVE", "391 -98 OFFCURVE", "380 -97 CURVE SMOOTH", "301 -89 OFFCURVE", "232 -64 OFFCURVE", "174 -23 CURVE SMOOTH", "161 -14 OFFCURVE", "158 3 OFFCURVE", "165 28 CURVE SMOOTH", "187 111 LINE SMOOTH", "194 135 OFFCURVE", "223 170 OFFCURVE", "275 216 CURVE", "239 229 OFFCURVE", "204 248 OFFCURVE", "167 273 CURVE SMOOTH", "148 286 OFFCURVE", "146 308 OFFCURVE", "161 341 CURVE SMOOTH", "193 409 LINE SMOOTH", "213 452 OFFCURVE", "246 496 OFFCURVE", "292 542 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "306 568 OFFCURVE", "321 567 OFFCURVE", "335 550 CURVE SMOOTH", "342 542 OFFCURVE", "344 533 OFFCURVE", "342 523 CURVE SMOOTH", "324 446 LINE", "321 436 OFFCURVE", "313 428 OFFCURVE", "300 423 CURVE", "258 411 OFFCURVE", "235 400 OFFCURVE", "229 388 CURVE SMOOTH", "228 385 OFFCURVE", "229 382 OFFCURVE", "234 379 CURVE SMOOTH", "276 352 OFFCURVE", "320 333 OFFCURVE", "365 321 CURVE SMOOTH", "392 314 OFFCURVE", "401 300 OFFCURVE", "392 279 CURVE SMOOTH", "369 226 LINE SMOOTH", "363 213 OFFCURVE", "350 200 OFFCURVE", "329 186 CURVE SMOOTH", "289 159 OFFCURVE", "260 134 OFFCURVE", "241 111 CURVE SMOOTH", "236 104 OFFCURVE", "239 98 OFFCURVE", "249 91 CURVE SMOOTH", "308 56 OFFCURVE", "369 34 OFFCURVE", "430 26 CURVE SMOOTH", "451 23 OFFCURVE", "457 11 OFFCURVE", "448 -11 CURVE SMOOTH", "417 -90 LINE SMOOTH", "410 -107 OFFCURVE", "397 -114 OFFCURVE", "378 -112 CURVE SMOOTH", "299 -103 OFFCURVE", "230 -78 OFFCURVE", "172 -38 CURVE", "153 -24 OFFCURVE", "149 -1 OFFCURVE", "157 30 CURVE SMOOTH", "180 115 LINE", "187 139 OFFCURVE", "212 171 OFFCURVE", "255 211 CURVE", "225 224 OFFCURVE", "197 240 OFFCURVE", "169 259 CURVE SMOOTH", "141 278 OFFCURVE", "136 308 OFFCURVE", "155 348 CURVE SMOOTH", "187 416 LINE SMOOTH", "210 465 OFFCURVE", "244 509 OFFCURVE", "289 552 CURVE SMOOTH" ); } ); width = 585; } ); unicode = 0664; }, { glyphname = "five-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "256 422 OFFCURVE", "278 430 OFFCURVE", "302 424 CURVE SMOOTH", "346 413 OFFCURVE", "384 391 OFFCURVE", "416 357 CURVE SMOOTH", "460 310 OFFCURVE", "473 240 OFFCURVE", "454 146 CURVE SMOOTH", "445 99 OFFCURVE", "424 64 OFFCURVE", "391 39 CURVE SMOOTH", "358 14 OFFCURVE", "316 1 OFFCURVE", "266 1 CURVE SMOOTH", "216 1 OFFCURVE", "179 11 OFFCURVE", "157 32 CURVE SMOOTH", "135 53 OFFCURVE", "124 86 OFFCURVE", "124 133 CURVE SMOOTH", "123 225 OFFCURVE", "160 314 OFFCURVE", "236 399 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "342 274 OFFCURVE", "293 299 OFFCURVE", "242 295 CURVE SMOOTH", "211 293 OFFCURVE", "193 270 OFFCURVE", "188 223 CURVE SMOOTH", "184 193 OFFCURVE", "189 170 OFFCURVE", "203 154 CURVE SMOOTH", "224 129 OFFCURVE", "261 121 OFFCURVE", "311 133 CURVE SMOOTH", "347 141 OFFCURVE", "375 155 OFFCURVE", "396 175 CURVE SMOOTH", "409 186 OFFCURVE", "407 200 OFFCURVE", "391 219 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "342 274 OFFCURVE", "293 299 OFFCURVE", "242 295 CURVE", "211 293 OFFCURVE", "193 270 OFFCURVE", "188 223 CURVE", "184 193 OFFCURVE", "189 170 OFFCURVE", "203 154 CURVE", "224 129 OFFCURVE", "261 121 OFFCURVE", "311 133 CURVE", "347 141 OFFCURVE", "375 155 OFFCURVE", "396 175 CURVE", "409 186 OFFCURVE", "407 200 OFFCURVE", "391 219 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "249 446 OFFCURVE", "275 455 OFFCURVE", "305 448 CURVE SMOOTH", "352 436 OFFCURVE", "393 412 OFFCURVE", "427 377 CURVE SMOOTH", "476 325 OFFCURVE", "490 247 OFFCURVE", "468 143 CURVE SMOOTH", "457 89 OFFCURVE", "433 47 OFFCURVE", "399 17 CURVE", "364 -10 OFFCURVE", "319 -23 OFFCURVE", "265 -23 CURVE SMOOTH", "211 -23 OFFCURVE", "172 -11 OFFCURVE", "147 12 CURVE SMOOTH", "122 35 OFFCURVE", "109 76 OFFCURVE", "109 133 CURVE", "108 235 OFFCURVE", "147 330 OFFCURVE", "225 419 CURVE SMOOTH" ); } ); width = 585; } ); unicode = 0665; }, { glyphname = "six-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "116 549 OFFCURVE", "128 549 OFFCURVE", "147 521 CURVE SMOOTH", "185 464 OFFCURVE", "260 452 OFFCURVE", "369 485 CURVE SMOOTH", "387 490 OFFCURVE", "395 484 OFFCURVE", "393 468 CURVE SMOOTH", "380 338 OFFCURVE", "409 210 OFFCURVE", "480 82 CURVE SMOOTH", "489 65 OFFCURVE", "493 47 OFFCURVE", "490 30 CURVE SMOOTH", "473 -65 LINE SMOOTH", "467 -97 OFFCURVE", "456 -100 OFFCURVE", "441 -71 CURVE SMOOTH", "371 61 OFFCURVE", "340 203 OFFCURVE", "345 353 CURVE SMOOTH", "345 362 OFFCURVE", "343 366 OFFCURVE", "339 365 CURVE SMOOTH", "234 338 OFFCURVE", "156 352 OFFCURVE", "106 408 CURVE SMOOTH", "97 418 OFFCURVE", "93 430 OFFCURVE", "96 443 CURVE SMOOTH", "111 522 LINE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "107 577 OFFCURVE", "127 577 OFFCURVE", "160 529 CURVE SMOOTH", "193 481 OFFCURVE", "258 470 OFFCURVE", "357 498 CURVE SMOOTH", "388 507 OFFCURVE", "403 497 OFFCURVE", "400 467 CURVE SMOOTH", "389 340 OFFCURVE", "420 214 OFFCURVE", "493 89 CURVE", "504 68 OFFCURVE", "507 48 OFFCURVE", "504 28 CURVE SMOOTH", "487 -68 LINE SMOOTH", "478 -119 OFFCURVE", "458 -122 OFFCURVE", "428 -78 CURVE", "363 54 OFFCURVE", "332 196 OFFCURVE", "337 348 CURVE", "226 324 OFFCURVE", "145 340 OFFCURVE", "95 398 CURVE SMOOTH", "82 412 OFFCURVE", "78 428 OFFCURVE", "82 446 CURVE SMOOTH", "98 530 LINE SMOOTH" ); } ); width = 585; } ); unicode = 0666; }, { glyphname = "seven-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "309 -84 OFFCURVE", "307 -89 OFFCURVE", "302 -91 CURVE SMOOTH", "297 -93 OFFCURVE", "293 -93 OFFCURVE", "289 -90 CURVE SMOOTH", "285 -87 OFFCURVE", "282 -83 OFFCURVE", "282 -76 CURVE SMOOTH", "280 -31 OFFCURVE", "260 37 OFFCURVE", "222 127 CURVE SMOOTH", "184 217 OFFCURVE", "138 310 OFFCURVE", "81 405 CURVE SMOOTH", "78 411 OFFCURVE", "77 419 OFFCURVE", "79 429 CURVE SMOOTH", "92 510 LINE SMOOTH", "97 545 OFFCURVE", "105 553 OFFCURVE", "116 533 CURVE SMOOTH", "186 409 OFFCURVE", "247 269 OFFCURVE", "302 110 CURVE SMOOTH", "309 89 OFFCURVE", "316 87 OFFCURVE", "320 106 CURVE SMOOTH", "347 227 OFFCURVE", "400 362 OFFCURVE", "479 511 CURVE SMOOTH", "484 521 OFFCURVE", "489 527 OFFCURVE", "494 527 CURVE SMOOTH", "499 527 OFFCURVE", "501 523 OFFCURVE", "502 514 CURVE SMOOTH", "508 417 LINE SMOOTH", "508 409 OFFCURVE", "506 400 OFFCURVE", "500 389 CURVE SMOOTH", "455 313 OFFCURVE", "416 239 OFFCURVE", "387 166 CURVE SMOOTH", "358 93 OFFCURVE", "332 12 OFFCURVE", "311 -77 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "315 -93 OFFCURVE", "310 -101 OFFCURVE", "303 -105 CURVE SMOOTH", "296 -109 OFFCURVE", "290 -108 OFFCURVE", "284 -102 CURVE SMOOTH", "278 -96 OFFCURVE", "276 -88 OFFCURVE", "275 -77 CURVE SMOOTH", "274 -46 OFFCURVE", "253 20 OFFCURVE", "213 122 CURVE SMOOTH", "194 171 OFFCURVE", "145 263 OFFCURVE", "68 397 CURVE SMOOTH", "63 405 OFFCURVE", "62 417 OFFCURVE", "64 431 CURVE SMOOTH", "81 532 LINE SMOOTH", "84 548 OFFCURVE", "89 557 OFFCURVE", "99 561 CURVE SMOOTH", "109 565 OFFCURVE", "118 558 OFFCURVE", "128 541 CURVE SMOOTH", "199 418 OFFCURVE", "260 274 OFFCURVE", "311 111 CURVE", "343 258 OFFCURVE", "394 394 OFFCURVE", "466 518 CURVE SMOOTH", "474 533 OFFCURVE", "484 540 OFFCURVE", "494 541 CURVE SMOOTH", "508 543 OFFCURVE", "515 534 OFFCURVE", "517 515 CURVE SMOOTH", "523 418 LINE SMOOTH", "524 408 OFFCURVE", "520 396 OFFCURVE", "512 381 CURVE", "430 265 OFFCURVE", "366 111 OFFCURVE", "318 -81 CURVE SMOOTH" ); } ); width = 585; } ); unicode = 0667; }, { glyphname = "eight-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "277 534 OFFCURVE", "279 540 OFFCURVE", "284 542 CURVE SMOOTH", "289 544 OFFCURVE", "293 544 OFFCURVE", "297 541 CURVE SMOOTH", "301 538 OFFCURVE", "304 533 OFFCURVE", "304 526 CURVE SMOOTH", "306 481 OFFCURVE", "326 413 OFFCURVE", "364 323 CURVE SMOOTH", "402 233 OFFCURVE", "448 140 OFFCURVE", "505 45 CURVE SMOOTH", "508 39 OFFCURVE", "509 31 OFFCURVE", "507 21 CURVE SMOOTH", "494 -60 LINE SMOOTH", "489 -95 OFFCURVE", "481 -103 OFFCURVE", "470 -83 CURVE SMOOTH", "400 41 OFFCURVE", "339 181 OFFCURVE", "284 340 CURVE SMOOTH", "277 361 OFFCURVE", "270 363 OFFCURVE", "266 344 CURVE SMOOTH", "239 223 OFFCURVE", "186 88 OFFCURVE", "107 -61 CURVE SMOOTH", "102 -71 OFFCURVE", "97 -76 OFFCURVE", "92 -76 CURVE SMOOTH", "87 -76 OFFCURVE", "84 -73 OFFCURVE", "83 -64 CURVE SMOOTH", "78 33 LINE SMOOTH", "78 41 OFFCURVE", "80 51 OFFCURVE", "86 62 CURVE SMOOTH", "131 138 OFFCURVE", "169 211 OFFCURVE", "198 284 CURVE SMOOTH", "227 357 OFFCURVE", "254 438 OFFCURVE", "275 527 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "271 548 OFFCURVE", "276 556 OFFCURVE", "283 560 CURVE SMOOTH", "290 564 OFFCURVE", "296 564 OFFCURVE", "302 558 CURVE SMOOTH", "308 552 OFFCURVE", "310 544 OFFCURVE", "311 533 CURVE SMOOTH", "312 502 OFFCURVE", "333 435 OFFCURVE", "373 333 CURVE SMOOTH", "392 284 OFFCURVE", "441 192 OFFCURVE", "518 58 CURVE SMOOTH", "523 50 OFFCURVE", "523 38 OFFCURVE", "521 24 CURVE SMOOTH", "505 -76 LINE SMOOTH", "502 -92 OFFCURVE", "497 -101 OFFCURVE", "487 -105 CURVE SMOOTH", "477 -109 OFFCURVE", "468 -102 OFFCURVE", "458 -85 CURVE SMOOTH", "387 38 OFFCURVE", "326 182 OFFCURVE", "275 345 CURVE", "243 198 OFFCURVE", "192 62 OFFCURVE", "120 -62 CURVE SMOOTH", "112 -77 OFFCURVE", "102 -84 OFFCURVE", "92 -85 CURVE SMOOTH", "78 -87 OFFCURVE", "71 -79 OFFCURVE", "69 -60 CURVE SMOOTH", "63 37 LINE SMOOTH", "62 47 OFFCURVE", "66 59 OFFCURVE", "74 74 CURVE", "156 190 OFFCURVE", "220 344 OFFCURVE", "268 536 CURVE SMOOTH" ); } ); width = 585; } ); unicode = 0668; }, { glyphname = "nine-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "266 556 OFFCURVE", "309 556 OFFCURVE", "348 500 CURVE SMOOTH", "380 455 OFFCURVE", "396 389 OFFCURVE", "399 302 CURVE SMOOTH", "402 216 OFFCURVE", "420 143 OFFCURVE", "452 84 CURVE SMOOTH", "462 66 OFFCURVE", "465 50 OFFCURVE", "462 35 CURVE SMOOTH", "444 -70 LINE SMOOTH", "438 -103 OFFCURVE", "429 -101 OFFCURVE", "414 -66 CURVE SMOOTH", "375 25 OFFCURVE", "353 112 OFFCURVE", "348 194 CURVE", "202 180 OFFCURVE", "127 215 OFFCURVE", "123 301 CURVE SMOOTH", "121 348 OFFCURVE", "153 414 OFFCURVE", "220 500 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "311 383 OFFCURVE", "290 405 OFFCURVE", "260 414 CURVE SMOOTH", "224 424 OFFCURVE", "200 409 OFFCURVE", "188 370 CURVE SMOOTH", "181 349 OFFCURVE", "186 333 OFFCURVE", "202 323 CURVE SMOOTH", "224 309 OFFCURVE", "260 303 OFFCURVE", "310 306 CURVE SMOOTH", "326 307 OFFCURVE", "330 321 OFFCURVE", "322 348 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "311 383 OFFCURVE", "290 405 OFFCURVE", "260 414 CURVE", "224 424 OFFCURVE", "200 409 OFFCURVE", "188 370 CURVE SMOOTH", "181 349 OFFCURVE", "186 333 OFFCURVE", "202 323 CURVE SMOOTH", "224 309 OFFCURVE", "260 303 OFFCURVE", "310 306 CURVE SMOOTH", "326 307 OFFCURVE", "330 321 OFFCURVE", "322 348 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "190 167 OFFCURVE", "113 209 OFFCURVE", "108 301 CURVE", "106 353 OFFCURVE", "140 424 OFFCURVE", "213 514 CURVE", "255 568 OFFCURVE", "296 576 OFFCURVE", "336 540 CURVE SMOOTH", "381 499 OFFCURVE", "405 420 OFFCURVE", "409 302 CURVE SMOOTH", "411 226 OFFCURVE", "429 156 OFFCURVE", "464 91 CURVE SMOOTH", "475 70 OFFCURVE", "480 51 OFFCURVE", "477 33 CURVE SMOOTH", "459 -73 LINE SMOOTH", "456 -88 OFFCURVE", "454 -97 OFFCURVE", "450 -100 CURVE SMOOTH", "432 -118 OFFCURVE", "416 -109 OFFCURVE", "402 -75 CURVE SMOOTH", "401 -73 OFFCURVE", "400 -72 OFFCURVE", "400 -72 CURVE SMOOTH", "367 16 OFFCURVE", "347 99 OFFCURVE", "339 178 CURVE" ); } ); width = 585; } ); unicode = 0669; }, { glyphname = "percent-ar"; layers = ( { components = ( { name = slash; transform = "{1, 0, 0, 1, 156, 0}"; }, { name = dot.percent; }, { name = dot.percent; transform = "{1, 0, 0, 1, -425, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { components = ( { name = slash; transform = "{1, 0, 0, 1, 156, 0}"; }, { name = dot.percent; }, { name = dot.percent; transform = "{1, 0, 0, 1, -425, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 066A; }, { glyphname = "decimalseparator-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "150 170 OFFCURVE", "168 174 OFFCURVE", "198 157 CURVE SMOOTH", "242 132 OFFCURVE", "259 90 OFFCURVE", "250 29 CURVE SMOOTH", "240 -41 OFFCURVE", "216 -99 OFFCURVE", "180 -145 CURVE SMOOTH", "144 -191 OFFCURVE", "105 -215 OFFCURVE", "63 -217 CURVE SMOOTH", "22 -219 OFFCURVE", "16 -210 OFFCURVE", "44 -189 CURVE SMOOTH", "85 -159 OFFCURVE", "121 -125 OFFCURVE", "152 -86 CURVE SMOOTH", "180 -51 OFFCURVE", "201 -11 OFFCURVE", "215 35 CURVE SMOOTH", "218 44 OFFCURVE", "212 50 OFFCURVE", "198 53 CURVE SMOOTH", "151 63 LINE SMOOTH", "136 66 OFFCURVE", "131 75 OFFCURVE", "134 90 CURVE SMOOTH", "145 146 LINE SMOOTH" ); } ); width = 299; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "139 186 OFFCURVE", "164 193 OFFCURVE", "205 170 CURVE SMOOTH", "254 142 OFFCURVE", "273 93 OFFCURVE", "263 23 CURVE SMOOTH", "253 -47 OFFCURVE", "229 -106 OFFCURVE", "191 -155 CURVE SMOOTH", "153 -204 OFFCURVE", "111 -229 OFFCURVE", "64 -231 CURVE SMOOTH", "44 -232 OFFCURVE", "32 -232 OFFCURVE", "27 -229 CURVE SMOOTH", "22 -226 OFFCURVE", "18 -223 OFFCURVE", "16 -220 CURVE SMOOTH", "7 -207 OFFCURVE", "13 -193 OFFCURVE", "35 -177 CURVE SMOOTH", "121 -115 OFFCURVE", "176 -44 OFFCURVE", "201 37 CURVE", "199 38 OFFCURVE", "197 39 OFFCURVE", "195 39 CURVE SMOOTH", "148 49 LINE SMOOTH", "132 52 OFFCURVE", "124 61 OFFCURVE", "120 75 CURVE SMOOTH", "119 81 OFFCURVE", "118 87 OFFCURVE", "119 93 CURVE SMOOTH", "131 149 LINE" ); } ); width = 299; } ); unicode = 066B; }, { glyphname = "thousandseparator-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "150 190 OFFCURVE", "132 186 OFFCURVE", "102 203 CURVE SMOOTH", "58 228 OFFCURVE", "41 270 OFFCURVE", "50 331 CURVE SMOOTH", "60 401 OFFCURVE", "84 459 OFFCURVE", "120 505 CURVE SMOOTH", "156 551 OFFCURVE", "195 575 OFFCURVE", "237 577 CURVE SMOOTH", "278 579 OFFCURVE", "284 570 OFFCURVE", "256 549 CURVE SMOOTH", "217 521 OFFCURVE", "180 486 OFFCURVE", "147 446 CURVE SMOOTH", "118 411 OFFCURVE", "97 370 OFFCURVE", "84 325 CURVE SMOOTH", "81 316 OFFCURVE", "88 310 OFFCURVE", "102 307 CURVE SMOOTH", "148 297 LINE SMOOTH", "163 294 OFFCURVE", "169 285 OFFCURVE", "166 270 CURVE SMOOTH", "155 214 LINE SMOOTH" ); } ); width = 299; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "161 174 OFFCURVE", "136 167 OFFCURVE", "95 190 CURVE SMOOTH", "46 218 OFFCURVE", "27 267 OFFCURVE", "37 337 CURVE SMOOTH", "47 407 OFFCURVE", "71 466 OFFCURVE", "109 515 CURVE SMOOTH", "147 564 OFFCURVE", "189 590 OFFCURVE", "236 592 CURVE SMOOTH", "256 593 OFFCURVE", "268 592 OFFCURVE", "273 589 CURVE SMOOTH", "278 586 OFFCURVE", "282 584 OFFCURVE", "284 581 CURVE SMOOTH", "293 568 OFFCURVE", "286 553 OFFCURVE", "264 537 CURVE SMOOTH", "177 474 OFFCURVE", "123 403 OFFCURVE", "99 323 CURVE", "101 322 OFFCURVE", "103 321 OFFCURVE", "105 321 CURVE SMOOTH", "151 312 LINE SMOOTH", "167 309 OFFCURVE", "176 299 OFFCURVE", "180 285 CURVE SMOOTH", "181 279 OFFCURVE", "181 273 OFFCURVE", "180 267 CURVE SMOOTH", "169 211 LINE" ); } ); width = 299; } ); unicode = 066C; }, { glyphname = "asterisk-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "218 371 LINE", "272 537 LINE", "327 371 LINE", "502 371 LINE", "361 267 LINE", "415 101 LINE", "272 204 LINE", "130 101 LINE", "184 267 LINE", "42 371 LINE" ); } ); width = 544; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "207 385 LINE", "272 584 LINE", "338 385 LINE", "547 385 LINE", "378 262 LINE", "443 62 LINE", "272 186 LINE", "102 62 LINE", "167 262 LINE", "-2 385 LINE" ); } ); width = 544; } ); unicode = 066D; }, { glyphname = "behDotless-ar"; layers = ( { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 066E; }, { glyphname = "qafDotless-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 687; }, { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 687; } ); unicode = 066F; }, { glyphname = "alefabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove2; position = "{120, 1230}"; }, { name = _AlefAbove; position = "{193, 801}"; }, { name = _HamzaAbove; position = "{153, 969}"; }, { name = _MarkAbove; position = "{190, 801}"; }, { name = _TashkilAbove; position = "{193, 801}"; }, { name = _TashkilTashkilAbove; position = "{195, 867}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "121 1172 OFFCURVE", "127 1172 OFFCURVE", "136 1161 CURVE SMOOTH", "199 1091 OFFCURVE", "221 1001 OFFCURVE", "201 893 CURVE SMOOTH", "200 886 OFFCURVE", "196 883 OFFCURVE", "191 882 CURVE SMOOTH", "185 881 OFFCURVE", "182 885 OFFCURVE", "181 893 CURVE SMOOTH", "172 962 OFFCURVE", "147 1023 OFFCURVE", "104 1076 CURVE SMOOTH", "98 1083 OFFCURVE", "97 1090 OFFCURVE", "99 1098 CURVE SMOOTH", "118 1162 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove2; position = "{120, 1230}"; }, { name = _AlefAbove; position = "{193, 801}"; }, { name = _HamzaAbove; position = "{153, 969}"; }, { name = _MarkAbove; position = "{190, 801}"; }, { name = _TashkilAbove; position = "{193, 801}"; }, { name = _TashkilTashkilAbove; position = "{195, 867}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "118 1182 OFFCURVE", "128 1183 OFFCURVE", "142 1166 CURVE", "207 1094 OFFCURVE", "228 1002 OFFCURVE", "208 892 CURVE", "206 882 OFFCURVE", "202 877 OFFCURVE", "195 876 CURVE SMOOTH", "182 874 OFFCURVE", "175 880 OFFCURVE", "174 892 CURVE SMOOTH", "165 960 OFFCURVE", "140 1020 OFFCURVE", "98 1071 CURVE SMOOTH", "91 1080 OFFCURVE", "89 1090 OFFCURVE", "92 1100 CURVE SMOOTH", "111 1164 LINE" ); } ); width = 0; } ); unicode = 0670; }, { glyphname = "alefWasla-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 945}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = aAlf.isol; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -129, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{119, 945}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = aAlf.isol; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -129, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = "0671,FB50"; }, { glyphname = "alefWavyhamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{57, 1050}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = aAlf.isol; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 81, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{57, 1050}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = aAlf.isol; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 81, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = 0672; }, { glyphname = "alefWavyhamzabelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{161, -342}"; } ); components = ( { name = aAlf.isol; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 161, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{161, -342}"; } ); components = ( { name = aAlf.isol; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 161, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = 0673; }, { glyphname = "highhamza-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 605}"; }, { name = TashkilBelow; position = "{210, 292}"; } ); components = ( { name = "hamza-ar"; transform = "{1, 0, 0, 1, 0, 263}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 381; }, { anchors = ( { name = TashkilAbove; position = "{146, 612}"; }, { name = TashkilBelow; position = "{210, 300}"; } ); components = ( { name = "hamza-ar"; transform = "{1, 0, 0, 1, 0, 271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 381; } ); unicode = 0674; }, { glyphname = "highhamzaAlef-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = "alef-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 217, 130}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 598; }, { anchors = ( { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); components = ( { name = "alef-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 217, 130}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 598; } ); unicode = 0675; }, { glyphname = "highhamzaWaw-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = "waw-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 400, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 781; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = "waw-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 400, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 781; } ); unicode = 0676; }, { glyphname = "uHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = "u-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 400, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 781; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = "u-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 400, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 781; } ); unicode = "0677,FBDD"; }, { glyphname = "highhamzaYeh-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "yeh-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 764, 140}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1145; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "yeh-ar"; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 764, 140}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1145; } ); unicode = 0678; }, { glyphname = "tteh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 461, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 461, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "0679,FB66"; }, { glyphname = "tteheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "067A,FB5E"; }, { glyphname = "beeh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -376}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -376}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "067B,FB52"; }, { glyphname = "tehRing-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 474, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 474, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 067C; }, { glyphname = "tehThreedotsdown-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 067D; }, { glyphname = "peh-ar"; layers = ( { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{535, -358}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 496, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{535, -358}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 496, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "067E,FB56"; }, { glyphname = "teheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "067F,FB62"; }, { glyphname = "beheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -376}"; } ); components = ( { name = aBaa.isol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 508, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -376}"; } ); components = ( { name = aBaa.isol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 508, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = "0680,FB5A"; }, { glyphname = "hahHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 342, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 342, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 0681; }, { glyphname = "hahTwodotsverticalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 0682; }, { glyphname = "nyeh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{425, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 415, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{425, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 415, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "0683,FB76"; }, { glyphname = "dyeh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{410, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 391, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{410, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 391, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "0684,FB72"; }, { glyphname = "hahThreedotsabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 0685; }, { glyphname = "tcheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "0686,FB7A"; }, { glyphname = "tcheheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 405, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 405, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = "0687,FB7E"; }, { glyphname = "ddal-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 205, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{186, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 205, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = "0688,FB88"; }, { glyphname = "dalRing-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 239, 54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 239, 54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 0689; }, { glyphname = "dalDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 068A; }, { glyphname = "dalDotbelowTah-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 205, 537}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{186, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 205, 537}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 068B; }, { glyphname = "dahal-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = "068C,FB84"; }, { glyphname = "ddahal-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = "068D,FB82"; }, { glyphname = "dul-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = "068E,FB86"; }, { glyphname = "dalThreedotsdown-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 068F; }, { glyphname = "dalFourdots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 0690; }, { glyphname = "rreh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 160, 434}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 160, 434}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = "0691,FB8C"; }, { glyphname = "rehv-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = smallv.above; transform = "{1, 0, 0, 1, 185, -6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = smallv.above; transform = "{1, 0, 0, 1, 185, -6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0692; }, { glyphname = "rehRing-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{95, -368}"; } ); components = ( { name = aRaa.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -173}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{95, -368}"; } ); components = ( { name = aRaa.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -173}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0693; }, { glyphname = "rehDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{288, -401}"; } ); components = ( { name = aRaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 273, -333}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{288, -401}"; } ); components = ( { name = aRaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 273, -333}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0694; }, { glyphname = "rehVbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 254, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 254, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0695; }, { glyphname = "rehDotbelowdotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{288, -401}"; } ); components = ( { name = aRaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 273, -333}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -102}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{288, -401}"; } ); components = ( { name = aRaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 273, -333}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -102}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0696; }, { glyphname = "rehTwodots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0697; }, { glyphname = "jeh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = "0698,FB8A"; }, { glyphname = "rehFourdots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0699; }, { glyphname = "seenDotbelowDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 069A; }, { glyphname = "seenThreedotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 069B; }, { glyphname = "sheenThreedotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 069C; }, { glyphname = "sadTwodotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 884, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1212; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 884, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1212; } ); unicode = 069D; }, { glyphname = "sadThreedots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 821, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1212; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 821, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1212; } ); unicode = 069E; }, { glyphname = "tahThreedots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aTaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 567, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 792; }, { anchors = ( { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aTaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 567, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 792; } ); unicode = 069F; }, { glyphname = "ainThreedots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = 06A0; }, { glyphname = "fehDotless-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 06A1; }, { glyphname = "fehDotmovedbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 830, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 830, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 06A2; }, { glyphname = "fehDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; }, { name = "fehDotmovedbelow-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; }, { name = "fehDotmovedbelow-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 06A3; }, { glyphname = "veh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{577, 863}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{577, 863}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = "06A4,FB6A"; }, { glyphname = "fehThreedotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 837, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 837, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 06A5; }, { glyphname = "peheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{605, 884}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{605, 884}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = "06A6,FB6E"; }, { glyphname = "qafDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 474, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 687; }, { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 474, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 687; } ); unicode = 06A7; }, { glyphname = "qafThreedotsabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 474, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 687; }, { anchors = ( { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aQaf.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 474, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 687; } ); unicode = 06A8; }, { glyphname = "keheh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = "06A9,FB8E"; }, { glyphname = "kafswash-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{541, 801}"; }, { name = TashkilBelow; position = "{1373, -327}"; } ); components = ( { name = aKaf.isol.alt; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1899; }, { anchors = ( { name = TashkilAbove; position = "{541, 801}"; }, { name = TashkilBelow; position = "{1373, -327}"; } ); components = ( { name = aKaf.isol.alt; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1899; } ); unicode = 06AA; }, { glyphname = "kafRing-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 846, 604}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.isol; }, { name = ring.below; transform = "{1, 0, 0, 1, 846, 604}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 06AB; }, { glyphname = "kafDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = 06AC; }, { glyphname = "ng-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{196, 907}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{196, 907}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = "06AD,FBD3"; }, { glyphname = "kafThreedotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = 06AE; }, { glyphname = "gaf-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.isol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 923, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.isol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 923, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = "06AF,FB92"; }, { glyphname = "gafRing-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 846, 604}"; }, { name = "gaf-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 846, 604}"; }, { name = "gaf-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 06B0; }, { glyphname = "ngoeh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 542, 628}"; }, { name = "gaf-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 542, 628}"; }, { name = "gaf-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = "06B1,FB9A"; }, { glyphname = "gafTwodotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 461, -222}"; }, { name = "gaf-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 461, -222}"; }, { name = "gaf-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 06B2; }, { glyphname = "gueh-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 454, -202}"; }, { name = "gaf-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 454, -202}"; }, { name = "gaf-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = "06B3,FB96"; }, { glyphname = "gafThreedots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{495, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 544, 628}"; }, { name = "gaf-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{495, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 544, 628}"; }, { name = "gaf-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 06B4; }, { glyphname = "lamVabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{323, 917}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 323, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 603; }, { anchors = ( { name = TashkilAbove; position = "{323, 917}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 323, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 603; } ); unicode = 06B5; }, { glyphname = "lamDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 603; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 603; } ); unicode = 06B6; }, { glyphname = "lamThreedotsabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 274, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 603; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 274, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 603; } ); unicode = 06B7; }, { glyphname = "lamThreedotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{381, -373}"; } ); components = ( { name = aLam.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 342, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 603; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{381, -373}"; } ); components = ( { name = aLam.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 342, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 603; } ); unicode = 06B8; }, { glyphname = "noonDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 280, -282}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 280, -282}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 06B9; }, { glyphname = "noonghunna-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = "06BA,FB9E"; }, { glyphname = "rnoon-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 269, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 269, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = "06BB,FBA0"; }, { glyphname = "noonRing-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 280, -18}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 280, -18}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 06BC; }, { glyphname = "noonThreedotsabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 06BD; }, { glyphname = "hehDoachashmee-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aHehKnotted.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 608; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aHehKnotted.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 608; } ); unicode = "06BE,FBAA"; }, { glyphname = "tchehDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 06BF; }, { glyphname = "hehHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 180, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 180, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = "06C0,FBA4"; }, { glyphname = "hehgoal-ar"; layers = ( { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = "06C1,FBA6"; }, { glyphname = "hehgoalHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 180, 68}"; }, { name = "hehgoal-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 180, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = 06C2; }, { glyphname = "tehMarbutagoal-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 180, 464}"; }, { name = "hehgoal-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 180, 464}"; }, { name = "hehgoal-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = 06C3; }, { glyphname = "wawring-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 117, -10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 117, -10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = 06C4; }, { glyphname = "kirghizoe-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 282, -42}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 282, -42}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "06C5,FBE0"; }, { glyphname = "oe-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 242, -53}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 242, -53}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "06C6,FBD9"; }, { glyphname = "u-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 489, 1498}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 489, 1498}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "06C7,FBD7"; }, { glyphname = "yu-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = aAlf.dagger; transform = "{1, 0, 0, 1, 200, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = aAlf.dagger; transform = "{1, 0, 0, 1, 200, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "06C8,FBDB"; }, { glyphname = "kirghizyu-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 242, -53}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 242, -53}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "06C9,FBE2"; }, { glyphname = "wawTwodots-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 200, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 200, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = 06CA; }, { glyphname = "ve-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 200, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 200, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = "06CB,FBDE"; }, { glyphname = "yehFarsi-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = "06CC,FBFC"; }, { glyphname = "yehTail-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 105, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 105, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 06CD; }, { glyphname = "yehVabove-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 237, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 237, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 06CE; }, { glyphname = "wawDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 200, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 200, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = 06CF; }, { glyphname = "e-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{375, -527}"; } ); components = ( { name = aYaa.isol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 355, -415}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{375, -527}"; } ); components = ( { name = aYaa.isol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 355, -415}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = "06D0,FBE4"; }, { glyphname = "yehThreedotsbelow-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{396, -558}"; } ); components = ( { name = aYaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 357, -537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{396, -558}"; } ); components = ( { name = aYaa.isol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 357, -537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 06D1; }, { glyphname = "yehbarree-ar"; layers = ( { anchors = ( { name = HamzaAbove; position = "{342, 537}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -312}"; } ); components = ( { name = aYaaBari.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1159; }, { anchors = ( { name = HamzaAbove; position = "{342, 537}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -312}"; } ); components = ( { name = aYaaBari.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1159; } ); unicode = "06D2,FBAE"; }, { glyphname = "yehbarreeHamzaabove-ar"; layers = ( { components = ( { name = "yehHamzaabove-ar.init.YaaBari"; transform = "{1, 0, 0, 1, 369, 0}"; }, { name = aYaaBari.fina.PostAscender; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1159; }, { components = ( { name = "yehHamzaabove-ar.init.YaaBari"; transform = "{1, 0, 0, 1, 369, 0}"; }, { name = aYaaBari.fina.PostAscender; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1159; } ); unicode = "06D3,FBB0"; }, { glyphname = "fullstop-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "420 90 OFFCURVE", "422 85 OFFCURVE", "414 77 CURVE SMOOTH", "356 14 LINE SMOOTH", "347 5 OFFCURVE", "334 0 OFFCURVE", "316 0 CURVE SMOOTH", "84 0 LINE SMOOTH", "72 0 OFFCURVE", "70 5 OFFCURVE", "78 13 CURVE SMOOTH", "136 76 LINE SMOOTH", "145 85 OFFCURVE", "158 90 OFFCURVE", "176 90 CURVE SMOOTH", "408 90 LINE SMOOTH" ); } ); width = 491; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "416 104 OFFCURVE", "423 103 OFFCURVE", "427 99 CURVE SMOOTH", "436 90 OFFCURVE", "436 79 OFFCURVE", "425 67 CURVE SMOOTH", "367 4 LINE", "355 -8 OFFCURVE", "337 -15 OFFCURVE", "316 -15 CURVE", "84 -15 LINE", "76 -14 OFFCURVE", "69 -12 OFFCURVE", "65 -8 CURVE SMOOTH", "56 1 OFFCURVE", "56 11 OFFCURVE", "67 23 CURVE SMOOTH", "125 86 LINE", "137 98 OFFCURVE", "155 105 OFFCURVE", "176 105 CURVE", "408 105 LINE" ); } ); width = 491; } ); unicode = 06D4; }, { glyphname = "ae-ar"; layers = ( { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aHeh.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = 06D5; }, { glyphname = "sadLamAlefMaksuraabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{244, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "103 1546 OFFCURVE", "101 1573 OFFCURVE", "99 1608 CURVE SMOOTH", "98 1617 OFFCURVE", "97 1642 OFFCURVE", "95 1681 CURVE SMOOTH", "94 1694 OFFCURVE", "95 1702 OFFCURVE", "98 1706 CURVE SMOOTH", "110 1724 LINE SMOOTH", "122 1743 OFFCURVE", "129 1740 OFFCURVE", "130 1719 CURVE SMOOTH", "135 1603 OFFCURVE", "141 1537 OFFCURVE", "147 1523 CURVE SMOOTH", "156 1502 OFFCURVE", "169 1493 OFFCURVE", "185 1495 CURVE SMOOTH", "200 1497 OFFCURVE", "217 1509 OFFCURVE", "237 1531 CURVE SMOOTH", "244 1538 OFFCURVE", "249 1541 OFFCURVE", "254 1538 CURVE SMOOTH", "276 1524 OFFCURVE", "291 1516 OFFCURVE", "298 1514 CURVE", "300 1515 OFFCURVE", "313 1526 OFFCURVE", "336 1548 CURVE SMOOTH", "376 1584 OFFCURVE", "412 1603 OFFCURVE", "442 1606 CURVE SMOOTH", "460 1608 OFFCURVE", "473 1601 OFFCURVE", "482 1587 CURVE SMOOTH", "491 1572 OFFCURVE", "490 1551 OFFCURVE", "478 1523 CURVE SMOOTH", "459 1482 OFFCURVE", "430 1459 OFFCURVE", "391 1453 CURVE SMOOTH", "341 1446 OFFCURVE", "290 1456 OFFCURVE", "239 1483 CURVE", "225 1467 OFFCURVE", "216 1457 OFFCURVE", "212 1454 CURVE SMOOTH", "190 1434 OFFCURVE", "168 1434 OFFCURVE", "147 1452 CURVE", "133 1465 OFFCURVE", "123 1484 OFFCURVE", "118 1510 CURVE", "113 1481 OFFCURVE", "104 1456 OFFCURVE", "91 1435 CURVE SMOOTH", "78 1415 OFFCURVE", "58 1396 OFFCURVE", "29 1378 CURVE", "60 1373 OFFCURVE", "99 1370 OFFCURVE", "148 1369 CURVE SMOOTH", "214 1367 OFFCURVE", "280 1369 OFFCURVE", "343 1374 CURVE SMOOTH", "359 1376 OFFCURVE", "404 1380 OFFCURVE", "479 1387 CURVE SMOOTH", "490 1388 OFFCURVE", "493 1384 OFFCURVE", "487 1375 CURVE SMOOTH", "464 1341 LINE SMOOTH", "460 1335 OFFCURVE", "457 1332 OFFCURVE", "452 1331 CURVE SMOOTH", "413 1325 OFFCURVE", "343 1321 OFFCURVE", "240 1317 CURVE SMOOTH", "146 1314 OFFCURVE", "75 1316 OFFCURVE", "27 1323 CURVE SMOOTH", "12 1325 OFFCURVE", "4 1332 OFFCURVE", "1 1344 CURVE", "-2 1362 OFFCURVE", "2 1380 OFFCURVE", "12 1397 CURVE SMOOTH", "23 1416 OFFCURVE", "35 1430 OFFCURVE", "48 1439 CURVE SMOOTH", "86 1466 OFFCURVE", "105 1495 OFFCURVE", "104 1527 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "417 1570 OFFCURVE", "375 1559 OFFCURVE", "316 1510 CURVE", "354 1502 OFFCURVE", "398 1501 OFFCURVE", "446 1509 CURVE", "450 1525 OFFCURVE", "448 1537 OFFCURVE", "441 1544 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{244, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "95 1546 OFFCURVE", "95 1567 OFFCURVE", "93 1589 CURVE SMOOTH", "88 1663 OFFCURVE", "87 1703 OFFCURVE", "92 1710 CURVE SMOOTH", "104 1728 LINE SMOOTH", "111 1738 OFFCURVE", "117 1743 OFFCURVE", "123 1744 CURVE SMOOTH", "132 1745 OFFCURVE", "136 1737 OFFCURVE", "137 1721 CURVE SMOOTH", "137 1720 OFFCURVE", "137 1720 OFFCURVE", "137 1720 CURVE SMOOTH", "142 1605 OFFCURVE", "148 1539 OFFCURVE", "155 1524 CURVE SMOOTH", "162 1509 OFFCURVE", "172 1502 OFFCURVE", "185 1503 CURVE SMOOTH", "198 1504 OFFCURVE", "213 1515 OFFCURVE", "232 1536 CURVE SMOOTH", "241 1546 OFFCURVE", "250 1549 OFFCURVE", "258 1544 CURVE SMOOTH", "276 1533 OFFCURVE", "289 1526 OFFCURVE", "297 1522 CURVE", "303 1527 OFFCURVE", "315 1537 OFFCURVE", "332 1553 CURVE", "374 1590 OFFCURVE", "409 1610 OFFCURVE", "441 1613 CURVE", "462 1615 OFFCURVE", "478 1608 OFFCURVE", "489 1591 CURVE", "499 1574 OFFCURVE", "498 1551 OFFCURVE", "485 1521 CURVE", "465 1478 OFFCURVE", "434 1452 OFFCURVE", "392 1445 CURVE", "342 1439 OFFCURVE", "292 1449 OFFCURVE", "241 1474 CURVE", "229 1460 OFFCURVE", "221 1452 OFFCURVE", "217 1449 CURVE SMOOTH", "192 1427 OFFCURVE", "168 1425 OFFCURVE", "143 1446 CURVE", "133 1455 OFFCURVE", "125 1466 OFFCURVE", "119 1480 CURVE", "113 1461 OFFCURVE", "106 1444 OFFCURVE", "96 1429 CURVE SMOOTH", "86 1414 OFFCURVE", "70 1398 OFFCURVE", "49 1383 CURVE", "134 1373 OFFCURVE", "232 1372 OFFCURVE", "342 1381 CURVE", "359 1383 OFFCURVE", "404 1388 OFFCURVE", "479 1395 CURVE SMOOTH", "485 1395 OFFCURVE", "490 1393 OFFCURVE", "495 1390 CURVE SMOOTH", "500 1387 OFFCURVE", "499 1381 OFFCURVE", "493 1371 CURVE SMOOTH", "471 1337 LINE SMOOTH", "466 1329 OFFCURVE", "460 1325 OFFCURVE", "453 1324 CURVE SMOOTH", "414 1318 OFFCURVE", "344 1313 OFFCURVE", "246 1310 CURVE SMOOTH", "148 1307 OFFCURVE", "74 1308 OFFCURVE", "26 1315 CURVE", "7 1318 OFFCURVE", "-3 1328 OFFCURVE", "-6 1343 CURVE", "-9 1363 OFFCURVE", "-5 1383 OFFCURVE", "7 1402 CURVE SMOOTH", "19 1421 OFFCURVE", "31 1435 OFFCURVE", "44 1445 CURVE SMOOTH", "79 1471 OFFCURVE", "97 1498 OFFCURVE", "96 1527 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "416 1560 OFFCURVE", "381 1551 OFFCURVE", "333 1514 CURVE", "366 1509 OFFCURVE", "401 1509 OFFCURVE", "439 1515 CURVE", "441 1526 OFFCURVE", "440 1534 OFFCURVE", "436 1539 CURVE" ); } ); width = 0; } ); unicode = 06D6; }, { glyphname = "qafLamAlefMaksuraabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{244, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "241 1493 OFFCURVE", "272 1507 OFFCURVE", "299 1534 CURVE", "298 1545 OFFCURVE", "296 1552 OFFCURVE", "293 1557 CURVE SMOOTH", "288 1564 OFFCURVE", "285 1565 OFFCURVE", "283 1560 CURVE SMOOTH", "274 1538 OFFCURVE", "261 1527 OFFCURVE", "242 1526 CURVE SMOOTH", "212 1525 OFFCURVE", "196 1543 OFFCURVE", "195 1579 CURVE SMOOTH", "194 1598 OFFCURVE", "201 1620 OFFCURVE", "216 1644 CURVE SMOOTH", "239 1682 OFFCURVE", "265 1683 OFFCURVE", "294 1647 CURVE SMOOTH", "315 1621 OFFCURVE", "325 1590 OFFCURVE", "324 1554 CURVE SMOOTH", "323 1533 OFFCURVE", "317 1514 OFFCURVE", "306 1496 CURVE SMOOTH", "282 1458 OFFCURVE", "249 1438 OFFCURVE", "205 1438 CURVE SMOOTH", "157 1438 OFFCURVE", "128 1462 OFFCURVE", "118 1510 CURVE", "113 1481 OFFCURVE", "104 1456 OFFCURVE", "91 1435 CURVE SMOOTH", "78 1415 OFFCURVE", "58 1396 OFFCURVE", "29 1378 CURVE", "60 1373 OFFCURVE", "99 1370 OFFCURVE", "148 1369 CURVE SMOOTH", "225 1367 OFFCURVE", "291 1369 OFFCURVE", "343 1374 CURVE SMOOTH", "397 1380 OFFCURVE", "442 1384 OFFCURVE", "479 1387 CURVE SMOOTH", "490 1388 OFFCURVE", "493 1384 OFFCURVE", "487 1375 CURVE SMOOTH", "464 1341 LINE SMOOTH", "460 1335 OFFCURVE", "457 1332 OFFCURVE", "452 1331 CURVE SMOOTH", "413 1325 OFFCURVE", "343 1321 OFFCURVE", "240 1317 CURVE SMOOTH", "146 1314 OFFCURVE", "75 1316 OFFCURVE", "27 1323 CURVE SMOOTH", "12 1325 OFFCURVE", "4 1332 OFFCURVE", "1 1344 CURVE", "-2 1362 OFFCURVE", "2 1380 OFFCURVE", "12 1397 CURVE SMOOTH", "23 1416 OFFCURVE", "35 1430 OFFCURVE", "48 1439 CURVE SMOOTH", "86 1466 OFFCURVE", "105 1495 OFFCURVE", "104 1527 CURVE SMOOTH", "103 1546 OFFCURVE", "101 1573 OFFCURVE", "99 1608 CURVE SMOOTH", "98 1617 OFFCURVE", "97 1642 OFFCURVE", "95 1681 CURVE SMOOTH", "94 1694 OFFCURVE", "95 1702 OFFCURVE", "98 1706 CURVE SMOOTH", "110 1724 LINE SMOOTH", "122 1743 OFFCURVE", "129 1740 OFFCURVE", "130 1719 CURVE SMOOTH", "135 1603 OFFCURVE", "141 1537 OFFCURVE", "147 1523 CURVE SMOOTH", "156 1503 OFFCURVE", "176 1493 OFFCURVE", "205 1493 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "215 1801 OFFCURVE", "217 1801 OFFCURVE", "219 1800 CURVE SMOOTH", "232 1796 OFFCURVE", "244 1790 OFFCURVE", "254 1782 CURVE", "274 1812 LINE SMOOTH", "275 1814 OFFCURVE", "277 1814 OFFCURVE", "279 1813 CURVE SMOOTH", "285 1811 OFFCURVE", "299 1804 OFFCURVE", "320 1790 CURVE SMOOTH", "322 1789 OFFCURVE", "322 1786 OFFCURVE", "321 1784 CURVE SMOOTH", "293 1741 LINE SMOOTH", "292 1739 OFFCURVE", "291 1739 OFFCURVE", "288 1742 CURVE SMOOTH", "286 1744 OFFCURVE", "275 1750 OFFCURVE", "255 1762 CURVE", "233 1728 LINE SMOOTH", "232 1727 OFFCURVE", "231 1727 OFFCURVE", "228 1729 CURVE SMOOTH", "220 1733 OFFCURVE", "206 1741 OFFCURVE", "187 1754 CURVE SMOOTH", "186 1755 OFFCURVE", "185 1756 OFFCURVE", "186 1757 CURVE SMOOTH", "214 1799 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{244, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "291 1544 OFFCURVE", "290 1549 OFFCURVE", "288 1552 CURVE", "277 1531 OFFCURVE", "262 1520 OFFCURVE", "242 1519 CURVE SMOOTH", "208 1518 OFFCURVE", "190 1538 OFFCURVE", "188 1579 CURVE", "188 1600 OFFCURVE", "193 1618 OFFCURVE", "204 1636 CURVE SMOOTH", "215 1654 OFFCURVE", "222 1666 OFFCURVE", "229 1671 CURVE SMOOTH", "251 1689 OFFCURVE", "275 1683 OFFCURVE", "298 1654 CURVE SMOOTH", "321 1625 OFFCURVE", "333 1592 OFFCURVE", "332 1554 CURVE", "331 1532 OFFCURVE", "324 1512 OFFCURVE", "312 1492 CURVE SMOOTH", "287 1451 OFFCURVE", "252 1431 OFFCURVE", "208 1431 CURVE SMOOTH", "164 1431 OFFCURVE", "135 1448 OFFCURVE", "120 1481 CURVE", "114 1462 OFFCURVE", "106 1445 OFFCURVE", "96 1429 CURVE SMOOTH", "86 1413 OFFCURVE", "70 1398 OFFCURVE", "49 1383 CURVE", "77 1380 OFFCURVE", "119 1377 OFFCURVE", "177 1376 CURVE SMOOTH", "235 1375 OFFCURVE", "291 1376 OFFCURVE", "344 1382 CURVE SMOOTH", "439 1391 OFFCURVE", "488 1395 OFFCURVE", "492 1392 CURVE", "499 1387 OFFCURVE", "499 1381 OFFCURVE", "493 1371 CURVE SMOOTH", "471 1337 LINE SMOOTH", "466 1329 OFFCURVE", "460 1325 OFFCURVE", "453 1324 CURVE SMOOTH", "414 1318 OFFCURVE", "344 1313 OFFCURVE", "246 1310 CURVE SMOOTH", "148 1307 OFFCURVE", "74 1308 OFFCURVE", "26 1315 CURVE", "7 1318 OFFCURVE", "-3 1328 OFFCURVE", "-6 1343 CURVE", "-9 1363 OFFCURVE", "-5 1383 OFFCURVE", "7 1402 CURVE SMOOTH", "19 1421 OFFCURVE", "31 1435 OFFCURVE", "44 1445 CURVE SMOOTH", "79 1470 OFFCURVE", "97 1498 OFFCURVE", "96 1527 CURVE SMOOTH", "95 1546 OFFCURVE", "95 1567 OFFCURVE", "93 1589 CURVE SMOOTH", "88 1663 OFFCURVE", "87 1703 OFFCURVE", "92 1710 CURVE SMOOTH", "104 1728 LINE SMOOTH", "111 1738 OFFCURVE", "117 1743 OFFCURVE", "123 1744 CURVE SMOOTH", "132 1745 OFFCURVE", "136 1737 OFFCURVE", "137 1721 CURVE SMOOTH", "137 1720 OFFCURVE", "137 1720 OFFCURVE", "137 1720 CURVE SMOOTH", "142 1605 OFFCURVE", "149 1539 OFFCURVE", "156 1524 CURVE SMOOTH", "163 1509 OFFCURVE", "181 1501 OFFCURVE", "210 1501 CURVE SMOOTH", "239 1501 OFFCURVE", "267 1513 OFFCURVE", "292 1537 CURVE" ); }, { closed = 1; nodes = ( "215 1811 OFFCURVE", "230 1807 OFFCURVE", "252 1792 CURVE", "269 1816 LINE SMOOTH", "272 1821 OFFCURVE", "276 1822 OFFCURVE", "283 1820 CURVE SMOOTH", "290 1818 OFFCURVE", "303 1810 OFFCURVE", "324 1796 CURVE", "330 1791 OFFCURVE", "331 1786 OFFCURVE", "328 1780 CURVE SMOOTH", "300 1737 LINE", "295 1731 OFFCURVE", "291 1730 OFFCURVE", "286 1734 CURVE SMOOTH", "281 1738 OFFCURVE", "272 1744 OFFCURVE", "258 1752 CURVE", "240 1724 LINE SMOOTH", "237 1719 OFFCURVE", "234 1718 OFFCURVE", "231 1719 CURVE SMOOTH", "228 1720 OFFCURVE", "226 1721 OFFCURVE", "225 1721 CURVE SMOOTH", "224 1721 OFFCURVE", "222 1723 OFFCURVE", "218 1725 CURVE SMOOTH", "214 1727 OFFCURVE", "202 1735 OFFCURVE", "183 1748 CURVE", "178 1752 OFFCURVE", "177 1756 OFFCURVE", "180 1761 CURVE", "208 1804 LINE" ); } ); width = 0; } ); unicode = 06D7; }, { glyphname = "meemabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{209, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "164 1360 OFFCURVE", "112 1319 OFFCURVE", "46 1304 CURVE SMOOTH", "32 1301 OFFCURVE", "23 1301 OFFCURVE", "21 1306 CURVE SMOOTH", "17 1315 OFFCURVE", "22 1323 OFFCURVE", "36 1330 CURVE SMOOTH", "99 1361 OFFCURVE", "146 1399 OFFCURVE", "177 1445 CURVE", "191 1526 OFFCURVE", "216 1566 OFFCURVE", "251 1565 CURVE SMOOTH", "290 1564 OFFCURVE", "310 1528 OFFCURVE", "310 1456 CURVE", "292 1418 LINE SMOOTH", "290 1414 OFFCURVE", "287 1413 OFFCURVE", "282 1413 CURVE SMOOTH", "249 1414 OFFCURVE", "222 1418 OFFCURVE", "201 1426 CURVE" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{209, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "166 1352 OFFCURVE", "113 1312 OFFCURVE", "47 1297 CURVE", "28 1293 OFFCURVE", "18 1295 OFFCURVE", "14 1303 CURVE", "9 1316 OFFCURVE", "15 1327 OFFCURVE", "33 1336 CURVE SMOOTH", "94 1367 OFFCURVE", "139 1404 OFFCURVE", "170 1448 CURVE", "185 1531 OFFCURVE", "212 1573 OFFCURVE", "250 1573 CURVE", "295 1572 OFFCURVE", "317 1533 OFFCURVE", "317 1456 CURVE SMOOTH", "317 1455 OFFCURVE", "316 1454 OFFCURVE", "316 1453 CURVE SMOOTH", "299 1416 LINE", "295 1409 OFFCURVE", "289 1405 OFFCURVE", "281 1405 CURVE SMOOTH", "251 1406 OFFCURVE", "225 1410 OFFCURVE", "204 1417 CURVE" ); } ); width = 0; } ); unicode = 06D8; }, { glyphname = "lamAlefabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{190, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "253 1519 OFFCURVE", "262 1600 OFFCURVE", "254 1705 CURVE SMOOTH", "253 1720 OFFCURVE", "254 1729 OFFCURVE", "256 1733 CURVE SMOOTH", "264 1748 OFFCURVE", "270 1757 OFFCURVE", "271 1759 CURVE SMOOTH", "272 1761 OFFCURVE", "274 1762 OFFCURVE", "276 1762 CURVE SMOOTH", "278 1762 OFFCURVE", "280 1760 OFFCURVE", "281 1758 CURVE SMOOTH", "287 1736 OFFCURVE", "292 1721 OFFCURVE", "298 1715 CURVE SMOOTH", "304 1709 OFFCURVE", "304 1702 OFFCURVE", "299 1697 CURVE SMOOTH", "283 1681 LINE", "286 1586 OFFCURVE", "271 1505 OFFCURVE", "238 1440 CURVE", "249 1412 OFFCURVE", "256 1387 OFFCURVE", "257 1365 CURVE", "258 1343 OFFCURVE", "253 1330 OFFCURVE", "240 1327 CURVE SMOOTH", "204 1318 OFFCURVE", "165 1317 OFFCURVE", "122 1324 CURVE SMOOTH", "117 1325 OFFCURVE", "115 1326 OFFCURVE", "114 1328 CURVE", "107 1345 OFFCURVE", "108 1358 OFFCURVE", "117 1370 CURVE SMOOTH", "120 1374 OFFCURVE", "123 1376 OFFCURVE", "125 1375 CURVE SMOOTH", "132 1374 OFFCURVE", "139 1374 OFFCURVE", "146 1373 CURVE SMOOTH", "146 1374 LINE SMOOTH", "173 1389 OFFCURVE", "196 1410 OFFCURVE", "213 1436 CURVE", "174 1518 OFFCURVE", "126 1586 OFFCURVE", "69 1640 CURVE", "61 1625 LINE", "56 1622 OFFCURVE", "51 1622 OFFCURVE", "47 1627 CURVE", "7 1670 LINE", "1 1677 OFFCURVE", "-1 1684 OFFCURVE", "0 1692 CURVE SMOOTH", "8 1743 LINE SMOOTH", "9 1748 OFFCURVE", "10 1751 OFFCURVE", "13 1751 CURVE SMOOTH", "21 1752 OFFCURVE", "43 1731 OFFCURVE", "78 1688 CURVE SMOOTH", "147 1605 OFFCURVE", "197 1530 OFFCURVE", "228 1463 CURVE" ); }, { closed = 1; nodes = ( "213 1398 OFFCURVE", "201 1385 OFFCURVE", "188 1372 CURVE SMOOTH", "188 1371 LINE", "209 1371 OFFCURVE", "223 1372 OFFCURVE", "232 1376 CURVE", "231 1387 OFFCURVE", "228 1399 OFFCURVE", "223 1413 CURVE" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{190, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "248 1535 OFFCURVE", "254 1611 OFFCURVE", "247 1705 CURVE SMOOTH", "246 1722 OFFCURVE", "247 1732 OFFCURVE", "250 1737 CURVE SMOOTH", "258 1752 OFFCURVE", "263 1760 OFFCURVE", "265 1763 CURVE SMOOTH", "269 1768 OFFCURVE", "273 1770 OFFCURVE", "278 1769 CURVE SMOOTH", "283 1768 OFFCURVE", "286 1765 OFFCURVE", "288 1760 CURVE", "294 1739 OFFCURVE", "299 1724 OFFCURVE", "306 1717 CURVE SMOOTH", "313 1709 OFFCURVE", "312 1701 OFFCURVE", "304 1692 CURVE SMOOTH", "290 1678 LINE", "293 1584 OFFCURVE", "278 1504 OFFCURVE", "246 1439 CURVE", "256 1411 OFFCURVE", "263 1386 OFFCURVE", "264 1362 CURVE SMOOTH", "265 1338 OFFCURVE", "258 1325 OFFCURVE", "242 1320 CURVE", "205 1311 OFFCURVE", "164 1309 OFFCURVE", "121 1316 CURVE SMOOTH", "114 1317 OFFCURVE", "109 1321 OFFCURVE", "107 1325 CURVE SMOOTH", "100 1344 OFFCURVE", "101 1361 OFFCURVE", "111 1375 CURVE", "116 1381 OFFCURVE", "121 1383 OFFCURVE", "127 1382 CURVE SMOOTH", "133 1381 OFFCURVE", "138 1381 OFFCURVE", "144 1380 CURVE", "169 1394 OFFCURVE", "189 1413 OFFCURVE", "205 1436 CURVE", "169 1512 OFFCURVE", "123 1576 OFFCURVE", "71 1628 CURVE", "68 1623 OFFCURVE", "66 1619 OFFCURVE", "65 1618 CURVE SMOOTH", "56 1613 OFFCURVE", "49 1615 OFFCURVE", "42 1622 CURVE SMOOTH", "1 1665 LINE", "-6 1673 OFFCURVE", "-8 1683 OFFCURVE", "-7 1693 CURVE SMOOTH", "0 1744 LINE SMOOTH", "2 1752 OFFCURVE", "6 1757 OFFCURVE", "12 1758 CURVE", "21 1759 OFFCURVE", "36 1748 OFFCURVE", "56 1726 CURVE SMOOTH", "134 1637 OFFCURVE", "191 1556 OFFCURVE", "228 1481 CURVE" ); }, { closed = 1; nodes = ( "215 1390 OFFCURVE", "210 1385 OFFCURVE", "205 1379 CURVE", "212 1379 OFFCURVE", "219 1380 OFFCURVE", "224 1381 CURVE", "223 1386 OFFCURVE", "222 1391 OFFCURVE", "220 1397 CURVE" ); } ); width = 0; } ); unicode = 06D9; }, { glyphname = "jeemabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{195, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "181 1559 OFFCURVE", "183 1559 OFFCURVE", "185 1558 CURVE SMOOTH", "200 1553 OFFCURVE", "214 1545 OFFCURVE", "226 1534 CURVE SMOOTH", "228 1532 OFFCURVE", "228 1531 OFFCURVE", "227 1529 CURVE SMOOTH", "199 1485 LINE SMOOTH", "198 1483 OFFCURVE", "196 1484 OFFCURVE", "193 1486 CURVE SMOOTH", "190 1488 OFFCURVE", "177 1496 OFFCURVE", "153 1511 CURVE SMOOTH", "151 1512 OFFCURVE", "151 1514 OFFCURVE", "152 1515 CURVE SMOOTH", "180 1557 LINE SMOOTH" ); }, { closed = 1; nodes = ( "315 1712 LINE SMOOTH", "313 1709 OFFCURVE", "312 1708 OFFCURVE", "309 1708 CURVE SMOOTH", "217 1696 OFFCURVE", "152 1677 OFFCURVE", "115 1653 CURVE SMOOTH", "42 1605 OFFCURVE", "14 1548 OFFCURVE", "30 1481 CURVE SMOOTH", "39 1444 OFFCURVE", "67 1416 OFFCURVE", "114 1395 CURVE SMOOTH", "139 1384 OFFCURVE", "180 1376 OFFCURVE", "235 1373 CURVE SMOOTH", "290 1370 OFFCURVE", "341 1370 OFFCURVE", "388 1374 CURVE SMOOTH", "394 1375 OFFCURVE", "398 1374 OFFCURVE", "400 1372 CURVE SMOOTH", "402 1370 OFFCURVE", "402 1368 OFFCURVE", "400 1365 CURVE SMOOTH", "398 1362 OFFCURVE", "396 1360 OFFCURVE", "393 1359 CURVE SMOOTH", "370 1352 OFFCURVE", "350 1345 OFFCURVE", "337 1337 CURVE SMOOTH", "317 1325 OFFCURVE", "306 1319 OFFCURVE", "301 1319 CURVE SMOOTH", "188 1309 OFFCURVE", "106 1322 OFFCURVE", "56 1359 CURVE SMOOTH", "6 1396 OFFCURVE", "-11 1453 OFFCURVE", "7 1531 CURVE SMOOTH", "25 1609 OFFCURVE", "71 1667 OFFCURVE", "147 1703 CURVE", "95 1716 OFFCURVE", "56 1714 OFFCURVE", "30 1699 CURVE SMOOTH", "28 1698 OFFCURVE", "25 1698 OFFCURVE", "23 1698 CURVE SMOOTH", "21 1698 OFFCURVE", "20 1699 OFFCURVE", "20 1701 CURVE SMOOTH", "20 1710 OFFCURVE", "22 1720 OFFCURVE", "26 1730 CURVE SMOOTH", "33 1750 OFFCURVE", "52 1761 OFFCURVE", "82 1763 CURVE SMOOTH", "97 1764 OFFCURVE", "120 1760 OFFCURVE", "153 1754 CURVE SMOOTH", "186 1748 OFFCURVE", "213 1745 OFFCURVE", "235 1745 CURVE SMOOTH", "257 1745 OFFCURVE", "285 1748 OFFCURVE", "318 1754 CURVE SMOOTH", "329 1756 OFFCURVE", "333 1753 OFFCURVE", "329 1744 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{195, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "178 1565 OFFCURVE", "185 1565 OFFCURVE", "196 1561 CURVE SMOOTH", "207 1557 OFFCURVE", "218 1550 OFFCURVE", "230 1539 CURVE", "234 1534 OFFCURVE", "235 1530 OFFCURVE", "233 1525 CURVE", "205 1481 LINE SMOOTH", "201 1475 OFFCURVE", "197 1474 OFFCURVE", "192 1478 CURVE SMOOTH", "187 1482 OFFCURVE", "172 1491 OFFCURVE", "149 1505 CURVE SMOOTH", "144 1508 OFFCURVE", "143 1512 OFFCURVE", "146 1518 CURVE", "174 1561 LINE" ); }, { closed = 1; nodes = ( "322 1709 LINE SMOOTH", "320 1703 OFFCURVE", "316 1701 OFFCURVE", "310 1700 CURVE SMOOTH", "219 1688 OFFCURVE", "155 1669 OFFCURVE", "119 1646 CURVE", "50 1600 OFFCURVE", "23 1546 OFFCURVE", "38 1483 CURVE", "47 1448 OFFCURVE", "73 1421 OFFCURVE", "117 1401 CURVE", "142 1390 OFFCURVE", "182 1383 OFFCURVE", "236 1380 CURVE SMOOTH", "290 1377 OFFCURVE", "341 1377 OFFCURVE", "388 1381 CURVE SMOOTH", "396 1382 OFFCURVE", "402 1380 OFFCURVE", "406 1376 CURVE SMOOTH", "410 1372 OFFCURVE", "409 1367 OFFCURVE", "406 1362 CURVE SMOOTH", "403 1357 OFFCURVE", "400 1354 OFFCURVE", "395 1353 CURVE SMOOTH", "372 1346 OFFCURVE", "352 1337 OFFCURVE", "335 1327 CURVE SMOOTH", "318 1317 OFFCURVE", "307 1313 OFFCURVE", "301 1312 CURVE SMOOTH", "186 1302 OFFCURVE", "103 1316 OFFCURVE", "51 1354 CURVE SMOOTH", "-1 1392 OFFCURVE", "-18 1452 OFFCURVE", "0 1533 CURVE", "17 1607 OFFCURVE", "59 1663 OFFCURVE", "125 1700 CURVE", "85 1707 OFFCURVE", "55 1704 OFFCURVE", "34 1692 CURVE SMOOTH", "30 1690 OFFCURVE", "25 1689 OFFCURVE", "21 1690 CURVE", "15 1692 OFFCURVE", "13 1697 OFFCURVE", "13 1705 CURVE SMOOTH", "13 1713 OFFCURVE", "15 1721 OFFCURVE", "19 1732 CURVE SMOOTH", "28 1755 OFFCURVE", "48 1768 OFFCURVE", "81 1770 CURVE", "97 1771 OFFCURVE", "121 1767 OFFCURVE", "154 1761 CURVE SMOOTH", "187 1755 OFFCURVE", "214 1752 OFFCURVE", "236 1752 CURVE SMOOTH", "258 1752 OFFCURVE", "278 1755 OFFCURVE", "297 1758 CURVE SMOOTH", "316 1761 OFFCURVE", "328 1761 OFFCURVE", "334 1759 CURVE SMOOTH", "340 1757 OFFCURVE", "340 1751 OFFCURVE", "336 1741 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 06DA; }, { glyphname = "threedotsabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{185, 1270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "180 1521 OFFCURVE", "182 1522 OFFCURVE", "185 1520 CURVE SMOOTH", "205 1509 OFFCURVE", "220 1495 OFFCURVE", "234 1477 CURVE SMOOTH", "236 1474 OFFCURVE", "236 1471 OFFCURVE", "234 1469 CURVE SMOOTH", "186 1417 LINE SMOOTH", "184 1415 OFFCURVE", "181 1415 OFFCURVE", "178 1419 CURVE SMOOTH", "175 1423 OFFCURVE", "158 1438 OFFCURVE", "129 1464 CURVE SMOOTH", "127 1466 OFFCURVE", "127 1467 OFFCURVE", "129 1469 CURVE SMOOTH", "178 1519 LINE SMOOTH" ); }, { closed = 1; nodes = ( "250 1423 OFFCURVE", "251 1423 OFFCURVE", "254 1422 CURVE SMOOTH", "274 1411 OFFCURVE", "291 1397 OFFCURVE", "304 1379 CURVE SMOOTH", "306 1376 OFFCURVE", "306 1374 OFFCURVE", "304 1372 CURVE SMOOTH", "255 1319 LINE SMOOTH", "253 1317 OFFCURVE", "251 1318 OFFCURVE", "248 1322 CURVE SMOOTH", "248 1322 OFFCURVE", "231 1337 OFFCURVE", "199 1367 CURVE SMOOTH", "197 1369 OFFCURVE", "197 1370 OFFCURVE", "198 1372 CURVE SMOOTH", "248 1421 LINE SMOOTH" ); }, { closed = 1; nodes = ( "109 1423 OFFCURVE", "112 1424 OFFCURVE", "114 1422 CURVE SMOOTH", "134 1411 OFFCURVE", "150 1397 OFFCURVE", "164 1379 CURVE SMOOTH", "166 1376 OFFCURVE", "166 1374 OFFCURVE", "164 1372 CURVE SMOOTH", "115 1319 LINE SMOOTH", "114 1317 OFFCURVE", "111 1319 OFFCURVE", "107 1322 CURVE SMOOTH", "107 1322 OFFCURVE", "91 1337 OFFCURVE", "59 1367 CURVE SMOOTH", "57 1369 OFFCURVE", "57 1370 OFFCURVE", "58 1372 CURVE SMOOTH", "107 1421 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{185, 1270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "161 1512 OFFCURVE", "182 1529 OFFCURVE", "188 1526 CURVE SMOOTH", "209 1514 OFFCURVE", "226 1499 OFFCURVE", "240 1481 CURVE", "244 1475 OFFCURVE", "244 1469 OFFCURVE", "240 1464 CURVE", "191 1412 LINE", "185 1406 OFFCURVE", "180 1406 OFFCURVE", "175 1412 CURVE SMOOTH", "170 1418 OFFCURVE", "153 1433 OFFCURVE", "125 1459 CURVE SMOOTH", "119 1464 OFFCURVE", "119 1469 OFFCURVE", "124 1475 CURVE" ); }, { closed = 1; nodes = ( "247 1431 OFFCURVE", "252 1431 OFFCURVE", "258 1428 CURVE", "279 1416 OFFCURVE", "296 1401 OFFCURVE", "310 1383 CURVE", "314 1377 OFFCURVE", "313 1372 OFFCURVE", "309 1367 CURVE", "260 1314 LINE SMOOTH", "255 1309 OFFCURVE", "250 1309 OFFCURVE", "246 1313 CURVE SMOOTH", "242 1317 OFFCURVE", "224 1333 OFFCURVE", "194 1361 CURVE", "189 1366 OFFCURVE", "189 1372 OFFCURVE", "193 1377 CURVE", "242 1427 LINE" ); }, { closed = 1; nodes = ( "107 1431 OFFCURVE", "112 1432 OFFCURVE", "118 1428 CURVE SMOOTH", "138 1416 OFFCURVE", "155 1401 OFFCURVE", "169 1383 CURVE", "173 1377 OFFCURVE", "173 1372 OFFCURVE", "169 1367 CURVE", "120 1314 LINE SMOOTH", "115 1309 OFFCURVE", "111 1309 OFFCURVE", "106 1313 CURVE SMOOTH", "101 1317 OFFCURVE", "84 1333 OFFCURVE", "54 1361 CURVE", "49 1366 OFFCURVE", "49 1372 OFFCURVE", "53 1377 CURVE", "102 1427 LINE" ); } ); width = 0; } ); unicode = 06DB; }, { glyphname = "seenabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{288, 1270}"; }, { name = _SeenAbove; position = "{249, 1318}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "480 1666 OFFCURVE", "482 1667 OFFCURVE", "485 1667 CURVE SMOOTH", "488 1667 OFFCURVE", "491 1666 OFFCURVE", "493 1663 CURVE SMOOTH", "498 1655 OFFCURVE", "500 1642 OFFCURVE", "500 1624 CURVE SMOOTH", "500 1596 OFFCURVE", "494 1570 OFFCURVE", "480 1548 CURVE SMOOTH", "476 1542 OFFCURVE", "472 1539 OFFCURVE", "466 1538 CURVE SMOOTH", "448 1534 OFFCURVE", "427 1540 OFFCURVE", "403 1554 CURVE", "386 1523 OFFCURVE", "362 1509 OFFCURVE", "329 1514 CURVE", "327 1481 OFFCURVE", "321 1452 OFFCURVE", "313 1428 CURVE SMOOTH", "305 1404 OFFCURVE", "291 1384 OFFCURVE", "271 1368 CURVE SMOOTH", "227 1333 OFFCURVE", "178 1317 OFFCURVE", "125 1319 CURVE SMOOTH", "59 1321 OFFCURVE", "18 1348 OFFCURVE", "3 1401 CURVE SMOOTH", "-1 1416 OFFCURVE", "-1 1438 OFFCURVE", "5 1466 CURVE SMOOTH", "11 1494 OFFCURVE", "22 1524 OFFCURVE", "40 1557 CURVE SMOOTH", "41 1560 OFFCURVE", "44 1561 OFFCURVE", "46 1561 CURVE SMOOTH", "48 1561 OFFCURVE", "50 1561 OFFCURVE", "51 1559 CURVE SMOOTH", "52 1557 OFFCURVE", "52 1554 OFFCURVE", "51 1552 CURVE SMOOTH", "27 1505 OFFCURVE", "16 1474 OFFCURVE", "21 1458 CURVE SMOOTH", "35 1408 OFFCURVE", "71 1382 OFFCURVE", "130 1380 CURVE SMOOTH", "210 1378 OFFCURVE", "268 1405 OFFCURVE", "302 1458 CURVE", "304 1488 OFFCURVE", "296 1521 OFFCURVE", "279 1558 CURVE SMOOTH", "277 1562 OFFCURVE", "276 1564 OFFCURVE", "277 1567 CURVE SMOOTH", "285 1585 OFFCURVE", "292 1598 OFFCURVE", "298 1606 CURVE SMOOTH", "300 1608 OFFCURVE", "301 1609 OFFCURVE", "303 1607 CURVE SMOOTH", "305 1605 OFFCURVE", "310 1599 OFFCURVE", "316 1588 CURVE SMOOTH", "322 1577 OFFCURVE", "327 1572 OFFCURVE", "330 1571 CURVE SMOOTH", "350 1567 OFFCURVE", "370 1573 OFFCURVE", "390 1589 CURVE SMOOTH", "398 1596 OFFCURVE", "405 1613 OFFCURVE", "412 1642 CURVE SMOOTH", "413 1645 OFFCURVE", "414 1647 OFFCURVE", "416 1648 CURVE SMOOTH", "418 1649 OFFCURVE", "420 1649 OFFCURVE", "422 1648 CURVE SMOOTH", "426 1645 OFFCURVE", "427 1635 OFFCURVE", "423 1615 CURVE", "438 1604 OFFCURVE", "455 1599 OFFCURVE", "474 1601 CURVE", "474 1607 OFFCURVE", "473 1611 OFFCURVE", "471 1613 CURVE SMOOTH", "469 1615 OFFCURVE", "468 1618 OFFCURVE", "469 1620 CURVE SMOOTH", "479 1662 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{288, 1270}"; }, { name = _SeenAbove; position = "{249, 1318}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "500 1674 OFFCURVE", "508 1658 OFFCURVE", "508 1626 CURVE SMOOTH", "508 1594 OFFCURVE", "500 1567 OFFCURVE", "486 1544 CURVE SMOOTH", "481 1537 OFFCURVE", "475 1532 OFFCURVE", "467 1530 CURVE", "449 1527 OFFCURVE", "429 1532 OFFCURVE", "406 1544 CURVE", "388 1517 OFFCURVE", "364 1504 OFFCURVE", "335 1506 CURVE", "333 1475 OFFCURVE", "328 1448 OFFCURVE", "320 1424 CURVE SMOOTH", "312 1400 OFFCURVE", "296 1379 OFFCURVE", "275 1362 CURVE", "229 1327 OFFCURVE", "180 1310 OFFCURVE", "125 1312 CURVE SMOOTH", "56 1314 OFFCURVE", "12 1343 OFFCURVE", "-4 1399 CURVE", "-9 1415 OFFCURVE", "-8 1438 OFFCURVE", "-2 1467 CURVE SMOOTH", "4 1496 OFFCURVE", "16 1528 OFFCURVE", "34 1561 CURVE SMOOTH", "37 1566 OFFCURVE", "41 1568 OFFCURVE", "46 1568 CURVE SMOOTH", "51 1568 OFFCURVE", "55 1566 OFFCURVE", "57 1562 CURVE SMOOTH", "59 1557 OFFCURVE", "59 1553 OFFCURVE", "57 1549 CURVE SMOOTH", "34 1504 OFFCURVE", "24 1474 OFFCURVE", "28 1460 CURVE SMOOTH", "42 1413 OFFCURVE", "76 1390 OFFCURVE", "130 1388 CURVE", "206 1386 OFFCURVE", "261 1410 OFFCURVE", "294 1460 CURVE", "295 1488 OFFCURVE", "288 1519 OFFCURVE", "272 1554 CURVE SMOOTH", "269 1561 OFFCURVE", "269 1566 OFFCURVE", "271 1570 CURVE SMOOTH", "279 1588 OFFCURVE", "286 1601 OFFCURVE", "291 1608 CURVE SMOOTH", "297 1616 OFFCURVE", "301 1618 OFFCURVE", "306 1614 CURVE SMOOTH", "311 1610 OFFCURVE", "315 1604 OFFCURVE", "320 1595 CURVE SMOOTH", "325 1586 OFFCURVE", "329 1580 OFFCURVE", "332 1578 CURVE", "350 1575 OFFCURVE", "367 1580 OFFCURVE", "385 1595 CURVE", "392 1601 OFFCURVE", "397 1618 OFFCURVE", "404 1644 CURVE SMOOTH", "406 1650 OFFCURVE", "409 1653 OFFCURVE", "413 1655 CURVE", "418 1657 OFFCURVE", "422 1657 OFFCURVE", "426 1654 CURVE SMOOTH", "433 1649 OFFCURVE", "435 1637 OFFCURVE", "431 1619 CURVE SMOOTH", "431 1618 OFFCURVE", "431 1618 OFFCURVE", "431 1618 CURVE SMOOTH", "442 1611 OFFCURVE", "453 1607 OFFCURVE", "466 1607 CURVE", "466 1607 OFFCURVE", "466 1608 OFFCURVE", "466 1609 CURVE SMOOTH", "466 1610 OFFCURVE", "464 1610 OFFCURVE", "463 1612 CURVE SMOOTH", "461 1616 OFFCURVE", "461 1618 OFFCURVE", "461 1619 CURVE SMOOTH", "472 1664 LINE", "475 1671 OFFCURVE", "479 1675 OFFCURVE", "485 1675 CURVE" ); } ); width = 0; } ); unicode = 06DC; }, { glyphname = "endofayah-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "982 476 OFFCURVE", "982 468 OFFCURVE", "979 455 CURVE SMOOTH", "976 442 OFFCURVE", "968 432 OFFCURVE", "953 426 CURVE", "932 419 OFFCURVE", "912 423 OFFCURVE", "893 436 CURVE", "885 442 OFFCURVE", "884 446 OFFCURVE", "890 448 CURVE SMOOTH", "903 453 OFFCURVE", "910 460 OFFCURVE", "911 468 CURVE", "910 481 OFFCURVE", "901 492 OFFCURVE", "884 502 CURVE", "790 510 OFFCURVE", "720 493 OFFCURVE", "674 452 CURVE", "686 434 OFFCURVE", "685 421 OFFCURVE", "668 413 CURVE", "659 410 OFFCURVE", "651 410 OFFCURVE", "647 415 CURVE SMOOTH", "643 420 OFFCURVE", "641 424 OFFCURVE", "640 429 CURVE", "639 424 OFFCURVE", "636 420 OFFCURVE", "632 415 CURVE SMOOTH", "628 410 OFFCURVE", "620 410 OFFCURVE", "611 413 CURVE", "594 421 OFFCURVE", "593 434 OFFCURVE", "605 452 CURVE", "559 493 OFFCURVE", "489 510 OFFCURVE", "395 502 CURVE", "378 492 OFFCURVE", "369 481 OFFCURVE", "368 468 CURVE", "369 460 OFFCURVE", "376 453 OFFCURVE", "389 448 CURVE SMOOTH", "395 446 OFFCURVE", "394 442 OFFCURVE", "386 436 CURVE", "367 423 OFFCURVE", "347 419 OFFCURVE", "326 426 CURVE", "311 432 OFFCURVE", "302 442 OFFCURVE", "299 455 CURVE SMOOTH", "296 468 OFFCURVE", "296 476 OFFCURVE", "299 482 CURVE", "262 469 OFFCURVE", "227 450 OFFCURVE", "193 425 CURVE", "112 364 OFFCURVE", "71 278 OFFCURVE", "71 166 CURVE SMOOTH", "71 54 OFFCURVE", "112 -32 OFFCURVE", "193 -94 CURVE", "227 -119 OFFCURVE", "262 -137 OFFCURVE", "299 -150 CURVE", "296 -145 OFFCURVE", "296 -136 OFFCURVE", "299 -123 CURVE SMOOTH", "302 -110 OFFCURVE", "311 -100 OFFCURVE", "326 -94 CURVE", "347 -88 OFFCURVE", "367 -91 OFFCURVE", "386 -104 CURVE", "393 -110 OFFCURVE", "393 -114 OFFCURVE", "384 -117 CURVE", "374 -119 OFFCURVE", "369 -126 OFFCURVE", "368 -136 CURVE", "369 -149 OFFCURVE", "378 -160 OFFCURVE", "395 -170 CURVE", "490 -177 OFFCURVE", "559 -161 OFFCURVE", "605 -120 CURVE", "593 -102 OFFCURVE", "594 -89 OFFCURVE", "611 -81 CURVE", "620 -78 OFFCURVE", "628 -78 OFFCURVE", "632 -83 CURVE SMOOTH", "636 -88 OFFCURVE", "639 -92 OFFCURVE", "640 -97 CURVE", "641 -92 OFFCURVE", "643 -88 OFFCURVE", "647 -83 CURVE SMOOTH", "651 -78 OFFCURVE", "659 -78 OFFCURVE", "668 -81 CURVE", "685 -89 OFFCURVE", "686 -102 OFFCURVE", "674 -120 CURVE", "720 -161 OFFCURVE", "790 -177 OFFCURVE", "885 -170 CURVE", "902 -160 OFFCURVE", "910 -149 OFFCURVE", "911 -136 CURVE", "910 -126 OFFCURVE", "906 -119 OFFCURVE", "896 -117 CURVE", "887 -114 OFFCURVE", "887 -110 OFFCURVE", "894 -104 CURVE", "913 -91 OFFCURVE", "932 -88 OFFCURVE", "953 -94 CURVE", "968 -100 OFFCURVE", "977 -110 OFFCURVE", "980 -123 CURVE SMOOTH", "983 -136 OFFCURVE", "983 -145 OFFCURVE", "980 -150 CURVE", "1017 -137 OFFCURVE", "1052 -119 OFFCURVE", "1086 -94 CURVE", "1167 -32 OFFCURVE", "1208 54 OFFCURVE", "1208 166 CURVE SMOOTH", "1208 278 OFFCURVE", "1167 364 OFFCURVE", "1086 425 CURVE", "1052 450 OFFCURVE", "1016 469 OFFCURVE", "979 482 CURVE" ); }, { closed = 1; nodes = ( "577 -158 OFFCURVE", "553 -194 OFFCURVE", "554 -231 CURVE", "555 -264 OFFCURVE", "584 -301 OFFCURVE", "640 -343 CURVE", "696 -301 OFFCURVE", "725 -264 OFFCURVE", "726 -231 CURVE", "727 -194 OFFCURVE", "702 -158 OFFCURVE", "654 -123 CURVE SMOOTH", "646 -117 OFFCURVE", "641 -111 OFFCURVE", "640 -104 CURVE", "639 -111 OFFCURVE", "633 -117 OFFCURVE", "625 -123 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "833 -254 OFFCURVE", "837 -246 OFFCURVE", "844 -239 CURVE SMOOTH", "851 -233 OFFCURVE", "859 -229 OFFCURVE", "868 -229 CURVE SMOOTH", "875 -229 OFFCURVE", "884 -232 OFFCURVE", "892 -239 CURVE SMOOTH", "898 -244 OFFCURVE", "902 -252 OFFCURVE", "902 -263 CURVE SMOOTH", "902 -272 OFFCURVE", "899 -280 OFFCURVE", "892 -287 CURVE SMOOTH", "886 -293 OFFCURVE", "878 -297 OFFCURVE", "868 -297 CURVE SMOOTH", "859 -297 OFFCURVE", "851 -294 OFFCURVE", "844 -287 CURVE SMOOTH", "838 -281 OFFCURVE", "835 -273 OFFCURVE", "834 -263 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "376 -254 OFFCURVE", "380 -246 OFFCURVE", "387 -239 CURVE SMOOTH", "394 -233 OFFCURVE", "402 -229 OFFCURVE", "411 -229 CURVE SMOOTH", "418 -229 OFFCURVE", "427 -232 OFFCURVE", "435 -239 CURVE SMOOTH", "441 -244 OFFCURVE", "444 -252 OFFCURVE", "444 -263 CURVE SMOOTH", "444 -272 OFFCURVE", "442 -280 OFFCURVE", "435 -287 CURVE SMOOTH", "429 -293 OFFCURVE", "421 -297 OFFCURVE", "411 -297 CURVE SMOOTH", "402 -297 OFFCURVE", "394 -294 OFFCURVE", "387 -287 CURVE SMOOTH", "381 -281 OFFCURVE", "378 -273 OFFCURVE", "377 -263 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "833 603 OFFCURVE", "837 611 OFFCURVE", "844 618 CURVE SMOOTH", "851 624 OFFCURVE", "859 628 OFFCURVE", "868 628 CURVE SMOOTH", "875 628 OFFCURVE", "884 625 OFFCURVE", "892 618 CURVE SMOOTH", "898 613 OFFCURVE", "902 605 OFFCURVE", "902 594 CURVE SMOOTH", "902 585 OFFCURVE", "899 577 OFFCURVE", "892 570 CURVE SMOOTH", "886 564 OFFCURVE", "878 561 OFFCURVE", "868 561 CURVE SMOOTH", "859 561 OFFCURVE", "851 563 OFFCURVE", "844 570 CURVE SMOOTH", "838 576 OFFCURVE", "835 584 OFFCURVE", "834 594 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "376 603 OFFCURVE", "380 611 OFFCURVE", "387 618 CURVE SMOOTH", "394 624 OFFCURVE", "402 628 OFFCURVE", "411 628 CURVE SMOOTH", "418 628 OFFCURVE", "427 625 OFFCURVE", "435 618 CURVE SMOOTH", "441 613 OFFCURVE", "444 605 OFFCURVE", "444 594 CURVE SMOOTH", "444 585 OFFCURVE", "442 577 OFFCURVE", "435 570 CURVE SMOOTH", "429 564 OFFCURVE", "421 561 OFFCURVE", "411 561 CURVE SMOOTH", "402 561 OFFCURVE", "394 563 OFFCURVE", "387 570 CURVE SMOOTH", "381 576 OFFCURVE", "378 584 OFFCURVE", "377 594 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "635 -369 OFFCURVE", "613 -353 OFFCURVE", "574 -325 CURVE SMOOTH", "535 -297 OFFCURVE", "511 -273 OFFCURVE", "503 -252 CURVE SMOOTH", "495 -231 OFFCURVE", "495 -211 OFFCURVE", "504 -193 CURVE", "479 -196 OFFCURVE", "456 -197 OFFCURVE", "433 -197 CURVE SMOOTH", "336 -196 OFFCURVE", "251 -169 OFFCURVE", "178 -114 CURVE SMOOTH", "89 -47 OFFCURVE", "44 46 OFFCURVE", "44 166 CURVE SMOOTH", "44 286 OFFCURVE", "89 379 OFFCURVE", "178 446 CURVE", "252 500 OFFCURVE", "337 528 OFFCURVE", "433 529 CURVE SMOOTH", "456 529 OFFCURVE", "479 527 OFFCURVE", "504 524 CURVE", "495 543 OFFCURVE", "495 563 OFFCURVE", "503 584 CURVE SMOOTH", "511 605 OFFCURVE", "535 629 OFFCURVE", "574 657 CURVE SMOOTH", "613 685 OFFCURVE", "635 701 OFFCURVE", "640 705 CURVE", "645 701 OFFCURVE", "667 685 OFFCURVE", "706 657 CURVE SMOOTH", "745 629 OFFCURVE", "768 605 OFFCURVE", "776 584 CURVE SMOOTH", "784 563 OFFCURVE", "784 543 OFFCURVE", "775 524 CURVE", "800 527 OFFCURVE", "824 529 OFFCURVE", "847 529 CURVE SMOOTH", "943 528 OFFCURVE", "1028 500 OFFCURVE", "1102 446 CURVE", "1191 379 OFFCURVE", "1235 286 OFFCURVE", "1235 166 CURVE SMOOTH", "1235 46 OFFCURVE", "1191 -47 OFFCURVE", "1102 -114 CURVE SMOOTH", "1029 -169 OFFCURVE", "944 -196 OFFCURVE", "847 -197 CURVE SMOOTH", "824 -197 OFFCURVE", "800 -196 OFFCURVE", "775 -193 CURVE", "784 -211 OFFCURVE", "784 -231 OFFCURVE", "776 -252 CURVE SMOOTH", "768 -273 OFFCURVE", "744 -297 OFFCURVE", "705 -325 CURVE SMOOTH", "666 -353 OFFCURVE", "645 -369 OFFCURVE", "640 -373 CURVE" ); }, { closed = 1; nodes = ( "641 443 OFFCURVE", "646 449 OFFCURVE", "654 455 CURVE SMOOTH", "702 490 OFFCURVE", "726 527 OFFCURVE", "726 563 CURVE", "725 597 OFFCURVE", "696 634 OFFCURVE", "640 675 CURVE", "584 634 OFFCURVE", "555 597 OFFCURVE", "554 563 CURVE", "554 526 OFFCURVE", "577 490 OFFCURVE", "625 455 CURVE SMOOTH", "633 449 OFFCURVE", "639 443 OFFCURVE", "640 436 CURVE" ); } ); width = 1279; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1129 -81 OFFCURVE", "1199 20 OFFCURVE", "1199 166 CURVE SMOOTH", "1199 275 OFFCURVE", "1160 358 OFFCURVE", "1082 418 CURVE", "1053 439 OFFCURVE", "1022 457 OFFCURVE", "990 469 CURVE", "989 441 OFFCURVE", "977 424 OFFCURVE", "954 417 CURVE SMOOTH", "931 410 OFFCURVE", "909 415 OFFCURVE", "888 429 CURVE", "873 441 OFFCURVE", "873 450 OFFCURVE", "887 456 CURVE", "896 459 OFFCURVE", "901 463 OFFCURVE", "902 468 CURVE", "901 477 OFFCURVE", "893 486 OFFCURVE", "881 494 CURVE", "794 501 OFFCURVE", "730 485 OFFCURVE", "686 450 CURVE", "697 430 OFFCURVE", "692 416 OFFCURVE", "672 405 CURVE", "659 399 OFFCURVE", "648 402 OFFCURVE", "640 411 CURVE", "632 402 OFFCURVE", "619 400 OFFCURVE", "603 408 CURVE SMOOTH", "587 416 OFFCURVE", "584 430 OFFCURVE", "594 450 CURVE", "550 486 OFFCURVE", "484 501 OFFCURVE", "397 494 CURVE", "384 486 OFFCURVE", "378 477 OFFCURVE", "377 468 CURVE", "378 463 OFFCURVE", "381 460 OFFCURVE", "387 458 CURVE SMOOTH", "406 451 OFFCURVE", "407 441 OFFCURVE", "391 429 CURVE", "369 414 OFFCURVE", "346 410 OFFCURVE", "323 418 CURVE", "301 427 OFFCURVE", "290 444 OFFCURVE", "289 469 CURVE", "257 456 OFFCURVE", "227 439 OFFCURVE", "198 418 CURVE", "119 358 OFFCURVE", "80 275 OFFCURVE", "80 166 CURVE SMOOTH", "80 57 OFFCURVE", "120 -27 OFFCURVE", "198 -87 CURVE", "227 -108 OFFCURVE", "257 -125 OFFCURVE", "289 -137 CURVE", "290 -110 OFFCURVE", "302 -92 OFFCURVE", "324 -85 CURVE", "349 -78 OFFCURVE", "371 -82 OFFCURVE", "391 -97 CURVE", "395 -100 OFFCURVE", "398 -105 OFFCURVE", "400 -111 CURVE SMOOTH", "402 -117 OFFCURVE", "397 -122 OFFCURVE", "386 -125 CURVE", "381 -127 OFFCURVE", "378 -131 OFFCURVE", "377 -136 CURVE", "379 -146 OFFCURVE", "385 -154 OFFCURVE", "397 -162 CURVE", "484 -168 OFFCURVE", "550 -153 OFFCURVE", "594 -118 CURVE", "583 -98 OFFCURVE", "587 -84 OFFCURVE", "607 -73 CURVE", "620 -67 OFFCURVE", "632 -70 OFFCURVE", "640 -79 CURVE", "648 -70 OFFCURVE", "661 -68 OFFCURVE", "677 -76 CURVE SMOOTH", "693 -84 OFFCURVE", "696 -98 OFFCURVE", "686 -118 CURVE", "730 -153 OFFCURVE", "795 -168 OFFCURVE", "882 -162 CURVE", "894 -154 OFFCURVE", "901 -145 OFFCURVE", "902 -136 CURVE", "901 -130 OFFCURVE", "899 -127 OFFCURVE", "894 -126 CURVE SMOOTH", "889 -125 OFFCURVE", "885 -121 OFFCURVE", "881 -116 CURVE SMOOTH", "877 -111 OFFCURVE", "879 -104 OFFCURVE", "889 -97 CURVE", "911 -82 OFFCURVE", "933 -78 OFFCURVE", "956 -86 CURVE", "978 -95 OFFCURVE", "989 -112 OFFCURVE", "990 -137 CURVE" ); }, { closed = 1; nodes = ( "584 -164 OFFCURVE", "562 -196 OFFCURVE", "562 -230 CURVE", "564 -259 OFFCURVE", "590 -293 OFFCURVE", "640 -332 CURVE", "690 -293 OFFCURVE", "715 -259 OFFCURVE", "717 -230 CURVE", "717 -196 OFFCURVE", "694 -163 OFFCURVE", "649 -130 CURVE SMOOTH", "645 -127 OFFCURVE", "643 -125 OFFCURVE", "640 -122 CURVE", "637 -125 OFFCURVE", "634 -127 OFFCURVE", "630 -130 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "890 -301 OFFCURVE", "880 -305 OFFCURVE", "868 -305 CURVE SMOOTH", "856 -305 OFFCURVE", "847 -302 OFFCURVE", "839 -294 CURVE SMOOTH", "831 -286 OFFCURVE", "827 -276 OFFCURVE", "826 -264 CURVE SMOOTH", "825 -252 OFFCURVE", "830 -242 OFFCURVE", "838 -234 CURVE SMOOTH", "857 -216 OFFCURVE", "876 -215 OFFCURVE", "897 -232 CURVE", "905 -239 OFFCURVE", "910 -249 OFFCURVE", "910 -262 CURVE SMOOTH", "910 -275 OFFCURVE", "906 -285 OFFCURVE", "898 -293 CURVE" ); }, { closed = 1; nodes = ( "432 -301 OFFCURVE", "423 -305 OFFCURVE", "411 -305 CURVE SMOOTH", "399 -305 OFFCURVE", "389 -302 OFFCURVE", "381 -294 CURVE SMOOTH", "373 -286 OFFCURVE", "370 -276 OFFCURVE", "369 -264 CURVE SMOOTH", "368 -252 OFFCURVE", "372 -242 OFFCURVE", "380 -234 CURVE SMOOTH", "399 -216 OFFCURVE", "419 -215 OFFCURVE", "440 -232 CURVE", "448 -239 OFFCURVE", "452 -249 OFFCURVE", "452 -262 CURVE SMOOTH", "452 -275 OFFCURVE", "448 -285 OFFCURVE", "440 -293 CURVE" ); }, { closed = 1; nodes = ( "890 556 OFFCURVE", "880 552 OFFCURVE", "868 552 CURVE SMOOTH", "856 552 OFFCURVE", "847 556 OFFCURVE", "839 564 CURVE SMOOTH", "831 572 OFFCURVE", "827 582 OFFCURVE", "826 594 CURVE SMOOTH", "825 606 OFFCURVE", "830 616 OFFCURVE", "838 624 CURVE SMOOTH", "857 642 OFFCURVE", "876 642 OFFCURVE", "897 625 CURVE", "905 618 OFFCURVE", "910 608 OFFCURVE", "910 595 CURVE SMOOTH", "910 582 OFFCURVE", "906 572 OFFCURVE", "898 564 CURVE" ); }, { closed = 1; nodes = ( "432 556 OFFCURVE", "423 552 OFFCURVE", "411 552 CURVE SMOOTH", "399 552 OFFCURVE", "389 556 OFFCURVE", "381 564 CURVE SMOOTH", "373 572 OFFCURVE", "370 582 OFFCURVE", "369 594 CURVE SMOOTH", "368 606 OFFCURVE", "372 616 OFFCURVE", "380 624 CURVE SMOOTH", "399 642 OFFCURVE", "419 642 OFFCURVE", "440 625 CURVE", "448 618 OFFCURVE", "452 608 OFFCURVE", "452 595 CURVE SMOOTH", "452 582 OFFCURVE", "448 572 OFFCURVE", "440 564 CURVE" ); }, { closed = 1; nodes = ( "793 -220 OFFCURVE", "790 -238 OFFCURVE", "782 -259 CURVE SMOOTH", "774 -280 OFFCURVE", "750 -303 OFFCURVE", "711 -331 CURVE SMOOTH", "672 -359 OFFCURVE", "650 -374 OFFCURVE", "646 -378 CURVE SMOOTH", "642 -382 OFFCURVE", "637 -382 OFFCURVE", "633 -378 CURVE SMOOTH", "629 -374 OFFCURVE", "607 -359 OFFCURVE", "568 -331 CURVE SMOOTH", "529 -303 OFFCURVE", "505 -279 OFFCURVE", "497 -258 CURVE SMOOTH", "489 -237 OFFCURVE", "487 -220 OFFCURVE", "491 -203 CURVE", "470 -205 OFFCURVE", "452 -206 OFFCURVE", "433 -206 CURVE SMOOTH", "334 -205 OFFCURVE", "248 -177 OFFCURVE", "173 -121 CURVE SMOOTH", "82 -53 OFFCURVE", "36 43 OFFCURVE", "36 166 CURVE SMOOTH", "36 289 OFFCURVE", "82 384 OFFCURVE", "173 453 CURVE", "248 508 OFFCURVE", "335 536 OFFCURVE", "433 537 CURVE SMOOTH", "452 537 OFFCURVE", "471 536 OFFCURVE", "491 534 CURVE", "486 551 OFFCURVE", "489 570 OFFCURVE", "497 591 CURVE SMOOTH", "505 612 OFFCURVE", "529 635 OFFCURVE", "568 663 CURVE SMOOTH", "607 691 OFFCURVE", "629 706 OFFCURVE", "633 710 CURVE SMOOTH", "637 714 OFFCURVE", "642 714 OFFCURVE", "646 710 CURVE SMOOTH", "650 706 OFFCURVE", "673 691 OFFCURVE", "712 663 CURVE SMOOTH", "751 635 OFFCURVE", "775 611 OFFCURVE", "783 590 CURVE SMOOTH", "791 569 OFFCURVE", "792 551 OFFCURVE", "788 534 CURVE", "809 536 OFFCURVE", "828 537 OFFCURVE", "847 537 CURVE SMOOTH", "945 536 OFFCURVE", "1031 508 OFFCURVE", "1106 453 CURVE", "1197 384 OFFCURVE", "1244 288 OFFCURVE", "1244 166 CURVE SMOOTH", "1244 44 OFFCURVE", "1197 -53 OFFCURVE", "1106 -121 CURVE SMOOTH", "1031 -177 OFFCURVE", "945 -205 OFFCURVE", "847 -206 CURVE SMOOTH", "828 -206 OFFCURVE", "808 -205 OFFCURVE", "788 -203 CURVE" ); }, { closed = 1; nodes = ( "643 457 OFFCURVE", "645 460 OFFCURVE", "649 462 CURVE", "694 496 OFFCURVE", "717 529 OFFCURVE", "717 563 CURVE", "715 593 OFFCURVE", "690 627 OFFCURVE", "640 664 CURVE", "590 626 OFFCURVE", "564 593 OFFCURVE", "562 563 CURVE", "562 528 OFFCURVE", "585 495 OFFCURVE", "630 462 CURVE SMOOTH", "634 459 OFFCURVE", "637 457 OFFCURVE", "640 454 CURVE" ); } ); width = 1279; } ); unicode = 06DD; }, { glyphname = "hizb-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "485 380 OFFCURVE", "506 385 OFFCURVE", "525 366 CURVE SMOOTH", "544 347 OFFCURVE", "540 325 OFFCURVE", "512 302 CURVE SMOOTH", "367 183 LINE", "554 201 LINE SMOOTH", "590 205 OFFCURVE", "608 193 OFFCURVE", "608 166 CURVE SMOOTH", "608 139 OFFCURVE", "590 127 OFFCURVE", "554 131 CURVE SMOOTH", "367 149 LINE", "512 30 LINE SMOOTH", "540 7 OFFCURVE", "545 -15 OFFCURVE", "526 -34 CURVE SMOOTH", "507 -53 OFFCURVE", "485 -49 OFFCURVE", "462 -20 CURVE SMOOTH", "343 125 LINE", "361 -62 LINE SMOOTH", "365 -98 OFFCURVE", "353 -116 OFFCURVE", "326 -116 CURVE SMOOTH", "299 -116 OFFCURVE", "287 -98 OFFCURVE", "291 -62 CURVE SMOOTH", "309 125 LINE", "190 -20 LINE SMOOTH", "167 -48 OFFCURVE", "145 -53 OFFCURVE", "126 -34 CURVE SMOOTH", "107 -15 OFFCURVE", "113 7 OFFCURVE", "141 30 CURVE SMOOTH", "286 149 LINE", "99 131 LINE SMOOTH", "63 127 OFFCURVE", "44 139 OFFCURVE", "44 166 CURVE SMOOTH", "44 193 OFFCURVE", "63 205 OFFCURVE", "99 201 CURVE SMOOTH", "286 183 LINE", "141 302 LINE SMOOTH", "113 325 OFFCURVE", "108 347 OFFCURVE", "127 366 CURVE SMOOTH", "146 385 OFFCURVE", "167 380 OFFCURVE", "190 352 CURVE SMOOTH", "309 207 LINE", "291 394 LINE SMOOTH", "287 430 OFFCURVE", "299 448 OFFCURVE", "326 448 CURVE SMOOTH", "353 448 OFFCURVE", "365 430 OFFCURVE", "361 394 CURVE SMOOTH", "343 206 LINE", "462 352 LINE SMOOTH" ); } ); width = 652; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "363 463 OFFCURVE", "379 439 OFFCURVE", "375 392 CURVE", "362 253 LINE", "451 361 LINE", "481 397 OFFCURVE", "510 402 OFFCURVE", "536 376 CURVE", "562 349 OFFCURVE", "557 321 OFFCURVE", "521 291 CURVE", "413 202 LINE", "552 216 LINE", "599 220 OFFCURVE", "623 204 OFFCURVE", "623 167 CURVE", "623 130 OFFCURVE", "599 113 OFFCURVE", "552 117 CURVE", "413 130 LINE", "521 42 LINE", "557 12 OFFCURVE", "562 -17 OFFCURVE", "536 -43 CURVE", "509 -69 OFFCURVE", "481 -64 OFFCURVE", "451 -28 CURVE", "362 79 LINE", "375 -60 LINE", "379 -107 OFFCURVE", "363 -130 OFFCURVE", "326 -130 CURVE", "289 -130 OFFCURVE", "272 -107 OFFCURVE", "276 -60 CURVE", "290 79 LINE", "201 -28 LINE", "171 -64 OFFCURVE", "142 -69 OFFCURVE", "116 -43 CURVE", "90 -17 OFFCURVE", "95 12 OFFCURVE", "131 42 CURVE", "239 130 LINE", "100 117 LINE", "53 113 OFFCURVE", "29 130 OFFCURVE", "29 167 CURVE", "29 204 OFFCURVE", "53 220 OFFCURVE", "100 216 CURVE", "239 202 LINE", "131 291 LINE", "95 321 OFFCURVE", "90 349 OFFCURVE", "116 376 CURVE", "142 402 OFFCURVE", "171 397 OFFCURVE", "201 361 CURVE", "290 253 LINE", "276 392 LINE", "272 439 OFFCURVE", "289 463 OFFCURVE", "326 463 CURVE" ); } ); width = 652; } ); unicode = 06DE; }, { glyphname = "sukunround-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "145 1009 OFFCURVE", "178 1018 OFFCURVE", "218 989 CURVE SMOOTH", "248 967 OFFCURVE", "261 943 OFFCURVE", "259 917 CURVE SMOOTH", "256 884 OFFCURVE", "246 859 OFFCURVE", "228 842 CURVE SMOOTH", "217 831 OFFCURVE", "197 826 OFFCURVE", "167 828 CURVE SMOOTH", "116 830 OFFCURVE", "95 861 OFFCURVE", "105 922 CURVE SMOOTH", "108 938 OFFCURVE", "113 952 OFFCURVE", "120 965 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "237 900 OFFCURVE", "235 909 OFFCURVE", "220 925 CURVE SMOOTH", "204 941 OFFCURVE", "187 949 OFFCURVE", "170 950 CURVE SMOOTH", "144 950 OFFCURVE", "130 941 OFFCURVE", "128 920 CURVE SMOOTH", "127 911 OFFCURVE", "130 904 OFFCURVE", "138 901 CURVE SMOOTH", "162 891 OFFCURVE", "192 890 OFFCURVE", "225 897 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "220 902 OFFCURVE", "219 909 OFFCURVE", "205 920 CURVE SMOOTH", "191 931 OFFCURVE", "180 937 OFFCURVE", "173 937 CURVE SMOOTH", "158 937 OFFCURVE", "149 930 OFFCURVE", "148 917 CURVE SMOOTH", "147 910 OFFCURVE", "150 906 OFFCURVE", "156 903 CURVE SMOOTH", "170 896 OFFCURVE", "188 894 OFFCURVE", "208 899 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "115 928 OFFCURVE", "123 948 OFFCURVE", "135 966 CURVE SMOOTH", "156 995 OFFCURVE", "182 998 OFFCURVE", "214 976 CURVE", "239 957 OFFCURVE", "250 936 OFFCURVE", "248 911 CURVE SMOOTH", "246 886 OFFCURVE", "238 867 OFFCURVE", "224 854 CURVE SMOOTH", "210 841 OFFCURVE", "187 836 OFFCURVE", "157 841 CURVE SMOOTH", "127 846 OFFCURVE", "112 868 OFFCURVE", "114 905 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 06DF; }, { glyphname = "sukunoval-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "216 1012 OFFCURVE", "214 1039 OFFCURVE", "210 1053 CURVE SMOOTH", "205 1071 OFFCURVE", "195 1080 OFFCURVE", "178 1080 CURVE SMOOTH", "163 1080 OFFCURVE", "152 1071 OFFCURVE", "146 1053 CURVE SMOOTH", "142 1041 OFFCURVE", "141 1014 OFFCURVE", "141 973 CURVE SMOOTH", "141 933 OFFCURVE", "142 906 OFFCURVE", "146 892 CURVE SMOOTH", "151 874 OFFCURVE", "162 866 OFFCURVE", "178 866 CURVE SMOOTH", "195 866 OFFCURVE", "205 874 OFFCURVE", "210 892 CURVE SMOOTH", "214 906 OFFCURVE", "216 933 OFFCURVE", "216 973 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "101 1011 OFFCURVE", "109 1042 OFFCURVE", "125 1064 CURVE SMOOTH", "141 1087 OFFCURVE", "159 1099 OFFCURVE", "178 1099 CURVE SMOOTH", "198 1099 OFFCURVE", "215 1087 OFFCURVE", "231 1064 CURVE SMOOTH", "247 1041 OFFCURVE", "256 1011 OFFCURVE", "256 973 CURVE SMOOTH", "256 934 OFFCURVE", "247 904 OFFCURVE", "231 881 CURVE SMOOTH", "215 858 OFFCURVE", "198 847 OFFCURVE", "178 847 CURVE SMOOTH", "159 847 OFFCURVE", "141 858 OFFCURVE", "125 881 CURVE SMOOTH", "109 904 OFFCURVE", "101 934 OFFCURVE", "101 973 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "216 1012 OFFCURVE", "214 1039 OFFCURVE", "210 1053 CURVE SMOOTH", "205 1071 OFFCURVE", "195 1080 OFFCURVE", "178 1080 CURVE SMOOTH", "163 1080 OFFCURVE", "152 1071 OFFCURVE", "146 1053 CURVE SMOOTH", "142 1041 OFFCURVE", "141 1014 OFFCURVE", "141 973 CURVE SMOOTH", "141 933 OFFCURVE", "142 906 OFFCURVE", "146 892 CURVE SMOOTH", "151 874 OFFCURVE", "162 866 OFFCURVE", "178 866 CURVE SMOOTH", "195 866 OFFCURVE", "205 874 OFFCURVE", "210 892 CURVE SMOOTH", "214 906 OFFCURVE", "216 933 OFFCURVE", "216 973 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "94 1013 OFFCURVE", "103 1045 OFFCURVE", "120 1069 CURVE SMOOTH", "137 1093 OFFCURVE", "158 1105 OFFCURVE", "179 1105 CURVE SMOOTH", "200 1105 OFFCURVE", "220 1093 OFFCURVE", "237 1069 CURVE SMOOTH", "254 1045 OFFCURVE", "263 1012 OFFCURVE", "263 972 CURVE SMOOTH", "263 932 OFFCURVE", "254 900 OFFCURVE", "237 876 CURVE SMOOTH", "220 852 OFFCURVE", "199 840 OFFCURVE", "178 840 CURVE SMOOTH", "157 840 OFFCURVE", "137 852 OFFCURVE", "120 876 CURVE SMOOTH", "103 900 OFFCURVE", "94 933 OFFCURVE", "94 973 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 06E0; }, { glyphname = "hahabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{179, 1069}"; }, { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; }, { name = _TashkilAboveDot; position = "{182, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "275 991 OFFCURVE", "280 980 OFFCURVE", "273 962 CURVE SMOOTH", "269 952 OFFCURVE", "262 942 OFFCURVE", "254 934 CURVE SMOOTH", "230 910 OFFCURVE", "212 893 OFFCURVE", "199 883 CURVE SMOOTH", "189 874 OFFCURVE", "177 868 OFFCURVE", "164 866 CURVE SMOOTH", "142 863 OFFCURVE", "117 865 OFFCURVE", "87 872 CURVE SMOOTH", "81 873 OFFCURVE", "79 877 OFFCURVE", "80 883 CURVE", "81 887 OFFCURVE", "83 890 OFFCURVE", "87 890 CURVE SMOOTH", "139 894 OFFCURVE", "181 909 OFFCURVE", "214 935 CURVE", "193 944 OFFCURVE", "176 948 OFFCURVE", "159 949 CURVE SMOOTH", "141 950 OFFCURVE", "123 946 OFFCURVE", "107 939 CURVE SMOOTH", "102 937 OFFCURVE", "99 937 OFFCURVE", "96 941 CURVE SMOOTH", "92 947 OFFCURVE", "91 952 OFFCURVE", "95 957 CURVE SMOOTH", "111 977 OFFCURVE", "126 991 OFFCURVE", "139 1001 CURVE SMOOTH", "154 1013 OFFCURVE", "174 1016 OFFCURVE", "199 1010 CURVE SMOOTH", "260 995 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{179, 1069}"; }, { name = _MarkAbove; position = "{180, 801}"; }, { name = _TashkilAbove; position = "{182, 801}"; }, { name = _TashkilAboveDot; position = "{182, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "283 997 OFFCURVE", "289 983 OFFCURVE", "280 960 CURVE SMOOTH", "275 949 OFFCURVE", "264 935 OFFCURVE", "248 918 CURVE SMOOTH", "232 901 OFFCURVE", "217 888 OFFCURVE", "205 878 CURVE SMOOTH", "179 857 OFFCURVE", "138 852 OFFCURVE", "85 865 CURVE SMOOTH", "77 867 OFFCURVE", "73 872 OFFCURVE", "73 881 CURVE SMOOTH", "73 890 OFFCURVE", "77 896 OFFCURVE", "87 897 CURVE", "132 901 OFFCURVE", "169 913 OFFCURVE", "199 933 CURVE", "166 944 OFFCURVE", "137 944 OFFCURVE", "110 932 CURVE", "101 928 OFFCURVE", "95 930 OFFCURVE", "89 938 CURVE SMOOTH", "83 946 OFFCURVE", "83 954 OFFCURVE", "89 961 CURVE SMOOTH", "106 982 OFFCURVE", "122 998 OFFCURVE", "137 1010 CURVE SMOOTH", "152 1022 OFFCURVE", "174 1025 OFFCURVE", "201 1018 CURVE SMOOTH", "262 1002 LINE SMOOTH" ); } ); width = 0; } ); unicode = 06E1; }, { glyphname = "meemStopabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{155, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; }, { name = _TashkilTashkilAbove; position = "{220, 1050}"; }, { name = _TashkilTashkilAbove2; position = "{220, 1050}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "68 1042 OFFCURVE", "64 1045 OFFCURVE", "70 1061 CURVE SMOOTH", "77 1082 OFFCURVE", "89 1100 OFFCURVE", "102 1114 CURVE SMOOTH", "115 1128 OFFCURVE", "133 1128 OFFCURVE", "156 1115 CURVE SMOOTH", "174 1105 OFFCURVE", "188 1089 OFFCURVE", "198 1070 CURVE SMOOTH", "201 1065 OFFCURVE", "202 1059 OFFCURVE", "201 1053 CURVE SMOOTH", "196 1020 LINE SMOOTH", "195 1013 OFFCURVE", "189 1008 OFFCURVE", "180 1007 CURVE SMOOTH", "105 997 OFFCURVE", "65 980 OFFCURVE", "58 954 CURVE", "86 879 OFFCURVE", "101 825 OFFCURVE", "103 792 CURVE SMOOTH", "104 779 OFFCURVE", "101 772 OFFCURVE", "95 771 CURVE SMOOTH", "88 770 OFFCURVE", "84 776 OFFCURVE", "81 787 CURVE SMOOTH", "77 804 OFFCURVE", "69 830 OFFCURVE", "56 865 CURVE SMOOTH", "42 901 OFFCURVE", "36 933 OFFCURVE", "38 959 CURVE", "42 1008 OFFCURVE", "74 1040 OFFCURVE", "133 1053 CURVE", "119 1069 OFFCURVE", "102 1070 OFFCURVE", "83 1054 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{155, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; }, { name = _TashkilTashkilAbove; position = "{220, 1050}"; }, { name = _TashkilTashkilAbove2; position = "{220, 1050}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "115 1067 OFFCURVE", "103 1067 OFFCURVE", "90 1058 CURVE SMOOTH", "77 1049 OFFCURVE", "69 1044 OFFCURVE", "65 1045 CURVE", "58 1047 OFFCURVE", "58 1057 OFFCURVE", "65 1077 CURVE SMOOTH", "72 1097 OFFCURVE", "83 1113 OFFCURVE", "98 1125 CURVE SMOOTH", "113 1137 OFFCURVE", "134 1136 OFFCURVE", "160 1121 CURVE", "179 1110 OFFCURVE", "194 1094 OFFCURVE", "205 1074 CURVE SMOOTH", "209 1067 OFFCURVE", "209 1059 OFFCURVE", "208 1052 CURVE SMOOTH", "203 1019 LINE", "201 1009 OFFCURVE", "194 1002 OFFCURVE", "181 1000 CURVE SMOOTH", "112 991 OFFCURVE", "73 976 OFFCURVE", "65 954 CURVE", "92 880 OFFCURVE", "108 825 OFFCURVE", "110 792 CURVE SMOOTH", "111 775 OFFCURVE", "106 766 OFFCURVE", "96 764 CURVE", "85 763 OFFCURVE", "78 770 OFFCURVE", "74 786 CURVE SMOOTH", "70 802 OFFCURVE", "61 828 OFFCURVE", "48 864 CURVE SMOOTH", "35 900 OFFCURVE", "29 932 OFFCURVE", "31 959 CURVE", "36 1007 OFFCURVE", "68 1040 OFFCURVE", "127 1058 CURVE" ); } ); width = 0; } ); unicode = 06E2; }, { glyphname = "seenbelow-ar"; layers = ( { anchors = ( { name = _MarkBelow; position = "{269, -93}"; }, { name = _SeenBelow; position = "{249, -195}"; } ); components = ( { name = "seenabove-ar"; transform = "{1, 0, 0, 1, 0, -1777}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{269, -93}"; }, { name = _SeenBelow; position = "{249, -195}"; } ); components = ( { name = "seenabove-ar"; transform = "{1, 0, 0, 1, 0, -1777}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 06E3; }, { glyphname = "maddalong-ar"; layers = ( { anchors = ( { name = _AlefAbove; position = "{0, 635}"; }, { name = _MarkAbove; position = "{0, 781}"; }, { name = _TashkilAbove; position = "{0, 810}"; }, { name = _TashkilTashkilAbove; position = "{0, 810}"; }, { name = _TashkilTashkilAbove2; position = "{0, 810}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "167 902 OFFCURVE", "173 898 OFFCURVE", "176 890 CURVE SMOOTH", "179 882 OFFCURVE", "176 875 OFFCURVE", "169 870 CURVE SMOOTH", "112 832 OFFCURVE", "19 815 OFFCURVE", "-110 819 CURVE", "-115 808 OFFCURVE", "-119 800 OFFCURVE", "-124 795 CURVE SMOOTH", "-129 790 OFFCURVE", "-133 789 OFFCURVE", "-136 792 CURVE SMOOTH", "-173 831 LINE", "-180 838 OFFCURVE", "-172 855 OFFCURVE", "-148 882 CURVE SMOOTH", "-143 887 OFFCURVE", "-136 889 OFFCURVE", "-126 887 CURVE SMOOTH", "-31 872 OFFCURVE", "63 876 OFFCURVE", "157 899 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _AlefAbove; position = "{0, 635}"; }, { name = _MarkAbove; position = "{0, 781}"; }, { name = _TashkilAbove; position = "{0, 810}"; }, { name = _TashkilTashkilAbove; position = "{0, 810}"; }, { name = _TashkilTashkilAbove2; position = "{0, 810}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "169 910 OFFCURVE", "178 905 OFFCURVE", "183 893 CURVE SMOOTH", "188 881 OFFCURVE", "184 871 OFFCURVE", "173 864 CURVE SMOOTH", "115 826 OFFCURVE", "23 809 OFFCURVE", "-105 812 CURVE", "-117 786 OFFCURVE", "-130 778 OFFCURVE", "-142 787 CURVE", "-178 825 LINE SMOOTH", "-185 832 OFFCURVE", "-186 841 OFFCURVE", "-180 851 CURVE SMOOTH", "-174 861 OFFCURVE", "-165 873 OFFCURVE", "-153 887 CURVE SMOOTH", "-146 894 OFFCURVE", "-137 896 OFFCURVE", "-125 894 CURVE SMOOTH", "-31 879 OFFCURVE", "62 883 OFFCURVE", "155 906 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 06E4; }, { glyphname = "wawSmall-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 417}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "242 183 OFFCURVE", "233 193 OFFCURVE", "224 195 CURVE SMOOTH", "216 197 OFFCURVE", "210 195 OFFCURVE", "206 189 CURVE SMOOTH", "203 184 OFFCURVE", "203 179 OFFCURVE", "209 174 CURVE SMOOTH", "216 168 OFFCURVE", "229 166 OFFCURVE", "249 166 CURVE" ); }, { closed = 1; nodes = ( "241 101 OFFCURVE", "227 101 OFFCURVE", "209 104 CURVE SMOOTH", "176 110 OFFCURVE", "165 134 OFFCURVE", "176 178 CURVE SMOOTH", "182 201 OFFCURVE", "192 223 OFFCURVE", "208 244 CURVE SMOOTH", "215 254 OFFCURVE", "224 258 OFFCURVE", "234 258 CURVE SMOOTH", "245 258 OFFCURVE", "256 252 OFFCURVE", "265 241 CURVE SMOOTH", "290 209 OFFCURVE", "296 162 OFFCURVE", "282 98 CURVE SMOOTH", "273 56 OFFCURVE", "255 22 OFFCURVE", "227 -4 CURVE SMOOTH", "210 -20 OFFCURVE", "192 -30 OFFCURVE", "174 -33 CURVE SMOOTH", "130 -41 OFFCURVE", "91 -35 OFFCURVE", "55 -14 CURVE SMOOTH", "46 -9 OFFCURVE", "42 -4 OFFCURVE", "45 0 CURVE SMOOTH", "48 4 OFFCURVE", "53 5 OFFCURVE", "62 5 CURVE SMOOTH", "99 4 OFFCURVE", "135 10 OFFCURVE", "167 24 CURVE SMOOTH", "207 41 OFFCURVE", "235 68 OFFCURVE", "252 103 CURVE" ); } ); width = 333; }, { anchors = ( { name = TashkilAbove; position = "{195, 417}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "242 183 OFFCURVE", "233 193 OFFCURVE", "224 195 CURVE SMOOTH", "216 197 OFFCURVE", "210 195 OFFCURVE", "206 189 CURVE SMOOTH", "203 184 OFFCURVE", "203 179 OFFCURVE", "209 174 CURVE SMOOTH", "216 168 OFFCURVE", "229 166 OFFCURVE", "249 166 CURVE" ); }, { closed = 1; nodes = ( "227 94 OFFCURVE", "213 95 OFFCURVE", "202 98 CURVE SMOOTH", "168 106 OFFCURVE", "157 133 OFFCURVE", "168 180 CURVE SMOOTH", "174 204 OFFCURVE", "185 227 OFFCURVE", "202 248 CURVE", "211 259 OFFCURVE", "222 265 OFFCURVE", "235 265 CURVE SMOOTH", "248 265 OFFCURVE", "260 259 OFFCURVE", "271 246 CURVE SMOOTH", "298 212 OFFCURVE", "304 162 OFFCURVE", "290 96 CURVE SMOOTH", "281 53 OFFCURVE", "261 17 OFFCURVE", "232 -10 CURVE", "213 -27 OFFCURVE", "194 -37 OFFCURVE", "175 -41 CURVE SMOOTH", "129 -49 OFFCURVE", "88 -42 OFFCURVE", "51 -21 CURVE SMOOTH", "37 -13 OFFCURVE", "33 -5 OFFCURVE", "38 2 CURVE SMOOTH", "43 9 OFFCURVE", "51 12 OFFCURVE", "63 12 CURVE SMOOTH", "99 11 OFFCURVE", "134 18 OFFCURVE", "168 32 CURVE SMOOTH", "202 46 OFFCURVE", "227 67 OFFCURVE", "244 94 CURVE" ); } ); width = 333; } ); unicode = 06E5; }, { glyphname = "yehSmall-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 417}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "204 245 OFFCURVE", "219 259 OFFCURVE", "236 259 CURVE SMOOTH", "258 259 OFFCURVE", "272 246 OFFCURVE", "279 219 CURVE SMOOTH", "284 200 OFFCURVE", "285 176 OFFCURVE", "284 148 CURVE SMOOTH", "284 139 OFFCURVE", "281 135 OFFCURVE", "276 135 CURVE SMOOTH", "271 135 OFFCURVE", "268 139 OFFCURVE", "267 147 CURVE SMOOTH", "262 181 OFFCURVE", "250 198 OFFCURVE", "230 198 CURVE SMOOTH", "216 198 OFFCURVE", "202 185 OFFCURVE", "188 159 CURVE SMOOTH", "169 124 OFFCURVE", "132 92 OFFCURVE", "75 65 CURVE SMOOTH", "68 62 OFFCURVE", "66 60 OFFCURVE", "68 58 CURVE", "144 41 OFFCURVE", "235 43 OFFCURVE", "342 62 CURVE SMOOTH", "367 67 OFFCURVE", "372 60 OFFCURVE", "355 44 CURVE SMOOTH", "354 44 OFFCURVE", "347 38 OFFCURVE", "332 26 CURVE SMOOTH", "317 14 OFFCURVE", "303 8 OFFCURVE", "292 6 CURVE SMOOTH", "255 0 OFFCURVE", "216 -3 OFFCURVE", "173 -2 CURVE SMOOTH", "130 -1 OFFCURVE", "100 1 OFFCURVE", "83 6 CURVE", "48 17 OFFCURVE", "39 39 OFFCURVE", "56 71 CURVE SMOOTH", "70 97 OFFCURVE", "84 114 OFFCURVE", "99 122 CURVE SMOOTH", "145 149 OFFCURVE", "176 181 OFFCURVE", "193 219 CURVE SMOOTH" ); } ); width = 407; }, { anchors = ( { name = TashkilAbove; position = "{205, 417}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "199 251 OFFCURVE", "216 266 OFFCURVE", "236 266 CURVE", "262 265 OFFCURVE", "278 251 OFFCURVE", "286 221 CURVE SMOOTH", "291 201 OFFCURVE", "293 177 OFFCURVE", "292 148 CURVE", "291 135 OFFCURVE", "285 127 OFFCURVE", "276 127 CURVE", "267 127 OFFCURVE", "261 134 OFFCURVE", "259 146 CURVE", "255 176 OFFCURVE", "245 191 OFFCURVE", "230 191 CURVE", "219 191 OFFCURVE", "207 179 OFFCURVE", "195 156 CURVE SMOOTH", "176 121 OFFCURVE", "139 89 OFFCURVE", "84 62 CURVE", "157 49 OFFCURVE", "243 51 OFFCURVE", "341 69 CURVE SMOOTH", "362 73 OFFCURVE", "372 70 OFFCURVE", "373 60 CURVE SMOOTH", "374 53 OFFCURVE", "371 47 OFFCURVE", "365 42 CURVE SMOOTH", "359 37 OFFCURVE", "348 30 OFFCURVE", "334 19 CURVE SMOOTH", "320 8 OFFCURVE", "306 1 OFFCURVE", "293 -1 CURVE SMOOTH", "256 -7 OFFCURVE", "215 -10 OFFCURVE", "172 -9 CURVE SMOOTH", "129 -8 OFFCURVE", "102 -7 OFFCURVE", "90 -3 CURVE SMOOTH", "78 1 OFFCURVE", "70 4 OFFCURVE", "65 6 CURVE SMOOTH", "38 20 OFFCURVE", "33 42 OFFCURVE", "48 71 CURVE SMOOTH", "63 100 OFFCURVE", "80 119 OFFCURVE", "96 128 CURVE SMOOTH", "140 154 OFFCURVE", "170 186 OFFCURVE", "186 222 CURVE SMOOTH" ); } ); width = 407; } ); unicode = 06E6; }, { glyphname = "yehabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{190, 1141}"; }, { name = _MarkAbove; position = "{155, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; } ); components = ( { name = "yehSmall-ar"; transform = "{1, 0, 0, 1, -39, 820}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{190, 1141}"; }, { name = _MarkAbove; position = "{155, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; } ); components = ( { name = "yehSmall-ar"; transform = "{1, 0, 0, 1, -39, 820}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 06E7; }, { glyphname = "noonabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{127, 1249}"; }, { name = _MarkAbove; position = "{141, 801}"; }, { name = _NoonAbove; position = "{142, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "130 1208 OFFCURVE", "132 1208 OFFCURVE", "134 1207 CURVE SMOOTH", "149 1202 OFFCURVE", "163 1194 OFFCURVE", "175 1183 CURVE SMOOTH", "177 1181 OFFCURVE", "177 1180 OFFCURVE", "176 1178 CURVE SMOOTH", "148 1134 LINE SMOOTH", "147 1132 OFFCURVE", "145 1133 OFFCURVE", "142 1135 CURVE SMOOTH", "139 1137 OFFCURVE", "126 1145 OFFCURVE", "102 1160 CURVE SMOOTH", "100 1161 OFFCURVE", "100 1163 OFFCURVE", "101 1164 CURVE SMOOTH", "129 1206 LINE SMOOTH" ); }, { closed = 1; nodes = ( "250 1094 OFFCURVE", "262 1064 OFFCURVE", "270 1028 CURVE SMOOTH", "278 992 OFFCURVE", "279 958 OFFCURVE", "274 924 CURVE SMOOTH", "271 906 OFFCURVE", "265 890 OFFCURVE", "257 877 CURVE SMOOTH", "235 842 OFFCURVE", "196 822 OFFCURVE", "140 816 CURVE SMOOTH", "100 812 OFFCURVE", "70 819 OFFCURVE", "49 839 CURVE SMOOTH", "28 859 OFFCURVE", "18 885 OFFCURVE", "20 920 CURVE SMOOTH", "22 955 OFFCURVE", "34 988 OFFCURVE", "56 1018 CURVE SMOOTH", "59 1022 OFFCURVE", "61 1023 OFFCURVE", "64 1021 CURVE SMOOTH", "67 1019 OFFCURVE", "66 1016 OFFCURVE", "63 1010 CURVE SMOOTH", "39 970 OFFCURVE", "35 937 OFFCURVE", "50 912 CURVE SMOOTH", "65 887 OFFCURVE", "94 875 OFFCURVE", "137 875 CURVE", "187 876 OFFCURVE", "228 892 OFFCURVE", "259 925 CURVE SMOOTH", "260 926 OFFCURVE", "260 927 OFFCURVE", "260 930 CURVE SMOOTH", "260 948 OFFCURVE", "254 972 OFFCURVE", "243 1002 CURVE SMOOTH", "232 1032 OFFCURVE", "221 1055 OFFCURVE", "212 1068 CURVE SMOOTH", "209 1072 OFFCURVE", "209 1075 OFFCURVE", "210 1078 CURVE SMOOTH", "228 1121 LINE SMOOTH", "230 1126 OFFCURVE", "232 1126 OFFCURVE", "236 1119 CURVE" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{127, 1249}"; }, { name = _MarkAbove; position = "{141, 801}"; }, { name = _NoonAbove; position = "{142, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "127 1214 OFFCURVE", "131 1216 OFFCURVE", "136 1214 CURVE SMOOTH", "155 1207 OFFCURVE", "169 1198 OFFCURVE", "180 1188 CURVE", "184 1183 OFFCURVE", "185 1179 OFFCURVE", "182 1174 CURVE SMOOTH", "154 1130 LINE SMOOTH", "150 1124 OFFCURVE", "146 1123 OFFCURVE", "141 1127 CURVE SMOOTH", "136 1131 OFFCURVE", "122 1140 OFFCURVE", "98 1154 CURVE SMOOTH", "93 1157 OFFCURVE", "91 1161 OFFCURVE", "94 1167 CURVE", "123 1210 LINE" ); }, { closed = 1; nodes = ( "257 1096 OFFCURVE", "268 1065 OFFCURVE", "277 1029 CURVE SMOOTH", "286 993 OFFCURVE", "287 961 OFFCURVE", "283 934 CURVE SMOOTH", "279 907 OFFCURVE", "273 887 OFFCURVE", "264 873 CURVE SMOOTH", "240 836 OFFCURVE", "199 815 OFFCURVE", "141 809 CURVE", "99 805 OFFCURVE", "65 813 OFFCURVE", "43 834 CURVE", "21 855 OFFCURVE", "11 885 OFFCURVE", "13 921 CURVE SMOOTH", "15 957 OFFCURVE", "28 991 OFFCURVE", "50 1022 CURVE SMOOTH", "56 1030 OFFCURVE", "61 1032 OFFCURVE", "67 1027 CURVE SMOOTH", "74 1022 OFFCURVE", "75 1015 OFFCURVE", "70 1006 CURVE SMOOTH", "48 968 OFFCURVE", "43 938 OFFCURVE", "56 916 CURVE", "70 894 OFFCURVE", "99 883 OFFCURVE", "143 883 CURVE SMOOTH", "187 883 OFFCURVE", "223 898 OFFCURVE", "252 929 CURVE", "252 930 LINE SMOOTH", "252 947 OFFCURVE", "247 971 OFFCURVE", "236 1000 CURVE SMOOTH", "225 1029 OFFCURVE", "216 1051 OFFCURVE", "207 1064 CURVE", "203 1070 OFFCURVE", "202 1076 OFFCURVE", "204 1082 CURVE SMOOTH", "221 1123 LINE SMOOTH", "222 1126 OFFCURVE", "224 1129 OFFCURVE", "226 1130 CURVE SMOOTH", "232 1134 OFFCURVE", "238 1132 OFFCURVE", "243 1123 CURVE SMOOTH", "243 1122 LINE SMOOTH" ); } ); width = 0; } ); unicode = 06E8; }, { glyphname = "sajdah-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "420 426 OFFCURVE", "407 416 OFFCURVE", "400 387 CURVE SMOOTH", "371 260 LINE SMOOTH", "370 256 OFFCURVE", "370 254 OFFCURVE", "372 253 CURVE SMOOTH", "374 252 OFFCURVE", "376 254 OFFCURVE", "378 257 CURVE SMOOTH", "447 367 LINE SMOOTH", "463 393 OFFCURVE", "460 410 OFFCURVE", "440 418 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "596 82 OFFCURVE", "586 95 OFFCURVE", "557 102 CURVE SMOOTH", "430 131 LINE SMOOTH", "426 132 OFFCURVE", "424 132 OFFCURVE", "423 130 CURVE SMOOTH", "422 128 OFFCURVE", "424 126 OFFCURVE", "427 124 CURVE SMOOTH", "537 55 LINE SMOOTH", "563 39 OFFCURVE", "580 42 OFFCURVE", "588 62 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "252 -94 OFFCURVE", "265 -84 OFFCURVE", "272 -55 CURVE SMOOTH", "301 72 LINE SMOOTH", "302 76 OFFCURVE", "302 78 OFFCURVE", "300 79 CURVE SMOOTH", "298 80 OFFCURVE", "296 78 OFFCURVE", "294 75 CURVE SMOOTH", "226 -36 LINE SMOOTH", "210 -61 OFFCURVE", "212 -78 OFFCURVE", "232 -86 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "76 250 OFFCURVE", "86 237 OFFCURVE", "115 230 CURVE SMOOTH", "242 201 LINE SMOOTH", "246 200 OFFCURVE", "248 200 OFFCURVE", "249 202 CURVE SMOOTH", "250 204 OFFCURVE", "248 206 OFFCURVE", "245 208 CURVE SMOOTH", "134 276 LINE SMOOTH", "109 292 OFFCURVE", "92 290 OFFCURVE", "84 270 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "586 237 OFFCURVE", "596 250 OFFCURVE", "588 270 CURVE SMOOTH", "580 290 OFFCURVE", "563 292 OFFCURVE", "538 276 CURVE SMOOTH", "427 208 LINE SMOOTH", "424 206 OFFCURVE", "422 204 OFFCURVE", "423 202 CURVE SMOOTH", "424 200 OFFCURVE", "426 200 OFFCURVE", "430 201 CURVE SMOOTH", "557 230 LINE SMOOTH" ); }, { closed = 1; nodes = ( "407 -84 OFFCURVE", "420 -94 OFFCURVE", "440 -86 CURVE SMOOTH", "460 -78 OFFCURVE", "462 -61 OFFCURVE", "446 -36 CURVE SMOOTH", "378 75 LINE SMOOTH", "376 78 OFFCURVE", "374 80 OFFCURVE", "372 79 CURVE SMOOTH", "370 78 OFFCURVE", "370 76 OFFCURVE", "371 72 CURVE SMOOTH", "400 -55 LINE SMOOTH" ); }, { closed = 1; nodes = ( "86 95 OFFCURVE", "76 81 OFFCURVE", "84 61 CURVE SMOOTH", "92 41 OFFCURVE", "110 39 OFFCURVE", "135 55 CURVE SMOOTH", "245 124 LINE SMOOTH", "248 126 OFFCURVE", "250 128 OFFCURVE", "249 130 CURVE SMOOTH", "248 132 OFFCURVE", "246 132 OFFCURVE", "242 131 CURVE SMOOTH", "115 102 LINE SMOOTH" ); }, { closed = 1; nodes = ( "264 416 OFFCURVE", "251 426 OFFCURVE", "231 418 CURVE SMOOTH", "211 410 OFFCURVE", "209 392 OFFCURVE", "225 367 CURVE SMOOTH", "294 257 LINE SMOOTH", "296 254 OFFCURVE", "298 252 OFFCURVE", "300 253 CURVE SMOOTH", "302 254 OFFCURVE", "302 256 OFFCURVE", "301 260 CURVE SMOOTH", "271 387 LINE SMOOTH" ); }, { closed = 1; nodes = ( "514 374 OFFCURVE", "497 369 OFFCURVE", "480 345 CURVE SMOOTH", "404 240 LINE SMOOTH", "402 237 OFFCURVE", "402 234 OFFCURVE", "403 233 CURVE SMOOTH", "404 232 OFFCURVE", "407 232 OFFCURVE", "410 234 CURVE SMOOTH", "516 310 LINE SMOOTH", "540 328 OFFCURVE", "544 344 OFFCURVE", "529 359 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "544 -12 OFFCURVE", "539 5 OFFCURVE", "515 22 CURVE SMOOTH", "410 98 LINE SMOOTH", "407 100 OFFCURVE", "404 100 OFFCURVE", "403 99 CURVE SMOOTH", "402 98 OFFCURVE", "402 95 OFFCURVE", "404 92 CURVE SMOOTH", "479 -14 LINE SMOOTH", "497 -38 OFFCURVE", "514 -42 OFFCURVE", "529 -27 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "158 -42 OFFCURVE", "174 -38 OFFCURVE", "192 -14 CURVE SMOOTH", "268 92 LINE SMOOTH", "270 95 OFFCURVE", "270 98 OFFCURVE", "269 99 CURVE SMOOTH", "268 100 OFFCURVE", "265 100 OFFCURVE", "262 98 CURVE SMOOTH", "157 22 LINE SMOOTH", "133 5 OFFCURVE", "128 -12 OFFCURVE", "143 -27 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "128 344 OFFCURVE", "132 328 OFFCURVE", "156 310 CURVE SMOOTH", "262 234 LINE SMOOTH", "265 232 OFFCURVE", "268 232 OFFCURVE", "269 233 CURVE SMOOTH", "270 234 OFFCURVE", "270 237 OFFCURVE", "268 240 CURVE SMOOTH", "192 345 LINE SMOOTH", "175 369 OFFCURVE", "158 374 OFFCURVE", "143 359 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "593 136 OFFCURVE", "608 144 OFFCURVE", "608 166 CURVE SMOOTH", "608 188 OFFCURVE", "593 196 OFFCURVE", "564 191 CURVE SMOOTH", "436 170 LINE SMOOTH", "432 169 OFFCURVE", "430 168 OFFCURVE", "430 166 CURVE SMOOTH", "430 164 OFFCURVE", "432 163 OFFCURVE", "436 162 CURVE SMOOTH", "564 141 LINE SMOOTH" ); }, { closed = 1; nodes = ( "306 -91 OFFCURVE", "314 -106 OFFCURVE", "336 -106 CURVE SMOOTH", "358 -106 OFFCURVE", "366 -91 OFFCURVE", "361 -62 CURVE SMOOTH", "340 66 LINE SMOOTH", "339 70 OFFCURVE", "338 72 OFFCURVE", "336 72 CURVE SMOOTH", "334 72 OFFCURVE", "333 70 OFFCURVE", "332 66 CURVE SMOOTH", "311 -62 LINE SMOOTH" ); }, { closed = 1; nodes = ( "78 196 OFFCURVE", "63 188 OFFCURVE", "63 166 CURVE SMOOTH", "63 144 OFFCURVE", "78 136 OFFCURVE", "107 141 CURVE SMOOTH", "236 162 LINE SMOOTH", "240 163 OFFCURVE", "242 164 OFFCURVE", "242 166 CURVE SMOOTH", "242 168 OFFCURVE", "240 169 OFFCURVE", "236 170 CURVE SMOOTH", "107 191 LINE SMOOTH" ); }, { closed = 1; nodes = ( "366 424 OFFCURVE", "358 438 OFFCURVE", "336 438 CURVE SMOOTH", "314 438 OFFCURVE", "306 424 OFFCURVE", "311 395 CURVE SMOOTH", "332 266 LINE SMOOTH", "333 262 OFFCURVE", "334 260 OFFCURVE", "336 260 CURVE SMOOTH", "338 260 OFFCURVE", "339 262 OFFCURVE", "340 266 CURVE SMOOTH", "361 395 LINE SMOOTH" ); }, { closed = 1; nodes = ( "342 510 OFFCURVE", "353 539 OFFCURVE", "368 565 CURVE", "354 578 OFFCURVE", "343 593 OFFCURVE", "336 611 CURVE", "329 593 OFFCURVE", "318 578 OFFCURVE", "304 565 CURVE", "320 539 OFFCURVE", "330 510 OFFCURVE", "336 477 CURVE" ); }, { closed = 1; nodes = ( "348 686 OFFCURVE", "349 661 OFFCURVE", "351 651 CURVE SMOOTH", "356 623 OFFCURVE", "365 602 OFFCURVE", "382 586 CURVE", "389 594 OFFCURVE", "394 598 OFFCURVE", "394 598 CURVE SMOOTH", "423 627 OFFCURVE", "452 642 OFFCURVE", "483 642 CURVE SMOOTH", "496 642 OFFCURVE", "507 639 OFFCURVE", "515 634 CURVE SMOOTH", "530 624 OFFCURVE", "537 611 OFFCURVE", "537 594 CURVE SMOOTH", "537 585 OFFCURVE", "534 576 OFFCURVE", "529 568 CURVE SMOOTH", "520 553 OFFCURVE", "506 546 OFFCURVE", "488 546 CURVE SMOOTH", "479 546 OFFCURVE", "471 548 OFFCURVE", "463 553 CURVE SMOOTH", "448 562 OFFCURVE", "440 576 OFFCURVE", "440 594 CURVE SMOOTH", "442 603 OFFCURVE", "437 602 OFFCURVE", "423 592 CURVE SMOOTH", "386 561 OFFCURVE", "364 516 OFFCURVE", "357 454 CURVE", "376 445 OFFCURVE", "384 423 OFFCURVE", "380 388 CURVE", "395 436 OFFCURVE", "419 451 OFFCURVE", "453 433 CURVE SMOOTH", "480 419 OFFCURVE", "482 393 OFFCURVE", "461 354 CURVE", "493 393 OFFCURVE", "521 398 OFFCURVE", "546 368 CURVE SMOOTH", "565 345 OFFCURVE", "558 320 OFFCURVE", "524 292 CURVE", "569 316 OFFCURVE", "597 308 OFFCURVE", "608 271 CURVE SMOOTH", "616 243 OFFCURVE", "600 223 OFFCURVE", "558 210 CURVE", "605 215 OFFCURVE", "628 200 OFFCURVE", "628 166 CURVE SMOOTH", "628 132 OFFCURVE", "605 117 OFFCURVE", "560 122 CURVE", "607 108 OFFCURVE", "621 83 OFFCURVE", "603 49 CURVE SMOOTH", "589 23 OFFCURVE", "563 20 OFFCURVE", "524 41 CURVE", "563 9 OFFCURVE", "568 -20 OFFCURVE", "538 -45 CURVE SMOOTH", "515 -64 OFFCURVE", "489 -56 OFFCURVE", "461 -22 CURVE", "485 -67 OFFCURVE", "478 -95 OFFCURVE", "441 -106 CURVE SMOOTH", "413 -114 OFFCURVE", "393 -98 OFFCURVE", "380 -56 CURVE", "384 -91 OFFCURVE", "376 -113 OFFCURVE", "357 -122 CURVE", "364 -184 OFFCURVE", "386 -229 OFFCURVE", "423 -260 CURVE SMOOTH", "437 -270 OFFCURVE", "442 -271 OFFCURVE", "440 -262 CURVE SMOOTH", "440 -244 OFFCURVE", "448 -230 OFFCURVE", "463 -221 CURVE SMOOTH", "471 -216 OFFCURVE", "479 -214 OFFCURVE", "488 -214 CURVE SMOOTH", "506 -214 OFFCURVE", "520 -221 OFFCURVE", "529 -236 CURVE SMOOTH", "534 -244 OFFCURVE", "537 -253 OFFCURVE", "537 -262 CURVE SMOOTH", "537 -279 OFFCURVE", "530 -292 OFFCURVE", "515 -302 CURVE SMOOTH", "507 -307 OFFCURVE", "496 -310 OFFCURVE", "483 -310 CURVE SMOOTH", "452 -310 OFFCURVE", "423 -295 OFFCURVE", "394 -266 CURVE SMOOTH", "394 -266 OFFCURVE", "389 -262 OFFCURVE", "382 -254 CURVE", "365 -270 OFFCURVE", "356 -291 OFFCURVE", "351 -319 CURVE SMOOTH", "349 -329 OFFCURVE", "348 -354 OFFCURVE", "348 -392 CURVE SMOOTH", "348 -403 OFFCURVE", "344 -408 OFFCURVE", "336 -408 CURVE SMOOTH", "328 -408 OFFCURVE", "323 -403 OFFCURVE", "323 -392 CURVE SMOOTH", "323 -354 OFFCURVE", "323 -329 OFFCURVE", "321 -319 CURVE SMOOTH", "316 -291 OFFCURVE", "306 -270 OFFCURVE", "289 -254 CURVE", "282 -262 OFFCURVE", "278 -266 OFFCURVE", "278 -266 CURVE SMOOTH", "249 -295 OFFCURVE", "219 -310 OFFCURVE", "188 -310 CURVE SMOOTH", "175 -310 OFFCURVE", "165 -307 OFFCURVE", "157 -302 CURVE SMOOTH", "142 -292 OFFCURVE", "135 -279 OFFCURVE", "135 -262 CURVE SMOOTH", "135 -253 OFFCURVE", "137 -244 OFFCURVE", "142 -236 CURVE SMOOTH", "151 -221 OFFCURVE", "165 -214 OFFCURVE", "183 -214 CURVE SMOOTH", "192 -214 OFFCURVE", "200 -216 OFFCURVE", "208 -221 CURVE SMOOTH", "223 -230 OFFCURVE", "231 -244 OFFCURVE", "231 -262 CURVE SMOOTH", "229 -271 OFFCURVE", "235 -270 OFFCURVE", "249 -260 CURVE SMOOTH", "286 -229 OFFCURVE", "307 -184 OFFCURVE", "314 -122 CURVE", "295 -114 OFFCURVE", "288 -92 OFFCURVE", "291 -59 CURVE", "277 -105 OFFCURVE", "253 -119 OFFCURVE", "219 -101 CURVE SMOOTH", "192 -87 OFFCURVE", "189 -61 OFFCURVE", "210 -23 CURVE", "179 -61 OFFCURVE", "150 -66 OFFCURVE", "125 -37 CURVE SMOOTH", "105 -14 OFFCURVE", "112 12 OFFCURVE", "146 39 CURVE", "103 16 OFFCURVE", "76 23 OFFCURVE", "64 60 CURVE SMOOTH", "56 88 OFFCURVE", "72 109 OFFCURVE", "114 122 CURVE", "67 117 OFFCURVE", "44 132 OFFCURVE", "44 166 CURVE SMOOTH", "44 200 OFFCURVE", "67 215 OFFCURVE", "114 210 CURVE", "66 225 OFFCURVE", "51 249 OFFCURVE", "69 284 CURVE SMOOTH", "83 309 OFFCURVE", "109 313 OFFCURVE", "148 292 CURVE", "109 324 OFFCURVE", "104 351 OFFCURVE", "134 376 CURVE SMOOTH", "157 395 OFFCURVE", "182 388 OFFCURVE", "209 355 CURVE", "186 398 OFFCURVE", "193 426 OFFCURVE", "230 438 CURVE SMOOTH", "258 446 OFFCURVE", "279 430 OFFCURVE", "292 388 CURVE", "288 423 OFFCURVE", "295 445 OFFCURVE", "314 454 CURVE", "307 516 OFFCURVE", "286 561 OFFCURVE", "249 592 CURVE SMOOTH", "235 602 OFFCURVE", "229 603 OFFCURVE", "231 594 CURVE SMOOTH", "231 576 OFFCURVE", "223 562 OFFCURVE", "208 553 CURVE SMOOTH", "200 548 OFFCURVE", "192 546 OFFCURVE", "183 546 CURVE SMOOTH", "165 546 OFFCURVE", "151 553 OFFCURVE", "142 568 CURVE SMOOTH", "137 576 OFFCURVE", "135 585 OFFCURVE", "135 594 CURVE SMOOTH", "135 611 OFFCURVE", "142 624 OFFCURVE", "157 634 CURVE SMOOTH", "165 639 OFFCURVE", "175 642 OFFCURVE", "188 642 CURVE SMOOTH", "219 642 OFFCURVE", "249 627 OFFCURVE", "278 598 CURVE SMOOTH", "278 598 OFFCURVE", "282 594 OFFCURVE", "289 586 CURVE", "306 602 OFFCURVE", "316 623 OFFCURVE", "321 651 CURVE SMOOTH", "323 661 OFFCURVE", "323 686 OFFCURVE", "323 724 CURVE SMOOTH", "323 735 OFFCURVE", "328 740 OFFCURVE", "336 740 CURVE SMOOTH", "344 740 OFFCURVE", "348 735 OFFCURVE", "348 724 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "330 -178 OFFCURVE", "320 -207 OFFCURVE", "304 -233 CURVE", "318 -246 OFFCURVE", "329 -261 OFFCURVE", "336 -279 CURVE", "343 -261 OFFCURVE", "354 -246 OFFCURVE", "368 -233 CURVE", "353 -207 OFFCURVE", "342 -178 OFFCURVE", "336 -145 CURVE" ); } ); width = 671; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "420 426 OFFCURVE", "407 416 OFFCURVE", "400 387 CURVE", "371 260 LINE SMOOTH", "370 256 OFFCURVE", "370 254 OFFCURVE", "372 253 CURVE SMOOTH", "374 252 OFFCURVE", "376 254 OFFCURVE", "378 257 CURVE SMOOTH", "447 367 LINE", "463 393 OFFCURVE", "460 410 OFFCURVE", "440 418 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "596 82 OFFCURVE", "586 95 OFFCURVE", "557 102 CURVE", "430 131 LINE SMOOTH", "426 132 OFFCURVE", "424 132 OFFCURVE", "423 130 CURVE SMOOTH", "422 128 OFFCURVE", "424 126 OFFCURVE", "427 124 CURVE SMOOTH", "537 55 LINE", "563 39 OFFCURVE", "580 42 OFFCURVE", "588 62 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "252 -94 OFFCURVE", "265 -84 OFFCURVE", "272 -55 CURVE SMOOTH", "301 72 LINE SMOOTH", "302 76 OFFCURVE", "302 78 OFFCURVE", "300 79 CURVE SMOOTH", "298 80 OFFCURVE", "296 78 OFFCURVE", "294 75 CURVE SMOOTH", "226 -36 LINE SMOOTH", "210 -61 OFFCURVE", "212 -78 OFFCURVE", "232 -86 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "76 250 OFFCURVE", "86 237 OFFCURVE", "115 230 CURVE SMOOTH", "242 201 LINE SMOOTH", "246 200 OFFCURVE", "248 200 OFFCURVE", "249 202 CURVE SMOOTH", "250 204 OFFCURVE", "248 206 OFFCURVE", "245 208 CURVE SMOOTH", "134 276 LINE SMOOTH", "109 292 OFFCURVE", "92 290 OFFCURVE", "84 270 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "586 237 OFFCURVE", "596 250 OFFCURVE", "588 270 CURVE SMOOTH", "580 290 OFFCURVE", "563 292 OFFCURVE", "538 276 CURVE SMOOTH", "427 208 LINE SMOOTH", "424 206 OFFCURVE", "422 204 OFFCURVE", "423 202 CURVE SMOOTH", "424 200 OFFCURVE", "426 200 OFFCURVE", "430 201 CURVE SMOOTH", "557 230 LINE SMOOTH" ); }, { closed = 1; nodes = ( "407 -84 OFFCURVE", "420 -94 OFFCURVE", "440 -86 CURVE SMOOTH", "460 -78 OFFCURVE", "462 -61 OFFCURVE", "446 -36 CURVE SMOOTH", "378 75 LINE SMOOTH", "376 78 OFFCURVE", "374 80 OFFCURVE", "372 79 CURVE SMOOTH", "370 78 OFFCURVE", "370 76 OFFCURVE", "371 72 CURVE SMOOTH", "400 -55 LINE SMOOTH" ); }, { closed = 1; nodes = ( "86 95 OFFCURVE", "76 81 OFFCURVE", "84 61 CURVE SMOOTH", "92 41 OFFCURVE", "110 39 OFFCURVE", "135 55 CURVE SMOOTH", "245 124 LINE SMOOTH", "248 126 OFFCURVE", "250 128 OFFCURVE", "249 130 CURVE SMOOTH", "248 132 OFFCURVE", "246 132 OFFCURVE", "242 131 CURVE SMOOTH", "115 102 LINE SMOOTH" ); }, { closed = 1; nodes = ( "264 416 OFFCURVE", "251 426 OFFCURVE", "231 418 CURVE SMOOTH", "211 410 OFFCURVE", "209 392 OFFCURVE", "225 367 CURVE SMOOTH", "294 257 LINE SMOOTH", "296 254 OFFCURVE", "298 252 OFFCURVE", "300 253 CURVE SMOOTH", "302 254 OFFCURVE", "302 256 OFFCURVE", "301 260 CURVE SMOOTH", "271 387 LINE SMOOTH" ); }, { closed = 1; nodes = ( "514 374 OFFCURVE", "497 369 OFFCURVE", "480 345 CURVE SMOOTH", "404 240 LINE SMOOTH", "402 237 OFFCURVE", "402 234 OFFCURVE", "403 233 CURVE SMOOTH", "404 232 OFFCURVE", "407 232 OFFCURVE", "410 234 CURVE SMOOTH", "516 310 LINE SMOOTH", "540 328 OFFCURVE", "544 344 OFFCURVE", "529 359 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "544 -12 OFFCURVE", "539 5 OFFCURVE", "515 22 CURVE SMOOTH", "410 98 LINE SMOOTH", "407 100 OFFCURVE", "404 100 OFFCURVE", "403 99 CURVE SMOOTH", "402 98 OFFCURVE", "402 95 OFFCURVE", "404 92 CURVE SMOOTH", "479 -14 LINE SMOOTH", "497 -38 OFFCURVE", "514 -42 OFFCURVE", "529 -27 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "158 -42 OFFCURVE", "174 -38 OFFCURVE", "192 -14 CURVE SMOOTH", "268 92 LINE SMOOTH", "270 95 OFFCURVE", "270 98 OFFCURVE", "269 99 CURVE SMOOTH", "268 100 OFFCURVE", "265 100 OFFCURVE", "262 98 CURVE SMOOTH", "157 22 LINE SMOOTH", "133 5 OFFCURVE", "128 -12 OFFCURVE", "143 -27 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "128 344 OFFCURVE", "132 328 OFFCURVE", "156 310 CURVE SMOOTH", "262 234 LINE SMOOTH", "265 232 OFFCURVE", "268 232 OFFCURVE", "269 233 CURVE SMOOTH", "270 234 OFFCURVE", "270 237 OFFCURVE", "268 240 CURVE SMOOTH", "192 345 LINE SMOOTH", "175 369 OFFCURVE", "158 374 OFFCURVE", "143 359 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "593 136 OFFCURVE", "608 144 OFFCURVE", "608 166 CURVE SMOOTH", "608 188 OFFCURVE", "593 196 OFFCURVE", "564 191 CURVE SMOOTH", "436 170 LINE SMOOTH", "432 169 OFFCURVE", "430 168 OFFCURVE", "430 166 CURVE SMOOTH", "430 164 OFFCURVE", "432 163 OFFCURVE", "436 162 CURVE SMOOTH", "564 141 LINE SMOOTH" ); }, { closed = 1; nodes = ( "306 -91 OFFCURVE", "314 -106 OFFCURVE", "336 -106 CURVE SMOOTH", "358 -106 OFFCURVE", "366 -91 OFFCURVE", "361 -62 CURVE SMOOTH", "340 66 LINE SMOOTH", "339 70 OFFCURVE", "338 72 OFFCURVE", "336 72 CURVE SMOOTH", "334 72 OFFCURVE", "333 70 OFFCURVE", "332 66 CURVE SMOOTH", "311 -62 LINE SMOOTH" ); }, { closed = 1; nodes = ( "78 196 OFFCURVE", "63 188 OFFCURVE", "63 166 CURVE SMOOTH", "63 144 OFFCURVE", "78 136 OFFCURVE", "107 141 CURVE SMOOTH", "236 162 LINE SMOOTH", "240 163 OFFCURVE", "242 164 OFFCURVE", "242 166 CURVE SMOOTH", "242 168 OFFCURVE", "240 169 OFFCURVE", "236 170 CURVE SMOOTH", "107 191 LINE SMOOTH" ); }, { closed = 1; nodes = ( "366 424 OFFCURVE", "358 438 OFFCURVE", "336 438 CURVE SMOOTH", "314 438 OFFCURVE", "306 424 OFFCURVE", "311 395 CURVE SMOOTH", "332 266 LINE SMOOTH", "333 262 OFFCURVE", "334 260 OFFCURVE", "336 260 CURVE SMOOTH", "338 260 OFFCURVE", "339 262 OFFCURVE", "340 266 CURVE SMOOTH", "361 395 LINE SMOOTH" ); }, { closed = 1; nodes = ( "342 510 OFFCURVE", "353 539 OFFCURVE", "368 565 CURVE", "354 578 OFFCURVE", "343 593 OFFCURVE", "336 611 CURVE", "329 593 OFFCURVE", "318 578 OFFCURVE", "304 565 CURVE", "320 539 OFFCURVE", "330 510 OFFCURVE", "336 477 CURVE" ); }, { closed = 1; nodes = ( "314 741 OFFCURVE", "321 749 OFFCURVE", "335 749 CURVE SMOOTH", "349 749 OFFCURVE", "356 741 OFFCURVE", "356 724 CURVE SMOOTH", "356 686 OFFCURVE", "358 659 OFFCURVE", "361 643 CURVE SMOOTH", "364 627 OFFCURVE", "370 613 OFFCURVE", "382 599 CURVE", "414 634 OFFCURVE", "448 650 OFFCURVE", "483 650 CURVE", "498 650 OFFCURVE", "512 646 OFFCURVE", "525 637 CURVE SMOOTH", "538 628 OFFCURVE", "545 616 OFFCURVE", "545 601 CURVE SMOOTH", "545 586 OFFCURVE", "543 573 OFFCURVE", "537 564 CURVE SMOOTH", "526 546 OFFCURVE", "509 537 OFFCURVE", "488 537 CURVE", "478 537 OFFCURVE", "467 541 OFFCURVE", "454 549 CURVE SMOOTH", "441 557 OFFCURVE", "434 570 OFFCURVE", "432 588 CURVE", "431 587 OFFCURVE", "429 586 OFFCURVE", "428 585 CURVE SMOOTH", "394 556 OFFCURVE", "374 514 OFFCURVE", "367 458 CURVE", "377 451 OFFCURVE", "384 440 OFFCURVE", "387 425 CURVE", "404 450 OFFCURVE", "428 456 OFFCURVE", "457 441 CURVE", "478 429 OFFCURVE", "486 411 OFFCURVE", "482 386 CURVE", "508 403 OFFCURVE", "532 398 OFFCURVE", "553 373 CURVE", "568 354 OFFCURVE", "569 333 OFFCURVE", "556 312 CURVE", "587 318 OFFCURVE", "606 306 OFFCURVE", "616 274 CURVE", "623 251 OFFCURVE", "616 231 OFFCURVE", "595 217 CURVE", "623 211 OFFCURVE", "636 194 OFFCURVE", "636 166 CURVE SMOOTH", "636 138 OFFCURVE", "623 120 OFFCURVE", "596 114 CURVE", "621 97 OFFCURVE", "625 74 OFFCURVE", "610 45 CURVE", "598 24 OFFCURVE", "580 16 OFFCURVE", "555 20 CURVE", "572 -6 OFFCURVE", "568 -31 OFFCURVE", "543 -52 CURVE", "524 -67 OFFCURVE", "503 -67 OFFCURVE", "482 -53 CURVE", "488 -84 OFFCURVE", "476 -104 OFFCURVE", "444 -114 CURVE", "421 -121 OFFCURVE", "402 -114 OFFCURVE", "387 -93 CURVE", "383 -108 OFFCURVE", "377 -119 OFFCURVE", "367 -126 CURVE", "375 -186 OFFCURVE", "397 -229 OFFCURVE", "432 -256 CURVE", "434 -237 OFFCURVE", "441 -225 OFFCURVE", "454 -217 CURVE SMOOTH", "467 -209 OFFCURVE", "478 -205 OFFCURVE", "488 -205 CURVE SMOOTH", "509 -205 OFFCURVE", "526 -214 OFFCURVE", "537 -232 CURVE", "543 -241 OFFCURVE", "545 -254 OFFCURVE", "545 -269 CURVE SMOOTH", "545 -284 OFFCURVE", "538 -296 OFFCURVE", "525 -305 CURVE SMOOTH", "512 -314 OFFCURVE", "497 -318 OFFCURVE", "483 -318 CURVE SMOOTH", "447 -318 OFFCURVE", "414 -301 OFFCURVE", "382 -267 CURVE", "370 -281 OFFCURVE", "364 -296 OFFCURVE", "361 -312 CURVE SMOOTH", "358 -328 OFFCURVE", "356 -355 OFFCURVE", "356 -392 CURVE SMOOTH", "356 -409 OFFCURVE", "350 -417 OFFCURVE", "338 -417 CURVE SMOOTH", "322 -417 OFFCURVE", "314 -409 OFFCURVE", "314 -392 CURVE SMOOTH", "314 -354 OFFCURVE", "314 -327 OFFCURVE", "311 -311 CURVE SMOOTH", "308 -295 OFFCURVE", "301 -281 OFFCURVE", "289 -267 CURVE", "257 -302 OFFCURVE", "223 -318 OFFCURVE", "188 -318 CURVE", "173 -318 OFFCURVE", "159 -314 OFFCURVE", "146 -305 CURVE SMOOTH", "133 -296 OFFCURVE", "126 -284 OFFCURVE", "126 -269 CURVE SMOOTH", "126 -254 OFFCURVE", "129 -241 OFFCURVE", "135 -232 CURVE SMOOTH", "146 -214 OFFCURVE", "162 -205 OFFCURVE", "183 -205 CURVE", "193 -205 OFFCURVE", "205 -209 OFFCURVE", "218 -217 CURVE SMOOTH", "231 -225 OFFCURVE", "237 -238 OFFCURVE", "239 -256 CURVE", "240 -255 OFFCURVE", "242 -254 OFFCURVE", "243 -253 CURVE SMOOTH", "277 -224 OFFCURVE", "298 -182 OFFCURVE", "305 -126 CURVE", "295 -119 OFFCURVE", "287 -109 OFFCURVE", "284 -95 CURVE", "267 -119 OFFCURVE", "244 -124 OFFCURVE", "215 -109 CURVE", "194 -97 OFFCURVE", "185 -79 OFFCURVE", "189 -54 CURVE", "164 -71 OFFCURVE", "140 -67 OFFCURVE", "119 -42 CURVE SMOOTH", "103 -23 OFFCURVE", "102 -2 OFFCURVE", "115 19 CURVE", "85 14 OFFCURVE", "66 27 OFFCURVE", "56 58 CURVE", "49 81 OFFCURVE", "56 100 OFFCURVE", "77 114 CURVE", "49 120 OFFCURVE", "35 138 OFFCURVE", "35 166 CURVE SMOOTH", "35 194 OFFCURVE", "49 211 OFFCURVE", "77 217 CURVE", "51 235 OFFCURVE", "46 258 OFFCURVE", "62 288 CURVE", "74 309 OFFCURVE", "92 316 OFFCURVE", "117 312 CURVE", "100 338 OFFCURVE", "104 362 OFFCURVE", "129 383 CURVE", "148 398 OFFCURVE", "167 399 OFFCURVE", "188 386 CURVE", "183 416 OFFCURVE", "197 436 OFFCURVE", "228 446 CURVE", "251 453 OFFCURVE", "269 446 OFFCURVE", "284 425 CURVE", "288 440 OFFCURVE", "295 451 OFFCURVE", "305 458 CURVE", "297 518 OFFCURVE", "274 561 OFFCURVE", "239 588 CURVE", "237 569 OFFCURVE", "230 557 OFFCURVE", "217 549 CURVE SMOOTH", "204 541 OFFCURVE", "193 537 OFFCURVE", "183 537 CURVE SMOOTH", "162 537 OFFCURVE", "146 546 OFFCURVE", "135 564 CURVE", "129 573 OFFCURVE", "127 586 OFFCURVE", "127 601 CURVE SMOOTH", "127 616 OFFCURVE", "134 628 OFFCURVE", "147 637 CURVE SMOOTH", "160 646 OFFCURVE", "174 650 OFFCURVE", "188 650 CURVE SMOOTH", "224 650 OFFCURVE", "257 633 OFFCURVE", "289 599 CURVE", "301 613 OFFCURVE", "308 628 OFFCURVE", "311 644 CURVE SMOOTH", "314 660 OFFCURVE", "314 687 OFFCURVE", "314 724 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "330 -178 OFFCURVE", "320 -207 OFFCURVE", "304 -233 CURVE", "318 -246 OFFCURVE", "329 -261 OFFCURVE", "336 -279 CURVE", "343 -261 OFFCURVE", "354 -246 OFFCURVE", "368 -233 CURVE", "353 -207 OFFCURVE", "342 -178 OFFCURVE", "336 -145 CURVE" ); } ); width = 671; } ); unicode = 06E9; }, { glyphname = "rhombusStopbelow-ar"; layers = ( { anchors = ( { name = _MarkBelow; position = "{254, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "337 -624 LINE", "254 -482 LINE", "171 -624 LINE", "254 -767 LINE" ); }, { closed = 1; nodes = ( "131 -624 LINE", "254 -415 LINE", "377 -624 LINE", "254 -835 LINE" ); } ); width = 0; }, { anchors = ( { name = _MarkBelow; position = "{254, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "329 -624 LINE", "254 -497 LINE", "180 -624 LINE", "254 -752 LINE" ); }, { closed = 1; nodes = ( "125 -628 LINE SMOOTH", "124 -625 OFFCURVE", "124 -623 OFFCURVE", "125 -620 CURVE SMOOTH", "248 -411 LINE", "252 -405 OFFCURVE", "257 -405 OFFCURVE", "261 -411 CURVE", "384 -620 LINE SMOOTH", "385 -623 OFFCURVE", "385 -625 OFFCURVE", "384 -628 CURVE SMOOTH", "261 -839 LINE SMOOTH", "257 -846 OFFCURVE", "253 -846 OFFCURVE", "248 -839 CURVE" ); } ); width = 0; } ); unicode = 06EA; }, { glyphname = "rhombusStopabove-ar"; layers = ( { anchors = ( { name = _AlefAbove; position = "{87, 122}"; }, { name = _MarkAbove; position = "{87, 122}"; }, { name = _TashkilAbove; position = "{88, 122}"; } ); components = ( { name = "rhombusStopbelow-ar"; transform = "{1, 0, 0, 1, -171, 1001}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _AlefAbove; position = "{87, 122}"; }, { name = _MarkAbove; position = "{87, 122}"; }, { name = _TashkilAbove; position = "{88, 122}"; } ); components = ( { name = "rhombusStopbelow-ar"; transform = "{1, 0, 0, 1, -171, 1001}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 06EB; }, { glyphname = "dotStopabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{93, 1060}"; }, { name = _MarkAbove; position = "{111, 801}"; }, { name = _TashkilAbove; position = "{109, 801}"; }, { name = _TashkilTashkilAbove; position = "{111, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "209 968 OFFCURVE", "219 944 OFFCURVE", "219 913 CURVE SMOOTH", "219 883 OFFCURVE", "208 856 OFFCURVE", "187 835 CURVE SMOOTH", "166 814 OFFCURVE", "139 803 OFFCURVE", "109 803 CURVE SMOOTH", "79 803 OFFCURVE", "52 814 OFFCURVE", "31 835 CURVE SMOOTH", "10 856 OFFCURVE", "-1 883 OFFCURVE", "-1 913 CURVE SMOOTH", "-1 943 OFFCURVE", "10 969 OFFCURVE", "31 990 CURVE SMOOTH", "52 1011 OFFCURVE", "79 1022 OFFCURVE", "109 1022 CURVE SMOOTH", "140 1022 OFFCURVE", "167 1011 OFFCURVE", "188 989 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{93, 1060}"; }, { name = _MarkAbove; position = "{111, 801}"; }, { name = _TashkilAbove; position = "{109, 801}"; }, { name = _TashkilTashkilAbove; position = "{111, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "49 1019 OFFCURVE", "77 1030 OFFCURVE", "110 1030 CURVE SMOOTH", "143 1030 OFFCURVE", "170 1018 OFFCURVE", "192 995 CURVE SMOOTH", "214 972 OFFCURVE", "226 945 OFFCURVE", "226 913 CURVE SMOOTH", "226 881 OFFCURVE", "214 853 OFFCURVE", "192 830 CURVE", "169 807 OFFCURVE", "141 796 OFFCURVE", "109 796 CURVE SMOOTH", "77 796 OFFCURVE", "49 808 OFFCURVE", "26 830 CURVE", "3 853 OFFCURVE", "-8 881 OFFCURVE", "-8 913 CURVE SMOOTH", "-8 945 OFFCURVE", "3 973 OFFCURVE", "26 996 CURVE" ); } ); width = 0; } ); unicode = 06EC; }, { glyphname = "meembelow-ar"; layers = ( { anchors = ( { name = _MarkBelow; position = "{264, -312}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; }, { name = _TashkilTashkilBelow; position = "{364, -411}"; } ); components = ( { name = "meemStopabove-ar"; transform = "{1, 0, 0, 1, 145, -1461}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{264, -312}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; }, { name = _TashkilTashkilBelow; position = "{364, -411}"; } ); components = ( { name = "meemStopabove-ar"; transform = "{1, 0, 0, 1, 145, -1461}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 06ED; }, { glyphname = "dalVinvertedabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 205, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 205, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 06EE; }, { glyphname = "rehVinvertedabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 185, -6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 185, -6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 06EF; }, { glyphname = "zeroFarsi-ar"; layers = ( { components = ( { name = "zero-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "zero-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F0; }, { glyphname = "oneFarsi-ar"; layers = ( { components = ( { name = "one-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "one-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F1; }, { glyphname = "twoFarsi-ar"; layers = ( { components = ( { name = "two-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "two-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F2; }, { glyphname = "threeFarsi-ar"; layers = ( { components = ( { name = "three-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "three-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F3; }, { glyphname = "fourFarsi-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "202 473 OFFCURVE", "221 438 OFFCURVE", "232 410 CURVE SMOOTH", "237 399 OFFCURVE", "242 399 OFFCURVE", "246 410 CURVE SMOOTH", "286 503 OFFCURVE", "343 553 OFFCURVE", "419 558 CURVE SMOOTH", "463 561 OFFCURVE", "503 528 OFFCURVE", "538 462 CURVE SMOOTH", "545 448 OFFCURVE", "547 439 OFFCURVE", "544 434 CURVE SMOOTH", "539 427 OFFCURVE", "533 427 OFFCURVE", "523 434 CURVE SMOOTH", "481 465 OFFCURVE", "446 480 OFFCURVE", "420 480 CURVE SMOOTH", "337 479 OFFCURVE", "287 445 OFFCURVE", "267 379 CURVE", "307 345 OFFCURVE", "346 327 OFFCURVE", "384 325 CURVE SMOOTH", "440 322 OFFCURVE", "479 329 OFFCURVE", "500 347 CURVE SMOOTH", "513 358 OFFCURVE", "522 361 OFFCURVE", "528 356 CURVE SMOOTH", "535 349 OFFCURVE", "534 339 OFFCURVE", "525 325 CURVE SMOOTH", "491 271 OFFCURVE", "442 243 OFFCURVE", "379 238 CURVE SMOOTH", "341 235 OFFCURVE", "308 240 OFFCURVE", "282 253 CURVE", "308 131 OFFCURVE", "312 21 OFFCURVE", "292 -77 CURVE SMOOTH", "291 -84 OFFCURVE", "288 -89 OFFCURVE", "282 -91 CURVE SMOOTH", "276 -93 OFFCURVE", "271 -93 OFFCURVE", "267 -89 CURVE SMOOTH", "263 -85 OFFCURVE", "260 -80 OFFCURVE", "260 -73 CURVE SMOOTH", "253 95 OFFCURVE", "207 244 OFFCURVE", "124 372 CURVE SMOOTH", "112 391 OFFCURVE", "108 406 OFFCURVE", "111 419 CURVE SMOOTH", "136 524 LINE SMOOTH", "142 549 OFFCURVE", "155 546 OFFCURVE", "175 515 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "226 453 OFFCURVE", "209 485 OFFCURVE", "188 521 CURVE SMOOTH", "156 576 OFFCURVE", "134 578 OFFCURVE", "122 527 CURVE SMOOTH", "97 423 LINE SMOOTH", "93 406 OFFCURVE", "98 386 OFFCURVE", "112 364 CURVE SMOOTH", "194 237 OFFCURVE", "241 91 OFFCURVE", "252 -73 CURVE SMOOTH", "253 -83 OFFCURVE", "256 -91 OFFCURVE", "262 -98 CURVE SMOOTH", "268 -105 OFFCURVE", "276 -106 OFFCURVE", "286 -100 CURVE SMOOTH", "296 -94 OFFCURVE", "302 -85 OFFCURVE", "304 -76 CURVE SMOOTH", "323 13 OFFCURVE", "320 116 OFFCURVE", "298 233 CURVE", "322 226 OFFCURVE", "349 224 OFFCURVE", "380 226 CURVE SMOOTH", "447 231 OFFCURVE", "499 262 OFFCURVE", "535 319 CURVE SMOOTH", "548 339 OFFCURVE", "548 354 OFFCURVE", "537 365 CURVE SMOOTH", "526 376 OFFCURVE", "511 373 OFFCURVE", "492 357 CURVE SMOOTH", "473 341 OFFCURVE", "437 334 OFFCURVE", "385 337 CURVE SMOOTH", "351 339 OFFCURVE", "316 354 OFFCURVE", "281 383 CURVE", "301 440 OFFCURVE", "347 468 OFFCURVE", "420 468 CURVE SMOOTH", "444 468 OFFCURVE", "476 453 OFFCURVE", "516 424 CURVE SMOOTH", "530 414 OFFCURVE", "542 413 OFFCURVE", "553 424 CURVE SMOOTH", "561 432 OFFCURVE", "559 447 OFFCURVE", "548 468 CURVE SMOOTH", "510 539 OFFCURVE", "467 573 OFFCURVE", "418 570 CURVE SMOOTH", "339 565 OFFCURVE", "279 516 OFFCURVE", "237 424 CURVE" ); } ); width = 585; } ); unicode = 06F4; }, { glyphname = "fiveFarsi-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "333 434 OFFCURVE", "396 359 OFFCURVE", "425 301 CURVE SMOOTH", "464 223 OFFCURVE", "481 164 OFFCURVE", "476 125 CURVE SMOOTH", "463 15 OFFCURVE", "430 -45 OFFCURVE", "376 -54 CURVE SMOOTH", "336 -61 OFFCURVE", "308 -51 OFFCURVE", "292 -25 CURVE", "261 -61 OFFCURVE", "227 -78 OFFCURVE", "188 -75 CURVE SMOOTH", "120 -69 OFFCURVE", "91 -14 OFFCURVE", "102 91 CURVE SMOOTH", "110 167 OFFCURVE", "152 255 OFFCURVE", "227 358 CURVE", "220 363 OFFCURVE", "212 368 OFFCURVE", "204 372 CURVE SMOOTH", "197 376 OFFCURVE", "194 384 OFFCURVE", "196 399 CURVE SMOOTH", "213 520 LINE SMOOTH", "215 536 OFFCURVE", "223 538 OFFCURVE", "235 526 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "210 286 OFFCURVE", "183 238 OFFCURVE", "168 200 CURVE SMOOTH", "143 136 OFFCURVE", "141 92 OFFCURVE", "161 69 CURVE SMOOTH", "201 24 OFFCURVE", "253 32 OFFCURVE", "317 94 CURVE SMOOTH", "323 100 OFFCURVE", "328 103 OFFCURVE", "333 101 CURVE", "337 99 OFFCURVE", "340 95 OFFCURVE", "341 89 CURVE", "338 84 OFFCURVE", "337 78 OFFCURVE", "338 71 CURVE", "350 63 OFFCURVE", "364 60 OFFCURVE", "381 62 CURVE SMOOTH", "404 65 OFFCURVE", "421 80 OFFCURVE", "431 107 CURVE SMOOTH", "435 117 OFFCURVE", "433 127 OFFCURVE", "427 139 CURVE SMOOTH", "385 222 OFFCURVE", "327 290 OFFCURVE", "251 342 CURVE" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "342 438 OFFCURVE", "406 362 OFFCURVE", "433 307 CURVE SMOOTH", "471 230 OFFCURVE", "487 169 OFFCURVE", "482 124 CURVE SMOOTH", "468 8 OFFCURVE", "434 -56 OFFCURVE", "378 -66 CURVE SMOOTH", "340 -73 OFFCURVE", "311 -65 OFFCURVE", "291 -44 CURVE", "260 -76 OFFCURVE", "225 -90 OFFCURVE", "187 -87 CURVE SMOOTH", "116 -81 OFFCURVE", "86 -22 OFFCURVE", "97 92 CURVE SMOOTH", "104 167 OFFCURVE", "144 253 OFFCURVE", "215 350 CURVE", "211 353 OFFCURVE", "205 356 OFFCURVE", "198 361 CURVE SMOOTH", "186 368 OFFCURVE", "181 381 OFFCURVE", "184 401 CURVE SMOOTH", "201 522 LINE SMOOTH", "202 530 OFFCURVE", "204 536 OFFCURVE", "208 540 CURVE SMOOTH", "217 550 OFFCURVE", "229 548 OFFCURVE", "243 535 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "211 274 OFFCURVE", "186 231 OFFCURVE", "172 196 CURVE SMOOTH", "148 134 OFFCURVE", "146 94 OFFCURVE", "166 75 CURVE SMOOTH", "204 39 OFFCURVE", "252 47 OFFCURVE", "309 100 CURVE SMOOTH", "319 110 OFFCURVE", "329 114 OFFCURVE", "336 111 CURVE SMOOTH", "343 108 OFFCURVE", "347 101 OFFCURVE", "349 88 CURVE", "347 84 OFFCURVE", "345 81 OFFCURVE", "345 80 CURVE", "358 75 OFFCURVE", "369 74 OFFCURVE", "379 75 CURVE SMOOTH", "402 77 OFFCURVE", "419 89 OFFCURVE", "427 111 CURVE SMOOTH", "429 117 OFFCURVE", "428 125 OFFCURVE", "424 134 CURVE SMOOTH", "389 211 OFFCURVE", "331 275 OFFCURVE", "247 325 CURVE" ); } ); width = 585; } ); unicode = 06F5; }, { glyphname = "sixFarsi-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "347 280 OFFCURVE", "361 283 OFFCURVE", "373 292 CURVE SMOOTH", "420 328 OFFCURVE", "458 352 OFFCURVE", "488 363 CURVE SMOOTH", "508 370 OFFCURVE", "516 365 OFFCURVE", "510 348 CURVE SMOOTH", "484 265 LINE SMOOTH", "477 244 OFFCURVE", "465 230 OFFCURVE", "448 223 CURVE SMOOTH", "386 197 OFFCURVE", "325 156 OFFCURVE", "264 102 CURVE SMOOTH", "206 51 OFFCURVE", "154 -9 OFFCURVE", "110 -75 CURVE SMOOTH", "99 -91 OFFCURVE", "87 -98 OFFCURVE", "77 -94 CURVE SMOOTH", "69 -91 OFFCURVE", "70 -81 OFFCURVE", "78 -61 CURVE SMOOTH", "119 39 OFFCURVE", "181 127 OFFCURVE", "266 202 CURVE", "178 234 OFFCURVE", "126 271 OFFCURVE", "108 314 CURVE SMOOTH", "103 327 OFFCURVE", "102 341 OFFCURVE", "106 354 CURVE SMOOTH", "118 392 OFFCURVE", "138 425 OFFCURVE", "164 456 CURVE SMOOTH", "225 528 OFFCURVE", "280 563 OFFCURVE", "330 563 CURVE SMOOTH", "354 563 OFFCURVE", "376 552 OFFCURVE", "398 529 CURVE SMOOTH", "424 501 OFFCURVE", "442 475 OFFCURVE", "451 453 CURVE SMOOTH", "454 444 OFFCURVE", "453 439 OFFCURVE", "448 436 CURVE SMOOTH", "442 433 OFFCURVE", "436 434 OFFCURVE", "429 441 CURVE SMOOTH", "407 464 OFFCURVE", "373 476 OFFCURVE", "326 477 CURVE SMOOTH", "263 478 OFFCURVE", "209 453 OFFCURVE", "164 403 CURVE SMOOTH", "159 398 OFFCURVE", "159 393 OFFCURVE", "164 387 CURVE SMOOTH", "201 340 OFFCURVE", "257 306 OFFCURVE", "331 285 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "169 229 OFFCURVE", "121 267 OFFCURVE", "104 310 CURVE SMOOTH", "97 326 OFFCURVE", "97 341 OFFCURVE", "102 357 CURVE SMOOTH", "116 396 OFFCURVE", "136 432 OFFCURVE", "163 464 CURVE SMOOTH", "226 539 OFFCURVE", "281 576 OFFCURVE", "330 576 CURVE SMOOTH", "387 576 OFFCURVE", "429 537 OFFCURVE", "458 460 CURVE SMOOTH", "463 445 OFFCURVE", "461 435 OFFCURVE", "451 429 CURVE SMOOTH", "441 422 OFFCURVE", "430 425 OFFCURVE", "421 436 CURVE SMOOTH", "405 454 OFFCURVE", "373 463 OFFCURVE", "326 464 CURVE SMOOTH", "258 465 OFFCURVE", "204 444 OFFCURVE", "164 399 CURVE", "203 352 OFFCURVE", "259 318 OFFCURVE", "334 297 CURVE SMOOTH", "347 293 OFFCURVE", "358 295 OFFCURVE", "366 302 CURVE SMOOTH", "415 342 OFFCURVE", "457 368 OFFCURVE", "491 380 CURVE SMOOTH", "530 394 OFFCURVE", "545 386 OFFCURVE", "534 354 CURVE SMOOTH", "504 262 LINE SMOOTH", "496 236 OFFCURVE", "480 218 OFFCURVE", "458 210 CURVE SMOOTH", "402 188 OFFCURVE", "342 151 OFFCURVE", "276 98 CURVE SMOOTH", "210 45 OFFCURVE", "158 -14 OFFCURVE", "117 -77 CURVE SMOOTH", "103 -99 OFFCURVE", "89 -107 OFFCURVE", "76 -100 CURVE SMOOTH", "63 -93 OFFCURVE", "63 -77 OFFCURVE", "74 -51 CURVE SMOOTH", "109 30 OFFCURVE", "167 112 OFFCURVE", "247 196 CURVE" ); } ); width = 585; } ); unicode = 06F6; }, { glyphname = "sevenFarsi-ar"; layers = ( { components = ( { name = "seven-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "seven-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F7; }, { glyphname = "eightFarsi-ar"; layers = ( { components = ( { name = "eight-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "eight-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F8; }, { glyphname = "nineFarsi-ar"; layers = ( { components = ( { name = "nine-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "nine-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = 06F9; }, { glyphname = "sheenDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 06FA; }, { glyphname = "dadDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 821, 474}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 879, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1212; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 821, 474}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 879, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1212; } ); unicode = 06FB; }, { glyphname = "ghainDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{366, -39}"; } ); components = ( { name = aAyn.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 352, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{366, -39}"; } ); components = ( { name = aAyn.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 352, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = 06FC; }, { glyphname = "sindhiampersand-ar"; layers = ( { components = ( { name = "hamza-ar"; }, { name = twostrokes.below; transform = "{1, 0, 0, 1, 187, -196}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 381; }, { components = ( { name = "hamza-ar"; }, { name = twostrokes.below; transform = "{1, 0, 0, 1, 187, -196}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 381; } ); unicode = 06FD; }, { glyphname = "sindhipostpositionmen-ar"; layers = ( { components = ( { name = aMem.isol; }, { name = twostrokes.below; transform = "{1, 0, 0, 1, 264, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { components = ( { name = aMem.isol; }, { name = twostrokes.below; transform = "{1, 0, 0, 1, 264, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = 06FE; }, { glyphname = "hehVinvertedabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aHehKnotted.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 344, -37}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 608; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aHehKnotted.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 344, -37}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 608; } ); unicode = 06FF; }, { glyphname = "behThreedotshorizontalbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 439, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 439, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0750; }, { glyphname = "behThreedotsupabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0751; }, { glyphname = "behThreedotsupbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{494, -362}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 494, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{494, -362}"; } ); components = ( { name = aBaa.isol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 494, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0752; }, { glyphname = "tehThreedotsupbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{494, -362}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 494, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{494, -362}"; } ); components = ( { name = aBaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 494, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0753; }, { glyphname = "behTwodotsbelowDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 494, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 494, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0754; }, { glyphname = "behVinvertedbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{469, -396}"; } ); components = ( { name = aBaa.isol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 469, 142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{469, -396}"; } ); components = ( { name = aBaa.isol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 469, 142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0755; }, { glyphname = "behVabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 461, -39}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; } ); components = ( { name = aBaa.isol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 461, -39}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 0756; }, { glyphname = "hahTwodotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 0757; }, { glyphname = "hahThreedotsupbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 391, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 391, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 0758; }, { glyphname = "dalTwodotsverticalbelowTah-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 205, 537}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{186, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 205, 537}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 0759; }, { glyphname = "dalVinvertedbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{225, -298}"; } ); components = ( { name = aDal.isol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 225, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{225, -298}"; } ); components = ( { name = aDal.isol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 225, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = 075A; }, { glyphname = "rehStroke-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 317, 10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 317, 10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 075B; }, { glyphname = "seenFourdotsabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 075C; }, { glyphname = "ainTwodotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = 075D; }, { glyphname = "ainThreedotsdownabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = 075E; }, { glyphname = "ainTwodotsverticalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 540; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; } ); components = ( { name = aAyn.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 181, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 540; } ); unicode = 075F; }, { glyphname = "fehTwodotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 835, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 835, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 0760; }, { glyphname = "fehThreedotsupbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 835, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; } ); components = ( { name = aFaa.isol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 835, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 0761; }, { glyphname = "kehehDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{670, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 681, 628}"; }, { name = aGaf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{670, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 681, 628}"; }, { name = aGaf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 0762; }, { glyphname = "kehehThreedotsabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{656, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 682, 628}"; }, { name = aGaf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{656, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 682, 628}"; }, { name = aGaf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 0763; }, { glyphname = "kehehThreedotsupbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{500, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 480, -207}"; }, { name = aGaf.isol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1202; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{500, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 480, -207}"; }, { name = aGaf.isol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1202; } ); unicode = 0764; }, { glyphname = "meemDotabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aMem.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 227, 386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aMem.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 227, 386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = 0765; }, { glyphname = "meemDotbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aMem.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 281, -129}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aMem.isol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 281, -129}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = 0766; }, { glyphname = "noonTwodotsbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 280, -282}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 280, -282}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 0767; }, { glyphname = "noonTahabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 996}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 244, 679}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{225, 996}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 244, 679}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 0768; }, { glyphname = "noonVabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 898}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 244, 215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { anchors = ( { name = TashkilAbove; position = "{244, 898}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aNon.isol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 244, 215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 0769; }, { glyphname = "lamBar-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 479, 527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 603; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aLam.isol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 479, 527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 603; } ); unicode = 076A; }, { glyphname = "rehTwodotsverticalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 160, 463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 160, 463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 076B; }, { glyphname = "rehHamzaabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 185, -6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 185, -6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 076C; }, { glyphname = "seenTwodotsverticalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 076D; }, { glyphname = "hahTahbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{425, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 410, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{425, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 410, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 076E; }, { glyphname = "hahTahTwodotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{435, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 410, -220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 425, -348}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{435, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 410, -220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 425, -348}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 076F; }, { glyphname = "seenTahTwodotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{719, 991}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 738, 674}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{719, 991}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 748, 454}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 738, 674}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 0770; }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{155, 927}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 174, 609}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { anchors = ( { name = TashkilAbove; position = "{155, 927}"; }, { name = TashkilBelow; position = "{248, -327}"; } ); components = ( { name = aRaa.isol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 184, 390}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 174, 609}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 0771; }, { glyphname = "hahTahabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 342, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; } ); components = ( { name = aHaa.isol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 342, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 0772; }, { glyphname = "alefTwoabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{62, 869}"; }, { name = TashkilBelow; position = "{171, -93}"; } ); components = ( { name = aAlf.isol; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 62, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 261; }, { anchors = ( { name = TashkilAbove; position = "{62, 869}"; }, { name = TashkilBelow; position = "{171, -93}"; } ); components = ( { name = aAlf.isol; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 62, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 261; } ); unicode = 0773; }, { glyphname = "alefThreeabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 869}"; }, { name = TashkilBelow; position = "{171, -93}"; } ); components = ( { name = aAlf.isol; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 62, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 262; }, { anchors = ( { name = TashkilAbove; position = "{91, 869}"; }, { name = TashkilBelow; position = "{171, -93}"; } ); components = ( { name = aAlf.isol; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 62, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 262; } ); unicode = 0774; }, { glyphname = "yehFarsiTwoabove-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 286, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 286, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 0775; }, { glyphname = "yehFarsiThreeabove-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 286, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{188, 404}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aYaa.isol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 286, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 0776; }, { glyphname = "yehFarsiFourbelow-ar"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{355, -644}"; } ); components = ( { name = aYaa.isol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 355, -688}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{355, -644}"; } ); components = ( { name = aYaa.isol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 355, -688}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 0777; }, { glyphname = "wawTwoabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 200, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 200, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = 0778; }, { glyphname = "wawThreeAbove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 200, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 400; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{249, -327}"; } ); components = ( { name = aWaw.isol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 200, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 400; } ); unicode = 0779; }, { glyphname = "yehbarreeTwoabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -312}"; } ); components = ( { name = aYaaBari.isol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 293, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1159; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -312}"; } ); components = ( { name = aYaaBari.isol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 293, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1159; } ); unicode = 077A; }, { glyphname = "yehbarreeThreeabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -312}"; } ); components = ( { name = aYaaBari.isol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 293, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1159; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -312}"; } ); components = ( { name = aYaaBari.isol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 293, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1159; } ); unicode = 077B; }, { glyphname = "hahFourbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 391, -376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 661; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -563}"; } ); components = ( { name = aHaa.isol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 391, -376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 661; } ); unicode = 077C; }, { glyphname = "seenFourabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 748, 352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 748, 352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 077D; }, { glyphname = "seenVinvertedabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 748, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 992; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSen.isol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 748, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 992; } ); unicode = 077E; }, { glyphname = "kafTwodotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = 077F; }, { glyphname = "pound-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1650 846 LINE", "76 846 LINE", "0 932 LINE", "636 932 LINE", "596 999 OFFCURVE", "576 1058 OFFCURVE", "576 1108 CURVE SMOOTH", "576 1181 OFFCURVE", "626 1225 OFFCURVE", "687 1226 CURVE SMOOTH", "804 1228 OFFCURVE", "863 1165 OFFCURVE", "948 1098 CURVE SMOOTH", "1054 1015 OFFCURVE", "1101 986 OFFCURVE", "1215 934 CURVE", "1592 934 LINE" ); }, { closed = 1; nodes = ( "1034 934 LINE", "975 975 OFFCURVE", "863 1067 OFFCURVE", "810 1098 CURVE SMOOTH", "740 1140 OFFCURVE", "632 1142 OFFCURVE", "632 1042 CURVE SMOOTH", "632 1010 OFFCURVE", "640 973 OFFCURVE", "657 932 CURVE" ); } ); width = 1650; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "630.754 1061.754 OFFCURVE", "638.126 995.533 OFFCURVE", "657 947 CURVE", "989 948 LINE", "936.585 987.312 OFFCURVE", "843.392 1061.765 OFFCURVE", "803 1086 CURVE SMOOTH", "762.113 1111.378 OFFCURVE", "695.788 1126.788 OFFCURVE", "663 1094 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "0 947 LINE", "620 947 LINE", "587 1006 OFFCURVE", "562 1060 OFFCURVE", "562 1108 CURVE SMOOTH", "562 1188.956 OFFCURVE", "605.515 1240.247 OFFCURVE", "687 1241 CURVE SMOOTH", "795.293 1242 OFFCURVE", "871.067 1176.519 OFFCURVE", "957 1109 CURVE SMOOTH", "1061.736 1026.707 OFFCURVE", "1105.913 998.082 OFFCURVE", "1218 948 CURVE", "1572 948 LINE", "1650 831 LINE", "102 831 LINE" ); } ); width = 1650; } ); unicode = 0890; }, { glyphname = "piastre-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "435 934 LINE", "549 986 OFFCURVE", "596 1015 OFFCURVE", "702 1098 CURVE SMOOTH", "787 1165 OFFCURVE", "846 1228 OFFCURVE", "963 1226 CURVE SMOOTH", "1024 1225 OFFCURVE", "1074 1181 OFFCURVE", "1074 1108 CURVE SMOOTH", "1074 1058 OFFCURVE", "1054 999 OFFCURVE", "1014 932 CURVE", "1650 932 LINE", "1574 846 LINE", "0 846 LINE", "58 934 LINE" ); }, { closed = 1; nodes = ( "1010 973 OFFCURVE", "1018 1010 OFFCURVE", "1018 1042 CURVE SMOOTH", "1018 1142 OFFCURVE", "910 1140 OFFCURVE", "840 1098 CURVE SMOOTH", "787 1067 OFFCURVE", "675 975 OFFCURVE", "616 934 CURVE", "993 932 LINE" ); } ); width = 1650; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "954 1127 OFFCURVE", "888 1111 OFFCURVE", "847 1086 CURVE SMOOTH", "807 1062 OFFCURVE", "713 987 OFFCURVE", "661 948 CURVE", "993 947 LINE", "1012 996 OFFCURVE", "1019 1062 OFFCURVE", "987 1094 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "0 831 LINE", "78 948 LINE", "432 948 LINE", "544 998 OFFCURVE", "588 1027 OFFCURVE", "693 1109 CURVE SMOOTH", "779 1177 OFFCURVE", "855 1242 OFFCURVE", "963 1241 CURVE SMOOTH", "1044 1240 OFFCURVE", "1088 1189 OFFCURVE", "1088 1108 CURVE SMOOTH", "1088 1060 OFFCURVE", "1063 1006 OFFCURVE", "1030 947 CURVE", "1650 947 LINE", "1548 831 LINE" ); } ); width = 1650; } ); unicode = 0891; }, { glyphname = "behVbelow-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{469, -425}"; } ); components = ( { name = aBaa.isol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 469, 142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{469, -425}"; } ); components = ( { name = aBaa.isol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 469, 142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 08A0; }, { glyphname = "yehRohingya-ar"; layers = ( { anchors = ( { name = TashkilAbove; position = "{413, 801}"; }, { name = TashkilBelow; position = "{354, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 379, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "399 276 OFFCURVE", "370 259 OFFCURVE", "344 222 CURVE", "337 213 OFFCURVE", "340 198 OFFCURVE", "355 178 CURVE SMOOTH", "370 158 OFFCURVE", "386 148 OFFCURVE", "406 148 CURVE SMOOTH", "426 148 OFFCURVE", "448 162 OFFCURVE", "472 187 CURVE", "474 238 OFFCURVE", "460 266 OFFCURVE", "431 273 CURVE" ); }, { closed = 1; nodes = ( "480 379 OFFCURVE", "483 378 OFFCURVE", "486 377 CURVE SMOOTH", "502 367 OFFCURVE", "512 349 OFFCURVE", "517 322 CURVE SMOOTH", "526 271 OFFCURVE", "520 223 OFFCURVE", "500 179 CURVE SMOOTH", "490 158 OFFCURVE", "477 136 OFFCURVE", "463 115 CURVE", "504 100 OFFCURVE", "541 91 OFFCURVE", "572 90 CURVE SMOOTH", "578 90 OFFCURVE", "582 81 OFFCURVE", "583 65 CURVE SMOOTH", "587 22 OFFCURVE", "583 1 OFFCURVE", "572 0 CURVE SMOOTH", "517 -6 OFFCURVE", "448 14 OFFCURVE", "365 58 CURVE", "281 14 OFFCURVE", "202 -3 OFFCURVE", "127 7 CURVE SMOOTH", "120 8 OFFCURVE", "116 1 OFFCURVE", "113 -13 CURVE SMOOTH", "111 -25 OFFCURVE", "109 -48 OFFCURVE", "110 -83 CURVE SMOOTH", "111 -143 OFFCURVE", "111 -178 OFFCURVE", "111 -188 CURVE SMOOTH", "111 -194 OFFCURVE", "109 -197 OFFCURVE", "104 -198 CURVE SMOOTH", "99 -199 OFFCURVE", "96 -195 OFFCURVE", "95 -188 CURVE SMOOTH", "82 -117 OFFCURVE", "71 -36 OFFCURVE", "63 56 CURVE SMOOTH", "60 85 OFFCURVE", "72 99 OFFCURVE", "96 95 CURVE SMOOTH", "165 84 OFFCURVE", "232 91 OFFCURVE", "299 116 CURVE", "294 146 OFFCURVE", "298 177 OFFCURVE", "311 211 CURVE SMOOTH", "332 266 OFFCURVE", "369 314 OFFCURVE", "424 355 CURVE SMOOTH", "445 371 OFFCURVE", "462 379 OFFCURVE", "476 379 CURVE SMOOTH" ); } ); width = 571; }, { anchors = ( { name = TashkilAbove; position = "{413, 801}"; }, { name = TashkilBelow; position = "{354, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 379, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "394 260 OFFCURVE", "364 244 OFFCURVE", "341 213 CURVE", "368 157 OFFCURVE", "410 151 OFFCURVE", "467 193 CURVE", "467 236 OFFCURVE", "455 258 OFFCURVE", "429 259 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "483 394 OFFCURVE", "490 392 OFFCURVE", "494 390 CURVE", "514 378 OFFCURVE", "525 356 OFFCURVE", "531 325 CURVE SMOOTH", "540 271 OFFCURVE", "534 220 OFFCURVE", "513 173 CURVE SMOOTH", "505 156 OFFCURVE", "496 140 OFFCURVE", "486 123 CURVE", "519 112 OFFCURVE", "547 106 OFFCURVE", "572 105 CURVE SMOOTH", "587 104 OFFCURVE", "596 89 OFFCURVE", "599 59 CURVE SMOOTH", "602 28 OFFCURVE", "600 8 OFFCURVE", "593 -2 CURVE SMOOTH", "588 -9 OFFCURVE", "581 -14 OFFCURVE", "573 -15 CURVE SMOOTH", "517 -21 OFFCURVE", "448 -2 OFFCURVE", "365 41 CURVE", "282 -1 OFFCURVE", "202 -15 OFFCURVE", "125 -3 CURVE SMOOTH", "121 -2 OFFCURVE", "118 -3 OFFCURVE", "116 -6 CURVE", "115 -15 OFFCURVE", "115 -46 OFFCURVE", "116 -99 CURVE SMOOTH", "117 -144 OFFCURVE", "117 -173 OFFCURVE", "117 -189 CURVE SMOOTH", "117 -205 OFFCURVE", "112 -213 OFFCURVE", "105 -215 CURVE SMOOTH", "98 -216 OFFCURVE", "94 -212 OFFCURVE", "91 -200 CURVE SMOOTH", "80 -142 OFFCURVE", "72 -83 OFFCURVE", "65 -24 CURVE SMOOTH", "58 35 OFFCURVE", "56 72 OFFCURVE", "58 89 CURVE SMOOTH", "59 110 OFFCURVE", "72 118 OFFCURVE", "96 112 CURVE SMOOTH", "150 99 OFFCURVE", "212 104 OFFCURVE", "283 126 CURVE", "281 155 OFFCURVE", "285 185 OFFCURVE", "297 216 CURVE SMOOTH", "319 274 OFFCURVE", "358 324 OFFCURVE", "415 367 CURVE SMOOTH", "438 385 OFFCURVE", "459 394 OFFCURVE", "476 394 CURVE" ); } ); width = 571; } ); unicode = 08AC; }, { glyphname = "behMeemabove-ar"; layers = ( { components = ( { name = "beh-ar"; }, { name = smallmeem.above; transform = "{1, 0, 0, 1, 470, 250}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { components = ( { name = "beh-ar"; }, { name = smallmeem.above; transform = "{1, 0, 0, 1, 470, 250}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 08B6; }, { glyphname = "pehMeemabove-ar"; layers = ( { components = ( { name = "peh-ar"; }, { name = smallmeem.above; transform = "{1, 0, 0, 1, 470, 250}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { components = ( { name = "peh-ar"; }, { name = smallmeem.above; transform = "{1, 0, 0, 1, 470, 250}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 08B7; }, { glyphname = "tehTehabove-ar"; layers = ( { components = ( { name = "behDotless-ar"; }, { name = smallteh.above; transform = "{1, 0, 0, 1, 460, 140}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 926; }, { components = ( { name = "behDotless-ar"; }, { name = smallteh.above; transform = "{1, 0, 0, 1, 460, 140}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 926; } ); unicode = 08B8; }, { glyphname = "rehNoonabove-ar"; layers = ( { components = ( { name = "reh-ar"; }, { name = smallnoon.above; transform = "{1, 0, 0, 1, 240, 180}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { components = ( { name = "reh-ar"; }, { name = smallnoon.above; transform = "{1, 0, 0, 1, 240, 180}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = 08B9; }, { glyphname = "yehTwodotsbelowNoonabove-ar"; layers = ( { components = ( { name = "yeh-ar"; }, { name = smallnoon.above; transform = "{1, 0, 0, 1, 340, 180}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { components = ( { name = "yeh-ar"; }, { name = smallnoon.above; transform = "{1, 0, 0, 1, 340, 180}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = 08BA; }, { glyphname = "fehAfrican-ar"; layers = ( { components = ( { name = "fehDotless-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 983; }, { components = ( { name = "fehDotless-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 983; } ); unicode = 08BB; }, { glyphname = "qafAfrican-ar"; layers = ( { components = ( { name = "qafDotless-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 687; }, { components = ( { name = "qafDotless-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 687; } ); unicode = 08BC; }, { glyphname = "noonAfrican-ar"; layers = ( { components = ( { name = "noonghunna-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 572; }, { components = ( { name = "noonghunna-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); unicode = 08BD; }, { glyphname = "fathaCurly-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{145, 955}"; }, { name = _MarkAbove; position = "{270, 800}"; }, { name = _TashkilAbove; position = "{270, 800}"; }, { name = _TashkilAboveDot; position = "{270, 800}"; }, { name = _TashkilTashkilAbove; position = "{270, 800}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "352 1016 OFFCURVE", "363 992 OFFCURVE", "357 969 CURVE SMOOTH", "354 955 OFFCURVE", "345 944 OFFCURVE", "331 935 CURVE SMOOTH", "317 926 OFFCURVE", "293 920 OFFCURVE", "260 914 CURVE SMOOTH", "227 908 OFFCURVE", "206 899 OFFCURVE", "196 887 CURVE", "182 867 OFFCURVE", "184 846 OFFCURVE", "201 822 CURVE SMOOTH", "206 815 OFFCURVE", "208 812 OFFCURVE", "206 812 CURVE SMOOTH", "198 812 OFFCURVE", "187 821 OFFCURVE", "175 838 CURVE SMOOTH", "150 873 OFFCURVE", "147 899 OFFCURVE", "165 918 CURVE", "175 930 OFFCURVE", "197 939 OFFCURVE", "230 945 CURVE SMOOTH", "263 951 OFFCURVE", "286 958 OFFCURVE", "300 966 CURVE SMOOTH", "322 980 OFFCURVE", "331 999 OFFCURVE", "325 1021 CURVE SMOOTH", "323 1028 OFFCURVE", "319 1034 OFFCURVE", "312 1041 CURVE SMOOTH", "305 1048 OFFCURVE", "302 1052 OFFCURVE", "303 1056 CURVE SMOOTH", "304 1060 OFFCURVE", "312 1054 OFFCURVE", "326 1041 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{145, 955}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "358 1020 OFFCURVE", "370 992 OFFCURVE", "364 967 CURVE", "358 937 OFFCURVE", "325 917 OFFCURVE", "266 907 CURVE SMOOTH", "232 901 OFFCURVE", "211 894 OFFCURVE", "202 883 CURVE", "190 865 OFFCURVE", "192 846 OFFCURVE", "209 824 CURVE SMOOTH", "214 817 OFFCURVE", "216 812 OFFCURVE", "213 809 CURVE SMOOTH", "210 806 OFFCURVE", "205 805 OFFCURVE", "199 805 CURVE SMOOTH", "193 805 OFFCURVE", "182 815 OFFCURVE", "169 834 CURVE SMOOTH", "142 872 OFFCURVE", "140 901 OFFCURVE", "160 923 CURVE", "171 937 OFFCURVE", "194 946 OFFCURVE", "227 952 CURVE SMOOTH", "260 958 OFFCURVE", "283 965 OFFCURVE", "296 973 CURVE SMOOTH", "315 985 OFFCURVE", "323 1000 OFFCURVE", "318 1019 CURVE SMOOTH", "316 1025 OFFCURVE", "311 1030 OFFCURVE", "304 1037 CURVE SMOOTH", "297 1044 OFFCURVE", "294 1052 OFFCURVE", "296 1058 CURVE SMOOTH", "300 1069 OFFCURVE", "311 1066 OFFCURVE", "329 1048 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 08E4; }, { glyphname = "dammaCurly-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{195, 1034}"; }, { name = _MarkAbove; position = "{278, 845}"; }, { name = _TashkilAbove; position = "{278, 845}"; }, { name = _TashkilAboveDot; position = "{278, 845}"; }, { name = _TashkilTashkilAbove; position = "{278, 845}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "270 963 OFFCURVE", "256 972 OFFCURVE", "247 981 CURVE SMOOTH", "231 997 OFFCURVE", "227 1013 OFFCURVE", "234 1030 CURVE SMOOTH", "254 1076 OFFCURVE", "280 1101 OFFCURVE", "311 1106 CURVE SMOOTH", "322 1108 OFFCURVE", "331 1102 OFFCURVE", "339 1090 CURVE SMOOTH", "356 1064 OFFCURVE", "356 1030 OFFCURVE", "339 986 CURVE", "350 980 OFFCURVE", "357 975 OFFCURVE", "362 973 CURVE SMOOTH", "371 969 OFFCURVE", "373 962 OFFCURVE", "368 953 CURVE SMOOTH", "357 932 LINE SMOOTH", "353 925 OFFCURVE", "348 923 OFFCURVE", "342 925 CURVE SMOOTH", "336 927 OFFCURVE", "327 931 OFFCURVE", "315 938 CURVE", "301 919 OFFCURVE", "284 901 OFFCURVE", "263 882 CURVE SMOOTH", "230 852 OFFCURVE", "203 843 OFFCURVE", "185 855 CURVE SMOOTH", "173 863 OFFCURVE", "168 874 OFFCURVE", "169 890 CURVE SMOOTH", "170 904 OFFCURVE", "174 919 OFFCURVE", "180 935 CURVE SMOOTH", "191 961 OFFCURVE", "198 963 OFFCURVE", "202 939 CURVE SMOOTH", "206 920 OFFCURVE", "217 910 OFFCURVE", "234 911 CURVE SMOOTH", "243 911 OFFCURVE", "253 916 OFFCURVE", "263 924 CURVE SMOOTH", "271 931 OFFCURVE", "280 941 OFFCURVE", "289 953 CURVE" ); }, { closed = 1; nodes = ( "285 1056 OFFCURVE", "273 1054 OFFCURVE", "264 1039 CURVE SMOOTH", "261 1035 OFFCURVE", "263 1030 OFFCURVE", "269 1024 CURVE SMOOTH", "275 1018 OFFCURVE", "290 1009 OFFCURVE", "311 999 CURVE", "314 1019 OFFCURVE", "310 1034 OFFCURVE", "300 1042 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{195, 1074}"; }, { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "232 1016 OFFCURVE", "214 1044 OFFCURVE", "227 1073 CURVE SMOOTH", "248 1122 OFFCURVE", "275 1149 OFFCURVE", "309 1154 CURVE SMOOTH", "324 1156 OFFCURVE", "337 1149 OFFCURVE", "346 1134 CURVE SMOOTH", "363 1107 OFFCURVE", "364 1073 OFFCURVE", "348 1029 CURVE", "356 1025 OFFCURVE", "362 1021 OFFCURVE", "367 1019 CURVE SMOOTH", "372 1017 OFFCURVE", "375 1013 OFFCURVE", "377 1007 CURVE SMOOTH", "379 1001 OFFCURVE", "378 996 OFFCURVE", "375 990 CURVE SMOOTH", "363 968 LINE SMOOTH", "356 955 OFFCURVE", "341 956 OFFCURVE", "317 969 CURVE", "304 952 OFFCURVE", "287 934 OFFCURVE", "268 917 CURVE SMOOTH", "232 885 OFFCURVE", "203 875 OFFCURVE", "181 889 CURVE SMOOTH", "155 906 OFFCURVE", "154 939 OFFCURVE", "178 990 CURVE SMOOTH", "184 1003 OFFCURVE", "192 1007 OFFCURVE", "200 1002 CURVE SMOOTH", "204 1000 OFFCURVE", "207 993 OFFCURVE", "209 983 CURVE SMOOTH", "211 973 OFFCURVE", "214 966 OFFCURVE", "218 963 CURVE SMOOTH", "232 950 OFFCURVE", "252 959 OFFCURVE", "278 990 CURVE" ); }, { closed = 1; nodes = ( "304 1064 OFFCURVE", "299 1075 OFFCURVE", "288 1081 CURVE SMOOTH", "281 1085 OFFCURVE", "275 1083 OFFCURVE", "270 1075 CURVE", "271 1070 OFFCURVE", "282 1061 OFFCURVE", "304 1050 CURVE" ); } ); width = 0; } ); unicode = 08E5; }, { glyphname = "kasraCurly-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{305, -480}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; }, { name = _TashkilTashkilBelow; position = "{261, -327}"; } ); components = ( { name = "fathaCurly-ar"; transform = "{1, 0, 0, 1, -4, -1349}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{145, -400}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{261, -327}"; }, { name = _TashkilBelowDot; position = "{261, -327}"; } ); components = ( { name = "fathaCurly-ar"; transform = "{1, 0, 0, 1, -4, -1349}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08E6; }, { glyphname = "fathatanCurly-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{140, 1060}"; }, { name = _MarkAbove; position = "{258, 801}"; }, { name = _TashkilAbove; position = "{258, 801}"; }, { name = _TashkilAboveDot; position = "{258, 801}"; }, { name = _TashkilTashkilAbove; position = "{258, 801}"; } ); components = ( { name = "fathaCurly-ar"; transform = "{1, 0, 0, 1, 1, -21}"; }, { name = "fathaCurly-ar"; transform = "{1, 0, 0, 1, -30, 100}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{140, 1060}"; }, { name = _MarkAbove; position = "{258, 801}"; }, { name = _TashkilAbove; position = "{258, 801}"; }, { name = _TashkilAboveDot; position = "{258, 801}"; } ); components = ( { name = "fathaCurly-ar"; transform = "{1, 0, 0, 1, -30, 100}"; }, { name = "fathaCurly-ar"; transform = "{1, 0, 0, 1, 1, -21}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08E7; }, { glyphname = "dammatanCurly-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{119, 1159}"; }, { name = _MarkAbove; position = "{278, 844}"; }, { name = _TashkilAbove; position = "{278, 844}"; }, { name = _TashkilAboveDot; position = "{278, 844}"; }, { name = _TashkilTashkilAbove; position = "{278, 844}"; } ); components = ( { name = "dammaCurly-ar"; }, { name = "dammaCurly-ar"; transform = "{-1, 0, 0, -1, 438, 2049}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); components = ( { name = "dammaCurly-ar"; transform = "{-1, 0, 0, -1, 438, 2189}"; }, { name = "dammaCurly-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08E8; }, { glyphname = "kasratanCurly-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{340, -614}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{244, -327}"; }, { name = _TashkilBelowDot; position = "{244, -327}"; }, { name = _TashkilTashkilBelow; position = "{244, -327}"; } ); components = ( { name = "fathatanCurly-ar"; transform = "{1, 0, 0, 1, 6, -1489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{140, -434}"; }, { name = _MarkBelow; position = "{220, -327}"; }, { name = _TashkilBelow; position = "{244, -327}"; }, { name = _TashkilBelowDot; position = "{244, -327}"; } ); components = ( { name = "fathatanCurly-ar"; transform = "{1, 0, 0, 1, 6, -1489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08E9; }, { glyphname = "toneonedotabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{123, 999}"; }, { name = _MarkAbove; position = "{161, 845}"; }, { name = _TashkilAbove; position = "{161, 845}"; }, { name = _TashkilAboveDot; position = "{161, 845}"; }, { name = _TashkilTashkilAbove; position = "{161, 845}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "136 936 OFFCURVE", "137 937 OFFCURVE", "138 937 CURVE SMOOTH", "150 937 OFFCURVE", "167 928 OFFCURVE", "187 909 CURVE SMOOTH", "189 907 OFFCURVE", "189 905 OFFCURVE", "188 903 CURVE SMOOTH", "157 854 LINE SMOOTH", "156 852 OFFCURVE", "154 853 OFFCURVE", "151 855 CURVE SMOOTH", "148 857 OFFCURVE", "139 864 OFFCURVE", "125 872 CURVE SMOOTH", "111 880 OFFCURVE", "103 884 OFFCURVE", "103 885 CURVE SMOOTH", "103 886 OFFCURVE", "103 887 OFFCURVE", "104 887 CURVE SMOOTH", "136 935 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{161, 801}"; }, { name = _TashkilAbove; position = "{161, 801}"; }, { name = _TashkilAboveDot; position = "{161, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "129 938 LINE SMOOTH", "131 942 OFFCURVE", "134 944 OFFCURVE", "137 944 CURVE SMOOTH", "152 944 OFFCURVE", "170 934 OFFCURVE", "192 914 CURVE SMOOTH", "197 909 OFFCURVE", "198 904 OFFCURVE", "195 899 CURVE SMOOTH", "163 850 LINE SMOOTH", "159 843 OFFCURVE", "155 843 OFFCURVE", "150 847 CURVE SMOOTH", "140 855 OFFCURVE", "124 865 OFFCURVE", "101 876 CURVE SMOOTH", "95 879 OFFCURVE", "93 882 OFFCURVE", "95 887 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 08EA; }, { glyphname = "tonetwodotsabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{184, 990}"; }, { name = _MarkAbove; position = "{234, 845}"; }, { name = _TashkilAbove; position = "{234, 845}"; }, { name = _TashkilAboveDot; position = "{234, 845}"; }, { name = _TashkilTashkilAbove; position = "{234, 845}"; } ); components = ( { name = "toneonedotabove-ar"; transform = "{1, 0, 0, 1, 0, -10}"; }, { name = "toneonedotabove-ar"; transform = "{1, 0, 0, 1, 120, 57}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkAbove; position = "{234, 801}"; }, { name = _TashkilAbove; position = "{234, 801}"; }, { name = _TashkilAboveDot; position = "{234, 801}"; } ); components = ( { name = "toneonedotabove-ar"; transform = "{1, 0, 0, 1, 120, 67}"; }, { name = "toneonedotabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08EB; }, { glyphname = "toneloopabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{156, 1020}"; }, { name = _MarkAbove; position = "{156, 845}"; }, { name = _TashkilAbove; position = "{156, 845}"; }, { name = _TashkilAboveDot; position = "{156, 845}"; }, { name = _TashkilTashkilAbove; position = "{156, 845}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "275 967 OFFCURVE", "277 966 OFFCURVE", "277 964 CURVE SMOOTH", "277 962 OFFCURVE", "276 959 OFFCURVE", "274 955 CURVE SMOOTH", "263 937 OFFCURVE", "251 920 OFFCURVE", "237 906 CURVE", "244 898 OFFCURVE", "250 889 OFFCURVE", "257 879 CURVE SMOOTH", "258 877 OFFCURVE", "258 875 OFFCURVE", "256 871 CURVE SMOOTH", "254 867 OFFCURVE", "252 864 OFFCURVE", "249 861 CURVE SMOOTH", "246 858 OFFCURVE", "242 855 OFFCURVE", "239 854 CURVE SMOOTH", "236 853 OFFCURVE", "233 853 OFFCURVE", "232 855 CURVE SMOOTH", "225 865 OFFCURVE", "218 875 OFFCURVE", "211 884 CURVE", "187 866 OFFCURVE", "161 855 OFFCURVE", "133 850 CURVE SMOOTH", "117 847 OFFCURVE", "103 849 OFFCURVE", "91 855 CURVE", "74 863 OFFCURVE", "66 876 OFFCURVE", "66 895 CURVE SMOOTH", "66 901 OFFCURVE", "67 905 OFFCURVE", "68 910 CURVE SMOOTH", "71 921 OFFCURVE", "76 930 OFFCURVE", "84 939 CURVE SMOOTH", "90 945 OFFCURVE", "96 949 OFFCURVE", "103 953 CURVE SMOOTH", "123 964 OFFCURVE", "147 964 OFFCURVE", "174 953 CURVE SMOOTH", "193 945 OFFCURVE", "211 933 OFFCURVE", "227 917 CURVE", "236 927 OFFCURVE", "245 938 OFFCURVE", "253 952 CURVE SMOOTH", "255 956 OFFCURVE", "258 959 OFFCURVE", "262 962 CURVE SMOOTH", "266 965 OFFCURVE", "269 967 OFFCURVE", "272 967 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "185 910 OFFCURVE", "169 920 OFFCURVE", "152 927 CURVE SMOOTH", "141 932 OFFCURVE", "129 935 OFFCURVE", "119 935 CURVE SMOOTH", "109 935 OFFCURVE", "101 934 OFFCURVE", "96 930 CURVE", "94 926 OFFCURVE", "92 921 OFFCURVE", "92 913 CURVE SMOOTH", "92 898 OFFCURVE", "99 887 OFFCURVE", "114 880 CURVE", "124 875 OFFCURVE", "135 874 OFFCURVE", "148 876 CURVE SMOOTH", "167 879 OFFCURVE", "184 885 OFFCURVE", "200 895 CURVE" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{156, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "261 891 OFFCURVE", "267 877 OFFCURVE", "264 870 CURVE SMOOTH", "257 855 OFFCURVE", "248 848 OFFCURVE", "236 847 CURVE SMOOTH", "232 847 OFFCURVE", "227 850 OFFCURVE", "223 857 CURVE SMOOTH", "219 864 OFFCURVE", "214 871 OFFCURVE", "208 878 CURVE", "184 862 OFFCURVE", "162 851 OFFCURVE", "140 846 CURVE SMOOTH", "118 841 OFFCURVE", "101 841 OFFCURVE", "88 848 CURVE SMOOTH", "65 860 OFFCURVE", "57 881 OFFCURVE", "65 910 CURVE SMOOTH", "70 931 OFFCURVE", "84 948 OFFCURVE", "105 959 CURVE SMOOTH", "134 975 OFFCURVE", "167 970 OFFCURVE", "202 946 CURVE SMOOTH", "215 937 OFFCURVE", "225 931 OFFCURVE", "229 926 CURVE", "236 934 OFFCURVE", "243 943 OFFCURVE", "250 954 CURVE SMOOTH", "257 965 OFFCURVE", "265 971 OFFCURVE", "272 973 CURVE SMOOTH", "279 975 OFFCURVE", "283 971 OFFCURVE", "284 964 CURVE SMOOTH", "285 957 OFFCURVE", "272 938 OFFCURVE", "245 909 CURVE" ); }, { closed = 1; nodes = ( "168 919 OFFCURVE", "139 930 OFFCURVE", "109 927 CURVE SMOOTH", "103 926 OFFCURVE", "99 926 OFFCURVE", "98 925 CURVE", "97 922 OFFCURVE", "96 916 OFFCURVE", "96 908 CURVE SMOOTH", "96 900 OFFCURVE", "103 892 OFFCURVE", "115 887 CURVE SMOOTH", "137 877 OFFCURVE", "164 880 OFFCURVE", "196 896 CURVE" ); } ); width = 0; } ); unicode = 08EC; }, { glyphname = "toneonedotbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{157, -450}"; }, { name = _MarkBelow; position = "{137, -328}"; }, { name = _TashkilBelow; position = "{137, -328}"; }, { name = _TashkilBelowDot; position = "{137, -328}"; }, { name = _TashkilTashkilBelow; position = "{137, -328}"; } ); components = ( { name = "toneonedotabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{137, -278}"; }, { name = _TashkilBelow; position = "{137, -278}"; }, { name = _TashkilBelowDot; position = "{137, -278}"; } ); components = ( { name = "toneonedotabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08ED; }, { glyphname = "tonetwodotsbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{236, -418}"; }, { name = _MarkBelow; position = "{186, -278}"; }, { name = _TashkilBelow; position = "{186, -278}"; }, { name = _TashkilBelowDot; position = "{186, -278}"; }, { name = _TashkilTashkilBelow; position = "{186, -278}"; } ); components = ( { name = "tonetwodotsabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{186, -278}"; }, { name = _TashkilBelow; position = "{186, -278}"; }, { name = _TashkilBelowDot; position = "{186, -278}"; } ); components = ( { name = "tonetwodotsabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08EE; }, { glyphname = "toneloopbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{137, -458}"; }, { name = _MarkBelow; position = "{137, -278}"; }, { name = _TashkilBelow; position = "{137, -278}"; }, { name = _TashkilBelowDot; position = "{137, -278}"; }, { name = _TashkilTashkilBelow; position = "{137, -278}"; } ); components = ( { name = "toneloopabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{137, -278}"; }, { name = _TashkilBelow; position = "{137, -278}"; }, { name = _TashkilBelowDot; position = "{137, -278}"; } ); components = ( { name = "toneloopabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08EF; }, { glyphname = "openfathatan-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{140, 1074}"; }, { name = _MarkAbove; position = "{244, 801}"; }, { name = _TashkilAbove; position = "{244, 801}"; }, { name = _TashkilAboveDot; position = "{244, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "357 1027 OFFCURVE", "366 1024 OFFCURVE", "359 1004 CURVE SMOOTH", "349 973 LINE SMOOTH", "346 963 OFFCURVE", "340 955 OFFCURVE", "332 950 CURVE SMOOTH", "157 843 LINE SMOOTH", "143 835 OFFCURVE", "138 837 OFFCURVE", "140 852 CURVE SMOOTH", "143 871 LINE SMOOTH", "145 880 OFFCURVE", "150 888 OFFCURVE", "159 895 CURVE SMOOTH", "336 1012 LINE SMOOTH" ); }, { closed = 1; nodes = ( "435 1173 OFFCURVE", "442 1170 OFFCURVE", "437 1152 CURVE SMOOTH", "430 1127 LINE SMOOTH", "427 1116 OFFCURVE", "420 1108 OFFCURVE", "409 1101 CURVE SMOOTH", "232 998 LINE SMOOTH", "209 985 OFFCURVE", "202 988 OFFCURVE", "211 1008 CURVE SMOOTH", "220 1027 LINE SMOOTH", "225 1037 OFFCURVE", "229 1043 OFFCURVE", "235 1047 CURVE SMOOTH", "416 1161 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{140, 1074}"; }, { name = _MarkAbove; position = "{244, 801}"; }, { name = _TashkilAbove; position = "{244, 801}"; }, { name = _TashkilAboveDot; position = "{244, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "345 1026 OFFCURVE", "355 1029 OFFCURVE", "362 1027 CURVE SMOOTH", "369 1025 OFFCURVE", "371 1016 OFFCURVE", "366 1001 CURVE SMOOTH", "355 970 LINE SMOOTH", "351 958 OFFCURVE", "345 950 OFFCURVE", "336 944 CURVE SMOOTH", "161 836 LINE SMOOTH", "154 832 OFFCURVE", "147 831 OFFCURVE", "140 832 CURVE SMOOTH", "133 833 OFFCURVE", "130 840 OFFCURVE", "132 853 CURVE SMOOTH", "135 872 LINE", "137 883 OFFCURVE", "144 893 OFFCURVE", "155 900 CURVE", "333 1018 LINE SMOOTH" ); }, { closed = 1; nodes = ( "423 1174 OFFCURVE", "431 1176 OFFCURVE", "437 1175 CURVE", "446 1172 OFFCURVE", "448 1164 OFFCURVE", "444 1150 CURVE SMOOTH", "437 1125 LINE", "433 1112 OFFCURVE", "425 1102 OFFCURVE", "413 1095 CURVE SMOOTH", "236 992 LINE SMOOTH", "222 985 OFFCURVE", "212 982 OFFCURVE", "205 985 CURVE SMOOTH", "198 988 OFFCURVE", "198 997 OFFCURVE", "204 1011 CURVE SMOOTH", "213 1030 LINE SMOOTH", "219 1041 OFFCURVE", "224 1048 OFFCURVE", "231 1053 CURVE SMOOTH", "412 1167 LINE SMOOTH" ); } ); width = 0; } ); unicode = 08F0; }, { glyphname = "opendammatan-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{83, 1074}"; }, { name = _MarkAbove; position = "{239, 801}"; }, { name = _TashkilAbove; position = "{239, 801}"; }, { name = _TashkilAboveDot; position = "{239, 801}"; } ); components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 320, -73}"; }, { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 156, -76}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{83, 1074}"; }, { name = _MarkAbove; position = "{239, 801}"; }, { name = _TashkilAbove; position = "{239, 801}"; }, { name = _TashkilAboveDot; position = "{239, 801}"; } ); components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 320, -73}"; }, { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 156, -76}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08F1; }, { glyphname = "openkasratan-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{145, -434}"; }, { name = _MarkBelow; position = "{244, -278}"; }, { name = _TashkilBelow; position = "{327, -278}"; }, { name = _TashkilBelowDot; position = "{327, -278}"; }, { name = _TashkilBelowHamza; position = "{327, -278}"; } ); components = ( { name = "openfathatan-ar"; transform = "{1, 0, 0, 1, 0, -1473}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{145, -434}"; }, { name = _MarkBelow; position = "{244, -278}"; }, { name = _TashkilBelow; position = "{327, -278}"; }, { name = _TashkilBelowDot; position = "{327, -278}"; }, { name = _TashkilBelowHamza; position = "{327, -278}"; } ); components = ( { name = "openfathatan-ar"; transform = "{1, 0, 0, 1, 0, -1473}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08F2; }, { glyphname = "highwaw-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{156, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; } ); components = ( { name = "wawSmall-ar"; transform = "{1, 0, 0, 1, -61, 902}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkAbove; position = "{156, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; } ); components = ( { name = "wawSmall-ar"; transform = "{1, 0, 0, 1, -61, 902}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08F3; }, { glyphname = "fathaRing-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{145, 955}"; }, { name = _MarkAbove; position = "{271, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; }, { name = _TashkilTashkilAbove; position = "{271, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "212 1043 OFFCURVE", "246 1051 OFFCURVE", "288 1019 CURVE SMOOTH", "314 999 OFFCURVE", "329 969 OFFCURVE", "332 929 CURVE SMOOTH", "336 884 OFFCURVE", "324 851 OFFCURVE", "299 834 CURVE SMOOTH", "281 822 OFFCURVE", "260 817 OFFCURVE", "234 819 CURVE SMOOTH", "176 823 OFFCURVE", "154 866 OFFCURVE", "169 949 CURVE SMOOTH", "172 966 OFFCURVE", "178 980 OFFCURVE", "185 994 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "320 900 OFFCURVE", "319 923 OFFCURVE", "291 957 CURVE SMOOTH", "279 972 OFFCURVE", "261 979 OFFCURVE", "238 979 CURVE SMOOTH", "215 979 OFFCURVE", "200 968 OFFCURVE", "193 946 CURVE SMOOTH", "188 929 OFFCURVE", "188 916 OFFCURVE", "191 905 CURVE SMOOTH", "194 896 OFFCURVE", "202 889 OFFCURVE", "215 885 CURVE SMOOTH", "238 877 OFFCURVE", "264 878 OFFCURVE", "292 889 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "390 1036 OFFCURVE", "396 1033 OFFCURVE", "391 1016 CURVE SMOOTH", "381 983 LINE SMOOTH", "379 975 OFFCURVE", "372 967 OFFCURVE", "360 960 CURVE", "126 828 LINE SMOOTH", "114 821 OFFCURVE", "108 824 OFFCURVE", "108 837 CURVE", "109 854 LINE SMOOTH", "109 860 OFFCURVE", "115 868 OFFCURVE", "126 877 CURVE", "373 1026 LINE" ); } ); userData = { org.sfdlib.decomposeAndRemoveOverlap = 1; }; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{145, 955}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "212 1043 OFFCURVE", "246 1051 OFFCURVE", "288 1019 CURVE SMOOTH", "314 999 OFFCURVE", "329 969 OFFCURVE", "332 929 CURVE SMOOTH", "336 884 OFFCURVE", "324 851 OFFCURVE", "299 834 CURVE SMOOTH", "281 822 OFFCURVE", "260 817 OFFCURVE", "234 819 CURVE SMOOTH", "176 823 OFFCURVE", "154 866 OFFCURVE", "169 949 CURVE SMOOTH", "172 966 OFFCURVE", "178 980 OFFCURVE", "185 994 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "320 900 OFFCURVE", "319 923 OFFCURVE", "291 957 CURVE SMOOTH", "279 972 OFFCURVE", "261 979 OFFCURVE", "238 979 CURVE SMOOTH", "215 979 OFFCURVE", "200 968 OFFCURVE", "193 946 CURVE SMOOTH", "188 929 OFFCURVE", "188 916 OFFCURVE", "191 905 CURVE SMOOTH", "194 896 OFFCURVE", "202 889 OFFCURVE", "215 885 CURVE SMOOTH", "238 877 OFFCURVE", "264 878 OFFCURVE", "292 889 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "390 1036 OFFCURVE", "396 1033 OFFCURVE", "391 1016 CURVE SMOOTH", "381 983 LINE SMOOTH", "379 975 OFFCURVE", "372 967 OFFCURVE", "360 960 CURVE", "126 828 LINE SMOOTH", "114 821 OFFCURVE", "108 824 OFFCURVE", "108 837 CURVE", "109 854 LINE SMOOTH", "109 860 OFFCURVE", "115 868 OFFCURVE", "126 877 CURVE", "373 1026 LINE" ); } ); width = 0; } ); unicode = 08F4; }, { glyphname = "fathaDotabove-ar"; layers = ( { anchors = ( { name = _MarkAbove; position = "{271, 845}"; }, { name = _TashkilAbove; position = "{271, 845}"; }, { name = _TashkilAboveDot; position = "{271, 845}"; }, { name = _TashkilTashkilAbove; position = "{271, 845}"; } ); components = ( { name = "fatha-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "202 1086 OFFCURVE", "203 1086 OFFCURVE", "204 1086 CURVE SMOOTH", "213 1086 OFFCURVE", "225 1079 OFFCURVE", "241 1065 CURVE SMOOTH", "242 1064 OFFCURVE", "243 1063 OFFCURVE", "242 1061 CURVE SMOOTH", "218 1023 LINE SMOOTH", "217 1021 OFFCURVE", "215 1021 OFFCURVE", "213 1023 CURVE SMOOTH", "211 1025 OFFCURVE", "204 1029 OFFCURVE", "193 1036 CURVE SMOOTH", "182 1043 OFFCURVE", "177 1046 OFFCURVE", "177 1047 CURVE SMOOTH", "177 1048 OFFCURVE", "177 1048 OFFCURVE", "177 1048 CURVE SMOOTH", "202 1085 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; } ); components = ( { name = "fatha-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "196 1091 OFFCURVE", "201 1093 OFFCURVE", "208 1093 CURVE SMOOTH", "215 1093 OFFCURVE", "228 1085 OFFCURVE", "245 1070 CURVE", "249 1065 OFFCURVE", "250 1062 OFFCURVE", "248 1057 CURVE", "224 1019 LINE", "220 1014 OFFCURVE", "216 1013 OFFCURVE", "211 1016 CURVE SMOOTH", "200 1023 OFFCURVE", "191 1029 OFFCURVE", "182 1033 CURVE", "174 1038 OFFCURVE", "169 1043 OFFCURVE", "168 1047 CURVE", "169 1052 LINE", "194 1088 LINE SMOOTH" ); } ); width = 0; } ); unicode = 08F5; }, { glyphname = "kasraDotbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{169, -519}"; }, { name = _MarkBelow; position = "{38, -220}"; }, { name = _TashkilBelow; position = "{121, -220}"; }, { name = _TashkilBelowDot; position = "{121, -220}"; }, { name = _TashkilTashkilBelow; position = "{121, -220}"; } ); components = ( { name = "fatha-ar"; transform = "{1, 0, 0, 1, -142, -1274}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "151 -425 OFFCURVE", "151 -425 OFFCURVE", "152 -425 CURVE SMOOTH", "153 -425 OFFCURVE", "157 -426 OFFCURVE", "165 -429 CURVE SMOOTH", "173 -432 OFFCURVE", "179 -435 OFFCURVE", "184 -440 CURVE SMOOTH", "189 -446 OFFCURVE", "191 -450 OFFCURVE", "190 -451 CURVE SMOOTH", "167 -488 LINE SMOOTH", "167 -489 OFFCURVE", "166 -489 OFFCURVE", "165 -489 CURVE SMOOTH", "164 -489 OFFCURVE", "161 -486 OFFCURVE", "154 -481 CURVE SMOOTH", "147 -476 OFFCURVE", "142 -473 OFFCURVE", "135 -470 CURVE SMOOTH", "128 -467 OFFCURVE", "125 -465 OFFCURVE", "125 -464 CURVE SMOOTH", "125 -463 OFFCURVE", "125 -463 OFFCURVE", "125 -463 CURVE SMOOTH", "150 -426 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{-62, -376}"; }, { name = _MarkBelow; position = "{38, -220}"; }, { name = _TashkilBelow; position = "{121, -220}"; }, { name = _TashkilBelowDot; position = "{121, -220}"; } ); components = ( { name = "fatha-ar"; transform = "{1, 0, 0, 1, -142, -1274}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "145 -421 OFFCURVE", "150 -419 OFFCURVE", "157 -419 CURVE SMOOTH", "164 -419 OFFCURVE", "177 -427 OFFCURVE", "194 -442 CURVE", "198 -447 OFFCURVE", "198 -451 OFFCURVE", "196 -456 CURVE", "172 -493 LINE", "168 -498 OFFCURVE", "165 -499 OFFCURVE", "160 -496 CURVE SMOOTH", "149 -489 OFFCURVE", "139 -483 OFFCURVE", "130 -479 CURVE", "122 -474 OFFCURVE", "118 -469 OFFCURVE", "117 -465 CURVE", "118 -460 LINE", "143 -424 LINE SMOOTH" ); } ); width = 0; } ); unicode = 08F6; }, { glyphname = "leftarrowheadabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{156, 1060}"; }, { name = _MarkAbove; position = "{156, 845}"; }, { name = _TashkilAbove; position = "{156, 845}"; }, { name = _TashkilAboveDot; position = "{156, 845}"; }, { name = _TashkilTashkilAbove; position = "{156, 845}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "216 1006 LINE", "130 965 LINE", "256 891 LINE", "263 878 LINE", "212 849 LINE", "67 935 LINE", "59 947 LINE", "110 977 LINE", "259 1048 LINE", "266 1035 LINE" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{156, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "219 999 LINE", "146 964 LINE", "261 896 LINE", "273 876 LINE", "212 841 LINE", "61 929 LINE", "49 950 LINE", "107 983 LINE", "262 1057 LINE", "276 1032 LINE" ); } ); width = 0; } ); unicode = 08F7; }, { glyphname = "rightarrowheadabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{156, 1060}"; }, { name = _MarkAbove; position = "{156, 845}"; }, { name = _TashkilAbove; position = "{156, 845}"; }, { name = _TashkilAboveDot; position = "{156, 845}"; }, { name = _TashkilTashkilAbove; position = "{156, 845}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "95 1048 LINE", "244 977 LINE", "252 964 LINE", "106 878 LINE", "55 849 LINE", "48 862 LINE", "185 942 LINE", "52 1006 LINE", "45 1019 LINE" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{156, 801}"; }, { name = _TashkilAbove; position = "{156, 801}"; }, { name = _TashkilAboveDot; position = "{156, 801}"; }, { name = _TashkilTashkilAbove; position = "{156, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "95 1056 LINE", "250 982 LINE", "262 961 LINE", "110 872 LINE", "53 839 LINE", "38 864 LINE", "169 942 LINE", "47 1000 LINE", "35 1021 LINE" ); } ); width = 0; } ); unicode = 08F8; }, { glyphname = "leftarrowheadbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{137, -436}"; }, { name = _MarkBelow; position = "{137, -209}"; }, { name = _TashkilBelow; position = "{137, -209}"; }, { name = _TashkilBelowDot; position = "{137, -209}"; }, { name = _TashkilTashkilBelow; position = "{137, -209}"; } ); components = ( { name = "leftarrowheadabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{137, -209}"; }, { name = _TashkilBelow; position = "{137, -209}"; }, { name = _TashkilBelowDot; position = "{137, -209}"; } ); components = ( { name = "leftarrowheadabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08F9; }, { glyphname = "rightarrowheadbelow-ar"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{137, -436}"; }, { name = _MarkBelow; position = "{137, -209}"; }, { name = _TashkilBelow; position = "{137, -209}"; }, { name = _TashkilBelowDot; position = "{137, -209}"; }, { name = _TashkilTashkilBelow; position = "{137, -209}"; } ); components = ( { name = "rightarrowheadabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkBelow; position = "{137, -209}"; }, { name = _TashkilBelow; position = "{137, -209}"; }, { name = _TashkilBelowDot; position = "{137, -209}"; } ); components = ( { name = "rightarrowheadabove-ar"; transform = "{1, 0, 0, 1, 0, -1284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08FA; }, { glyphname = "doublerightarrowheadabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{206, 1060}"; }, { name = _MarkAbove; position = "{205, 845}"; }, { name = _TashkilAbove; position = "{205, 845}"; }, { name = _TashkilAboveDot; position = "{205, 845}"; } ); components = ( { name = "rightarrowheadabove-ar"; }, { name = "rightarrowheadabove-ar"; transform = "{1, 0, 0, 1, 190, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _MarkAbove; position = "{205, 801}"; }, { name = _TashkilAbove; position = "{205, 801}"; }, { name = _TashkilAboveDot; position = "{205, 801}"; } ); components = ( { name = "rightarrowheadabove-ar"; transform = "{1, 0, 0, 1, 190, 0}"; }, { name = "rightarrowheadabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 08FB; }, { glyphname = "doublerightarrowheadDotabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{106, 1060}"; }, { name = _MarkAbove; position = "{107, 845}"; }, { name = _TashkilAbove; position = "{107, 845}"; }, { name = _TashkilAboveDot; position = "{107, 845}"; }, { name = _TashkilTashkilAbove; position = "{107, 845}"; } ); components = ( { name = "doublerightarrowheadabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-90 979 OFFCURVE", "-90 979 OFFCURVE", "-89 979 CURVE SMOOTH", "-78 979 OFFCURVE", "-66 972 OFFCURVE", "-52 958 CURVE SMOOTH", "-50 956 OFFCURVE", "-50 954 OFFCURVE", "-51 953 CURVE SMOOTH", "-75 916 LINE SMOOTH", "-76 914 OFFCURVE", "-78 914 OFFCURVE", "-80 916 CURVE SMOOTH", "-82 918 OFFCURVE", "-89 922 OFFCURVE", "-100 929 CURVE SMOOTH", "-111 936 OFFCURVE", "-116 938 OFFCURVE", "-116 939 CURVE SMOOTH", "-116 941 LINE SMOOTH", "-91 978 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{107, 801}"; }, { name = _TashkilAbove; position = "{107, 801}"; }, { name = _TashkilAboveDot; position = "{107, 801}"; } ); components = ( { name = "doublerightarrowheadabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-95 984 OFFCURVE", "-90 986 OFFCURVE", "-83 986 CURVE SMOOTH", "-76 986 OFFCURVE", "-63 978 OFFCURVE", "-46 963 CURVE", "-42 958 OFFCURVE", "-42 954 OFFCURVE", "-44 949 CURVE", "-68 912 LINE", "-72 907 OFFCURVE", "-76 906 OFFCURVE", "-81 909 CURVE SMOOTH", "-92 916 OFFCURVE", "-101 922 OFFCURVE", "-110 926 CURVE", "-118 931 OFFCURVE", "-122 935 OFFCURVE", "-123 939 CURVE", "-122 944 LINE", "-97 981 LINE SMOOTH" ); } ); width = 0; } ); unicode = 08FC; }, { glyphname = "rightarrowheadDotabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{16, 1060}"; }, { name = _MarkAbove; position = "{15, 845}"; }, { name = _TashkilAbove; position = "{15, 845}"; }, { name = _TashkilAboveDot; position = "{15, 845}"; }, { name = _TashkilTashkilAbove; position = "{15, 845}"; } ); components = ( { name = "rightarrowheadabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-90 979 OFFCURVE", "-90 979 OFFCURVE", "-89 979 CURVE SMOOTH", "-78 979 OFFCURVE", "-66 972 OFFCURVE", "-52 958 CURVE SMOOTH", "-50 956 OFFCURVE", "-50 954 OFFCURVE", "-51 953 CURVE SMOOTH", "-75 916 LINE SMOOTH", "-76 914 OFFCURVE", "-78 914 OFFCURVE", "-80 916 CURVE SMOOTH", "-82 918 OFFCURVE", "-89 922 OFFCURVE", "-100 929 CURVE SMOOTH", "-111 936 OFFCURVE", "-116 938 OFFCURVE", "-116 939 CURVE SMOOTH", "-116 941 LINE SMOOTH", "-91 978 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{14, 801}"; }, { name = _TashkilAbove; position = "{15, 801}"; }, { name = _TashkilAboveDot; position = "{15, 801}"; } ); components = ( { name = "rightarrowheadabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-95 984 OFFCURVE", "-90 986 OFFCURVE", "-83 986 CURVE SMOOTH", "-76 986 OFFCURVE", "-63 978 OFFCURVE", "-46 963 CURVE", "-42 958 OFFCURVE", "-42 954 OFFCURVE", "-44 949 CURVE", "-68 912 LINE", "-72 907 OFFCURVE", "-76 906 OFFCURVE", "-81 909 CURVE SMOOTH", "-92 916 OFFCURVE", "-101 922 OFFCURVE", "-110 926 CURVE", "-118 931 OFFCURVE", "-122 935 OFFCURVE", "-123 939 CURVE", "-122 944 LINE", "-97 981 LINE SMOOTH" ); } ); width = 0; } ); unicode = 08FD; }, { glyphname = "dammaDot-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{195, 1074}"; }, { name = _MarkAbove; position = "{278, 845}"; }, { name = _TashkilAbove; position = "{278, 845}"; }, { name = _TashkilAboveDot; position = "{278, 845}"; }, { name = _TashkilTashkilAbove; position = "{278, 845}"; } ); components = ( { name = "damma-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "110 1076 OFFCURVE", "110 1077 OFFCURVE", "111 1077 CURVE SMOOTH", "122 1077 OFFCURVE", "134 1069 OFFCURVE", "148 1055 CURVE SMOOTH", "150 1053 OFFCURVE", "150 1052 OFFCURVE", "149 1051 CURVE SMOOTH", "125 1013 LINE SMOOTH", "124 1011 OFFCURVE", "123 1012 OFFCURVE", "121 1014 CURVE SMOOTH", "119 1016 OFFCURVE", "112 1019 OFFCURVE", "101 1026 CURVE SMOOTH", "90 1033 OFFCURVE", "84 1036 OFFCURVE", "84 1037 CURVE SMOOTH", "84 1039 LINE SMOOTH", "109 1075 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{195, 1074}"; }, { name = _MarkAbove; position = "{278, 801}"; }, { name = _TashkilAbove; position = "{278, 801}"; }, { name = _TashkilAboveDot; position = "{278, 801}"; } ); components = ( { name = "damma-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "104 1082 OFFCURVE", "109 1083 OFFCURVE", "116 1083 CURVE SMOOTH", "123 1083 OFFCURVE", "136 1076 OFFCURVE", "153 1061 CURVE", "157 1056 OFFCURVE", "157 1052 OFFCURVE", "155 1047 CURVE", "131 1009 LINE", "127 1004 OFFCURVE", "124 1003 OFFCURVE", "119 1006 CURVE SMOOTH", "108 1013 OFFCURVE", "98 1019 OFFCURVE", "89 1023 CURVE", "81 1028 OFFCURVE", "77 1033 OFFCURVE", "76 1037 CURVE", "77 1042 LINE", "102 1079 LINE SMOOTH" ); } ); width = 0; } ); unicode = 08FE; }, { glyphname = enquad; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 500; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 500; } ); unicode = 2000; }, { glyphname = emquad; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1000; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1000; } ); unicode = 2001; }, { glyphname = enspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 500; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 500; } ); unicode = 2002; }, { glyphname = emspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1000; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1000; } ); unicode = 2003; }, { glyphname = threeperemspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 333; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 333; } ); unicode = 2004; }, { glyphname = fourperemspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 250; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 250; } ); unicode = 2005; }, { glyphname = sixperemspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 166; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 166; } ); unicode = 2006; }, { glyphname = figurespace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); unicode = 2007; }, { glyphname = punctuationspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 317; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 317; } ); unicode = 2008; }, { glyphname = thinspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 200; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 200; } ); unicode = 2009; }, { glyphname = hairspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 146; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 146; } ); unicode = 200A; }, { glyphname = zerowidthspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 200B; }, { glyphname = zerowidthnonjoiner; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "15 0 LINE", "-15 0 LINE", "-15 542 LINE", "15 542 LINE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "15 0 LINE", "-15 0 LINE", "-15 542 LINE", "15 542 LINE" ); } ); width = 0; } ); unicode = 200C; }, { glyphname = zerowidthjoiner; layers = ( { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.9, 0, 0}"; }, { name = _x; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.9, 0, 0}"; }, { name = _x; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 200D; }, { glyphname = lefttorightmark; layers = ( { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.9, 0, 0}"; }, { name = _arrowhead2; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.9, 0, 0}"; }, { name = _arrowhead2; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 200E; }, { glyphname = righttoleftmark; layers = ( { components = ( { name = _arrowhead2; transform = "{-1, 0, 0, -1, 0, 1084}"; }, { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.9, 0, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.9, 0, 0}"; }, { name = _arrowhead2; transform = "{-1, 0, 0, -1, 0, 1084}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 200F; }, { glyphname = lineseparator; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 2028; }, { glyphname = paragraphseparator; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 2029; }, { glyphname = lefttorightembedding; layers = ( { components = ( { name = zerowidthnonjoiner; }, { name = _arrowhead; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; }, { name = _arrowhead; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 202A; }, { glyphname = righttoleftembedding; layers = ( { components = ( { name = zerowidthnonjoiner; }, { name = _arrowhead; transform = "{-1, 0, 0, -1, 0.326, 1084}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; }, { name = _arrowhead; transform = "{-1, 0, 0, -1, 0.326, 1084}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 202B; }, { glyphname = popdirectionalformatting; layers = ( { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.95, 0, 0}"; }, { name = _arrowhead; transform = "{0, 1, -1, 0, 542, 475}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; transform = "{1, 0, 0, 0.95, 0, 0}"; }, { name = _arrowhead; transform = "{0, 1, -1, 0, 542, 475}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 202C; }, { glyphname = lefttorightoverride; layers = ( { components = ( { name = zerowidthnonjoiner; }, { name = _arrowhead; }, { name = _arrowhead; transform = "{1, 0, 0, 1, 89, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = zerowidthnonjoiner; }, { name = _arrowhead; }, { name = _arrowhead; transform = "{1, 0, 0, 1, 89, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 202D; }, { glyphname = righttoleftoverride; layers = ( { components = ( { name = _arrowhead; transform = "{-1, 0, 0, -1, 0.326, 1084}"; }, { name = _arrowhead; transform = "{-1, 0, 0, -1, -88.674, 1084}"; }, { name = zerowidthnonjoiner; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { components = ( { name = _arrowhead; transform = "{-1, 0, 0, -1, 0.326, 1084}"; }, { name = _arrowhead; transform = "{-1, 0, 0, -1, -88.674, 1084}"; }, { name = zerowidthnonjoiner; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = 202E; }, { glyphname = narrownbspace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 200; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 200; } ); unicode = 202F; }, { glyphname = fraction; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-54 2 LINE", "-57 -2 OFFCURVE", "-60 -5 OFFCURVE", "-66 -9 CURVE SMOOTH", "-72 -13 OFFCURVE", "-78 -14 OFFCURVE", "-85 -12 CURVE SMOOTH", "-88 -11 OFFCURVE", "-91 -10 OFFCURVE", "-93 -9 CURVE SMOOTH", "-95 -8 OFFCURVE", "-96 -7 OFFCURVE", "-96 -6 CURVE SMOOTH", "-97 -4 LINE", "245 622 LINE SMOOTH", "245 623 OFFCURVE", "247 624 OFFCURVE", "250 625 CURVE SMOOTH", "253 626 OFFCURVE", "256 628 OFFCURVE", "260 629 CURVE SMOOTH", "264 630 OFFCURVE", "269 630 OFFCURVE", "275 629 CURVE SMOOTH", "280 628 OFFCURVE", "283 625 OFFCURVE", "283 619 CURVE" ); } ); width = 123; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-43 -11 LINE SMOOTH", "-45 -15 OFFCURVE", "-49 -18 OFFCURVE", "-56 -23 CURVE SMOOTH", "-63 -28 OFFCURVE", "-71 -31 OFFCURVE", "-79 -33 CURVE SMOOTH", "-83 -34 OFFCURVE", "-87 -33 OFFCURVE", "-90 -32 CURVE SMOOTH", "-93 -31 OFFCURVE", "-94 -29 OFFCURVE", "-95 -27 CURVE SMOOTH", "-96 -24 LINE", "241 647 LINE", "248 657 OFFCURVE", "259 664 OFFCURVE", "276 668 CURVE SMOOTH", "280 669 OFFCURVE", "285 668 OFFCURVE", "288 667 CURVE SMOOTH", "291 666 OFFCURVE", "293 664 OFFCURVE", "294 661 CURVE" ); } ); width = 134; } ); unicode = "2044,2215"; }, { glyphname = reversedsemicolon; layers = ( { components = ( { name = commareversed; }, { name = dot.2; transform = "{1, 0, 0, 1, 44, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 369; }, { components = ( { name = commareversed; }, { name = dot.2; transform = "{1, 0, 0, 1, 44, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 369; } ); unicode = 204F; }, { glyphname = dottedCircle; layers = ( { anchors = ( { name = MarkAbove; position = "{340, 591}"; }, { name = MarkBelow; position = "{340, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "556 354 OFFCURVE", "553 349 OFFCURVE", "549 345 CURVE SMOOTH", "545 341 OFFCURVE", "540 339 OFFCURVE", "534 339 CURVE SMOOTH", "528 339 OFFCURVE", "523 341 OFFCURVE", "519 345 CURVE SMOOTH", "515 349 OFFCURVE", "513 354 OFFCURVE", "513 360 CURVE SMOOTH", "513 366 OFFCURVE", "515 371 OFFCURVE", "519 375 CURVE SMOOTH", "523 379 OFFCURVE", "528 382 OFFCURVE", "534 382 CURVE SMOOTH", "540 382 OFFCURVE", "545 379 OFFCURVE", "549 375 CURVE SMOOTH", "553 371 OFFCURVE", "556 366 OFFCURVE", "556 360 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "466 414 OFFCURVE", "464 408 OFFCURVE", "460 404 CURVE SMOOTH", "456 400 OFFCURVE", "450 398 OFFCURVE", "445 398 CURVE SMOOTH", "439 398 OFFCURVE", "434 400 OFFCURVE", "430 404 CURVE SMOOTH", "426 408 OFFCURVE", "423 414 OFFCURVE", "423 420 CURVE SMOOTH", "423 426 OFFCURVE", "426 431 OFFCURVE", "430 435 CURVE SMOOTH", "434 439 OFFCURVE", "439 441 OFFCURVE", "445 441 CURVE SMOOTH", "451 441 OFFCURVE", "456 439 OFFCURVE", "460 435 CURVE SMOOTH", "464 431 OFFCURVE", "466 426 OFFCURVE", "466 420 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "615 265 OFFCURVE", "612 260 OFFCURVE", "608 256 CURVE SMOOTH", "604 252 OFFCURVE", "600 250 OFFCURVE", "594 250 CURVE SMOOTH", "588 250 OFFCURVE", "582 252 OFFCURVE", "578 256 CURVE SMOOTH", "574 260 OFFCURVE", "572 265 OFFCURVE", "572 271 CURVE SMOOTH", "572 276 OFFCURVE", "574 282 OFFCURVE", "578 286 CURVE SMOOTH", "582 290 OFFCURVE", "588 292 OFFCURVE", "594 292 CURVE SMOOTH", "600 292 OFFCURVE", "604 291 OFFCURVE", "608 287 CURVE SMOOTH", "612 283 OFFCURVE", "615 277 OFFCURVE", "615 271 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "362 435 OFFCURVE", "359 430 OFFCURVE", "355 426 CURVE SMOOTH", "351 422 OFFCURVE", "346 420 OFFCURVE", "340 420 CURVE SMOOTH", "334 420 OFFCURVE", "328 422 OFFCURVE", "324 426 CURVE SMOOTH", "320 430 OFFCURVE", "318 435 OFFCURVE", "318 441 CURVE SMOOTH", "318 447 OFFCURVE", "320 452 OFFCURVE", "324 456 CURVE SMOOTH", "328 460 OFFCURVE", "334 462 OFFCURVE", "340 462 CURVE SMOOTH", "346 462 OFFCURVE", "351 460 OFFCURVE", "355 456 CURVE SMOOTH", "359 452 OFFCURVE", "362 447 OFFCURVE", "362 441 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "636 160 OFFCURVE", "634 154 OFFCURVE", "630 150 CURVE SMOOTH", "626 146 OFFCURVE", "621 144 OFFCURVE", "615 144 CURVE SMOOTH", "609 144 OFFCURVE", "604 146 OFFCURVE", "600 150 CURVE SMOOTH", "596 154 OFFCURVE", "594 160 OFFCURVE", "594 166 CURVE SMOOTH", "594 172 OFFCURVE", "596 178 OFFCURVE", "600 182 CURVE SMOOTH", "604 186 OFFCURVE", "609 188 OFFCURVE", "615 188 CURVE SMOOTH", "621 188 OFFCURVE", "626 186 OFFCURVE", "630 182 CURVE SMOOTH", "634 178 OFFCURVE", "636 172 OFFCURVE", "636 166 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "256 414 OFFCURVE", "254 408 OFFCURVE", "250 404 CURVE SMOOTH", "246 400 OFFCURVE", "240 398 OFFCURVE", "234 398 CURVE SMOOTH", "229 398 OFFCURVE", "224 400 OFFCURVE", "220 404 CURVE SMOOTH", "216 408 OFFCURVE", "213 414 OFFCURVE", "213 420 CURVE SMOOTH", "213 426 OFFCURVE", "215 431 OFFCURVE", "219 435 CURVE SMOOTH", "223 439 OFFCURVE", "228 441 OFFCURVE", "234 441 CURVE SMOOTH", "240 441 OFFCURVE", "246 439 OFFCURVE", "250 435 CURVE SMOOTH", "254 431 OFFCURVE", "256 426 OFFCURVE", "256 420 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "615 55 OFFCURVE", "612 49 OFFCURVE", "608 45 CURVE SMOOTH", "604 41 OFFCURVE", "600 40 OFFCURVE", "594 40 CURVE SMOOTH", "588 40 OFFCURVE", "582 42 OFFCURVE", "578 46 CURVE SMOOTH", "574 50 OFFCURVE", "572 56 OFFCURVE", "572 61 CURVE SMOOTH", "572 67 OFFCURVE", "574 72 OFFCURVE", "578 76 CURVE SMOOTH", "582 80 OFFCURVE", "588 83 OFFCURVE", "594 83 CURVE SMOOTH", "600 83 OFFCURVE", "604 80 OFFCURVE", "608 76 CURVE SMOOTH", "612 72 OFFCURVE", "615 67 OFFCURVE", "615 61 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "167 354 OFFCURVE", "164 349 OFFCURVE", "160 345 CURVE SMOOTH", "156 341 OFFCURVE", "152 339 OFFCURVE", "146 339 CURVE SMOOTH", "140 339 OFFCURVE", "134 341 OFFCURVE", "130 345 CURVE SMOOTH", "126 349 OFFCURVE", "124 354 OFFCURVE", "124 360 CURVE SMOOTH", "124 366 OFFCURVE", "126 371 OFFCURVE", "130 375 CURVE SMOOTH", "134 379 OFFCURVE", "140 382 OFFCURVE", "146 382 CURVE SMOOTH", "152 382 OFFCURVE", "156 379 OFFCURVE", "160 375 CURVE SMOOTH", "164 371 OFFCURVE", "167 366 OFFCURVE", "167 360 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "556 -34 OFFCURVE", "553 -39 OFFCURVE", "549 -43 CURVE SMOOTH", "545 -47 OFFCURVE", "540 -50 OFFCURVE", "534 -50 CURVE SMOOTH", "528 -50 OFFCURVE", "523 -47 OFFCURVE", "519 -43 CURVE SMOOTH", "515 -39 OFFCURVE", "513 -34 OFFCURVE", "513 -28 CURVE SMOOTH", "513 -22 OFFCURVE", "515 -17 OFFCURVE", "519 -13 CURVE SMOOTH", "523 -9 OFFCURVE", "528 -7 OFFCURVE", "534 -7 CURVE SMOOTH", "540 -7 OFFCURVE", "545 -9 OFFCURVE", "549 -13 CURVE SMOOTH", "553 -17 OFFCURVE", "556 -22 OFFCURVE", "556 -28 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "108 265 OFFCURVE", "106 260 OFFCURVE", "102 256 CURVE SMOOTH", "98 252 OFFCURVE", "92 250 OFFCURVE", "86 250 CURVE SMOOTH", "80 250 OFFCURVE", "76 252 OFFCURVE", "72 256 CURVE SMOOTH", "68 260 OFFCURVE", "65 265 OFFCURVE", "65 271 CURVE SMOOTH", "65 277 OFFCURVE", "68 283 OFFCURVE", "72 287 CURVE SMOOTH", "76 291 OFFCURVE", "80 292 OFFCURVE", "86 292 CURVE SMOOTH", "92 292 OFFCURVE", "98 290 OFFCURVE", "102 286 CURVE SMOOTH", "106 282 OFFCURVE", "108 276 OFFCURVE", "108 271 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "466 -94 OFFCURVE", "464 -98 OFFCURVE", "460 -102 CURVE SMOOTH", "456 -106 OFFCURVE", "451 -108 OFFCURVE", "445 -108 CURVE SMOOTH", "439 -108 OFFCURVE", "434 -106 OFFCURVE", "430 -102 CURVE SMOOTH", "426 -98 OFFCURVE", "423 -94 OFFCURVE", "423 -88 CURVE SMOOTH", "423 -82 OFFCURVE", "426 -76 OFFCURVE", "430 -72 CURVE SMOOTH", "434 -68 OFFCURVE", "439 -66 OFFCURVE", "445 -66 CURVE SMOOTH", "450 -66 OFFCURVE", "456 -68 OFFCURVE", "460 -72 CURVE SMOOTH", "464 -76 OFFCURVE", "466 -82 OFFCURVE", "466 -88 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "86 160 OFFCURVE", "84 154 OFFCURVE", "80 150 CURVE SMOOTH", "76 146 OFFCURVE", "71 144 OFFCURVE", "65 144 CURVE SMOOTH", "58 144 OFFCURVE", "54 146 OFFCURVE", "50 150 CURVE SMOOTH", "46 154 OFFCURVE", "44 160 OFFCURVE", "44 166 CURVE SMOOTH", "44 172 OFFCURVE", "46 178 OFFCURVE", "50 182 CURVE SMOOTH", "54 186 OFFCURVE", "58 188 OFFCURVE", "65 188 CURVE SMOOTH", "71 188 OFFCURVE", "76 186 OFFCURVE", "80 182 CURVE SMOOTH", "84 178 OFFCURVE", "86 172 OFFCURVE", "86 166 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "362 -115 OFFCURVE", "359 -120 OFFCURVE", "355 -124 CURVE SMOOTH", "351 -128 OFFCURVE", "346 -130 OFFCURVE", "340 -130 CURVE SMOOTH", "334 -130 OFFCURVE", "328 -128 OFFCURVE", "324 -124 CURVE SMOOTH", "320 -120 OFFCURVE", "318 -115 OFFCURVE", "318 -108 CURVE SMOOTH", "318 -102 OFFCURVE", "320 -98 OFFCURVE", "324 -94 CURVE SMOOTH", "328 -90 OFFCURVE", "334 -88 OFFCURVE", "340 -88 CURVE SMOOTH", "346 -88 OFFCURVE", "351 -90 OFFCURVE", "355 -94 CURVE SMOOTH", "359 -98 OFFCURVE", "362 -102 OFFCURVE", "362 -108 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "108 56 OFFCURVE", "106 50 OFFCURVE", "102 46 CURVE SMOOTH", "98 42 OFFCURVE", "92 40 OFFCURVE", "86 40 CURVE SMOOTH", "80 40 OFFCURVE", "76 41 OFFCURVE", "72 45 CURVE SMOOTH", "68 49 OFFCURVE", "65 55 OFFCURVE", "65 61 CURVE SMOOTH", "65 67 OFFCURVE", "68 72 OFFCURVE", "72 76 CURVE SMOOTH", "76 80 OFFCURVE", "80 83 OFFCURVE", "86 83 CURVE SMOOTH", "92 83 OFFCURVE", "98 80 OFFCURVE", "102 76 CURVE SMOOTH", "106 72 OFFCURVE", "108 67 OFFCURVE", "108 61 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "256 -94 OFFCURVE", "254 -98 OFFCURVE", "250 -102 CURVE SMOOTH", "246 -106 OFFCURVE", "240 -108 OFFCURVE", "234 -108 CURVE SMOOTH", "228 -108 OFFCURVE", "223 -106 OFFCURVE", "219 -102 CURVE SMOOTH", "215 -98 OFFCURVE", "213 -94 OFFCURVE", "213 -88 CURVE SMOOTH", "213 -82 OFFCURVE", "216 -76 OFFCURVE", "220 -72 CURVE SMOOTH", "224 -68 OFFCURVE", "229 -66 OFFCURVE", "234 -66 CURVE SMOOTH", "240 -66 OFFCURVE", "246 -68 OFFCURVE", "250 -72 CURVE SMOOTH", "254 -76 OFFCURVE", "256 -82 OFFCURVE", "256 -88 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "167 -34 OFFCURVE", "164 -39 OFFCURVE", "160 -43 CURVE SMOOTH", "156 -47 OFFCURVE", "152 -50 OFFCURVE", "146 -50 CURVE SMOOTH", "140 -50 OFFCURVE", "134 -47 OFFCURVE", "130 -43 CURVE SMOOTH", "126 -39 OFFCURVE", "124 -34 OFFCURVE", "124 -28 CURVE SMOOTH", "124 -22 OFFCURVE", "126 -17 OFFCURVE", "130 -13 CURVE SMOOTH", "134 -9 OFFCURVE", "140 -7 OFFCURVE", "146 -7 CURVE SMOOTH", "152 -7 OFFCURVE", "156 -9 OFFCURVE", "160 -13 CURVE SMOOTH", "164 -17 OFFCURVE", "167 -22 OFFCURVE", "167 -28 CURVE SMOOTH" ); } ); width = 679; }, { anchors = ( { name = MarkAbove; position = "{340, 591}"; }, { name = MarkBelow; position = "{340, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "567 379 OFFCURVE", "570 370 OFFCURVE", "570 360 CURVE SMOOTH", "570 350 OFFCURVE", "567 342 OFFCURVE", "560 335 CURVE", "553 328 OFFCURVE", "544 325 OFFCURVE", "534 325 CURVE SMOOTH", "524 325 OFFCURVE", "516 328 OFFCURVE", "509 335 CURVE SMOOTH", "502 342 OFFCURVE", "499 350 OFFCURVE", "499 360 CURVE SMOOTH", "499 370 OFFCURVE", "502 379 OFFCURVE", "509 386 CURVE SMOOTH", "516 393 OFFCURVE", "524 396 OFFCURVE", "534 396 CURVE SMOOTH", "544 396 OFFCURVE", "553 393 OFFCURVE", "560 386 CURVE" ); }, { closed = 1; nodes = ( "456 455 OFFCURVE", "464 451 OFFCURVE", "471 444 CURVE SMOOTH", "478 437 OFFCURVE", "481 429 OFFCURVE", "481 419 CURVE SMOOTH", "481 409 OFFCURVE", "477 401 OFFCURVE", "470 394 CURVE", "463 387 OFFCURVE", "454 384 OFFCURVE", "444 384 CURVE SMOOTH", "434 384 OFFCURVE", "426 387 OFFCURVE", "419 394 CURVE SMOOTH", "412 401 OFFCURVE", "409 410 OFFCURVE", "409 420 CURVE SMOOTH", "409 430 OFFCURVE", "412 438 OFFCURVE", "419 445 CURVE SMOOTH", "426 452 OFFCURVE", "436 455 OFFCURVE", "446 455 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "561 253 OFFCURVE", "558 261 OFFCURVE", "558 271 CURVE SMOOTH", "558 281 OFFCURVE", "561 289 OFFCURVE", "568 296 CURVE SMOOTH", "575 303 OFFCURVE", "583 307 OFFCURVE", "593 307 CURVE SMOOTH", "603 307 OFFCURVE", "612 304 OFFCURVE", "619 297 CURVE SMOOTH", "626 290 OFFCURVE", "629 281 OFFCURVE", "629 271 CURVE SMOOTH", "629 261 OFFCURVE", "625 252 OFFCURVE", "618 245 CURVE SMOOTH", "611 238 OFFCURVE", "603 235 OFFCURVE", "593 235 CURVE SMOOTH", "583 235 OFFCURVE", "575 239 OFFCURVE", "568 246 CURVE" ); }, { closed = 1; nodes = ( "303 451 OFFCURVE", "307 460 OFFCURVE", "314 467 CURVE SMOOTH", "321 474 OFFCURVE", "330 476 OFFCURVE", "340 476 CURVE SMOOTH", "350 476 OFFCURVE", "359 473 OFFCURVE", "366 466 CURVE SMOOTH", "373 459 OFFCURVE", "376 451 OFFCURVE", "376 441 CURVE SMOOTH", "376 431 OFFCURVE", "373 423 OFFCURVE", "366 416 CURVE", "359 409 OFFCURVE", "350 406 OFFCURVE", "340 406 CURVE SMOOTH", "330 406 OFFCURVE", "321 409 OFFCURVE", "314 416 CURVE SMOOTH", "307 423 OFFCURVE", "303 431 OFFCURVE", "303 441 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "625 202 OFFCURVE", "633 198 OFFCURVE", "640 191 CURVE SMOOTH", "647 184 OFFCURVE", "650 176 OFFCURVE", "650 166 CURVE SMOOTH", "650 156 OFFCURVE", "647 147 OFFCURVE", "640 140 CURVE SMOOTH", "633 133 OFFCURVE", "625 130 OFFCURVE", "615 130 CURVE SMOOTH", "605 130 OFFCURVE", "596 133 OFFCURVE", "589 140 CURVE", "582 147 OFFCURVE", "580 156 OFFCURVE", "580 166 CURVE SMOOTH", "580 176 OFFCURVE", "583 185 OFFCURVE", "590 192 CURVE SMOOTH", "597 199 OFFCURVE", "605 202 OFFCURVE", "615 202 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "267 438 OFFCURVE", "271 429 OFFCURVE", "271 419 CURVE SMOOTH", "271 409 OFFCURVE", "267 401 OFFCURVE", "260 394 CURVE SMOOTH", "253 387 OFFCURVE", "245 384 OFFCURVE", "235 384 CURVE SMOOTH", "225 384 OFFCURVE", "217 387 OFFCURVE", "210 394 CURVE SMOOTH", "203 401 OFFCURVE", "199 409 OFFCURVE", "199 419 CURVE SMOOTH", "199 429 OFFCURVE", "202 438 OFFCURVE", "209 445 CURVE SMOOTH", "216 452 OFFCURVE", "224 455 OFFCURVE", "234 455 CURVE SMOOTH", "244 455 OFFCURVE", "253 452 OFFCURVE", "260 445 CURVE" ); }, { closed = 1; nodes = ( "626 79 OFFCURVE", "629 70 OFFCURVE", "629 60 CURVE SMOOTH", "629 50 OFFCURVE", "625 42 OFFCURVE", "618 35 CURVE SMOOTH", "611 28 OFFCURVE", "603 25 OFFCURVE", "593 25 CURVE SMOOTH", "583 25 OFFCURVE", "574 29 OFFCURVE", "567 36 CURVE", "560 43 OFFCURVE", "557 52 OFFCURVE", "557 62 CURVE SMOOTH", "557 72 OFFCURVE", "561 79 OFFCURVE", "568 86 CURVE SMOOTH", "575 93 OFFCURVE", "583 97 OFFCURVE", "593 97 CURVE SMOOTH", "603 97 OFFCURVE", "612 93 OFFCURVE", "619 86 CURVE" ); }, { closed = 1; nodes = ( "178 379 OFFCURVE", "181 370 OFFCURVE", "181 360 CURVE SMOOTH", "181 350 OFFCURVE", "177 342 OFFCURVE", "170 335 CURVE SMOOTH", "163 328 OFFCURVE", "156 325 OFFCURVE", "146 325 CURVE SMOOTH", "136 325 OFFCURVE", "127 328 OFFCURVE", "120 335 CURVE SMOOTH", "113 342 OFFCURVE", "110 351 OFFCURVE", "110 361 CURVE SMOOTH", "110 371 OFFCURVE", "113 379 OFFCURVE", "120 386 CURVE SMOOTH", "127 393 OFFCURVE", "136 396 OFFCURVE", "146 396 CURVE SMOOTH", "156 396 OFFCURVE", "164 393 OFFCURVE", "171 386 CURVE" ); }, { closed = 1; nodes = ( "516 4 OFFCURVE", "524 7 OFFCURVE", "534 7 CURVE SMOOTH", "544 7 OFFCURVE", "553 4 OFFCURVE", "560 -3 CURVE SMOOTH", "567 -10 OFFCURVE", "570 -19 OFFCURVE", "570 -29 CURVE SMOOTH", "570 -39 OFFCURVE", "566 -47 OFFCURVE", "559 -54 CURVE SMOOTH", "552 -61 OFFCURVE", "544 -64 OFFCURVE", "534 -64 CURVE SMOOTH", "524 -64 OFFCURVE", "516 -61 OFFCURVE", "509 -54 CURVE", "502 -47 OFFCURVE", "499 -38 OFFCURVE", "499 -28 CURVE SMOOTH", "499 -18 OFFCURVE", "502 -10 OFFCURVE", "509 -3 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "119 289 OFFCURVE", "122 280 OFFCURVE", "122 270 CURVE SMOOTH", "122 260 OFFCURVE", "119 253 OFFCURVE", "112 246 CURVE SMOOTH", "105 239 OFFCURVE", "96 235 OFFCURVE", "86 235 CURVE SMOOTH", "76 235 OFFCURVE", "68 239 OFFCURVE", "61 246 CURVE", "54 253 OFFCURVE", "51 262 OFFCURVE", "51 272 CURVE SMOOTH", "51 282 OFFCURVE", "55 290 OFFCURVE", "62 297 CURVE", "69 304 OFFCURVE", "77 307 OFFCURVE", "87 307 CURVE SMOOTH", "97 307 OFFCURVE", "105 303 OFFCURVE", "112 296 CURVE" ); }, { closed = 1; nodes = ( "426 -55 OFFCURVE", "435 -52 OFFCURVE", "445 -52 CURVE SMOOTH", "455 -52 OFFCURVE", "463 -55 OFFCURVE", "470 -62 CURVE SMOOTH", "477 -69 OFFCURVE", "481 -77 OFFCURVE", "481 -87 CURVE SMOOTH", "481 -97 OFFCURVE", "478 -106 OFFCURVE", "471 -113 CURVE SMOOTH", "464 -120 OFFCURVE", "456 -123 OFFCURVE", "446 -123 CURVE SMOOTH", "436 -123 OFFCURVE", "426 -119 OFFCURVE", "419 -112 CURVE SMOOTH", "412 -105 OFFCURVE", "409 -97 OFFCURVE", "409 -87 CURVE SMOOTH", "409 -77 OFFCURVE", "412 -69 OFFCURVE", "419 -62 CURVE" ); }, { closed = 1; nodes = ( "97 185 OFFCURVE", "100 176 OFFCURVE", "100 166 CURVE SMOOTH", "100 156 OFFCURVE", "97 147 OFFCURVE", "90 140 CURVE SMOOTH", "83 133 OFFCURVE", "75 130 OFFCURVE", "65 130 CURVE SMOOTH", "55 130 OFFCURVE", "46 134 OFFCURVE", "39 141 CURVE SMOOTH", "32 148 OFFCURVE", "30 156 OFFCURVE", "30 166 CURVE SMOOTH", "30 176 OFFCURVE", "33 185 OFFCURVE", "40 192 CURVE SMOOTH", "47 199 OFFCURVE", "55 202 OFFCURVE", "65 202 CURVE SMOOTH", "75 202 OFFCURVE", "83 199 OFFCURVE", "90 192 CURVE" ); }, { closed = 1; nodes = ( "321 -76 OFFCURVE", "330 -74 OFFCURVE", "340 -74 CURVE SMOOTH", "350 -74 OFFCURVE", "359 -77 OFFCURVE", "366 -84 CURVE SMOOTH", "373 -91 OFFCURVE", "376 -99 OFFCURVE", "376 -109 CURVE SMOOTH", "376 -119 OFFCURVE", "372 -128 OFFCURVE", "365 -135 CURVE SMOOTH", "358 -142 OFFCURVE", "350 -144 OFFCURVE", "340 -144 CURVE SMOOTH", "330 -144 OFFCURVE", "321 -141 OFFCURVE", "314 -134 CURVE SMOOTH", "307 -127 OFFCURVE", "303 -119 OFFCURVE", "303 -109 CURVE SMOOTH", "303 -99 OFFCURVE", "307 -90 OFFCURVE", "314 -83 CURVE" ); }, { closed = 1; nodes = ( "119 79 OFFCURVE", "122 71 OFFCURVE", "122 61 CURVE SMOOTH", "122 51 OFFCURVE", "119 43 OFFCURVE", "112 36 CURVE SMOOTH", "105 29 OFFCURVE", "97 25 OFFCURVE", "87 25 CURVE SMOOTH", "77 25 OFFCURVE", "68 28 OFFCURVE", "61 35 CURVE SMOOTH", "54 42 OFFCURVE", "51 51 OFFCURVE", "51 61 CURVE SMOOTH", "51 71 OFFCURVE", "54 79 OFFCURVE", "61 86 CURVE SMOOTH", "68 93 OFFCURVE", "76 97 OFFCURVE", "86 97 CURVE SMOOTH", "96 97 OFFCURVE", "105 93 OFFCURVE", "112 86 CURVE" ); }, { closed = 1; nodes = ( "267 -69 OFFCURVE", "271 -78 OFFCURVE", "271 -88 CURVE SMOOTH", "271 -98 OFFCURVE", "267 -106 OFFCURVE", "260 -113 CURVE", "253 -120 OFFCURVE", "244 -123 OFFCURVE", "234 -123 CURVE SMOOTH", "224 -123 OFFCURVE", "215 -119 OFFCURVE", "208 -112 CURVE", "201 -105 OFFCURVE", "199 -97 OFFCURVE", "199 -87 CURVE SMOOTH", "199 -77 OFFCURVE", "203 -69 OFFCURVE", "210 -62 CURVE", "217 -55 OFFCURVE", "226 -52 OFFCURVE", "235 -52 CURVE SMOOTH", "244 -52 OFFCURVE", "253 -55 OFFCURVE", "260 -62 CURVE" ); }, { closed = 1; nodes = ( "156 7 OFFCURVE", "164 4 OFFCURVE", "171 -3 CURVE SMOOTH", "178 -10 OFFCURVE", "181 -18 OFFCURVE", "181 -28 CURVE SMOOTH", "181 -38 OFFCURVE", "177 -47 OFFCURVE", "170 -54 CURVE SMOOTH", "163 -61 OFFCURVE", "155 -64 OFFCURVE", "145 -64 CURVE SMOOTH", "135 -64 OFFCURVE", "127 -60 OFFCURVE", "120 -53 CURVE SMOOTH", "113 -46 OFFCURVE", "110 -38 OFFCURVE", "110 -28 CURVE SMOOTH", "110 -18 OFFCURVE", "113 -10 OFFCURVE", "120 -3 CURVE", "127 4 OFFCURVE", "136 7 OFFCURVE", "146 7 CURVE SMOOTH" ); } ); width = 679; } ); unicode = 25CC; }, { glyphname = commareversed; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "186 -216.952 OFFCURVE", "165 -191.952 OFFCURVE", "141 -154.952 CURVE SMOOTH", "117 -117.952 OFFCURVE", "104 -78.952 OFFCURVE", "100 -38.952 CURVE SMOOTH", "93 49.048 OFFCURVE", "109 108.048 OFFCURVE", "151 141.048 CURVE SMOOTH", "166 152.048 OFFCURVE", "186 158.048 OFFCURVE", "211 159.048 CURVE SMOOTH", "232 160.048 OFFCURVE", "251 152.048 OFFCURVE", "267 137.048 CURVE SMOOTH", "283 122.048 OFFCURVE", "291 104.048 OFFCURVE", "291 83.048 CURVE SMOOTH", "291 62.048 OFFCURVE", "284 45.048 OFFCURVE", "269 30.048 CURVE SMOOTH", "254 15.048 OFFCURVE", "236 7.048 OFFCURVE", "215 7.048 CURVE SMOOTH", "191 7.048 OFFCURVE", "171 16.048 OFFCURVE", "156 35.048 CURVE SMOOTH", "151 40.048 OFFCURVE", "148 39.048 OFFCURVE", "145 31.048 CURVE SMOOTH", "119 -40.952 OFFCURVE", "147 -119.952 OFFCURVE", "229 -204.952 CURVE SMOOTH", "238 -213.952 OFFCURVE", "240 -221.952 OFFCURVE", "233 -229.952 CURVE SMOOTH", "226 -237.952 OFFCURVE", "217 -237.952 OFFCURVE", "206 -230.952 CURVE SMOOTH" ); } ); width = 369; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "207 -249.952 OFFCURVE", "217 -251.952 OFFCURVE", "225 -249.952 CURVE SMOOTH", "241 -245.952 OFFCURVE", "249 -236.952 OFFCURVE", "251 -222.952 CURVE", "252 -212.952 OFFCURVE", "248 -202.952 OFFCURVE", "240 -194.952 CURVE SMOOTH", "166 -117.952 OFFCURVE", "137 -46.952 OFFCURVE", "155 16.048 CURVE", "172 1.048 OFFCURVE", "193 -6.952 OFFCURVE", "217 -6.952 CURVE SMOOTH", "241 -6.952 OFFCURVE", "261 2.048 OFFCURVE", "279 20.048 CURVE SMOOTH", "297 38.048 OFFCURVE", "305 58.048 OFFCURVE", "305 83.048 CURVE SMOOTH", "305 108.048 OFFCURVE", "295 130.048 OFFCURVE", "276 148.048 CURVE", "257 166.048 OFFCURVE", "235 175.048 OFFCURVE", "208 174.048 CURVE SMOOTH", "181 173.048 OFFCURVE", "160 166.048 OFFCURVE", "143 153.048 CURVE SMOOTH", "97 117.048 OFFCURVE", "78 53.048 OFFCURVE", "85 -39.952 CURVE", "89 -81.952 OFFCURVE", "103 -122.952 OFFCURVE", "128 -161.952 CURVE SMOOTH", "153 -200.952 OFFCURVE", "176 -227.952 OFFCURVE", "197 -242.952 CURVE" ); } ); width = 369; } ); unicode = 2E41; }, { glyphname = uniFB51; layers = ( { components = ( { name = "alefWasla-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { components = ( { name = "alefWasla-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); unicode = FB51; }, { glyphname = uniFB53; layers = ( { components = ( { name = "beeh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "beeh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FB53; }, { glyphname = uniFB54; layers = ( { components = ( { name = "beeh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "beeh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FB54; }, { glyphname = uniFB55; layers = ( { components = ( { name = "beeh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "beeh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FB55; }, { glyphname = uniFB57; layers = ( { components = ( { name = "peh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "peh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FB57; }, { glyphname = uniFB58; layers = ( { components = ( { name = "peh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "peh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FB58; }, { glyphname = uniFB59; layers = ( { components = ( { name = "peh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "peh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FB59; }, { glyphname = uniFB5B; layers = ( { components = ( { name = "beheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "beheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FB5B; }, { glyphname = uniFB5C; layers = ( { components = ( { name = "beheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "beheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FB5C; }, { glyphname = uniFB5D; layers = ( { components = ( { name = "beheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "beheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FB5D; }, { glyphname = uniFB5F; layers = ( { components = ( { name = "tteheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "tteheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FB5F; }, { glyphname = uniFB60; layers = ( { components = ( { name = "tteheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "tteheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FB60; }, { glyphname = uniFB61; layers = ( { components = ( { name = "tteheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "tteheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FB61; }, { glyphname = uniFB63; layers = ( { components = ( { name = "teheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "teheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FB63; }, { glyphname = uniFB64; layers = ( { components = ( { name = "teheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "teheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FB64; }, { glyphname = uniFB65; layers = ( { components = ( { name = "teheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "teheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FB65; }, { glyphname = uniFB67; layers = ( { components = ( { name = "tteh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "tteh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FB67; }, { glyphname = uniFB68; layers = ( { components = ( { name = "tteh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "tteh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FB68; }, { glyphname = uniFB69; layers = ( { components = ( { name = "tteh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "tteh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FB69; }, { glyphname = uniFB6B; layers = ( { components = ( { name = "veh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { components = ( { name = "veh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); unicode = FB6B; }, { glyphname = uniFB6C; layers = ( { components = ( { name = "veh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { components = ( { name = "veh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); unicode = FB6C; }, { glyphname = uniFB6D; layers = ( { components = ( { name = "veh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { components = ( { name = "veh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); unicode = FB6D; }, { glyphname = uniFB6F; layers = ( { components = ( { name = "peheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { components = ( { name = "peheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); unicode = FB6F; }, { glyphname = uniFB70; layers = ( { components = ( { name = "peheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { components = ( { name = "peheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); unicode = FB70; }, { glyphname = uniFB71; layers = ( { components = ( { name = "peheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { components = ( { name = "peheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); unicode = FB71; }, { glyphname = uniFB73; layers = ( { components = ( { name = "dyeh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "dyeh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FB73; }, { glyphname = uniFB74; layers = ( { components = ( { name = "dyeh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "dyeh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FB74; }, { glyphname = uniFB75; layers = ( { components = ( { name = "dyeh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "dyeh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FB75; }, { glyphname = uniFB77; layers = ( { components = ( { name = "nyeh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "nyeh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FB77; }, { glyphname = uniFB78; layers = ( { components = ( { name = "nyeh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "nyeh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FB78; }, { glyphname = uniFB79; layers = ( { components = ( { name = "nyeh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "nyeh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FB79; }, { glyphname = uniFB7B; layers = ( { components = ( { name = "tcheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "tcheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FB7B; }, { glyphname = uniFB7C; layers = ( { components = ( { name = "tcheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "tcheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FB7C; }, { glyphname = uniFB7D; layers = ( { components = ( { name = "tcheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "tcheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FB7D; }, { glyphname = uniFB7F; layers = ( { components = ( { name = "tcheheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "tcheheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FB7F; }, { glyphname = uniFB80; layers = ( { components = ( { name = "tcheheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "tcheheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FB80; }, { glyphname = uniFB81; layers = ( { components = ( { name = "tcheheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "tcheheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FB81; }, { glyphname = uniFB83; layers = ( { components = ( { name = "ddahal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "ddahal-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FB83; }, { glyphname = uniFB85; layers = ( { components = ( { name = "dahal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "dahal-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FB85; }, { glyphname = uniFB87; layers = ( { components = ( { name = "dul-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "dul-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FB87; }, { glyphname = uniFB89; layers = ( { components = ( { name = "ddal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "ddal-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FB89; }, { glyphname = uniFB8B; layers = ( { components = ( { name = "jeh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { components = ( { name = "jeh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); unicode = FB8B; }, { glyphname = uniFB8D; layers = ( { components = ( { name = "rreh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { components = ( { name = "rreh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); unicode = FB8D; }, { glyphname = uniFB8F; layers = ( { components = ( { name = "keheh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { components = ( { name = "keheh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); unicode = FB8F; }, { glyphname = uniFB90; layers = ( { components = ( { name = "keheh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { components = ( { name = "keheh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); unicode = FB90; }, { glyphname = uniFB91; layers = ( { components = ( { name = "keheh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { components = ( { name = "keheh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); unicode = FB91; }, { glyphname = uniFB93; layers = ( { components = ( { name = "gaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { components = ( { name = "gaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); unicode = FB93; }, { glyphname = uniFB94; layers = ( { components = ( { name = "gaf-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { components = ( { name = "gaf-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); unicode = FB94; }, { glyphname = uniFB95; layers = ( { components = ( { name = "gaf-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { components = ( { name = "gaf-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); unicode = FB95; }, { glyphname = uniFB97; layers = ( { components = ( { name = "gueh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { components = ( { name = "gueh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); unicode = FB97; }, { glyphname = uniFB98; layers = ( { components = ( { name = "gueh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { components = ( { name = "gueh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); unicode = FB98; }, { glyphname = uniFB99; layers = ( { components = ( { name = "gueh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { components = ( { name = "gueh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); unicode = FB99; }, { glyphname = uniFB9B; layers = ( { components = ( { name = "ngoeh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { components = ( { name = "ngoeh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); unicode = FB9B; }, { glyphname = uniFB9C; layers = ( { components = ( { name = "ngoeh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { components = ( { name = "ngoeh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); unicode = FB9C; }, { glyphname = uniFB9D; layers = ( { components = ( { name = "ngoeh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { components = ( { name = "ngoeh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); unicode = FB9D; }, { glyphname = uniFB9F; layers = ( { components = ( { name = "noonghunna-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { components = ( { name = "noonghunna-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); unicode = FB9F; }, { glyphname = uniFBA1; layers = ( { components = ( { name = "rnoon-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { components = ( { name = "rnoon-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); unicode = FBA1; }, { glyphname = uniFBA2; layers = ( { components = ( { name = "rnoon-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "rnoon-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FBA2; }, { glyphname = uniFBA3; layers = ( { components = ( { name = "rnoon-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "rnoon-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FBA3; }, { glyphname = uniFBA5; layers = ( { components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 195, 73}"; }, { name = "ae-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 195, 73}"; }, { name = "ae-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); unicode = FBA5; }, { glyphname = uniFBA7; layers = ( { components = ( { name = "hehgoal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 408; }, { components = ( { name = "hehgoal-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 408; } ); unicode = FBA7; }, { glyphname = uniFBA8; layers = ( { components = ( { name = "hehgoal-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { components = ( { name = "hehgoal-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = FBA8; }, { glyphname = uniFBA9; layers = ( { components = ( { name = "hehgoal-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { components = ( { name = "hehgoal-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 460; } ); unicode = FBA9; }, { glyphname = uniFBAB; layers = ( { components = ( { name = "hehDoachashmee-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { components = ( { name = "hehDoachashmee-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); unicode = FBAB; }, { glyphname = uniFBAC; layers = ( { components = ( { name = "hehDoachashmee-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { components = ( { name = "hehDoachashmee-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = FBAC; }, { glyphname = uniFBAD; layers = ( { components = ( { name = "hehDoachashmee-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { components = ( { name = "hehDoachashmee-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); unicode = FBAD; }, { glyphname = uniFBAF; layers = ( { components = ( { name = "yehbarree-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 571; }, { components = ( { name = "yehbarree-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 571; } ); unicode = FBAF; }, { glyphname = uniFBB1; layers = ( { components = ( { name = "yehbarree-ar.fina.PostToothFina"; }, { name = "yehHamzaabove-ar.medi.YaaBari"; transform = "{1, 0, 0, 1, 312, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 517; }, { components = ( { name = "yehbarree-ar.fina.PostToothFina"; }, { name = "yehHamzaabove-ar.medi.YaaBari"; transform = "{1, 0, 0, 1, 312, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 517; } ); unicode = FBB1; }, { glyphname = "dotaboveSymbol-ar"; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 90, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 180; }, { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 90, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 180; } ); unicode = FBB2; }, { glyphname = "dotbelowSymbol-ar"; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 90, -342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 180; }, { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 90, -342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 180; } ); unicode = FBB3; }, { glyphname = "twodotshorizontalaboveSymbol-ar"; layers = ( { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 145, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 145, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); unicode = FBB4; }, { glyphname = "twodotshorizontalbelowSymbol-ar"; layers = ( { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 145, -342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 145, -342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); unicode = FBB5; }, { glyphname = "threedotsupaboveSymbol-ar"; layers = ( { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 139, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 139, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); unicode = FBB6; }, { glyphname = "threedotsupbelowSymbol-ar"; layers = ( { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 139, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 139, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); unicode = FBB7; }, { glyphname = "threedotsdownaboveSymbol-ar"; layers = ( { components = ( { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 137, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { components = ( { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 137, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); unicode = FBB8; }, { glyphname = "threedotsdownbelowSymbol-ar"; layers = ( { components = ( { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 137, -376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { components = ( { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 137, -376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); unicode = FBB9; }, { glyphname = "fourdotsaboveSymbol-ar"; layers = ( { components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 160, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 160, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); unicode = FBBA; }, { glyphname = "fourdotsbelowSymbol-ar"; layers = ( { components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 160, -391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 160, -391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); unicode = FBBB; }, { glyphname = "doubleverticalbarbelowSymbol-ar"; layers = ( { components = ( { name = twostrokes.below; transform = "{1, 0, 0, 1, 82, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 224; }, { components = ( { name = twostrokes.below; transform = "{1, 0, 0, 1, 82, -293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 224; } ); unicode = FBBC; }, { glyphname = "twodotsverticalaboveSymbol-ar"; layers = ( { components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 110, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 110, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); unicode = FBBD; }, { glyphname = "twodotsverticalbelowSymbol-ar"; layers = ( { components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 110, -342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 110, -342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); unicode = FBBE; }, { glyphname = "ringSymbol-ar"; layers = ( { components = ( { name = ring.below; transform = "{1, 0, 0, 1, 88, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { components = ( { name = ring.below; transform = "{1, 0, 0, 1, 88, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); unicode = FBBF; }, { glyphname = uniFBC0; layers = ( { components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 161, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 321; }, { components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 161, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 321; } ); unicode = FBC0; }, { glyphname = "tahbelowSymbol-ar"; layers = ( { components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 161, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 321; }, { components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 161, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 321; } ); unicode = FBC1; }, { glyphname = uniFBD4; layers = ( { components = ( { name = "ng-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { components = ( { name = "ng-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); unicode = FBD4; }, { glyphname = uniFBD5; layers = ( { components = ( { name = "ng-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { components = ( { name = "ng-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); unicode = FBD5; }, { glyphname = uniFBD6; layers = ( { components = ( { name = "ng-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { components = ( { name = "ng-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); unicode = FBD6; }, { glyphname = uniFBD8; layers = ( { components = ( { name = "u-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "u-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FBD8; }, { glyphname = uniFBDA; layers = ( { components = ( { name = "oe-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "oe-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FBDA; }, { glyphname = uniFBDC; layers = ( { components = ( { name = "yu-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "yu-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FBDC; }, { glyphname = uniFBDF; layers = ( { components = ( { name = "ve-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "ve-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FBDF; }, { glyphname = uniFBE1; layers = ( { components = ( { name = "kirghizoe-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "kirghizoe-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FBE1; }, { glyphname = uniFBE3; layers = ( { components = ( { name = "kirghizyu-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "kirghizyu-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FBE3; }, { glyphname = uniFBE5; layers = ( { components = ( { name = "e-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "e-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = FBE5; }, { glyphname = uniFBE6; layers = ( { components = ( { name = "e-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "e-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FBE6; }, { glyphname = uniFBE7; layers = ( { components = ( { name = "e-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "e-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FBE7; }, { glyphname = uniFBE8; layers = ( { components = ( { name = "alefMaksura-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "alefMaksura-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FBE8; }, { glyphname = uniFBE9; layers = ( { components = ( { name = "alefMaksura-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "alefMaksura-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FBE9; }, { glyphname = uniFBEA; layers = ( { components = ( { name = "alef-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 419; }, { components = ( { name = "alef-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 419; } ); unicode = FBEA; subCategory = ""; }, { glyphname = uniFBEB; layers = ( { components = ( { name = "alef-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { components = ( { name = "alef-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); unicode = FBEB; subCategory = ""; }, { glyphname = uniFBEC; layers = ( { components = ( { name = "ae-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 379, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 569; }, { components = ( { name = "ae-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 379, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 569; } ); unicode = FBEC; subCategory = ""; }, { glyphname = uniFBED; layers = ( { components = ( { name = "ae-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 379, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 623; }, { components = ( { name = "ae-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 379, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 623; } ); unicode = FBED; subCategory = ""; }, { glyphname = uniFBEE; layers = ( { components = ( { name = "waw-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 536; }, { components = ( { name = "waw-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 536; } ); unicode = FBEE; subCategory = ""; }, { glyphname = uniFBEF; layers = ( { components = ( { name = "waw-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 589; }, { components = ( { name = "waw-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 589; } ); unicode = FBEF; subCategory = ""; }, { glyphname = uniFBF0; layers = ( { components = ( { name = "u-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 536; }, { components = ( { name = "u-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 536; } ); unicode = FBF0; subCategory = ""; }, { glyphname = uniFBF1; layers = ( { components = ( { name = "u-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 589; }, { components = ( { name = "u-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 589; } ); unicode = FBF1; subCategory = ""; }, { glyphname = uniFBF2; layers = ( { components = ( { name = "oe-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 536; }, { components = ( { name = "oe-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 536; } ); unicode = FBF2; subCategory = ""; }, { glyphname = uniFBF3; layers = ( { components = ( { name = "oe-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 589; }, { components = ( { name = "oe-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 589; } ); unicode = FBF3; subCategory = ""; }, { glyphname = uniFBF4; layers = ( { components = ( { name = "yu-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 536; }, { components = ( { name = "yu-ar.fina"; }, { name = "yehHamzaabove-ar.init"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 536; } ); unicode = FBF4; subCategory = ""; }, { glyphname = uniFBF5; layers = ( { components = ( { name = "yu-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 589; }, { components = ( { name = "yu-ar.fina"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 346, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 589; } ); unicode = FBF5; subCategory = ""; }, { glyphname = uniFBF6; layers = ( { components = ( { name = "e-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "e-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FBF6; subCategory = ""; }, { glyphname = uniFBF7; layers = ( { components = ( { name = "e-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "e-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FBF7; subCategory = ""; }, { glyphname = uniFBF8; layers = ( { components = ( { name = "e-ar.medi.BaaBaaInit"; }, { name = "yehHamzaabove-ar.init.BaaBaaIsol"; transform = "{1, 0, 0, 1, 168, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "e-ar.medi.BaaBaaInit"; }, { name = "yehHamzaabove-ar.init.BaaBaaIsol"; transform = "{1, 0, 0, 1, 168, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FBF8; subCategory = ""; }, { glyphname = uniFBF9; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FBF9; subCategory = ""; }, { glyphname = uniFBFA; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FBFA; subCategory = ""; }, { glyphname = uniFBFB; layers = ( { components = ( { name = "alefMaksura-ar.medi.BaaBaaInit"; }, { name = "yehHamzaabove-ar.init.BaaBaaIsol"; transform = "{1, 0, 0, 1, 168, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "alefMaksura-ar.medi.BaaBaaInit"; }, { name = "yehHamzaabove-ar.init.BaaBaaIsol"; transform = "{1, 0, 0, 1, 168, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FBFB; subCategory = ""; }, { glyphname = uniFBFD; layers = ( { components = ( { name = "yehFarsi-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "yehFarsi-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = FBFD; }, { glyphname = uniFBFE; layers = ( { components = ( { name = "yehFarsi-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "yehFarsi-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FBFE; }, { glyphname = uniFBFF; layers = ( { components = ( { name = "yehFarsi-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "yehFarsi-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FBFF; }, { glyphname = uniFC00; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "yehHamzaabove-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "yehHamzaabove-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC00; subCategory = ""; }, { glyphname = uniFC01; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "yehHamzaabove-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "yehHamzaabove-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC01; subCategory = ""; }, { glyphname = uniFC02; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "yehHamzaabove-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 594; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "yehHamzaabove-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 594; } ); unicode = FC02; subCategory = ""; }, { glyphname = uniFC03; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC03; subCategory = ""; }, { glyphname = uniFC04; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "yehHamzaabove-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC04; subCategory = ""; }, { glyphname = uniFC05; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "beh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "beh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC05; subCategory = ""; }, { glyphname = uniFC06; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "beh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "beh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC06; subCategory = ""; }, { glyphname = uniFC07; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "beh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "beh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC07; subCategory = ""; }, { glyphname = uniFC08; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "beh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 594; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "beh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 594; } ); unicode = FC08; subCategory = ""; }, { glyphname = uniFC09; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "beh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "beh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC09; subCategory = ""; }, { glyphname = uniFC0A; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "beh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "beh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC0A; subCategory = ""; }, { glyphname = uniFC0B; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "teh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "teh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC0B; subCategory = ""; }, { glyphname = uniFC0C; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "teh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "teh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC0C; subCategory = ""; }, { glyphname = uniFC0D; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "teh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "teh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC0D; subCategory = ""; }, { glyphname = uniFC0E; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "teh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 594; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "teh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 594; } ); unicode = FC0E; subCategory = ""; }, { glyphname = uniFC0F; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "teh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "teh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC0F; subCategory = ""; }, { glyphname = uniFC10; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "teh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "teh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC10; subCategory = ""; }, { glyphname = uniFC11; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "theh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "theh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC11; subCategory = ""; }, { glyphname = uniFC12; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "theh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 594; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "theh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 594; } ); unicode = FC12; subCategory = ""; }, { glyphname = uniFC13; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "theh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "theh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC13; subCategory = ""; }, { glyphname = uniFC14; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "theh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "theh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC14; subCategory = ""; }, { glyphname = uniFC15; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "jeem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 835; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "jeem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 835; } ); unicode = FC15; subCategory = ""; }, { glyphname = uniFC16; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1178; }, { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1178; } ); unicode = FC16; subCategory = ""; }, { glyphname = uniFC17; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "hah-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 835; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "hah-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 835; } ); unicode = FC17; subCategory = ""; }, { glyphname = uniFC18; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "hah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1178; }, { components = ( { name = "meem-ar.fina"; }, { name = "hah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1178; } ); unicode = FC18; subCategory = ""; }, { glyphname = uniFC19; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "khah-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 835; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "khah-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 835; } ); unicode = FC19; subCategory = ""; }, { glyphname = uniFC1A; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "khah-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 835; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "khah-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 835; } ); unicode = FC1A; subCategory = ""; }, { glyphname = uniFC1B; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1178; }, { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1178; } ); unicode = FC1B; subCategory = ""; }, { glyphname = uniFC1C; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "seen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "seen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FC1C; subCategory = ""; }, { glyphname = uniFC1D; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "seen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "seen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FC1D; subCategory = ""; }, { glyphname = uniFC1E; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "seen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "seen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FC1E; subCategory = ""; }, { glyphname = uniFC1F; layers = ( { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 910; }, { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 910; } ); unicode = FC1F; subCategory = ""; }, { glyphname = uniFC20; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "sad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 953; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "sad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 953; } ); unicode = FC20; subCategory = ""; }, { glyphname = uniFC21; layers = ( { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1098; }, { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1098; } ); unicode = FC21; subCategory = ""; }, { glyphname = uniFC22; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "dad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 953; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "dad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 953; } ); unicode = FC22; subCategory = ""; }, { glyphname = uniFC23; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "dad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 953; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "dad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 953; } ); unicode = FC23; subCategory = ""; }, { glyphname = uniFC24; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "dad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 953; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "dad-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, -2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 953; } ); unicode = FC24; subCategory = ""; }, { glyphname = uniFC25; layers = ( { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1098; }, { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1098; } ); unicode = FC25; subCategory = ""; }, { glyphname = uniFC26; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1207; }, { components = ( { name = "hah-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1207; } ); unicode = FC26; subCategory = ""; }, { glyphname = uniFC27; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1090; }, { components = ( { name = "meem-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1090; } ); unicode = FC27; subCategory = ""; }, { glyphname = uniFC28; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "zah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1090; }, { components = ( { name = "meem-ar.fina"; }, { name = "zah-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1090; } ); unicode = FC28; subCategory = ""; }, { glyphname = uniFC29; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "ain-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 136, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 681; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "ain-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 136, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 681; } ); unicode = FC29; subCategory = ""; }, { glyphname = uniFC2A; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "ain-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1000; }, { components = ( { name = "meem-ar.fina"; }, { name = "ain-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1000; } ); unicode = FC2A; subCategory = ""; }, { glyphname = uniFC2B; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "ghain-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 136, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 681; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "ghain-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 136, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 681; } ); unicode = FC2B; subCategory = ""; }, { glyphname = uniFC2C; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "ghain-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1000; }, { components = ( { name = "meem-ar.fina"; }, { name = "ghain-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1000; } ); unicode = FC2C; subCategory = ""; }, { glyphname = uniFC2D; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol2"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol2"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); unicode = FC2D; subCategory = ""; }, { glyphname = uniFC2E; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); unicode = FC2E; subCategory = ""; }, { glyphname = uniFC2F; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol2"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol2"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); unicode = FC2F; subCategory = ""; }, { glyphname = uniFC30; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "feh-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 817; }, { components = ( { name = "meem-ar.fina"; }, { name = "feh-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 817; } ); unicode = FC30; subCategory = ""; }, { glyphname = uniFC31; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "feh-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 713; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "feh-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 713; } ); unicode = FC31; subCategory = ""; }, { glyphname = uniFC32; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "feh-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 713; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "feh-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 713; } ); unicode = FC32; subCategory = ""; }, { glyphname = uniFC33; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "qaf-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "qaf-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); unicode = FC33; subCategory = ""; }, { glyphname = uniFC34; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "qaf-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 817; }, { components = ( { name = "meem-ar.fina"; }, { name = "qaf-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 817; } ); unicode = FC34; subCategory = ""; }, { glyphname = uniFC35; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "qaf-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 713; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "qaf-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 713; } ); unicode = FC35; subCategory = ""; }, { glyphname = uniFC36; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "qaf-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 713; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "qaf-ar.init.FaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 713; } ); unicode = FC36; subCategory = ""; }, { glyphname = uniFC37; layers = ( { components = ( { name = "alef-ar.fina.KafAlf"; }, { name = "kaf-ar.init.KafLam"; transform = "{1, 0, 0, 1, 188, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "alef-ar.fina.KafAlf"; }, { name = "kaf-ar.init.KafLam"; transform = "{1, 0, 0, 1, 188, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FC37; subCategory = ""; }, { glyphname = uniFC38; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol2"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 812; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol2"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 812; } ); unicode = FC38; subCategory = ""; }, { glyphname = uniFC39; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 812; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 812; } ); unicode = FC39; subCategory = ""; }, { glyphname = uniFC3A; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol2"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 812; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol2"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 812; } ); unicode = FC3A; subCategory = ""; }, { glyphname = uniFC3B; layers = ( { components = ( { name = "lam-ar.fina.KafLam"; }, { name = "kaf-ar.init.KafLam"; transform = "{1, 0, 0, 1, 602, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1189; }, { components = ( { name = "lam-ar.fina.KafLam"; }, { name = "kaf-ar.init.KafLam"; transform = "{1, 0, 0, 1, 602, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1189; } ); unicode = FC3B; subCategory = ""; }, { glyphname = uniFC3C; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "kaf-ar.init.KafMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 783; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "kaf-ar.init.KafMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 783; } ); unicode = FC3C; subCategory = ""; }, { glyphname = uniFC3D; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "kaf-ar.init.KafYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 981; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "kaf-ar.init.KafYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 981; } ); unicode = FC3D; subCategory = ""; }, { glyphname = uniFC3E; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "kaf-ar.init.KafYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 981; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "kaf-ar.init.KafYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 981; } ); unicode = FC3E; subCategory = ""; }, { glyphname = uniFC3F; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol2"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 697; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol2"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 697; } ); unicode = FC3F; subCategory = ""; }, { glyphname = uniFC40; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 697; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol2"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 697; } ); unicode = FC40; subCategory = ""; }, { glyphname = uniFC41; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol2"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 697; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol2"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 138, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 697; } ); unicode = FC41; subCategory = ""; }, { glyphname = uniFC42; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "lam-ar.init.LamMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 441; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "lam-ar.init.LamMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 441; } ); unicode = FC42; subCategory = ""; }, { glyphname = uniFC43; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "lam-ar.init.LamYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 718; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "lam-ar.init.LamYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 718; } ); unicode = FC43; subCategory = ""; }, { glyphname = uniFC44; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "lam-ar.init.LamYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 718; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "lam-ar.init.LamYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 718; } ); unicode = FC44; subCategory = ""; }, { glyphname = uniFC45; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "meem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 4}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 664; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "meem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 4}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 664; } ); unicode = FC45; subCategory = ""; }, { glyphname = uniFC46; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "meem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 4}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 664; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "meem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 4}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 664; } ); unicode = FC46; subCategory = ""; }, { glyphname = uniFC47; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "meem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 4}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 664; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "meem-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 4}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 664; } ); unicode = FC47; subCategory = ""; }, { glyphname = uniFC48; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 911; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 911; } ); unicode = FC48; subCategory = ""; }, { glyphname = uniFC49; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "meem-ar.init.MemYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 862; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "meem-ar.init.MemYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 862; } ); unicode = FC49; subCategory = ""; }, { glyphname = uniFC4A; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "meem-ar.init.MemYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 862; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "meem-ar.init.MemYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 862; } ); unicode = FC4A; subCategory = ""; }, { glyphname = uniFC4B; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "noon-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "noon-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC4B; subCategory = ""; }, { glyphname = uniFC4C; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "noon-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "noon-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC4C; subCategory = ""; }, { glyphname = uniFC4D; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "noon-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "noon-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC4D; subCategory = ""; }, { glyphname = uniFC4E; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "noon-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 594; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "noon-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 594; } ); unicode = FC4E; subCategory = ""; }, { glyphname = uniFC4F; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "noon-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "noon-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC4F; subCategory = ""; }, { glyphname = uniFC50; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "noon-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "noon-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC50; subCategory = ""; }, { glyphname = uniFC51; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "heh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 19}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 696; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "heh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 19}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 696; } ); unicode = FC51; subCategory = ""; }, { glyphname = uniFC52; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "heh-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 974; }, { components = ( { name = "meem-ar.fina"; }, { name = "heh-ar.init"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 974; } ); unicode = FC52; subCategory = ""; }, { glyphname = uniFC53; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "heh-ar.init.HehYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1028; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "heh-ar.init.HehYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1028; } ); unicode = FC53; subCategory = ""; }, { glyphname = uniFC54; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "heh-ar.init.HehYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1028; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "heh-ar.init.HehYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1028; } ); unicode = FC54; subCategory = ""; }, { glyphname = uniFC55; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "yeh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "yeh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC55; subCategory = ""; }, { glyphname = uniFC56; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "yeh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "yeh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC56; subCategory = ""; }, { glyphname = uniFC57; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "yeh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "yeh-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FC57; subCategory = ""; }, { glyphname = uniFC58; layers = ( { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "yeh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 594; }, { components = ( { name = "meem-ar.fina.KafMemIsol"; }, { name = "yeh-ar.init.BaaMemIsol"; transform = "{1, 0, 0, 1, 203, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 594; } ); unicode = FC58; subCategory = ""; }, { glyphname = uniFC59; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "yeh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "yeh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC59; subCategory = ""; }, { glyphname = uniFC5A; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "yeh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 734; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "yeh-ar.init.BaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 734; } ); unicode = FC5A; subCategory = ""; }, { glyphname = "thalAlefabove-ar"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 12, 0}"; }, { name = "thal-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 450; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 12, 0}"; }, { name = "thal-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 450; } ); unicode = FC5B; }, { glyphname = "rehAlefabove-ar"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 2, 0}"; }, { name = "reh-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 399; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 2, 0}"; }, { name = "reh-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 399; } ); unicode = FC5C; }, { glyphname = "alefMaksuraAlefabove-ar"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 100, -630}"; }, { name = "alefMaksura-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 764; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 100, -630}"; }, { name = "alefMaksura-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 764; } ); unicode = FC5D; }, { glyphname = uniFC5E; layers = ( { components = ( { name = "dammatan-ar.small"; transform = "{1, 0, 0, 1, -93, 148}"; }, { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "dammatan-ar.small"; transform = "{1, 0, 0, 1, -93, 148}"; }, { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FC5E; subCategory = Spacing; }, { glyphname = uniFC5F; layers = ( { components = ( { name = "kasratan-ar"; }, { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "kasratan-ar"; }, { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FC5F; subCategory = Spacing; }, { glyphname = uniFC60; layers = ( { components = ( { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 200, 51}"; }, { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 200, 51}"; }, { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FC60; subCategory = Spacing; }, { glyphname = uniFC61; layers = ( { components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 200, 90}"; }, { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 200, 90}"; }, { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FC61; subCategory = Spacing; }, { glyphname = uniFC62; layers = ( { components = ( { name = "kasra-ar"; }, { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "kasra-ar"; }, { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FC62; subCategory = Spacing; }, { glyphname = uniFC63; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 5, 136}"; }, { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 5, 136}"; }, { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FC63; subCategory = Spacing; }, { glyphname = uniFC64; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC64; subCategory = ""; }, { glyphname = uniFC65; layers = ( { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC65; subCategory = ""; }, { glyphname = uniFC66; layers = ( { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "yehHamzaabove-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "yehHamzaabove-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); unicode = FC66; subCategory = ""; }, { glyphname = uniFC67; layers = ( { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "yehHamzaabove-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 761; }, { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "yehHamzaabove-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 761; } ); unicode = FC67; subCategory = ""; }, { glyphname = uniFC68; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC68; subCategory = ""; }, { glyphname = uniFC69; layers = ( { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "yehHamzaabove-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC69; subCategory = ""; }, { glyphname = uniFC6A; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "beh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "beh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC6A; subCategory = ""; }, { glyphname = uniFC6B; layers = ( { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "beh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "beh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC6B; subCategory = ""; }, { glyphname = uniFC6C; layers = ( { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "beh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "beh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); unicode = FC6C; subCategory = ""; }, { glyphname = uniFC6D; layers = ( { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "beh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 761; }, { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "beh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 761; } ); unicode = FC6D; subCategory = ""; }, { glyphname = uniFC6E; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "beh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "beh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC6E; subCategory = ""; }, { glyphname = uniFC6F; layers = ( { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "beh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "beh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC6F; subCategory = ""; }, { glyphname = uniFC70; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "teh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "teh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC70; subCategory = ""; }, { glyphname = uniFC71; layers = ( { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "teh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "teh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC71; subCategory = ""; }, { glyphname = uniFC72; layers = ( { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "teh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "teh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); unicode = FC72; subCategory = ""; }, { glyphname = uniFC73; layers = ( { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "teh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 761; }, { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "teh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 761; } ); unicode = FC73; subCategory = ""; }, { glyphname = uniFC74; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "teh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "teh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC74; subCategory = ""; }, { glyphname = uniFC75; layers = ( { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "teh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "teh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC75; subCategory = ""; }, { glyphname = uniFC76; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "theh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "theh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC76; subCategory = ""; }, { glyphname = uniFC77; layers = ( { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "theh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "theh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC77; subCategory = ""; }, { glyphname = uniFC78; layers = ( { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "theh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "theh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); unicode = FC78; subCategory = ""; }, { glyphname = uniFC79; layers = ( { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "theh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 761; }, { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "theh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 761; } ); unicode = FC79; subCategory = ""; }, { glyphname = uniFC7A; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "theh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "theh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC7A; subCategory = ""; }, { glyphname = uniFC7B; layers = ( { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "theh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "theh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC7B; subCategory = ""; }, { glyphname = uniFC7C; layers = ( { components = ( { name = "alefMaksura-ar.fina.FaaYaaFina"; }, { name = "feh-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 902; }, { components = ( { name = "alefMaksura-ar.fina.FaaYaaFina"; }, { name = "feh-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 902; } ); unicode = FC7C; subCategory = ""; }, { glyphname = uniFC7D; layers = ( { components = ( { name = "yeh-ar.fina.FaaYaaFina"; }, { name = "feh-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 902; }, { components = ( { name = "yeh-ar.fina.FaaYaaFina"; }, { name = "feh-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 902; } ); unicode = FC7D; subCategory = ""; }, { glyphname = uniFC7E; layers = ( { components = ( { name = "alefMaksura-ar.fina.FaaYaaFina"; }, { name = "qaf-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 902; }, { components = ( { name = "alefMaksura-ar.fina.FaaYaaFina"; }, { name = "qaf-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 902; } ); unicode = FC7E; subCategory = ""; }, { glyphname = uniFC7F; layers = ( { components = ( { name = "yeh-ar.fina.FaaYaaFina"; }, { name = "qaf-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 902; }, { components = ( { name = "yeh-ar.fina.FaaYaaFina"; }, { name = "qaf-ar.medi.FaaYaaFina"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 902; } ); unicode = FC7F; subCategory = ""; }, { glyphname = uniFC80; layers = ( { components = ( { name = "alef-ar.fina.KafAlf"; }, { name = "kaf-ar.medi.KafLam"; transform = "{1, 0, 0, 1, 188, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 717; }, { components = ( { name = "alef-ar.fina.KafAlf"; }, { name = "kaf-ar.medi.KafLam"; transform = "{1, 0, 0, 1, 188, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 717; } ); unicode = FC80; subCategory = ""; }, { glyphname = uniFC81; layers = ( { components = ( { name = "lam-ar.fina.KafLam"; }, { name = "kaf-ar.medi.KafLam"; transform = "{1, 0, 0, 1, 602, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1131; }, { components = ( { name = "lam-ar.fina.KafLam"; }, { name = "kaf-ar.medi.KafLam"; transform = "{1, 0, 0, 1, 602, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1131; } ); unicode = FC81; subCategory = ""; }, { glyphname = uniFC82; layers = ( { components = ( { name = "meem-ar.fina.KafMemFina"; }, { name = "kaf-ar.medi.KafMemFina"; transform = "{1, 0, 0, 1, 226, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 693; }, { components = ( { name = "meem-ar.fina.KafMemFina"; }, { name = "kaf-ar.medi.KafMemFina"; transform = "{1, 0, 0, 1, 226, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 693; } ); unicode = FC82; subCategory = ""; }, { glyphname = uniFC83; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaFina"; }, { name = "kaf-ar.medi.KafYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 959; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaFina"; }, { name = "kaf-ar.medi.KafYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 959; } ); unicode = FC83; subCategory = ""; }, { glyphname = uniFC84; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaFina"; }, { name = "kaf-ar.medi.KafYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 959; }, { components = ( { name = "yeh-ar.fina.KafYaaFina"; }, { name = "kaf-ar.medi.KafYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 959; } ); unicode = FC84; subCategory = ""; }, { glyphname = uniFC85; layers = ( { components = ( { name = "meem-ar.fina.LamMemFina"; }, { name = "lam-ar.medi.LamMemFina"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 483; }, { components = ( { name = "meem-ar.fina.LamMemFina"; }, { name = "lam-ar.medi.LamMemFina"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 483; } ); unicode = FC85; subCategory = ""; }, { glyphname = uniFC86; layers = ( { components = ( { name = "alefMaksura-ar.fina.LamYaaFina"; }, { name = "lam-ar.medi.LamYaaFina"; transform = "{1, 0, 0, 1, 469, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 665; }, { components = ( { name = "alefMaksura-ar.fina.LamYaaFina"; }, { name = "lam-ar.medi.LamYaaFina"; transform = "{1, 0, 0, 1, 469, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 665; } ); unicode = FC86; subCategory = ""; }, { glyphname = uniFC87; layers = ( { components = ( { name = "yeh-ar.fina.LamYaaFina"; }, { name = "lam-ar.medi.LamYaaFina"; transform = "{1, 0, 0, 1, 469, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 665; }, { components = ( { name = "yeh-ar.fina.LamYaaFina"; }, { name = "lam-ar.medi.LamYaaFina"; transform = "{1, 0, 0, 1, 469, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 665; } ); unicode = FC87; subCategory = ""; }, { glyphname = uniFC88; layers = ( { components = ( { name = "alef-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 693; }, { components = ( { name = "alef-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 229, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 693; } ); unicode = FC88; subCategory = ""; }, { glyphname = uniFC89; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 986; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 986; } ); unicode = FC89; subCategory = ""; }, { glyphname = uniFC8A; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "noon-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "noon-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC8A; subCategory = ""; }, { glyphname = uniFC8B; layers = ( { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "noon-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "noon-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC8B; subCategory = ""; }, { glyphname = uniFC8C; layers = ( { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "noon-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "noon-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); unicode = FC8C; subCategory = ""; }, { glyphname = uniFC8D; layers = ( { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "noon-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 761; }, { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "noon-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 761; } ); unicode = FC8D; subCategory = ""; }, { glyphname = uniFC8E; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "noon-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "noon-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC8E; subCategory = ""; }, { glyphname = uniFC8F; layers = ( { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "noon-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "noon-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC8F; subCategory = ""; }, { glyphname = "alefMaksuraAlefabove-ar.fina"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 100, -801}"; }, { name = "alefMaksura-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 100, -801}"; }, { name = "alefMaksura-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = FC90; }, { glyphname = uniFC91; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "yeh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "yeh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC91; subCategory = ""; }, { glyphname = uniFC92; layers = ( { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "yeh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { components = ( { name = "zain-ar.fina.BaaRaaFina"; }, { name = "yeh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); unicode = FC92; subCategory = ""; }, { glyphname = uniFC93; layers = ( { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "yeh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { components = ( { name = "meem-ar.fina.BaaMemFina"; }, { name = "yeh-ar.medi.BaaMemFina"; transform = "{1, 0, 0, 1, 223, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); unicode = FC93; subCategory = ""; }, { glyphname = uniFC94; layers = ( { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "yeh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 761; }, { components = ( { name = "noon-ar.fina.BaaNonFina"; }, { name = "yeh-ar.medi.BaaNonFina"; transform = "{1, 0, 0, 1, 543, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 761; } ); unicode = FC94; subCategory = ""; }, { glyphname = uniFC95; layers = ( { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "yeh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "alefMaksura-ar.fina.BaaYaaFina"; }, { name = "yeh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC95; subCategory = ""; }, { glyphname = uniFC96; layers = ( { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "yeh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 729; }, { components = ( { name = "yeh-ar.fina.BaaYaaFina"; }, { name = "yeh-ar.medi.BaaYaaFina"; transform = "{1, 0, 0, 1, 422, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 729; } ); unicode = FC96; subCategory = ""; }, { glyphname = uniFC97; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "yehHamzaabove-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "yehHamzaabove-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FC97; subCategory = ""; }, { glyphname = uniFC98; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "yehHamzaabove-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "yehHamzaabove-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FC98; subCategory = ""; }, { glyphname = uniFC99; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "yehHamzaabove-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "yehHamzaabove-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FC99; subCategory = ""; }, { glyphname = uniFC9A; layers = ( { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "yehHamzaabove-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "yehHamzaabove-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); unicode = FC9A; subCategory = ""; }, { glyphname = uniFC9B; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yehHamzaabove-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 531; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yehHamzaabove-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 531; } ); unicode = FC9B; subCategory = ""; }, { glyphname = uniFC9C; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "beh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "beh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FC9C; subCategory = ""; }, { glyphname = uniFC9D; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "beh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "beh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FC9D; subCategory = ""; }, { glyphname = uniFC9E; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "beh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "beh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FC9E; subCategory = ""; }, { glyphname = uniFC9F; layers = ( { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "beh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "beh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); unicode = FC9F; subCategory = ""; }, { glyphname = uniFCA0; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "beh-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 531; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "beh-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 531; } ); unicode = FCA0; subCategory = ""; }, { glyphname = uniFCA1; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCA1; subCategory = ""; }, { glyphname = uniFCA2; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCA2; subCategory = ""; }, { glyphname = uniFCA3; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCA3; subCategory = ""; }, { glyphname = uniFCA4; layers = ( { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "teh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "teh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); unicode = FCA4; subCategory = ""; }, { glyphname = uniFCA5; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "teh-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 531; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "teh-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 531; } ); unicode = FCA5; subCategory = ""; }, { glyphname = uniFCA6; layers = ( { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "theh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "theh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); unicode = FCA6; subCategory = ""; }, { glyphname = uniFCA7; layers = ( { components = ( { name = "hah-ar.medi.HaaHaaInit"; }, { name = "jeem-ar.init.HaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "hah-ar.medi.HaaHaaInit"; }, { name = "jeem-ar.init.HaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCA7; subCategory = ""; }, { glyphname = uniFCA8; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); unicode = FCA8; subCategory = ""; }, { glyphname = uniFCA9; layers = ( { components = ( { name = "jeem-ar.medi.HaaHaaInit"; }, { name = "hah-ar.init.HaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "jeem-ar.medi.HaaHaaInit"; }, { name = "hah-ar.init.HaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCA9; subCategory = ""; }, { glyphname = uniFCAA; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); unicode = FCAA; subCategory = ""; }, { glyphname = uniFCAB; layers = ( { components = ( { name = "jeem-ar.medi.HaaHaaInit"; }, { name = "khah-ar.init.HaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "jeem-ar.medi.HaaHaaInit"; }, { name = "khah-ar.init.HaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCAB; subCategory = ""; }, { glyphname = uniFCAC; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "khah-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "khah-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); unicode = FCAC; subCategory = ""; }, { glyphname = uniFCAD; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FCAD; subCategory = ""; }, { glyphname = uniFCAE; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FCAE; subCategory = ""; }, { glyphname = uniFCAF; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FCAF; subCategory = ""; }, { glyphname = uniFCB0; layers = ( { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FCB0; subCategory = ""; }, { glyphname = uniFCB1; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "sad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 863; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "sad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 863; } ); unicode = FCB1; subCategory = ""; }, { glyphname = uniFCB2; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "sad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 863; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "sad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 863; } ); unicode = FCB2; subCategory = ""; }, { glyphname = uniFCB3; layers = ( { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "sad-ar.init.SadMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 824; }, { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "sad-ar.init.SadMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 824; } ); unicode = FCB3; subCategory = ""; }, { glyphname = uniFCB4; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 863; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 863; } ); unicode = FCB4; subCategory = ""; }, { glyphname = uniFCB5; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 863; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 863; } ); unicode = FCB5; subCategory = ""; }, { glyphname = uniFCB6; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 863; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 863; } ); unicode = FCB6; subCategory = ""; }, { glyphname = uniFCB7; layers = ( { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "dad-ar.init.SadMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 824; }, { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "dad-ar.init.SadMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 824; } ); unicode = FCB7; subCategory = ""; }, { glyphname = uniFCB8; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1178; }, { components = ( { name = "hah-ar.medi"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1178; } ); unicode = FCB8; subCategory = ""; }, { glyphname = uniFCB9; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "zah-ar.init"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1031; }, { components = ( { name = "meem-ar.medi"; }, { name = "zah-ar.init"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1031; } ); unicode = FCB9; subCategory = ""; }, { glyphname = uniFCBA; layers = ( { components = ( { name = "jeem-ar.medi.AynHaaInit"; }, { name = "ain-ar.init.AynHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 600; }, { components = ( { name = "jeem-ar.medi.AynHaaInit"; }, { name = "ain-ar.init.AynHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = FCBA; subCategory = ""; }, { glyphname = uniFCBB; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "ain-ar.init.AynMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 707; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "ain-ar.init.AynMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 707; } ); unicode = FCBB; subCategory = ""; }, { glyphname = uniFCBC; layers = ( { components = ( { name = "jeem-ar.medi.AynHaaInit"; }, { name = "ghain-ar.init.AynHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 600; }, { components = ( { name = "jeem-ar.medi.AynHaaInit"; }, { name = "ghain-ar.init.AynHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = FCBC; subCategory = ""; }, { glyphname = uniFCBD; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "ghain-ar.init.AynMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 707; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "ghain-ar.init.AynMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 707; } ); unicode = FCBD; subCategory = ""; }, { glyphname = uniFCBE; layers = ( { components = ( { name = "jeem-ar.medi.FaaHaaInit"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { components = ( { name = "jeem-ar.medi.FaaHaaInit"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = FCBE; subCategory = ""; }, { glyphname = uniFCBF; layers = ( { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = FCBF; subCategory = ""; }, { glyphname = uniFCC0; layers = ( { components = ( { name = "khah-ar.medi.FaaHaaInit"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { components = ( { name = "khah-ar.medi.FaaHaaInit"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = FCC0; subCategory = ""; }, { glyphname = uniFCC1; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "feh-ar.init.FaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 392; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "feh-ar.init.FaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 392; } ); unicode = FCC1; subCategory = ""; }, { glyphname = uniFCC2; layers = ( { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "qaf-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "qaf-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); unicode = FCC2; subCategory = ""; }, { glyphname = uniFCC3; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "qaf-ar.init.FaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 392; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "qaf-ar.init.FaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 392; } ); unicode = FCC3; subCategory = ""; }, { glyphname = uniFCC4; layers = ( { components = ( { name = "jeem-ar.medi.FaaHaaInit"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 746; }, { components = ( { name = "jeem-ar.medi.FaaHaaInit"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 746; } ); unicode = FCC4; subCategory = ""; }, { glyphname = uniFCC5; layers = ( { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 746; }, { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 746; } ); unicode = FCC5; subCategory = ""; }, { glyphname = uniFCC6; layers = ( { components = ( { name = "khah-ar.medi.FaaHaaInit"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 746; }, { components = ( { name = "khah-ar.medi.FaaHaaInit"; }, { name = "kaf-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 746; } ); unicode = FCC6; subCategory = ""; }, { glyphname = uniFCC7; layers = ( { components = ( { name = "lam-ar.medi.KafLam"; }, { name = "kaf-ar.init.KafLam"; transform = "{1, 0, 0, 1, 192, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 779; }, { components = ( { name = "lam-ar.medi.KafLam"; }, { name = "kaf-ar.init.KafLam"; transform = "{1, 0, 0, 1, 192, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 779; } ); unicode = FCC7; subCategory = ""; }, { glyphname = uniFCC8; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "kaf-ar.init.KafMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 758; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "kaf-ar.init.KafMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 758; } ); unicode = FCC8; subCategory = ""; }, { glyphname = uniFCC9; layers = ( { components = ( { name = "jeem-ar.medi.FaaHaaInit"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 632; }, { components = ( { name = "jeem-ar.medi.FaaHaaInit"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 632; } ); unicode = FCC9; subCategory = ""; }, { glyphname = uniFCCA; layers = ( { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 632; }, { components = ( { name = "hah-ar.medi.FaaHaaInit"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 632; } ); unicode = FCCA; subCategory = ""; }, { glyphname = uniFCCB; layers = ( { components = ( { name = "khah-ar.medi.FaaHaaInit"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 632; }, { components = ( { name = "khah-ar.medi.FaaHaaInit"; }, { name = "lam-ar.init.LamHaaInit"; transform = "{1, 0, 0, 1, 73, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 632; } ); unicode = FCCB; subCategory = ""; }, { glyphname = uniFCCC; layers = ( { components = ( { name = "meem-ar.medi.LamMemInit"; }, { name = "lam-ar.init.LamMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 356; }, { components = ( { name = "meem-ar.medi.LamMemInit"; }, { name = "lam-ar.init.LamMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 356; } ); unicode = FCCC; subCategory = ""; }, { glyphname = uniFCCD; layers = ( { components = ( { name = "heh-ar.medi.LamHehInit"; }, { name = "lam-ar.init.LamHehInit"; transform = "{1, 0, 0, 1, 240, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 465; }, { components = ( { name = "heh-ar.medi.LamHehInit"; }, { name = "lam-ar.init.LamHehInit"; transform = "{1, 0, 0, 1, 240, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 465; } ); unicode = FCCD; subCategory = ""; }, { glyphname = uniFCCE; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 55, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 605; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 55, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 605; } ); unicode = FCCE; subCategory = ""; }, { glyphname = uniFCCF; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 55, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 605; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 55, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 605; } ); unicode = FCCF; subCategory = ""; }, { glyphname = uniFCD0; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 55, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 605; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 55, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 605; } ); unicode = FCD0; subCategory = ""; }, { glyphname = uniFCD1; layers = ( { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "meem-ar.init.MemMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 454; }, { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "meem-ar.init.MemMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 454; } ); unicode = FCD1; subCategory = ""; }, { glyphname = uniFCD2; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCD2; subCategory = ""; }, { glyphname = uniFCD3; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCD3; subCategory = ""; }, { glyphname = uniFCD4; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCD4; subCategory = ""; }, { glyphname = uniFCD5; layers = ( { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "noon-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "noon-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); unicode = FCD5; subCategory = ""; }, { glyphname = uniFCD6; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "noon-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 531; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "noon-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 531; } ); unicode = FCD6; subCategory = ""; }, { glyphname = uniFCD7; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "heh-ar.init.HehHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "heh-ar.init.HehHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 647; } ); unicode = FCD7; subCategory = ""; }, { glyphname = uniFCD8; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "heh-ar.init.HehMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 668; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "heh-ar.init.HehMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 668; } ); unicode = FCD8; subCategory = ""; }, { glyphname = "hehAlefabove-ar.init"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -46, 0}"; }, { name = "heh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -46, 0}"; }, { name = "heh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = FCD9; }, { glyphname = uniFCDA; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "yeh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "yeh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCDA; subCategory = ""; }, { glyphname = uniFCDB; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "yeh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "yeh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCDB; subCategory = ""; }, { glyphname = uniFCDC; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "yeh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "yeh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 55, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FCDC; subCategory = ""; }, { glyphname = uniFCDD; layers = ( { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "yeh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { components = ( { name = "meem-ar.medi.BaaMemInit"; }, { name = "yeh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); unicode = FCDD; subCategory = ""; }, { glyphname = uniFCDE; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yeh-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 531; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yeh-ar.init.BaaHehInit"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 531; } ); unicode = FCDE; subCategory = ""; }, { glyphname = uniFCDF; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "meem-ar.medi"; }, { name = "yehHamzaabove-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCDF; subCategory = ""; }, { glyphname = uniFCE0; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yehHamzaabove-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 458; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yehHamzaabove-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 458; } ); unicode = FCE0; subCategory = ""; }, { glyphname = uniFCE1; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "beh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "meem-ar.medi"; }, { name = "beh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCE1; subCategory = ""; }, { glyphname = uniFCE2; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "beh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 458; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "beh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 458; } ); unicode = FCE2; subCategory = ""; }, { glyphname = uniFCE3; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "meem-ar.medi"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCE3; subCategory = ""; }, { glyphname = uniFCE4; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "teh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 458; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "teh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 458; } ); unicode = FCE4; subCategory = ""; }, { glyphname = uniFCE5; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "theh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "meem-ar.medi"; }, { name = "theh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCE5; subCategory = ""; }, { glyphname = uniFCE6; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "theh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 458; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "theh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 458; } ); unicode = FCE6; subCategory = ""; }, { glyphname = uniFCE7; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { components = ( { name = "meem-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); unicode = FCE7; subCategory = ""; }, { glyphname = uniFCE8; layers = ( { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 841; }, { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 841; } ); unicode = FCE8; subCategory = ""; }, { glyphname = uniFCE9; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { components = ( { name = "meem-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); unicode = FCE9; subCategory = ""; }, { glyphname = uniFCEA; layers = ( { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 841; }, { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 841; } ); unicode = FCEA; subCategory = ""; }, { glyphname = uniFCEB; layers = ( { components = ( { name = "lam-ar.medi.KafLam"; }, { name = "kaf-ar.medi.KafLam"; transform = "{1, 0, 0, 1, 192, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 721; }, { components = ( { name = "lam-ar.medi.KafLam"; }, { name = "kaf-ar.medi.KafLam"; transform = "{1, 0, 0, 1, 192, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 721; } ); unicode = FCEB; subCategory = ""; }, { glyphname = uniFCEC; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "kaf-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 781; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "kaf-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 217, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 781; } ); unicode = FCEC; subCategory = ""; }, { glyphname = uniFCED; layers = ( { components = ( { name = "meem-ar.medi.LamMemMedi"; }, { name = "lam-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 237, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { components = ( { name = "meem-ar.medi.LamMemMedi"; }, { name = "lam-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 237, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); unicode = FCED; subCategory = ""; }, { glyphname = uniFCEE; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "meem-ar.medi"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCEE; subCategory = ""; }, { glyphname = uniFCEF; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "noon-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 458; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "noon-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 458; } ); unicode = FCEF; subCategory = ""; }, { glyphname = uniFCF0; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { components = ( { name = "meem-ar.medi"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 708; } ); unicode = FCF0; subCategory = ""; }, { glyphname = uniFCF1; layers = ( { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yeh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 458; }, { components = ( { name = "heh-ar.medi.BaaHehMedi"; }, { name = "yeh-ar.medi.BaaHehMedi"; transform = "{1, 0, 0, 1, 147, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 458; } ); unicode = FCF1; subCategory = ""; }, { glyphname = uniFCF2; layers = ( { components = ( { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 84, 51}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 84, 51}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FCF2; }, { glyphname = uniFCF3; layers = ( { components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 84, 90}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 84, 90}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FCF3; }, { glyphname = uniFCF4; layers = ( { components = ( { name = "kasra-ar"; transform = "{1, 0, 0, 1, -127, 0}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "kasra-ar"; transform = "{1, 0, 0, 1, -127, 0}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FCF4; }, { glyphname = uniFCF5; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1153; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1153; } ); unicode = FCF5; subCategory = ""; }, { glyphname = uniFCF6; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1153; }, { components = ( { name = "yeh-ar.fina"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1153; } ); unicode = FCF6; subCategory = ""; }, { glyphname = uniFCF7; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "ain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1072; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "ain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1072; } ); unicode = FCF7; subCategory = ""; }, { glyphname = uniFCF8; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "ain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1072; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "ain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1072; } ); unicode = FCF8; subCategory = ""; }, { glyphname = uniFCF9; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "ghain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1072; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "ghain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1072; } ); unicode = FCF9; subCategory = ""; }, { glyphname = uniFCFA; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "ghain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1072; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "ghain-ar.init.AynYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1072; } ); unicode = FCFA; subCategory = ""; }, { glyphname = uniFCFB; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1075; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1075; } ); unicode = FCFB; subCategory = ""; }, { glyphname = uniFCFC; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1075; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1075; } ); unicode = FCFC; subCategory = ""; }, { glyphname = uniFCFD; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1075; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1075; } ); unicode = FCFD; subCategory = ""; }, { glyphname = uniFCFE; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1075; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1075; } ); unicode = FCFE; subCategory = ""; }, { glyphname = uniFCFF; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "hah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1092; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "hah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1092; } ); unicode = FCFF; subCategory = ""; }, { glyphname = uniFD00; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "hah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1092; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "hah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1092; } ); unicode = FD00; subCategory = ""; }, { glyphname = uniFD01; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "jeem-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1092; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "jeem-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1092; } ); unicode = FD01; subCategory = ""; }, { glyphname = uniFD02; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "jeem-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1092; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "jeem-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1092; } ); unicode = FD02; subCategory = ""; }, { glyphname = uniFD03; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "khah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1092; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaIsol"; }, { name = "khah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1092; } ); unicode = FD03; subCategory = ""; }, { glyphname = uniFD04; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "khah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1092; }, { components = ( { name = "yeh-ar.fina.KafYaaIsol"; }, { name = "khah-ar.init.HaaYaaIsol"; transform = "{1, 0, 0, 1, 476, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1092; } ); unicode = FD04; subCategory = ""; }, { glyphname = uniFD05; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1263; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1263; } ); unicode = FD05; subCategory = ""; }, { glyphname = uniFD06; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1263; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1263; } ); unicode = FD06; subCategory = ""; }, { glyphname = uniFD07; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1263; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1263; } ); unicode = FD07; subCategory = ""; }, { glyphname = uniFD08; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1263; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1263; } ); unicode = FD08; subCategory = ""; }, { glyphname = uniFD09; layers = ( { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "sheen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "jeem-ar.fina.AboveHaaIsol"; }, { name = "sheen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FD09; subCategory = ""; }, { glyphname = uniFD0A; layers = ( { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "sheen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "hah-ar.fina.AboveHaaIsol"; }, { name = "sheen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FD0A; subCategory = ""; }, { glyphname = uniFD0B; layers = ( { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "sheen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 775; }, { components = ( { name = "khah-ar.fina.AboveHaaIsol"; }, { name = "sheen-ar.init.AboveHaa"; transform = "{1, 0, 0, 1, 104, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 775; } ); unicode = FD0B; subCategory = ""; }, { glyphname = uniFD0C; layers = ( { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 910; }, { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 910; } ); unicode = FD0C; subCategory = ""; }, { glyphname = uniFD0D; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 898; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 898; } ); unicode = FD0D; subCategory = ""; }, { glyphname = uniFD0E; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 898; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 898; } ); unicode = FD0E; subCategory = ""; }, { glyphname = uniFD0F; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1086; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1086; } ); unicode = FD0F; subCategory = ""; }, { glyphname = uniFD10; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1086; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "dad-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1086; } ); unicode = FD10; subCategory = ""; }, { glyphname = uniFD11; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1137; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1137; } ); unicode = FD11; subCategory = ""; }, { glyphname = uniFD12; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1137; }, { components = ( { name = "yeh-ar.fina"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1137; } ); unicode = FD12; subCategory = ""; }, { glyphname = uniFD13; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaFina"; }, { name = "ain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 882; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaFina"; }, { name = "ain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 882; } ); unicode = FD13; subCategory = ""; }, { glyphname = uniFD14; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaFina"; }, { name = "ain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 882; }, { components = ( { name = "yeh-ar.fina.KafYaaFina"; }, { name = "ain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 882; } ); unicode = FD14; subCategory = ""; }, { glyphname = uniFD15; layers = ( { components = ( { name = "alefMaksura-ar.fina.KafYaaFina"; }, { name = "ghain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 882; }, { components = ( { name = "alefMaksura-ar.fina.KafYaaFina"; }, { name = "ghain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 882; } ); unicode = FD15; subCategory = ""; }, { glyphname = uniFD16; layers = ( { components = ( { name = "yeh-ar.fina.KafYaaFina"; }, { name = "ghain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 882; }, { components = ( { name = "yeh-ar.fina.KafYaaFina"; }, { name = "ghain-ar.medi.AynYaaFina"; transform = "{1, 0, 0, 1, 472, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 882; } ); unicode = FD16; subCategory = ""; }, { glyphname = uniFD17; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1111; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1111; } ); unicode = FD17; subCategory = ""; }, { glyphname = uniFD18; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1111; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1111; } ); unicode = FD18; subCategory = ""; }, { glyphname = uniFD19; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1111; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1111; } ); unicode = FD19; subCategory = ""; }, { glyphname = uniFD1A; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1111; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1111; } ); unicode = FD1A; subCategory = ""; }, { glyphname = uniFD1B; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1196; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1196; } ); unicode = FD1B; subCategory = ""; }, { glyphname = uniFD1C; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1196; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1196; } ); unicode = FD1C; subCategory = ""; }, { glyphname = uniFD1D; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1196; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1196; } ); unicode = FD1D; subCategory = ""; }, { glyphname = uniFD1E; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1196; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1196; } ); unicode = FD1E; subCategory = ""; }, { glyphname = uniFD1F; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1196; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1196; } ); unicode = FD1F; subCategory = ""; }, { glyphname = uniFD20; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1196; }, { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1196; } ); unicode = FD20; subCategory = ""; }, { glyphname = uniFD21; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1241; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "sad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1241; } ); unicode = FD21; subCategory = ""; }, { glyphname = uniFD22; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1241; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "sad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1241; } ); unicode = FD22; subCategory = ""; }, { glyphname = uniFD23; layers = ( { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "dad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1241; }, { components = ( { name = "alefMaksura-ar.fina.PostTooth"; }, { name = "dad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1241; } ); unicode = FD23; subCategory = ""; }, { glyphname = uniFD24; layers = ( { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "dad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1241; }, { components = ( { name = "yeh-ar.fina.PostTooth"; }, { name = "dad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 730, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1241; } ); unicode = FD24; subCategory = ""; }, { glyphname = uniFD25; layers = ( { components = ( { name = "jeem-ar.fina"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1208; }, { components = ( { name = "jeem-ar.fina"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1208; } ); unicode = FD25; subCategory = ""; }, { glyphname = uniFD26; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1208; }, { components = ( { name = "hah-ar.fina"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1208; } ); unicode = FD26; subCategory = ""; }, { glyphname = uniFD27; layers = ( { components = ( { name = "khah-ar.fina"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1208; }, { components = ( { name = "khah-ar.fina"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1208; } ); unicode = FD27; subCategory = ""; }, { glyphname = uniFD28; layers = ( { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 946; }, { components = ( { name = "meem-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 565, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 946; } ); unicode = FD28; subCategory = ""; }, { glyphname = uniFD29; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 934; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sheen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 934; } ); unicode = FD29; subCategory = ""; }, { glyphname = uniFD2A; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 934; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "seen-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 934; } ); unicode = FD2A; subCategory = ""; }, { glyphname = uniFD2B; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1064; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "sad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1064; } ); unicode = FD2B; subCategory = ""; }, { glyphname = uniFD2C; layers = ( { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "dad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1064; }, { components = ( { name = "reh-ar.fina.PostTooth"; }, { name = "dad-ar.medi.PreYaa"; transform = "{1, 0, 0, 1, 554, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1064; } ); unicode = FD2C; subCategory = ""; }, { glyphname = uniFD2D; layers = ( { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "jeem-ar.medi.SadHaaInit"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FD2D; subCategory = ""; }, { glyphname = uniFD2E; layers = ( { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "hah-ar.medi.SadHaaInit"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FD2E; subCategory = ""; }, { glyphname = uniFD2F; layers = ( { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "khah-ar.medi.SadHaaInit"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 55, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FD2F; subCategory = ""; }, { glyphname = uniFD30; layers = ( { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "sheen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 699; }, { components = ( { name = "meem-ar.medi.SenMemInit"; }, { name = "sheen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 174, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 699; } ); unicode = FD30; subCategory = ""; }, { glyphname = uniFD31; layers = ( { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 805; }, { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "seen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 805; } ); unicode = FD31; subCategory = ""; }, { glyphname = uniFD32; layers = ( { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 805; }, { components = ( { name = "heh-ar.medi.PostTooth"; }, { name = "sheen-ar.init.PreYaa"; transform = "{1, 0, 0, 1, 461, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 805; } ); unicode = FD32; subCategory = ""; }, { glyphname = uniFD33; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1031; }, { components = ( { name = "meem-ar.medi"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1031; } ); unicode = FD33; subCategory = ""; }, { glyphname = uniFD34; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1179; }, { components = ( { name = "jeem-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1179; } ); unicode = FD34; subCategory = ""; }, { glyphname = uniFD35; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1179; }, { components = ( { name = "hah-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1179; } ); unicode = FD35; subCategory = ""; }, { glyphname = uniFD36; layers = ( { components = ( { name = "khah-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1179; }, { components = ( { name = "khah-ar.medi"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1179; } ); unicode = FD36; subCategory = ""; }, { glyphname = uniFD37; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1179; }, { components = ( { name = "jeem-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1179; } ); unicode = FD37; subCategory = ""; }, { glyphname = uniFD38; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1179; }, { components = ( { name = "hah-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1179; } ); unicode = FD38; subCategory = ""; }, { glyphname = uniFD39; layers = ( { components = ( { name = "khah-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1179; }, { components = ( { name = "khah-ar.medi"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1179; } ); unicode = FD39; subCategory = ""; }, { glyphname = uniFD3A; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1015; }, { components = ( { name = "meem-ar.medi"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1015; } ); unicode = FD3A; subCategory = ""; }, { glyphname = uniFD3B; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "zah-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1015; }, { components = ( { name = "meem-ar.medi"; }, { name = "zah-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1015; } ); unicode = FD3B; subCategory = ""; }, { glyphname = "alefFathatan-ar.fina"; layers = ( { components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, -209, 0}"; }, { name = "alef-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, -209, 0}"; }, { name = "alef-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); unicode = FD3C; }, { glyphname = "alefFathatan-ar"; layers = ( { components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, -161, -44}"; }, { name = "alef-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, -161, -44}"; }, { name = "alef-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); unicode = FD3D; }, { glyphname = "parenleft-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "340 152 OFFCURVE", "345 139 OFFCURVE", "353 128 CURVE SMOOTH", "366 110 OFFCURVE", "384 101 OFFCURVE", "406 101 CURVE SMOOTH", "420 101 OFFCURVE", "432 105 OFFCURVE", "444 113 CURVE SMOOTH", "462 126 OFFCURVE", "471 144 OFFCURVE", "471 166 CURVE SMOOTH", "471 180 OFFCURVE", "467 192 OFFCURVE", "459 204 CURVE SMOOTH", "446 222 OFFCURVE", "428 231 OFFCURVE", "406 231 CURVE SMOOTH", "392 231 OFFCURVE", "380 227 OFFCURVE", "368 219 CURVE SMOOTH", "350 206 OFFCURVE", "340 188 OFFCURVE", "340 166 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "497 361 OFFCURVE", "511 358 OFFCURVE", "523 353 CURVE SMOOTH", "535 348 OFFCURVE", "537 341 OFFCURVE", "531 333 CURVE SMOOTH", "461 237 LINE SMOOTH", "461 237 OFFCURVE", "460 237 OFFCURVE", "460 236 CURVE", "466 230 OFFCURVE", "471 225 OFFCURVE", "477 219 CURVE", "572 289 LINE SMOOTH", "580 295 OFFCURVE", "586 294 OFFCURVE", "590 284 CURVE SMOOTH", "599 262 OFFCURVE", "605 240 OFFCURVE", "609 218 CURVE", "630 208 OFFCURVE", "648 193 OFFCURVE", "663 173 CURVE", "666 168 OFFCURVE", "666 164 OFFCURVE", "663 159 CURVE", "648 139 OFFCURVE", "630 124 OFFCURVE", "609 114 CURVE", "602 76 OFFCURVE", "594 52 OFFCURVE", "585 42 CURVE SMOOTH", "582 39 OFFCURVE", "578 39 OFFCURVE", "572 43 CURVE SMOOTH", "477 113 LINE", "471 107 OFFCURVE", "465 102 OFFCURVE", "460 96 CURVE", "460 96 OFFCURVE", "461 96 OFFCURVE", "461 95 CURVE SMOOTH", "531 0 LINE SMOOTH", "537 -8 OFFCURVE", "535 -16 OFFCURVE", "523 -21 CURVE SMOOTH", "511 -26 OFFCURVE", "497 -29 OFFCURVE", "483 -33 CURVE", "513 -153 OFFCURVE", "562 -261 OFFCURVE", "630 -356 CURVE", "641 -374 OFFCURVE", "641 -389 OFFCURVE", "629 -400 CURVE SMOOTH", "617 -411 OFFCURVE", "603 -408 OFFCURVE", "587 -392 CURVE", "485 -287 OFFCURVE", "416 -170 OFFCURVE", "379 -41 CURVE", "350 -38 OFFCURVE", "321 -31 OFFCURVE", "291 -19 CURVE", "282 -15 OFFCURVE", "279 -8 OFFCURVE", "285 0 CURVE SMOOTH", "354 94 LINE", "342 108 OFFCURVE", "336 114 OFFCURVE", "335 113 CURVE SMOOTH", "240 43 LINE SMOOTH", "232 37 OFFCURVE", "225 39 OFFCURVE", "221 48 CURVE", "213 70 OFFCURVE", "207 92 OFFCURVE", "203 114 CURVE", "182 124 OFFCURVE", "163 139 OFFCURVE", "148 159 CURVE", "145 164 OFFCURVE", "145 168 OFFCURVE", "148 173 CURVE", "163 193 OFFCURVE", "181 208 OFFCURVE", "202 218 CURVE", "206 240 OFFCURVE", "212 263 OFFCURVE", "221 284 CURVE SMOOTH", "225 294 OFFCURVE", "232 295 OFFCURVE", "240 289 CURVE SMOOTH", "335 219 LINE", "335 219 LINE", "342 225 OFFCURVE", "349 231 OFFCURVE", "355 238 CURVE", "285 333 LINE SMOOTH", "279 341 OFFCURVE", "282 347 OFFCURVE", "291 351 CURVE", "321 363 OFFCURVE", "350 370 OFFCURVE", "380 373 CURVE", "417 502 OFFCURVE", "486 619 OFFCURVE", "587 723 CURVE", "604 739 OFFCURVE", "618 741 OFFCURVE", "630 730 CURVE SMOOTH", "642 719 OFFCURVE", "641 705 OFFCURVE", "630 687 CURVE", "561 586 OFFCURVE", "512 479 OFFCURVE", "483 365 CURVE" ); }, { closed = 1; nodes = ( "481 469 OFFCURVE", "534 587 OFFCURVE", "610 700 CURVE SMOOTH", "615 707 OFFCURVE", "616 711 OFFCURVE", "614 712 CURVE", "611 711 OFFCURVE", "608 709 OFFCURVE", "605 705 CURVE SMOOTH", "505 602 OFFCURVE", "438 488 OFFCURVE", "402 361 CURVE", "399 350 LINE", "371 349 OFFCURVE", "343 343 OFFCURVE", "314 334 CURVE", "371 257 LINE", "378 267 OFFCURVE", "384 276 OFFCURVE", "389 284 CURVE SMOOTH", "394 292 OFFCURVE", "400 296 OFFCURVE", "406 296 CURVE SMOOTH", "412 296 OFFCURVE", "418 292 OFFCURVE", "423 284 CURVE SMOOTH", "428 276 OFFCURVE", "435 267 OFFCURVE", "442 257 CURVE", "445 257 LINE", "502 334 LINE", "486 340 OFFCURVE", "470 343 OFFCURVE", "454 346 CURVE" ); }, { closed = 1; nodes = ( "228 111 OFFCURVE", "231 92 OFFCURVE", "238 72 CURVE", "315 129 LINE", "315 130 LINE", "306 137 OFFCURVE", "297 144 OFFCURVE", "289 149 CURVE SMOOTH", "281 154 OFFCURVE", "278 160 OFFCURVE", "278 166 CURVE SMOOTH", "278 172 OFFCURVE", "282 178 OFFCURVE", "290 183 CURVE SMOOTH", "298 188 OFFCURVE", "306 195 OFFCURVE", "315 202 CURVE", "315 203 LINE", "238 260 LINE", "231 241 OFFCURVE", "228 222 OFFCURVE", "225 202 CURVE", "213 196 LINE SMOOTH", "198 189 OFFCURVE", "185 179 OFFCURVE", "174 166 CURVE", "185 153 OFFCURVE", "198 143 OFFCURVE", "213 136 CURVE SMOOTH", "225 131 LINE" ); }, { closed = 1; nodes = ( "505 194 OFFCURVE", "515 188 OFFCURVE", "523 183 CURVE SMOOTH", "531 178 OFFCURVE", "534 172 OFFCURVE", "534 166 CURVE SMOOTH", "534 160 OFFCURVE", "530 154 OFFCURVE", "522 149 CURVE SMOOTH", "514 144 OFFCURVE", "505 138 OFFCURVE", "496 130 CURVE", "496 129 LINE", "573 72 LINE", "580 92 OFFCURVE", "584 111 OFFCURVE", "587 131 CURVE", "599 136 LINE", "614 143 OFFCURVE", "627 153 OFFCURVE", "638 166 CURVE", "627 179 OFFCURVE", "614 189 OFFCURVE", "599 196 CURVE SMOOTH", "587 202 LINE", "584 222 OFFCURVE", "580 241 OFFCURVE", "573 260 CURVE", "496 203 LINE", "496 202 LINE" ); }, { closed = 1; nodes = ( "470 -11 OFFCURVE", "486 -8 OFFCURVE", "502 -2 CURVE", "445 75 LINE", "442 75 LINE", "435 65 OFFCURVE", "428 56 OFFCURVE", "423 48 CURVE SMOOTH", "418 40 OFFCURVE", "413 36 OFFCURVE", "407 36 CURVE SMOOTH", "401 36 OFFCURVE", "395 40 OFFCURVE", "390 48 CURVE SMOOTH", "385 56 OFFCURVE", "378 65 OFFCURVE", "371 74 CURVE", "314 -2 LINE", "342 -11 OFFCURVE", "371 -17 OFFCURVE", "399 -18 CURVE", "401 -27 LINE", "436 -155 OFFCURVE", "504 -271 OFFCURVE", "605 -375 CURVE SMOOTH", "609 -379 OFFCURVE", "612 -381 OFFCURVE", "614 -382 CURVE", "615 -380 OFFCURVE", "614 -376 OFFCURVE", "610 -370 CURVE", "539 -269 OFFCURVE", "487 -150 OFFCURVE", "454 -14 CURVE" ); } ); width = 714; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "348 155 OFFCURVE", "353 141 OFFCURVE", "362 128 CURVE SMOOTH", "371 115 OFFCURVE", "384 108 OFFCURVE", "400 108 CURVE SMOOTH", "416 108 OFFCURVE", "431 114 OFFCURVE", "444 123 CURVE SMOOTH", "457 132 OFFCURVE", "463 145 OFFCURVE", "463 161 CURVE SMOOTH", "463 177 OFFCURVE", "458 191 OFFCURVE", "449 204 CURVE SMOOTH", "440 217 OFFCURVE", "427 224 OFFCURVE", "411 224 CURVE SMOOTH", "395 224 OFFCURVE", "380 219 OFFCURVE", "367 209 CURVE SMOOTH", "354 199 OFFCURVE", "348 187 OFFCURVE", "348 171 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "514 365 OFFCURVE", "529 359 OFFCURVE", "536 354 CURVE SMOOTH", "543 349 OFFCURVE", "544 341 OFFCURVE", "539 331 CURVE SMOOTH", "538 330 OFFCURVE", "538 329 OFFCURVE", "537 328 CURVE SMOOTH", "469 236 LINE", "472 233 OFFCURVE", "475 231 OFFCURVE", "478 229 CURVE", "567 295 LINE SMOOTH", "579 304 OFFCURVE", "589 302 OFFCURVE", "596 290 CURVE", "603 279 OFFCURVE", "610 257 OFFCURVE", "616 223 CURVE", "636 212 OFFCURVE", "654 198 OFFCURVE", "669 178 CURVE", "669 177 LINE", "673 170 OFFCURVE", "673 162 OFFCURVE", "669 155 CURVE", "669 155 LINE", "654 135 OFFCURVE", "637 119 OFFCURVE", "616 109 CURVE", "609 72 OFFCURVE", "600 48 OFFCURVE", "590 37 CURVE SMOOTH", "584 31 OFFCURVE", "576 30 OFFCURVE", "567 37 CURVE", "477 104 LINE", "469 96 LINE", "537 4 LINE", "545 -8 OFFCURVE", "543 -18 OFFCURVE", "528 -26 CURVE SMOOTH", "527 -26 OFFCURVE", "524 -28 OFFCURVE", "518 -30 CURVE SMOOTH", "512 -32 OFFCURVE", "504 -36 OFFCURVE", "492 -39 CURVE", "522 -156 OFFCURVE", "570 -260 OFFCURVE", "636 -352 CURVE", "636 -353 LINE", "649 -374 OFFCURVE", "648 -392 OFFCURVE", "634 -406 CURVE SMOOTH", "620 -420 OFFCURVE", "602 -417 OFFCURVE", "583 -398 CURVE SMOOTH", "582 -397 OFFCURVE", "582 -397 OFFCURVE", "582 -397 CURVE SMOOTH", "481 -293 OFFCURVE", "412 -177 OFFCURVE", "374 -48 CURVE", "345 -44 OFFCURVE", "316 -37 OFFCURVE", "288 -26 CURVE", "288 -26 LINE", "274 -20 OFFCURVE", "271 -11 OFFCURVE", "278 1 CURVE SMOOTH", "279 2 OFFCURVE", "279 3 OFFCURVE", "279 4 CURVE SMOOTH", "345 93 LINE", "341 98 OFFCURVE", "338 101 OFFCURVE", "335 104 CURVE", "244 37 LINE", "232 29 OFFCURVE", "222 31 OFFCURVE", "214 45 CURVE", "214 46 LINE", "206 67 OFFCURVE", "200 88 OFFCURVE", "196 109 CURVE", "175 120 OFFCURVE", "158 135 OFFCURVE", "143 155 CURVE", "139 163 OFFCURVE", "139 171 OFFCURVE", "143 178 CURVE", "158 198 OFFCURVE", "175 213 OFFCURVE", "196 223 CURVE", "203 260 OFFCURVE", "210 283 OFFCURVE", "217 292 CURVE SMOOTH", "224 301 OFFCURVE", "232 302 OFFCURVE", "242 296 CURVE SMOOTH", "243 295 OFFCURVE", "243 295 OFFCURVE", "244 295 CURVE SMOOTH", "334 228 LINE", "338 232 OFFCURVE", "342 235 OFFCURVE", "346 239 CURVE", "279 328 LINE", "271 340 OFFCURVE", "274 350 OFFCURVE", "288 358 CURVE", "288 358 LINE", "317 369 OFFCURVE", "346 377 OFFCURVE", "374 380 CURVE", "412 508 OFFCURVE", "481 624 OFFCURVE", "582 728 CURVE", "602 747 OFFCURVE", "620 749 OFFCURVE", "634 735 CURVE SMOOTH", "648 721 OFFCURVE", "649 704 OFFCURVE", "636 683 CURVE", "569 585 OFFCURVE", "521 481 OFFCURVE", "492 371 CURVE" ); }, { closed = 1; nodes = ( "472 458 OFFCURVE", "516 564 OFFCURVE", "579 667 CURVE", "497 574 OFFCURVE", "441 471 OFFCURVE", "409 359 CURVE", "406 348 LINE", "405 345 OFFCURVE", "402 342 OFFCURVE", "399 342 CURVE SMOOTH", "375 341 OFFCURVE", "351 337 OFFCURVE", "327 330 CURVE", "371 270 LINE", "376 277 OFFCURVE", "380 284 OFFCURVE", "385 291 CURVE SMOOTH", "390 298 OFFCURVE", "397 303 OFFCURVE", "406 303 CURVE SMOOTH", "415 303 OFFCURVE", "422 299 OFFCURVE", "428 291 CURVE SMOOTH", "434 283 OFFCURVE", "439 274 OFFCURVE", "444 267 CURVE", "490 330 LINE", "478 334 OFFCURVE", "465 337 OFFCURVE", "453 339 CURVE SMOOTH", "449 340 OFFCURVE", "447 342 OFFCURVE", "447 347 CURVE SMOOTH", "447 348 LINE SMOOTH" ); }, { closed = 1; nodes = ( "230 137 OFFCURVE", "232 131 OFFCURVE", "233 122 CURVE SMOOTH", "234 113 OFFCURVE", "237 100 OFFCURVE", "242 84 CURVE", "304 130 LINE", "297 135 OFFCURVE", "290 141 OFFCURVE", "282 146 CURVE SMOOTH", "274 151 OFFCURVE", "270 157 OFFCURVE", "271 166 CURVE SMOOTH", "272 175 OFFCURVE", "276 182 OFFCURVE", "283 187 CURVE SMOOTH", "290 192 OFFCURVE", "297 197 OFFCURVE", "304 202 CURVE", "242 248 LINE", "237 232 OFFCURVE", "234 216 OFFCURVE", "232 201 CURVE SMOOTH", "231 198 OFFCURVE", "230 196 OFFCURVE", "228 195 CURVE SMOOTH", "216 189 LINE SMOOTH", "204 183 OFFCURVE", "193 176 OFFCURVE", "184 166 CURVE", "194 156 OFFCURVE", "204 149 OFFCURVE", "216 143 CURVE SMOOTH", "228 138 LINE SMOOTH" ); }, { closed = 1; nodes = ( "515 197 OFFCURVE", "522 191 OFFCURVE", "530 186 CURVE SMOOTH", "538 181 OFFCURVE", "542 174 OFFCURVE", "541 165 CURVE SMOOTH", "540 156 OFFCURVE", "537 150 OFFCURVE", "529 145 CURVE SMOOTH", "521 140 OFFCURVE", "514 135 OFFCURVE", "508 130 CURVE", "569 84 LINE", "574 100 OFFCURVE", "578 116 OFFCURVE", "580 132 CURVE SMOOTH", "581 135 OFFCURVE", "582 137 OFFCURVE", "584 138 CURVE", "596 143 LINE", "608 149 OFFCURVE", "619 157 OFFCURVE", "628 166 CURVE", "619 176 OFFCURVE", "608 183 OFFCURVE", "596 189 CURVE SMOOTH", "584 195 LINE SMOOTH", "582 196 OFFCURVE", "579 202 OFFCURVE", "578 211 CURVE SMOOTH", "577 220 OFFCURVE", "574 233 OFFCURVE", "569 248 CURVE", "508 202 LINE" ); }, { closed = 1; nodes = ( "453 -7 OFFCURVE", "455 -6 OFFCURVE", "462 -5 CURVE SMOOTH", "469 -4 OFFCURVE", "478 -2 OFFCURVE", "490 2 CURVE", "443 65 LINE", "437 58 OFFCURVE", "432 50 OFFCURVE", "427 42 CURVE SMOOTH", "422 34 OFFCURVE", "416 29 OFFCURVE", "407 29 CURVE SMOOTH", "398 29 OFFCURVE", "390 33 OFFCURVE", "385 41 CURVE SMOOTH", "380 49 OFFCURVE", "376 56 OFFCURVE", "371 62 CURVE", "327 2 LINE", "352 -5 OFFCURVE", "375 -9 OFFCURVE", "399 -10 CURVE", "403 -11 OFFCURVE", "405 -13 OFFCURVE", "406 -16 CURVE SMOOTH", "408 -26 LINE", "439 -139 OFFCURVE", "496 -242 OFFCURVE", "578 -335 CURVE", "519 -242 OFFCURVE", "476 -136 OFFCURVE", "447 -16 CURVE SMOOTH", "446 -12 OFFCURVE", "448 -8 OFFCURVE", "452 -7 CURVE SMOOTH" ); } ); width = 714; } ); unicode = FD3E; }, { glyphname = "parenright-ar"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "375 188 OFFCURVE", "365 206 OFFCURVE", "347 219 CURVE SMOOTH", "335 227 OFFCURVE", "323 231 OFFCURVE", "309 231 CURVE SMOOTH", "287 231 OFFCURVE", "269 222 OFFCURVE", "255 204 CURVE SMOOTH", "247 192 OFFCURVE", "244 180 OFFCURVE", "244 166 CURVE SMOOTH", "244 144 OFFCURVE", "253 126 OFFCURVE", "271 113 CURVE SMOOTH", "283 105 OFFCURVE", "295 101 OFFCURVE", "309 101 CURVE SMOOTH", "331 101 OFFCURVE", "349 110 OFFCURVE", "362 128 CURVE SMOOTH", "370 139 OFFCURVE", "375 152 OFFCURVE", "375 166 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "202 479 OFFCURVE", "153 586 OFFCURVE", "84 687 CURVE", "73 705 OFFCURVE", "73 719 OFFCURVE", "85 730 CURVE SMOOTH", "97 741 OFFCURVE", "110 739 OFFCURVE", "127 723 CURVE", "228 619 OFFCURVE", "297 502 OFFCURVE", "334 373 CURVE", "364 370 OFFCURVE", "394 363 OFFCURVE", "424 351 CURVE", "433 347 OFFCURVE", "435 341 OFFCURVE", "429 333 CURVE SMOOTH", "360 238 LINE", "367 231 OFFCURVE", "372 225 OFFCURVE", "379 219 CURVE", "379 219 LINE", "475 289 LINE SMOOTH", "483 295 OFFCURVE", "490 294 OFFCURVE", "494 284 CURVE SMOOTH", "502 263 OFFCURVE", "508 240 OFFCURVE", "512 218 CURVE", "533 208 OFFCURVE", "551 193 OFFCURVE", "566 173 CURVE", "569 168 OFFCURVE", "569 164 OFFCURVE", "566 159 CURVE", "551 139 OFFCURVE", "533 124 OFFCURVE", "512 114 CURVE", "508 92 OFFCURVE", "502 70 OFFCURVE", "494 48 CURVE", "490 39 OFFCURVE", "483 37 OFFCURVE", "475 43 CURVE SMOOTH", "379 113 LINE SMOOTH", "378 114 OFFCURVE", "372 108 OFFCURVE", "360 94 CURVE", "429 0 LINE SMOOTH", "435 -8 OFFCURVE", "433 -15 OFFCURVE", "424 -19 CURVE", "394 -31 OFFCURVE", "364 -38 OFFCURVE", "335 -41 CURVE", "298 -170 OFFCURVE", "229 -287 OFFCURVE", "127 -392 CURVE", "111 -408 OFFCURVE", "97 -411 OFFCURVE", "85 -400 CURVE SMOOTH", "73 -389 OFFCURVE", "73 -374 OFFCURVE", "84 -356 CURVE", "152 -261 OFFCURVE", "201 -153 OFFCURVE", "231 -33 CURVE", "217 -29 OFFCURVE", "204 -26 OFFCURVE", "192 -21 CURVE SMOOTH", "180 -16 OFFCURVE", "177 -8 OFFCURVE", "183 0 CURVE SMOOTH", "253 95 LINE SMOOTH", "253 96 OFFCURVE", "253 96 OFFCURVE", "254 96 CURVE", "249 102 OFFCURVE", "244 107 OFFCURVE", "238 113 CURVE", "143 43 LINE SMOOTH", "137 39 OFFCURVE", "132 39 OFFCURVE", "129 42 CURVE SMOOTH", "119 52 OFFCURVE", "112 76 OFFCURVE", "105 114 CURVE", "84 124 OFFCURVE", "66 139 OFFCURVE", "51 159 CURVE", "48 164 OFFCURVE", "48 168 OFFCURVE", "51 173 CURVE", "66 193 OFFCURVE", "84 208 OFFCURVE", "105 218 CURVE", "109 240 OFFCURVE", "116 262 OFFCURVE", "125 284 CURVE SMOOTH", "129 294 OFFCURVE", "135 295 OFFCURVE", "143 289 CURVE SMOOTH", "238 219 LINE", "244 225 OFFCURVE", "249 230 OFFCURVE", "254 236 CURVE", "253 237 OFFCURVE", "253 237 OFFCURVE", "253 237 CURVE SMOOTH", "183 333 LINE SMOOTH", "177 341 OFFCURVE", "180 348 OFFCURVE", "192 353 CURVE SMOOTH", "204 358 OFFCURVE", "217 361 OFFCURVE", "231 365 CURVE" ); }, { closed = 1; nodes = ( "244 343 OFFCURVE", "228 340 OFFCURVE", "212 334 CURVE", "269 257 LINE", "272 257 LINE", "280 267 OFFCURVE", "287 276 OFFCURVE", "292 284 CURVE SMOOTH", "297 292 OFFCURVE", "303 296 OFFCURVE", "309 296 CURVE SMOOTH", "315 296 OFFCURVE", "320 292 OFFCURVE", "325 284 CURVE SMOOTH", "330 276 OFFCURVE", "336 267 OFFCURVE", "343 257 CURVE", "400 334 LINE", "371 343 OFFCURVE", "343 349 OFFCURVE", "316 350 CURVE", "313 361 LINE", "277 488 OFFCURVE", "210 602 OFFCURVE", "110 705 CURVE SMOOTH", "107 709 OFFCURVE", "104 711 OFFCURVE", "101 712 CURVE", "99 711 OFFCURVE", "100 707 OFFCURVE", "105 700 CURVE SMOOTH", "181 587 OFFCURVE", "233 469 OFFCURVE", "260 346 CURVE" ); }, { closed = 1; nodes = ( "501 136 LINE SMOOTH", "516 143 OFFCURVE", "530 153 OFFCURVE", "541 166 CURVE", "530 179 OFFCURVE", "516 189 OFFCURVE", "501 196 CURVE SMOOTH", "490 202 LINE", "487 222 OFFCURVE", "483 241 OFFCURVE", "476 260 CURVE", "399 203 LINE", "399 202 LINE", "409 195 OFFCURVE", "418 188 OFFCURVE", "425 183 CURVE SMOOTH", "432 178 OFFCURVE", "437 172 OFFCURVE", "437 166 CURVE SMOOTH", "437 160 OFFCURVE", "433 154 OFFCURVE", "425 149 CURVE SMOOTH", "417 144 OFFCURVE", "408 137 OFFCURVE", "399 130 CURVE", "399 129 LINE", "476 72 LINE", "483 92 OFFCURVE", "487 111 OFFCURVE", "490 131 CURVE" ); }, { closed = 1; nodes = ( "218 203 LINE", "141 260 LINE", "134 241 OFFCURVE", "130 222 OFFCURVE", "127 202 CURVE", "116 196 LINE SMOOTH", "100 189 OFFCURVE", "87 179 OFFCURVE", "77 166 CURVE", "88 153 OFFCURVE", "101 143 OFFCURVE", "116 136 CURVE", "127 131 LINE", "130 111 OFFCURVE", "134 92 OFFCURVE", "141 72 CURVE", "218 129 LINE", "218 130 LINE", "209 138 OFFCURVE", "201 144 OFFCURVE", "193 149 CURVE SMOOTH", "185 154 OFFCURVE", "181 160 OFFCURVE", "180 166 CURVE SMOOTH", "179 172 OFFCURVE", "184 178 OFFCURVE", "192 183 CURVE SMOOTH", "200 188 OFFCURVE", "209 194 OFFCURVE", "218 202 CURVE" ); }, { closed = 1; nodes = ( "227 -150 OFFCURVE", "176 -269 OFFCURVE", "105 -370 CURVE", "101 -376 OFFCURVE", "100 -380 OFFCURVE", "101 -382 CURVE", "104 -381 OFFCURVE", "107 -379 OFFCURVE", "110 -375 CURVE SMOOTH", "211 -271 OFFCURVE", "279 -155 OFFCURVE", "314 -27 CURVE", "316 -18 LINE", "344 -17 OFFCURVE", "372 -11 OFFCURVE", "400 -2 CURVE", "344 74 LINE", "336 65 OFFCURVE", "330 56 OFFCURVE", "325 48 CURVE SMOOTH", "320 40 OFFCURVE", "314 36 OFFCURVE", "308 36 CURVE SMOOTH", "302 36 OFFCURVE", "296 40 OFFCURVE", "291 48 CURVE SMOOTH", "286 56 OFFCURVE", "280 65 OFFCURVE", "273 75 CURVE", "269 75 LINE", "212 -2 LINE", "228 -8 OFFCURVE", "244 -11 OFFCURVE", "260 -14 CURVE" ); } ); width = 714; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "367 187 OFFCURVE", "360 199 OFFCURVE", "347 209 CURVE SMOOTH", "334 219 OFFCURVE", "319 224 OFFCURVE", "303 224 CURVE SMOOTH", "287 224 OFFCURVE", "274 217 OFFCURVE", "265 204 CURVE SMOOTH", "256 191 OFFCURVE", "251 177 OFFCURVE", "251 161 CURVE SMOOTH", "251 145 OFFCURVE", "258 132 OFFCURVE", "271 123 CURVE SMOOTH", "284 114 OFFCURVE", "298 108 OFFCURVE", "314 108 CURVE SMOOTH", "330 108 OFFCURVE", "343 115 OFFCURVE", "352 128 CURVE SMOOTH", "361 141 OFFCURVE", "367 155 OFFCURVE", "367 171 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "194 481 OFFCURVE", "146 585 OFFCURVE", "79 683 CURVE", "65 704 OFFCURVE", "66 721 OFFCURVE", "81 735 CURVE SMOOTH", "96 749 OFFCURVE", "113 747 OFFCURVE", "133 728 CURVE", "234 624 OFFCURVE", "303 508 OFFCURVE", "341 380 CURVE", "370 377 OFFCURVE", "398 369 OFFCURVE", "427 358 CURVE", "427 358 LINE", "441 350 OFFCURVE", "444 340 OFFCURVE", "436 328 CURVE", "369 239 LINE", "372 235 OFFCURVE", "376 232 OFFCURVE", "380 228 CURVE", "471 295 LINE SMOOTH", "472 295 OFFCURVE", "472 295 OFFCURVE", "473 296 CURVE SMOOTH", "483 302 OFFCURVE", "492 301 OFFCURVE", "498 292 CURVE SMOOTH", "504 283 OFFCURVE", "512 260 OFFCURVE", "519 223 CURVE", "540 213 OFFCURVE", "557 198 OFFCURVE", "572 178 CURVE", "576 171 OFFCURVE", "576 163 OFFCURVE", "572 155 CURVE", "557 135 OFFCURVE", "540 120 OFFCURVE", "519 109 CURVE", "515 88 OFFCURVE", "508 67 OFFCURVE", "500 46 CURVE", "500 45 LINE", "492 31 OFFCURVE", "483 29 OFFCURVE", "471 37 CURVE", "380 104 LINE", "376 100 OFFCURVE", "376 100 OFFCURVE", "369 93 CURVE", "436 4 LINE SMOOTH", "436 3 OFFCURVE", "436 2 OFFCURVE", "437 1 CURVE SMOOTH", "444 -11 OFFCURVE", "441 -20 OFFCURVE", "427 -26 CURVE", "427 -26 LINE", "398 -37 OFFCURVE", "370 -44 OFFCURVE", "341 -48 CURVE", "303 -177 OFFCURVE", "234 -293 OFFCURVE", "133 -397 CURVE SMOOTH", "132 -397 OFFCURVE", "132 -397 OFFCURVE", "131 -398 CURVE SMOOTH", "112 -417 OFFCURVE", "96 -420 OFFCURVE", "81 -406 CURVE SMOOTH", "66 -392 OFFCURVE", "65 -374 OFFCURVE", "78 -353 CURVE", "79 -352 LINE", "145 -260 OFFCURVE", "193 -156 OFFCURVE", "223 -39 CURVE", "211 -36 OFFCURVE", "203 -32 OFFCURVE", "197 -30 CURVE SMOOTH", "191 -28 OFFCURVE", "188 -26 OFFCURVE", "187 -26 CURVE SMOOTH", "173 -18 OFFCURVE", "170 -8 OFFCURVE", "178 4 CURVE", "245 96 LINE", "237 104 LINE", "147 37 LINE", "137 30 OFFCURVE", "130 31 OFFCURVE", "124 37 CURVE SMOOTH", "114 48 OFFCURVE", "106 72 OFFCURVE", "99 109 CURVE", "79 119 OFFCURVE", "61 135 OFFCURVE", "46 155 CURVE", "45 155 LINE", "40 162 OFFCURVE", "40 170 OFFCURVE", "45 177 CURVE", "46 178 LINE", "61 198 OFFCURVE", "79 212 OFFCURVE", "99 223 CURVE", "106 257 OFFCURVE", "112 279 OFFCURVE", "119 290 CURVE", "126 302 OFFCURVE", "135 304 OFFCURVE", "147 295 CURVE SMOOTH", "237 229 LINE", "240 231 OFFCURVE", "242 233 OFFCURVE", "245 236 CURVE", "178 328 LINE SMOOTH", "177 329 OFFCURVE", "177 330 OFFCURVE", "176 331 CURVE SMOOTH", "171 341 OFFCURVE", "172 349 OFFCURVE", "179 354 CURVE SMOOTH", "186 359 OFFCURVE", "201 365 OFFCURVE", "223 371 CURVE" ); }, { closed = 1; nodes = ( "268 347 LINE SMOOTH", "268 342 OFFCURVE", "266 340 OFFCURVE", "262 339 CURVE SMOOTH", "250 337 OFFCURVE", "237 334 OFFCURVE", "225 330 CURVE", "271 267 LINE", "276 274 OFFCURVE", "281 283 OFFCURVE", "287 291 CURVE SMOOTH", "293 299 OFFCURVE", "300 303 OFFCURVE", "309 303 CURVE SMOOTH", "318 303 OFFCURVE", "324 298 OFFCURVE", "329 291 CURVE SMOOTH", "334 284 OFFCURVE", "339 277 OFFCURVE", "344 270 CURVE", "388 330 LINE", "364 337 OFFCURVE", "339 341 OFFCURVE", "315 342 CURVE SMOOTH", "312 342 OFFCURVE", "310 345 OFFCURVE", "309 348 CURVE", "306 359 LINE", "275 471 OFFCURVE", "218 574 OFFCURVE", "136 667 CURVE", "199 564 OFFCURVE", "243 458 OFFCURVE", "268 348 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "498 143 LINE SMOOTH", "510 149 OFFCURVE", "521 156 OFFCURVE", "531 166 CURVE", "521 176 OFFCURVE", "510 183 OFFCURVE", "498 189 CURVE SMOOTH", "487 195 LINE SMOOTH", "484 196 OFFCURVE", "483 198 OFFCURVE", "482 201 CURVE SMOOTH", "480 216 OFFCURVE", "478 232 OFFCURVE", "473 248 CURVE", "410 202 LINE", "417 197 OFFCURVE", "424 192 OFFCURVE", "431 187 CURVE SMOOTH", "438 182 OFFCURVE", "442 175 OFFCURVE", "443 166 CURVE SMOOTH", "444 157 OFFCURVE", "440 151 OFFCURVE", "432 146 CURVE SMOOTH", "424 141 OFFCURVE", "417 135 OFFCURVE", "410 130 CURVE", "473 84 LINE", "478 100 OFFCURVE", "481 113 OFFCURVE", "482 122 CURVE SMOOTH", "483 131 OFFCURVE", "485 137 OFFCURVE", "487 138 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "146 248 LINE", "141 233 OFFCURVE", "137 220 OFFCURVE", "136 211 CURVE SMOOTH", "135 202 OFFCURVE", "133 196 OFFCURVE", "131 195 CURVE SMOOTH", "119 189 LINE SMOOTH", "107 183 OFFCURVE", "97 176 OFFCURVE", "87 166 CURVE", "97 157 OFFCURVE", "107 149 OFFCURVE", "119 143 CURVE", "131 138 LINE", "133 137 OFFCURVE", "134 135 OFFCURVE", "135 132 CURVE SMOOTH", "137 116 OFFCURVE", "141 100 OFFCURVE", "146 84 CURVE", "207 130 LINE", "200 135 OFFCURVE", "193 140 OFFCURVE", "186 145 CURVE SMOOTH", "179 150 OFFCURVE", "175 156 OFFCURVE", "174 165 CURVE SMOOTH", "173 174 OFFCURVE", "177 181 OFFCURVE", "185 186 CURVE SMOOTH", "193 191 OFFCURVE", "200 197 OFFCURVE", "207 202 CURVE" ); }, { closed = 1; nodes = ( "267 -8 OFFCURVE", "269 -12 OFFCURVE", "268 -16 CURVE SMOOTH", "239 -136 OFFCURVE", "196 -242 OFFCURVE", "137 -335 CURVE", "219 -242 OFFCURVE", "276 -139 OFFCURVE", "307 -26 CURVE", "309 -16 LINE SMOOTH", "310 -13 OFFCURVE", "312 -11 OFFCURVE", "315 -10 CURVE", "338 -9 OFFCURVE", "363 -5 OFFCURVE", "388 2 CURVE", "344 62 LINE", "339 56 OFFCURVE", "334 49 OFFCURVE", "329 41 CURVE SMOOTH", "324 33 OFFCURVE", "317 29 OFFCURVE", "308 29 CURVE SMOOTH", "299 29 OFFCURVE", "292 34 OFFCURVE", "287 42 CURVE SMOOTH", "282 50 OFFCURVE", "277 58 OFFCURVE", "271 65 CURVE", "225 2 LINE", "237 -2 OFFCURVE", "245 -4 OFFCURVE", "252 -5 CURVE SMOOTH", "259 -6 OFFCURVE", "262 -7 OFFCURVE", "263 -7 CURVE SMOOTH" ); } ); width = 714; } ); unicode = FD3F; }, { glyphname = uniFD50; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "teh-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 780; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "teh-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 780; } ); unicode = FD50; subCategory = ""; }, { glyphname = uniFD51; layers = ( { components = ( { name = "jeem-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1494; }, { components = ( { name = "jeem-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1494; } ); unicode = FD51; subCategory = ""; }, { glyphname = uniFD52; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 666, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1253; }, { components = ( { name = "jeem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "teh-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 666, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1253; } ); unicode = FD52; subCategory = ""; }, { glyphname = uniFD53; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "teh-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 780; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "teh-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 780; } ); unicode = FD53; subCategory = ""; }, { glyphname = uniFD54; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "khah-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "teh-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 780; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "khah-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "teh-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 780; } ); unicode = FD54; subCategory = ""; }, { glyphname = uniFD55; layers = ( { components = ( { name = "jeem-ar.medi.BaaMemHaaInit"; }, { name = "meem-ar.medi.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 84, 0}"; }, { name = "teh-ar.init.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 344, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 654; }, { components = ( { name = "jeem-ar.medi.BaaMemHaaInit"; }, { name = "meem-ar.medi.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 84, 0}"; }, { name = "teh-ar.init.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 344, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 654; } ); unicode = FD55; subCategory = ""; }, { glyphname = uniFD56; layers = ( { components = ( { name = "hah-ar.medi.BaaMemHaaInit"; }, { name = "meem-ar.medi.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 84, 0}"; }, { name = "teh-ar.init.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 344, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 654; }, { components = ( { name = "hah-ar.medi.BaaMemHaaInit"; }, { name = "meem-ar.medi.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 84, 0}"; }, { name = "teh-ar.init.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 344, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 654; } ); unicode = FD56; subCategory = ""; }, { glyphname = uniFD57; layers = ( { components = ( { name = "khah-ar.medi.BaaMemHaaInit"; }, { name = "meem-ar.medi.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 84, 0}"; }, { name = "teh-ar.init.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 344, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 654; }, { components = ( { name = "khah-ar.medi.BaaMemHaaInit"; }, { name = "meem-ar.medi.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 84, 0}"; }, { name = "teh-ar.init.BaaMemHaaInit"; transform = "{1, 0, 0, 1, 344, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 654; } ); unicode = FD57; subCategory = ""; }, { glyphname = uniFD58; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1713; }, { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1713; } ); unicode = FD58; subCategory = ""; }, { glyphname = uniFD59; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "jeem-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 827, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1341; }, { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "jeem-ar.init.HaaMemInit"; transform = "{1, 0, 0, 1, 827, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1341; } ); unicode = FD59; subCategory = ""; }, { glyphname = uniFD5A; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FD5A; subCategory = ""; }, { glyphname = uniFD5B; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FD5B; subCategory = ""; }, { glyphname = uniFD5C; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 666, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1309; }, { components = ( { name = "jeem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 666, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1309; } ); unicode = FD5C; subCategory = ""; }, { glyphname = uniFD5D; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 666, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1309; }, { components = ( { name = "hah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 666, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1309; } ); unicode = FD5D; subCategory = ""; }, { glyphname = uniFD5E; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1765; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1765; } ); unicode = FD5E; subCategory = ""; }, { glyphname = uniFD5F; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1672; }, { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1672; } ); unicode = FD5F; subCategory = ""; }, { glyphname = uniFD60; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 784, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1310; }, { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 784, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1310; } ); unicode = FD60; subCategory = ""; }, { glyphname = uniFD61; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 784, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1310; }, { components = ( { name = "jeem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 784, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1310; } ); unicode = FD61; subCategory = ""; }, { glyphname = uniFD62; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1555; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1555; } ); unicode = FD62; subCategory = ""; }, { glyphname = uniFD63; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1163; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "seen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1163; } ); unicode = FD63; subCategory = ""; }, { glyphname = uniFD64; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "sad-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1972; }, { components = ( { name = "hah-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "sad-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1972; } ); unicode = FD64; subCategory = ""; }, { glyphname = uniFD65; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "sad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 666, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1474; }, { components = ( { name = "hah-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "sad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 666, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1474; } ); unicode = FD65; subCategory = ""; }, { glyphname = uniFD66; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "sad-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1708; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "sad-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1708; } ); unicode = FD66; subCategory = ""; }, { glyphname = uniFD67; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1701; }, { components = ( { name = "meem-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1701; } ); unicode = FD67; subCategory = ""; }, { glyphname = uniFD68; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 519, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1163; }, { components = ( { name = "meem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "sheen-ar.init.SenHaaInit"; transform = "{1, 0, 0, 1, 519, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1163; } ); unicode = FD68; subCategory = ""; }, { glyphname = uniFD69; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1765; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1765; } ); unicode = FD69; subCategory = ""; }, { glyphname = uniFD6A; layers = ( { components = ( { name = "khah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1672; }, { components = ( { name = "khah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1672; } ); unicode = FD6A; subCategory = ""; }, { glyphname = uniFD6B; layers = ( { components = ( { name = "khah-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "sheen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 784, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1310; }, { components = ( { name = "khah-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "sheen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 784, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1310; } ); unicode = FD6B; subCategory = ""; }, { glyphname = uniFD6C; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1555; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1555; } ); unicode = FD6C; subCategory = ""; }, { glyphname = uniFD6D; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "sheen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1163; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "sheen-ar.init.SenMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1163; } ); unicode = FD6D; subCategory = ""; }, { glyphname = uniFD6E; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "dad-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1918; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "dad-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1918; } ); unicode = FD6E; subCategory = ""; }, { glyphname = uniFD6F; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "dad-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1855; }, { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "dad-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1855; } ); unicode = FD6F; subCategory = ""; }, { glyphname = uniFD70; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "khah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 519, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1327; }, { components = ( { name = "meem-ar.medi"; }, { name = "khah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "dad-ar.init.SadHaaInit"; transform = "{1, 0, 0, 1, 519, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1327; } ); unicode = FD70; subCategory = ""; }, { glyphname = uniFD71; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1655; }, { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1655; } ); unicode = FD71; subCategory = ""; }, { glyphname = uniFD72; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 1074, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1642; }, { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 1074, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1642; } ); unicode = FD72; subCategory = ""; }, { glyphname = uniFD73; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 928, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1495; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 928, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1495; } ); unicode = FD73; subCategory = ""; }, { glyphname = uniFD74; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1601; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "tah-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1601; } ); unicode = FD74; subCategory = ""; }, { glyphname = uniFD75; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1499; }, { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1499; } ); unicode = FD75; subCategory = ""; }, { glyphname = uniFD76; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1352; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1352; } ); unicode = FD76; subCategory = ""; }, { glyphname = uniFD77; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "ain-ar.init.AynMemInit"; transform = "{1, 0, 0, 1, 681, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1171; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "ain-ar.init.AynMemInit"; transform = "{1, 0, 0, 1, 681, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1171; } ); unicode = FD77; subCategory = ""; }, { glyphname = uniFD78; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1416; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1416; } ); unicode = FD78; subCategory = ""; }, { glyphname = uniFD79; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "ghain-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1352; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "ghain-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1352; } ); unicode = FD79; subCategory = ""; }, { glyphname = uniFD7A; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ghain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1416; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ghain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1416; } ); unicode = FD7A; subCategory = ""; }, { glyphname = uniFD7B; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ghain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1416; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ghain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1416; } ); unicode = FD7B; subCategory = ""; }, { glyphname = uniFD7C; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "feh-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1511; }, { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "feh-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1511; } ); unicode = FD7C; subCategory = ""; }, { glyphname = uniFD7D; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "khah-ar.medi.FaaHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 537, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1121; }, { components = ( { name = "meem-ar.medi"; }, { name = "khah-ar.medi.FaaHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "feh-ar.init.FaaHaaInit"; transform = "{1, 0, 0, 1, 537, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1121; } ); unicode = FD7D; subCategory = ""; }, { glyphname = uniFD7E; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "qaf-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1481; }, { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "qaf-ar.medi"; transform = "{1, 0, 0, 1, 1104, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1481; } ); unicode = FD7E; subCategory = ""; }, { glyphname = uniFD7F; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "qaf-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1364; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "qaf-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1364; } ); unicode = FD7F; subCategory = ""; }, { glyphname = uniFD80; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1330; }, { components = ( { name = "meem-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1330; } ); unicode = FD80; subCategory = ""; }, { glyphname = uniFD81; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1394; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1394; } ); unicode = FD81; subCategory = ""; }, { glyphname = uniFD82; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1394; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1394; } ); unicode = FD82; subCategory = ""; }, { glyphname = uniFD83; layers = ( { components = ( { name = "jeem-ar.medi.2LamHaaHaaInit"; }, { name = "jeem-ar.medi.1LamHaaHaaInit"; transform = "{1, 0, 0, 1, 70, 0}"; }, { name = "lam-ar.init.LamHaaHaaInit"; transform = "{1, 0, 0, 1, 183, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { components = ( { name = "jeem-ar.medi.2LamHaaHaaInit"; }, { name = "jeem-ar.medi.1LamHaaHaaInit"; transform = "{1, 0, 0, 1, 70, 0}"; }, { name = "lam-ar.init.LamHaaHaaInit"; transform = "{1, 0, 0, 1, 183, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); unicode = FD83; subCategory = ""; }, { glyphname = uniFD84; layers = ( { components = ( { name = "jeem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1447; }, { components = ( { name = "jeem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1447; } ); unicode = FD84; subCategory = ""; }, { glyphname = uniFD85; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1330; }, { components = ( { name = "meem-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1330; } ); unicode = FD85; subCategory = ""; }, { glyphname = uniFD86; layers = ( { components = ( { name = "meem-ar.medi.LamHaaMemInit"; }, { name = "khah-ar.medi.LamHaaMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; }, { name = "lam-ar.init.LamHaaMemInit"; transform = "{1, 0, 0, 1, 179, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { components = ( { name = "meem-ar.medi.LamHaaMemInit"; }, { name = "khah-ar.medi.LamHaaMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; }, { name = "lam-ar.init.LamHaaMemInit"; transform = "{1, 0, 0, 1, 179, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); unicode = FD86; subCategory = ""; }, { glyphname = uniFD87; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "lam-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 876, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1109; }, { components = ( { name = "hah-ar.fina"; }, { name = "meem-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "lam-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 876, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1109; } ); unicode = FD87; subCategory = ""; }, { glyphname = uniFD88; layers = ( { components = ( { name = "hah-ar.medi.LamMemHaaInit"; }, { name = "meem-ar.medi.LamMemHaaInit"; transform = "{1, 0, 0, 1, 58, 0}"; }, { name = "lam-ar.init.LamMemHaaInit"; transform = "{1, 0, 0, 1, 355, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 634; }, { components = ( { name = "hah-ar.medi.LamMemHaaInit"; }, { name = "meem-ar.medi.LamMemHaaInit"; transform = "{1, 0, 0, 1, 58, 0}"; }, { name = "lam-ar.init.LamMemHaaInit"; transform = "{1, 0, 0, 1, 355, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 634; } ); unicode = FD88; subCategory = ""; }, { glyphname = uniFD89; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1215; }, { components = ( { name = "jeem-ar.medi"; }, { name = "hah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1215; } ); unicode = FD89; subCategory = ""; }, { glyphname = uniFD8A; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 412, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 412, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); unicode = FD8A; subCategory = ""; }, { glyphname = uniFD8B; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FD8B; subCategory = ""; }, { glyphname = uniFD8C; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1215; }, { components = ( { name = "hah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1215; } ); unicode = FD8C; subCategory = ""; }, { glyphname = uniFD8D; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 412, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 412, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); unicode = FD8D; subCategory = ""; }, { glyphname = uniFD8E; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "khah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1215; }, { components = ( { name = "jeem-ar.medi"; }, { name = "khah-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1215; } ); unicode = FD8E; subCategory = ""; }, { glyphname = uniFD8F; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "khah-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 412, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "khah-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 412, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); unicode = FD8F; subCategory = ""; }, { glyphname = uniFD92; layers = ( { components = ( { name = "khah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1215; }, { components = ( { name = "khah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "meem-ar.init.MemHaaInit"; transform = "{1, 0, 0, 1, 666, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1215; } ); unicode = FD92; subCategory = ""; }, { glyphname = uniFD93; layers = ( { components = ( { name = "jeem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "heh-ar.init.HehMemInit"; transform = "{1, 0, 0, 1, 827, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1278; }, { components = ( { name = "jeem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "heh-ar.init.HehMemInit"; transform = "{1, 0, 0, 1, 827, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1278; } ); unicode = FD93; subCategory = ""; }, { glyphname = uniFD94; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "heh-ar.init.HehMemInit"; transform = "{1, 0, 0, 1, 681, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "heh-ar.init.HehMemInit"; transform = "{1, 0, 0, 1, 681, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); unicode = FD94; subCategory = ""; }, { glyphname = uniFD95; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "noon-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 780; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "hah-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "noon-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 780; } ); unicode = FD95; subCategory = ""; }, { glyphname = uniFD96; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FD96; subCategory = ""; }, { glyphname = uniFD97; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1376; }, { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1376; } ); unicode = FD97; subCategory = ""; }, { glyphname = uniFD98; layers = ( { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "noon-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 780; }, { components = ( { name = "meem-ar.medi.KafMemMedi"; }, { name = "jeem-ar.medi.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 217, 0}"; }, { name = "noon-ar.init.BaaHaaMemInit"; transform = "{1, 0, 0, 1, 427, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 780; } ); unicode = FD98; subCategory = ""; }, { glyphname = uniFD99; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FD99; subCategory = ""; }, { glyphname = uniFD9A; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1293; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1293; } ); unicode = FD9A; subCategory = ""; }, { glyphname = uniFD9B; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1293; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1293; } ); unicode = FD9B; subCategory = ""; }, { glyphname = uniFD9C; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1230; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 986, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1230; } ); unicode = FD9C; subCategory = ""; }, { glyphname = uniFD9D; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.BaaMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "yeh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 902; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.BaaMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "yeh-ar.init.BaaMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 902; } ); unicode = FD9D; subCategory = ""; }, { glyphname = uniFD9E; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "beh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "beh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FD9E; subCategory = ""; }, { glyphname = uniFD9F; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FD9F; subCategory = ""; }, { glyphname = uniFDA0; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDA0; subCategory = ""; }, { glyphname = uniFDA1; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDA1; subCategory = ""; }, { glyphname = uniFDA2; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDA2; subCategory = ""; }, { glyphname = uniFDA3; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1293; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1293; } ); unicode = FDA3; subCategory = ""; }, { glyphname = uniFDA4; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1293; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "teh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1293; } ); unicode = FDA4; subCategory = ""; }, { glyphname = uniFDA5; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FDA5; subCategory = ""; }, { glyphname = uniFDA6; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1806; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1806; } ); unicode = FDA6; subCategory = ""; }, { glyphname = uniFDA7; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FDA7; subCategory = ""; }, { glyphname = uniFDA8; layers = ( { components = ( { name = "alefMaksura-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1765; }, { components = ( { name = "alefMaksura-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1765; } ); unicode = FDA8; subCategory = ""; }, { glyphname = uniFDA9; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "sad-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1918; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "sad-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1918; } ); unicode = FDA9; subCategory = ""; }, { glyphname = uniFDAA; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1765; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "sheen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1765; } ); unicode = FDAA; subCategory = ""; }, { glyphname = uniFDAB; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "dad-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1918; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "dad-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1918; } ); unicode = FDAB; subCategory = ""; }, { glyphname = uniFDAC; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1394; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1394; } ); unicode = FDAC; subCategory = ""; }, { glyphname = uniFDAD; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 823, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1055; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "lam-ar.medi.LamMemMedi"; transform = "{1, 0, 0, 1, 823, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1055; } ); unicode = FDAD; subCategory = ""; }, { glyphname = uniFDAE; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDAE; subCategory = ""; }, { glyphname = uniFDAF; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDAF; subCategory = ""; }, { glyphname = uniFDB0; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1293; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1293; } ); unicode = FDB0; subCategory = ""; }, { glyphname = uniFDB1; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1513; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1513; } ); unicode = FDB1; subCategory = ""; }, { glyphname = uniFDB2; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "qaf-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1428; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "qaf-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1428; } ); unicode = FDB2; subCategory = ""; }, { glyphname = uniFDB3; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDB3; subCategory = ""; }, { glyphname = uniFDB4; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "qaf-ar.init.FaaMemInit"; transform = "{1, 0, 0, 1, 827, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1002; }, { components = ( { name = "hah-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "qaf-ar.init.FaaMemInit"; transform = "{1, 0, 0, 1, 827, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1002; } ); unicode = FDB4; subCategory = ""; }, { glyphname = uniFDB5; layers = ( { components = ( { name = "meem-ar.medi.LamHaaMemInit"; }, { name = "hah-ar.medi.LamHaaMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; }, { name = "lam-ar.init.LamHaaMemInit"; transform = "{1, 0, 0, 1, 179, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { components = ( { name = "meem-ar.medi.LamHaaMemInit"; }, { name = "hah-ar.medi.LamHaaMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; }, { name = "lam-ar.init.LamHaaMemInit"; transform = "{1, 0, 0, 1, 179, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); unicode = FDB5; subCategory = ""; }, { glyphname = uniFDB6; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1416; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1416; } ); unicode = FDB6; subCategory = ""; }, { glyphname = uniFDB7; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "kaf-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 803, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1367; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "kaf-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 803, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1367; } ); unicode = FDB7; subCategory = ""; }, { glyphname = uniFDB8; layers = ( { components = ( { name = "hah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 666, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1253; }, { components = ( { name = "hah-ar.medi"; }, { name = "jeem-ar.medi.SadHaaInit"; transform = "{1, 0, 0, 1, 610, 0}"; }, { name = "noon-ar.init.BaaHaaInit"; transform = "{1, 0, 0, 1, 666, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1253; } ); unicode = FDB8; subCategory = ""; }, { glyphname = uniFDB9; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FDB9; subCategory = ""; }, { glyphname = uniFDBA; layers = ( { components = ( { name = "meem-ar.medi.LamHaaMemInit"; }, { name = "jeem-ar.medi.LamHaaMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; }, { name = "lam-ar.init.LamHaaMemInit"; transform = "{1, 0, 0, 1, 179, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { components = ( { name = "meem-ar.medi.LamHaaMemInit"; }, { name = "jeem-ar.medi.LamHaaMemInit"; transform = "{1, 0, 0, 1, 148, 0}"; }, { name = "lam-ar.init.LamHaaMemInit"; transform = "{1, 0, 0, 1, 179, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); unicode = FDBA; subCategory = ""; }, { glyphname = uniFDBB; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "kaf-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 739, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1304; }, { components = ( { name = "meem-ar.fina"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "kaf-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 739, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1304; } ); unicode = FDBB; subCategory = ""; }, { glyphname = uniFDBC; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1330; }, { components = ( { name = "meem-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 1133, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1330; } ); unicode = FDBC; subCategory = ""; }, { glyphname = uniFDBD; layers = ( { components = ( { name = "hah-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1494; }, { components = ( { name = "hah-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 640, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1250, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1494; } ); unicode = FDBD; subCategory = ""; }, { glyphname = uniFDBE; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1806; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1806; } ); unicode = FDBE; subCategory = ""; }, { glyphname = uniFDBF; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1806; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1806; } ); unicode = FDBF; subCategory = ""; }, { glyphname = uniFDC0; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1660; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1660; } ); unicode = FDC0; subCategory = ""; }, { glyphname = uniFDC1; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "feh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1428; }, { components = ( { name = "yeh-ar.fina"; }, { name = "meem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "feh-ar.medi"; transform = "{1, 0, 0, 1, 1050, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1428; } ); unicode = FDC1; subCategory = ""; }, { glyphname = uniFDC2; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "beh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "hah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "beh-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDC2; subCategory = ""; }, { glyphname = uniFDC3; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "kaf-ar.init.KafMemInit"; transform = "{1, 0, 0, 1, 681, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1222; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "kaf-ar.init.KafMemInit"; transform = "{1, 0, 0, 1, 681, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1222; } ); unicode = FDC3; subCategory = ""; }, { glyphname = uniFDC4; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "jeem-ar.medi.AynHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "ain-ar.init.AynHaaInit"; transform = "{1, 0, 0, 1, 519, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1064; }, { components = ( { name = "meem-ar.medi"; }, { name = "jeem-ar.medi.AynHaaInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "ain-ar.init.AynHaaInit"; transform = "{1, 0, 0, 1, 519, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1064; } ); unicode = FDC4; subCategory = ""; }, { glyphname = uniFDC5; layers = ( { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "sad-ar.init.SadMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1288; }, { components = ( { name = "meem-ar.medi"; }, { name = "meem-ar.medi.SenMemInit"; transform = "{1, 0, 0, 1, 464, 0}"; }, { name = "sad-ar.init.SadMemInit"; transform = "{1, 0, 0, 1, 638, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1288; } ); unicode = FDC5; subCategory = ""; }, { glyphname = uniFDC6; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1765; }, { components = ( { name = "yeh-ar.fina"; }, { name = "khah-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "seen-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1765; } ); unicode = FDC6; subCategory = ""; }, { glyphname = uniFDC7; layers = ( { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1440; }, { components = ( { name = "yeh-ar.fina"; }, { name = "jeem-ar.medi"; transform = "{1, 0, 0, 1, 586, 0}"; }, { name = "noon-ar.medi"; transform = "{1, 0, 0, 1, 1196, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1440; } ); unicode = FDC7; subCategory = ""; }, { glyphname = uniFDF0; layers = ( { components = ( { name = "yehbarree-ar.fina"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 571, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 769, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1467; }, { components = ( { name = "yehbarree-ar.fina"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 571, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 769, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1467; } ); unicode = FDF0; subCategory = ""; }, { glyphname = uniFDF1; layers = ( { components = ( { name = "yehbarree-ar.fina"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 571, 0}"; }, { name = "qaf-ar.init"; transform = "{1, 0, 0, 1, 769, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1064; }, { components = ( { name = "yehbarree-ar.fina"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 571, 0}"; }, { name = "qaf-ar.init"; transform = "{1, 0, 0, 1, 769, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1064; } ); unicode = FDF1; }, { glyphname = uniFDF2; layers = ( { components = ( { name = "heh-ar.fina.Lellah"; }, { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 222, -79}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 217, -215}"; }, { name = "lam-ar.medi.Lellah"; transform = "{1, 0, 0, 1, 352, 0}"; }, { name = "lam-ar.init.Lellah"; transform = "{1, 0, 0, 1, 583, 0}"; }, { name = "alef-ar"; transform = "{1, 0, 0, 1, 739, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 956; }, { components = ( { name = "heh-ar.fina.Lellah"; }, { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 222, -79}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 217, -215}"; }, { name = "lam-ar.medi.Lellah"; transform = "{1, 0, 0, 1, 352, 0}"; }, { name = "lam-ar.init.Lellah"; transform = "{1, 0, 0, 1, 583, 0}"; }, { name = "alef-ar"; transform = "{1, 0, 0, 1, 739, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 956; } ); unicode = FDF2; subCategory = ""; }, { glyphname = uniFDF3; layers = ( { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "beh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; }, { name = "kaf-ar.init"; transform = "{1, 0, 0, 1, 551, 0}"; }, { name = "alef-ar"; transform = "{1, 0, 0, 1, 1210, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1427; }, { components = ( { name = "reh-ar.fina.BaaRaaFina"; }, { name = "beh-ar.medi.BaaRaaFina"; transform = "{1, 0, 0, 1, 292, 0}"; }, { name = "kaf-ar.init"; transform = "{1, 0, 0, 1, 551, 0}"; }, { name = "alef-ar"; transform = "{1, 0, 0, 1, 1210, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1427; } ); unicode = FDF3; subCategory = ""; }, { glyphname = uniFDF4; layers = ( { components = ( { name = "dal-ar.fina"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 471, 0}"; }, { name = "hah-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 688, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 883, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1203; }, { components = ( { name = "dal-ar.fina"; }, { name = "meem-ar.medi.KafMemMedi"; transform = "{1, 0, 0, 1, 471, 0}"; }, { name = "hah-ar.medi.MemHaaMemInit"; transform = "{1, 0, 0, 1, 688, 0}"; }, { name = "meem-ar.init.MemHaaMemInit"; transform = "{1, 0, 0, 1, 883, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1203; } ); unicode = FDF4; subCategory = ""; }, { glyphname = uniFDF5; layers = ( { components = ( { name = "meem-ar.fina"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 889, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 1086, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1784; }, { components = ( { name = "meem-ar.fina"; }, { name = "ain-ar.medi"; transform = "{1, 0, 0, 1, 522, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 889, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 1086, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1784; } ); unicode = FDF5; subCategory = ""; }, { glyphname = uniFDF6; layers = ( { components = ( { name = "lam-ar"; }, { name = "waw-ar.fina"; transform = "{1, 0, 0, 1, 604, 0}"; }, { name = "seen-ar.init"; transform = "{1, 0, 0, 1, 949, 0}"; }, { name = "reh-ar"; transform = "{1, 0, 0, 1, 1518, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1917; }, { components = ( { name = "lam-ar"; }, { name = "waw-ar.fina"; transform = "{1, 0, 0, 1, 604, 0}"; }, { name = "seen-ar.init"; transform = "{1, 0, 0, 1, 949, 0}"; }, { name = "reh-ar"; transform = "{1, 0, 0, 1, 1518, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1917; } ); unicode = FDF6; subCategory = ""; }, { glyphname = uniFDF7; layers = ( { components = ( { name = "heh-ar.fina"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 379, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 624, 0}"; }, { name = "ain-ar.init.Finjani"; transform = "{1, 0, 0, 1, 821, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1211; }, { components = ( { name = "heh-ar.fina"; }, { name = "yeh-ar.medi"; transform = "{1, 0, 0, 1, 379, 0}"; }, { name = "lam-ar.medi"; transform = "{1, 0, 0, 1, 624, 0}"; }, { name = "ain-ar.init.Finjani"; transform = "{1, 0, 0, 1, 821, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1211; } ); unicode = FDF7; subCategory = ""; }, { glyphname = uniFDF8; layers = ( { components = ( { name = "meem-ar.fina.LamMemFina"; }, { name = "lam-ar.medi.LamMemFina"; transform = "{1, 0, 0, 1, 229, 0}"; }, { name = "seen-ar.init"; transform = "{1, 0, 0, 1, 483, 0}"; }, { name = "waw-ar"; transform = "{1, 0, 0, 1, 1052, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1452; }, { components = ( { name = "meem-ar.fina.LamMemFina"; }, { name = "lam-ar.medi.LamMemFina"; transform = "{1, 0, 0, 1, 229, 0}"; }, { name = "seen-ar.init"; transform = "{1, 0, 0, 1, 483, 0}"; }, { name = "waw-ar"; transform = "{1, 0, 0, 1, 1052, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1452; } ); unicode = FDF8; subCategory = ""; }, { glyphname = uniFDF9; layers = ( { components = ( { name = "alefMaksura-ar.fina.LamYaaFina"; }, { name = "lam-ar.medi.LamYaaFina"; transform = "{1, 0, 0, 1, 469, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 665, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1363; }, { components = ( { name = "alefMaksura-ar.fina.LamYaaFina"; }, { name = "lam-ar.medi.LamYaaFina"; transform = "{1, 0, 0, 1, 469, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 665, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1363; } ); unicode = FDF9; subCategory = ""; }, { glyphname = uniFDFA; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "462 373 LINE", "464 388 OFFCURVE", "467 395 OFFCURVE", "469 397 CURVE SMOOTH", "482 409 OFFCURVE", "492 428 OFFCURVE", "500 453 CURVE SMOOTH", "508 478 OFFCURVE", "509 508 OFFCURVE", "505 541 CURVE SMOOTH", "499 586 OFFCURVE", "496 618 OFFCURVE", "493 638 CURVE SMOOTH", "478 746 LINE SMOOTH", "477 752 OFFCURVE", "482 775 OFFCURVE", "492 817 CURVE SMOOTH", "493 820 OFFCURVE", "495 821 OFFCURVE", "498 821 CURVE SMOOTH", "501 821 OFFCURVE", "503 819 OFFCURVE", "503 817 CURVE SMOOTH", "526 657 OFFCURVE", "547 561 OFFCURVE", "566 529 CURVE SMOOTH", "585 497 OFFCURVE", "612 481 OFFCURVE", "647 483 CURVE SMOOTH", "687 485 OFFCURVE", "721 500 OFFCURVE", "748 526 CURVE", "751 531 OFFCURVE", "754 533 OFFCURVE", "759 533 CURVE SMOOTH", "764 533 OFFCURVE", "768 531 OFFCURVE", "772 525 CURVE", "784 507 OFFCURVE", "804 493 OFFCURVE", "832 484 CURVE", "848 502 OFFCURVE", "863 518 OFFCURVE", "879 532 CURVE SMOOTH", "926 572 OFFCURVE", "964 592 OFFCURVE", "992 592 CURVE SMOOTH", "1002 592 OFFCURVE", "1015 586 OFFCURVE", "1031 575 CURVE SMOOTH", "1047 564 OFFCURVE", "1055 553 OFFCURVE", "1055 542 CURVE SMOOTH", "1055 531 OFFCURVE", "1050 516 OFFCURVE", "1039 496 CURVE SMOOTH", "1028 476 OFFCURVE", "1021 465 OFFCURVE", "1017 461 CURVE", "982 436 OFFCURVE", "937 424 OFFCURVE", "881 424 CURVE", "859 424 OFFCURVE", "838 427 OFFCURVE", "819 432 CURVE", "804 386 LINE SMOOTH", "803 383 OFFCURVE", "801 381 OFFCURVE", "797 380 CURVE", "790 380 OFFCURVE", "786 384 OFFCURVE", "785 391 CURVE", "785 393 LINE", "787 406 OFFCURVE", "792 421 OFFCURVE", "799 439 CURVE", "780 447 OFFCURVE", "767 456 OFFCURVE", "759 465 CURVE SMOOTH", "751 474 OFFCURVE", "746 479 OFFCURVE", "744 479 CURVE SMOOTH", "742 479 OFFCURVE", "738 476 OFFCURVE", "733 471 CURVE SMOOTH", "705 444 OFFCURVE", "672 431 OFFCURVE", "631 432 CURVE SMOOTH", "590 433 OFFCURVE", "558 459 OFFCURVE", "532 509 CURVE", "530 477 OFFCURVE", "519 442 OFFCURVE", "498 405 CURVE", "534 399 OFFCURVE", "556 392 OFFCURVE", "567 384 CURVE SMOOTH", "578 376 OFFCURVE", "583 371 OFFCURVE", "583 368 CURVE SMOOTH", "586 335 OFFCURVE", "576 310 OFFCURVE", "554 292 CURVE", "500 249 OFFCURVE", "447 228 OFFCURVE", "393 228 CURVE SMOOTH", "339 228 OFFCURVE", "300 241 OFFCURVE", "276 268 CURVE SMOOTH", "234 315 OFFCURVE", "244 387 OFFCURVE", "304 488 CURVE SMOOTH", "305 490 OFFCURVE", "307 491 OFFCURVE", "310 492 CURVE", "316 491 OFFCURVE", "318 488 OFFCURVE", "315 482 CURVE", "295 448 OFFCURVE", "284 424 OFFCURVE", "281 411 CURVE SMOOTH", "275 382 OFFCURVE", "279 355 OFFCURVE", "292 330 CURVE SMOOTH", "310 296 OFFCURVE", "349 280 OFFCURVE", "407 284 CURVE SMOOTH", "465 288 OFFCURVE", "517 310 OFFCURVE", "561 348 CURVE", "548 355 OFFCURVE", "515 364 OFFCURVE", "463 373 CURVE" ); }, { closed = 1; nodes = ( "997 525 OFFCURVE", "979 533 OFFCURVE", "960 533 CURVE SMOOTH", "941 533 OFFCURVE", "921 526 OFFCURVE", "899 512 CURVE SMOOTH", "877 498 OFFCURVE", "862 487 OFFCURVE", "855 479 CURVE", "877 476 OFFCURVE", "909 476 OFFCURVE", "950 481 CURVE SMOOTH", "991 486 OFFCURVE", "1014 493 OFFCURVE", "1019 504 CURVE SMOOTH", "1019 505 OFFCURVE", "1018 506 OFFCURVE", "1017 507 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "411 433 OFFCURVE", "409 432 OFFCURVE", "407 432 CURVE SMOOTH", "405 432 OFFCURVE", "404 435 OFFCURVE", "404 441 CURVE SMOOTH", "404 492 OFFCURVE", "403 528 OFFCURVE", "400 548 CURVE SMOOTH", "397 574 OFFCURVE", "394 610 OFFCURVE", "389 655 CURVE", "376 765 LINE SMOOTH", "375 771 OFFCURVE", "377 777 OFFCURVE", "379 784 CURVE SMOOTH", "392 813 LINE SMOOTH", "395 820 OFFCURVE", "396 823 OFFCURVE", "398 823 CURVE SMOOTH", "400 823 OFFCURVE", "401 820 OFFCURVE", "402 814 CURVE SMOOTH", "415 672 LINE", "429 546 OFFCURVE", "429 467 OFFCURVE", "413 436 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "205 812 OFFCURVE", "208 813 OFFCURVE", "211 813 CURVE SMOOTH", "214 813 OFFCURVE", "216 811 OFFCURVE", "216 806 CURVE SMOOTH", "216 793 OFFCURVE", "221 786 OFFCURVE", "230 786 CURVE SMOOTH", "239 786 OFFCURVE", "244 791 OFFCURVE", "245 802 CURVE SMOOTH", "246 813 OFFCURVE", "250 818 OFFCURVE", "254 818 CURVE", "257 817 OFFCURVE", "259 812 OFFCURVE", "259 802 CURVE SMOOTH", "259 792 OFFCURVE", "256 780 OFFCURVE", "250 766 CURVE SMOOTH", "244 752 OFFCURVE", "237 745 OFFCURVE", "227 745 CURVE SMOOTH", "217 745 OFFCURVE", "209 748 OFFCURVE", "202 755 CURVE", "194 741 OFFCURVE", "184 734 OFFCURVE", "172 734 CURVE SMOOTH", "154 734 OFFCURVE", "146 743 OFFCURVE", "146 761 CURVE SMOOTH", "146 775 OFFCURVE", "147 787 OFFCURVE", "150 796 CURVE SMOOTH", "153 805 OFFCURVE", "157 810 OFFCURVE", "160 810 CURVE SMOOTH", "163 810 OFFCURVE", "165 808 OFFCURVE", "165 803 CURVE SMOOTH", "164 793 LINE SMOOTH", "164 788 OFFCURVE", "166 783 OFFCURVE", "169 777 CURVE SMOOTH", "172 771 OFFCURVE", "178 770 OFFCURVE", "185 774 CURVE SMOOTH", "192 778 OFFCURVE", "197 789 OFFCURVE", "203 807 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "206 593 OFFCURVE", "197 637 OFFCURVE", "195 652 CURVE SMOOTH", "193 667 OFFCURVE", "194 678 OFFCURVE", "197 682 CURVE SMOOTH", "213 708 LINE SMOOTH", "217 714 OFFCURVE", "220 712 OFFCURVE", "222 704 CURVE", "222 704 OFFCURVE", "226 678 OFFCURVE", "234 625 CURVE SMOOTH", "242 572 OFFCURVE", "250 538 OFFCURVE", "259 525 CURVE SMOOTH", "275 500 OFFCURVE", "294 492 OFFCURVE", "318 499 CURVE", "318 508 OFFCURVE", "312 536 OFFCURVE", "301 584 CURVE SMOOTH", "290 632 OFFCURVE", "284 659 OFFCURVE", "283 666 CURVE SMOOTH", "282 673 OFFCURVE", "283 678 OFFCURVE", "285 682 CURVE SMOOTH", "299 706 LINE SMOOTH", "302 711 OFFCURVE", "305 709 OFFCURVE", "308 700 CURVE", "336 568 LINE", "342 538 OFFCURVE", "345 516 OFFCURVE", "343 500 CURVE SMOOTH", "338 455 OFFCURVE", "325 433 OFFCURVE", "304 433 CURVE SMOOTH", "287 433 OFFCURVE", "274 437 OFFCURVE", "264 447 CURVE SMOOTH", "254 457 OFFCURVE", "243 471 OFFCURVE", "233 490 CURVE", "219 451 OFFCURVE", "196 432 OFFCURVE", "164 433 CURVE SMOOTH", "132 434 OFFCURVE", "113 453 OFFCURVE", "107 490 CURVE", "95 472 OFFCURVE", "85 462 OFFCURVE", "76 460 CURVE SMOOTH", "46 453 OFFCURVE", "22 457 OFFCURVE", "4 469 CURVE", "-2 474 OFFCURVE", "-2 484 OFFCURVE", "3 499 CURVE SMOOTH", "8 514 OFFCURVE", "20 530 OFFCURVE", "38 546 CURVE SMOOTH", "56 561 OFFCURVE", "76 572 OFFCURVE", "98 577 CURVE", "97 604 LINE", "97 604 LINE", "97 614 OFFCURVE", "104 630 OFFCURVE", "118 650 CURVE SMOOTH", "122 656 OFFCURVE", "124 656 OFFCURVE", "125 649 CURVE", "125 640 OFFCURVE", "125 617 OFFCURVE", "126 583 CURVE SMOOTH", "128 522 OFFCURVE", "142 492 OFFCURVE", "168 492 CURVE SMOOTH", "194 492 OFFCURVE", "213 501 OFFCURVE", "221 520 CURVE" ); }, { closed = 1; nodes = ( "93 548 OFFCURVE", "81 545 OFFCURVE", "68 538 CURVE SMOOTH", "55 531 OFFCURVE", "47 524 OFFCURVE", "42 517 CURVE", "49 512 OFFCURVE", "59 510 OFFCURVE", "73 511 CURVE SMOOTH", "87 512 OFFCURVE", "97 515 OFFCURVE", "102 519 CURVE", "101 524 OFFCURVE", "101 534 OFFCURVE", "100 550 CURVE" ); }, { closed = 1; nodes = ( "94 365 LINE SMOOTH", "94 373 OFFCURVE", "96 378 OFFCURVE", "100 382 CURVE SMOOTH", "111 394 LINE SMOOTH", "116 399 OFFCURVE", "119 396 OFFCURVE", "120 388 CURVE", "120 385 OFFCURVE", "121 364 OFFCURVE", "125 324 CURVE SMOOTH", "134 223 OFFCURVE", "201 172 OFFCURVE", "325 172 CURVE SMOOTH", "434 172 OFFCURVE", "511 192 OFFCURVE", "556 229 CURVE", "586 190 OFFCURVE", "612 176 OFFCURVE", "635 191 CURVE SMOOTH", "658 206 OFFCURVE", "672 225 OFFCURVE", "678 248 CURVE", "661 331 OFFCURVE", "650 442 OFFCURVE", "646 582 CURVE SMOOTH", "646 587 OFFCURVE", "648 592 OFFCURVE", "651 598 CURVE SMOOTH", "672 638 LINE SMOOTH", "673 639 OFFCURVE", "674 640 OFFCURVE", "676 641 CURVE", "677 641 OFFCURVE", "678 639 OFFCURVE", "678 635 CURVE SMOOTH", "686 478 OFFCURVE", "694 377 OFFCURVE", "700 333 CURVE SMOOTH", "712 241 OFFCURVE", "750 193 OFFCURVE", "813 187 CURVE", "801 204 OFFCURVE", "795 225 OFFCURVE", "795 250 CURVE SMOOTH", "795 275 OFFCURVE", "805 298 OFFCURVE", "827 319 CURVE SMOOTH", "875 366 OFFCURVE", "921 364 OFFCURVE", "966 314 CURVE SMOOTH", "970 310 OFFCURVE", "971 305 OFFCURVE", "968 301 CURVE", "965 297 OFFCURVE", "962 296 OFFCURVE", "957 298 CURVE SMOOTH", "921 310 OFFCURVE", "885 310 OFFCURVE", "850 298 CURVE SMOOTH", "832 291 OFFCURVE", "823 283 OFFCURVE", "823 274 CURVE SMOOTH", "823 265 OFFCURVE", "829 250 OFFCURVE", "842 229 CURVE SMOOTH", "855 208 OFFCURVE", "871 199 OFFCURVE", "891 199 CURVE SMOOTH", "923 200 OFFCURVE", "960 212 OFFCURVE", "1000 236 CURVE SMOOTH", "1023 249 OFFCURVE", "1031 250 OFFCURVE", "1025 237 CURVE", "1009 199 LINE", "1007 193 OFFCURVE", "999 186 OFFCURVE", "983 177 CURVE SMOOTH", "928 147 OFFCURVE", "869 134 OFFCURVE", "808 135 CURVE SMOOTH", "747 136 OFFCURVE", "707 164 OFFCURVE", "688 218 CURVE", "685 211 OFFCURVE", "680 201 OFFCURVE", "673 190 CURVE SMOOTH", "645 147 OFFCURVE", "619 129 OFFCURVE", "594 135 CURVE SMOOTH", "577 140 OFFCURVE", "560 151 OFFCURVE", "542 170 CURVE", "492 138 OFFCURVE", "419 122 OFFCURVE", "325 122 CURVE SMOOTH", "212 122 OFFCURVE", "142 159 OFFCURVE", "116 233 CURVE", "106 213 OFFCURVE", "94 201 OFFCURVE", "82 196 CURVE SMOOTH", "70 191 OFFCURVE", "57 190 OFFCURVE", "42 193 CURVE SMOOTH", "15 198 OFFCURVE", "1 208 OFFCURVE", "0 222 CURVE", "0 229 OFFCURVE", "4 239 OFFCURVE", "11 253 CURVE SMOOTH", "18 267 OFFCURVE", "23 276 OFFCURVE", "27 280 CURVE SMOOTH", "43 299 OFFCURVE", "66 315 OFFCURVE", "96 330 CURVE" ); }, { closed = 1; nodes = ( "38 248 OFFCURVE", "49 246 OFFCURVE", "70 246 CURVE SMOOTH", "91 246 OFFCURVE", "103 249 OFFCURVE", "109 254 CURVE", "106 264 OFFCURVE", "103 278 OFFCURVE", "100 296 CURVE", "63 286 OFFCURVE", "42 272 OFFCURVE", "36 255 CURVE" ); }, { closed = 1; nodes = ( "499 102 OFFCURVE", "503 101 OFFCURVE", "512 98 CURVE SMOOTH", "520 95 OFFCURVE", "530 88 OFFCURVE", "542 78 CURVE", "543 76 OFFCURVE", "543 75 OFFCURVE", "543 73 CURVE", "516 31 LINE SMOOTH", "515 30 OFFCURVE", "514 30 OFFCURVE", "511 32 CURVE SMOOTH", "509 34 OFFCURVE", "498 41 OFFCURVE", "479 52 CURVE", "458 18 LINE SMOOTH", "458 19 OFFCURVE", "456 20 OFFCURVE", "452 19 CURVE SMOOTH", "443 18 OFFCURVE", "430 27 OFFCURVE", "413 44 CURVE SMOOTH", "412 45 OFFCURVE", "412 46 OFFCURVE", "412 47 CURVE", "439 87 LINE SMOOTH", "440 88 OFFCURVE", "445 88 OFFCURVE", "452 86 CURVE SMOOTH", "459 84 OFFCURVE", "468 79 OFFCURVE", "478 71 CURVE", "498 101 LINE SMOOTH" ); }, { closed = 1; nodes = ( "812 -111 OFFCURVE", "817 -110 OFFCURVE", "826 -111 CURVE SMOOTH", "835 -112 OFFCURVE", "846 -112 OFFCURVE", "859 -112 CURVE SMOOTH", "872 -112 OFFCURVE", "887 -111 OFFCURVE", "903 -107 CURVE SMOOTH", "919 -103 OFFCURVE", "942 -88 OFFCURVE", "972 -62 CURVE SMOOTH", "1002 -36 OFFCURVE", "1019 -14 OFFCURVE", "1025 4 CURVE", "1023 19 OFFCURVE", "1021 28 OFFCURVE", "1018 30 CURVE", "1009 15 OFFCURVE", "999 8 OFFCURVE", "990 8 CURVE", "960 8 OFFCURVE", "944 22 OFFCURVE", "944 50 CURVE SMOOTH", "944 62 OFFCURVE", "947 78 OFFCURVE", "954 96 CURVE SMOOTH", "967 132 OFFCURVE", "982 150 OFFCURVE", "1000 150 CURVE SMOOTH", "1010 150 OFFCURVE", "1021 141 OFFCURVE", "1032 124 CURVE SMOOTH", "1043 107 OFFCURVE", "1049 87 OFFCURVE", "1049 67 CURVE SMOOTH", "1049 5 OFFCURVE", "1029 -47 OFFCURVE", "990 -92 CURVE SMOOTH", "966 -120 OFFCURVE", "945 -135 OFFCURVE", "928 -136 CURVE SMOOTH", "911 -137 OFFCURVE", "888 -136 OFFCURVE", "858 -131 CURVE SMOOTH", "828 -126 OFFCURVE", "812 -121 OFFCURVE", "812 -115 CURVE SMOOTH", "812 -113 LINE" ); }, { closed = 1; nodes = ( "993 93 OFFCURVE", "982 94 OFFCURVE", "970 78 CURVE", "979 68 OFFCURVE", "990 67 OFFCURVE", "1004 75 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "885 22 OFFCURVE", "886 35 OFFCURVE", "879 59 CURVE", "879 69 OFFCURVE", "881 77 OFFCURVE", "888 83 CURVE SMOOTH", "895 89 OFFCURVE", "899 91 OFFCURVE", "902 86 CURVE SMOOTH", "905 81 OFFCURVE", "906 71 OFFCURVE", "906 56 CURVE SMOOTH", "906 41 OFFCURVE", "905 28 OFFCURVE", "902 16 CURVE SMOOTH", "895 -14 OFFCURVE", "885 -29 OFFCURVE", "873 -30 CURVE", "869 -30 LINE SMOOTH", "844 -30 OFFCURVE", "822 -21 OFFCURVE", "803 -2 CURVE", "787 -39 OFFCURVE", "765 -59 OFFCURVE", "736 -60 CURVE", "717 -60 OFFCURVE", "698 -49 OFFCURVE", "678 -29 CURVE", "628 -57 OFFCURVE", "558 -70 OFFCURVE", "470 -70 CURVE SMOOTH", "319 -70 OFFCURVE", "233 -19 OFFCURVE", "212 84 CURVE", "210 52 OFFCURVE", "202 29 OFFCURVE", "189 12 CURVE", "206 5 OFFCURVE", "219 -5 OFFCURVE", "226 -19 CURVE SMOOTH", "233 -33 OFFCURVE", "229 -55 OFFCURVE", "214 -86 CURVE", "210 -93 OFFCURVE", "203 -96 OFFCURVE", "192 -96 CURVE SMOOTH", "191 -96 LINE", "168 -96 OFFCURVE", "148 -89 OFFCURVE", "131 -77 CURVE", "124 -100 OFFCURVE", "114 -115 OFFCURVE", "101 -122 CURVE SMOOTH", "72 -137 OFFCURVE", "41 -143 OFFCURVE", "8 -140 CURVE SMOOTH", "3 -140 OFFCURVE", "0 -138 OFFCURVE", "0 -134 CURVE", "0 -132 OFFCURVE", "2 -130 OFFCURVE", "6 -128 CURVE SMOOTH", "80 -98 OFFCURVE", "117 -74 OFFCURVE", "117 -54 CURVE SMOOTH", "117 -45 LINE SMOOTH", "117 -19 OFFCURVE", "124 -1 OFFCURVE", "138 9 CURVE SMOOTH", "146 15 OFFCURVE", "154 18 OFFCURVE", "161 19 CURVE", "188 38 OFFCURVE", "201 69 OFFCURVE", "201 114 CURVE SMOOTH", "201 122 LINE", "184 304 LINE", "184 305 LINE SMOOTH", "184 308 OFFCURVE", "185 311 OFFCURVE", "187 316 CURVE SMOOTH", "199 340 LINE SMOOTH", "201 344 OFFCURVE", "204 346 OFFCURVE", "206 346 CURVE SMOOTH", "208 346 OFFCURVE", "212 323 OFFCURVE", "216 277 CURVE SMOOTH", "220 231 OFFCURVE", "224 198 OFFCURVE", "227 177 CURVE SMOOTH", "234 122 OFFCURVE", "247 79 OFFCURVE", "267 50 CURVE", "301 3 OFFCURVE", "371 -20 OFFCURVE", "477 -20 CURVE SMOOTH", "583 -20 OFFCURVE", "660 -2 OFFCURVE", "708 33 CURVE SMOOTH", "713 37 OFFCURVE", "716 37 OFFCURVE", "718 34 CURVE SMOOTH", "721 30 OFFCURVE", "717 23 OFFCURVE", "707 13 CURVE", "718 0 OFFCURVE", "733 -6 OFFCURVE", "753 -5 CURVE", "771 -3 OFFCURVE", "791 22 OFFCURVE", "816 71 CURVE SMOOTH", "817 73 OFFCURVE", "819 75 OFFCURVE", "823 75 CURVE", "827 75 OFFCURVE", "829 72 OFFCURVE", "829 67 CURVE", "823 43 LINE", "836 29 OFFCURVE", "854 22 OFFCURVE", "874 21 CURVE" ); }, { closed = 1; nodes = ( "195 -28 OFFCURVE", "177 -16 OFFCURVE", "152 -16 CURVE SMOOTH", "144 -16 OFFCURVE", "137 -19 OFFCURVE", "132 -26 CURVE", "156 -43 OFFCURVE", "181 -51 OFFCURVE", "208 -52 CURVE" ); }, { closed = 1; nodes = ( "836 821 OFFCURVE", "839 818 OFFCURVE", "833 808 CURVE SMOOTH", "823 791 LINE SMOOTH", "820 786 OFFCURVE", "784 772 OFFCURVE", "715 749 CURVE SMOOTH", "647 726 OFFCURVE", "601 710 OFFCURVE", "577 702 CURVE SMOOTH", "566 698 OFFCURVE", "565 702 OFFCURVE", "573 713 CURVE SMOOTH", "580 723 LINE SMOOTH", "585 730 OFFCURVE", "590 734 OFFCURVE", "597 737 CURVE SMOOTH", "823 816 LINE SMOOTH" ); }, { closed = 1; nodes = ( "1054 765 OFFCURVE", "1057 761 OFFCURVE", "1051 751 CURVE SMOOTH", "1041 735 LINE SMOOTH", "1038 730 OFFCURVE", "1002 716 OFFCURVE", "933 693 CURVE SMOOTH", "865 670 OFFCURVE", "818 654 OFFCURVE", "794 646 CURVE SMOOTH", "783 642 OFFCURVE", "782 646 OFFCURVE", "790 657 CURVE SMOOTH", "797 667 LINE SMOOTH", "802 674 OFFCURVE", "807 679 OFFCURVE", "814 681 CURVE SMOOTH", "1041 760 LINE SMOOTH" ); } ); width = 1055; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "462 373 LINE", "464 388 OFFCURVE", "467 395 OFFCURVE", "469 397 CURVE SMOOTH", "482 409 OFFCURVE", "492 428 OFFCURVE", "500 453 CURVE SMOOTH", "508 478 OFFCURVE", "509 508 OFFCURVE", "505 541 CURVE SMOOTH", "499 586 OFFCURVE", "496 618 OFFCURVE", "493 638 CURVE SMOOTH", "478 746 LINE SMOOTH", "477 752 OFFCURVE", "482 775 OFFCURVE", "492 817 CURVE SMOOTH", "493 820 OFFCURVE", "495 821 OFFCURVE", "498 821 CURVE SMOOTH", "501 821 OFFCURVE", "503 819 OFFCURVE", "503 817 CURVE SMOOTH", "526 657 OFFCURVE", "547 561 OFFCURVE", "566 529 CURVE SMOOTH", "585 497 OFFCURVE", "612 481 OFFCURVE", "647 483 CURVE SMOOTH", "687 485 OFFCURVE", "721 500 OFFCURVE", "748 526 CURVE", "751 531 OFFCURVE", "754 533 OFFCURVE", "759 533 CURVE SMOOTH", "764 533 OFFCURVE", "768 531 OFFCURVE", "772 525 CURVE", "784 507 OFFCURVE", "804 493 OFFCURVE", "832 484 CURVE", "848 502 OFFCURVE", "863 518 OFFCURVE", "879 532 CURVE SMOOTH", "926 572 OFFCURVE", "964 592 OFFCURVE", "992 592 CURVE SMOOTH", "1002 592 OFFCURVE", "1015 586 OFFCURVE", "1031 575 CURVE SMOOTH", "1047 564 OFFCURVE", "1055 553 OFFCURVE", "1055 542 CURVE SMOOTH", "1055 531 OFFCURVE", "1050 516 OFFCURVE", "1039 496 CURVE SMOOTH", "1028 476 OFFCURVE", "1021 465 OFFCURVE", "1017 461 CURVE", "982 436 OFFCURVE", "937 424 OFFCURVE", "881 424 CURVE", "859 424 OFFCURVE", "838 427 OFFCURVE", "819 432 CURVE", "804 386 LINE SMOOTH", "803 383 OFFCURVE", "801 381 OFFCURVE", "797 380 CURVE", "790 380 OFFCURVE", "786 384 OFFCURVE", "785 391 CURVE", "785 393 LINE", "787 406 OFFCURVE", "792 421 OFFCURVE", "799 439 CURVE", "780 447 OFFCURVE", "767 456 OFFCURVE", "759 465 CURVE SMOOTH", "751 474 OFFCURVE", "746 479 OFFCURVE", "744 479 CURVE SMOOTH", "742 479 OFFCURVE", "738 476 OFFCURVE", "733 471 CURVE SMOOTH", "705 444 OFFCURVE", "672 431 OFFCURVE", "631 432 CURVE SMOOTH", "590 433 OFFCURVE", "558 459 OFFCURVE", "532 509 CURVE", "530 477 OFFCURVE", "519 442 OFFCURVE", "498 405 CURVE", "534 399 OFFCURVE", "556 392 OFFCURVE", "567 384 CURVE SMOOTH", "578 376 OFFCURVE", "583 371 OFFCURVE", "583 368 CURVE SMOOTH", "586 335 OFFCURVE", "576 310 OFFCURVE", "554 292 CURVE", "500 249 OFFCURVE", "447 228 OFFCURVE", "393 228 CURVE SMOOTH", "339 228 OFFCURVE", "300 241 OFFCURVE", "276 268 CURVE SMOOTH", "234 315 OFFCURVE", "244 387 OFFCURVE", "304 488 CURVE SMOOTH", "305 490 OFFCURVE", "307 491 OFFCURVE", "310 492 CURVE", "316 491 OFFCURVE", "318 488 OFFCURVE", "315 482 CURVE", "295 448 OFFCURVE", "284 424 OFFCURVE", "281 411 CURVE SMOOTH", "275 382 OFFCURVE", "279 355 OFFCURVE", "292 330 CURVE SMOOTH", "310 296 OFFCURVE", "349 280 OFFCURVE", "407 284 CURVE SMOOTH", "465 288 OFFCURVE", "517 310 OFFCURVE", "561 348 CURVE", "548 355 OFFCURVE", "515 364 OFFCURVE", "463 373 CURVE" ); }, { closed = 1; nodes = ( "997 525 OFFCURVE", "979 533 OFFCURVE", "960 533 CURVE SMOOTH", "941 533 OFFCURVE", "921 526 OFFCURVE", "899 512 CURVE SMOOTH", "877 498 OFFCURVE", "862 487 OFFCURVE", "855 479 CURVE", "877 476 OFFCURVE", "909 476 OFFCURVE", "950 481 CURVE SMOOTH", "991 486 OFFCURVE", "1014 493 OFFCURVE", "1019 504 CURVE SMOOTH", "1019 505 OFFCURVE", "1018 506 OFFCURVE", "1017 507 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "411 433 OFFCURVE", "409 432 OFFCURVE", "407 432 CURVE SMOOTH", "405 432 OFFCURVE", "404 435 OFFCURVE", "404 441 CURVE SMOOTH", "404 492 OFFCURVE", "403 528 OFFCURVE", "400 548 CURVE SMOOTH", "397 574 OFFCURVE", "394 610 OFFCURVE", "389 655 CURVE", "376 765 LINE SMOOTH", "375 771 OFFCURVE", "377 777 OFFCURVE", "379 784 CURVE SMOOTH", "392 813 LINE SMOOTH", "395 820 OFFCURVE", "396 823 OFFCURVE", "398 823 CURVE SMOOTH", "400 823 OFFCURVE", "401 820 OFFCURVE", "402 814 CURVE SMOOTH", "415 672 LINE", "429 546 OFFCURVE", "429 467 OFFCURVE", "413 436 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "205 812 OFFCURVE", "208 813 OFFCURVE", "211 813 CURVE SMOOTH", "214 813 OFFCURVE", "216 811 OFFCURVE", "216 806 CURVE SMOOTH", "216 793 OFFCURVE", "221 786 OFFCURVE", "230 786 CURVE SMOOTH", "239 786 OFFCURVE", "244 791 OFFCURVE", "245 802 CURVE SMOOTH", "246 813 OFFCURVE", "250 818 OFFCURVE", "254 818 CURVE", "257 817 OFFCURVE", "259 812 OFFCURVE", "259 802 CURVE SMOOTH", "259 792 OFFCURVE", "256 780 OFFCURVE", "250 766 CURVE SMOOTH", "244 752 OFFCURVE", "237 745 OFFCURVE", "227 745 CURVE SMOOTH", "217 745 OFFCURVE", "209 748 OFFCURVE", "202 755 CURVE", "194 741 OFFCURVE", "184 734 OFFCURVE", "172 734 CURVE SMOOTH", "154 734 OFFCURVE", "146 743 OFFCURVE", "146 761 CURVE SMOOTH", "146 775 OFFCURVE", "147 787 OFFCURVE", "150 796 CURVE SMOOTH", "153 805 OFFCURVE", "157 810 OFFCURVE", "160 810 CURVE SMOOTH", "163 810 OFFCURVE", "165 808 OFFCURVE", "165 803 CURVE SMOOTH", "164 793 LINE SMOOTH", "164 788 OFFCURVE", "166 783 OFFCURVE", "169 777 CURVE SMOOTH", "172 771 OFFCURVE", "178 770 OFFCURVE", "185 774 CURVE SMOOTH", "192 778 OFFCURVE", "197 789 OFFCURVE", "203 807 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "206 593 OFFCURVE", "197 637 OFFCURVE", "195 652 CURVE SMOOTH", "193 667 OFFCURVE", "194 678 OFFCURVE", "197 682 CURVE SMOOTH", "213 708 LINE SMOOTH", "217 714 OFFCURVE", "220 712 OFFCURVE", "222 704 CURVE", "222 704 OFFCURVE", "226 678 OFFCURVE", "234 625 CURVE SMOOTH", "242 572 OFFCURVE", "250 538 OFFCURVE", "259 525 CURVE SMOOTH", "275 500 OFFCURVE", "294 492 OFFCURVE", "318 499 CURVE", "318 508 OFFCURVE", "312 536 OFFCURVE", "301 584 CURVE SMOOTH", "290 632 OFFCURVE", "284 659 OFFCURVE", "283 666 CURVE SMOOTH", "282 673 OFFCURVE", "283 678 OFFCURVE", "285 682 CURVE SMOOTH", "299 706 LINE SMOOTH", "302 711 OFFCURVE", "305 709 OFFCURVE", "308 700 CURVE", "336 568 LINE", "342 538 OFFCURVE", "345 516 OFFCURVE", "343 500 CURVE SMOOTH", "338 455 OFFCURVE", "325 433 OFFCURVE", "304 433 CURVE SMOOTH", "287 433 OFFCURVE", "274 437 OFFCURVE", "264 447 CURVE SMOOTH", "254 457 OFFCURVE", "243 471 OFFCURVE", "233 490 CURVE", "219 451 OFFCURVE", "196 432 OFFCURVE", "164 433 CURVE SMOOTH", "132 434 OFFCURVE", "113 453 OFFCURVE", "107 490 CURVE", "95 472 OFFCURVE", "85 462 OFFCURVE", "76 460 CURVE SMOOTH", "46 453 OFFCURVE", "22 457 OFFCURVE", "4 469 CURVE", "-2 474 OFFCURVE", "-2 484 OFFCURVE", "3 499 CURVE SMOOTH", "8 514 OFFCURVE", "20 530 OFFCURVE", "38 546 CURVE SMOOTH", "56 561 OFFCURVE", "76 572 OFFCURVE", "98 577 CURVE", "97 604 LINE", "97 604 LINE", "97 614 OFFCURVE", "104 630 OFFCURVE", "118 650 CURVE SMOOTH", "122 656 OFFCURVE", "124 656 OFFCURVE", "125 649 CURVE", "125 640 OFFCURVE", "125 617 OFFCURVE", "126 583 CURVE SMOOTH", "128 522 OFFCURVE", "142 492 OFFCURVE", "168 492 CURVE SMOOTH", "194 492 OFFCURVE", "213 501 OFFCURVE", "221 520 CURVE" ); }, { closed = 1; nodes = ( "93 548 OFFCURVE", "81 545 OFFCURVE", "68 538 CURVE SMOOTH", "55 531 OFFCURVE", "47 524 OFFCURVE", "42 517 CURVE", "49 512 OFFCURVE", "59 510 OFFCURVE", "73 511 CURVE SMOOTH", "87 512 OFFCURVE", "97 515 OFFCURVE", "102 519 CURVE", "101 524 OFFCURVE", "101 534 OFFCURVE", "100 550 CURVE" ); }, { closed = 1; nodes = ( "94 365 LINE SMOOTH", "94 373 OFFCURVE", "96 378 OFFCURVE", "100 382 CURVE SMOOTH", "111 394 LINE SMOOTH", "116 399 OFFCURVE", "119 396 OFFCURVE", "120 388 CURVE", "120 385 OFFCURVE", "121 364 OFFCURVE", "125 324 CURVE SMOOTH", "134 223 OFFCURVE", "201 172 OFFCURVE", "325 172 CURVE SMOOTH", "434 172 OFFCURVE", "511 192 OFFCURVE", "556 229 CURVE", "586 190 OFFCURVE", "612 176 OFFCURVE", "635 191 CURVE SMOOTH", "658 206 OFFCURVE", "672 225 OFFCURVE", "678 248 CURVE", "661 331 OFFCURVE", "650 442 OFFCURVE", "646 582 CURVE SMOOTH", "646 587 OFFCURVE", "648 592 OFFCURVE", "651 598 CURVE SMOOTH", "672 638 LINE SMOOTH", "673 639 OFFCURVE", "674 640 OFFCURVE", "676 641 CURVE", "677 641 OFFCURVE", "678 639 OFFCURVE", "678 635 CURVE SMOOTH", "686 478 OFFCURVE", "694 377 OFFCURVE", "700 333 CURVE SMOOTH", "712 241 OFFCURVE", "750 193 OFFCURVE", "813 187 CURVE", "801 204 OFFCURVE", "795 225 OFFCURVE", "795 250 CURVE SMOOTH", "795 275 OFFCURVE", "805 298 OFFCURVE", "827 319 CURVE SMOOTH", "875 366 OFFCURVE", "921 364 OFFCURVE", "966 314 CURVE SMOOTH", "970 310 OFFCURVE", "971 305 OFFCURVE", "968 301 CURVE", "965 297 OFFCURVE", "962 296 OFFCURVE", "957 298 CURVE SMOOTH", "921 310 OFFCURVE", "885 310 OFFCURVE", "850 298 CURVE SMOOTH", "832 291 OFFCURVE", "823 283 OFFCURVE", "823 274 CURVE SMOOTH", "823 265 OFFCURVE", "829 250 OFFCURVE", "842 229 CURVE SMOOTH", "855 208 OFFCURVE", "871 199 OFFCURVE", "891 199 CURVE SMOOTH", "923 200 OFFCURVE", "960 212 OFFCURVE", "1000 236 CURVE SMOOTH", "1023 249 OFFCURVE", "1031 250 OFFCURVE", "1025 237 CURVE", "1009 199 LINE", "1007 193 OFFCURVE", "999 186 OFFCURVE", "983 177 CURVE SMOOTH", "928 147 OFFCURVE", "869 134 OFFCURVE", "808 135 CURVE SMOOTH", "747 136 OFFCURVE", "707 164 OFFCURVE", "688 218 CURVE", "685 211 OFFCURVE", "680 201 OFFCURVE", "673 190 CURVE SMOOTH", "645 147 OFFCURVE", "619 129 OFFCURVE", "594 135 CURVE SMOOTH", "577 140 OFFCURVE", "560 151 OFFCURVE", "542 170 CURVE", "492 138 OFFCURVE", "419 122 OFFCURVE", "325 122 CURVE SMOOTH", "212 122 OFFCURVE", "142 159 OFFCURVE", "116 233 CURVE", "106 213 OFFCURVE", "94 201 OFFCURVE", "82 196 CURVE SMOOTH", "70 191 OFFCURVE", "57 190 OFFCURVE", "42 193 CURVE SMOOTH", "15 198 OFFCURVE", "1 208 OFFCURVE", "0 222 CURVE", "0 229 OFFCURVE", "4 239 OFFCURVE", "11 253 CURVE SMOOTH", "18 267 OFFCURVE", "23 276 OFFCURVE", "27 280 CURVE SMOOTH", "43 299 OFFCURVE", "66 315 OFFCURVE", "96 330 CURVE" ); }, { closed = 1; nodes = ( "38 248 OFFCURVE", "49 246 OFFCURVE", "70 246 CURVE SMOOTH", "91 246 OFFCURVE", "103 249 OFFCURVE", "109 254 CURVE", "106 264 OFFCURVE", "103 278 OFFCURVE", "100 296 CURVE", "63 286 OFFCURVE", "42 272 OFFCURVE", "36 255 CURVE" ); }, { closed = 1; nodes = ( "499 102 OFFCURVE", "503 101 OFFCURVE", "512 98 CURVE SMOOTH", "520 95 OFFCURVE", "530 88 OFFCURVE", "542 78 CURVE", "543 76 OFFCURVE", "543 75 OFFCURVE", "543 73 CURVE", "516 31 LINE SMOOTH", "515 30 OFFCURVE", "514 30 OFFCURVE", "511 32 CURVE SMOOTH", "509 34 OFFCURVE", "498 41 OFFCURVE", "479 52 CURVE", "458 18 LINE SMOOTH", "458 19 OFFCURVE", "456 20 OFFCURVE", "452 19 CURVE SMOOTH", "443 18 OFFCURVE", "430 27 OFFCURVE", "413 44 CURVE SMOOTH", "412 45 OFFCURVE", "412 46 OFFCURVE", "412 47 CURVE", "439 87 LINE SMOOTH", "440 88 OFFCURVE", "445 88 OFFCURVE", "452 86 CURVE SMOOTH", "459 84 OFFCURVE", "468 79 OFFCURVE", "478 71 CURVE", "498 101 LINE SMOOTH" ); }, { closed = 1; nodes = ( "812 -111 OFFCURVE", "817 -110 OFFCURVE", "826 -111 CURVE SMOOTH", "835 -112 OFFCURVE", "846 -112 OFFCURVE", "859 -112 CURVE SMOOTH", "872 -112 OFFCURVE", "887 -111 OFFCURVE", "903 -107 CURVE SMOOTH", "919 -103 OFFCURVE", "942 -88 OFFCURVE", "972 -62 CURVE SMOOTH", "1002 -36 OFFCURVE", "1019 -14 OFFCURVE", "1025 4 CURVE", "1023 19 OFFCURVE", "1021 28 OFFCURVE", "1018 30 CURVE", "1009 15 OFFCURVE", "999 8 OFFCURVE", "990 8 CURVE", "960 8 OFFCURVE", "944 22 OFFCURVE", "944 50 CURVE SMOOTH", "944 62 OFFCURVE", "947 78 OFFCURVE", "954 96 CURVE SMOOTH", "967 132 OFFCURVE", "982 150 OFFCURVE", "1000 150 CURVE SMOOTH", "1010 150 OFFCURVE", "1021 141 OFFCURVE", "1032 124 CURVE SMOOTH", "1043 107 OFFCURVE", "1049 87 OFFCURVE", "1049 67 CURVE SMOOTH", "1049 5 OFFCURVE", "1029 -47 OFFCURVE", "990 -92 CURVE SMOOTH", "966 -120 OFFCURVE", "945 -135 OFFCURVE", "928 -136 CURVE SMOOTH", "911 -137 OFFCURVE", "888 -136 OFFCURVE", "858 -131 CURVE SMOOTH", "828 -126 OFFCURVE", "812 -121 OFFCURVE", "812 -115 CURVE SMOOTH", "812 -113 LINE" ); }, { closed = 1; nodes = ( "993 93 OFFCURVE", "982 94 OFFCURVE", "970 78 CURVE", "979 68 OFFCURVE", "990 67 OFFCURVE", "1004 75 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "885 22 OFFCURVE", "886 35 OFFCURVE", "879 59 CURVE", "879 69 OFFCURVE", "881 77 OFFCURVE", "888 83 CURVE SMOOTH", "895 89 OFFCURVE", "899 91 OFFCURVE", "902 86 CURVE SMOOTH", "905 81 OFFCURVE", "906 71 OFFCURVE", "906 56 CURVE SMOOTH", "906 41 OFFCURVE", "905 28 OFFCURVE", "902 16 CURVE SMOOTH", "895 -14 OFFCURVE", "885 -29 OFFCURVE", "873 -30 CURVE", "869 -30 LINE SMOOTH", "844 -30 OFFCURVE", "822 -21 OFFCURVE", "803 -2 CURVE", "787 -39 OFFCURVE", "765 -59 OFFCURVE", "736 -60 CURVE", "717 -60 OFFCURVE", "698 -49 OFFCURVE", "678 -29 CURVE", "628 -57 OFFCURVE", "558 -70 OFFCURVE", "470 -70 CURVE SMOOTH", "319 -70 OFFCURVE", "233 -19 OFFCURVE", "212 84 CURVE", "210 52 OFFCURVE", "202 29 OFFCURVE", "189 12 CURVE", "206 5 OFFCURVE", "219 -5 OFFCURVE", "226 -19 CURVE SMOOTH", "233 -33 OFFCURVE", "229 -55 OFFCURVE", "214 -86 CURVE", "210 -93 OFFCURVE", "203 -96 OFFCURVE", "192 -96 CURVE SMOOTH", "191 -96 LINE", "168 -96 OFFCURVE", "148 -89 OFFCURVE", "131 -77 CURVE", "124 -100 OFFCURVE", "114 -115 OFFCURVE", "101 -122 CURVE SMOOTH", "72 -137 OFFCURVE", "41 -143 OFFCURVE", "8 -140 CURVE SMOOTH", "3 -140 OFFCURVE", "0 -138 OFFCURVE", "0 -134 CURVE", "0 -132 OFFCURVE", "2 -130 OFFCURVE", "6 -128 CURVE SMOOTH", "80 -98 OFFCURVE", "117 -74 OFFCURVE", "117 -54 CURVE SMOOTH", "117 -45 LINE SMOOTH", "117 -19 OFFCURVE", "124 -1 OFFCURVE", "138 9 CURVE SMOOTH", "146 15 OFFCURVE", "154 18 OFFCURVE", "161 19 CURVE", "188 38 OFFCURVE", "201 69 OFFCURVE", "201 114 CURVE SMOOTH", "201 122 LINE", "184 304 LINE", "184 305 LINE SMOOTH", "184 308 OFFCURVE", "185 311 OFFCURVE", "187 316 CURVE SMOOTH", "199 340 LINE SMOOTH", "201 344 OFFCURVE", "204 346 OFFCURVE", "206 346 CURVE SMOOTH", "208 346 OFFCURVE", "212 323 OFFCURVE", "216 277 CURVE SMOOTH", "220 231 OFFCURVE", "224 198 OFFCURVE", "227 177 CURVE SMOOTH", "234 122 OFFCURVE", "247 79 OFFCURVE", "267 50 CURVE", "301 3 OFFCURVE", "371 -20 OFFCURVE", "477 -20 CURVE SMOOTH", "583 -20 OFFCURVE", "660 -2 OFFCURVE", "708 33 CURVE SMOOTH", "713 37 OFFCURVE", "716 37 OFFCURVE", "718 34 CURVE SMOOTH", "721 30 OFFCURVE", "717 23 OFFCURVE", "707 13 CURVE", "718 0 OFFCURVE", "733 -6 OFFCURVE", "753 -5 CURVE", "771 -3 OFFCURVE", "791 22 OFFCURVE", "816 71 CURVE SMOOTH", "817 73 OFFCURVE", "819 75 OFFCURVE", "823 75 CURVE", "827 75 OFFCURVE", "829 72 OFFCURVE", "829 67 CURVE", "823 43 LINE", "836 29 OFFCURVE", "854 22 OFFCURVE", "874 21 CURVE" ); }, { closed = 1; nodes = ( "195 -28 OFFCURVE", "177 -16 OFFCURVE", "152 -16 CURVE SMOOTH", "144 -16 OFFCURVE", "137 -19 OFFCURVE", "132 -26 CURVE", "156 -43 OFFCURVE", "181 -51 OFFCURVE", "208 -52 CURVE" ); }, { closed = 1; nodes = ( "836 821 OFFCURVE", "839 818 OFFCURVE", "833 808 CURVE SMOOTH", "823 791 LINE SMOOTH", "820 786 OFFCURVE", "784 772 OFFCURVE", "715 749 CURVE SMOOTH", "647 726 OFFCURVE", "601 710 OFFCURVE", "577 702 CURVE SMOOTH", "566 698 OFFCURVE", "565 702 OFFCURVE", "573 713 CURVE SMOOTH", "580 723 LINE SMOOTH", "585 730 OFFCURVE", "590 734 OFFCURVE", "597 737 CURVE SMOOTH", "823 816 LINE SMOOTH" ); }, { closed = 1; nodes = ( "1054 765 OFFCURVE", "1057 761 OFFCURVE", "1051 751 CURVE SMOOTH", "1041 735 LINE SMOOTH", "1038 730 OFFCURVE", "1002 716 OFFCURVE", "933 693 CURVE SMOOTH", "865 670 OFFCURVE", "818 654 OFFCURVE", "794 646 CURVE SMOOTH", "783 642 OFFCURVE", "782 646 OFFCURVE", "790 657 CURVE SMOOTH", "797 667 LINE SMOOTH", "802 674 OFFCURVE", "807 679 OFFCURVE", "814 681 CURVE SMOOTH", "1041 760 LINE SMOOTH" ); } ); width = 1055; } ); unicode = FDFA; subCategory = ""; }, { glyphname = uniFDFB; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "885 796 OFFCURVE", "889 792 OFFCURVE", "882 780 CURVE SMOOTH", "869 760 LINE SMOOTH", "865 754 OFFCURVE", "861 750 OFFCURVE", "855 748 CURVE SMOOTH", "515 628 LINE SMOOTH", "502 623 OFFCURVE", "500 628 OFFCURVE", "510 642 CURVE SMOOTH", "519 654 LINE SMOOTH", "525 662 OFFCURVE", "531 668 OFFCURVE", "539 671 CURVE SMOOTH", "869 790 LINE SMOOTH" ); }, { closed = 1; nodes = ( "902 564 OFFCURVE", "905 560 OFFCURVE", "898 548 CURVE SMOOTH", "886 528 LINE SMOOTH", "884 525 OFFCURVE", "881 522 OFFCURVE", "875 519 CURVE SMOOTH", "653 443 LINE SMOOTH", "640 438 OFFCURVE", "638 443 OFFCURVE", "648 457 CURVE SMOOTH", "657 469 LINE SMOOTH", "663 477 OFFCURVE", "669 482 OFFCURVE", "677 485 CURVE SMOOTH", "886 558 LINE SMOOTH" ); }, { closed = 1; nodes = ( "598 119 OFFCURVE", "571 127 OFFCURVE", "546 127 CURVE SMOOTH", "532 127 OFFCURVE", "519 123 OFFCURVE", "507 112 CURVE SMOOTH", "495 101 OFFCURVE", "486 86 OFFCURVE", "479 66 CURVE", "480 65 LINE SMOOTH", "481 64 LINE", "503 63 OFFCURVE", "542 71 OFFCURVE", "599 86 CURVE", "628 94 LINE SMOOTH", "630 94 OFFCURVE", "632 95 OFFCURVE", "633 97 CURVE SMOOTH", "633 98 OFFCURVE", "631 100 OFFCURVE", "628 102 CURVE" ); }, { closed = 1; nodes = ( "691 150 OFFCURVE", "714 142 OFFCURVE", "742 134 CURVE SMOOTH", "768 127 OFFCURVE", "795 124 OFFCURVE", "822 124 CURVE SMOOTH", "826 124 OFFCURVE", "829 123 OFFCURVE", "832 121 CURVE SMOOTH", "835 119 OFFCURVE", "835 115 OFFCURVE", "833 111 CURVE SMOOTH", "825 93 OFFCURVE", "818 80 OFFCURVE", "813 73 CURVE SMOOTH", "808 66 OFFCURVE", "805 62 OFFCURVE", "801 62 CURVE SMOOTH", "776 65 OFFCURVE", "748 64 OFFCURVE", "717 58 CURVE SMOOTH", "686 52 OFFCURVE", "659 45 OFFCURVE", "634 37 CURVE SMOOTH", "566 14 OFFCURVE", "523 1 OFFCURVE", "505 0 CURVE SMOOTH", "448 -4 OFFCURVE", "413 26 OFFCURVE", "399 91 CURVE", "400 62 OFFCURVE", "398 42 OFFCURVE", "393 30 CURVE SMOOTH", "387 15 OFFCURVE", "372 -2 OFFCURVE", "346 -20 CURVE SMOOTH", "295 -57 OFFCURVE", "246 -75 OFFCURVE", "201 -76 CURVE SMOOTH", "154 -77 OFFCURVE", "117 -64 OFFCURVE", "91 -38 CURVE SMOOTH", "64 -12 OFFCURVE", "54 24 OFFCURVE", "60 69 CURVE SMOOTH", "66 114 OFFCURVE", "87 160 OFFCURVE", "122 207 CURVE SMOOTH", "124 210 OFFCURVE", "127 210 OFFCURVE", "130 210 CURVE SMOOTH", "133 210 OFFCURVE", "135 209 OFFCURVE", "136 206 CURVE SMOOTH", "137 203 OFFCURVE", "137 200 OFFCURVE", "134 195 CURVE SMOOTH", "95 137 OFFCURVE", "84 91 OFFCURVE", "99 56 CURVE SMOOTH", "117 14 OFFCURVE", "159 -5 OFFCURVE", "224 -1 CURVE SMOOTH", "278 2 OFFCURVE", "326 24 OFFCURVE", "369 66 CURVE", "330 636 LINE SMOOTH", "329 654 OFFCURVE", "329 665 OFFCURVE", "331 671 CURVE SMOOTH", "348 712 LINE SMOOTH", "355 728 OFFCURVE", "360 723 OFFCURVE", "362 698 CURVE SMOOTH", "385 420 LINE SMOOTH", "397 275 OFFCURVE", "407 188 OFFCURVE", "414 157 CURVE SMOOTH", "423 117 OFFCURVE", "438 91 OFFCURVE", "460 77 CURVE", "472 102 OFFCURVE", "487 125 OFFCURVE", "504 146 CURVE SMOOTH", "531 180 OFFCURVE", "553 196 OFFCURVE", "569 196 CURVE SMOOTH", "585 196 OFFCURVE", "619 183 OFFCURVE", "672 158 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "340 223 OFFCURVE", "338 218 OFFCURVE", "333 216 CURVE SMOOTH", "326 214 OFFCURVE", "321 218 OFFCURVE", "320 228 CURVE SMOOTH", "309 331 OFFCURVE", "257 432 OFFCURVE", "165 531 CURVE SMOOTH", "159 537 OFFCURVE", "155 538 OFFCURVE", "152 534 CURVE SMOOTH", "147 526 LINE SMOOTH", "145 523 OFFCURVE", "142 521 OFFCURVE", "138 521 CURVE SMOOTH", "138 521 OFFCURVE", "132 526 OFFCURVE", "122 534 CURVE SMOOTH", "88 561 LINE", "81 569 OFFCURVE", "79 577 OFFCURVE", "80 585 CURVE SMOOTH", "90 650 LINE SMOOTH", "91 655 OFFCURVE", "94 658 OFFCURVE", "101 660 CURVE SMOOTH", "108 662 OFFCURVE", "114 660 OFFCURVE", "118 655 CURVE SMOOTH", "264 512 OFFCURVE", "338 371 OFFCURVE", "340 232 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "685 32 OFFCURVE", "687 33 OFFCURVE", "690 32 CURVE SMOOTH", "708 26 OFFCURVE", "725 16 OFFCURVE", "740 3 CURVE SMOOTH", "742 1 OFFCURVE", "742 -1 OFFCURVE", "741 -4 CURVE SMOOTH", "708 -57 LINE SMOOTH", "706 -59 OFFCURVE", "703 -59 OFFCURVE", "700 -56 CURVE SMOOTH", "697 -53 OFFCURVE", "680 -43 OFFCURVE", "651 -25 CURVE SMOOTH", "649 -24 OFFCURVE", "649 -23 OFFCURVE", "650 -21 CURVE SMOOTH", "684 30 LINE SMOOTH" ); }, { closed = 1; nodes = ( "872 67 OFFCURVE", "874 67 OFFCURVE", "877 66 CURVE SMOOTH", "895 60 OFFCURVE", "911 50 OFFCURVE", "926 37 CURVE SMOOTH", "928 35 OFFCURVE", "928 33 OFFCURVE", "927 31 CURVE SMOOTH", "894 -22 LINE SMOOTH", "892 -24 OFFCURVE", "890 -24 OFFCURVE", "887 -21 CURVE SMOOTH", "884 -18 OFFCURVE", "867 -8 OFFCURVE", "838 10 CURVE SMOOTH", "836 11 OFFCURVE", "835 13 OFFCURVE", "836 15 CURVE SMOOTH", "871 65 LINE SMOOTH" ); }, { closed = 1; nodes = ( "442 733 LINE SMOOTH", "450 745 OFFCURVE", "455 743 OFFCURVE", "456 725 CURVE SMOOTH", "467 516 OFFCURVE", "483 365 OFFCURVE", "505 273 CURVE SMOOTH", "513 238 OFFCURVE", "528 215 OFFCURVE", "547 205 CURVE", "563 238 OFFCURVE", "580 266 OFFCURVE", "601 288 CURVE SMOOTH", "625 316 OFFCURVE", "645 330 OFFCURVE", "660 329 CURVE SMOOTH", "677 328 OFFCURVE", "703 320 OFFCURVE", "739 303 CURVE SMOOTH", "808 272 OFFCURVE", "867 256 OFFCURVE", "917 257 CURVE SMOOTH", "928 257 OFFCURVE", "931 253 OFFCURVE", "927 244 CURVE SMOOTH", "919 226 OFFCURVE", "912 212 OFFCURVE", "908 205 CURVE SMOOTH", "904 198 OFFCURVE", "900 194 OFFCURVE", "896 194 CURVE SMOOTH", "848 200 OFFCURVE", "791 191 OFFCURVE", "723 169 CURVE SMOOTH", "639 141 OFFCURVE", "582 128 OFFCURVE", "552 132 CURVE SMOOTH", "502 138 OFFCURVE", "471 191 OFFCURVE", "460 290 CURVE SMOOTH", "453 349 OFFCURVE", "449 380 OFFCURVE", "447 381 CURVE SMOOTH", "445 381 OFFCURVE", "443 371 OFFCURVE", "441 349 CURVE SMOOTH", "429 242 OFFCURVE", "401 164 OFFCURVE", "355 116 CURVE SMOOTH", "334 95 OFFCURVE", "311 81 OFFCURVE", "286 75 CURVE SMOOTH", "209 57 OFFCURVE", "171 52 OFFCURVE", "171 62 CURVE SMOOTH", "171 65 OFFCURVE", "172 67 OFFCURVE", "175 68 CURVE SMOOTH", "206 79 OFFCURVE", "245 100 OFFCURVE", "293 130 CURVE SMOOTH", "341 160 OFFCURVE", "372 187 OFFCURVE", "385 213 CURVE SMOOTH", "403 248 OFFCURVE", "415 295 OFFCURVE", "422 352 CURVE SMOOTH", "429 409 OFFCURVE", "427 509 OFFCURVE", "419 651 CURVE SMOOTH", "417 679 OFFCURVE", "418 697 OFFCURVE", "423 704 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "692 252 OFFCURVE", "664 261 OFFCURVE", "637 261 CURVE SMOOTH", "623 261 OFFCURVE", "609 255 OFFCURVE", "597 244 CURVE SMOOTH", "585 233 OFFCURVE", "574 217 OFFCURVE", "567 197 CURVE", "589 195 OFFCURVE", "630 203 OFFCURVE", "690 219 CURVE", "720 227 LINE SMOOTH", "722 227 OFFCURVE", "723 228 OFFCURVE", "724 229 CURVE SMOOTH", "725 230 OFFCURVE", "724 233 OFFCURVE", "721 235 CURVE" ); }, { closed = 1; nodes = ( "236 714 OFFCURVE", "238 716 OFFCURVE", "242 716 CURVE SMOOTH", "246 716 OFFCURVE", "248 713 OFFCURVE", "250 709 CURVE SMOOTH", "257 689 OFFCURVE", "266 672 OFFCURVE", "279 660 CURVE SMOOTH", "284 655 OFFCURVE", "284 650 OFFCURVE", "279 642 CURVE SMOOTH", "274 634 OFFCURVE", "269 627 OFFCURVE", "264 620 CURVE", "263 619 OFFCURVE", "267 585 OFFCURVE", "278 518 CURVE SMOOTH", "289 451 OFFCURVE", "294 402 OFFCURVE", "296 368 CURVE SMOOTH", "298 334 OFFCURVE", "298 301 OFFCURVE", "294 266 CURVE SMOOTH", "287 199 OFFCURVE", "268 165 OFFCURVE", "239 164 CURVE SMOOTH", "223 163 OFFCURVE", "209 169 OFFCURVE", "196 179 CURVE SMOOTH", "169 202 OFFCURVE", "150 246 OFFCURVE", "139 312 CURVE", "129 273 OFFCURVE", "116 252 OFFCURVE", "102 250 CURVE SMOOTH", "88 248 OFFCURVE", "70 248 OFFCURVE", "49 250 CURVE SMOOTH", "28 252 OFFCURVE", "16 255 OFFCURVE", "12 259 CURVE SMOOTH", "2 269 OFFCURVE", "-3 281 OFFCURVE", "1 291 CURVE SMOOTH", "16 327 OFFCURVE", "27 348 OFFCURVE", "33 355 CURVE SMOOTH", "53 376 OFFCURVE", "82 394 OFFCURVE", "121 409 CURVE", "118 438 LINE SMOOTH", "117 447 OFFCURVE", "117 454 OFFCURVE", "119 458 CURVE SMOOTH", "135 490 LINE SMOOTH", "140 499 OFFCURVE", "143 496 OFFCURVE", "146 479 CURVE", "153 413 OFFCURVE", "164 356 OFFCURVE", "179 309 CURVE SMOOTH", "189 274 OFFCURVE", "211 252 OFFCURVE", "244 242 CURVE SMOOTH", "255 240 OFFCURVE", "262 239 OFFCURVE", "266 241 CURVE", "272 251 OFFCURVE", "272 276 OFFCURVE", "269 316 CURVE SMOOTH", "266 356 OFFCURVE", "257 420 OFFCURVE", "244 510 CURVE SMOOTH", "231 600 OFFCURVE", "224 650 OFFCURVE", "222 658 CURVE SMOOTH", "220 666 OFFCURVE", "221 675 OFFCURVE", "225 685 CURVE SMOOTH", "229 695 OFFCURVE", "232 704 OFFCURVE", "234 709 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "113 371 OFFCURVE", "97 365 OFFCURVE", "80 356 CURVE SMOOTH", "63 347 OFFCURVE", "50 335 OFFCURVE", "42 321 CURVE", "61 308 OFFCURVE", "88 306 OFFCURVE", "122 315 CURVE SMOOTH", "128 317 OFFCURVE", "131 324 OFFCURVE", "132 335 CURVE", "126 373 LINE" ); } ); userData = { org.sfdlib.decomposeAndRemoveOverlap = 1; }; width = 928; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "885 796 OFFCURVE", "889 792 OFFCURVE", "882 780 CURVE SMOOTH", "869 760 LINE SMOOTH", "865 754 OFFCURVE", "861 750 OFFCURVE", "855 748 CURVE SMOOTH", "515 628 LINE SMOOTH", "502 623 OFFCURVE", "500 628 OFFCURVE", "510 642 CURVE SMOOTH", "519 654 LINE SMOOTH", "525 662 OFFCURVE", "531 668 OFFCURVE", "539 671 CURVE SMOOTH", "869 790 LINE SMOOTH" ); }, { closed = 1; nodes = ( "902 564 OFFCURVE", "905 560 OFFCURVE", "898 548 CURVE SMOOTH", "886 528 LINE SMOOTH", "884 525 OFFCURVE", "881 522 OFFCURVE", "875 519 CURVE SMOOTH", "653 443 LINE SMOOTH", "640 438 OFFCURVE", "638 443 OFFCURVE", "648 457 CURVE SMOOTH", "657 469 LINE SMOOTH", "663 477 OFFCURVE", "669 482 OFFCURVE", "677 485 CURVE SMOOTH", "886 558 LINE SMOOTH" ); }, { closed = 1; nodes = ( "598 119 OFFCURVE", "571 127 OFFCURVE", "546 127 CURVE SMOOTH", "532 127 OFFCURVE", "519 123 OFFCURVE", "507 112 CURVE SMOOTH", "495 101 OFFCURVE", "486 86 OFFCURVE", "479 66 CURVE", "480 65 LINE SMOOTH", "481 64 LINE", "503 63 OFFCURVE", "542 71 OFFCURVE", "599 86 CURVE", "628 94 LINE SMOOTH", "630 94 OFFCURVE", "632 95 OFFCURVE", "633 97 CURVE SMOOTH", "633 98 OFFCURVE", "631 100 OFFCURVE", "628 102 CURVE" ); }, { closed = 1; nodes = ( "691 150 OFFCURVE", "714 142 OFFCURVE", "742 134 CURVE SMOOTH", "768 127 OFFCURVE", "795 124 OFFCURVE", "822 124 CURVE SMOOTH", "826 124 OFFCURVE", "829 123 OFFCURVE", "832 121 CURVE SMOOTH", "835 119 OFFCURVE", "835 115 OFFCURVE", "833 111 CURVE SMOOTH", "825 93 OFFCURVE", "818 80 OFFCURVE", "813 73 CURVE SMOOTH", "808 66 OFFCURVE", "805 62 OFFCURVE", "801 62 CURVE SMOOTH", "776 65 OFFCURVE", "748 64 OFFCURVE", "717 58 CURVE SMOOTH", "686 52 OFFCURVE", "659 45 OFFCURVE", "634 37 CURVE SMOOTH", "566 14 OFFCURVE", "523 1 OFFCURVE", "505 0 CURVE SMOOTH", "448 -4 OFFCURVE", "413 26 OFFCURVE", "399 91 CURVE", "400 62 OFFCURVE", "398 42 OFFCURVE", "393 30 CURVE SMOOTH", "387 15 OFFCURVE", "372 -2 OFFCURVE", "346 -20 CURVE SMOOTH", "295 -57 OFFCURVE", "246 -75 OFFCURVE", "201 -76 CURVE SMOOTH", "154 -77 OFFCURVE", "117 -64 OFFCURVE", "91 -38 CURVE SMOOTH", "64 -12 OFFCURVE", "54 24 OFFCURVE", "60 69 CURVE SMOOTH", "66 114 OFFCURVE", "87 160 OFFCURVE", "122 207 CURVE SMOOTH", "124 210 OFFCURVE", "127 210 OFFCURVE", "130 210 CURVE SMOOTH", "133 210 OFFCURVE", "135 209 OFFCURVE", "136 206 CURVE SMOOTH", "137 203 OFFCURVE", "137 200 OFFCURVE", "134 195 CURVE SMOOTH", "95 137 OFFCURVE", "84 91 OFFCURVE", "99 56 CURVE SMOOTH", "117 14 OFFCURVE", "159 -5 OFFCURVE", "224 -1 CURVE SMOOTH", "278 2 OFFCURVE", "326 24 OFFCURVE", "369 66 CURVE", "330 636 LINE SMOOTH", "329 654 OFFCURVE", "329 665 OFFCURVE", "331 671 CURVE SMOOTH", "348 712 LINE SMOOTH", "355 728 OFFCURVE", "360 723 OFFCURVE", "362 698 CURVE SMOOTH", "385 420 LINE SMOOTH", "397 275 OFFCURVE", "407 188 OFFCURVE", "414 157 CURVE SMOOTH", "423 117 OFFCURVE", "438 91 OFFCURVE", "460 77 CURVE", "472 102 OFFCURVE", "487 125 OFFCURVE", "504 146 CURVE SMOOTH", "531 180 OFFCURVE", "553 196 OFFCURVE", "569 196 CURVE SMOOTH", "585 196 OFFCURVE", "619 183 OFFCURVE", "672 158 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "340 223 OFFCURVE", "338 218 OFFCURVE", "333 216 CURVE SMOOTH", "326 214 OFFCURVE", "321 218 OFFCURVE", "320 228 CURVE SMOOTH", "309 331 OFFCURVE", "257 432 OFFCURVE", "165 531 CURVE SMOOTH", "159 537 OFFCURVE", "155 538 OFFCURVE", "152 534 CURVE SMOOTH", "147 526 LINE SMOOTH", "145 523 OFFCURVE", "142 521 OFFCURVE", "138 521 CURVE SMOOTH", "138 521 OFFCURVE", "132 526 OFFCURVE", "122 534 CURVE SMOOTH", "88 561 LINE", "81 569 OFFCURVE", "79 577 OFFCURVE", "80 585 CURVE SMOOTH", "90 650 LINE SMOOTH", "91 655 OFFCURVE", "94 658 OFFCURVE", "101 660 CURVE SMOOTH", "108 662 OFFCURVE", "114 660 OFFCURVE", "118 655 CURVE SMOOTH", "264 512 OFFCURVE", "338 371 OFFCURVE", "340 232 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "685 32 OFFCURVE", "687 33 OFFCURVE", "690 32 CURVE SMOOTH", "708 26 OFFCURVE", "725 16 OFFCURVE", "740 3 CURVE SMOOTH", "742 1 OFFCURVE", "742 -1 OFFCURVE", "741 -4 CURVE SMOOTH", "708 -57 LINE SMOOTH", "706 -59 OFFCURVE", "703 -59 OFFCURVE", "700 -56 CURVE SMOOTH", "697 -53 OFFCURVE", "680 -43 OFFCURVE", "651 -25 CURVE SMOOTH", "649 -24 OFFCURVE", "649 -23 OFFCURVE", "650 -21 CURVE SMOOTH", "684 30 LINE SMOOTH" ); }, { closed = 1; nodes = ( "872 67 OFFCURVE", "874 67 OFFCURVE", "877 66 CURVE SMOOTH", "895 60 OFFCURVE", "911 50 OFFCURVE", "926 37 CURVE SMOOTH", "928 35 OFFCURVE", "928 33 OFFCURVE", "927 31 CURVE SMOOTH", "894 -22 LINE SMOOTH", "892 -24 OFFCURVE", "890 -24 OFFCURVE", "887 -21 CURVE SMOOTH", "884 -18 OFFCURVE", "867 -8 OFFCURVE", "838 10 CURVE SMOOTH", "836 11 OFFCURVE", "835 13 OFFCURVE", "836 15 CURVE SMOOTH", "871 65 LINE SMOOTH" ); }, { closed = 1; nodes = ( "442 733 LINE SMOOTH", "450 745 OFFCURVE", "455 743 OFFCURVE", "456 725 CURVE SMOOTH", "467 516 OFFCURVE", "483 365 OFFCURVE", "505 273 CURVE SMOOTH", "513 238 OFFCURVE", "528 215 OFFCURVE", "547 205 CURVE", "563 238 OFFCURVE", "580 266 OFFCURVE", "601 288 CURVE SMOOTH", "625 316 OFFCURVE", "645 330 OFFCURVE", "660 329 CURVE SMOOTH", "677 328 OFFCURVE", "703 320 OFFCURVE", "739 303 CURVE SMOOTH", "808 272 OFFCURVE", "867 256 OFFCURVE", "917 257 CURVE SMOOTH", "928 257 OFFCURVE", "931 253 OFFCURVE", "927 244 CURVE SMOOTH", "919 226 OFFCURVE", "912 212 OFFCURVE", "908 205 CURVE SMOOTH", "904 198 OFFCURVE", "900 194 OFFCURVE", "896 194 CURVE SMOOTH", "848 200 OFFCURVE", "791 191 OFFCURVE", "723 169 CURVE SMOOTH", "639 141 OFFCURVE", "582 128 OFFCURVE", "552 132 CURVE SMOOTH", "502 138 OFFCURVE", "471 191 OFFCURVE", "460 290 CURVE SMOOTH", "453 349 OFFCURVE", "449 380 OFFCURVE", "447 381 CURVE SMOOTH", "445 381 OFFCURVE", "443 371 OFFCURVE", "441 349 CURVE SMOOTH", "429 242 OFFCURVE", "401 164 OFFCURVE", "355 116 CURVE SMOOTH", "334 95 OFFCURVE", "311 81 OFFCURVE", "286 75 CURVE SMOOTH", "209 57 OFFCURVE", "171 52 OFFCURVE", "171 62 CURVE SMOOTH", "171 65 OFFCURVE", "172 67 OFFCURVE", "175 68 CURVE SMOOTH", "206 79 OFFCURVE", "245 100 OFFCURVE", "293 130 CURVE SMOOTH", "341 160 OFFCURVE", "372 187 OFFCURVE", "385 213 CURVE SMOOTH", "403 248 OFFCURVE", "415 295 OFFCURVE", "422 352 CURVE SMOOTH", "429 409 OFFCURVE", "427 509 OFFCURVE", "419 651 CURVE SMOOTH", "417 679 OFFCURVE", "418 697 OFFCURVE", "423 704 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "692 252 OFFCURVE", "664 261 OFFCURVE", "637 261 CURVE SMOOTH", "623 261 OFFCURVE", "609 255 OFFCURVE", "597 244 CURVE SMOOTH", "585 233 OFFCURVE", "574 217 OFFCURVE", "567 197 CURVE", "589 195 OFFCURVE", "630 203 OFFCURVE", "690 219 CURVE", "720 227 LINE SMOOTH", "722 227 OFFCURVE", "723 228 OFFCURVE", "724 229 CURVE SMOOTH", "725 230 OFFCURVE", "724 233 OFFCURVE", "721 235 CURVE" ); }, { closed = 1; nodes = ( "236 714 OFFCURVE", "238 716 OFFCURVE", "242 716 CURVE SMOOTH", "246 716 OFFCURVE", "248 713 OFFCURVE", "250 709 CURVE SMOOTH", "257 689 OFFCURVE", "266 672 OFFCURVE", "279 660 CURVE SMOOTH", "284 655 OFFCURVE", "284 650 OFFCURVE", "279 642 CURVE SMOOTH", "274 634 OFFCURVE", "269 627 OFFCURVE", "264 620 CURVE", "263 619 OFFCURVE", "267 585 OFFCURVE", "278 518 CURVE SMOOTH", "289 451 OFFCURVE", "294 402 OFFCURVE", "296 368 CURVE SMOOTH", "298 334 OFFCURVE", "298 301 OFFCURVE", "294 266 CURVE SMOOTH", "287 199 OFFCURVE", "268 165 OFFCURVE", "239 164 CURVE SMOOTH", "223 163 OFFCURVE", "209 169 OFFCURVE", "196 179 CURVE SMOOTH", "169 202 OFFCURVE", "150 246 OFFCURVE", "139 312 CURVE", "129 273 OFFCURVE", "116 252 OFFCURVE", "102 250 CURVE SMOOTH", "88 248 OFFCURVE", "70 248 OFFCURVE", "49 250 CURVE SMOOTH", "28 252 OFFCURVE", "16 255 OFFCURVE", "12 259 CURVE SMOOTH", "2 269 OFFCURVE", "-3 281 OFFCURVE", "1 291 CURVE SMOOTH", "16 327 OFFCURVE", "27 348 OFFCURVE", "33 355 CURVE SMOOTH", "53 376 OFFCURVE", "82 394 OFFCURVE", "121 409 CURVE", "118 438 LINE SMOOTH", "117 447 OFFCURVE", "117 454 OFFCURVE", "119 458 CURVE SMOOTH", "135 490 LINE SMOOTH", "140 499 OFFCURVE", "143 496 OFFCURVE", "146 479 CURVE", "153 413 OFFCURVE", "164 356 OFFCURVE", "179 309 CURVE SMOOTH", "189 274 OFFCURVE", "211 252 OFFCURVE", "244 242 CURVE SMOOTH", "255 240 OFFCURVE", "262 239 OFFCURVE", "266 241 CURVE", "272 251 OFFCURVE", "272 276 OFFCURVE", "269 316 CURVE SMOOTH", "266 356 OFFCURVE", "257 420 OFFCURVE", "244 510 CURVE SMOOTH", "231 600 OFFCURVE", "224 650 OFFCURVE", "222 658 CURVE SMOOTH", "220 666 OFFCURVE", "221 675 OFFCURVE", "225 685 CURVE SMOOTH", "229 695 OFFCURVE", "232 704 OFFCURVE", "234 709 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "113 371 OFFCURVE", "97 365 OFFCURVE", "80 356 CURVE SMOOTH", "63 347 OFFCURVE", "50 335 OFFCURVE", "42 321 CURVE", "61 308 OFFCURVE", "88 306 OFFCURVE", "122 315 CURVE SMOOTH", "128 317 OFFCURVE", "131 324 OFFCURVE", "132 335 CURVE", "126 373 LINE" ); } ); userData = { org.sfdlib.decomposeAndRemoveOverlap = 1; }; width = 928; } ); unicode = FDFB; subCategory = ""; }, { glyphname = rial; layers = ( { components = ( { name = "lam-ar"; }, { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 604, 0}"; }, { name = "yehFarsi-ar.init.LD"; transform = "{1, 0, 0, 1, 833, 0}"; }, { name = "reh-ar"; transform = "{1, 0, 0, 1, 1023, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1423; }, { components = ( { name = "lam-ar"; }, { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 604, 0}"; }, { name = "yehFarsi-ar.init.LD"; transform = "{1, 0, 0, 1, 833, 0}"; }, { name = "reh-ar"; transform = "{1, 0, 0, 1, 1023, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1423; } ); unicode = FDFC; }, { glyphname = "bismillah-ar"; layers = ( { components = ( { name = "hahabove-ar"; transform = "{1, 0, 0, 1, 2686, -425}"; }, { name = "hahabove-ar"; transform = "{1, 0, 0, 1, 10807, -723}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, 1901, 118}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, 3365, 62}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, 4379, 138}"; }, { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 2327, -793}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 1552, -408}"; }, { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 1751, -358}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 2974, -442}"; }, { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 3174, -393}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 3959, -350}"; }, { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 4159, -300}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, -41, -1220}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 1222, -1040}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 2050, -1372}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 2429, -331}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 3595, -1270}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 4419, -1302}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 11088, -1452}"; }, { name = aAlf.isol; transform = "{1, 0, 0, 1, 2052, 56}"; }, { name = aAlf.isol; transform = "{1, 0, 0, 1, 3494, -38}"; }, { name = aAlf.isol; transform = "{1, 0, 0, 1, 4526, 85}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2106, -141}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 1111, -235}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 11349, -386}"; }, { name = aLam.init.LamRaaIsol; transform = "{1, 0, 0, 1, 1877, -66}"; }, { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, 1438, -66}"; }, { name = aLam.init.LamRaaIsol; transform = "{1, 0, 0, 1, 3308, -155}"; }, { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, 2869, -155}"; }, { name = "heh-ar.fina.Lellah"; transform = "{1, 0, 0, 1, 3698, -149}"; }, { name = "lam-ar.medi.Lellah"; transform = "{1, 0, 0, 1, 4050, -149}"; }, { name = "lam-ar.init.Lellah"; transform = "{1, 0, 0, 1, 4282, -149}"; }, { name = aHaa.init.HaaMemInit; transform = "{1, 0, 0, 1, 2750, -90}"; }, { name = _FDFD; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 11435; }, { components = ( { name = "hahabove-ar"; transform = "{1, 0, 0, 1, 2702, -425}"; }, { name = "hahabove-ar"; transform = "{1, 0, 0, 1, 10824, -723}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, 1918, 118}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, 3381, 62}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, 4396, 138}"; }, { name = "alefabove-ar"; transform = "{1, 0, 0, 1, 2344, -793}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 1569, -408}"; }, { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 1768, -358}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 2991, -442}"; }, { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 3190, -393}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, 3976, -350}"; }, { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 4175, -300}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, -24, -1220}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 1238, -1040}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 2066, -1372}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 2445, -331}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 3612, -1270}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 4436, -1302}"; }, { name = "fatha-ar"; transform = "{1, 0, 0, 1, 11105, -1452}"; }, { name = aAlf.isol; transform = "{1, 0, 0, 1, 2069, 56}"; }, { name = aAlf.isol; transform = "{1, 0, 0, 1, 3511, -38}"; }, { name = aAlf.isol; transform = "{1, 0, 0, 1, 4543, 85}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2123, -141}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 1128, -235}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 11366, -386}"; }, { name = aLam.init.LamRaaIsol; transform = "{1, 0, 0, 1, 1894, -66}"; }, { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, 1455, -66}"; }, { name = aLam.init.LamRaaIsol; transform = "{1, 0, 0, 1, 3325, -155}"; }, { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, 2886, -155}"; }, { name = "heh-ar.fina.Lellah"; transform = "{1, 0, 0, 1, 3715, -149}"; }, { name = "lam-ar.medi.Lellah"; transform = "{1, 0, 0, 1, 4067, -149}"; }, { name = "lam-ar.init.Lellah"; transform = "{1, 0, 0, 1, 4298, -149}"; }, { name = aHaa.init.HaaMemInit; transform = "{1, 0, 0, 1, 2767, -90}"; }, { name = _FDFD; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 11459; } ); unicode = FDFD; }, { glyphname = uniFE70; layers = ( { components = ( { name = "fathatan-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fathatan-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE70; }, { glyphname = uniFE71; layers = ( { components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, -166, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "fathatan-ar"; transform = "{1, 0, 0, 1, -166, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FE71; }, { glyphname = uniFE72; layers = ( { components = ( { name = "dammatan-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "dammatan-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE72; }, { glyphname = uniFE74; layers = ( { components = ( { name = "kasratan-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "kasratan-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE74; }, { glyphname = uniFE76; layers = ( { components = ( { name = "fatha-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fatha-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE76; }, { glyphname = uniFE77; layers = ( { components = ( { name = "fatha-ar"; transform = "{1, 0, 0, 1, -175, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "fatha-ar"; transform = "{1, 0, 0, 1, -175, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FE77; }, { glyphname = uniFE78; layers = ( { components = ( { name = "damma-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "damma-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE78; }, { glyphname = uniFE79; layers = ( { components = ( { name = "damma-ar"; transform = "{1, 0, 0, 1, -185, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "damma-ar"; transform = "{1, 0, 0, 1, -185, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FE79; }, { glyphname = uniFE7A; layers = ( { components = ( { name = "kasra-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "kasra-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE7A; }, { glyphname = uniFE7B; layers = ( { components = ( { name = "kasra-ar"; transform = "{1, 0, 0, 1, -127, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "kasra-ar"; transform = "{1, 0, 0, 1, -127, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FE7B; }, { glyphname = uniFE7C; layers = ( { components = ( { name = "shadda-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "shadda-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE7C; }, { glyphname = uniFE7D; layers = ( { components = ( { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "shadda-ar"; transform = "{1, 0, 0, 1, -116, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FE7D; }, { glyphname = uniFE7E; layers = ( { components = ( { name = "sukun-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sukun-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); unicode = FE7E; }, { glyphname = uniFE7F; layers = ( { components = ( { name = "sukun-ar"; transform = "{1, 0, 0, 1, -87, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { components = ( { name = "sukun-ar"; transform = "{1, 0, 0, 1, -87, 0}"; }, { name = "kashida-ar.1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); unicode = FE7F; }, { glyphname = uniFE82; layers = ( { components = ( { name = "alefMadda-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 327; }, { components = ( { name = "alefMadda-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 327; } ); unicode = FE82; }, { glyphname = uniFE84; layers = ( { components = ( { name = "alefHamzaabove-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 289; }, { components = ( { name = "alefHamzaabove-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 289; } ); unicode = FE84; }, { glyphname = uniFE86; layers = ( { components = ( { name = "wawHamzaabove-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "wawHamzaabove-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FE86; }, { glyphname = uniFE88; layers = ( { components = ( { name = "alefHamzabelow-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { components = ( { name = "alefHamzabelow-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); unicode = FE88; }, { glyphname = uniFE8A; layers = ( { components = ( { name = "yehHamzaabove-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "yehHamzaabove-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = FE8A; }, { glyphname = uniFE8B; layers = ( { components = ( { name = "yehHamzaabove-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "yehHamzaabove-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FE8B; }, { glyphname = uniFE8C; layers = ( { components = ( { name = "yehHamzaabove-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "yehHamzaabove-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FE8C; }, { glyphname = uniFE8E; layers = ( { components = ( { name = "alef-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { components = ( { name = "alef-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); unicode = FE8E; }, { glyphname = uniFE90; layers = ( { components = ( { name = "beh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "beh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FE90; }, { glyphname = uniFE91; layers = ( { components = ( { name = "beh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "beh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FE91; }, { glyphname = uniFE92; layers = ( { components = ( { name = "beh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "beh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FE92; }, { glyphname = uniFE94; layers = ( { components = ( { name = "tehMarbuta-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { components = ( { name = "tehMarbuta-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); unicode = FE94; }, { glyphname = uniFE96; layers = ( { components = ( { name = "teh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "teh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FE96; }, { glyphname = uniFE97; layers = ( { components = ( { name = "teh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "teh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FE97; }, { glyphname = uniFE98; layers = ( { components = ( { name = "teh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "teh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FE98; }, { glyphname = uniFE9A; layers = ( { components = ( { name = "theh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { components = ( { name = "theh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); unicode = FE9A; }, { glyphname = uniFE9B; layers = ( { components = ( { name = "theh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "theh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FE9B; }, { glyphname = uniFE9C; layers = ( { components = ( { name = "theh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "theh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FE9C; }, { glyphname = uniFE9E; layers = ( { components = ( { name = "jeem-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "jeem-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FE9E; }, { glyphname = uniFE9F; layers = ( { components = ( { name = "jeem-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "jeem-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FE9F; }, { glyphname = uniFEA0; layers = ( { components = ( { name = "jeem-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "jeem-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FEA0; }, { glyphname = uniFEA2; layers = ( { components = ( { name = "hah-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "hah-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FEA2; }, { glyphname = uniFEA3; layers = ( { components = ( { name = "hah-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "hah-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FEA3; }, { glyphname = uniFEA4; layers = ( { components = ( { name = "hah-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "hah-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FEA4; }, { glyphname = uniFEA6; layers = ( { components = ( { name = "khah-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { components = ( { name = "khah-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); unicode = FEA6; }, { glyphname = uniFEA7; layers = ( { components = ( { name = "khah-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { components = ( { name = "khah-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); unicode = FEA7; }, { glyphname = uniFEA8; layers = ( { components = ( { name = "khah-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { components = ( { name = "khah-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); unicode = FEA8; }, { glyphname = uniFEAA; layers = ( { components = ( { name = "dal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "dal-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FEAA; }, { glyphname = uniFEAC; layers = ( { components = ( { name = "thal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { components = ( { name = "thal-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); unicode = FEAC; }, { glyphname = uniFEAE; layers = ( { components = ( { name = "reh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { components = ( { name = "reh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); unicode = FEAE; }, { glyphname = uniFEB0; layers = ( { components = ( { name = "zain-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { components = ( { name = "zain-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); unicode = FEB0; }, { glyphname = uniFEB2; layers = ( { components = ( { name = "seen-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { components = ( { name = "seen-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); unicode = FEB2; }, { glyphname = uniFEB3; layers = ( { components = ( { name = "seen-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { components = ( { name = "seen-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); unicode = FEB3; }, { glyphname = uniFEB4; layers = ( { components = ( { name = "seen-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { components = ( { name = "seen-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); unicode = FEB4; }, { glyphname = uniFEB6; layers = ( { components = ( { name = "sheen-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { components = ( { name = "sheen-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); unicode = FEB6; }, { glyphname = uniFEB7; layers = ( { components = ( { name = "sheen-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { components = ( { name = "sheen-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); unicode = FEB7; }, { glyphname = uniFEB8; layers = ( { components = ( { name = "sheen-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { components = ( { name = "sheen-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); unicode = FEB8; }, { glyphname = uniFEBA; layers = ( { components = ( { name = "sad-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { components = ( { name = "sad-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); unicode = FEBA; }, { glyphname = uniFEBB; layers = ( { components = ( { name = "sad-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { components = ( { name = "sad-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); unicode = FEBB; }, { glyphname = uniFEBC; layers = ( { components = ( { name = "sad-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { components = ( { name = "sad-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); unicode = FEBC; }, { glyphname = uniFEBE; layers = ( { components = ( { name = "dad-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { components = ( { name = "dad-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); unicode = FEBE; }, { glyphname = uniFEBF; layers = ( { components = ( { name = "dad-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { components = ( { name = "dad-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); unicode = FEBF; }, { glyphname = uniFEC0; layers = ( { components = ( { name = "dad-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { components = ( { name = "dad-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); unicode = FEC0; }, { glyphname = uniFEC2; layers = ( { components = ( { name = "tah-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 751; }, { components = ( { name = "tah-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 751; } ); unicode = FEC2; }, { glyphname = uniFEC3; layers = ( { components = ( { name = "tah-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 567; }, { components = ( { name = "tah-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 567; } ); unicode = FEC3; }, { glyphname = uniFEC4; layers = ( { components = ( { name = "tah-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 551; }, { components = ( { name = "tah-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 551; } ); unicode = FEC4; }, { glyphname = uniFEC6; layers = ( { components = ( { name = "zah-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 751; }, { components = ( { name = "zah-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 751; } ); unicode = FEC6; }, { glyphname = uniFEC7; layers = ( { components = ( { name = "zah-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 567; }, { components = ( { name = "zah-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 567; } ); unicode = FEC7; }, { glyphname = uniFEC8; layers = ( { components = ( { name = "zah-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 551; }, { components = ( { name = "zah-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 551; } ); unicode = FEC8; }, { glyphname = uniFECA; layers = ( { components = ( { name = "ain-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { components = ( { name = "ain-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); unicode = FECA; }, { glyphname = uniFECB; layers = ( { components = ( { name = "ain-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { components = ( { name = "ain-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); unicode = FECB; }, { glyphname = uniFECC; layers = ( { components = ( { name = "ain-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { components = ( { name = "ain-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); unicode = FECC; }, { glyphname = uniFECE; layers = ( { components = ( { name = "ghain-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { components = ( { name = "ghain-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); unicode = FECE; }, { glyphname = uniFECF; layers = ( { components = ( { name = "ghain-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { components = ( { name = "ghain-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); unicode = FECF; }, { glyphname = uniFED0; layers = ( { components = ( { name = "ghain-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { components = ( { name = "ghain-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); unicode = FED0; }, { glyphname = uniFED2; layers = ( { components = ( { name = "feh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { components = ( { name = "feh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); unicode = FED2; }, { glyphname = uniFED3; layers = ( { components = ( { name = "feh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { components = ( { name = "feh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); unicode = FED3; }, { glyphname = uniFED4; layers = ( { components = ( { name = "feh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { components = ( { name = "feh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); unicode = FED4; }, { glyphname = uniFED6; layers = ( { components = ( { name = "qaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { components = ( { name = "qaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); unicode = FED6; }, { glyphname = uniFED7; layers = ( { components = ( { name = "qaf-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { components = ( { name = "qaf-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); unicode = FED7; }, { glyphname = uniFED8; layers = ( { components = ( { name = "qaf-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { components = ( { name = "qaf-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); unicode = FED8; }, { glyphname = uniFEDA; layers = ( { components = ( { name = "kaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { components = ( { name = "kaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); unicode = FEDA; }, { glyphname = uniFEDB; layers = ( { components = ( { name = "kaf-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { components = ( { name = "kaf-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); unicode = FEDB; }, { glyphname = uniFEDC; layers = ( { components = ( { name = "kaf-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { components = ( { name = "kaf-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); unicode = FEDC; }, { glyphname = uniFEDE; layers = ( { components = ( { name = "lam-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { components = ( { name = "lam-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); unicode = FEDE; }, { glyphname = uniFEDF; layers = ( { components = ( { name = "lam-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { components = ( { name = "lam-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); unicode = FEDF; }, { glyphname = uniFEE0; layers = ( { components = ( { name = "lam-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { components = ( { name = "lam-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); unicode = FEE0; }, { glyphname = uniFEE2; layers = ( { components = ( { name = "meem-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { components = ( { name = "meem-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); unicode = FEE2; }, { glyphname = uniFEE3; layers = ( { components = ( { name = "meem-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 389; }, { components = ( { name = "meem-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 389; } ); unicode = FEE3; }, { glyphname = uniFEE4; layers = ( { components = ( { name = "meem-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { components = ( { name = "meem-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); unicode = FEE4; }, { glyphname = uniFEE6; layers = ( { components = ( { name = "noon-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { components = ( { name = "noon-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); unicode = FEE6; }, { glyphname = uniFEE7; layers = ( { components = ( { name = "noon-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "noon-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FEE7; }, { glyphname = uniFEE8; layers = ( { components = ( { name = "noon-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "noon-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FEE8; }, { glyphname = uniFEEA; layers = ( { components = ( { name = "heh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { components = ( { name = "heh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); unicode = FEEA; }, { glyphname = uniFEEB; layers = ( { components = ( { name = "heh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { components = ( { name = "heh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); unicode = FEEB; }, { glyphname = uniFEEC; layers = ( { components = ( { name = "heh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { components = ( { name = "heh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); unicode = FEEC; }, { glyphname = uniFEEE; layers = ( { components = ( { name = "waw-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { components = ( { name = "waw-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); unicode = FEEE; }, { glyphname = uniFEF0; layers = ( { components = ( { name = "alefMaksura-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "alefMaksura-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = FEF0; }, { glyphname = uniFEF2; layers = ( { components = ( { name = "yeh-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "yeh-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); unicode = FEF2; }, { glyphname = uniFEF3; layers = ( { components = ( { name = "yeh-ar.init"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { components = ( { name = "yeh-ar.init"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); unicode = FEF3; }, { glyphname = uniFEF4; layers = ( { components = ( { name = "yeh-ar.medi"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { components = ( { name = "yeh-ar.medi"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); unicode = FEF4; }, { glyphname = uniFEF5; layers = ( { components = ( { name = "alefMadda-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "alefMadda-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FEF5; subCategory = ""; }, { glyphname = uniFEF6; layers = ( { components = ( { name = "alefMadda-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 691; }, { components = ( { name = "alefMadda-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 691; } ); unicode = FEF6; subCategory = ""; }, { glyphname = uniFEF7; layers = ( { components = ( { name = "alefHamzaabove-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "alefHamzaabove-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FEF7; subCategory = ""; }, { glyphname = uniFEF8; layers = ( { components = ( { name = "alefHamzaabove-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 691; }, { components = ( { name = "alefHamzaabove-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 691; } ); unicode = FEF8; subCategory = ""; }, { glyphname = uniFEF9; layers = ( { components = ( { name = "alefHamzabelow-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "alefHamzabelow-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FEF9; subCategory = ""; }, { glyphname = uniFEFA; layers = ( { components = ( { name = "alefHamzabelow-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 691; }, { components = ( { name = "alefHamzabelow-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 691; } ); unicode = FEFA; subCategory = ""; }, { glyphname = uniFEFB; layers = ( { components = ( { name = "alef-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { components = ( { name = "alef-ar.fina.LamAlfIsol"; }, { name = "lam-ar.init.LamAlfIsol"; transform = "{1, 0, 0, 1, 341, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 643; } ); unicode = FEFB; subCategory = ""; }, { glyphname = uniFEFC; layers = ( { components = ( { name = "alef-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 691; }, { components = ( { name = "alef-ar.fina.LamAlfFina"; }, { name = "lam-ar.medi.LamAlfFina"; transform = "{1, 0, 0, 1, 447, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 691; } ); unicode = FEFC; subCategory = ""; }, { glyphname = zeroWidthNoBreakSpace; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); unicode = FEFF; }, { glyphname = u1EE00; layers = ( { components = ( { name = "alef-ar"; transform = "{1, 0, 0, 1, -6, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "151 537 LINE SMOOTH", "155 525 OFFCURVE", "154 517 OFFCURVE", "150 515 CURVE SMOOTH", "146 513 OFFCURVE", "140 517 OFFCURVE", "132 527 CURVE SMOOTH", "78 597 LINE", "107 683 LINE" ); } ); width = 207; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE00; }, { glyphname = u1EE01; layers = ( { components = ( { name = u1EE1C; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 488, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE01; }, { glyphname = u1EE02; layers = ( { components = ( { name = u1EE07; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, 90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 811; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE02; }, { glyphname = u1EE03; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "420 492 OFFCURVE", "418 496 OFFCURVE", "413 500 CURVE SMOOTH", "403 508 OFFCURVE", "384 512 OFFCURVE", "358 511 CURVE SMOOTH", "315 509 OFFCURVE", "275 484 OFFCURVE", "238 437 CURVE SMOOTH", "208 399 OFFCURVE", "188 357 OFFCURVE", "178 312 CURVE SMOOTH", "168 267 OFFCURVE", "176 232 OFFCURVE", "202 209 CURVE SMOOTH", "232 182 OFFCURVE", "273 158 OFFCURVE", "327 137 CURVE SMOOTH", "344 130 OFFCURVE", "346 121 OFFCURVE", "331 111 CURVE SMOOTH", "277 75 OFFCURVE", "192 37 OFFCURVE", "74 -5 CURVE SMOOTH", "64 -9 OFFCURVE", "59 -14 OFFCURVE", "59 -21 CURVE SMOOTH", "59 -30 OFFCURVE", "64 -34 OFFCURVE", "76 -34 CURVE SMOOTH", "152 -32 OFFCURVE", "217 -26 OFFCURVE", "269 -16 CURVE SMOOTH", "297 -11 OFFCURVE", "317 1 OFFCURVE", "330 16 CURVE SMOOTH", "349 38 OFFCURVE", "366 70 OFFCURVE", "379 112 CURVE SMOOTH", "388 141 OFFCURVE", "389 166 OFFCURVE", "384 188 CURVE SMOOTH", "379 208 OFFCURVE", "368 222 OFFCURVE", "349 231 CURVE SMOOTH", "254 277 OFFCURVE", "210 311 OFFCURVE", "216 332 CURVE SMOOTH", "223 356 OFFCURVE", "245 377 OFFCURVE", "284 395 CURVE SMOOTH", "323 413 OFFCURVE", "357 416 OFFCURVE", "387 405 CURVE SMOOTH", "393 403 OFFCURVE", "396 405 OFFCURVE", "399 412 CURVE SMOOTH", "409 440 OFFCURVE", "416 465 OFFCURVE", "419 487 CURVE SMOOTH" ); } ); width = 478; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE03; }, { glyphname = u1EE05; layers = ( { components = ( { name = "waw-ar"; transform = "{1, 0, 0, 1, 142, 128}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 537; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE05; }, { glyphname = u1EE06; layers = ( { components = ( { name = u1EE13; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 302, 599}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 537; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE06; }, { glyphname = u1EE07; layers = ( { components = ( { name = "hah-ar"; transform = "{1, 0, 0, 1, -4, 314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 811; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE07; }, { glyphname = u1EE08; layers = ( { components = ( { name = "tah-ar"; transform = "{1, 0, 0, 1, -5, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 782; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE08; }, { glyphname = u1EE09; layers = ( { components = ( { name = "yeh-ar"; transform = "{1, 0, 0, 1, -4, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 757; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE09; }, { glyphname = u1EE0A; layers = ( { components = ( { name = "kaf-ar"; transform = "{1, 0, 0, 1, -5, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 647; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE0A; }, { glyphname = u1EE0B; layers = ( { components = ( { name = "lam-ar"; transform = "{1, 0, 0, 1, -5, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 593; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE0B; }, { glyphname = u1EE0C; layers = ( { components = ( { name = "meem-ar"; transform = "{1, 0, 0, 1, -5, 90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 441; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE0C; }, { glyphname = u1EE0D; layers = ( { components = ( { name = u1EE1D; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE0D; }, { glyphname = u1EE0E; layers = ( { components = ( { name = "seen-ar"; transform = "{1, 0, 0, 1, -5, 128}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 982; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE0E; }, { glyphname = u1EE0F; layers = ( { components = ( { name = "ain-ar"; transform = "{1, 0, 0, 1, -5, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 777; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE0F; }, { glyphname = u1EE10; layers = ( { components = ( { name = u1EE1E; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 635, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 974; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE10; }, { glyphname = u1EE11; layers = ( { components = ( { name = "sad-ar"; transform = "{1, 0, 0, 1, -4, 126}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1203; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE11; }, { glyphname = u1EE12; layers = ( { components = ( { name = u1EE1F; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 474, 580}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 677; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE12; }, { glyphname = u1EE13; layers = ( { components = ( { name = "reh-ar"; transform = "{1, 0, 0, 1, 142, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 537; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE13; }, { glyphname = u1EE14; layers = ( { components = ( { name = u1EE0E; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 582}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 982; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE14; }, { glyphname = u1EE15; layers = ( { components = ( { name = u1EE1C; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE15; }, { glyphname = u1EE16; layers = ( { components = ( { name = u1EE1C; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE16; }, { glyphname = u1EE17; layers = ( { components = ( { name = u1EE07; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 686}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 811; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE17; }, { glyphname = u1EE18; layers = ( { components = ( { name = u1EE03; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 312, 610}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 478; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE18; }, { glyphname = u1EE19; layers = ( { components = ( { name = u1EE11; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 821, 600}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1203; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE19; }, { glyphname = u1EE1A; layers = ( { components = ( { name = u1EE08; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 566, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 782; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE1A; }, { glyphname = u1EE1B; layers = ( { components = ( { name = u1EE0F; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 777; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE1B; }, { glyphname = u1EE1C; layers = ( { components = ( { name = "behDotless-ar"; transform = "{1, 0, 0, 1, -5, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE1C; }, { glyphname = u1EE1D; layers = ( { components = ( { name = "noonghunna-ar"; transform = "{1, 0, 0, 1, -5, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE1D; }, { glyphname = u1EE1E; layers = ( { components = ( { name = "fehDotless-ar"; transform = "{1, 0, 0, 1, -5, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 974; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE1E; }, { glyphname = u1EE1F; layers = ( { components = ( { name = "qafDotless-ar"; transform = "{1, 0, 0, 1, -5, 111}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 677; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE1F; }, { glyphname = u1EE21; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 249, -239}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 1}"; }, { name = aBaa.init; transform = "{1, 0, 0, 1, 244, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 433; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE21; }, { glyphname = u1EE22; layers = ( { components = ( { name = u1EE27; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 519, -167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 947; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE22; }, { glyphname = u1EE24; layers = ( { anchors = ( { name = TashkilAbove; position = "{357, 819}"; }, { name = TashkilBelow; position = "{357, -309}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "252 340 OFFCURVE", "275 370 OFFCURVE", "303 369 CURVE SMOOTH", "331 368 OFFCURVE", "376 337 OFFCURVE", "437 279 CURVE SMOOTH", "498 221 OFFCURVE", "532 174 OFFCURVE", "538 139 CURVE SMOOTH", "545 95 OFFCURVE", "534 57 OFFCURVE", "506 23 CURVE SMOOTH", "492 6 OFFCURVE", "475 -2 OFFCURVE", "454 0 CURVE SMOOTH", "401 6 OFFCURVE", "344 21 OFFCURVE", "283 44 CURVE", "265 25 OFFCURVE", "221 5 OFFCURVE", "152 -15 CURVE SMOOTH", "145 -17 OFFCURVE", "136 -15 OFFCURVE", "127 -10 CURVE SMOOTH", "81 12 LINE SMOOTH", "52 26 OFFCURVE", "51 36 OFFCURVE", "77 41 CURVE SMOOTH", "149 56 OFFCURVE", "197 68 OFFCURVE", "220 77 CURVE", "201 92 OFFCURVE", "196 113 OFFCURVE", "204 138 CURVE SMOOTH", "218 181 OFFCURVE", "243 218 OFFCURVE", "278 249 CURVE", "271 260 OFFCURVE", "260 266 OFFCURVE", "245 268 CURVE SMOOTH", "237 269 OFFCURVE", "234 273 OFFCURVE", "236 280 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "331 134 OFFCURVE", "342 143 OFFCURVE", "342 150 CURVE", "339 185 OFFCURVE", "329 204 OFFCURVE", "311 208 CURVE SMOOTH", "284 214 OFFCURVE", "259 202 OFFCURVE", "236 173 CURVE SMOOTH", "229 165 OFFCURVE", "233 156 OFFCURVE", "244 149 CURVE SMOOTH", "255 142 OFFCURVE", "277 133 OFFCURVE", "309 123 CURVE" ); }, { closed = 1; nodes = ( "381 197 OFFCURVE", "381 197 OFFCURVE", "381 194 CURVE SMOOTH", "384 173 OFFCURVE", "372 145 OFFCURVE", "346 111 CURVE", "424 87 OFFCURVE", "470 78 OFFCURVE", "484 86 CURVE SMOOTH", "488 88 OFFCURVE", "489 92 OFFCURVE", "488 95 CURVE SMOOTH", "475 126 OFFCURVE", "441 159 OFFCURVE", "384 195 CURVE SMOOTH" ); } ); width = 598; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE24; }, { glyphname = u1EE27; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "295 221 OFFCURVE", "311 247 OFFCURVE", "334 271 CURVE SMOOTH", "360 298 OFFCURVE", "386 313 OFFCURVE", "412 313 CURVE SMOOTH", "438 313 OFFCURVE", "497 294 OFFCURVE", "588 256 CURVE SMOOTH", "621 242 OFFCURVE", "664 231 OFFCURVE", "715 221 CURVE SMOOTH", "766 211 OFFCURVE", "819 208 OFFCURVE", "873 212 CURVE SMOOTH", "888 213 OFFCURVE", "892 207 OFFCURVE", "886 194 CURVE SMOOTH", "858 133 LINE SMOOTH", "854 125 OFFCURVE", "848 122 OFFCURVE", "837 124 CURVE SMOOTH", "765 137 OFFCURVE", "693 131 OFFCURVE", "623 108 CURVE SMOOTH", "573 91 OFFCURVE", "508 64 OFFCURVE", "426 26 CURVE SMOOTH", "369 0 OFFCURVE", "312 -15 OFFCURVE", "253 -16 CURVE SMOOTH", "214 -17 OFFCURVE", "183 -13 OFFCURVE", "162 -6 CURVE SMOOTH", "117 10 OFFCURVE", "84 29 OFFCURVE", "66 50 CURVE SMOOTH", "54 64 OFFCURVE", "56 70 OFFCURVE", "71 69 CURVE SMOOTH", "142 62 OFFCURVE", "213 61 OFFCURVE", "283 67 CURVE SMOOTH", "360 73 OFFCURVE", "453 106 OFFCURVE", "562 163 CURVE", "494 202 OFFCURVE", "436 219 OFFCURVE", "388 216 CURVE SMOOTH", "358 214 OFFCURVE", "331 202 OFFCURVE", "306 181 CURVE SMOOTH", "300 176 OFFCURVE", "294 176 OFFCURVE", "289 180 CURVE SMOOTH", "285 184 OFFCURVE", "284 187 OFFCURVE", "286 192 CURVE SMOOTH" ); } ); width = 947; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE27; }, { glyphname = u1EE29; layers = ( { components = ( { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 96, 1}"; }, { name = aBaa.init; transform = "{1, 0, 0, 1, 255, 0}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 245, -222}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 443; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE29; }, { glyphname = u1EE2A; layers = ( { components = ( { name = "kaf-ar.init"; transform = "{1, 0, 0, 1, 86, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 743; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE2A; }, { glyphname = u1EE2B; layers = ( { components = ( { name = "lam-ar.init"; transform = "{1, 0, 0, 1, 269, 0}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 440; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE2B; }, { glyphname = u1EE2C; layers = ( { components = ( { name = "meem-ar.init"; transform = "{1, 0, 0, 1, 82, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 466; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE2C; }, { glyphname = u1EE2D; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 192, 326}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 1}"; }, { name = aBaa.init; transform = "{1, 0, 0, 1, 244, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 433; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE2D; }, { glyphname = u1EE2E; layers = ( { components = ( { name = "seen-ar.init"; transform = "{1, 0, 0, 1, 78, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 641; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE2E; }, { glyphname = u1EE2F; layers = ( { components = ( { name = "ain-ar.init"; transform = "{1, 0, 0, 1, 90, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 563; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE2F; }, { glyphname = u1EE30; layers = ( { components = ( { name = "feh-ar.init"; transform = "{1, 0, 0, 1, 231, 0}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 521; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE30; }, { glyphname = u1EE31; layers = ( { components = ( { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 80, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 774; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE31; }, { glyphname = u1EE32; layers = ( { components = ( { name = "qaf-ar.init"; transform = "{1, 0, 0, 1, 231, 0}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 521; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE32; }, { glyphname = u1EE34; layers = ( { components = ( { name = u1EE2E; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 641; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE34; }, { glyphname = u1EE35; layers = ( { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 192, 322}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 1}"; }, { name = aBaa.init; transform = "{1, 0, 0, 1, 244, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 433; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE35; }, { glyphname = u1EE36; layers = ( { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 196, 322}"; }, { name = "kashida-ar.1"; transform = "{1, 0, 0, 1, 86, 1}"; }, { name = aBaa.init; transform = "{1, 0, 0, 1, 244, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 433; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE36; }, { glyphname = u1EE37; layers = ( { components = ( { name = u1EE27; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 595, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 947; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE37; }, { glyphname = u1EE39; layers = ( { components = ( { name = u1EE31; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 774; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE39; }, { glyphname = u1EE3B; layers = ( { components = ( { name = u1EE2F; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 563; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE3B; }, { glyphname = u1EE42; layers = ( { components = ( { name = u1EE47; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 386, 90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 809; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE42; }, { glyphname = u1EE47; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "600 487 LINE SMOOTH", "597 481 OFFCURVE", "593 479 OFFCURVE", "588 478 CURVE SMOOTH", "428 457 OFFCURVE", "317 425 OFFCURVE", "253 383 CURVE SMOOTH", "129 302 OFFCURVE", "80 203 OFFCURVE", "106 86 CURVE SMOOTH", "124 9 OFFCURVE", "179 -43 OFFCURVE", "271 -69 CURVE SMOOTH", "358 -94 OFFCURVE", "456 -88 OFFCURVE", "566 -52 CURVE SMOOTH", "666 -19 OFFCURVE", "726 -45 OFFCURVE", "745 -130 CURVE SMOOTH", "753 -164 OFFCURVE", "753 -200 OFFCURVE", "746 -241 CURVE", "705 -246 LINE", "706 -205 OFFCURVE", "701 -171 OFFCURVE", "691 -146 CURVE SMOOTH", "676 -112 OFFCURVE", "646 -109 OFFCURVE", "602 -134 CURVE SMOOTH", "523 -177 OFFCURVE", "446 -197 OFFCURVE", "370 -197 CURVE SMOOTH", "273 -197 OFFCURVE", "195 -170 OFFCURVE", "138 -117 CURVE SMOOTH", "69 -52 OFFCURVE", "45 44 OFFCURVE", "66 173 CURVE SMOOTH", "87 304 OFFCURVE", "168 403 OFFCURVE", "308 470 CURVE", "218 492 OFFCURVE", "150 489 OFFCURVE", "105 463 CURVE SMOOTH", "101 461 OFFCURVE", "98 460 OFFCURVE", "94 461 CURVE SMOOTH", "90 462 OFFCURVE", "88 463 OFFCURVE", "88 467 CURVE SMOOTH", "89 483 OFFCURVE", "93 500 OFFCURVE", "99 517 CURVE SMOOTH", "111 552 OFFCURVE", "143 570 OFFCURVE", "195 573 CURVE SMOOTH", "221 574 OFFCURVE", "262 570 OFFCURVE", "318 559 CURVE SMOOTH", "374 548 OFFCURVE", "422 542 OFFCURVE", "461 543 CURVE SMOOTH", "500 544 OFFCURVE", "547 549 OFFCURVE", "604 559 CURVE SMOOTH", "624 562 OFFCURVE", "631 556 OFFCURVE", "624 541 CURVE SMOOTH" ); } ); width = 809; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE47; }, { glyphname = u1EE49; layers = ( { components = ( { name = "yehTail-ar"; transform = "{1, 0, 0, 1, 84, 151}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 439, -263}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE49; }, { glyphname = u1EE4B; layers = ( { components = ( { name = "lam-ar"; transform = "{1, 0, 0, 1, 111, 0}"; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 189, 214}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 708; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE4B; }, { glyphname = u1EE4D; layers = ( { components = ( { name = u1EE5D; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 398, 483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 692; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE4D; }, { glyphname = u1EE4E; layers = ( { components = ( { name = "seen-ar"; transform = "{1, 0, 0, 1, 116, 128}"; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 189, 213}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1103; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE4E; }, { glyphname = u1EE4F; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "126 -159 OFFCURVE", "54 -69 OFFCURVE", "59 83 CURVE SMOOTH", "64 230 OFFCURVE", "108 346 OFFCURVE", "192 428 CURVE", "140 449 OFFCURVE", "106 471 OFFCURVE", "89 494 CURVE SMOOTH", "82 503 OFFCURVE", "79 514 OFFCURVE", "80 526 CURVE SMOOTH", "83 557 OFFCURVE", "91 585 OFFCURVE", "105 611 CURVE SMOOTH", "136 669 OFFCURVE", "171 708 OFFCURVE", "212 728 CURVE SMOOTH", "232 737 OFFCURVE", "254 734 OFFCURVE", "282 718 CURVE SMOOTH", "310 702 OFFCURVE", "330 685 OFFCURVE", "341 669 CURVE SMOOTH", "348 659 OFFCURVE", "344 656 OFFCURVE", "328 659 CURVE SMOOTH", "242 676 OFFCURVE", "171 647 OFFCURVE", "115 572 CURVE SMOOTH", "112 568 OFFCURVE", "112 565 OFFCURVE", "117 560 CURVE SMOOTH", "164 516 OFFCURVE", "220 498 OFFCURVE", "282 505 CURVE SMOOTH", "293 506 OFFCURVE", "308 514 OFFCURVE", "329 526 CURVE SMOOTH", "407 574 OFFCURVE", "450 600 OFFCURVE", "460 605 CURVE SMOOTH", "472 611 OFFCURVE", "476 605 OFFCURVE", "470 588 CURVE SMOOTH", "455 546 OFFCURVE", "443 523 OFFCURVE", "435 519 CURVE SMOOTH", "381 495 OFFCURVE", "314 454 OFFCURVE", "236 397 CURVE SMOOTH", "149 334 OFFCURVE", "100 247 OFFCURVE", "88 138 CURVE SMOOTH", "82 81 OFFCURVE", "96 30 OFFCURVE", "131 -14 CURVE SMOOTH", "163 -55 OFFCURVE", "219 -82 OFFCURVE", "299 -97 CURVE SMOOTH", "385 -113 OFFCURVE", "473 -106 OFFCURVE", "565 -76 CURVE SMOOTH", "669 -43 OFFCURVE", "729 -61 OFFCURVE", "745 -130 CURVE SMOOTH", "753 -164 OFFCURVE", "753 -200 OFFCURVE", "745 -241 CURVE", "705 -246 LINE", "707 -204 OFFCURVE", "702 -170 OFFCURVE", "691 -146 CURVE SMOOTH", "677 -113 OFFCURVE", "647 -110 OFFCURVE", "602 -134 CURVE SMOOTH", "556 -159 OFFCURVE", "515 -175 OFFCURVE", "478 -183 CURVE SMOOTH", "410 -198 OFFCURVE", "342 -200 OFFCURVE", "276 -188 CURVE SMOOTH" ); } ); width = 809; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE4F; }, { glyphname = u1EE51; layers = ( { components = ( { name = "sad-ar"; transform = "{1, 0, 0, 1, 97, 126}"; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 189, 237}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1304; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE51; }, { glyphname = u1EE52; layers = ( { components = ( { name = u1EE5F; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 569, 580}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE52; }, { glyphname = u1EE54; layers = ( { components = ( { name = u1EE4E; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 869, 582}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1103; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE54; }, { glyphname = u1EE57; layers = ( { components = ( { name = u1EE47; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 686}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 809; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE57; }, { glyphname = u1EE59; layers = ( { components = ( { name = u1EE51; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 922, 600}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1304; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE59; }, { glyphname = u1EE5B; layers = ( { components = ( { name = u1EE4F; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 809; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE5B; }, { glyphname = u1EE5D; layers = ( { components = ( { name = "noonghunna-ar"; transform = "{1, 0, 0, 1, 125, 0}"; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 189, 188}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 692; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE5D; }, { glyphname = u1EE5F; layers = ( { components = ( { name = aYaa.tail; transform = "{1, 0, 0, 1, 189, 284}"; }, { name = u1EE1F; transform = "{1, 0, 0, 1, 95, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE5F; }, { glyphname = u1EE61; layers = ( { components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -239}"; }, { name = u1EE7C; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE61; }, { glyphname = u1EE62; layers = ( { components = ( { name = u1EE67; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 522, -208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 850; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE62; }, { glyphname = u1EE64; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "heh-ar.init"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 694; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE64; }, { glyphname = u1EE67; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "hah-ar.init.Finjani"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 850; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE67; }, { glyphname = u1EE68; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "tah-ar.init"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 810; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE68; }, { glyphname = u1EE69; layers = ( { components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 240, -239}"; }, { name = u1EE7C; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE69; }, { glyphname = u1EE6A; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "kaf-ar.init"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 904; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE6A; }, { glyphname = u1EE6C; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "meem-ar.init"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 631; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE6C; }, { glyphname = u1EE6D; layers = ( { components = ( { name = u1EE7C; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 315, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE6D; }, { glyphname = u1EE6E; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "seen-ar.init"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 810; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE6E; }, { glyphname = u1EE6F; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "ain-ar.init.Finjani"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE6F; }, { glyphname = u1EE70; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 308, 493}"; }, { name = u1EE7E; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 537; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE70; }, { glyphname = u1EE71; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = "sad-ar.init"; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 941; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE71; }, { glyphname = u1EE72; layers = ( { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 342, 493}"; }, { name = u1EE7E; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 537; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE72; }, { glyphname = u1EE74; layers = ( { components = ( { name = u1EE6E; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 547, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 810; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE74; }, { glyphname = u1EE75; layers = ( { components = ( { name = u1EE7C; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 313, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE75; }, { glyphname = u1EE76; layers = ( { components = ( { name = u1EE7C; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 313, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE76; }, { glyphname = u1EE77; layers = ( { components = ( { name = u1EE67; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 410, 382}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 850; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE77; }, { glyphname = u1EE79; layers = ( { components = ( { name = u1EE71; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 539, 368}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 941; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE79; }, { glyphname = u1EE7A; layers = ( { components = ( { name = u1EE68; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 603, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 810; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE7A; }, { glyphname = u1EE7B; layers = ( { components = ( { name = u1EE6F; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 341, 437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 643; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE7B; }, { glyphname = u1EE7C; layers = ( { components = ( { name = aBaa.init; transform = "{1, 0, 0, 1, 247, 0}"; }, { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE7C; }, { glyphname = u1EE7E; layers = ( { components = ( { name = "alef-ar.fina"; transform = "{1, 0, 0, 1, 18, 0}"; }, { name = aFaa.init; transform = "{1, 0, 0, 1, 247, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 537; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE7E; }, { glyphname = u1EE80; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "191 70 OFFCURVE", "191 111 OFFCURVE", "189 148 CURVE", "163 169 OFFCURVE", "134 172 OFFCURVE", "103 156 CURVE SMOOTH", "97 153 OFFCURVE", "92 150 OFFCURVE", "88 145 CURVE", "87 132 OFFCURVE", "87 116 OFFCURVE", "89 98 CURVE SMOOTH", "94 50 OFFCURVE", "113 22 OFFCURVE", "144 13 CURVE", "165 8 OFFCURVE", "180 11 OFFCURVE", "190 21 CURVE" ); }, { closed = 1; nodes = ( "234 198 OFFCURVE", "240 189 OFFCURVE", "247 179 CURVE SMOOTH", "282 126 OFFCURVE", "299 49 OFFCURVE", "300 -50 CURVE SMOOTH", "300 -55 OFFCURVE", "298 -63 OFFCURVE", "294 -77 CURVE SMOOTH", "290 -91 OFFCURVE", "286 -101 OFFCURVE", "280 -108 CURVE SMOOTH", "274 -115 OFFCURVE", "272 -115 OFFCURVE", "272 -108 CURVE SMOOTH", "271 -18 OFFCURVE", "256 53 OFFCURVE", "225 104 CURVE", "222 60 OFFCURVE", "215 28 OFFCURVE", "205 7 CURVE SMOOTH", "190 -22 OFFCURVE", "178 -40 OFFCURVE", "169 -47 CURVE SMOOTH", "155 -58 OFFCURVE", "138 -61 OFFCURVE", "119 -56 CURVE SMOOTH", "86 -47 OFFCURVE", "67 -16 OFFCURVE", "61 37 CURVE SMOOTH", "57 74 OFFCURVE", "59 108 OFFCURVE", "68 138 CURVE SMOOTH", "82 184 OFFCURVE", "101 213 OFFCURVE", "125 225 CURVE SMOOTH", "145 235 OFFCURVE", "162 237 OFFCURVE", "180 233 CURVE", "176 268 OFFCURVE", "170 323 OFFCURVE", "162 397 CURVE SMOOTH", "140 593 LINE SMOOTH", "139 604 OFFCURVE", "141 615 OFFCURVE", "146 626 CURVE SMOOTH", "168 678 LINE SMOOTH", "178 701 OFFCURVE", "183 701 OFFCURVE", "186 680 CURVE", "209 427 LINE", "219 340 OFFCURVE", "225 266 OFFCURVE", "227 205 CURVE" ); } ); width = 358; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE80; }, { glyphname = u1EE81; layers = ( { components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 483, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "140 329 OFFCURVE", "165 346 OFFCURVE", "192 351 CURVE SMOOTH", "206 354 OFFCURVE", "225 353 OFFCURVE", "249 348 CURVE SMOOTH", "317 333 OFFCURVE", "365 284 OFFCURVE", "390 200 CURVE SMOOTH", "399 169 OFFCURVE", "403 132 OFFCURVE", "402 91 CURVE", "572 94 OFFCURVE", "711 126 OFFCURVE", "820 189 CURVE", "818 213 OFFCURVE", "802 245 OFFCURVE", "772 285 CURVE SMOOTH", "770 288 OFFCURVE", "771 297 OFFCURVE", "774 312 CURVE SMOOTH", "777 327 OFFCURVE", "785 347 OFFCURVE", "797 372 CURVE SMOOTH", "801 381 OFFCURVE", "808 381 OFFCURVE", "816 372 CURVE SMOOTH", "835 350 OFFCURVE", "847 319 OFFCURVE", "854 281 CURVE SMOOTH", "860 243 OFFCURVE", "860 205 OFFCURVE", "852 169 CURVE SMOOTH", "844 133 OFFCURVE", "831 109 OFFCURVE", "812 99 CURVE SMOOTH", "706 37 OFFCURVE", "572 1 OFFCURVE", "412 -7 CURVE SMOOTH", "405 -7 OFFCURVE", "398 -7 OFFCURVE", "391 -7 CURVE", "382 -56 OFFCURVE", "368 -110 OFFCURVE", "348 -169 CURVE SMOOTH", "344 -181 OFFCURVE", "335 -194 OFFCURVE", "320 -209 CURVE SMOOTH", "305 -224 OFFCURVE", "299 -227 OFFCURVE", "303 -215 CURVE SMOOTH", "329 -137 OFFCURVE", "345 -68 OFFCURVE", "352 -8 CURVE", "225 -6 OFFCURVE", "138 24 OFFCURVE", "90 83 CURVE SMOOTH", "55 127 OFFCURVE", "49 177 OFFCURVE", "74 236 CURVE SMOOTH", "82 256 OFFCURVE", "96 278 OFFCURVE", "115 300 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "351 111 OFFCURVE", "348 129 OFFCURVE", "343 145 CURVE SMOOTH", "318 227 OFFCURVE", "272 276 OFFCURVE", "205 290 CURVE SMOOTH", "160 300 OFFCURVE", "130 289 OFFCURVE", "116 257 CURVE SMOOTH", "109 241 OFFCURVE", "107 227 OFFCURVE", "111 216 CURVE SMOOTH", "132 139 OFFCURVE", "212 98 OFFCURVE", "353 92 CURVE" ); } ); width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE81; }, { glyphname = u1EE82; layers = ( { components = ( { name = u1EE87; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 276, 114}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 749; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE82; }, { glyphname = u1EE83; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "142 93 OFFCURVE", "167 89 OFFCURVE", "196 93 CURVE SMOOTH", "211 95 OFFCURVE", "225 97 OFFCURVE", "238 99 CURVE", "234 106 OFFCURVE", "230 113 OFFCURVE", "226 120 CURVE SMOOTH", "194 171 OFFCURVE", "156 186 OFFCURVE", "111 168 CURVE", "96 162 OFFCURVE", "89 154 OFFCURVE", "90 142 CURVE SMOOTH", "91 124 OFFCURVE", "101 111 OFFCURVE", "121 102 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "303 1 OFFCURVE", "304 -18 OFFCURVE", "304 -38 CURVE SMOOTH", "304 -50 OFFCURVE", "298 -66 OFFCURVE", "289 -85 CURVE SMOOTH", "280 -104 OFFCURVE", "275 -108 OFFCURVE", "275 -96 CURVE SMOOTH", "275 -58 OFFCURVE", "272 -23 OFFCURVE", "266 9 CURVE", "230 0 OFFCURVE", "190 -5 OFFCURVE", "149 -6 CURVE SMOOTH", "138 -6 OFFCURVE", "129 -5 OFFCURVE", "121 -2 CURVE SMOOTH", "82 11 OFFCURVE", "61 38 OFFCURVE", "59 78 CURVE SMOOTH", "57 115 OFFCURVE", "65 153 OFFCURVE", "84 191 CURVE SMOOTH", "95 212 OFFCURVE", "112 228 OFFCURVE", "133 237 CURVE SMOOTH", "180 257 OFFCURVE", "220 240 OFFCURVE", "253 187 CURVE SMOOTH", "267 165 OFFCURVE", "278 138 OFFCURVE", "286 108 CURVE", "317 115 OFFCURVE", "339 123 OFFCURVE", "354 131 CURVE SMOOTH", "356 132 OFFCURVE", "357 136 OFFCURVE", "356 143 CURVE SMOOTH", "346 208 OFFCURVE", "293 260 OFFCURVE", "194 299 CURVE SMOOTH", "181 304 OFFCURVE", "176 312 OFFCURVE", "179 322 CURVE SMOOTH", "190 355 OFFCURVE", "200 375 OFFCURVE", "208 385 CURVE SMOOTH", "214 392 OFFCURVE", "221 392 OFFCURVE", "230 387 CURVE SMOOTH", "319 338 OFFCURVE", "371 272 OFFCURVE", "386 190 CURVE SMOOTH", "394 144 OFFCURVE", "392 103 OFFCURVE", "380 68 CURVE SMOOTH", "376 58 OFFCURVE", "369 50 OFFCURVE", "359 44 CURVE SMOOTH", "340 34 OFFCURVE", "321 26 OFFCURVE", "301 19 CURVE" ); } ); width = 449; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE83; }, { glyphname = u1EE84; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "496 239 OFFCURVE", "495 238 OFFCURVE", "495 235 CURVE SMOOTH", "498 214 OFFCURVE", "487 186 OFFCURVE", "461 152 CURVE", "539 128 OFFCURVE", "584 120 OFFCURVE", "598 128 CURVE SMOOTH", "602 130 OFFCURVE", "604 133 OFFCURVE", "603 136 CURVE SMOOTH", "590 167 OFFCURVE", "556 201 OFFCURVE", "499 237 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "446 176 OFFCURVE", "457 184 OFFCURVE", "457 191 CURVE", "454 226 OFFCURVE", "444 245 OFFCURVE", "426 249 CURVE SMOOTH", "399 255 OFFCURVE", "374 243 OFFCURVE", "351 214 CURVE SMOOTH", "344 206 OFFCURVE", "347 198 OFFCURVE", "358 191 CURVE SMOOTH", "369 184 OFFCURVE", "392 175 OFFCURVE", "424 165 CURVE" ); }, { closed = 1; nodes = ( "304 4 OFFCURVE", "304 -8 OFFCURVE", "304 -19 CURVE SMOOTH", "304 -31 OFFCURVE", "299 -47 OFFCURVE", "290 -66 CURVE SMOOTH", "281 -85 OFFCURVE", "276 -89 OFFCURVE", "276 -77 CURVE SMOOTH", "276 -49 OFFCURVE", "273 -24 OFFCURVE", "270 0 CURVE", "268 0 OFFCURVE", "267 0 OFFCURVE", "265 0 CURVE SMOOTH", "217 -3 OFFCURVE", "178 0 OFFCURVE", "146 9 CURVE SMOOTH", "114 19 OFFCURVE", "91 32 OFFCURVE", "79 48 CURVE SMOOTH", "67 63 OFFCURVE", "60 83 OFFCURVE", "59 108 CURVE SMOOTH", "57 135 OFFCURVE", "64 167 OFFCURVE", "81 202 CURVE SMOOTH", "87 214 OFFCURVE", "94 225 OFFCURVE", "101 234 CURVE SMOOTH", "108 243 OFFCURVE", "120 250 OFFCURVE", "134 256 CURVE SMOOTH", "181 276 OFFCURVE", "220 259 OFFCURVE", "253 206 CURVE SMOOTH", "272 176 OFFCURVE", "286 140 OFFCURVE", "294 97 CURVE", "308 102 OFFCURVE", "321 109 OFFCURVE", "334 118 CURVE", "315 133 OFFCURVE", "311 154 OFFCURVE", "319 179 CURVE SMOOTH", "333 222 OFFCURVE", "357 259 OFFCURVE", "392 290 CURVE", "385 301 OFFCURVE", "375 307 OFFCURVE", "360 309 CURVE SMOOTH", "352 310 OFFCURVE", "349 315 OFFCURVE", "351 322 CURVE SMOOTH", "367 382 OFFCURVE", "389 411 OFFCURVE", "417 410 CURVE SMOOTH", "445 409 OFFCURVE", "490 379 OFFCURVE", "551 321 CURVE SMOOTH", "612 263 OFFCURVE", "646 216 OFFCURVE", "652 181 CURVE SMOOTH", "659 137 OFFCURVE", "649 98 OFFCURVE", "621 64 CURVE SMOOTH", "607 47 OFFCURVE", "590 40 OFFCURVE", "569 42 CURVE SMOOTH", "518 47 OFFCURVE", "461 61 OFFCURVE", "398 85 CURVE", "360 51 OFFCURVE", "328 28 OFFCURVE", "303 14 CURVE" ); }, { closed = 1; nodes = ( "244 104 OFFCURVE", "235 121 OFFCURVE", "225 140 CURVE", "193 190 OFFCURVE", "155 207 OFFCURVE", "111 188 CURVE SMOOTH", "91 180 OFFCURVE", "83 169 OFFCURVE", "88 158 CURVE SMOOTH", "107 111 OFFCURVE", "160 87 OFFCURVE", "250 88 CURVE" ); } ); width = 712; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE84; }, { glyphname = u1EE85; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "401 312 OFFCURVE", "380 313 OFFCURVE", "358 285 CURVE", "375 266 OFFCURVE", "396 265 OFFCURVE", "420 281 CURVE" ); }, { closed = 1; nodes = ( "106 -77 OFFCURVE", "65 -29 OFFCURVE", "59 53 CURVE SMOOTH", "56 91 OFFCURVE", "68 128 OFFCURVE", "95 164 CURVE SMOOTH", "110 184 OFFCURVE", "126 195 OFFCURVE", "146 199 CURVE SMOOTH", "191 207 OFFCURVE", "226 186 OFFCURVE", "253 135 CURVE SMOOTH", "274 97 OFFCURVE", "289 49 OFFCURVE", "297 -8 CURVE", "318 3 OFFCURVE", "339 18 OFFCURVE", "361 38 CURVE SMOOTH", "414 85 OFFCURVE", "446 124 OFFCURVE", "456 155 CURVE", "453 182 OFFCURVE", "449 198 OFFCURVE", "444 201 CURVE", "419 162 OFFCURVE", "387 152 OFFCURVE", "348 172 CURVE SMOOTH", "308 192 OFFCURVE", "302 241 OFFCURVE", "330 318 CURVE SMOOTH", "353 382 OFFCURVE", "380 414 OFFCURVE", "412 414 CURVE SMOOTH", "431 414 OFFCURVE", "448 401 OFFCURVE", "465 374 CURVE SMOOTH", "482 347 OFFCURVE", "492 318 OFFCURVE", "497 285 CURVE SMOOTH", "502 252 OFFCURVE", "496 205 OFFCURVE", "481 146 CURVE SMOOTH", "466 87 OFFCURVE", "438 33 OFFCURVE", "394 -17 CURVE SMOOTH", "368 -47 OFFCURVE", "338 -69 OFFCURVE", "304 -81 CURVE", "305 -97 OFFCURVE", "305 -112 OFFCURVE", "305 -129 CURVE SMOOTH", "305 -141 OFFCURVE", "300 -157 OFFCURVE", "291 -176 CURVE", "284 -188 LINE", "279 -194 OFFCURVE", "277 -194 OFFCURVE", "277 -187 CURVE SMOOTH", "277 -152 OFFCURVE", "274 -119 OFFCURVE", "271 -89 CURVE", "243 -95 OFFCURVE", "215 -95 OFFCURVE", "183 -90 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "253 14 OFFCURVE", "242 44 OFFCURVE", "227 68 CURVE SMOOTH", "193 123 OFFCURVE", "158 144 OFFCURVE", "123 130 CURVE SMOOTH", "105 123 OFFCURVE", "94 106 OFFCURVE", "90 79 CURVE", "86 51 OFFCURVE", "92 25 OFFCURVE", "106 0 CURVE SMOOTH", "121 -27 OFFCURVE", "166 -36 OFFCURVE", "239 -27 CURVE SMOOTH", "246 -26 OFFCURVE", "254 -25 OFFCURVE", "261 -23 CURVE" ); } ); width = 556; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE85; }, { glyphname = u1EE86; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 312, 600}"; }, { name = u1EE93; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 556; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE86; }, { glyphname = u1EE87; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "471 -93 OFFCURVE", "545 -67 OFFCURVE", "607 -15 CURVE SMOOTH", "651 21 OFFCURVE", "670 67 OFFCURVE", "663 124 CURVE SMOOTH", "658 162 OFFCURVE", "630 180 OFFCURVE", "579 179 CURVE SMOOTH", "511 178 OFFCURVE", "463 146 OFFCURVE", "434 84 CURVE SMOOTH", "405 22 OFFCURVE", "388 -37 OFFCURVE", "383 -94 CURVE" ); }, { closed = 1; nodes = ( "352 6 OFFCURVE", "371 87 OFFCURVE", "406 152 CURVE SMOOTH", "442 219 OFFCURVE", "492 254 OFFCURVE", "555 257 CURVE SMOOTH", "629 260 OFFCURVE", "672 225 OFFCURVE", "685 153 CURVE SMOOTH", "701 65 OFFCURVE", "688 -7 OFFCURVE", "648 -64 CURVE SMOOTH", "620 -104 OFFCURVE", "577 -137 OFFCURVE", "520 -163 CURVE SMOOTH", "484 -179 OFFCURVE", "438 -189 OFFCURVE", "381 -194 CURVE", "382 -228 OFFCURVE", "386 -265 OFFCURVE", "391 -305 CURVE SMOOTH", "393 -317 OFFCURVE", "391 -322 OFFCURVE", "387 -322 CURVE", "380 -320 OFFCURVE", "374 -313 OFFCURVE", "370 -299 CURVE SMOOTH", "366 -285 OFFCURVE", "364 -275 OFFCURVE", "363 -270 CURVE SMOOTH", "360 -244 OFFCURVE", "357 -218 OFFCURVE", "355 -194 CURVE", "272 -190 OFFCURVE", "206 -167 OFFCURVE", "155 -125 CURVE SMOOTH", "77 -61 OFFCURVE", "49 38 OFFCURVE", "71 173 CURVE SMOOTH", "93 304 OFFCURVE", "174 403 OFFCURVE", "313 470 CURVE", "223 492 OFFCURVE", "155 489 OFFCURVE", "110 463 CURVE SMOOTH", "106 461 OFFCURVE", "103 460 OFFCURVE", "99 461 CURVE SMOOTH", "95 462 OFFCURVE", "93 463 OFFCURVE", "93 467 CURVE SMOOTH", "93 481 OFFCURVE", "96 498 OFFCURVE", "103 517 CURVE SMOOTH", "115 552 OFFCURVE", "148 570 OFFCURVE", "200 573 CURVE SMOOTH", "226 574 OFFCURVE", "267 570 OFFCURVE", "323 559 CURVE SMOOTH", "379 548 OFFCURVE", "427 542 OFFCURVE", "466 543 CURVE SMOOTH", "505 544 OFFCURVE", "552 549 OFFCURVE", "609 559 CURVE SMOOTH", "629 562 OFFCURVE", "635 556 OFFCURVE", "628 541 CURVE SMOOTH", "604 487 LINE SMOOTH", "602 481 OFFCURVE", "598 479 OFFCURVE", "593 478 CURVE SMOOTH", "433 457 OFFCURVE", "322 425 OFFCURVE", "258 383 CURVE SMOOTH", "136 303 OFFCURVE", "87 204 OFFCURVE", "111 86 CURVE SMOOTH", "124 23 OFFCURVE", "164 -26 OFFCURVE", "230 -64 CURVE SMOOTH", "264 -83 OFFCURVE", "304 -93 OFFCURVE", "351 -93 CURVE" ); } ); width = 749; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE87; }, { glyphname = u1EE88; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "505 189 OFFCURVE", "444 150 OFFCURVE", "371 85 CURVE", "508 100 OFFCURVE", "618 130 OFFCURVE", "700 173 CURVE", "678 217 OFFCURVE", "629 227 OFFCURVE", "553 204 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "126 75 OFFCURVE", "174 67 OFFCURVE", "250 72 CURVE", "243 90 OFFCURVE", "235 106 OFFCURVE", "226 121 CURVE SMOOTH", "195 171 OFFCURVE", "157 187 OFFCURVE", "112 168 CURVE SMOOTH", "96 161 OFFCURVE", "87 151 OFFCURVE", "88 137 CURVE SMOOTH", "89 123 OFFCURVE", "95 109 OFFCURVE", "107 96 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "304 -32 OFFCURVE", "304 -33 OFFCURVE", "304 -38 CURVE SMOOTH", "304 -50 OFFCURVE", "299 -67 OFFCURVE", "290 -86 CURVE SMOOTH", "281 -105 OFFCURVE", "276 -109 OFFCURVE", "276 -97 CURVE SMOOTH", "276 -73 OFFCURVE", "274 -50 OFFCURVE", "272 -28 CURVE", "267 -28 OFFCURVE", "267 -28 OFFCURVE", "262 -28 CURVE SMOOTH", "207 -26 OFFCURVE", "166 -20 OFFCURVE", "138 -8 CURVE SMOOTH", "110 4 OFFCURVE", "91 16 OFFCURVE", "79 29 CURVE SMOOTH", "67 42 OFFCURVE", "61 62 OFFCURVE", "59 89 CURVE SMOOTH", "57 116 OFFCURVE", "65 147 OFFCURVE", "82 182 CURVE SMOOTH", "88 194 OFFCURVE", "95 205 OFFCURVE", "102 214 CURVE SMOOTH", "109 223 OFFCURVE", "120 230 OFFCURVE", "134 236 CURVE SMOOTH", "181 256 OFFCURVE", "221 240 OFFCURVE", "254 187 CURVE SMOOTH", "273 157 OFFCURVE", "286 120 OFFCURVE", "294 76 CURVE", "300 77 OFFCURVE", "307 77 OFFCURVE", "313 78 CURVE", "379 143 LINE", "384 242 OFFCURVE", "374 381 OFFCURVE", "351 559 CURVE SMOOTH", "344 616 OFFCURVE", "340 647 OFFCURVE", "338 654 CURVE SMOOTH", "336 661 OFFCURVE", "337 666 OFFCURVE", "339 672 CURVE SMOOTH", "352 703 OFFCURVE", "359 720 OFFCURVE", "361 723 CURVE SMOOTH", "363 726 OFFCURVE", "367 728 OFFCURVE", "371 728 CURVE SMOOTH", "375 728 OFFCURVE", "377 725 OFFCURVE", "378 722 CURVE SMOOTH", "387 692 OFFCURVE", "401 667 OFFCURVE", "422 644 CURVE", "422 623 LINE", "403 598 LINE SMOOTH", "399 593 OFFCURVE", "397 587 OFFCURVE", "398 581 CURVE SMOOTH", "414 432 OFFCURVE", "420 330 OFFCURVE", "417 275 CURVE SMOOTH", "414 220 OFFCURVE", "411 184 OFFCURVE", "407 167 CURVE", "489 231 OFFCURVE", "548 271 OFFCURVE", "583 288 CURVE SMOOTH", "618 305 OFFCURVE", "649 315 OFFCURVE", "674 318 CURVE SMOOTH", "688 320 OFFCURVE", "703 316 OFFCURVE", "720 305 CURVE", "756 282 OFFCURVE", "776 260 OFFCURVE", "778 240 CURVE SMOOTH", "780 220 OFFCURVE", "773 193 OFFCURVE", "755 159 CURVE SMOOTH", "737 125 OFFCURVE", "723 102 OFFCURVE", "712 90 CURVE SMOOTH", "695 72 OFFCURVE", "635 48 OFFCURVE", "532 16 CURVE SMOOTH", "447 -10 OFFCURVE", "371 -24 OFFCURVE", "304 -27 CURVE" ); } ); width = 836; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE88; }, { glyphname = u1EE89; layers = ( { components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 400, -253}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "116 335 OFFCURVE", "152 362 OFFCURVE", "199 355 CURVE SMOOTH", "265 345 OFFCURVE", "308 301 OFFCURVE", "325 224 CURVE SMOOTH", "336 175 OFFCURVE", "333 116 OFFCURVE", "318 45 CURVE", "442 48 OFFCURVE", "543 80 OFFCURVE", "620 142 CURVE SMOOTH", "627 147 OFFCURVE", "628 152 OFFCURVE", "622 157 CURVE SMOOTH", "611 166 OFFCURVE", "572 173 OFFCURVE", "508 177 CURVE SMOOTH", "443 181 OFFCURVE", "405 198 OFFCURVE", "395 227 CURVE SMOOTH", "385 256 OFFCURVE", "386 289 OFFCURVE", "398 325 CURVE SMOOTH", "421 397 OFFCURVE", "468 458 OFFCURVE", "538 509 CURVE SMOOTH", "573 535 OFFCURVE", "604 548 OFFCURVE", "629 550 CURVE SMOOTH", "690 554 OFFCURVE", "712 522 OFFCURVE", "693 456 CURVE SMOOTH", "688 438 OFFCURVE", "680 432 OFFCURVE", "668 439 CURVE SMOOTH", "628 461 OFFCURVE", "576 455 OFFCURVE", "515 420 CURVE SMOOTH", "475 397 OFFCURVE", "447 364 OFFCURVE", "432 321 CURVE SMOOTH", "429 313 OFFCURVE", "430 303 OFFCURVE", "434 294 CURVE SMOOTH", "449 262 OFFCURVE", "492 244 OFFCURVE", "562 240 CURVE SMOOTH", "633 236 OFFCURVE", "671 222 OFFCURVE", "674 196 CURVE SMOOTH", "681 144 OFFCURVE", "665 102 OFFCURVE", "629 73 CURVE SMOOTH", "533 -4 OFFCURVE", "424 -44 OFFCURVE", "302 -49 CURVE SMOOTH", "299 -49 OFFCURVE", "296 -50 OFFCURVE", "293 -50 CURVE", "283 -82 OFFCURVE", "270 -115 OFFCURVE", "255 -150 CURVE SMOOTH", "253 -155 OFFCURVE", "248 -165 OFFCURVE", "240 -177 CURVE SMOOTH", "233 -189 OFFCURVE", "225 -195 OFFCURVE", "218 -195 CURVE", "214 -194 OFFCURVE", "215 -188 OFFCURVE", "219 -177 CURVE SMOOTH", "238 -131 OFFCURVE", "253 -88 OFFCURVE", "264 -49 CURVE", "142 -44 OFFCURVE", "74 10 OFFCURVE", "60 113 CURVE SMOOTH", "54 156 OFFCURVE", "65 210 OFFCURVE", "92 276 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "291 93 OFFCURVE", "290 134 OFFCURVE", "282 169 CURVE SMOOTH", "269 224 OFFCURVE", "239 261 OFFCURVE", "190 278 CURVE SMOOTH", "155 290 OFFCURVE", "132 280 OFFCURVE", "119 250 CURVE SMOOTH", "104 214 OFFCURVE", "102 182 OFFCURVE", "112 155 CURVE", "134 86 OFFCURVE", "191 50 OFFCURVE", "284 45 CURVE" ); } ); width = 757; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE89; }, { glyphname = u1EE8B; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "108 217 OFFCURVE", "100 185 OFFCURVE", "103 159 CURVE SMOOTH", "112 77 OFFCURVE", "172 38 OFFCURVE", "285 42 CURVE SMOOTH", "312 43 OFFCURVE", "336 45 OFFCURVE", "358 50 CURVE", "360 82 OFFCURVE", "359 111 OFFCURVE", "353 136 CURVE SMOOTH", "333 221 OFFCURVE", "294 270 OFFCURVE", "235 286 CURVE SMOOTH", "182 300 OFFCURVE", "146 291 OFFCURVE", "129 257 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "364 -84 OFFCURVE", "346 -133 OFFCURVE", "325 -185 CURVE SMOOTH", "323 -190 OFFCURVE", "319 -199 OFFCURVE", "311 -211 CURVE SMOOTH", "303 -223 OFFCURVE", "296 -230 OFFCURVE", "289 -229 CURVE", "285 -228 OFFCURVE", "286 -221 OFFCURVE", "290 -211 CURVE SMOOTH", "314 -152 OFFCURVE", "332 -99 OFFCURVE", "343 -51 CURVE", "310 -60 OFFCURVE", "280 -64 OFFCURVE", "252 -64 CURVE SMOOTH", "124 -62 OFFCURVE", "60 -6 OFFCURVE", "59 104 CURVE SMOOTH", "58 168 OFFCURVE", "77 231 OFFCURVE", "117 290 CURVE SMOOTH", "152 342 OFFCURVE", "192 366 OFFCURVE", "235 360 CURVE SMOOTH", "317 349 OFFCURVE", "371 293 OFFCURVE", "396 190 CURVE SMOOTH", "404 154 OFFCURVE", "405 111 OFFCURVE", "398 62 CURVE", "438 77 OFFCURVE", "470 99 OFFCURVE", "494 129 CURVE", "492 171 OFFCURVE", "485 245 OFFCURVE", "471 352 CURVE SMOOTH", "457 459 OFFCURVE", "447 558 OFFCURVE", "440 652 CURVE", "437 686 LINE", "437 692 OFFCURVE", "437 696 OFFCURVE", "439 700 CURVE SMOOTH", "458 744 LINE SMOOTH", "460 749 OFFCURVE", "463 751 OFFCURVE", "468 751 CURVE SMOOTH", "473 751 OFFCURVE", "477 748 OFFCURVE", "479 742 CURVE SMOOTH", "488 713 OFFCURVE", "502 689 OFFCURVE", "520 669 CURVE SMOOTH", "526 663 OFFCURVE", "525 655 OFFCURVE", "518 645 CURVE SMOOTH", "511 635 OFFCURVE", "506 627 OFFCURVE", "502 622 CURVE SMOOTH", "498 617 OFFCURVE", "496 611 OFFCURVE", "496 602 CURVE SMOOTH", "497 569 OFFCURVE", "504 508 OFFCURVE", "515 420 CURVE SMOOTH", "525 343 OFFCURVE", "531 283 OFFCURVE", "534 241 CURVE SMOOTH", "539 174 OFFCURVE", "530 113 OFFCURVE", "507 58 CURVE SMOOTH", "493 24 OFFCURVE", "458 -5 OFFCURVE", "402 -29 CURVE SMOOTH", "393 -33 OFFCURVE", "384 -37 OFFCURVE", "376 -40 CURVE" ); } ); width = 593; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE8B; }, { glyphname = u1EE8C; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "205 488 OFFCURVE", "235 496 OFFCURVE", "269 500 CURVE", "245 520 OFFCURVE", "226 529 OFFCURVE", "213 525 CURVE SMOOTH", "195 520 OFFCURVE", "184 504 OFFCURVE", "181 478 CURVE" ); }, { closed = 1; nodes = ( "215 -167 OFFCURVE", "209 -186 OFFCURVE", "197 -215 CURVE SMOOTH", "187 -239 OFFCURVE", "177 -256 OFFCURVE", "165 -264 CURVE SMOOTH", "153 -272 OFFCURVE", "137 -274 OFFCURVE", "118 -269 CURVE SMOOTH", "85 -260 OFFCURVE", "67 -229 OFFCURVE", "61 -176 CURVE SMOOTH", "57 -139 OFFCURVE", "59 -105 OFFCURVE", "68 -75 CURVE SMOOTH", "82 -29 OFFCURVE", "101 0 OFFCURVE", "125 12 CURVE SMOOTH", "133 16 OFFCURVE", "140 19 OFFCURVE", "148 21 CURVE", "145 35 OFFCURVE", "145 34 OFFCURVE", "142 48 CURVE SMOOTH", "102 201 OFFCURVE", "84 297 OFFCURVE", "90 335 CURVE SMOOTH", "97 386 OFFCURVE", "111 421 OFFCURVE", "129 441 CURVE", "135 484 OFFCURVE", "147 526 OFFCURVE", "166 565 CURVE SMOOTH", "185 604 OFFCURVE", "206 628 OFFCURVE", "228 636 CURVE", "259 648 OFFCURVE", "297 635 OFFCURVE", "342 597 CURVE SMOOTH", "366 577 OFFCURVE", "387 554 OFFCURVE", "407 529 CURVE SMOOTH", "413 522 OFFCURVE", "415 515 OFFCURVE", "414 508 CURVE SMOOTH", "404 450 OFFCURVE", "398 416 OFFCURVE", "395 409 CURVE SMOOTH", "392 402 OFFCURVE", "386 399 OFFCURVE", "378 401 CURVE", "267 427 OFFCURVE", "184 407 OFFCURVE", "129 341 CURVE SMOOTH", "124 335 OFFCURVE", "123 328 OFFCURVE", "125 321 CURVE SMOOTH", "149 234 OFFCURVE", "170 139 OFFCURVE", "190 35 CURVE SMOOTH", "191 29 OFFCURVE", "193 23 OFFCURVE", "194 17 CURVE", "213 9 OFFCURVE", "231 -8 OFFCURVE", "247 -33 CURVE SMOOTH", "282 -86 OFFCURVE", "299 -163 OFFCURVE", "300 -262 CURVE SMOOTH", "300 -267 OFFCURVE", "298 -276 OFFCURVE", "294 -290 CURVE SMOOTH", "290 -304 OFFCURVE", "286 -314 OFFCURVE", "280 -321 CURVE SMOOTH", "274 -328 OFFCURVE", "272 -328 OFFCURVE", "272 -321 CURVE SMOOTH", "271 -226 OFFCURVE", "254 -153 OFFCURVE", "220 -101 CURVE SMOOTH", "217 -96 OFFCURVE", "214 -91 OFFCURVE", "211 -87 CURVE", "215 -116 OFFCURVE", "216 -140 OFFCURVE", "215 -158 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "145 -43 OFFCURVE", "125 -45 OFFCURVE", "103 -56 CURVE SMOOTH", "97 -59 OFFCURVE", "91 -62 OFFCURVE", "87 -67 CURVE", "86 -80 OFFCURVE", "87 -96 OFFCURVE", "89 -114 CURVE SMOOTH", "95 -163 OFFCURVE", "112 -193 OFFCURVE", "143 -200 CURVE SMOOTH", "169 -207 OFFCURVE", "182 -198 OFFCURVE", "183 -175 CURVE", "179 -137 OFFCURVE", "173 -95 OFFCURVE", "164 -50 CURVE" ); } ); width = 472; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE8C; }, { glyphname = u1EE8D; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 264, 483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "149 343 OFFCURVE", "188 366 OFFCURVE", "235 360 CURVE SMOOTH", "317 349 OFFCURVE", "370 293 OFFCURVE", "395 190 CURVE SMOOTH", "403 155 OFFCURVE", "405 113 OFFCURVE", "398 65 CURVE", "428 79 OFFCURVE", "453 99 OFFCURVE", "472 125 CURVE SMOOTH", "473 126 OFFCURVE", "474 130 OFFCURVE", "474 134 CURVE SMOOTH", "475 165 OFFCURVE", "465 207 OFFCURVE", "445 259 CURVE SMOOTH", "425 311 OFFCURVE", "408 349 OFFCURVE", "392 372 CURVE SMOOTH", "387 379 OFFCURVE", "386 384 OFFCURVE", "388 389 CURVE SMOOTH", "418 463 LINE SMOOTH", "422 472 OFFCURVE", "427 471 OFFCURVE", "434 460 CURVE", "457 416 OFFCURVE", "476 364 OFFCURVE", "491 302 CURVE SMOOTH", "506 240 OFFCURVE", "508 181 OFFCURVE", "499 123 CURVE SMOOTH", "494 92 OFFCURVE", "484 64 OFFCURVE", "469 41 CURVE SMOOTH", "447 7 OFFCURVE", "417 -19 OFFCURVE", "377 -37 CURVE", "364 -82 OFFCURVE", "347 -132 OFFCURVE", "325 -185 CURVE SMOOTH", "323 -190 OFFCURVE", "318 -199 OFFCURVE", "311 -211 CURVE SMOOTH", "304 -223 OFFCURVE", "296 -230 OFFCURVE", "289 -229 CURVE", "285 -228 OFFCURVE", "286 -221 OFFCURVE", "290 -211 CURVE SMOOTH", "314 -152 OFFCURVE", "332 -98 OFFCURVE", "343 -49 CURVE", "320 -56 OFFCURVE", "295 -61 OFFCURVE", "267 -64 CURVE SMOOTH", "198 -71 OFFCURVE", "144 -57 OFFCURVE", "108 -23 CURVE SMOOTH", "72 12 OFFCURVE", "55 58 OFFCURVE", "59 117 CURVE SMOOTH", "63 175 OFFCURVE", "82 233 OFFCURVE", "117 290 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "360 82 OFFCURVE", "359 111 OFFCURVE", "353 136 CURVE SMOOTH", "334 218 OFFCURVE", "291 269 OFFCURVE", "226 288 CURVE SMOOTH", "177 302 OFFCURVE", "142 288 OFFCURVE", "121 244 CURVE SMOOTH", "93 185 OFFCURVE", "89 138 OFFCURVE", "110 103 CURVE SMOOTH", "136 59 OFFCURVE", "186 37 OFFCURVE", "261 38 CURVE SMOOTH", "297 38 OFFCURVE", "329 42 OFFCURVE", "358 50 CURVE" ); } ); width = 562; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE8D; }, { glyphname = u1EE8E; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "94 275 OFFCURVE", "144 331 OFFCURVE", "217 322 CURVE SMOOTH", "299 311 OFFCURVE", "353 255 OFFCURVE", "377 152 CURVE SMOOTH", "386 113 OFFCURVE", "387 65 OFFCURVE", "378 10 CURVE", "468 25 OFFCURVE", "535 68 OFFCURVE", "580 138 CURVE", "584 196 OFFCURVE", "571 254 OFFCURVE", "541 312 CURVE SMOOTH", "537 319 OFFCURVE", "536 324 OFFCURVE", "538 328 CURVE SMOOTH", "552 359 OFFCURVE", "565 382 OFFCURVE", "574 396 CURVE SMOOTH", "577 400 OFFCURVE", "580 400 OFFCURVE", "583 397 CURVE SMOOTH", "586 394 OFFCURVE", "593 384 OFFCURVE", "604 365 CURVE SMOOTH", "615 346 OFFCURVE", "623 336 OFFCURVE", "629 335 CURVE SMOOTH", "663 327 OFFCURVE", "698 337 OFFCURVE", "733 366 CURVE SMOOTH", "746 377 OFFCURVE", "758 408 OFFCURVE", "770 458 CURVE SMOOTH", "771 464 OFFCURVE", "774 466 OFFCURVE", "778 468 CURVE SMOOTH", "782 470 OFFCURVE", "786 470 OFFCURVE", "789 468 CURVE SMOOTH", "796 464 OFFCURVE", "796 445 OFFCURVE", "790 410 CURVE", "817 390 OFFCURVE", "846 383 OFFCURVE", "879 386 CURVE", "879 396 OFFCURVE", "878 403 OFFCURVE", "874 407 CURVE SMOOTH", "870 411 OFFCURVE", "869 415 OFFCURVE", "870 419 CURVE SMOOTH", "888 491 LINE SMOOTH", "890 498 OFFCURVE", "893 501 OFFCURVE", "898 501 CURVE SMOOTH", "903 501 OFFCURVE", "908 499 OFFCURVE", "911 493 CURVE SMOOTH", "920 478 OFFCURVE", "924 456 OFFCURVE", "924 425 CURVE SMOOTH", "924 376 OFFCURVE", "912 333 OFFCURVE", "889 295 CURVE SMOOTH", "883 285 OFFCURVE", "874 278 OFFCURVE", "864 276 CURVE SMOOTH", "834 269 OFFCURVE", "798 279 OFFCURVE", "756 305 CURVE", "726 252 OFFCURVE", "683 228 OFFCURVE", "627 236 CURVE", "624 179 OFFCURVE", "615 130 OFFCURVE", "601 88 CURVE SMOOTH", "587 46 OFFCURVE", "562 12 OFFCURVE", "527 -16 CURVE SMOOTH", "473 -58 OFFCURVE", "415 -85 OFFCURVE", "353 -96 CURVE", "341 -135 OFFCURVE", "326 -178 OFFCURVE", "307 -223 CURVE SMOOTH", "305 -228 OFFCURVE", "301 -237 OFFCURVE", "293 -249 CURVE SMOOTH", "285 -261 OFFCURVE", "277 -267 OFFCURVE", "270 -267 CURVE", "266 -266 OFFCURVE", "267 -260 OFFCURVE", "271 -249 CURVE SMOOTH", "293 -195 OFFCURVE", "310 -146 OFFCURVE", "322 -101 CURVE", "306 -103 OFFCURVE", "290 -103 OFFCURVE", "274 -102 CURVE SMOOTH", "160 -99 OFFCURVE", "90 -51 OFFCURVE", "63 41 CURVE SMOOTH", "56 67 OFFCURVE", "57 104 OFFCURVE", "67 153 CURVE" ); }, { closed = 1; nodes = ( "342 40 OFFCURVE", "340 70 OFFCURVE", "334 97 CURVE SMOOTH", "315 180 OFFCURVE", "273 231 OFFCURVE", "208 250 CURVE SMOOTH", "166 262 OFFCURVE", "136 253 OFFCURVE", "118 224 CURVE SMOOTH", "101 197 OFFCURVE", "94 169 OFFCURVE", "95 139 CURVE SMOOTH", "99 53 OFFCURVE", "162 7 OFFCURVE", "284 4 CURVE SMOOTH", "304 4 OFFCURVE", "322 5 OFFCURVE", "340 6 CURVE" ); } ); width = 982; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE8E; }, { glyphname = u1EE8F; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "59 226 OFFCURVE", "104 341 OFFCURVE", "193 428 CURVE", "141 449 OFFCURVE", "106 471 OFFCURVE", "89 494 CURVE SMOOTH", "82 503 OFFCURVE", "79 514 OFFCURVE", "80 526 CURVE SMOOTH", "83 557 OFFCURVE", "91 585 OFFCURVE", "105 611 CURVE SMOOTH", "137 669 OFFCURVE", "172 709 OFFCURVE", "212 728 CURVE SMOOTH", "232 737 OFFCURVE", "255 734 OFFCURVE", "283 718 CURVE SMOOTH", "311 702 OFFCURVE", "330 685 OFFCURVE", "341 669 CURVE SMOOTH", "348 659 OFFCURVE", "344 656 OFFCURVE", "328 659 CURVE SMOOTH", "242 677 OFFCURVE", "171 647 OFFCURVE", "115 572 CURVE SMOOTH", "112 568 OFFCURVE", "112 565 OFFCURVE", "117 560 CURVE SMOOTH", "161 516 OFFCURVE", "216 497 OFFCURVE", "282 505 CURVE SMOOTH", "293 506 OFFCURVE", "308 514 OFFCURVE", "329 526 CURVE SMOOTH", "407 573 OFFCURVE", "452 599 OFFCURVE", "461 605 CURVE SMOOTH", "474 612 OFFCURVE", "477 607 OFFCURVE", "470 588 CURVE SMOOTH", "455 546 OFFCURVE", "444 523 OFFCURVE", "435 519 CURVE SMOOTH", "378 493 OFFCURVE", "312 452 OFFCURVE", "237 397 CURVE SMOOTH", "150 334 OFFCURVE", "101 247 OFFCURVE", "89 138 CURVE SMOOTH", "83 81 OFFCURVE", "96 30 OFFCURVE", "131 -14 CURVE SMOOTH", "177 -72 OFFCURVE", "247 -102 OFFCURVE", "341 -105 CURVE", "342 -4 OFFCURVE", "361 80 OFFCURVE", "395 146 CURVE SMOOTH", "431 215 OFFCURVE", "481 251 OFFCURVE", "545 254 CURVE SMOOTH", "621 257 OFFCURVE", "665 219 OFFCURVE", "678 139 CURVE SMOOTH", "691 57 OFFCURVE", "678 -11 OFFCURVE", "638 -67 CURVE SMOOTH", "610 -107 OFFCURVE", "567 -139 OFFCURVE", "510 -165 CURVE SMOOTH", "474 -181 OFFCURVE", "428 -192 OFFCURVE", "371 -197 CURVE", "372 -231 OFFCURVE", "376 -268 OFFCURVE", "381 -308 CURVE SMOOTH", "383 -320 OFFCURVE", "381 -325 OFFCURVE", "377 -325 CURVE", "370 -323 OFFCURVE", "364 -316 OFFCURVE", "360 -302 CURVE SMOOTH", "356 -288 OFFCURVE", "354 -278 OFFCURVE", "353 -273 CURVE SMOOTH", "350 -247 OFFCURVE", "347 -221 OFFCURVE", "345 -197 CURVE", "154 -190 OFFCURVE", "58 -97 OFFCURVE", "59 83 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "472 -105 OFFCURVE", "546 -78 OFFCURVE", "597 -27 CURVE SMOOTH", "640 17 OFFCURVE", "658 59 OFFCURVE", "651 100 CURVE", "643 149 OFFCURVE", "608 173 OFFCURVE", "549 172 CURVE SMOOTH", "490 171 OFFCURVE", "448 139 OFFCURVE", "422 77 CURVE SMOOTH", "395 12 OFFCURVE", "379 -49 OFFCURVE", "373 -106 CURVE" ); } ); width = 741; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE8F; }, { glyphname = u1EE90; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 630, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "809 369 OFFCURVE", "808 375 OFFCURVE", "801 381 CURVE SMOOTH", "777 401 OFFCURVE", "758 399 OFFCURVE", "745 375 CURVE SMOOTH", "742 369 OFFCURVE", "742 365 OFFCURVE", "746 361 CURVE SMOOTH", "765 345 OFFCURVE", "784 346 OFFCURVE", "802 363 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "108 325 OFFCURVE", "137 346 OFFCURVE", "176 351 CURVE SMOOTH", "194 353 OFFCURVE", "212 352 OFFCURVE", "233 348 CURVE SMOOTH", "301 333 OFFCURVE", "348 284 OFFCURVE", "373 200 CURVE SMOOTH", "382 169 OFFCURVE", "387 131 OFFCURVE", "386 89 CURVE", "408 90 OFFCURVE", "431 93 OFFCURVE", "456 96 CURVE SMOOTH", "577 110 OFFCURVE", "700 149 OFFCURVE", "825 212 CURVE SMOOTH", "861 230 OFFCURVE", "882 251 OFFCURVE", "887 275 CURVE", "885 288 OFFCURVE", "876 302 OFFCURVE", "861 317 CURVE SMOOTH", "860 318 OFFCURVE", "858 316 OFFCURVE", "856 312 CURVE SMOOTH", "837 277 OFFCURVE", "814 258 OFFCURVE", "787 254 CURVE SMOOTH", "733 246 OFFCURVE", "702 268 OFFCURVE", "693 318 CURVE SMOOTH", "687 352 OFFCURVE", "706 403 OFFCURVE", "750 471 CURVE SMOOTH", "761 488 OFFCURVE", "775 499 OFFCURVE", "792 504 CURVE SMOOTH", "819 512 OFFCURVE", "845 496 OFFCURVE", "871 455 CURVE SMOOTH", "897 414 OFFCURVE", "912 356 OFFCURVE", "916 281 CURVE SMOOTH", "918 254 OFFCURVE", "914 231 OFFCURVE", "906 212 CURVE SMOOTH", "888 170 OFFCURVE", "847 133 OFFCURVE", "783 99 CURVE SMOOTH", "719 65 OFFCURVE", "644 40 OFFCURVE", "560 21 CURVE SMOOTH", "494 6 OFFCURVE", "432 -4 OFFCURVE", "374 -7 CURVE", "365 -56 OFFCURVE", "351 -110 OFFCURVE", "331 -169 CURVE SMOOTH", "327 -181 OFFCURVE", "318 -194 OFFCURVE", "303 -209 CURVE SMOOTH", "288 -224 OFFCURVE", "282 -227 OFFCURVE", "286 -215 CURVE SMOOTH", "312 -137 OFFCURVE", "328 -68 OFFCURVE", "335 -8 CURVE", "332 -8 OFFCURVE", "332 -8 OFFCURVE", "329 -8 CURVE SMOOTH", "161 -9 OFFCURVE", "70 43 OFFCURVE", "59 149 CURVE SMOOTH", "57 170 OFFCURVE", "60 196 OFFCURVE", "67 227 CURVE SMOOTH", "72 250 OFFCURVE", "79 270 OFFCURVE", "88 288 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "335 109 OFFCURVE", "332 128 OFFCURVE", "327 145 CURVE SMOOTH", "303 225 OFFCURVE", "256 273 OFFCURVE", "188 290 CURVE SMOOTH", "146 300 OFFCURVE", "119 293 OFFCURVE", "106 267 CURVE SMOOTH", "83 219 OFFCURVE", "89 178 OFFCURVE", "127 144 CURVE SMOOTH", "169 106 OFFCURVE", "239 88 OFFCURVE", "337 88 CURVE" ); } ); width = 974; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE90; }, { glyphname = u1EE91; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "132 47 OFFCURVE", "188 3 OFFCURVE", "284 0 CURVE SMOOTH", "304 0 OFFCURVE", "323 0 OFFCURVE", "342 2 CURVE", "345 37 OFFCURVE", "343 69 OFFCURVE", "336 96 CURVE SMOOTH", "318 174 OFFCURVE", "277 224 OFFCURVE", "210 248 CURVE SMOOTH", "181 258 OFFCURVE", "157 254 OFFCURVE", "138 234 CURVE SMOOTH", "117 212 OFFCURVE", "110 179 OFFCURVE", "117 136 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1044 410 OFFCURVE", "1001 422 OFFCURVE", "954 410 CURVE SMOOTH", "907 398 OFFCURVE", "846 363 OFFCURVE", "770 305 CURVE", "910 297 OFFCURVE", "1015 319 OFFCURVE", "1085 372 CURVE" ); }, { closed = 1; nodes = ( "344 -134 OFFCURVE", "328 -177 OFFCURVE", "309 -224 CURVE SMOOTH", "307 -229 OFFCURVE", "303 -238 OFFCURVE", "295 -250 CURVE SMOOTH", "287 -262 OFFCURVE", "279 -269 OFFCURVE", "272 -269 CURVE", "268 -268 OFFCURVE", "269 -261 OFFCURVE", "273 -250 CURVE SMOOTH", "295 -195 OFFCURVE", "312 -145 OFFCURVE", "324 -99 CURVE", "314 -100 OFFCURVE", "305 -101 OFFCURVE", "295 -102 CURVE SMOOTH", "175 -110 OFFCURVE", "100 -65 OFFCURVE", "68 31 CURVE SMOOTH", "49 88 OFFCURVE", "60 161 OFFCURVE", "100 250 CURVE SMOOTH", "124 304 OFFCURVE", "164 327 OFFCURVE", "219 320 CURVE SMOOTH", "301 309 OFFCURVE", "355 253 OFFCURVE", "379 150 CURVE SMOOTH", "388 111 OFFCURVE", "389 63 OFFCURVE", "380 7 CURVE", "431 17 OFFCURVE", "479 36 OFFCURVE", "525 64 CURVE", "548 77 OFFCURVE", "566 99 OFFCURVE", "580 130 CURVE SMOOTH", "582 134 OFFCURVE", "582 138 OFFCURVE", "581 144 CURVE SMOOTH", "571 207 OFFCURVE", "554 256 OFFCURVE", "530 290 CURVE SMOOTH", "525 297 OFFCURVE", "523 304 OFFCURVE", "525 308 CURVE SMOOTH", "555 390 LINE", "561 401 OFFCURVE", "567 402 OFFCURVE", "573 392 CURVE SMOOTH", "610 330 LINE", "633 316 OFFCURVE", "671 307 OFFCURVE", "722 305 CURVE", "780 364 OFFCURVE", "838 414 OFFCURVE", "897 456 CURVE SMOOTH", "956 498 OFFCURVE", "1002 520 OFFCURVE", "1035 520 CURVE SMOOTH", "1085 521 OFFCURVE", "1122 491 OFFCURVE", "1144 432 CURVE", "1149 414 OFFCURVE", "1144 391 OFFCURVE", "1129 362 CURVE SMOOTH", "1114 333 OFFCURVE", "1103 313 OFFCURVE", "1094 303 CURVE SMOOTH", "1046 250 OFFCURVE", "957 219 OFFCURVE", "825 208 CURVE SMOOTH", "751 202 OFFCURVE", "684 205 OFFCURVE", "623 219 CURVE", "610 111 OFFCURVE", "588 42 OFFCURVE", "559 12 CURVE SMOOTH", "505 -44 OFFCURVE", "437 -79 OFFCURVE", "356 -94 CURVE" ); } ); width = 1204; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE91; }, { glyphname = u1EE92; layers = ( { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 469, 580}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "105 163 OFFCURVE", "120 126 OFFCURVE", "153 95 CURVE SMOOTH", "186 64 OFFCURVE", "235 49 OFFCURVE", "301 52 CURVE SMOOTH", "315 53 OFFCURVE", "328 54 OFFCURVE", "341 56 CURVE", "342 83 OFFCURVE", "340 107 OFFCURVE", "335 129 CURVE SMOOTH", "316 212 OFFCURVE", "273 263 OFFCURVE", "208 282 CURVE SMOOTH", "186 288 OFFCURVE", "168 289 OFFCURVE", "152 285 CURVE SMOOTH", "122 277 OFFCURVE", "107 251 OFFCURVE", "106 207 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "494 383 OFFCURVE", "481 391 OFFCURVE", "470 391 CURVE SMOOTH", "459 391 OFFCURVE", "450 385 OFFCURVE", "441 371 CURVE", "450 361 OFFCURVE", "461 355 OFFCURVE", "474 354 CURVE SMOOTH", "487 353 OFFCURVE", "498 358 OFFCURVE", "508 367 CURVE" ); }, { closed = 1; nodes = ( "347 -90 OFFCURVE", "330 -138 OFFCURVE", "308 -190 CURVE SMOOTH", "306 -195 OFFCURVE", "301 -205 OFFCURVE", "293 -217 CURVE SMOOTH", "286 -229 OFFCURVE", "278 -235 OFFCURVE", "271 -235 CURVE", "267 -234 OFFCURVE", "268 -228 OFFCURVE", "272 -217 CURVE SMOOTH", "297 -156 OFFCURVE", "315 -100 OFFCURVE", "327 -50 CURVE", "318 -51 OFFCURVE", "309 -52 OFFCURVE", "300 -52 CURVE SMOOTH", "177 -56 OFFCURVE", "99 -14 OFFCURVE", "66 75 CURVE", "58 99 OFFCURVE", "56 130 OFFCURVE", "62 165 CURVE SMOOTH", "70 211 OFFCURVE", "81 248 OFFCURVE", "95 278 CURVE SMOOTH", "122 335 OFFCURVE", "163 361 OFFCURVE", "217 354 CURVE SMOOTH", "299 343 OFFCURVE", "354 287 OFFCURVE", "378 184 CURVE SMOOTH", "386 150 OFFCURVE", "388 110 OFFCURVE", "382 64 CURVE", "437 79 OFFCURVE", "489 107 OFFCURVE", "539 146 CURVE SMOOTH", "572 172 OFFCURVE", "589 197 OFFCURVE", "591 221 CURVE SMOOTH", "593 245 OFFCURVE", "584 266 OFFCURVE", "565 285 CURVE", "524 242 OFFCURVE", "482 228 OFFCURVE", "439 242 CURVE SMOOTH", "384 260 OFFCURVE", "372 309 OFFCURVE", "401 387 CURVE SMOOTH", "430 465 OFFCURVE", "465 504 OFFCURVE", "504 504 CURVE SMOOTH", "516 504 OFFCURVE", "530 495 OFFCURVE", "546 476 CURVE SMOOTH", "581 434 OFFCURVE", "603 375 OFFCURVE", "615 299 CURVE SMOOTH", "621 261 OFFCURVE", "620 223 OFFCURVE", "613 185 CURVE SMOOTH", "600 118 OFFCURVE", "564 63 OFFCURVE", "505 22 CURVE SMOOTH", "456 -12 OFFCURVE", "408 -34 OFFCURVE", "359 -45 CURVE" ); } ); width = 677; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE92; }, { glyphname = u1EE93; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "107 -64 OFFCURVE", "65 -16 OFFCURVE", "59 65 CURVE SMOOTH", "56 103 OFFCURVE", "68 140 OFFCURVE", "95 176 CURVE SMOOTH", "110 196 OFFCURVE", "126 207 OFFCURVE", "146 211 CURVE SMOOTH", "191 219 OFFCURVE", "227 199 OFFCURVE", "254 148 CURVE SMOOTH", "275 109 OFFCURVE", "289 60 OFFCURVE", "297 2 CURVE", "305 7 OFFCURVE", "314 11 OFFCURVE", "322 17 CURVE SMOOTH", "385 58 OFFCURVE", "432 106 OFFCURVE", "461 161 CURVE SMOOTH", "464 166 OFFCURVE", "464 171 OFFCURVE", "463 177 CURVE SMOOTH", "458 193 OFFCURVE", "433 237 OFFCURVE", "385 308 CURVE SMOOTH", "383 311 OFFCURVE", "382 313 OFFCURVE", "383 315 CURVE SMOOTH", "407 416 LINE SMOOTH", "409 424 OFFCURVE", "415 423 OFFCURVE", "425 413 CURVE SMOOTH", "451 386 OFFCURVE", "470 351 OFFCURVE", "483 306 CURVE SMOOTH", "496 261 OFFCURVE", "501 216 OFFCURVE", "497 171 CURVE", "489 113 OFFCURVE", "466 59 OFFCURVE", "427 10 CURVE SMOOTH", "395 -31 OFFCURVE", "354 -61 OFFCURVE", "305 -80 CURVE", "306 -92 OFFCURVE", "306 -104 OFFCURVE", "306 -116 CURVE SMOOTH", "306 -128 OFFCURVE", "300 -145 OFFCURVE", "291 -164 CURVE", "284 -176 LINE", "279 -182 OFFCURVE", "277 -181 OFFCURVE", "277 -174 CURVE SMOOTH", "277 -143 OFFCURVE", "275 -115 OFFCURVE", "273 -89 CURVE", "264 -91 OFFCURVE", "248 -91 OFFCURVE", "227 -88 CURVE", "214 -87 OFFCURVE", "199 -84 OFFCURVE", "183 -80 CURVE" ); }, { closed = 1; nodes = ( "254 23 OFFCURVE", "242 56 OFFCURVE", "227 81 CURVE", "193 136 OFFCURVE", "159 157 OFFCURVE", "124 143 CURVE SMOOTH", "105 136 OFFCURVE", "94 119 OFFCURVE", "91 92 CURVE SMOOTH", "87 57 OFFCURVE", "92 31 OFFCURVE", "107 13 CURVE SMOOTH", "134 -20 OFFCURVE", "168 -35 OFFCURVE", "208 -31 CURVE SMOOTH", "224 -30 OFFCURVE", "242 -25 OFFCURVE", "262 -16 CURVE" ); } ); width = 556; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE93; }, { glyphname = u1EE94; layers = ( { components = ( { name = u1EE8E; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 748, 582}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 982; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE94; }, { glyphname = u1EE95; layers = ( { components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 456, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "140 329 OFFCURVE", "165 346 OFFCURVE", "192 351 CURVE SMOOTH", "206 354 OFFCURVE", "225 353 OFFCURVE", "249 348 CURVE SMOOTH", "317 333 OFFCURVE", "365 284 OFFCURVE", "390 200 CURVE SMOOTH", "399 169 OFFCURVE", "403 132 OFFCURVE", "402 91 CURVE", "572 94 OFFCURVE", "711 126 OFFCURVE", "820 189 CURVE", "818 213 OFFCURVE", "802 245 OFFCURVE", "772 285 CURVE SMOOTH", "770 288 OFFCURVE", "771 297 OFFCURVE", "774 312 CURVE SMOOTH", "777 327 OFFCURVE", "785 347 OFFCURVE", "797 372 CURVE SMOOTH", "801 381 OFFCURVE", "808 381 OFFCURVE", "816 372 CURVE SMOOTH", "835 350 OFFCURVE", "847 319 OFFCURVE", "854 281 CURVE SMOOTH", "860 243 OFFCURVE", "860 205 OFFCURVE", "852 169 CURVE SMOOTH", "844 133 OFFCURVE", "831 109 OFFCURVE", "812 99 CURVE SMOOTH", "706 37 OFFCURVE", "572 1 OFFCURVE", "412 -7 CURVE SMOOTH", "405 -7 OFFCURVE", "398 -7 OFFCURVE", "391 -7 CURVE", "382 -56 OFFCURVE", "368 -110 OFFCURVE", "348 -169 CURVE SMOOTH", "344 -181 OFFCURVE", "335 -194 OFFCURVE", "320 -209 CURVE SMOOTH", "305 -224 OFFCURVE", "299 -227 OFFCURVE", "303 -215 CURVE SMOOTH", "329 -137 OFFCURVE", "345 -68 OFFCURVE", "352 -8 CURVE", "225 -6 OFFCURVE", "138 24 OFFCURVE", "90 83 CURVE SMOOTH", "55 127 OFFCURVE", "49 177 OFFCURVE", "74 236 CURVE SMOOTH", "82 256 OFFCURVE", "96 278 OFFCURVE", "115 300 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "351 111 OFFCURVE", "348 129 OFFCURVE", "343 145 CURVE SMOOTH", "318 227 OFFCURVE", "272 276 OFFCURVE", "205 290 CURVE SMOOTH", "160 300 OFFCURVE", "130 289 OFFCURVE", "116 257 CURVE SMOOTH", "109 241 OFFCURVE", "107 227 OFFCURVE", "111 216 CURVE SMOOTH", "132 139 OFFCURVE", "212 98 OFFCURVE", "353 92 CURVE" ); } ); width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE95; }, { glyphname = u1EE96; layers = ( { components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 456, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "140 329 OFFCURVE", "165 346 OFFCURVE", "192 351 CURVE SMOOTH", "206 354 OFFCURVE", "225 353 OFFCURVE", "249 348 CURVE SMOOTH", "317 333 OFFCURVE", "365 284 OFFCURVE", "390 200 CURVE SMOOTH", "399 169 OFFCURVE", "403 132 OFFCURVE", "402 91 CURVE", "572 94 OFFCURVE", "711 126 OFFCURVE", "820 189 CURVE", "818 213 OFFCURVE", "802 245 OFFCURVE", "772 285 CURVE SMOOTH", "770 288 OFFCURVE", "771 297 OFFCURVE", "774 312 CURVE SMOOTH", "777 327 OFFCURVE", "785 347 OFFCURVE", "797 372 CURVE SMOOTH", "801 381 OFFCURVE", "808 381 OFFCURVE", "816 372 CURVE SMOOTH", "835 350 OFFCURVE", "847 319 OFFCURVE", "854 281 CURVE SMOOTH", "860 243 OFFCURVE", "860 205 OFFCURVE", "852 169 CURVE SMOOTH", "844 133 OFFCURVE", "831 109 OFFCURVE", "812 99 CURVE SMOOTH", "706 37 OFFCURVE", "572 1 OFFCURVE", "412 -7 CURVE SMOOTH", "405 -7 OFFCURVE", "398 -7 OFFCURVE", "391 -7 CURVE", "382 -56 OFFCURVE", "368 -110 OFFCURVE", "348 -169 CURVE SMOOTH", "344 -181 OFFCURVE", "335 -194 OFFCURVE", "320 -209 CURVE SMOOTH", "305 -224 OFFCURVE", "299 -227 OFFCURVE", "303 -215 CURVE SMOOTH", "329 -137 OFFCURVE", "345 -68 OFFCURVE", "352 -8 CURVE", "225 -6 OFFCURVE", "138 24 OFFCURVE", "90 83 CURVE SMOOTH", "55 127 OFFCURVE", "49 177 OFFCURVE", "74 236 CURVE SMOOTH", "82 256 OFFCURVE", "96 278 OFFCURVE", "115 300 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "351 111 OFFCURVE", "348 129 OFFCURVE", "343 145 CURVE SMOOTH", "318 227 OFFCURVE", "272 276 OFFCURVE", "205 290 CURVE SMOOTH", "160 300 OFFCURVE", "130 289 OFFCURVE", "116 257 CURVE SMOOTH", "109 241 OFFCURVE", "107 227 OFFCURVE", "111 216 CURVE SMOOTH", "132 139 OFFCURVE", "212 98 OFFCURVE", "353 92 CURVE" ); } ); width = 916; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE96; }, { glyphname = u1EE97; layers = ( { components = ( { name = u1EE87; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 686}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 749; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE97; }, { glyphname = u1EE98; layers = ( { components = ( { name = u1EE83; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 205, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 449; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE98; }, { glyphname = u1EE99; layers = ( { components = ( { name = u1EE91; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 821, 600}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1204; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE99; }, { glyphname = u1EE9A; layers = ( { components = ( { name = u1EE88; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 621, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 836; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE9A; }, { glyphname = u1EE9B; layers = ( { components = ( { name = u1EE8F; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 741; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EE9B; }, { glyphname = u1EEA1; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "427 -209 LINE SMOOTH", "425 -212 OFFCURVE", "425 -213 OFFCURVE", "428 -215 CURVE SMOOTH", "470 -240 OFFCURVE", "493 -254 OFFCURVE", "498 -258 CURVE SMOOTH", "503 -262 OFFCURVE", "505 -263 OFFCURVE", "506 -263 CURVE SMOOTH", "507 -263 OFFCURVE", "507 -262 OFFCURVE", "509 -260 CURVE SMOOTH", "556 -185 LINE SMOOTH", "558 -182 OFFCURVE", "558 -179 OFFCURVE", "555 -176 CURVE", "534 -158 OFFCURVE", "510 -144 OFFCURVE", "484 -135 CURVE SMOOTH", "480 -134 OFFCURVE", "477 -134 OFFCURVE", "475 -137 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "470 -120 OFFCURVE", "478 -118 OFFCURVE", "488 -121 CURVE SMOOTH", "498 -124 OFFCURVE", "507 -128 OFFCURVE", "516 -133 CURVE SMOOTH", "561 -156 OFFCURVE", "579 -176 OFFCURVE", "569 -193 CURVE", "521 -269 LINE SMOOTH", "518 -274 OFFCURVE", "514 -276 OFFCURVE", "508 -277 CURVE SMOOTH", "502 -278 OFFCURVE", "497 -276 OFFCURVE", "491 -271 CURVE SMOOTH", "485 -266 OFFCURVE", "462 -252 OFFCURVE", "421 -228 CURVE SMOOTH", "410 -221 OFFCURVE", "408 -212 OFFCURVE", "415 -201 CURVE SMOOTH", "464 -129 LINE SMOOTH" ); }, { closed = 1; nodes = ( "157 9 OFFCURVE", "263 -21 OFFCURVE", "418 -13 CURVE SMOOTH", "573 -5 OFFCURVE", "706 34 OFFCURVE", "814 102 CURVE SMOOTH", "834 115 OFFCURVE", "847 139 OFFCURVE", "853 174 CURVE SMOOTH", "865 249 OFFCURVE", "855 312 OFFCURVE", "822 363 CURVE SMOOTH", "816 372 OFFCURVE", "812 377 OFFCURVE", "809 378 CURVE", "808 377 OFFCURVE", "806 375 OFFCURVE", "805 371 CURVE SMOOTH", "775 282 LINE SMOOTH", "773 275 OFFCURVE", "775 269 OFFCURVE", "781 264 CURVE SMOOTH", "804 244 OFFCURVE", "818 221 OFFCURVE", "824 195 CURVE SMOOTH", "825 191 OFFCURVE", "824 189 OFFCURVE", "821 187 CURVE SMOOTH", "716 128 OFFCURVE", "583 99 OFFCURVE", "423 99 CURVE", "231 99 OFFCURVE", "128 139 OFFCURVE", "115 220 CURVE SMOOTH", "111 244 OFFCURVE", "122 270 OFFCURVE", "147 297 CURVE SMOOTH", "153 303 OFFCURVE", "154 308 OFFCURVE", "151 312 CURVE SMOOTH", "148 316 OFFCURVE", "144 314 OFFCURVE", "138 307 CURVE SMOOTH", "112 278 OFFCURVE", "95 252 OFFCURVE", "86 227 CURVE SMOOTH", "65 166 OFFCURVE", "70 116 OFFCURVE", "101 78 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "55 112 OFFCURVE", "49 167 OFFCURVE", "72 232 CURVE SMOOTH", "81 258 OFFCURVE", "100 286 OFFCURVE", "126 316 CURVE SMOOTH", "138 329 OFFCURVE", "150 331 OFFCURVE", "161 322 CURVE", "171 312 OFFCURVE", "170 301 OFFCURVE", "158 288 CURVE SMOOTH", "136 264 OFFCURVE", "127 242 OFFCURVE", "130 222 CURVE SMOOTH", "142 149 OFFCURVE", "240 113 OFFCURVE", "423 113 CURVE SMOOTH", "578 113 OFFCURVE", "706 141 OFFCURVE", "809 197 CURVE", "803 218 OFFCURVE", "789 237 OFFCURVE", "768 256 CURVE SMOOTH", "760 264 OFFCURVE", "757 274 OFFCURVE", "761 287 CURVE SMOOTH", "791 375 LINE SMOOTH", "794 382 OFFCURVE", "797 387 OFFCURVE", "801 390 CURVE SMOOTH", "811 397 OFFCURVE", "824 388 OFFCURVE", "839 365 CURVE SMOOTH", "872 315 OFFCURVE", "881 250 OFFCURVE", "868 172 CURVE SMOOTH", "861 132 OFFCURVE", "846 104 OFFCURVE", "822 89 CURVE SMOOTH", "712 19 OFFCURVE", "576 -20 OFFCURVE", "417 -28 CURVE SMOOTH", "258 -36 OFFCURVE", "149 -4 OFFCURVE", "90 69 CURVE SMOOTH" ); } ); width = 931; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA1; }, { glyphname = u1EEA2; layers = ( { components = ( { name = u1EEA7; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "326 145 LINE SMOOTH", "324 142 OFFCURVE", "324 140 OFFCURVE", "327 138 CURVE SMOOTH", "369 113 OFFCURVE", "391 99 OFFCURVE", "396 95 CURVE SMOOTH", "401 91 OFFCURVE", "403 90 OFFCURVE", "404 90 CURVE SMOOTH", "405 90 OFFCURVE", "406 91 OFFCURVE", "408 93 CURVE SMOOTH", "455 168 LINE SMOOTH", "457 171 OFFCURVE", "457 174 OFFCURVE", "454 177 CURVE", "433 195 OFFCURVE", "409 210 OFFCURVE", "383 219 CURVE SMOOTH", "379 220 OFFCURVE", "376 220 OFFCURVE", "374 217 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "368 234 OFFCURVE", "377 236 OFFCURVE", "388 232 CURVE SMOOTH", "421 220 OFFCURVE", "446 206 OFFCURVE", "464 188 CURVE SMOOTH", "472 180 OFFCURVE", "474 171 OFFCURVE", "468 161 CURVE", "420 85 LINE SMOOTH", "417 80 OFFCURVE", "413 77 OFFCURVE", "407 76 CURVE SMOOTH", "401 75 OFFCURVE", "396 77 OFFCURVE", "390 82 CURVE SMOOTH", "384 87 OFFCURVE", "360 101 OFFCURVE", "319 125 CURVE SMOOTH", "308 132 OFFCURVE", "307 141 OFFCURVE", "314 152 CURVE SMOOTH", "362 225 LINE SMOOTH" ); } ); width = 822; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA2; }, { glyphname = u1EEA3; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "271 247 OFFCURVE", "327 198 OFFCURVE", "337 145 CURVE SMOOTH", "338 141 OFFCURVE", "337 138 OFFCURVE", "333 136 CURVE SMOOTH", "301 121 OFFCURVE", "256 110 OFFCURVE", "200 103 CURVE", "142 94 OFFCURVE", "110 95 OFFCURVE", "103 108 CURVE SMOOTH", "100 114 OFFCURVE", "97 116 OFFCURVE", "93 116 CURVE SMOOTH", "92 116 LINE SMOOTH", "87 116 OFFCURVE", "83 110 OFFCURVE", "80 97 CURVE SMOOTH", "63 27 OFFCURVE", "81 -10 OFFCURVE", "132 -13 CURVE SMOOTH", "179 -16 OFFCURVE", "245 -1 OFFCURVE", "329 33 CURVE SMOOTH", "339 37 OFFCURVE", "348 49 OFFCURVE", "355 69 CURVE SMOOTH", "367 104 OFFCURVE", "368 145 OFFCURVE", "359 191 CURVE SMOOTH", "342 278 OFFCURVE", "293 346 OFFCURVE", "213 394 CURVE SMOOTH", "206 398 OFFCURVE", "201 398 OFFCURVE", "198 394 CURVE SMOOTH", "189 383 OFFCURVE", "178 360 OFFCURVE", "166 326 CURVE SMOOTH", "159 307 OFFCURVE", "161 296 OFFCURVE", "170 292 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "310 193 OFFCURVE", "257 237 OFFCURVE", "164 278 CURVE SMOOTH", "146 286 OFFCURVE", "142 303 OFFCURVE", "151 328 CURVE SMOOTH", "160 353 OFFCURVE", "168 372 OFFCURVE", "175 385 CURVE SMOOTH", "187 408 OFFCURVE", "203 415 OFFCURVE", "220 406 CURVE", "305 356 OFFCURVE", "356 285 OFFCURVE", "374 194 CURVE SMOOTH", "384 145 OFFCURVE", "381 102 OFFCURVE", "368 64 CURVE SMOOTH", "360 40 OFFCURVE", "349 26 OFFCURVE", "335 20 CURVE SMOOTH", "265 -8 OFFCURVE", "204 -25 OFFCURVE", "155 -28 CURVE SMOOTH", "106 -31 OFFCURVE", "75 -16 OFFCURVE", "64 17 CURVE SMOOTH", "57 39 OFFCURVE", "57 67 OFFCURVE", "66 101 CURVE", "71 121 OFFCURVE", "80 131 OFFCURVE", "93 131 CURVE SMOOTH", "102 131 OFFCURVE", "110 126 OFFCURVE", "116 115 CURVE", "123 110 OFFCURVE", "151 110 OFFCURVE", "201 117 CURVE SMOOTH", "251 124 OFFCURVE", "292 134 OFFCURVE", "322 147 CURVE" ); } ); width = 438; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA3; }, { glyphname = u1EEA5; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "365 317 OFFCURVE", "383 324 OFFCURVE", "400 311 CURVE SMOOTH", "408 305 OFFCURVE", "413 299 OFFCURVE", "417 292 CURVE SMOOTH", "421 285 OFFCURVE", "421 281 OFFCURVE", "417 278 CURVE SMOOTH", "389 259 OFFCURVE", "366 262 OFFCURVE", "346 284 CURVE SMOOTH", "343 287 OFFCURVE", "344 290 OFFCURVE", "346 293 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "395 298 OFFCURVE", "388 303 OFFCURVE", "381 302 CURVE SMOOTH", "374 301 OFFCURVE", "368 297 OFFCURVE", "361 290 CURVE", "373 280 OFFCURVE", "387 279 OFFCURVE", "403 287 CURVE" ); }, { closed = 1; nodes = ( "294 241 OFFCURVE", "297 188 OFFCURVE", "337 170 CURVE SMOOTH", "373 154 OFFCURVE", "404 161 OFFCURVE", "430 194 CURVE", "435 200 OFFCURVE", "440 199 OFFCURVE", "443 192 CURVE", "450 173 OFFCURVE", "452 162 OFFCURVE", "451 158 CURVE SMOOTH", "440 128 OFFCURVE", "407 90 OFFCURVE", "353 43 CURVE SMOOTH", "299 -4 OFFCURVE", "258 -29 OFFCURVE", "230 -36 CURVE SMOOTH", "173 -50 OFFCURVE", "125 -54 OFFCURVE", "85 -47 CURVE SMOOTH", "79 -46 OFFCURVE", "75 -48 OFFCURVE", "74 -52 CURVE SMOOTH", "73 -56 OFFCURVE", "74 -59 OFFCURVE", "78 -60 CURVE SMOOTH", "101 -69 OFFCURVE", "136 -79 OFFCURVE", "182 -88 CURVE SMOOTH", "228 -97 OFFCURVE", "258 -101 OFFCURVE", "274 -99 CURVE SMOOTH", "290 -97 OFFCURVE", "303 -94 OFFCURVE", "313 -88 CURVE SMOOTH", "335 -76 OFFCURVE", "360 -53 OFFCURVE", "388 -19 CURVE SMOOTH", "430 32 OFFCURVE", "459 88 OFFCURVE", "474 148 CURVE SMOOTH", "489 208 OFFCURVE", "495 256 OFFCURVE", "492 292 CURVE SMOOTH", "489 328 OFFCURVE", "479 359 OFFCURVE", "462 387 CURVE SMOOTH", "445 415 OFFCURVE", "426 429 OFFCURVE", "405 430 CURVE SMOOTH", "377 431 OFFCURVE", "351 398 OFFCURVE", "326 330 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "339 409 OFFCURVE", "370 446 OFFCURVE", "405 445 CURVE SMOOTH", "432 444 OFFCURVE", "455 428 OFFCURVE", "474 397 CURVE SMOOTH", "493 366 OFFCURVE", "504 332 OFFCURVE", "507 294 CURVE SMOOTH", "510 256 OFFCURVE", "503 206 OFFCURVE", "488 144 CURVE SMOOTH", "473 82 OFFCURVE", "443 25 OFFCURVE", "399 -28 CURVE SMOOTH", "355 -81 OFFCURVE", "318 -109 OFFCURVE", "286 -113 CURVE SMOOTH", "262 -116 OFFCURVE", "221 -111 OFFCURVE", "163 -99 CURVE SMOOTH", "105 -87 OFFCURVE", "72 -76 OFFCURVE", "64 -67 CURVE SMOOTH", "59 -62 OFFCURVE", "58 -57 OFFCURVE", "59 -51 CURVE SMOOTH", "62 -36 OFFCURVE", "73 -30 OFFCURVE", "90 -33 CURVE SMOOTH", "127 -39 OFFCURVE", "172 -34 OFFCURVE", "227 -21 CURVE SMOOTH", "252 -15 OFFCURVE", "291 10 OFFCURVE", "343 54 CURVE SMOOTH", "395 98 OFFCURVE", "425 134 OFFCURVE", "436 161 CURVE", "435 165 OFFCURVE", "434 170 OFFCURVE", "433 175 CURVE", "404 145 OFFCURVE", "370 138 OFFCURVE", "331 156 CURVE SMOOTH", "282 178 OFFCURVE", "277 237 OFFCURVE", "312 334 CURVE SMOOTH" ); } ); width = 565; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA5; }, { glyphname = u1EEA6; layers = ( { components = ( { name = u1EEB3; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "247 654 LINE SMOOTH", "245 651 OFFCURVE", "245 650 OFFCURVE", "248 648 CURVE SMOOTH", "290 623 OFFCURVE", "312 609 OFFCURVE", "317 605 CURVE SMOOTH", "322 601 OFFCURVE", "324 600 OFFCURVE", "325 600 CURVE SMOOTH", "326 600 OFFCURVE", "327 601 OFFCURVE", "329 603 CURVE SMOOTH", "376 678 LINE SMOOTH", "378 681 OFFCURVE", "378 684 OFFCURVE", "375 687 CURVE", "354 705 OFFCURVE", "330 720 OFFCURVE", "304 729 CURVE SMOOTH", "300 730 OFFCURVE", "297 730 OFFCURVE", "295 727 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "289 743 OFFCURVE", "298 746 OFFCURVE", "309 742 CURVE SMOOTH", "342 730 OFFCURVE", "367 716 OFFCURVE", "385 698 CURVE SMOOTH", "393 690 OFFCURVE", "395 680 OFFCURVE", "389 670 CURVE", "341 595 LINE SMOOTH", "338 590 OFFCURVE", "334 587 OFFCURVE", "328 586 CURVE SMOOTH", "322 585 OFFCURVE", "317 587 OFFCURVE", "311 592 CURVE SMOOTH", "305 597 OFFCURVE", "281 611 OFFCURVE", "240 635 CURVE SMOOTH", "229 642 OFFCURVE", "228 651 OFFCURVE", "235 662 CURVE SMOOTH", "283 734 LINE SMOOTH" ); } ); width = 563; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA6; }, { glyphname = u1EEA7; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "351 429 OFFCURVE", "456 459 OFFCURVE", "584 470 CURVE SMOOTH", "591 471 OFFCURVE", "596 476 OFFCURVE", "600 486 CURVE SMOOTH", "629 556 LINE SMOOTH", "632 563 OFFCURVE", "633 566 OFFCURVE", "631 567 CURVE SMOOTH", "625 571 OFFCURVE", "614 571 OFFCURVE", "598 568 CURVE SMOOTH", "507 553 OFFCURVE", "418 554 OFFCURVE", "331 569 CURVE SMOOTH", "279 578 OFFCURVE", "246 582 OFFCURVE", "231 582 CURVE SMOOTH", "151 580 OFFCURVE", "110 543 OFFCURVE", "108 471 CURVE SMOOTH", "108 460 OFFCURVE", "109 455 OFFCURVE", "112 455 CURVE SMOOTH", "115 455 OFFCURVE", "118 455 OFFCURVE", "122 457 CURVE SMOOTH", "162 477 OFFCURVE", "213 482 OFFCURVE", "275 473 CURVE SMOOTH", "283 472 OFFCURVE", "284 467 OFFCURVE", "278 459 CURVE", "155 382 OFFCURVE", "87 259 OFFCURVE", "75 90 CURVE SMOOTH", "68 -16 OFFCURVE", "93 -94 OFFCURVE", "154 -143 CURVE SMOOTH", "231 -205 OFFCURVE", "367 -223 OFFCURVE", "564 -200 CURVE SMOOTH", "575 -199 OFFCURVE", "587 -193 OFFCURVE", "600 -184 CURVE SMOOTH", "613 -175 OFFCURVE", "628 -165 OFFCURVE", "645 -152 CURVE SMOOTH", "662 -139 OFFCURVE", "684 -129 OFFCURVE", "710 -120 CURVE SMOOTH", "736 -111 OFFCURVE", "750 -104 OFFCURVE", "750 -97 CURVE SMOOTH", "750 -90 OFFCURVE", "740 -88 OFFCURVE", "719 -91 CURVE SMOOTH", "552 -112 OFFCURVE", "419 -112 OFFCURVE", "319 -92 CURVE SMOOTH", "198 -68 OFFCURVE", "129 -5 OFFCURVE", "111 97 CURVE SMOOTH", "103 145 OFFCURVE", "111 194 OFFCURVE", "136 246 CURVE SMOOTH", "161 298 OFFCURVE", "206 343 OFFCURVE", "269 380 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "216 331 OFFCURVE", "174 289 OFFCURVE", "150 240 CURVE SMOOTH", "126 191 OFFCURVE", "118 144 OFFCURVE", "125 100 CURVE SMOOTH", "141 4 OFFCURVE", "207 -55 OFFCURVE", "322 -78 CURVE SMOOTH", "420 -98 OFFCURVE", "552 -97 OFFCURVE", "717 -76 CURVE SMOOTH", "749 -72 OFFCURVE", "764 -80 OFFCURVE", "764 -98 CURVE SMOOTH", "764 -111 OFFCURVE", "750 -122 OFFCURVE", "721 -132 CURVE SMOOTH", "692 -142 OFFCURVE", "665 -155 OFFCURVE", "639 -174 CURVE SMOOTH", "613 -193 OFFCURVE", "597 -204 OFFCURVE", "590 -208 CURVE SMOOTH", "583 -212 OFFCURVE", "574 -213 OFFCURVE", "566 -214 CURVE SMOOTH", "365 -238 OFFCURVE", "225 -218 OFFCURVE", "145 -154 CURVE SMOOTH", "80 -102 OFFCURVE", "52 -21 OFFCURVE", "60 91 CURVE SMOOTH", "72 257 OFFCURVE", "136 380 OFFCURVE", "253 461 CURVE", "203 466 OFFCURVE", "162 460 OFFCURVE", "129 444 CURVE SMOOTH", "123 441 OFFCURVE", "118 440 OFFCURVE", "113 440 CURVE SMOOTH", "100 440 OFFCURVE", "93 450 OFFCURVE", "94 471 CURVE SMOOTH", "96 553 OFFCURVE", "142 595 OFFCURVE", "231 597 CURVE SMOOTH", "247 597 OFFCURVE", "281 592 OFFCURVE", "334 583 CURVE SMOOTH", "419 568 OFFCURVE", "507 568 OFFCURVE", "596 583 CURVE SMOOTH", "626 588 OFFCURVE", "642 583 OFFCURVE", "645 569 CURVE SMOOTH", "646 563 OFFCURVE", "646 557 OFFCURVE", "643 550 CURVE", "614 480 LINE SMOOTH", "608 465 OFFCURVE", "598 457 OFFCURVE", "585 456 CURVE SMOOTH", "460 445 OFFCURVE", "357 415 OFFCURVE", "277 367 CURVE SMOOTH" ); } ); width = 822; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA7; }, { glyphname = u1EEA8; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "347 429 OFFCURVE", "361 262 OFFCURVE", "357 148 CURVE SMOOTH", "357 146 OFFCURVE", "357 145 OFFCURVE", "355 144 CURVE SMOOTH", "297 87 LINE SMOOTH", "296 86 OFFCURVE", "294 85 OFFCURVE", "292 85 CURVE SMOOTH", "217 80 OFFCURVE", "153 81 OFFCURVE", "99 87 CURVE SMOOTH", "82 89 OFFCURVE", "73 88 OFFCURVE", "73 82 CURVE SMOOTH", "73 76 OFFCURVE", "78 66 OFFCURVE", "90 52 CURVE SMOOTH", "102 38 OFFCURVE", "119 20 OFFCURVE", "143 2 CURVE SMOOTH", "167 -16 OFFCURVE", "198 -28 OFFCURVE", "237 -35 CURVE", "338 -30 OFFCURVE", "433 -14 OFFCURVE", "522 14 CURVE SMOOTH", "611 42 OFFCURVE", "665 66 OFFCURVE", "683 84 CURVE SMOOTH", "694 96 OFFCURVE", "709 121 OFFCURVE", "727 156 CURVE SMOOTH", "745 191 OFFCURVE", "753 221 OFFCURVE", "750 244 CURVE SMOOTH", "747 267 OFFCURVE", "730 290 OFFCURVE", "699 311 CURVE SMOOTH", "682 323 OFFCURVE", "664 327 OFFCURVE", "644 325 CURVE SMOOTH", "578 318 OFFCURVE", "496 270 OFFCURVE", "396 180 CURVE", "390 175 OFFCURVE", "385 176 OFFCURVE", "384 183 CURVE SMOOTH", "383 186 LINE", "385 203 OFFCURVE", "387 233 OFFCURVE", "391 276 CURVE SMOOTH", "395 319 OFFCURVE", "390 421 OFFCURVE", "375 582 CURVE SMOOTH", "375 582 OFFCURVE", "375 583 OFFCURVE", "375 584 CURVE SMOOTH", "375 585 OFFCURVE", "375 586 OFFCURVE", "376 588 CURVE SMOOTH", "377 590 OFFCURVE", "381 595 OFFCURVE", "387 602 CURVE SMOOTH", "393 609 OFFCURVE", "398 615 OFFCURVE", "402 619 CURVE SMOOTH", "409 627 OFFCURVE", "407 638 OFFCURVE", "395 652 CURVE SMOOTH", "383 666 OFFCURVE", "375 676 OFFCURVE", "371 685 CURVE SMOOTH", "367 694 OFFCURVE", "362 705 OFFCURVE", "357 718 CURVE SMOOTH", "352 731 OFFCURVE", "348 737 OFFCURVE", "345 737 CURVE SMOOTH", "344 737 LINE SMOOTH", "344 737 OFFCURVE", "343 736 OFFCURVE", "341 736 CURVE SMOOTH", "339 736 OFFCURVE", "336 728 OFFCURVE", "330 714 CURVE SMOOTH", "324 700 OFFCURVE", "320 689 OFFCURVE", "316 681 CURVE SMOOTH", "312 673 OFFCURVE", "310 668 OFFCURVE", "311 665 CURVE SMOOTH", "312 662 OFFCURVE", "313 656 OFFCURVE", "314 647 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "346 258 OFFCURVE", "333 417 OFFCURVE", "302 629 CURVE SMOOTH", "299 647 OFFCURVE", "298 660 OFFCURVE", "296 667 CURVE SMOOTH", "294 674 OFFCURVE", "295 680 OFFCURVE", "300 687 CURVE SMOOTH", "305 694 OFFCURVE", "312 709 OFFCURVE", "322 734 CURVE SMOOTH", "326 745 OFFCURVE", "334 751 OFFCURVE", "344 751 CURVE SMOOTH", "354 751 OFFCURVE", "363 744 OFFCURVE", "369 728 CURVE SMOOTH", "375 712 OFFCURVE", "380 700 OFFCURVE", "384 692 CURVE SMOOTH", "388 684 OFFCURVE", "395 675 OFFCURVE", "404 664 CURVE SMOOTH", "421 644 OFFCURVE", "425 627 OFFCURVE", "415 612 CURVE", "401 595 OFFCURVE", "393 586 OFFCURVE", "389 581 CURVE", "404 421 OFFCURVE", "410 322 OFFCURVE", "407 285 CURVE SMOOTH", "404 248 OFFCURVE", "402 221 OFFCURVE", "400 203 CURVE", "496 287 OFFCURVE", "576 333 OFFCURVE", "642 340 CURVE SMOOTH", "678 344 OFFCURVE", "711 328 OFFCURVE", "741 294 CURVE SMOOTH", "754 279 OFFCURVE", "762 260 OFFCURVE", "765 238 CURVE SMOOTH", "768 216 OFFCURVE", "760 187 OFFCURVE", "741 150 CURVE SMOOTH", "722 113 OFFCURVE", "708 89 OFFCURVE", "698 79 CURVE SMOOTH", "688 69 OFFCURVE", "672 58 OFFCURVE", "651 47 CURVE SMOOTH", "630 36 OFFCURVE", "588 20 OFFCURVE", "527 0 CURVE SMOOTH", "436 -29 OFFCURVE", "340 -45 OFFCURVE", "237 -50 CURVE SMOOTH", "236 -50 OFFCURVE", "236 -50 OFFCURVE", "235 -50 CURVE SMOOTH", "194 -43 OFFCURVE", "160 -29 OFFCURVE", "135 -10 CURVE SMOOTH", "82 31 OFFCURVE", "57 62 OFFCURVE", "59 84 CURVE SMOOTH", "61 99 OFFCURVE", "75 105 OFFCURVE", "101 102 CURVE SMOOTH", "153 96 OFFCURVE", "216 95 OFFCURVE", "289 100 CURVE", "342 152 LINE" ); }, { closed = 1; nodes = ( "679 184 OFFCURVE", "678 181 OFFCURVE", "673 178 CURVE SMOOTH", "601 139 OFFCURVE", "500 112 OFFCURVE", "370 96 CURVE SMOOTH", "362 95 OFFCURVE", "360 100 OFFCURVE", "364 109 CURVE", "410 152 OFFCURVE", "467 182 OFFCURVE", "537 200 CURVE SMOOTH", "607 218 OFFCURVE", "653 215 OFFCURVE", "675 189 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "503 129 OFFCURVE", "592 153 OFFCURVE", "657 186 CURVE", "636 201 OFFCURVE", "596 201 OFFCURVE", "539 186 CURVE SMOOTH", "482 171 OFFCURVE", "433 147 OFFCURVE", "392 114 CURVE" ); } ); width = 824; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA8; }, { glyphname = u1EEA9; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "367 -183 LINE SMOOTH", "364 -187 OFFCURVE", "361 -188 OFFCURVE", "357 -185 CURVE SMOOTH", "341 -173 OFFCURVE", "327 -166 OFFCURVE", "316 -162 CURVE SMOOTH", "305 -158 OFFCURVE", "299 -157 OFFCURVE", "298 -157 CURVE SMOOTH", "297 -157 OFFCURVE", "295 -157 OFFCURVE", "294 -159 CURVE SMOOTH", "246 -231 LINE SMOOTH", "244 -234 OFFCURVE", "244 -236 OFFCURVE", "247 -238 CURVE SMOOTH", "289 -263 OFFCURVE", "311 -277 OFFCURVE", "316 -281 CURVE SMOOTH", "321 -285 OFFCURVE", "323 -286 OFFCURVE", "324 -286 CURVE SMOOTH", "325 -286 OFFCURVE", "326 -285 OFFCURVE", "328 -283 CURVE SMOOTH", "361 -229 LINE SMOOTH", "364 -225 OFFCURVE", "367 -225 OFFCURVE", "371 -227 CURVE SMOOTH", "400 -245 OFFCURVE", "417 -255 OFFCURVE", "421 -258 CURVE SMOOTH", "425 -261 OFFCURVE", "427 -263 OFFCURVE", "428 -263 CURVE SMOOTH", "429 -263 OFFCURVE", "430 -262 OFFCURVE", "432 -260 CURVE SMOOTH", "479 -185 LINE SMOOTH", "481 -182 OFFCURVE", "481 -179 OFFCURVE", "478 -176 CURVE", "457 -158 OFFCURVE", "433 -144 OFFCURVE", "407 -135 CURVE", "403 -134 OFFCURVE", "400 -135 OFFCURVE", "398 -137 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "392 -119 OFFCURVE", "402 -117 OFFCURVE", "414 -122 CURVE SMOOTH", "445 -132 OFFCURVE", "469 -147 OFFCURVE", "488 -166 CURVE SMOOTH", "496 -174 OFFCURVE", "498 -183 OFFCURVE", "492 -193 CURVE", "444 -269 LINE SMOOTH", "437 -281 OFFCURVE", "427 -281 OFFCURVE", "414 -271 CURVE SMOOTH", "410 -267 OFFCURVE", "395 -259 OFFCURVE", "370 -244 CURVE", "340 -291 LINE SMOOTH", "337 -296 OFFCURVE", "333 -299 OFFCURVE", "327 -300 CURVE SMOOTH", "321 -301 OFFCURVE", "315 -299 OFFCURVE", "309 -294 CURVE SMOOTH", "303 -289 OFFCURVE", "280 -274 OFFCURVE", "239 -250 CURVE SMOOTH", "228 -243 OFFCURVE", "227 -235 OFFCURVE", "234 -224 CURVE SMOOTH", "282 -151 LINE SMOOTH", "288 -142 OFFCURVE", "296 -139 OFFCURVE", "304 -142 CURVE SMOOTH", "325 -149 OFFCURVE", "343 -158 OFFCURVE", "359 -169 CURVE", "386 -128 LINE SMOOTH" ); }, { closed = 1; nodes = ( "689 426 OFFCURVE", "698 433 OFFCURVE", "704 454 CURVE SMOOTH", "719 512 OFFCURVE", "710 546 OFFCURVE", "676 555 CURVE SMOOTH", "639 564 OFFCURVE", "596 551 OFFCURVE", "546 515 CURVE SMOOTH", "485 471 OFFCURVE", "441 408 OFFCURVE", "412 327 CURVE SMOOTH", "399 291 OFFCURVE", "399 256 OFFCURVE", "410 224 CURVE SMOOTH", "421 192 OFFCURVE", "455 174 OFFCURVE", "511 170 CURVE SMOOTH", "567 166 OFFCURVE", "603 162 OFFCURVE", "619 156 CURVE SMOOTH", "627 153 OFFCURVE", "628 148 OFFCURVE", "621 143 CURVE SMOOTH", "545 85 OFFCURVE", "446 54 OFFCURVE", "324 52 CURVE SMOOTH", "220 50 OFFCURVE", "153 86 OFFCURVE", "125 158 CURVE SMOOTH", "103 215 OFFCURVE", "121 287 OFFCURVE", "181 376 CURVE SMOOTH", "189 388 OFFCURVE", "192 397 OFFCURVE", "188 402 CURVE", "186 406 OFFCURVE", "177 399 OFFCURVE", "162 380 CURVE SMOOTH", "147 361 OFFCURVE", "131 334 OFFCURVE", "114 299 CURVE SMOOTH", "82 235 OFFCURVE", "69 172 OFFCURVE", "74 112 CURVE SMOOTH", "79 52 OFFCURVE", "101 9 OFFCURVE", "141 -19 CURVE SMOOTH", "181 -47 OFFCURVE", "239 -60 OFFCURVE", "315 -57 CURVE SMOOTH", "438 -52 OFFCURVE", "548 -10 OFFCURVE", "646 68 CURVE SMOOTH", "680 95 OFFCURVE", "691 139 OFFCURVE", "683 200 CURVE SMOOTH", "679 229 OFFCURVE", "643 245 OFFCURVE", "575 249 CURVE SMOOTH", "488 254 OFFCURVE", "444 273 OFFCURVE", "440 308 CURVE SMOOTH", "440 312 OFFCURVE", "440 315 OFFCURVE", "441 318 CURVE SMOOTH", "452 356 OFFCURVE", "482 388 OFFCURVE", "531 414 CURVE SMOOTH", "592 446 OFFCURVE", "640 452 OFFCURVE", "676 433 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "638 436 OFFCURVE", "594 430 OFFCURVE", "538 401 CURVE SMOOTH", "492 377 OFFCURVE", "465 348 OFFCURVE", "455 314 CURVE SMOOTH", "454 311 OFFCURVE", "454 307 OFFCURVE", "456 303 CURVE SMOOTH", "467 280 OFFCURVE", "508 266 OFFCURVE", "581 262 CURVE SMOOTH", "654 258 OFFCURVE", "693 238 OFFCURVE", "698 202 CURVE SMOOTH", "707 135 OFFCURVE", "692 87 OFFCURVE", "654 56 CURVE SMOOTH", "554 -24 OFFCURVE", "442 -66 OFFCURVE", "316 -71 CURVE SMOOTH", "156 -78 OFFCURVE", "71 -18 OFFCURVE", "60 110 CURVE SMOOTH", "55 173 OFFCURVE", "68 239 OFFCURVE", "101 306 CURVE SMOOTH", "119 342 OFFCURVE", "139 373 OFFCURVE", "161 402 CURVE SMOOTH", "175 420 OFFCURVE", "187 424 OFFCURVE", "197 413 CURVE SMOOTH", "207 402 OFFCURVE", "206 388 OFFCURVE", "193 369 CURVE SMOOTH", "136 285 OFFCURVE", "117 216 OFFCURVE", "138 163 CURVE SMOOTH", "164 97 OFFCURVE", "226 65 OFFCURVE", "324 67 CURVE SMOOTH", "436 69 OFFCURVE", "528 96 OFFCURVE", "600 146 CURVE", "582 150 OFFCURVE", "555 153 OFFCURVE", "518 155 CURVE SMOOTH", "450 160 OFFCURVE", "410 180 OFFCURVE", "397 217 CURVE SMOOTH", "384 254 OFFCURVE", "384 292 OFFCURVE", "398 332 CURVE SMOOTH", "428 416 OFFCURVE", "471 479 OFFCURVE", "530 521 CURVE SMOOTH", "589 563 OFFCURVE", "639 579 OFFCURVE", "681 568 CURVE SMOOTH", "723 557 OFFCURVE", "735 518 OFFCURVE", "717 450 CURVE", "709 419 OFFCURVE", "693 409 OFFCURVE", "669 420 CURVE" ); } ); width = 783; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEA9; }, { glyphname = u1EEAB; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "441 661 OFFCURVE", "442 656 OFFCURVE", "444 645 CURVE SMOOTH", "446 634 OFFCURVE", "448 622 OFFCURVE", "450 609 CURVE SMOOTH", "452 596 OFFCURVE", "458 544 OFFCURVE", "467 454 CURVE SMOOTH", "476 364 OFFCURVE", "488 257 OFFCURVE", "505 135 CURVE SMOOTH", "505 133 OFFCURVE", "505 131 OFFCURVE", "504 129 CURVE SMOOTH", "462 79 OFFCURVE", "392 52 OFFCURVE", "294 49 CURVE SMOOTH", "178 45 OFFCURVE", "116 82 OFFCURVE", "108 159 CURVE SMOOTH", "105 189 OFFCURVE", "119 234 OFFCURVE", "152 292 CURVE SMOOTH", "158 302 OFFCURVE", "160 307 OFFCURVE", "157 310 CURVE SMOOTH", "154 313 OFFCURVE", "150 310 OFFCURVE", "143 302 CURVE SMOOTH", "96 243 OFFCURVE", "73 178 OFFCURVE", "73 104 CURVE SMOOTH", "73 49 OFFCURVE", "90 5 OFFCURVE", "122 -25 CURVE SMOOTH", "154 -55 OFFCURVE", "200 -71 OFFCURVE", "261 -72 CURVE SMOOTH", "306 -73 OFFCURVE", "356 -61 OFFCURVE", "411 -36 CURVE SMOOTH", "466 -11 OFFCURVE", "501 19 OFFCURVE", "516 55 CURVE SMOOTH", "539 110 OFFCURVE", "548 172 OFFCURVE", "543 241 CURVE SMOOTH", "540 284 OFFCURVE", "533 355 OFFCURVE", "521 453 CURVE SMOOTH", "509 551 OFFCURVE", "504 602 OFFCURVE", "508 607 CURVE SMOOTH", "532 640 LINE SMOOTH", "538 647 OFFCURVE", "540 653 OFFCURVE", "538 657 CURVE SMOOTH", "536 661 OFFCURVE", "533 665 OFFCURVE", "527 670 CURVE SMOOTH", "507 687 OFFCURVE", "494 705 OFFCURVE", "487 725 CURVE SMOOTH", "480 745 OFFCURVE", "475 756 OFFCURVE", "472 758 CURVE", "470 757 OFFCURVE", "468 754 OFFCURVE", "466 750 CURVE SMOOTH", "441 701 LINE SMOOTH", "435 690 OFFCURVE", "435 676 OFFCURVE", "441 661 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "434 617 OFFCURVE", "431 635 OFFCURVE", "427 656 CURVE", "420 675 OFFCURVE", "420 693 OFFCURVE", "428 708 CURVE SMOOTH", "454 757 LINE SMOOTH", "469 786 OFFCURVE", "483 778 OFFCURVE", "499 734 CURVE SMOOTH", "506 714 OFFCURVE", "519 696 OFFCURVE", "537 681 CURVE SMOOTH", "555 666 OFFCURVE", "558 649 OFFCURVE", "544 631 CURVE SMOOTH", "521 601 LINE", "524 557 OFFCURVE", "529 496 OFFCURVE", "539 420 CURVE SMOOTH", "549 344 OFFCURVE", "555 285 OFFCURVE", "558 242 CURVE SMOOTH", "563 170 OFFCURVE", "554 106 OFFCURVE", "530 49 CURVE SMOOTH", "513 10 OFFCURVE", "476 -23 OFFCURVE", "418 -49 CURVE SMOOTH", "360 -75 OFFCURVE", "308 -87 OFFCURVE", "261 -86 CURVE SMOOTH", "164 -85 OFFCURVE", "102 -49 OFFCURVE", "73 23 CURVE SMOOTH", "63 48 OFFCURVE", "59 75 OFFCURVE", "59 104 CURVE SMOOTH", "59 181 OFFCURVE", "82 250 OFFCURVE", "131 311 CURVE SMOOTH", "144 327 OFFCURVE", "156 330 OFFCURVE", "167 321 CURVE", "174 311 OFFCURVE", "174 300 OFFCURVE", "167 287 CURVE SMOOTH", "135 230 OFFCURVE", "120 188 OFFCURVE", "123 161 CURVE SMOOTH", "130 92 OFFCURVE", "187 59 OFFCURVE", "293 63 CURVE SMOOTH", "385 66 OFFCURVE", "451 91 OFFCURVE", "490 136 CURVE", "473 257 OFFCURVE", "463 347 OFFCURVE", "457 406 CURVE SMOOTH", "451 465 OFFCURVE", "444 530 OFFCURVE", "437 598 CURVE" ); } ); width = 617; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEAB; }, { glyphname = u1EEAC; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "163 468 OFFCURVE", "160 470 OFFCURVE", "160 476 CURVE SMOOTH", "162 507 OFFCURVE", "174 526 OFFCURVE", "197 532 CURVE SMOOTH", "213 536 OFFCURVE", "233 527 OFFCURVE", "259 505 CURVE SMOOTH", "266 499 OFFCURVE", "264 496 OFFCURVE", "255 493 CURVE", "222 489 OFFCURVE", "194 481 OFFCURVE", "170 471 CURVE" ); }, { closed = 1; nodes = ( "194 497 OFFCURVE", "214 501 OFFCURVE", "236 505 CURVE", "204 527 OFFCURVE", "184 523 OFFCURVE", "176 490 CURVE" ); }, { closed = 1; nodes = ( "118 445 OFFCURVE", "115 442 OFFCURVE", "111 438 CURVE SMOOTH", "107 434 OFFCURVE", "101 425 OFFCURVE", "93 410 CURVE SMOOTH", "85 395 OFFCURVE", "79 373 OFFCURVE", "75 343 CURVE SMOOTH", "69 297 OFFCURVE", "86 198 OFFCURVE", "126 47 CURVE SMOOTH", "148 -37 OFFCURVE", "162 -110 OFFCURVE", "167 -171 CURVE SMOOTH", "169 -194 OFFCURVE", "175 -204 OFFCURVE", "185 -203 CURVE", "226 -196 OFFCURVE", "201 -20 OFFCURVE", "112 325 CURVE SMOOTH", "111 328 OFFCURVE", "112 330 OFFCURVE", "114 332 CURVE SMOOTH", "173 397 OFFCURVE", "254 418 OFFCURVE", "358 394 CURVE", "370 392 OFFCURVE", "378 397 OFFCURVE", "383 410 CURVE SMOOTH", "386 418 OFFCURVE", "391 437 OFFCURVE", "396 466 CURVE SMOOTH", "401 495 OFFCURVE", "403 511 OFFCURVE", "402 515 CURVE SMOOTH", "401 519 OFFCURVE", "399 526 OFFCURVE", "394 534 CURVE", "288 678 OFFCURVE", "205 690 OFFCURVE", "146 571 CURVE SMOOTH", "129 536 OFFCURVE", "120 494 OFFCURVE", "118 447 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "105 499 OFFCURVE", "115 540 OFFCURVE", "132 575 CURVE SMOOTH", "198 710 OFFCURVE", "289 699 OFFCURVE", "405 542 CURVE", "414 528 OFFCURVE", "418 514 OFFCURVE", "416 498 CURVE SMOOTH", "414 482 OFFCURVE", "411 464 OFFCURVE", "407 444 CURVE SMOOTH", "403 424 OFFCURVE", "399 410 OFFCURVE", "396 402 CURVE SMOOTH", "393 394 OFFCURVE", "388 387 OFFCURVE", "381 383 CURVE SMOOTH", "374 379 OFFCURVE", "365 377 OFFCURVE", "355 379 CURVE", "258 402 OFFCURVE", "182 384 OFFCURVE", "128 325 CURVE", "150 238 OFFCURVE", "169 157 OFFCURVE", "185 81 CURVE", "214 -63 OFFCURVE", "224 -152 OFFCURVE", "214 -186 CURVE SMOOTH", "208 -205 OFFCURVE", "201 -215 OFFCURVE", "189 -217 CURVE SMOOTH", "177 -219 OFFCURVE", "168 -215 OFFCURVE", "162 -207 CURVE SMOOTH", "156 -199 OFFCURVE", "153 -187 OFFCURVE", "152 -172 CURVE SMOOTH", "147 -112 OFFCURVE", "133 -40 OFFCURVE", "111 43 CURVE SMOOTH", "71 196 OFFCURVE", "54 297 OFFCURVE", "60 344 CURVE SMOOTH", "66 391 OFFCURVE", "81 427 OFFCURVE", "103 451 CURVE" ); } ); width = 475; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEAC; }, { glyphname = u1EEAD; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "206 538 LINE SMOOTH", "204 535 OFFCURVE", "204 534 OFFCURVE", "207 532 CURVE SMOOTH", "249 507 OFFCURVE", "272 493 OFFCURVE", "276 490 CURVE SMOOTH", "280 487 OFFCURVE", "283 484 OFFCURVE", "284 484 CURVE SMOOTH", "285 484 OFFCURVE", "286 485 OFFCURVE", "288 487 CURVE SMOOTH", "335 562 LINE SMOOTH", "337 565 OFFCURVE", "337 568 OFFCURVE", "334 571 CURVE", "313 589 OFFCURVE", "289 603 OFFCURVE", "263 612 CURVE SMOOTH", "259 613 OFFCURVE", "256 613 OFFCURVE", "254 610 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "248 627 OFFCURVE", "257 630 OFFCURVE", "268 626 CURVE SMOOTH", "301 614 OFFCURVE", "326 600 OFFCURVE", "344 582 CURVE SMOOTH", "352 574 OFFCURVE", "354 564 OFFCURVE", "348 554 CURVE SMOOTH", "300 479 LINE SMOOTH", "297 474 OFFCURVE", "292 471 OFFCURVE", "286 470 CURVE SMOOTH", "280 469 OFFCURVE", "275 471 OFFCURVE", "269 476 CURVE SMOOTH", "263 481 OFFCURVE", "240 495 OFFCURVE", "199 519 CURVE SMOOTH", "188 526 OFFCURVE", "187 535 OFFCURVE", "194 546 CURVE SMOOTH", "242 618 LINE SMOOTH" ); }, { closed = 1; nodes = ( "445 467 OFFCURVE", "440 474 OFFCURVE", "436 475 CURVE", "434 474 OFFCURVE", "432 471 OFFCURVE", "430 466 CURVE SMOOTH", "393 382 LINE", "390 376 OFFCURVE", "392 368 OFFCURVE", "398 358 CURVE SMOOTH", "451 268 OFFCURVE", "480 193 OFFCURVE", "483 133 CURVE SMOOTH", "483 131 OFFCURVE", "482 130 OFFCURVE", "481 128 CURVE SMOOTH", "429 73 OFFCURVE", "358 46 OFFCURVE", "268 45 CURVE SMOOTH", "193 44 OFFCURVE", "143 64 OFFCURVE", "118 106 CURVE SMOOTH", "93 148 OFFCURVE", "100 202 OFFCURVE", "137 268 CURVE SMOOTH", "143 277 OFFCURVE", "143 282 OFFCURVE", "139 284 CURVE SMOOTH", "139 285 LINE SMOOTH", "138 287 OFFCURVE", "134 284 OFFCURVE", "129 277 CURVE SMOOTH", "93 224 OFFCURVE", "74 168 OFFCURVE", "73 109 CURVE SMOOTH", "72 50 OFFCURVE", "90 4 OFFCURVE", "126 -30 CURVE SMOOTH", "162 -64 OFFCURVE", "212 -78 OFFCURVE", "274 -71 CURVE SMOOTH", "365 -61 OFFCURVE", "431 -25 OFFCURVE", "472 37 CURVE SMOOTH", "489 63 OFFCURVE", "499 91 OFFCURVE", "503 121 CURVE SMOOTH", "518 244 OFFCURVE", "502 355 OFFCURVE", "452 454 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "515 359 OFFCURVE", "533 245 OFFCURVE", "518 119 CURVE SMOOTH", "514 87 OFFCURVE", "502 56 OFFCURVE", "482 25 CURVE SMOOTH", "440 -39 OFFCURVE", "372 -76 OFFCURVE", "276 -86 CURVE SMOOTH", "209 -93 OFFCURVE", "156 -78 OFFCURVE", "116 -41 CURVE SMOOTH", "76 -4 OFFCURVE", "58 47 OFFCURVE", "59 109 CURVE SMOOTH", "60 171 OFFCURVE", "80 230 OFFCURVE", "118 285 CURVE SMOOTH", "128 300 OFFCURVE", "138 303 OFFCURVE", "149 295 CURVE", "158 287 OFFCURVE", "158 276 OFFCURVE", "150 261 CURVE SMOOTH", "115 200 OFFCURVE", "109 151 OFFCURVE", "131 114 CURVE SMOOTH", "153 77 OFFCURVE", "198 59 OFFCURVE", "268 60 CURVE SMOOTH", "352 61 OFFCURVE", "419 86 OFFCURVE", "468 136 CURVE", "464 193 OFFCURVE", "436 264 OFFCURVE", "385 350 CURVE SMOOTH", "377 364 OFFCURVE", "374 377 OFFCURVE", "379 388 CURVE SMOOTH", "417 472 LINE SMOOTH", "420 480 OFFCURVE", "424 485 OFFCURVE", "429 487 CURVE SMOOTH", "441 494 OFFCURVE", "452 485 OFFCURVE", "464 461 CURVE SMOOTH" ); } ); width = 581; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEAD; }, { glyphname = u1EEAE; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "876 440 LINE SMOOTH", "874 432 OFFCURVE", "873 427 OFFCURVE", "874 425 CURVE", "881 413 OFFCURVE", "885 405 OFFCURVE", "885 402 CURVE SMOOTH", "885 396 OFFCURVE", "883 393 OFFCURVE", "878 393 CURVE SMOOTH", "849 392 OFFCURVE", "822 399 OFFCURVE", "799 414 CURVE SMOOTH", "796 416 OFFCURVE", "796 419 OFFCURVE", "797 424 CURVE SMOOTH", "802 448 OFFCURVE", "801 465 OFFCURVE", "795 473 CURVE SMOOTH", "789 481 OFFCURVE", "784 477 OFFCURVE", "780 459 CURVE SMOOTH", "759 369 OFFCURVE", "710 330 OFFCURVE", "633 342 CURVE SMOOTH", "630 342 OFFCURVE", "628 345 OFFCURVE", "626 350 CURVE SMOOTH", "624 355 OFFCURVE", "618 365 OFFCURVE", "611 379 CURVE SMOOTH", "604 393 OFFCURVE", "597 403 OFFCURVE", "592 407 CURVE SMOOTH", "587 411 OFFCURVE", "584 413 OFFCURVE", "583 413 CURVE SMOOTH", "582 413 OFFCURVE", "581 412 OFFCURVE", "580 410 CURVE SMOOTH", "539 331 LINE SMOOTH", "536 325 OFFCURVE", "536 318 OFFCURVE", "541 309 CURVE SMOOTH", "576 243 OFFCURVE", "592 187 OFFCURVE", "590 143 CURVE SMOOTH", "590 142 OFFCURVE", "590 140 OFFCURVE", "589 139 CURVE SMOOTH", "533 53 OFFCURVE", "434 11 OFFCURVE", "292 12 CURVE SMOOTH", "194 12 OFFCURVE", "132 55 OFFCURVE", "109 141 CURVE", "102 167 OFFCURVE", "115 220 OFFCURVE", "148 300 CURVE SMOOTH", "150 306 OFFCURVE", "150 308 OFFCURVE", "149 309 CURVE SMOOTH", "148 310 OFFCURVE", "146 311 OFFCURVE", "146 311 CURVE SMOOTH", "144 312 OFFCURVE", "142 310 OFFCURVE", "139 305 CURVE SMOOTH", "110 250 OFFCURVE", "91 199 OFFCURVE", "81 151 CURVE SMOOTH", "71 103 OFFCURVE", "71 66 OFFCURVE", "78 39 CURVE SMOOTH", "105 -57 OFFCURVE", "173 -106 OFFCURVE", "281 -109 CURVE SMOOTH", "368 -111 OFFCURVE", "451 -83 OFFCURVE", "529 -22 CURVE SMOOTH", "565 6 OFFCURVE", "590 40 OFFCURVE", "604 81 CURVE SMOOTH", "618 122 OFFCURVE", "626 169 OFFCURVE", "630 221 CURVE SMOOTH", "630 226 OFFCURVE", "633 228 OFFCURVE", "638 228 CURVE SMOOTH", "689 224 OFFCURVE", "730 246 OFFCURVE", "760 294 CURVE SMOOTH", "763 299 OFFCURVE", "767 300 OFFCURVE", "771 296 CURVE", "806 270 OFFCURVE", "836 262 OFFCURVE", "863 269 CURVE SMOOTH", "876 273 OFFCURVE", "886 280 OFFCURVE", "893 291 CURVE SMOOTH", "917 328 OFFCURVE", "929 379 OFFCURVE", "929 442 CURVE SMOOTH", "929 473 OFFCURVE", "923 495 OFFCURVE", "910 509 CURVE SMOOTH", "904 516 OFFCURVE", "900 518 OFFCURVE", "898 517 CURVE SMOOTH", "896 516 OFFCURVE", "895 513 OFFCURVE", "894 508 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "736 233 OFFCURVE", "696 211 OFFCURVE", "645 212 CURVE", "638 124 OFFCURVE", "618 59 OFFCURVE", "587 16 CURVE SMOOTH", "574 -2 OFFCURVE", "557 -19 OFFCURVE", "538 -34 CURVE SMOOTH", "457 -96 OFFCURVE", "371 -126 OFFCURVE", "281 -124 CURVE SMOOTH", "165 -121 OFFCURVE", "93 -68 OFFCURVE", "64 35 CURVE SMOOTH", "56 64 OFFCURVE", "57 103 OFFCURVE", "67 153 CURVE SMOOTH", "77 203 OFFCURVE", "97 256 OFFCURVE", "127 312 CURVE SMOOTH", "134 325 OFFCURVE", "143 329 OFFCURVE", "154 323 CURVE", "164 317 OFFCURVE", "167 307 OFFCURVE", "161 294 CURVE SMOOTH", "129 217 OFFCURVE", "116 168 OFFCURVE", "123 145 CURVE", "144 67 OFFCURVE", "201 26 OFFCURVE", "292 26 CURVE SMOOTH", "427 25 OFFCURVE", "522 66 OFFCURVE", "576 146 CURVE", "577 187 OFFCURVE", "561 239 OFFCURVE", "528 302 CURVE SMOOTH", "521 316 OFFCURVE", "520 328 OFFCURVE", "526 338 CURVE SMOOTH", "568 417 LINE SMOOTH", "570 421 OFFCURVE", "572 422 OFFCURVE", "574 424 CURVE SMOOTH", "588 435 OFFCURVE", "607 418 OFFCURVE", "630 375 CURVE SMOOTH", "633 368 OFFCURVE", "636 363 OFFCURVE", "639 356 CURVE", "705 348 OFFCURVE", "747 383 OFFCURVE", "766 463 CURVE SMOOTH", "771 482 OFFCURVE", "779 490 OFFCURVE", "792 489 CURVE", "812 487 OFFCURVE", "819 466 OFFCURVE", "812 424 CURVE", "829 414 OFFCURVE", "847 409 OFFCURVE", "867 408 CURVE", "865 411 OFFCURVE", "864 414 OFFCURVE", "861 419 CURVE SMOOTH", "858 424 OFFCURVE", "859 432 OFFCURVE", "862 444 CURVE SMOOTH", "880 512 LINE SMOOTH", "882 519 OFFCURVE", "885 524 OFFCURVE", "888 527 CURVE SMOOTH", "897 535 OFFCURVE", "907 534 OFFCURVE", "917 523 CURVE SMOOTH", "935 504 OFFCURVE", "943 477 OFFCURVE", "943 442 CURVE SMOOTH", "943 376 OFFCURVE", "930 323 OFFCURVE", "905 283 CURVE SMOOTH", "896 269 OFFCURVE", "884 259 OFFCURVE", "867 255 CURVE SMOOTH", "837 247 OFFCURVE", "804 255 OFFCURVE", "768 280 CURVE" ); } ); width = 1001; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEAE; }, { glyphname = u1EEAF; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "139 -36 OFFCURVE", "92 35 OFFCURVE", "102 142 CURVE SMOOTH", "112 249 OFFCURVE", "165 337 OFFCURVE", "260 405 CURVE SMOOTH", "329 454 OFFCURVE", "388 490 OFFCURVE", "437 513 CURVE SMOOTH", "444 516 OFFCURVE", "448 521 OFFCURVE", "451 529 CURVE SMOOTH", "483 605 LINE", "485 611 OFFCURVE", "485 614 OFFCURVE", "484 615 CURVE SMOOTH", "480 620 OFFCURVE", "459 611 OFFCURVE", "422 587 CURVE SMOOTH", "385 563 OFFCURVE", "357 545 OFFCURVE", "338 532 CURVE SMOOTH", "319 519 OFFCURVE", "305 514 OFFCURVE", "295 513 CURVE SMOOTH", "234 509 OFFCURVE", "179 527 OFFCURVE", "130 567 CURVE SMOOTH", "126 570 OFFCURVE", "126 574 OFFCURVE", "129 578 CURVE SMOOTH", "191 650 OFFCURVE", "260 678 OFFCURVE", "335 662 CURVE SMOOTH", "345 660 OFFCURVE", "352 659 OFFCURVE", "355 660 CURVE", "356 663 OFFCURVE", "355 667 OFFCURVE", "351 673 CURVE SMOOTH", "340 689 OFFCURVE", "325 704 OFFCURVE", "304 716 CURVE SMOOTH", "268 738 OFFCURVE", "238 741 OFFCURVE", "214 725 CURVE SMOOTH", "143 676 OFFCURVE", "101 606 OFFCURVE", "91 516 CURVE SMOOTH", "88 489 OFFCURVE", "121 460 OFFCURVE", "189 430 CURVE SMOOTH", "195 427 OFFCURVE", "196 423 OFFCURVE", "192 418 CURVE SMOOTH", "131 340 OFFCURVE", "93 252 OFFCURVE", "79 154 CURVE SMOOTH", "52 -39 OFFCURVE", "118 -155 OFFCURVE", "277 -195 CURVE SMOOTH", "332 -209 OFFCURVE", "402 -213 OFFCURVE", "488 -207 CURVE SMOOTH", "528 -204 OFFCURVE", "560 -196 OFFCURVE", "582 -183 CURVE SMOOTH", "713 -106 LINE SMOOTH", "728 -98 OFFCURVE", "735 -89 OFFCURVE", "735 -82 CURVE", "732 -79 OFFCURVE", "720 -80 OFFCURVE", "698 -84 CURVE", "507 -116 OFFCURVE", "356 -113 OFFCURVE", "243 -73 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "358 -98 OFFCURVE", "507 -102 OFFCURVE", "695 -70 CURVE", "730 -63 OFFCURVE", "749 -67 OFFCURVE", "750 -80 CURVE SMOOTH", "751 -94 OFFCURVE", "741 -107 OFFCURVE", "720 -119 CURVE SMOOTH", "590 -195 LINE SMOOTH", "566 -209 OFFCURVE", "532 -218 OFFCURVE", "489 -221 CURVE SMOOTH", "402 -227 OFFCURVE", "330 -223 OFFCURVE", "273 -209 CURVE SMOOTH", "106 -167 OFFCURVE", "37 -47 OFFCURVE", "65 154 CURVE SMOOTH", "79 252 OFFCURVE", "114 341 OFFCURVE", "174 420 CURVE", "105 452 OFFCURVE", "73 485 OFFCURVE", "77 518 CURVE SMOOTH", "88 613 OFFCURVE", "131 687 OFFCURVE", "206 737 CURVE SMOOTH", "244 763 OFFCURVE", "289 753 OFFCURVE", "340 708 CURVE SMOOTH", "365 686 OFFCURVE", "374 669 OFFCURVE", "369 655 CURVE SMOOTH", "365 646 OFFCURVE", "353 643 OFFCURVE", "332 647 CURVE SMOOTH", "264 661 OFFCURVE", "202 637 OFFCURVE", "145 574 CURVE", "190 540 OFFCURVE", "240 524 OFFCURVE", "294 527 CURVE SMOOTH", "301 528 OFFCURVE", "313 534 OFFCURVE", "331 545 CURVE", "388 582 OFFCURVE", "425 606 OFFCURVE", "445 617 CURVE SMOOTH", "465 628 OFFCURVE", "479 632 OFFCURVE", "489 630 CURVE SMOOTH", "499 628 OFFCURVE", "501 618 OFFCURVE", "497 601 CURVE SMOOTH", "497 600 LINE SMOOTH", "465 523 LINE SMOOTH", "460 511 OFFCURVE", "453 503 OFFCURVE", "443 499 CURVE SMOOTH", "395 477 OFFCURVE", "337 442 OFFCURVE", "269 393 CURVE SMOOTH", "177 327 OFFCURVE", "127 244 OFFCURVE", "117 143 CURVE SMOOTH", "107 42 OFFCURVE", "151 -25 OFFCURVE", "248 -59 CURVE SMOOTH" ); } ); width = 808; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEAF; }, { glyphname = u1EEB0; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "573 646 LINE SMOOTH", "571 643 OFFCURVE", "571 641 OFFCURVE", "574 639 CURVE SMOOTH", "616 614 OFFCURVE", "638 600 OFFCURVE", "643 596 CURVE SMOOTH", "648 592 OFFCURVE", "650 591 OFFCURVE", "651 591 CURVE SMOOTH", "652 591 OFFCURVE", "653 592 OFFCURVE", "655 594 CURVE SMOOTH", "702 669 LINE SMOOTH", "704 672 OFFCURVE", "704 675 OFFCURVE", "701 678 CURVE", "680 696 OFFCURVE", "656 711 OFFCURVE", "630 720 CURVE SMOOTH", "626 721 OFFCURVE", "623 721 OFFCURVE", "621 718 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "615 735 OFFCURVE", "624 737 OFFCURVE", "635 733 CURVE SMOOTH", "668 721 OFFCURVE", "693 707 OFFCURVE", "711 689 CURVE SMOOTH", "719 681 OFFCURVE", "721 672 OFFCURVE", "715 662 CURVE", "667 586 LINE SMOOTH", "660 574 OFFCURVE", "650 573 OFFCURVE", "638 582 CURVE SMOOTH", "631 587 OFFCURVE", "607 602 OFFCURVE", "566 626 CURVE SMOOTH", "555 633 OFFCURVE", "554 642 OFFCURVE", "561 653 CURVE SMOOTH", "609 726 LINE SMOOTH" ); }, { closed = 1; nodes = ( "792 361 OFFCURVE", "783 357 OFFCURVE", "772 357 CURVE SMOOTH", "761 357 OFFCURVE", "751 360 OFFCURVE", "742 368 CURVE SMOOTH", "733 376 OFFCURVE", "731 385 OFFCURVE", "736 393 CURVE SMOOTH", "753 423 OFFCURVE", "775 425 OFFCURVE", "804 401 CURVE SMOOTH", "815 392 OFFCURVE", "813 380 OFFCURVE", "799 367 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "764 368 OFFCURVE", "778 367 OFFCURVE", "790 378 CURVE SMOOTH", "796 383 OFFCURVE", "797 387 OFFCURVE", "796 389 CURVE SMOOTH", "795 391 OFFCURVE", "790 394 OFFCURVE", "783 398 CURVE SMOOTH", "769 406 OFFCURVE", "757 403 OFFCURVE", "749 387 CURVE SMOOTH", "748 384 OFFCURVE", "748 382 OFFCURVE", "749 381 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "911 378 OFFCURVE", "888 452 OFFCURVE", "848 503 CURVE SMOOTH", "834 520 OFFCURVE", "822 529 OFFCURVE", "812 529 CURVE SMOOTH", "792 530 OFFCURVE", "774 516 OFFCURVE", "757 489 CURVE", "717 428 OFFCURVE", "697 376 OFFCURVE", "698 331 CURVE", "699 305 OFFCURVE", "706 285 OFFCURVE", "719 272 CURVE SMOOTH", "732 259 OFFCURVE", "754 255 OFFCURVE", "787 262 CURVE SMOOTH", "820 269 OFFCURVE", "841 285 OFFCURVE", "853 312 CURVE SMOOTH", "856 319 OFFCURVE", "861 320 OFFCURVE", "866 314 CURVE SMOOTH", "880 297 OFFCURVE", "887 285 OFFCURVE", "887 276 CURVE SMOOTH", "887 258 OFFCURVE", "867 240 OFFCURVE", "829 219 CURVE SMOOTH", "714 158 OFFCURVE", "587 119 OFFCURVE", "449 102 CURVE SMOOTH", "311 85 OFFCURVE", "207 101 OFFCURVE", "139 150 CURVE SMOOTH", "95 182 OFFCURVE", "91 230 OFFCURVE", "127 295 CURVE SMOOTH", "134 308 OFFCURVE", "136 316 OFFCURVE", "132 319 CURVE SMOOTH", "128 322 OFFCURVE", "122 317 OFFCURVE", "112 304 CURVE SMOOTH", "102 291 OFFCURVE", "93 269 OFFCURVE", "84 236 CURVE SMOOTH", "75 203 OFFCURVE", "72 176 OFFCURVE", "74 154 CURVE SMOOTH", "78 114 OFFCURVE", "89 81 OFFCURVE", "110 57 CURVE SMOOTH", "151 8 OFFCURVE", "230 -17 OFFCURVE", "348 -16 CURVE SMOOTH", "411 -16 OFFCURVE", "484 -6 OFFCURVE", "569 13 CURVE SMOOTH", "654 32 OFFCURVE", "726 59 OFFCURVE", "787 93 CURVE SMOOTH", "848 127 OFFCURVE", "887 166 OFFCURVE", "906 209 CURVE SMOOTH", "914 229 OFFCURVE", "918 253 OFFCURVE", "916 282 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "909 433 OFFCURVE", "926 366 OFFCURVE", "931 283 CURVE SMOOTH", "933 252 OFFCURVE", "929 227 OFFCURVE", "921 208 CURVE SMOOTH", "913 189 OFFCURVE", "903 172 OFFCURVE", "892 158 CURVE SMOOTH", "869 130 OFFCURVE", "831 101 OFFCURVE", "779 72 CURVE SMOOTH", "727 43 OFFCURVE", "658 18 OFFCURVE", "572 -1 CURVE SMOOTH", "486 -20 OFFCURVE", "404 -31 OFFCURVE", "326 -31 CURVE SMOOTH", "248 -31 OFFCURVE", "186 -17 OFFCURVE", "139 13 CURVE SMOOTH", "92 43 OFFCURVE", "65 87 OFFCURVE", "59 147 CURVE SMOOTH", "56 174 OFFCURVE", "60 206 OFFCURVE", "69 240 CURVE SMOOTH", "78 274 OFFCURVE", "90 300 OFFCURVE", "103 317 CURVE SMOOTH", "116 334 OFFCURVE", "129 338 OFFCURVE", "140 331 CURVE SMOOTH", "151 324 OFFCURVE", "151 310 OFFCURVE", "140 289 CURVE SMOOTH", "108 231 OFFCURVE", "111 189 OFFCURVE", "148 162 CURVE SMOOTH", "213 115 OFFCURVE", "313 99 OFFCURVE", "449 116 CURVE SMOOTH", "585 133 OFFCURVE", "709 171 OFFCURVE", "822 231 CURVE SMOOTH", "853 248 OFFCURVE", "870 263 OFFCURVE", "872 276 CURVE", "872 280 OFFCURVE", "869 287 OFFCURVE", "862 296 CURVE", "843 264 OFFCURVE", "814 247 OFFCURVE", "775 245 CURVE SMOOTH", "717 242 OFFCURVE", "686 270 OFFCURVE", "683 330 CURVE", "682 378 OFFCURVE", "702 433 OFFCURVE", "744 497 CURVE", "765 529 OFFCURVE", "787 545 OFFCURVE", "810 544 CURVE SMOOTH", "833 543 OFFCURVE", "856 523 OFFCURVE", "878 484 CURVE" ); } ); width = 989; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB0; }, { glyphname = u1EEB1; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1009 526 OFFCURVE", "963 504 OFFCURVE", "903 459 CURVE SMOOTH", "843 414 OFFCURVE", "792 366 OFFCURVE", "748 315 CURVE SMOOTH", "746 313 OFFCURVE", "738 313 OFFCURVE", "723 313 CURVE SMOOTH", "679 315 OFFCURVE", "647 322 OFFCURVE", "626 334 CURVE SMOOTH", "625 335 OFFCURVE", "624 335 OFFCURVE", "623 336 CURVE SMOOTH", "588 396 LINE SMOOTH", "582 406 OFFCURVE", "578 411 OFFCURVE", "575 411 CURVE SMOOTH", "573 411 LINE", "571 410 OFFCURVE", "570 407 OFFCURVE", "568 402 CURVE SMOOTH", "530 307 LINE SMOOTH", "527 300 OFFCURVE", "530 292 OFFCURVE", "537 283 CURVE SMOOTH", "568 243 OFFCURVE", "587 195 OFFCURVE", "593 137 CURVE SMOOTH", "593 136 OFFCURVE", "592 134 OFFCURVE", "592 133 CURVE SMOOTH", "585 115 OFFCURVE", "565 95 OFFCURVE", "530 72 CURVE SMOOTH", "468 30 OFFCURVE", "396 9 OFFCURVE", "314 9 CURVE SMOOTH", "202 9 OFFCURVE", "139 52 OFFCURVE", "128 138 CURVE SMOOTH", "121 194 OFFCURVE", "135 255 OFFCURVE", "170 322 CURVE SMOOTH", "175 330 OFFCURVE", "175 336 OFFCURVE", "172 338 CURVE SMOOTH", "169 340 OFFCURVE", "165 338 OFFCURVE", "160 332 CURVE SMOOTH", "155 326 OFFCURVE", "146 311 OFFCURVE", "132 287 CURVE SMOOTH", "103 238 OFFCURVE", "84 182 OFFCURVE", "76 120 CURVE SMOOTH", "66 40 OFFCURVE", "87 -22 OFFCURVE", "139 -67 CURVE SMOOTH", "177 -100 OFFCURVE", "232 -114 OFFCURVE", "304 -109 CURVE SMOOTH", "408 -102 OFFCURVE", "495 -63 OFFCURVE", "564 7 CURVE SMOOTH", "593 36 OFFCURVE", "614 102 OFFCURVE", "628 203 CURVE SMOOTH", "629 208 OFFCURVE", "631 210 OFFCURVE", "636 209 CURVE SMOOTH", "695 197 OFFCURVE", "762 194 OFFCURVE", "835 200 CURVE SMOOTH", "959 210 OFFCURVE", "1047 242 OFFCURVE", "1098 298 CURVE SMOOTH", "1107 308 OFFCURVE", "1120 329 OFFCURVE", "1136 360 CURVE SMOOTH", "1152 391 OFFCURVE", "1157 416 OFFCURVE", "1151 434 CURVE SMOOTH", "1129 497 OFFCURVE", "1093 528 OFFCURVE", "1044 527 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1100 543 OFFCURVE", "1140 507 OFFCURVE", "1164 438 CURVE SMOOTH", "1172 417 OFFCURVE", "1167 390 OFFCURVE", "1150 356 CURVE SMOOTH", "1133 322 OFFCURVE", "1119 300 OFFCURVE", "1109 289 CURVE SMOOTH", "1055 230 OFFCURVE", "964 196 OFFCURVE", "836 186 CURVE SMOOTH", "765 180 OFFCURVE", "700 183 OFFCURVE", "641 193 CURVE", "627 93 OFFCURVE", "604 28 OFFCURVE", "574 -3 CURVE SMOOTH", "502 -76 OFFCURVE", "413 -117 OFFCURVE", "305 -124 CURVE SMOOTH", "229 -129 OFFCURVE", "172 -114 OFFCURVE", "130 -78 CURVE SMOOTH", "74 -29 OFFCURVE", "51 35 OFFCURVE", "61 116 CURVE SMOOTH", "71 197 OFFCURVE", "99 269 OFFCURVE", "143 333 CURVE SMOOTH", "156 352 OFFCURVE", "168 357 OFFCURVE", "179 350 CURVE SMOOTH", "190 343 OFFCURVE", "191 331 OFFCURVE", "182 315 CURVE SMOOTH", "148 251 OFFCURVE", "136 193 OFFCURVE", "143 140 CURVE SMOOTH", "153 62 OFFCURVE", "210 23 OFFCURVE", "314 23 CURVE SMOOTH", "393 23 OFFCURVE", "463 44 OFFCURVE", "523 84 CURVE SMOOTH", "554 105 OFFCURVE", "571 122 OFFCURVE", "578 137 CURVE", "572 191 OFFCURVE", "554 236 OFFCURVE", "525 274 CURVE SMOOTH", "515 288 OFFCURVE", "512 301 OFFCURVE", "517 313 CURVE SMOOTH", "554 408 LINE SMOOTH", "557 415 OFFCURVE", "561 420 OFFCURVE", "566 423 CURVE SMOOTH", "577 430 OFFCURVE", "589 423 OFFCURVE", "601 403 CURVE", "635 346 LINE", "654 336 OFFCURVE", "689 330 OFFCURVE", "739 328 CURVE", "783 379 OFFCURVE", "835 426 OFFCURVE", "896 472 CURVE SMOOTH", "957 518 OFFCURVE", "1006 541 OFFCURVE", "1044 542 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1096 381 OFFCURVE", "1102 372 OFFCURVE", "1094 366 CURVE", "1033 328 OFFCURVE", "935 310 OFFCURVE", "799 311 CURVE SMOOTH", "791 311 OFFCURVE", "790 315 OFFCURVE", "795 324 CURVE", "908 405 OFFCURVE", "1001 427 OFFCURVE", "1073 392 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1015 411 OFFCURVE", "929 395 OFFCURVE", "822 325 CURVE", "936 326 OFFCURVE", "1021 342 OFFCURVE", "1077 373 CURVE" ); } ); width = 1226; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB1; }, { glyphname = u1EEB2; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "479 683 LINE SMOOTH", "476 679 OFFCURVE", "473 678 OFFCURVE", "469 681 CURVE SMOOTH", "453 693 OFFCURVE", "435 702 OFFCURVE", "415 709 CURVE SMOOTH", "411 710 OFFCURVE", "409 710 OFFCURVE", "407 707 CURVE SMOOTH", "358 635 LINE SMOOTH", "356 632 OFFCURVE", "357 630 OFFCURVE", "360 628 CURVE SMOOTH", "402 603 OFFCURVE", "424 590 OFFCURVE", "429 586 CURVE SMOOTH", "434 582 OFFCURVE", "436 580 OFFCURVE", "437 580 CURVE SMOOTH", "438 580 OFFCURVE", "438 581 OFFCURVE", "440 583 CURVE SMOOTH", "474 637 LINE SMOOTH", "477 641 OFFCURVE", "480 641 OFFCURVE", "484 639 CURVE SMOOTH", "513 621 OFFCURVE", "530 611 OFFCURVE", "534 608 CURVE SMOOTH", "538 605 OFFCURVE", "540 603 OFFCURVE", "541 603 CURVE SMOOTH", "542 603 OFFCURVE", "542 604 OFFCURVE", "544 606 CURVE SMOOTH", "592 681 LINE SMOOTH", "594 684 OFFCURVE", "593 687 OFFCURVE", "590 690 CURVE", "569 708 OFFCURVE", "545 722 OFFCURVE", "519 731 CURVE SMOOTH", "515 732 OFFCURVE", "513 732 OFFCURVE", "511 729 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "505 747 OFFCURVE", "513 749 OFFCURVE", "524 745 CURVE SMOOTH", "557 733 OFFCURVE", "582 719 OFFCURVE", "600 701 CURVE SMOOTH", "608 693 OFFCURVE", "610 683 OFFCURVE", "604 673 CURVE SMOOTH", "557 598 LINE SMOOTH", "554 593 OFFCURVE", "549 590 OFFCURVE", "544 589 CURVE SMOOTH", "539 588 OFFCURVE", "533 590 OFFCURVE", "528 594 CURVE SMOOTH", "523 598 OFFCURVE", "507 608 OFFCURVE", "482 623 CURVE", "453 575 LINE SMOOTH", "450 570 OFFCURVE", "445 567 OFFCURVE", "439 566 CURVE SMOOTH", "433 565 OFFCURVE", "428 567 OFFCURVE", "422 572 CURVE SMOOTH", "416 577 OFFCURVE", "393 592 OFFCURVE", "352 616 CURVE SMOOTH", "341 623 OFFCURVE", "340 632 OFFCURVE", "347 643 CURVE SMOOTH", "395 715 LINE", "405 730 OFFCURVE", "431 724 OFFCURVE", "472 697 CURVE", "499 738 LINE SMOOTH" ); }, { closed = 1; nodes = ( "453 391 OFFCURVE", "465 398 OFFCURVE", "478 398 CURVE SMOOTH", "491 398 OFFCURVE", "505 390 OFFCURVE", "521 372 CURVE", "526 367 OFFCURVE", "524 361 OFFCURVE", "513 355 CURVE SMOOTH", "486 341 OFFCURVE", "463 345 OFFCURVE", "444 366 CURVE SMOOTH", "441 369 OFFCURVE", "441 372 OFFCURVE", "443 375 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "494 378 OFFCURVE", "486 384 OFFCURVE", "479 384 CURVE SMOOTH", "472 384 OFFCURVE", "465 380 OFFCURVE", "459 372 CURVE", "466 366 OFFCURVE", "473 362 OFFCURVE", "482 362 CURVE SMOOTH", "491 362 OFFCURVE", "498 363 OFFCURVE", "505 368 CURVE" ); }, { closed = 1; nodes = ( "477 512 OFFCURVE", "442 473 OFFCURVE", "411 392 CURVE SMOOTH", "380 311 OFFCURVE", "389 259 OFFCURVE", "439 237 CURVE SMOOTH", "482 218 OFFCURVE", "524 229 OFFCURVE", "567 269 CURVE SMOOTH", "570 272 OFFCURVE", "573 271 OFFCURVE", "576 269 CURVE SMOOTH", "593 258 OFFCURVE", "601 242 OFFCURVE", "600 221 CURVE SMOOTH", "599 200 OFFCURVE", "569 169 OFFCURVE", "508 127 CURVE SMOOTH", "447 85 OFFCURVE", "382 63 OFFCURVE", "313 60 CURVE SMOOTH", "244 57 OFFCURVE", "194 71 OFFCURVE", "162 100 CURVE SMOOTH", "130 129 OFFCURVE", "114 164 OFFCURVE", "114 206 CURVE SMOOTH", "114 248 OFFCURVE", "135 300 OFFCURVE", "178 364 CURVE SMOOTH", "183 371 OFFCURVE", "185 376 OFFCURVE", "184 377 CURVE SMOOTH", "178 386 OFFCURVE", "170 384 OFFCURVE", "163 371 CURVE SMOOTH", "84 239 OFFCURVE", "57 140 OFFCURVE", "82 73 CURVE SMOOTH", "116 -20 OFFCURVE", "191 -65 OFFCURVE", "308 -60 CURVE SMOOTH", "378 -57 OFFCURVE", "447 -32 OFFCURVE", "517 16 CURVE SMOOTH", "567 51 OFFCURVE", "601 106 OFFCURVE", "618 183 CURVE SMOOTH", "626 219 OFFCURVE", "627 258 OFFCURVE", "621 300 CURVE SMOOTH", "609 382 OFFCURVE", "588 442 OFFCURVE", "559 480 CURVE SMOOTH", "544 500 OFFCURVE", "529 511 OFFCURVE", "512 511 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "375 250 OFFCURVE", "363 307 OFFCURVE", "397 395 CURVE SMOOTH", "431 483 OFFCURVE", "469 527 OFFCURVE", "511 526 CURVE SMOOTH", "532 526 OFFCURVE", "553 513 OFFCURVE", "571 489 CURVE SMOOTH", "601 449 OFFCURVE", "622 391 OFFCURVE", "634 315 CURVE SMOOTH", "646 239 OFFCURVE", "637 170 OFFCURVE", "609 107 CURVE SMOOTH", "589 63 OFFCURVE", "561 28 OFFCURVE", "525 4 CURVE SMOOTH", "453 -45 OFFCURVE", "381 -71 OFFCURVE", "309 -74 CURVE SMOOTH", "185 -79 OFFCURVE", "104 -31 OFFCURVE", "68 68 CURVE SMOOTH", "42 140 OFFCURVE", "70 244 OFFCURVE", "151 379 CURVE SMOOTH", "161 395 OFFCURVE", "172 401 OFFCURVE", "186 394 CURVE", "193 390 OFFCURVE", "198 384 OFFCURVE", "198 377 CURVE SMOOTH", "198 370 OFFCURVE", "196 362 OFFCURVE", "190 355 CURVE", "149 294 OFFCURVE", "129 245 OFFCURVE", "129 207 CURVE SMOOTH", "129 169 OFFCURVE", "144 138 OFFCURVE", "173 111 CURVE SMOOTH", "202 84 OFFCURVE", "250 72 OFFCURVE", "320 75 CURVE SMOOTH", "390 78 OFFCURVE", "461 107 OFFCURVE", "533 163 CURVE SMOOTH", "568 190 OFFCURVE", "586 210 OFFCURVE", "586 223 CURVE SMOOTH", "586 236 OFFCURVE", "582 246 OFFCURVE", "573 254 CURVE", "527 213 OFFCURVE", "481 203 OFFCURVE", "434 224 CURVE SMOOTH" ); } ); width = 697; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB2; }, { glyphname = u1EEB3; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "370 317 LINE SMOOTH", "369 312 OFFCURVE", "369 307 OFFCURVE", "372 304 CURVE SMOOTH", "424 250 OFFCURVE", "453 208 OFFCURVE", "460 175 CURVE SMOOTH", "460 175 OFFCURVE", "460 174 OFFCURVE", "460 172 CURVE SMOOTH", "460 171 OFFCURVE", "459 169 OFFCURVE", "458 166 CURVE SMOOTH", "440 119 OFFCURVE", "391 71 OFFCURVE", "312 23 CURVE SMOOTH", "266 -5 OFFCURVE", "228 -22 OFFCURVE", "199 -29 CURVE SMOOTH", "170 -36 OFFCURVE", "133 -33 OFFCURVE", "88 -19 CURVE", "81 -17 OFFCURVE", "76 -18 OFFCURVE", "74 -22 CURVE", "71 -25 OFFCURVE", "75 -29 OFFCURVE", "83 -33 CURVE SMOOTH", "116 -49 OFFCURVE", "160 -70 OFFCURVE", "219 -95 CURVE SMOOTH", "233 -101 OFFCURVE", "250 -102 OFFCURVE", "271 -96 CURVE SMOOTH", "329 -81 OFFCURVE", "379 -47 OFFCURVE", "419 5 CURVE SMOOTH", "488 95 OFFCURVE", "508 195 OFFCURVE", "478 305 CURVE", "460 366 OFFCURVE", "438 408 OFFCURVE", "411 430 CURVE SMOOTH", "407 433 OFFCURVE", "404 435 OFFCURVE", "401 435 CURVE", "400 434 OFFCURVE", "400 433 OFFCURVE", "399 430 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "391 461 OFFCURVE", "408 458 OFFCURVE", "436 425 CURVE SMOOTH", "458 399 OFFCURVE", "476 360 OFFCURVE", "491 309 CURVE", "523 195 OFFCURVE", "502 90 OFFCURVE", "430 -4 CURVE SMOOTH", "388 -59 OFFCURVE", "337 -94 OFFCURVE", "275 -110 CURVE SMOOTH", "251 -116 OFFCURVE", "227 -114 OFFCURVE", "204 -104 CURVE SMOOTH", "149 -80 OFFCURVE", "106 -60 OFFCURVE", "76 -45 CURVE SMOOTH", "60 -38 OFFCURVE", "55 -28 OFFCURVE", "61 -16 CURVE SMOOTH", "67 -4 OFFCURVE", "77 0 OFFCURVE", "92 -5 CURVE SMOOTH", "134 -18 OFFCURVE", "169 -22 OFFCURVE", "196 -15 CURVE SMOOTH", "223 -8 OFFCURVE", "259 9 OFFCURVE", "304 36 CURVE SMOOTH", "380 82 OFFCURVE", "427 126 OFFCURVE", "444 170 CURVE", "445 173 LINE", "438 203 OFFCURVE", "410 243 OFFCURVE", "361 294 CURVE SMOOTH", "354 301 OFFCURVE", "352 311 OFFCURVE", "355 321 CURVE SMOOTH", "384 434 LINE SMOOTH" ); } ); width = 563; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB3; }, { glyphname = u1EEB4; layers = ( { components = ( { name = u1EEAE; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "653 795 LINE SMOOTH", "651 793 OFFCURVE", "652 791 OFFCURVE", "655 789 CURVE SMOOTH", "697 764 OFFCURVE", "719 750 OFFCURVE", "724 746 CURVE SMOOTH", "729 742 OFFCURVE", "731 741 OFFCURVE", "732 741 CURVE SMOOTH", "733 741 OFFCURVE", "733 742 OFFCURVE", "735 744 CURVE SMOOTH", "783 819 LINE SMOOTH", "785 822 OFFCURVE", "784 825 OFFCURVE", "781 828 CURVE", "760 846 OFFCURVE", "736 861 OFFCURVE", "710 870 CURVE SMOOTH", "706 871 OFFCURVE", "704 871 OFFCURVE", "702 868 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "696 884 OFFCURVE", "704 887 OFFCURVE", "715 883 CURVE SMOOTH", "748 871 OFFCURVE", "774 857 OFFCURVE", "792 839 CURVE SMOOTH", "800 831 OFFCURVE", "801 822 OFFCURVE", "795 812 CURVE", "748 736 LINE SMOOTH", "741 724 OFFCURVE", "731 723 OFFCURVE", "719 732 CURVE SMOOTH", "712 737 OFFCURVE", "688 752 OFFCURVE", "647 776 CURVE SMOOTH", "636 783 OFFCURVE", "634 792 OFFCURVE", "642 803 CURVE", "690 875 LINE SMOOTH" ); }, { closed = 1; nodes = ( "749 689 LINE SMOOTH", "746 685 OFFCURVE", "743 685 OFFCURVE", "737 689 CURVE SMOOTH", "706 709 OFFCURVE", "688 715 OFFCURVE", "683 708 CURVE SMOOTH", "635 636 LINE SMOOTH", "633 633 OFFCURVE", "633 632 OFFCURVE", "636 630 CURVE SMOOTH", "678 605 OFFCURVE", "701 591 OFFCURVE", "705 587 CURVE SMOOTH", "709 584 OFFCURVE", "712 582 OFFCURVE", "713 582 CURVE SMOOTH", "714 582 OFFCURVE", "715 583 OFFCURVE", "717 585 CURVE SMOOTH", "748 634 LINE SMOOTH", "751 638 OFFCURVE", "754 639 OFFCURVE", "759 636 CURVE SMOOTH", "781 623 OFFCURVE", "795 614 OFFCURVE", "800 610 CURVE SMOOTH", "805 606 OFFCURVE", "807 604 OFFCURVE", "808 604 CURVE SMOOTH", "809 604 OFFCURVE", "810 605 OFFCURVE", "811 607 CURVE SMOOTH", "858 683 LINE", "860 687 OFFCURVE", "857 693 OFFCURVE", "847 700 CURVE SMOOTH", "837 707 OFFCURVE", "830 713 OFFCURVE", "824 716 CURVE SMOOTH", "797 732 OFFCURVE", "781 737 OFFCURVE", "777 731 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "772 749 OFFCURVE", "780 751 OFFCURVE", "791 747 CURVE SMOOTH", "824 735 OFFCURVE", "849 721 OFFCURVE", "867 703 CURVE SMOOTH", "875 695 OFFCURVE", "877 685 OFFCURVE", "871 675 CURVE", "823 600 LINE", "815 588 OFFCURVE", "806 587 OFFCURVE", "795 595 CURVE SMOOTH", "789 600 OFFCURVE", "777 608 OFFCURVE", "756 620 CURVE", "729 577 LINE SMOOTH", "726 572 OFFCURVE", "722 569 OFFCURVE", "716 568 CURVE SMOOTH", "710 567 OFFCURVE", "705 569 OFFCURVE", "699 574 CURVE SMOOTH", "693 579 OFFCURVE", "669 593 OFFCURVE", "628 617 CURVE SMOOTH", "617 624 OFFCURVE", "616 633 OFFCURVE", "623 644 CURVE SMOOTH", "671 716 LINE", "681 730 OFFCURVE", "705 727 OFFCURVE", "741 704 CURVE", "766 740 LINE SMOOTH" ); } ); width = 1001; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB4; }, { glyphname = u1EEB5; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "467 459 LINE SMOOTH", "464 455 OFFCURVE", "461 455 OFFCURVE", "457 458 CURVE SMOOTH", "441 470 OFFCURVE", "427 477 OFFCURVE", "416 481 CURVE SMOOTH", "405 485 OFFCURVE", "398 486 OFFCURVE", "397 486 CURVE SMOOTH", "396 486 OFFCURVE", "395 484 OFFCURVE", "394 483 CURVE SMOOTH", "346 411 LINE SMOOTH", "344 408 OFFCURVE", "344 407 OFFCURVE", "347 405 CURVE SMOOTH", "389 380 OFFCURVE", "412 366 OFFCURVE", "417 362 CURVE SMOOTH", "422 358 OFFCURVE", "424 357 OFFCURVE", "425 357 CURVE SMOOTH", "426 357 OFFCURVE", "426 358 OFFCURVE", "428 360 CURVE SMOOTH", "461 413 LINE SMOOTH", "464 417 OFFCURVE", "467 418 OFFCURVE", "471 416 CURVE SMOOTH", "500 398 OFFCURVE", "517 387 OFFCURVE", "521 384 CURVE SMOOTH", "525 381 OFFCURVE", "527 379 OFFCURVE", "528 379 CURVE SMOOTH", "529 379 OFFCURVE", "530 380 OFFCURVE", "532 382 CURVE SMOOTH", "579 458 LINE SMOOTH", "581 461 OFFCURVE", "581 463 OFFCURVE", "578 466 CURVE", "557 484 OFFCURVE", "533 499 OFFCURVE", "507 508 CURVE SMOOTH", "503 509 OFFCURVE", "500 508 OFFCURVE", "498 505 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "493 523 OFFCURVE", "501 525 OFFCURVE", "512 521 CURVE SMOOTH", "545 509 OFFCURVE", "570 495 OFFCURVE", "588 477 CURVE SMOOTH", "596 469 OFFCURVE", "598 460 OFFCURVE", "592 450 CURVE", "544 374 LINE SMOOTH", "541 369 OFFCURVE", "536 366 OFFCURVE", "531 365 CURVE SMOOTH", "526 364 OFFCURVE", "520 366 OFFCURVE", "515 370 CURVE SMOOTH", "510 374 OFFCURVE", "495 384 OFFCURVE", "470 399 CURVE", "440 352 LINE SMOOTH", "437 347 OFFCURVE", "433 344 OFFCURVE", "427 343 CURVE SMOOTH", "421 342 OFFCURVE", "416 344 OFFCURVE", "410 349 CURVE SMOOTH", "404 354 OFFCURVE", "381 368 OFFCURVE", "340 392 CURVE SMOOTH", "329 399 OFFCURVE", "327 408 OFFCURVE", "334 419 CURVE SMOOTH", "383 491 LINE SMOOTH", "389 500 OFFCURVE", "397 503 OFFCURVE", "405 500 CURVE SMOOTH", "426 493 OFFCURVE", "443 485 OFFCURVE", "459 474 CURVE", "487 514 LINE SMOOTH" ); }, { closed = 1; nodes = ( "157 9 OFFCURVE", "263 -21 OFFCURVE", "418 -13 CURVE SMOOTH", "573 -5 OFFCURVE", "706 34 OFFCURVE", "814 102 CURVE SMOOTH", "834 115 OFFCURVE", "847 139 OFFCURVE", "853 174 CURVE SMOOTH", "865 249 OFFCURVE", "855 312 OFFCURVE", "822 363 CURVE SMOOTH", "816 372 OFFCURVE", "812 377 OFFCURVE", "809 378 CURVE", "808 377 OFFCURVE", "806 375 OFFCURVE", "805 371 CURVE SMOOTH", "775 282 LINE SMOOTH", "773 275 OFFCURVE", "775 269 OFFCURVE", "781 264 CURVE SMOOTH", "804 244 OFFCURVE", "818 221 OFFCURVE", "824 195 CURVE SMOOTH", "825 191 OFFCURVE", "824 189 OFFCURVE", "821 187 CURVE SMOOTH", "716 128 OFFCURVE", "583 99 OFFCURVE", "423 99 CURVE", "231 99 OFFCURVE", "128 139 OFFCURVE", "115 220 CURVE SMOOTH", "111 244 OFFCURVE", "122 270 OFFCURVE", "147 297 CURVE SMOOTH", "153 303 OFFCURVE", "154 308 OFFCURVE", "151 312 CURVE SMOOTH", "148 316 OFFCURVE", "144 314 OFFCURVE", "138 307 CURVE SMOOTH", "112 278 OFFCURVE", "95 252 OFFCURVE", "86 227 CURVE SMOOTH", "65 166 OFFCURVE", "70 116 OFFCURVE", "101 78 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "55 112 OFFCURVE", "49 167 OFFCURVE", "72 232 CURVE SMOOTH", "81 258 OFFCURVE", "100 286 OFFCURVE", "126 316 CURVE SMOOTH", "138 329 OFFCURVE", "150 331 OFFCURVE", "161 322 CURVE", "171 312 OFFCURVE", "170 301 OFFCURVE", "158 288 CURVE SMOOTH", "136 264 OFFCURVE", "127 242 OFFCURVE", "130 222 CURVE SMOOTH", "142 149 OFFCURVE", "240 113 OFFCURVE", "423 113 CURVE SMOOTH", "578 113 OFFCURVE", "706 141 OFFCURVE", "809 197 CURVE", "803 218 OFFCURVE", "789 237 OFFCURVE", "768 256 CURVE SMOOTH", "760 264 OFFCURVE", "757 274 OFFCURVE", "761 287 CURVE SMOOTH", "791 375 LINE SMOOTH", "794 382 OFFCURVE", "797 387 OFFCURVE", "801 390 CURVE SMOOTH", "811 397 OFFCURVE", "824 388 OFFCURVE", "839 365 CURVE SMOOTH", "872 315 OFFCURVE", "881 250 OFFCURVE", "868 172 CURVE SMOOTH", "861 132 OFFCURVE", "846 104 OFFCURVE", "822 89 CURVE SMOOTH", "712 19 OFFCURVE", "576 -20 OFFCURVE", "417 -28 CURVE SMOOTH", "258 -36 OFFCURVE", "149 -4 OFFCURVE", "90 69 CURVE SMOOTH" ); } ); width = 931; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB5; }, { glyphname = u1EEB6; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "370 569 LINE SMOOTH", "368 567 OFFCURVE", "369 565 OFFCURVE", "372 563 CURVE SMOOTH", "414 538 OFFCURVE", "437 524 OFFCURVE", "442 520 CURVE SMOOTH", "447 516 OFFCURVE", "450 516 OFFCURVE", "452 519 CURVE", "500 594 LINE", "503 601 OFFCURVE", "491 611 OFFCURVE", "465 626 CURVE SMOOTH", "438 642 OFFCURVE", "423 648 OFFCURVE", "419 642 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "413 659 OFFCURVE", "421 662 OFFCURVE", "432 658 CURVE SMOOTH", "465 646 OFFCURVE", "491 631 OFFCURVE", "509 613 CURVE SMOOTH", "517 605 OFFCURVE", "518 596 OFFCURVE", "512 586 CURVE", "465 510 LINE SMOOTH", "462 505 OFFCURVE", "457 502 OFFCURVE", "451 501 CURVE SMOOTH", "445 500 OFFCURVE", "440 502 OFFCURVE", "434 507 CURVE SMOOTH", "428 512 OFFCURVE", "405 527 OFFCURVE", "364 551 CURVE SMOOTH", "353 558 OFFCURVE", "351 566 OFFCURVE", "359 577 CURVE SMOOTH", "407 650 LINE SMOOTH" ); }, { closed = 1; nodes = ( "466 464 LINE SMOOTH", "463 460 OFFCURVE", "460 459 OFFCURVE", "454 463 CURVE SMOOTH", "423 483 OFFCURVE", "405 490 OFFCURVE", "400 483 CURVE SMOOTH", "352 411 LINE SMOOTH", "350 408 OFFCURVE", "350 406 OFFCURVE", "353 404 CURVE SMOOTH", "395 379 OFFCURVE", "418 366 OFFCURVE", "423 362 CURVE SMOOTH", "428 358 OFFCURVE", "429 356 OFFCURVE", "430 356 CURVE SMOOTH", "431 356 OFFCURVE", "432 357 OFFCURVE", "434 359 CURVE SMOOTH", "465 409 LINE SMOOTH", "468 413 OFFCURVE", "471 413 OFFCURVE", "475 411 CURVE SMOOTH", "500 396 OFFCURVE", "514 387 OFFCURVE", "518 384 CURVE SMOOTH", "522 381 OFFCURVE", "525 379 OFFCURVE", "525 379 CURVE SMOOTH", "525 379 OFFCURVE", "527 380 OFFCURVE", "528 382 CURVE SMOOTH", "575 458 LINE SMOOTH", "577 461 OFFCURVE", "577 463 OFFCURVE", "574 466 CURVE", "553 484 OFFCURVE", "529 499 OFFCURVE", "503 508 CURVE SMOOTH", "499 509 OFFCURVE", "496 508 OFFCURVE", "494 505 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "489 523 OFFCURVE", "497 525 OFFCURVE", "508 521 CURVE SMOOTH", "541 509 OFFCURVE", "566 495 OFFCURVE", "584 477 CURVE SMOOTH", "592 469 OFFCURVE", "594 460 OFFCURVE", "588 450 CURVE", "540 374 LINE", "532 363 OFFCURVE", "523 361 OFFCURVE", "512 369 CURVE SMOOTH", "506 374 OFFCURVE", "494 383 OFFCURVE", "473 395 CURVE", "446 351 LINE SMOOTH", "443 346 OFFCURVE", "439 343 OFFCURVE", "433 342 CURVE SMOOTH", "427 341 OFFCURVE", "422 343 OFFCURVE", "416 348 CURVE SMOOTH", "410 353 OFFCURVE", "386 368 OFFCURVE", "345 392 CURVE SMOOTH", "334 399 OFFCURVE", "333 407 OFFCURVE", "340 418 CURVE SMOOTH", "388 491 LINE", "398 505 OFFCURVE", "422 501 OFFCURVE", "458 478 CURVE", "483 514 LINE SMOOTH" ); }, { closed = 1; nodes = ( "157 9 OFFCURVE", "263 -21 OFFCURVE", "418 -13 CURVE SMOOTH", "573 -5 OFFCURVE", "706 34 OFFCURVE", "814 102 CURVE SMOOTH", "834 115 OFFCURVE", "847 139 OFFCURVE", "853 174 CURVE SMOOTH", "865 249 OFFCURVE", "855 312 OFFCURVE", "822 363 CURVE SMOOTH", "816 372 OFFCURVE", "812 377 OFFCURVE", "809 378 CURVE", "808 377 OFFCURVE", "806 375 OFFCURVE", "805 371 CURVE SMOOTH", "775 282 LINE SMOOTH", "773 275 OFFCURVE", "775 269 OFFCURVE", "781 264 CURVE SMOOTH", "804 244 OFFCURVE", "818 221 OFFCURVE", "824 195 CURVE SMOOTH", "825 191 OFFCURVE", "824 189 OFFCURVE", "821 187 CURVE SMOOTH", "716 128 OFFCURVE", "583 99 OFFCURVE", "423 99 CURVE", "231 99 OFFCURVE", "128 139 OFFCURVE", "115 220 CURVE SMOOTH", "111 244 OFFCURVE", "122 270 OFFCURVE", "147 297 CURVE SMOOTH", "153 303 OFFCURVE", "154 308 OFFCURVE", "151 312 CURVE SMOOTH", "148 316 OFFCURVE", "144 314 OFFCURVE", "138 307 CURVE SMOOTH", "112 278 OFFCURVE", "95 252 OFFCURVE", "86 227 CURVE SMOOTH", "65 166 OFFCURVE", "70 116 OFFCURVE", "101 78 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "55 112 OFFCURVE", "49 167 OFFCURVE", "72 232 CURVE SMOOTH", "81 258 OFFCURVE", "100 286 OFFCURVE", "126 316 CURVE SMOOTH", "138 329 OFFCURVE", "150 331 OFFCURVE", "161 322 CURVE", "171 312 OFFCURVE", "170 301 OFFCURVE", "158 288 CURVE SMOOTH", "136 264 OFFCURVE", "127 242 OFFCURVE", "130 222 CURVE SMOOTH", "142 149 OFFCURVE", "240 113 OFFCURVE", "423 113 CURVE SMOOTH", "578 113 OFFCURVE", "706 141 OFFCURVE", "809 197 CURVE", "803 218 OFFCURVE", "789 237 OFFCURVE", "768 256 CURVE SMOOTH", "760 264 OFFCURVE", "757 274 OFFCURVE", "761 287 CURVE SMOOTH", "791 375 LINE SMOOTH", "794 382 OFFCURVE", "797 387 OFFCURVE", "801 390 CURVE SMOOTH", "811 397 OFFCURVE", "824 388 OFFCURVE", "839 365 CURVE SMOOTH", "872 315 OFFCURVE", "881 250 OFFCURVE", "868 172 CURVE SMOOTH", "861 132 OFFCURVE", "846 104 OFFCURVE", "822 89 CURVE SMOOTH", "712 19 OFFCURVE", "576 -20 OFFCURVE", "417 -28 CURVE SMOOTH", "258 -36 OFFCURVE", "149 -4 OFFCURVE", "90 69 CURVE SMOOTH" ); } ); width = 931; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB6; }, { glyphname = u1EEB7; layers = ( { components = ( { name = u1EEA7; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "277 740 LINE SMOOTH", "275 737 OFFCURVE", "275 736 OFFCURVE", "278 734 CURVE SMOOTH", "320 709 OFFCURVE", "343 694 OFFCURVE", "348 690 CURVE SMOOTH", "353 686 OFFCURVE", "357 686 OFFCURVE", "359 689 CURVE", "406 764 LINE SMOOTH", "408 767 OFFCURVE", "408 770 OFFCURVE", "405 773 CURVE", "384 791 OFFCURVE", "360 805 OFFCURVE", "334 814 CURVE SMOOTH", "330 815 OFFCURVE", "327 815 OFFCURVE", "325 812 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "319 829 OFFCURVE", "328 832 OFFCURVE", "339 828 CURVE SMOOTH", "372 816 OFFCURVE", "397 802 OFFCURVE", "415 784 CURVE SMOOTH", "423 776 OFFCURVE", "425 766 OFFCURVE", "419 756 CURVE", "371 681 LINE SMOOTH", "368 676 OFFCURVE", "364 673 OFFCURVE", "358 672 CURVE SMOOTH", "352 671 OFFCURVE", "347 673 OFFCURVE", "341 678 CURVE SMOOTH", "335 683 OFFCURVE", "312 697 OFFCURVE", "271 721 CURVE SMOOTH", "260 728 OFFCURVE", "258 737 OFFCURVE", "265 748 CURVE SMOOTH", "313 820 LINE SMOOTH" ); } ); width = 822; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB7; }, { glyphname = u1EEB8; layers = ( { components = ( { name = u1EEA3; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "140 572 LINE SMOOTH", "138 569 OFFCURVE", "139 568 OFFCURVE", "142 566 CURVE SMOOTH", "184 541 OFFCURVE", "206 527 OFFCURVE", "211 523 CURVE SMOOTH", "216 519 OFFCURVE", "218 518 OFFCURVE", "219 518 CURVE SMOOTH", "220 518 OFFCURVE", "220 519 OFFCURVE", "222 521 CURVE SMOOTH", "270 596 LINE", "273 603 OFFCURVE", "262 613 OFFCURVE", "237 627 CURVE SMOOTH", "212 642 OFFCURVE", "198 649 OFFCURVE", "195 648 CURVE SMOOTH", "191 647 OFFCURVE", "189 646 OFFCURVE", "188 645 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "183 661 OFFCURVE", "191 664 OFFCURVE", "202 660 CURVE SMOOTH", "233 649 OFFCURVE", "258 635 OFFCURVE", "278 616 CURVE", "286 608 OFFCURVE", "288 598 OFFCURVE", "282 588 CURVE", "234 513 LINE SMOOTH", "231 508 OFFCURVE", "227 505 OFFCURVE", "221 504 CURVE SMOOTH", "215 503 OFFCURVE", "210 505 OFFCURVE", "204 510 CURVE SMOOTH", "198 515 OFFCURVE", "175 529 OFFCURVE", "134 553 CURVE SMOOTH", "123 560 OFFCURVE", "121 569 OFFCURVE", "128 580 CURVE SMOOTH", "177 652 LINE SMOOTH" ); } ); width = 438; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB8; }, { glyphname = u1EEB9; layers = ( { components = ( { name = u1EEB1; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "756 655 LINE SMOOTH", "754 652 OFFCURVE", "754 650 OFFCURVE", "757 648 CURVE SMOOTH", "799 623 OFFCURVE", "822 609 OFFCURVE", "827 605 CURVE SMOOTH", "832 601 OFFCURVE", "833 601 OFFCURVE", "834 601 CURVE SMOOTH", "835 601 OFFCURVE", "836 602 OFFCURVE", "838 604 CURVE SMOOTH", "885 679 LINE SMOOTH", "887 682 OFFCURVE", "887 685 OFFCURVE", "884 688 CURVE", "863 706 OFFCURVE", "839 720 OFFCURVE", "813 729 CURVE SMOOTH", "809 730 OFFCURVE", "806 730 OFFCURVE", "804 727 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "798 744 OFFCURVE", "807 747 OFFCURVE", "818 743 CURVE SMOOTH", "849 732 OFFCURVE", "874 717 OFFCURVE", "894 698 CURVE", "902 690 OFFCURVE", "904 681 OFFCURVE", "898 671 CURVE", "850 595 LINE", "842 584 OFFCURVE", "832 583 OFFCURVE", "820 592 CURVE SMOOTH", "814 597 OFFCURVE", "791 612 OFFCURVE", "750 636 CURVE SMOOTH", "739 643 OFFCURVE", "737 652 OFFCURVE", "744 663 CURVE SMOOTH", "792 735 LINE SMOOTH" ); } ); width = 1226; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEB9; }, { glyphname = u1EEBA; layers = ( { components = ( { name = u1EEA8; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "501 475 LINE SMOOTH", "499 472 OFFCURVE", "500 470 OFFCURVE", "503 468 CURVE SMOOTH", "545 443 OFFCURVE", "567 429 OFFCURVE", "572 425 CURVE SMOOTH", "577 421 OFFCURVE", "579 420 OFFCURVE", "580 420 CURVE SMOOTH", "581 420 OFFCURVE", "581 421 OFFCURVE", "583 423 CURVE SMOOTH", "631 499 LINE SMOOTH", "633 502 OFFCURVE", "632 504 OFFCURVE", "629 507 CURVE", "608 525 OFFCURVE", "585 540 OFFCURVE", "559 549 CURVE SMOOTH", "555 550 OFFCURVE", "552 550 OFFCURVE", "550 547 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "544 564 OFFCURVE", "552 566 OFFCURVE", "563 562 CURVE SMOOTH", "594 551 OFFCURVE", "620 537 OFFCURVE", "640 518 CURVE", "648 510 OFFCURVE", "650 501 OFFCURVE", "644 491 CURVE SMOOTH", "596 415 LINE", "588 404 OFFCURVE", "577 403 OFFCURVE", "565 412 CURVE SMOOTH", "559 417 OFFCURVE", "536 432 OFFCURVE", "495 456 CURVE SMOOTH", "484 463 OFFCURVE", "483 471 OFFCURVE", "490 482 CURVE SMOOTH", "538 555 LINE SMOOTH" ); } ); width = 824; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEBA; }, { glyphname = u1EEBB; layers = ( { components = ( { name = u1EEAF; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "116 855 LINE SMOOTH", "114 852 OFFCURVE", "114 851 OFFCURVE", "117 849 CURVE SMOOTH", "159 824 OFFCURVE", "182 810 OFFCURVE", "187 806 CURVE SMOOTH", "192 802 OFFCURVE", "193 801 OFFCURVE", "194 801 CURVE SMOOTH", "195 801 OFFCURVE", "196 802 OFFCURVE", "198 804 CURVE SMOOTH", "245 879 LINE SMOOTH", "247 882 OFFCURVE", "247 885 OFFCURVE", "244 888 CURVE", "223 906 OFFCURVE", "199 921 OFFCURVE", "173 930 CURVE SMOOTH", "169 931 OFFCURVE", "166 931 OFFCURVE", "164 928 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "158 945 OFFCURVE", "167 947 OFFCURVE", "178 943 CURVE SMOOTH", "211 931 OFFCURVE", "236 917 OFFCURVE", "254 899 CURVE SMOOTH", "262 891 OFFCURVE", "264 882 OFFCURVE", "258 872 CURVE SMOOTH", "210 796 LINE SMOOTH", "207 791 OFFCURVE", "203 788 OFFCURVE", "197 787 CURVE SMOOTH", "191 786 OFFCURVE", "186 788 OFFCURVE", "180 793 CURVE SMOOTH", "174 798 OFFCURVE", "150 812 OFFCURVE", "109 836 CURVE SMOOTH", "98 843 OFFCURVE", "97 852 OFFCURVE", "104 863 CURVE SMOOTH", "152 936 LINE SMOOTH" ); } ); width = 808; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEBB; }, { glyphname = u1EEF0; layers = ( { components = ( { name = aMem.init.AboveHaa; transform = "{1, 0, 0, 1, 836, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "380 -21 OFFCURVE", "238 -14 OFFCURVE", "86 0 CURVE", "80 0 OFFCURVE", "76 5 OFFCURVE", "73 15 CURVE", "60 59 LINE", "54 82 OFFCURVE", "63 92 OFFCURVE", "86 90 CURVE SMOOTH", "258 75 OFFCURVE", "399 67 OFFCURVE", "511 67 CURVE SMOOTH", "671 67 OFFCURVE", "815 83 OFFCURVE", "944 116 CURVE SMOOTH", "1008 132 OFFCURVE", "1042 141 OFFCURVE", "1045 142 CURVE SMOOTH", "1048 143 OFFCURVE", "1049 144 OFFCURVE", "1050 144 CURVE SMOOTH", "1055 146 OFFCURVE", "1056 148 OFFCURVE", "1051 150 CURVE SMOOTH", "1022 164 OFFCURVE", "985 174 OFFCURVE", "943 181 CURVE SMOOTH", "901 188 OFFCURVE", "862 190 OFFCURVE", "827 188 CURVE SMOOTH", "821 188 OFFCURVE", "819 190 OFFCURVE", "820 195 CURVE SMOOTH", "824 209 OFFCURVE", "832 222 OFFCURVE", "843 237 CURVE SMOOTH", "854 252 OFFCURVE", "865 261 OFFCURVE", "877 264 CURVE SMOOTH", "904 271 OFFCURVE", "939 266 OFFCURVE", "981 250 CURVE SMOOTH", "1044 225 OFFCURVE", "1117 208 OFFCURVE", "1199 197 CURVE SMOOTH", "1281 186 OFFCURVE", "1345 183 OFFCURVE", "1391 188 CURVE SMOOTH", "1398 189 OFFCURVE", "1402 187 OFFCURVE", "1404 182 CURVE SMOOTH", "1406 177 OFFCURVE", "1405 171 OFFCURVE", "1403 167 CURVE SMOOTH", "1373 114 LINE SMOOTH", "1370 108 OFFCURVE", "1364 105 OFFCURVE", "1356 106 CURVE SMOOTH", "1233 113 OFFCURVE", "1133 102 OFFCURVE", "1056 74 CURVE SMOOTH", "989 50 OFFCURVE", "954 38 OFFCURVE", "949 36 CURVE SMOOTH", "832 -2 OFFCURVE", "686 -21 OFFCURVE", "511 -21 CURVE SMOOTH" ); } ); width = 1462; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEF0; }, { glyphname = u1EEF1; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "771 -34 OFFCURVE", "647 -24 OFFCURVE", "518 1 CURVE SMOOTH", "437 16 OFFCURVE", "390 51 OFFCURVE", "377 109 CURVE SMOOTH", "372 131 OFFCURVE", "369 143 OFFCURVE", "369 143 CURVE SMOOTH", "367 148 OFFCURVE", "365 148 OFFCURVE", "363 142 CURVE SMOOTH", "342 86 OFFCURVE", "316 51 OFFCURVE", "283 38 CURVE SMOOTH", "242 21 OFFCURVE", "185 15 OFFCURVE", "114 20 CURVE SMOOTH", "59 24 OFFCURVE", "45 67 OFFCURVE", "72 151 CURVE SMOOTH", "75 160 OFFCURVE", "80 166 OFFCURVE", "87 167 CURVE SMOOTH", "94 168 OFFCURVE", "98 164 OFFCURVE", "101 154 CURVE SMOOTH", "107 135 OFFCURVE", "115 124 OFFCURVE", "128 121 CURVE SMOOTH", "192 107 OFFCURVE", "250 110 OFFCURVE", "302 131 CURVE SMOOTH", "329 142 OFFCURVE", "347 161 OFFCURVE", "354 187 CURVE SMOOTH", "355 192 OFFCURVE", "350 227 OFFCURVE", "340 294 CURVE SMOOTH", "330 361 OFFCURVE", "324 403 OFFCURVE", "322 418 CURVE SMOOTH", "320 433 OFFCURVE", "321 444 OFFCURVE", "325 452 CURVE SMOOTH", "336 475 OFFCURVE", "344 491 OFFCURVE", "348 502 CURVE SMOOTH", "350 507 OFFCURVE", "354 510 OFFCURVE", "359 509 CURVE SMOOTH", "364 508 OFFCURVE", "366 505 OFFCURVE", "367 499 CURVE SMOOTH", "373 451 OFFCURVE", "391 340 OFFCURVE", "421 165 CURVE SMOOTH", "426 134 OFFCURVE", "461 108 OFFCURVE", "525 90 CURVE SMOOTH", "601 68 OFFCURVE", "719 59 OFFCURVE", "879 60 CURVE SMOOTH", "1093 62 OFFCURVE", "1281 96 OFFCURVE", "1445 163 CURVE", "1356 214 OFFCURVE", "1276 227 OFFCURVE", "1202 204 CURVE SMOOTH", "1197 202 OFFCURVE", "1192 203 OFFCURVE", "1189 206 CURVE SMOOTH", "1186 209 OFFCURVE", "1185 213 OFFCURVE", "1186 218 CURVE SMOOTH", "1191 239 OFFCURVE", "1204 260 OFFCURVE", "1226 281 CURVE SMOOTH", "1248 302 OFFCURVE", "1271 313 OFFCURVE", "1296 313 CURVE SMOOTH", "1321 313 OFFCURVE", "1380 294 OFFCURVE", "1471 256 CURVE SMOOTH", "1504 242 OFFCURVE", "1547 231 OFFCURVE", "1598 221 CURVE SMOOTH", "1649 211 OFFCURVE", "1701 208 OFFCURVE", "1755 212 CURVE SMOOTH", "1770 213 OFFCURVE", "1775 207 OFFCURVE", "1769 194 CURVE SMOOTH", "1741 133 LINE SMOOTH", "1737 125 OFFCURVE", "1730 122 OFFCURVE", "1719 124 CURVE SMOOTH", "1630 139 OFFCURVE", "1558 135 OFFCURVE", "1505 113 CURVE SMOOTH", "1457 93 OFFCURVE", "1391 68 OFFCURVE", "1308 36 CURVE SMOOTH", "1219 2 OFFCURVE", "1080 -20 OFFCURVE", "893 -28 CURVE SMOOTH" ); } ); width = 1829; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); unicode = 1EEF1; }, { glyphname = aAlf.fina.alt; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 708}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "177 751 OFFCURVE", "181 746 OFFCURVE", "180 737 CURVE SMOOTH", "172 675 LINE SMOOTH", "171 665 OFFCURVE", "166 659 OFFCURVE", "157 658 CURVE SMOOTH", "135 656 OFFCURVE", "120 652 OFFCURVE", "112 648 CURVE SMOOTH", "104 644 OFFCURVE", "100 637 OFFCURVE", "99 628 CURVE SMOOTH", "98 619 OFFCURVE", "98 601 OFFCURVE", "98 576 CURVE SMOOTH", "99 424 OFFCURVE", "110 323 OFFCURVE", "132 271 CURVE SMOOTH", "178 164 OFFCURVE", "280 103 OFFCURVE", "438 90 CURVE SMOOTH", "544 81 OFFCURVE", "660 81 OFFCURVE", "788 90 CURVE SMOOTH", "811 92 OFFCURVE", "820 83 OFFCURVE", "817 62 CURVE SMOOTH", "810 23 OFFCURVE", "801 2 OFFCURVE", "788 0 CURVE SMOOTH", "767 -4 OFFCURVE", "693 -6 OFFCURVE", "569 -7 CURVE SMOOTH", "352 -9 OFFCURVE", "209 31 OFFCURVE", "141 111 CURVE SMOOTH", "106 153 OFFCURVE", "83 215 OFFCURVE", "75 297 CURVE SMOOTH", "70 346 OFFCURVE", "67 390 OFFCURVE", "66 430 CURVE SMOOTH", "64 552 OFFCURVE", "65 631 OFFCURVE", "70 666 CURVE SMOOTH", "73 687 OFFCURVE", "84 707 OFFCURVE", "103 729 CURVE SMOOTH", "115 743 OFFCURVE", "137 751 OFFCURVE", "168 751 CURVE SMOOTH" ); } ); width = 786; }, { anchors = ( { name = TashkilAbove; position = "{366, 708}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "189 769 OFFCURVE", "198 759 OFFCURVE", "195 737 CURVE SMOOTH", "187 670 LINE SMOOTH", "185 655 OFFCURVE", "175 648 OFFCURVE", "157 646 CURVE SMOOTH", "139 644 OFFCURVE", "127 641 OFFCURVE", "118 637 CURVE SMOOTH", "109 633 OFFCURVE", "105 614 OFFCURVE", "105 579 CURVE SMOOTH", "106 428 OFFCURVE", "117 327 OFFCURVE", "138 276 CURVE SMOOTH", "178 180 OFFCURVE", "275 123 OFFCURVE", "427 106 CURVE SMOOTH", "521 96 OFFCURVE", "641 96 OFFCURVE", "787 105 CURVE SMOOTH", "812 107 OFFCURVE", "827 98 OFFCURVE", "831 78 CURVE SMOOTH", "832 72 OFFCURVE", "833 67 OFFCURVE", "832 60 CURVE SMOOTH", "826 23 OFFCURVE", "816 0 OFFCURVE", "804 -8 CURVE SMOOTH", "800 -11 OFFCURVE", "795 -14 OFFCURVE", "790 -15 CURVE", "760 -20 OFFCURVE", "686 -21 OFFCURVE", "569 -21 CURVE SMOOTH", "347 -20 OFFCURVE", "204 20 OFFCURVE", "139 101 CURVE SMOOTH", "105 143 OFFCURVE", "83 207 OFFCURVE", "73 295 CURVE SMOOTH", "68 340 OFFCURVE", "65 375 OFFCURVE", "64 400 CURVE SMOOTH", "61 541 OFFCURVE", "62 631 OFFCURVE", "68 670 CURVE SMOOTH", "72 698 OFFCURVE", "82 721 OFFCURVE", "98 739 CURVE SMOOTH", "114 757 OFFCURVE", "137 766 OFFCURVE", "168 768 CURVE SMOOTH" ); } ); width = 786; } ); }, { glyphname = aAlf.fina; layers = ( { anchors = ( { name = DigitAbove; position = "{-12, 630}"; }, { name = HamzaAbove; position = "{62, 752}"; }, { name = HamzaBelow; position = "{122, -54}"; }, { name = TashkilAbove; position = "{244, 684}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "84 732 OFFCURVE", "89 727 OFFCURVE", "92 705 CURVE SMOOTH", "104 602 OFFCURVE", "112 514 OFFCURVE", "116 440 CURVE SMOOTH", "123 301 OFFCURVE", "127 217 OFFCURVE", "129 188 CURVE SMOOTH", "134 126 OFFCURVE", "167 94 OFFCURVE", "229 90 CURVE SMOOTH", "246 89 OFFCURVE", "254 77 OFFCURVE", "250 54 CURVE SMOOTH", "244 18 OFFCURVE", "236 0 OFFCURVE", "229 0 CURVE SMOOTH", "141 0 OFFCURVE", "95 41 OFFCURVE", "89 122 CURVE SMOOTH", "84 190 OFFCURVE", "80 259 OFFCURVE", "78 328 CURVE SMOOTH", "76 397 OFFCURVE", "72 453 OFFCURVE", "66 496 CURVE SMOOTH", "60 539 OFFCURVE", "52 588 OFFCURVE", "42 643 CURVE SMOOTH", "40 654 OFFCURVE", "41 661 OFFCURVE", "45 668 CURVE SMOOTH", "77 720 LINE SMOOTH" ); } ); width = 229; }, { anchors = ( { name = DigitAbove; position = "{-12, 630}"; }, { name = HamzaAbove; position = "{62, 752}"; }, { name = HamzaBelow; position = "{122, -54}"; }, { name = TashkilAbove; position = "{244, 684}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "92 747 OFFCURVE", "101 745 OFFCURVE", "104 718 CURVE SMOOTH", "118 594 OFFCURVE", "126 481 OFFCURVE", "128 378 CURVE SMOOTH", "130 275 OFFCURVE", "132 211 OFFCURVE", "134 189 CURVE SMOOTH", "137 137 OFFCURVE", "169 109 OFFCURVE", "229 105 CURVE SMOOTH", "249 104 OFFCURVE", "261 94 OFFCURVE", "264 75 CURVE SMOOTH", "265 68 OFFCURVE", "265 55 OFFCURVE", "262 38 CURVE SMOOTH", "259 21 OFFCURVE", "255 8 OFFCURVE", "251 -1 CURVE SMOOTH", "247 -10 OFFCURVE", "239 -15 OFFCURVE", "229 -15 CURVE SMOOTH", "135 -15 OFFCURVE", "85 31 OFFCURVE", "79 121 CURVE SMOOTH", "76 162 OFFCURVE", "74 233 OFFCURVE", "71 332 CURVE SMOOTH", "68 422 OFFCURVE", "57 518 OFFCURVE", "37 621 CURVE SMOOTH", "34 638 OFFCURVE", "35 651 OFFCURVE", "42 662 CURVE SMOOTH", "79 725 LINE SMOOTH" ); } ); width = 229; } ); }, { glyphname = aAlf.isol; layers = ( { anchors = ( { name = DigitAbove; position = "{-17, 625}"; }, { name = HamzaAbove; position = "{81, 796}"; }, { name = HamzaBelow; position = "{161, -39}"; }, { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "103 703 OFFCURVE", "112 703 OFFCURVE", "116 672 CURVE SMOOTH", "139 427 LINE SMOOTH", "164 206 OFFCURVE", "161 66 OFFCURVE", "130 7 CURVE SMOOTH", "126 0 OFFCURVE", "122 -3 OFFCURVE", "119 1 CURVE SMOOTH", "116 5 OFFCURVE", "115 11 OFFCURVE", "115 18 CURVE SMOOTH", "116 74 OFFCURVE", "112 137 OFFCURVE", "103 207 CURVE SMOOTH", "103 210 OFFCURVE", "96 273 OFFCURVE", "82 397 CURVE SMOOTH", "60 578 LINE SMOOTH", "59 590 OFFCURVE", "60 602 OFFCURVE", "64 612 CURVE SMOOTH", "89 670 LINE SMOOTH" ); } ); width = 217; }, { anchors = ( { name = DigitAbove; position = "{-17, 625}"; }, { name = HamzaAbove; position = "{81, 796}"; }, { name = HamzaBelow; position = "{161, -39}"; }, { name = TashkilAbove; position = "{98, 757}"; }, { name = TashkilBelow; position = "{122, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "113 722 OFFCURVE", "121 715 OFFCURVE", "125 672 CURVE SMOOTH", "149 428 LINE SMOOTH", "169 208 OFFCURVE", "164 71 OFFCURVE", "135 15 CURVE SMOOTH", "128 3 OFFCURVE", "122 -2 OFFCURVE", "116 0 CURVE SMOOTH", "110 2 OFFCURVE", "106 18 OFFCURVE", "107 48 CURVE SMOOTH", "108 99 OFFCURVE", "96 216 OFFCURVE", "72 396 CURVE SMOOTH", "51 562 LINE SMOOTH", "49 576 OFFCURVE", "51 590 OFFCURVE", "57 603 CURVE SMOOTH", "99 692 LINE SMOOTH" ); } ); width = 217; } ); }, { glyphname = aAyn.fina; layers = ( { anchors = ( { name = DotAbove; position = "{293, 464}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; }, { name = TwoDotsAbove; position = "{239, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "448 239 OFFCURVE", "462 221 OFFCURVE", "461 204 CURVE SMOOTH", "460 187 OFFCURVE", "453 172 OFFCURVE", "439 158 CURVE SMOOTH", "425 144 OFFCURVE", "411 134 OFFCURVE", "395 127 CURVE", "391 126 OFFCURVE", "391 123 OFFCURVE", "396 120 CURVE SMOOTH", "428 101 OFFCURVE", "460 91 OFFCURVE", "493 90 CURVE SMOOTH", "517 89 OFFCURVE", "529 78 OFFCURVE", "527 54 CURVE SMOOTH", "524 18 OFFCURVE", "513 0 OFFCURVE", "493 0 CURVE SMOOTH", "446 0 OFFCURVE", "386 31 OFFCURVE", "315 92 CURVE SMOOTH", "311 95 OFFCURVE", "307 95 OFFCURVE", "302 92 CURVE SMOOTH", "172 16 OFFCURVE", "106 -79 OFFCURVE", "101 -193 CURVE SMOOTH", "95 -324 OFFCURVE", "166 -408 OFFCURVE", "315 -446 CURVE", "399 -468 OFFCURVE", "536 -472 OFFCURVE", "724 -456 CURVE SMOOTH", "731 -455 OFFCURVE", "735 -456 OFFCURVE", "736 -460 CURVE SMOOTH", "737 -464 OFFCURVE", "734 -468 OFFCURVE", "727 -473 CURVE SMOOTH", "705 -488 OFFCURVE", "670 -504 OFFCURVE", "622 -522 CURVE SMOOTH", "574 -540 OFFCURVE", "538 -550 OFFCURVE", "514 -551 CURVE SMOOTH", "422 -557 OFFCURVE", "342 -551 OFFCURVE", "275 -535 CURVE SMOOTH", "111 -495 OFFCURVE", "42 -380 OFFCURVE", "69 -191 CURVE SMOOTH", "85 -76 OFFCURVE", "135 22 OFFCURVE", "218 103 CURVE SMOOTH", "232 116 OFFCURVE", "242 124 OFFCURVE", "248 129 CURVE SMOOTH", "254 134 OFFCURVE", "256 138 OFFCURVE", "253 140 CURVE SMOOTH", "236 155 OFFCURVE", "214 163 OFFCURVE", "189 165 CURVE SMOOTH", "170 167 OFFCURVE", "163 173 OFFCURVE", "167 183 CURVE SMOOTH", "180 215 OFFCURVE", "200 238 OFFCURVE", "226 255 CURVE SMOOTH", "289 295 OFFCURVE", "353 296 OFFCURVE", "418 257 CURVE SMOOTH" ); } ); width = 493; }, { anchors = ( { name = DotAbove; position = "{293, 464}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; }, { name = TwoDotsAbove; position = "{239, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "461 249 OFFCURVE", "478 227 OFFCURVE", "476 205 CURVE SMOOTH", "474 183 OFFCURVE", "466 165 OFFCURVE", "452 151 CURVE SMOOTH", "438 137 OFFCURVE", "424 129 OFFCURVE", "410 124 CURVE", "438 112 OFFCURVE", "465 106 OFFCURVE", "493 105 CURVE SMOOTH", "521 104 OFFCURVE", "536 95 OFFCURVE", "539 77 CURVE SMOOTH", "541 62 OFFCURVE", "542 54 OFFCURVE", "542 53 CURVE SMOOTH", "539 8 OFFCURVE", "522 -15 OFFCURVE", "493 -15 CURVE SMOOTH", "434 -15 OFFCURVE", "374 20 OFFCURVE", "313 88 CURVE", "179 14 OFFCURVE", "111 -77 OFFCURVE", "106 -189 CURVE SMOOTH", "101 -291 OFFCURVE", "147 -365 OFFCURVE", "242 -410 CURVE SMOOTH", "321 -447 OFFCURVE", "472 -459 OFFCURVE", "693 -446 CURVE SMOOTH", "723 -444 OFFCURVE", "738 -448 OFFCURVE", "739 -455 CURVE SMOOTH", "741 -468 OFFCURVE", "693 -495 OFFCURVE", "597 -536 CURVE SMOOTH", "556 -554 OFFCURVE", "518 -563 OFFCURVE", "485 -565 CURVE SMOOTH", "409 -571 OFFCURVE", "337 -566 OFFCURVE", "271 -549 CURVE SMOOTH", "105 -508 OFFCURVE", "36 -388 OFFCURVE", "64 -189 CURVE SMOOTH", "83 -59 OFFCURVE", "143 49 OFFCURVE", "243 136 CURVE", "230 144 OFFCURVE", "213 150 OFFCURVE", "192 151 CURVE SMOOTH", "171 152 OFFCURVE", "160 157 OFFCURVE", "156 165 CURVE SMOOTH", "152 173 OFFCURVE", "151 181 OFFCURVE", "154 188 CURVE SMOOTH", "168 223 OFFCURVE", "189 250 OFFCURVE", "218 268 CURVE SMOOTH", "287 312 OFFCURVE", "357 313 OFFCURVE", "426 270 CURVE SMOOTH" ); } ); width = 493; } ); }, { glyphname = aAyn.init; layers = ( { anchors = ( { name = DotAbove; position = "{146, 537}"; }, { name = DotBelow; position = "{239, -98}"; }, { name = HamzaAbove; position = "{146, 537}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; }, { name = TwoDotsAbove; position = "{93, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "394 171 LINE SMOOTH", "392 165 OFFCURVE", "386 161 OFFCURVE", "376 157 CURVE SMOOTH", "337 143 OFFCURVE", "288 124 OFFCURVE", "230 100 CURVE SMOOTH", "0 0 LINE", "-15 0 OFFCURVE", "-25 12 OFFCURVE", "-30 37 CURVE SMOOTH", "-35 62 OFFCURVE", "-25 79 OFFCURVE", "0 90 CURVE SMOOTH", "3 91 OFFCURVE", "26 101 OFFCURVE", "69 119 CURVE", "38 145 OFFCURVE", "27 175 OFFCURVE", "34 210 CURVE SMOOTH", "51 298 OFFCURVE", "104 360 OFFCURVE", "192 397 CURVE SMOOTH", "208 404 OFFCURVE", "230 400 OFFCURVE", "257 386 CURVE SMOOTH", "284 372 OFFCURVE", "308 354 OFFCURVE", "328 331 CURVE SMOOTH", "335 323 OFFCURVE", "336 316 OFFCURVE", "331 310 CURVE SMOOTH", "326 304 OFFCURVE", "320 302 OFFCURVE", "311 306 CURVE SMOOTH", "272 322 OFFCURVE", "228 324 OFFCURVE", "180 313 CURVE SMOOTH", "132 302 OFFCURVE", "103 283 OFFCURVE", "91 255 CURVE SMOOTH", "86 244 OFFCURVE", "94 230 OFFCURVE", "113 213 CURVE SMOOTH", "132 196 OFFCURVE", "151 186 OFFCURVE", "169 183 CURVE SMOOTH", "222 175 OFFCURVE", "284 193 OFFCURVE", "354 238 CURVE SMOOTH", "368 247 OFFCURVE", "382 255 OFFCURVE", "393 261 CURVE SMOOTH", "412 272 OFFCURVE", "418 268 OFFCURVE", "414 251 CURVE SMOOTH" ); } ); width = 477; }, { anchors = ( { name = DotAbove; position = "{146, 537}"; }, { name = DotBelow; position = "{239, -98}"; }, { name = HamzaAbove; position = "{146, 537}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; }, { name = TwoDotsAbove; position = "{93, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "403 167 LINE SMOOTH", "401 158 OFFCURVE", "392 151 OFFCURVE", "378 145 CURVE SMOOTH", "364 139 OFFCURVE", "315 119 OFFCURVE", "232 86 CURVE SMOOTH", "0 -15 LINE", "-22 -15 OFFCURVE", "-38 1 OFFCURVE", "-45 34 CURVE SMOOTH", "-52 67 OFFCURVE", "-39 90 OFFCURVE", "-6 104 CURVE SMOOTH", "20 115 OFFCURVE", "40 123 OFFCURVE", "53 129 CURVE", "17 159 OFFCURVE", "5 196 OFFCURVE", "15 238 CURVE SMOOTH", "36 328 OFFCURVE", "84 390 OFFCURVE", "159 425 CURVE SMOOTH", "178 434 OFFCURVE", "200 432 OFFCURVE", "226 420 CURVE SMOOTH", "252 408 OFFCURVE", "279 387 OFFCURVE", "305 360 CURVE SMOOTH", "319 345 OFFCURVE", "324 334 OFFCURVE", "320 325 CURVE SMOOTH", "316 316 OFFCURVE", "299 317 OFFCURVE", "270 325 CURVE SMOOTH", "241 333 OFFCURVE", "204 333 OFFCURVE", "161 323 CURVE SMOOTH", "118 313 OFFCURVE", "89 294 OFFCURVE", "75 264 CURVE SMOOTH", "71 256 OFFCURVE", "81 242 OFFCURVE", "103 222 CURVE SMOOTH", "159 174 OFFCURVE", "241 183 OFFCURVE", "347 250 CURVE SMOOTH", "362 259 OFFCURVE", "374 267 OFFCURVE", "384 273 CURVE SMOOTH", "420 296 OFFCURVE", "433 288 OFFCURVE", "423 248 CURVE SMOOTH" ); } ); width = 477; } ); }, { glyphname = aAyn.isol; layers = ( { anchors = ( { name = DotAbove; position = "{181, 601}"; }, { name = DotBelow; position = "{352, 49}"; }, { name = HamzaAbove; position = "{181, 601}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; }, { name = TwoDotsAbove; position = "{126, 601}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "237 468 OFFCURVE", "260 465 OFFCURVE", "288 449 CURVE SMOOTH", "316 433 OFFCURVE", "335 416 OFFCURVE", "346 400 CURVE SMOOTH", "353 390 OFFCURVE", "349 387 OFFCURVE", "333 390 CURVE SMOOTH", "250 407 OFFCURVE", "179 378 OFFCURVE", "120 304 CURVE SMOOTH", "117 300 OFFCURVE", "118 296 OFFCURVE", "123 291 CURVE SMOOTH", "170 248 OFFCURVE", "224 230 OFFCURVE", "287 237 CURVE SMOOTH", "298 238 OFFCURVE", "313 245 OFFCURVE", "334 257 CURVE SMOOTH", "412 305 OFFCURVE", "456 332 OFFCURVE", "466 337 CURVE SMOOTH", "478 343 OFFCURVE", "481 337 OFFCURVE", "475 320 CURVE SMOOTH", "460 278 OFFCURVE", "448 254 OFFCURVE", "440 250 CURVE SMOOTH", "386 226 OFFCURVE", "320 185 OFFCURVE", "242 128 CURVE SMOOTH", "155 65 OFFCURVE", "106 -22 OFFCURVE", "94 -131 CURVE SMOOTH", "88 -188 OFFCURVE", "101 -239 OFFCURVE", "136 -283 CURVE SMOOTH", "191 -352 OFFCURVE", "314 -384 OFFCURVE", "507 -377 CURVE SMOOTH", "559 -375 OFFCURVE", "628 -367 OFFCURVE", "712 -352 CURVE SMOOTH", "719 -351 OFFCURVE", "724 -351 OFFCURVE", "725 -355 CURVE SMOOTH", "728 -365 OFFCURVE", "692 -389 OFFCURVE", "616 -427 CURVE SMOOTH", "574 -448 OFFCURVE", "541 -460 OFFCURVE", "518 -462 CURVE SMOOTH", "420 -472 OFFCURVE", "339 -470 OFFCURVE", "276 -456 CURVE SMOOTH", "130 -423 OFFCURVE", "59 -332 OFFCURVE", "64 -185 CURVE SMOOTH", "69 -38 OFFCURVE", "114 78 OFFCURVE", "198 160 CURVE", "146 181 OFFCURVE", "111 203 OFFCURVE", "94 226 CURVE SMOOTH", "87 235 OFFCURVE", "84 245 OFFCURVE", "85 257 CURVE SMOOTH", "88 288 OFFCURVE", "96 317 OFFCURVE", "110 343 CURVE SMOOTH", "141 401 OFFCURVE", "176 439 OFFCURVE", "217 459 CURVE SMOOTH" ); } ); width = 540; }, { anchors = ( { name = DotAbove; position = "{181, 601}"; }, { name = DotBelow; position = "{352, 49}"; }, { name = HamzaAbove; position = "{181, 601}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{352, 98}"; }, { name = TwoDotsAbove; position = "{126, 601}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "348 -373 OFFCURVE", "499 -378 OFFCURVE", "688 -346 CURVE SMOOTH", "718 -340 OFFCURVE", "733 -341 OFFCURVE", "734 -349 CURVE SMOOTH", "735 -360 OFFCURVE", "726 -371 OFFCURVE", "708 -381 CURVE SMOOTH", "578 -458 LINE SMOOTH", "555 -472 OFFCURVE", "522 -479 OFFCURVE", "480 -482 CURVE SMOOTH", "393 -488 OFFCURVE", "323 -485 OFFCURVE", "267 -471 CURVE SMOOTH", "104 -430 OFFCURVE", "36 -311 OFFCURVE", "63 -115 CURVE SMOOTH", "77 -15 OFFCURVE", "115 75 OFFCURVE", "177 154 CURVE", "106 186 OFFCURVE", "72 218 OFFCURVE", "76 249 CURVE SMOOTH", "87 342 OFFCURVE", "128 413 OFFCURVE", "201 462 CURVE SMOOTH", "228 480 OFFCURVE", "258 479 OFFCURVE", "293 458 CURVE SMOOTH", "318 443 OFFCURVE", "337 426 OFFCURVE", "349 409 CURVE SMOOTH", "354 401 OFFCURVE", "355 395 OFFCURVE", "353 389 CURVE SMOOTH", "351 383 OFFCURVE", "342 382 OFFCURVE", "325 386 CURVE SMOOTH", "252 401 OFFCURVE", "186 374 OFFCURVE", "125 304 CURVE", "173 265 OFFCURVE", "227 247 OFFCURVE", "286 251 CURVE SMOOTH", "294 252 OFFCURVE", "307 258 OFFCURVE", "326 270 CURVE SMOOTH", "383 307 OFFCURVE", "422 332 OFFCURVE", "443 344 CURVE SMOOTH", "475 362 OFFCURVE", "487 358 OFFCURVE", "481 334 CURVE SMOOTH", "450 258 LINE SMOOTH", "446 248 OFFCURVE", "439 241 OFFCURVE", "431 237 CURVE SMOOTH", "383 215 OFFCURVE", "324 179 OFFCURVE", "256 130 CURVE SMOOTH", "162 63 OFFCURVE", "111 -23 OFFCURVE", "101 -128 CURVE SMOOTH", "91 -230 OFFCURVE", "137 -299 OFFCURVE", "237 -334 CURVE SMOOTH" ); } ); width = 540; } ); }, { glyphname = aAyn.medi; layers = ( { anchors = ( { name = DotAbove; position = "{127, 488}"; }, { name = DotBelow; position = "{156, -98}"; }, { name = HamzaAbove; position = "{127, 488}"; }, { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{73, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "389 90 OFFCURVE", "399 79 OFFCURVE", "396 55 CURVE SMOOTH", "391 20 OFFCURVE", "381 1 OFFCURVE", "366 0 CURVE SMOOTH", "305 -4 OFFCURVE", "243 30 OFFCURVE", "181 103 CURVE", "98 34 OFFCURVE", "38 -1 OFFCURVE", "0 0 CURVE SMOOTH", "-16 0 OFFCURVE", "-26 13 OFFCURVE", "-31 38 CURVE SMOOTH", "-37 72 OFFCURVE", "-26 89 OFFCURVE", "0 90 CURVE SMOOTH", "41 92 OFFCURVE", "81 105 OFFCURVE", "118 131 CURVE", "97 152 OFFCURVE", "66 165 OFFCURVE", "27 171 CURVE SMOOTH", "22 172 OFFCURVE", "21 175 OFFCURVE", "22 182 CURVE SMOOTH", "25 203 OFFCURVE", "43 226 OFFCURVE", "74 253 CURVE SMOOTH", "131 299 OFFCURVE", "196 301 OFFCURVE", "267 258 CURVE SMOOTH", "301 237 OFFCURVE", "317 218 OFFCURVE", "315 198 CURVE SMOOTH", "313 178 OFFCURVE", "290 154 OFFCURVE", "245 126 CURVE", "269 102 OFFCURVE", "309 90 OFFCURVE", "366 90 CURVE SMOOTH" ); } ); width = 366; }, { anchors = ( { name = DotAbove; position = "{127, 488}"; }, { name = DotBelow; position = "{156, -98}"; }, { name = HamzaAbove; position = "{127, 488}"; }, { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{73, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "391 105 OFFCURVE", "406 95 OFFCURVE", "410 74 CURVE SMOOTH", "411 67 OFFCURVE", "412 60 OFFCURVE", "411 53 CURVE SMOOTH", "404 8 OFFCURVE", "390 -15 OFFCURVE", "367 -15 CURVE SMOOTH", "298 -15 OFFCURVE", "236 20 OFFCURVE", "180 87 CURVE", "103 19 OFFCURVE", "43 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-24 -15 OFFCURVE", "-39 2 OFFCURVE", "-45 35 CURVE SMOOTH", "-51 68 OFFCURVE", "-43 90 OFFCURVE", "-22 100 CURVE SMOOTH", "-15 103 OFFCURVE", "-8 105 OFFCURVE", "0 105 CURVE SMOOTH", "43 106 OFFCURVE", "79 116 OFFCURVE", "108 133 CURVE", "95 143 OFFCURVE", "67 151 OFFCURVE", "25 157 CURVE SMOOTH", "11 159 OFFCURVE", "5 168 OFFCURVE", "8 185 CURVE SMOOTH", "13 212 OFFCURVE", "32 239 OFFCURVE", "65 265 CURVE SMOOTH", "127 313 OFFCURVE", "198 315 OFFCURVE", "275 271 CURVE SMOOTH", "314 248 OFFCURVE", "330 223 OFFCURVE", "324 197 CURVE SMOOTH", "318 172 OFFCURVE", "295 148 OFFCURVE", "255 125 CURVE", "276 112 OFFCURVE", "314 106 OFFCURVE", "366 105 CURVE SMOOTH" ); } ); width = 366; } ); }, { glyphname = aBaa.fina; layers = ( { anchors = ( { name = DigitBelow; position = "{439, -220}"; }, { name = DotAbove; position = "{461, 425}"; }, { name = DotBelow; position = "{439, -220}"; }, { name = HamzaAbove; position = "{461, 425}"; }, { name = HamzaBelow; position = "{439, -220}"; }, { name = RingBelow; position = "{428, -44}"; }, { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; }, { name = TwoDotsAbove; position = "{407, 425}"; }, { name = TwoDotsBelow; position = "{385, -176}"; }, { name = VAbove; position = "{461, 425}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "125 261 OFFCURVE", "130 261 OFFCURVE", "135 256 CURVE SMOOTH", "140 251 OFFCURVE", "140 245 OFFCURVE", "135 238 CURVE SMOOTH", "111 205 OFFCURVE", "102 176 OFFCURVE", "107 154 CURVE SMOOTH", "129 61 OFFCURVE", "230 17 OFFCURVE", "410 22 CURVE SMOOTH", "531 26 OFFCURVE", "643 49 OFFCURVE", "745 91 CURVE SMOOTH", "766 99 OFFCURVE", "779 119 OFFCURVE", "786 150 CURVE SMOOTH", "788 159 OFFCURVE", "794 164 OFFCURVE", "804 163 CURVE SMOOTH", "811 162 OFFCURVE", "815 156 OFFCURVE", "815 142 CURVE SMOOTH", "816 110 OFFCURVE", "839 93 OFFCURVE", "884 90 CURVE SMOOTH", "901 89 OFFCURVE", "908 79 OFFCURVE", "906 58 CURVE SMOOTH", "902 19 OFFCURVE", "895 0 OFFCURVE", "884 0 CURVE SMOOTH", "854 0 OFFCURVE", "827 15 OFFCURVE", "803 46 CURVE SMOOTH", "802 48 OFFCURVE", "797 46 OFFCURVE", "790 41 CURVE SMOOTH", "671 -39 OFFCURVE", "529 -79 OFFCURVE", "366 -79 CURVE SMOOTH", "203 -79 OFFCURVE", "106 -39 OFFCURVE", "74 41 CURVE SMOOTH", "59 80 OFFCURVE", "59 120 OFFCURVE", "74 162 CURVE SMOOTH", "89 204 OFFCURVE", "105 235 OFFCURVE", "120 254 CURVE SMOOTH" ); } ); width = 883; }, { anchors = ( { name = DigitBelow; position = "{439, -220}"; }, { name = DotAbove; position = "{461, 425}"; }, { name = DotBelow; position = "{439, -220}"; }, { name = HamzaAbove; position = "{461, 425}"; }, { name = HamzaBelow; position = "{439, -220}"; }, { name = RingBelow; position = "{428, -44}"; }, { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; }, { name = TwoDotsAbove; position = "{407, 425}"; }, { name = TwoDotsBelow; position = "{385, -176}"; }, { name = VAbove; position = "{461, 425}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "122 265 OFFCURVE", "131 268 OFFCURVE", "139 260 CURVE SMOOTH", "146 253 OFFCURVE", "145 244 OFFCURVE", "138 233 CURVE SMOOTH", "117 203 OFFCURVE", "108 178 OFFCURVE", "113 158 CURVE SMOOTH", "134 72 OFFCURVE", "234 32 OFFCURVE", "410 37 CURVE SMOOTH", "535 41 OFFCURVE", "649 63 OFFCURVE", "750 104 CURVE SMOOTH", "768 111 OFFCURVE", "778 125 OFFCURVE", "782 146 CURVE SMOOTH", "784 159 OFFCURVE", "791 166 OFFCURVE", "802 166 CURVE SMOOTH", "813 166 OFFCURVE", "818 157 OFFCURVE", "818 140 CURVE SMOOTH", "819 119 OFFCURVE", "841 107 OFFCURVE", "885 105 CURVE SMOOTH", "904 104 OFFCURVE", "915 95 OFFCURVE", "919 78 CURVE SMOOTH", "921 71 OFFCURVE", "921 58 OFFCURVE", "919 38 CURVE SMOOTH", "915 3 OFFCURVE", "904 -15 OFFCURVE", "884 -15 CURVE SMOOTH", "854 -15 OFFCURVE", "826 4 OFFCURVE", "799 40 CURVE", "676 -49 OFFCURVE", "533 -94 OFFCURVE", "369 -94 CURVE SMOOTH", "199 -94 OFFCURVE", "99 -51 OFFCURVE", "69 35 CURVE SMOOTH", "53 80 OFFCURVE", "54 123 OFFCURVE", "70 166 CURVE SMOOTH", "85 204 OFFCURVE", "99 233 OFFCURVE", "112 252 CURVE SMOOTH" ); } ); width = 883; } ); }, { glyphname = aBaa.init; layers = ( { anchors = ( { name = DigitAbove; position = "{85, 439}"; }, { name = DigitBelow; position = "{83, -171}"; }, { name = DotAbove; position = "{85, 439}"; }, { name = DotBelow; position = "{83, -171}"; }, { name = DotBelowAlt; position = "{83, -366}"; }, { name = HamzaAbove; position = "{85, 391}"; }, { name = HamzaBelow; position = "{83, -171}"; }, { name = RingBelow; position = "{107, 73}"; }, { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; }, { name = TwoDotsAbove; position = "{29, 391}"; }, { name = TwoDotsBelow; position = "{59, -171}"; }, { name = TwoDotsBelowAlt; position = "{59, -366}"; }, { name = VAbove; position = "{85, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "88 273 LINE SMOOTH", "94 286 OFFCURVE", "99 286 OFFCURVE", "106 274 CURVE SMOOTH", "132 225 OFFCURVE", "138 167 OFFCURVE", "121 98 CURVE SMOOTH", "105 33 OFFCURVE", "65 0 OFFCURVE", "0 0 CURVE SMOOTH", "-7 0 OFFCURVE", "-14 17 OFFCURVE", "-21 51 CURVE SMOOTH", "-26 78 OFFCURVE", "-19 91 OFFCURVE", "0 90 CURVE SMOOTH", "39 88 OFFCURVE", "69 99 OFFCURVE", "89 122 CURVE SMOOTH", "90 123 OFFCURVE", "90 126 OFFCURVE", "89 129 CURVE SMOOTH", "85 148 OFFCURVE", "76 167 OFFCURVE", "62 187 CURVE SMOOTH", "56 195 OFFCURVE", "56 203 OFFCURVE", "60 211 CURVE SMOOTH" ); } ); width = 190; }, { anchors = ( { name = DigitAbove; position = "{85, 439}"; }, { name = DigitBelow; position = "{83, -171}"; }, { name = DotAbove; position = "{85, 439}"; }, { name = DotBelow; position = "{83, -171}"; }, { name = DotBelowAlt; position = "{83, -366}"; }, { name = HamzaAbove; position = "{85, 391}"; }, { name = HamzaBelow; position = "{83, -171}"; }, { name = RingBelow; position = "{107, 73}"; }, { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; }, { name = TwoDotsAbove; position = "{29, 391}"; }, { name = TwoDotsBelow; position = "{59, -171}"; }, { name = TwoDotsBelowAlt; position = "{59, -366}"; }, { name = VAbove; position = "{85, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "80 275 LINE SMOOTH", "90 297 OFFCURVE", "99 301 OFFCURVE", "106 288 CURVE SMOOTH", "139 232 OFFCURVE", "146 167 OFFCURVE", "129 94 CURVE SMOOTH", "112 21 OFFCURVE", "68 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-14 -15 OFFCURVE", "-23 -3 OFFCURVE", "-29 19 CURVE SMOOTH", "-35 41 OFFCURVE", "-37 59 OFFCURVE", "-37 73 CURVE SMOOTH", "-37 87 OFFCURVE", "-30 96 OFFCURVE", "-16 102 CURVE SMOOTH", "-11 104 OFFCURVE", "-6 105 OFFCURVE", "0 105 CURVE SMOOTH", "39 104 OFFCURVE", "66 112 OFFCURVE", "84 128 CURVE", "80 145 OFFCURVE", "73 160 OFFCURVE", "61 173 CURVE SMOOTH", "49 186 OFFCURVE", "45 200 OFFCURVE", "51 213 CURVE SMOOTH" ); } ); width = 190; } ); }, { glyphname = aBaa.isol; layers = ( { anchors = ( { name = DigitBelow; position = "{488, -195}"; }, { name = DotAbove; position = "{461, 425}"; }, { name = DotBelow; position = "{488, -195}"; }, { name = HamzaAbove; position = "{461, 425}"; }, { name = HamzaBelow; position = "{488, -146}"; }, { name = RingBelow; position = "{415, 29}"; }, { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; }, { name = TwoDotsAbove; position = "{407, 425}"; }, { name = TwoDotsBelow; position = "{439, -146}"; }, { name = VAbove; position = "{461, 425}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "840 351 OFFCURVE", "852 320 OFFCURVE", "859 281 CURVE SMOOTH", "866 242 OFFCURVE", "865 205 OFFCURVE", "857 169 CURVE SMOOTH", "849 133 OFFCURVE", "836 110 OFFCURVE", "817 99 CURVE SMOOTH", "710 37 OFFCURVE", "577 1 OFFCURVE", "417 -7 CURVE SMOOTH", "257 -15 OFFCURVE", "150 15 OFFCURVE", "95 83 CURVE SMOOTH", "60 127 OFFCURVE", "54 177 OFFCURVE", "79 236 CURVE SMOOTH", "89 260 OFFCURVE", "108 286 OFFCURVE", "133 314 CURVE SMOOTH", "137 319 OFFCURVE", "142 320 OFFCURVE", "146 319 CURVE SMOOTH", "150 318 OFFCURVE", "152 315 OFFCURVE", "153 311 CURVE SMOOTH", "154 307 OFFCURVE", "153 303 OFFCURVE", "150 300 CURVE SMOOTH", "138 287 OFFCURVE", "128 272 OFFCURVE", "121 257 CURVE SMOOTH", "114 242 OFFCURVE", "113 227 OFFCURVE", "116 216 CURVE SMOOTH", "139 130 OFFCURVE", "236 88 OFFCURVE", "406 91 CURVE SMOOTH", "576 94 OFFCURVE", "716 126 OFFCURVE", "825 189 CURVE", "823 214 OFFCURVE", "807 247 OFFCURVE", "777 285 CURVE SMOOTH", "775 288 OFFCURVE", "777 297 OFFCURVE", "780 312 CURVE SMOOTH", "783 327 OFFCURVE", "790 347 OFFCURVE", "802 372 CURVE SMOOTH", "806 381 OFFCURVE", "813 381 OFFCURVE", "821 372 CURVE SMOOTH" ); } ); width = 926; }, { anchors = ( { name = DigitBelow; position = "{488, -195}"; }, { name = DotAbove; position = "{461, 425}"; }, { name = DotBelow; position = "{488, -195}"; }, { name = HamzaAbove; position = "{461, 425}"; }, { name = HamzaBelow; position = "{488, -146}"; }, { name = RingBelow; position = "{415, 29}"; }, { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{537, -327}"; }, { name = TwoDotsAbove; position = "{407, 425}"; }, { name = TwoDotsBelow; position = "{439, -146}"; }, { name = VAbove; position = "{461, 425}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "59 115 OFFCURVE", "54 166 OFFCURVE", "76 229 CURVE SMOOTH", "85 254 OFFCURVE", "102 282 OFFCURVE", "128 311 CURVE SMOOTH", "137 321 OFFCURVE", "145 323 OFFCURVE", "152 316 CURVE SMOOTH", "159 309 OFFCURVE", "158 301 OFFCURVE", "149 292 CURVE SMOOTH", "125 267 OFFCURVE", "115 243 OFFCURVE", "119 221 CURVE SMOOTH", "132 144 OFFCURVE", "231 106 OFFCURVE", "419 106 CURVE SMOOTH", "578 106 OFFCURVE", "709 134 OFFCURVE", "813 193 CURVE", "807 217 OFFCURVE", "793 240 OFFCURVE", "769 261 CURVE SMOOTH", "763 267 OFFCURVE", "762 275 OFFCURVE", "765 285 CURVE SMOOTH", "794 373 LINE SMOOTH", "800 391 OFFCURVE", "811 389 OFFCURVE", "825 367 CURVE SMOOTH", "859 315 OFFCURVE", "870 250 OFFCURVE", "857 173 CURVE SMOOTH", "850 135 OFFCURVE", "836 110 OFFCURVE", "814 96 CURVE SMOOTH", "705 27 OFFCURVE", "572 -13 OFFCURVE", "415 -21 CURVE SMOOTH", "257 -29 OFFCURVE", "150 3 OFFCURVE", "92 74 CURVE SMOOTH" ); } ); width = 926; } ); }, { glyphname = aBaa.medi; layers = ( { anchors = ( { name = DigitAbove; position = "{122, 425}"; }, { name = DigitBelow; position = "{127, -171}"; }, { name = DotAbove; position = "{122, 425}"; }, { name = DotBelow; position = "{127, -171}"; }, { name = HamzaAbove; position = "{122, 361}"; }, { name = RingBelow; position = "{122, 59}"; }, { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; }, { name = TwoDotsAbove; position = "{59, 361}"; }, { name = TwoDotsBelow; position = "{78, -122}"; }, { name = VAbove; position = "{122, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "255 87 OFFCURVE", "262 84 OFFCURVE", "263 79 CURVE SMOOTH", "264 74 OFFCURVE", "264 65 OFFCURVE", "263 55 CURVE SMOOTH", "258 18 OFFCURVE", "251 0 OFFCURVE", "244 0 CURVE SMOOTH", "208 0 OFFCURVE", "172 20 OFFCURVE", "136 61 CURVE", "106 25 OFFCURVE", "61 4 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-11 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-21 57 LINE SMOOTH", "-23 64 OFFCURVE", "-21 71 OFFCURVE", "-17 78 CURVE SMOOTH", "-13 85 OFFCURVE", "-7 89 OFFCURVE", "0 90 CURVE SMOOTH", "74 96 OFFCURVE", "123 118 OFFCURVE", "148 156 CURVE SMOOTH", "152 162 OFFCURVE", "156 164 OFFCURVE", "162 164 CURVE SMOOTH", "168 164 OFFCURVE", "171 161 OFFCURVE", "171 155 CURVE SMOOTH", "171 149 OFFCURVE", "172 145 OFFCURVE", "173 143 CURVE", "195 113 OFFCURVE", "219 95 OFFCURVE", "244 90 CURVE" ); } ); width = 244; }, { anchors = ( { name = DigitAbove; position = "{122, 425}"; }, { name = DigitBelow; position = "{127, -171}"; }, { name = DotAbove; position = "{122, 425}"; }, { name = DotBelow; position = "{127, -171}"; }, { name = HamzaAbove; position = "{122, 361}"; }, { name = HamzaBelow; position = "{127, -171}"; }, { name = RingBelow; position = "{122, 59}"; }, { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; }, { name = TwoDotsAbove; position = "{59, 361}"; }, { name = TwoDotsBelow; position = "{78, -122}"; }, { name = VAbove; position = "{122, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "202 120 OFFCURVE", "222 106 OFFCURVE", "244 104 CURVE SMOOTH", "262 102 OFFCURVE", "273 96 OFFCURVE", "276 84 CURVE SMOOTH", "278 76 OFFCURVE", "278 62 OFFCURVE", "276 42 CURVE SMOOTH", "274 22 OFFCURVE", "269 8 OFFCURVE", "265 -1 CURVE SMOOTH", "261 -10 OFFCURVE", "254 -15 OFFCURVE", "244 -15 CURVE SMOOTH", "205 -15 OFFCURVE", "170 7 OFFCURVE", "136 49 CURVE", "95 7 OFFCURVE", "49 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-14 -15 OFFCURVE", "-23 -6 OFFCURVE", "-27 12 CURVE SMOOTH", "-36 53 LINE SMOOTH", "-38 64 OFFCURVE", "-35 75 OFFCURVE", "-28 86 CURVE SMOOTH", "-21 97 OFFCURVE", "-12 104 OFFCURVE", "0 105 CURVE SMOOTH", "79 111 OFFCURVE", "128 131 OFFCURVE", "146 164 CURVE SMOOTH", "152 174 OFFCURVE", "158 179 OFFCURVE", "165 179 CURVE SMOOTH", "175 179 OFFCURVE", "180 173 OFFCURVE", "180 162 CURVE SMOOTH", "180 151 OFFCURVE", "182 146 OFFCURVE", "182 145 CURVE" ); } ); width = 244; } ); }, { glyphname = aDal.fina; layers = ( { anchors = ( { name = DotAbove; position = "{334, 635}"; }, { name = DotBelow; position = "{244, -122}"; }, { name = HamzaAbove; position = "{334, 635}"; }, { name = HamzaBelow; position = "{244, -122}"; }, { name = RingBelow; position = "{205, 59}"; }, { name = TaaAbove; position = "{334, 586}"; }, { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{280, 635}"; }, { name = TwoDotsBelow; position = "{190, -122}"; }, { name = VAbove; position = "{334, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "481 87 OFFCURVE", "488 79 OFFCURVE", "491 64 CURVE SMOOTH", "494 49 OFFCURVE", "494 34 OFFCURVE", "490 20 CURVE SMOOTH", "486 6 OFFCURVE", "479 0 OFFCURVE", "471 0 CURVE SMOOTH", "427 3 OFFCURVE", "398 39 OFFCURVE", "382 109 CURVE SMOOTH", "377 131 OFFCURVE", "374 143 OFFCURVE", "374 143 CURVE SMOOTH", "372 148 OFFCURVE", "370 148 OFFCURVE", "368 142 CURVE SMOOTH", "347 86 OFFCURVE", "321 51 OFFCURVE", "288 38 CURVE SMOOTH", "247 21 OFFCURVE", "191 15 OFFCURVE", "120 20 CURVE SMOOTH", "65 24 OFFCURVE", "50 67 OFFCURVE", "77 151 CURVE SMOOTH", "80 160 OFFCURVE", "85 166 OFFCURVE", "92 167 CURVE SMOOTH", "99 168 OFFCURVE", "103 164 OFFCURVE", "106 154 CURVE SMOOTH", "112 135 OFFCURVE", "120 124 OFFCURVE", "133 121 CURVE SMOOTH", "197 107 OFFCURVE", "256 110 OFFCURVE", "308 131 CURVE SMOOTH", "334 141 OFFCURVE", "351 161 OFFCURVE", "359 187 CURVE SMOOTH", "360 192 OFFCURVE", "355 227 OFFCURVE", "345 294 CURVE SMOOTH", "335 361 OFFCURVE", "330 403 OFFCURVE", "328 418 CURVE SMOOTH", "326 433 OFFCURVE", "327 444 OFFCURVE", "331 452 CURVE SMOOTH", "342 475 OFFCURVE", "350 491 OFFCURVE", "354 502 CURVE SMOOTH", "356 507 OFFCURVE", "359 510 OFFCURVE", "364 509 CURVE SMOOTH", "369 508 OFFCURVE", "372 505 OFFCURVE", "373 499 CURVE SMOOTH", "389 359 OFFCURVE", "407 248 OFFCURVE", "426 165 CURVE SMOOTH", "436 121 OFFCURVE", "451 95 OFFCURVE", "471 90 CURVE SMOOTH" ); } ); width = 471; }, { anchors = ( { name = DotAbove; position = "{334, 635}"; }, { name = DotBelow; position = "{244, -122}"; }, { name = HamzaAbove; position = "{334, 635}"; }, { name = HamzaBelow; position = "{244, -122}"; }, { name = RingBelow; position = "{205, 59}"; }, { name = TaaAbove; position = "{334, 586}"; }, { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{280, 635}"; }, { name = TwoDotsBelow; position = "{190, -122}"; }, { name = VAbove; position = "{334, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "509 50 OFFCURVE", "509 33 OFFCURVE", "504 17 CURVE SMOOTH", "497 -4 OFFCURVE", "487 -15 OFFCURVE", "471 -15 CURVE SMOOTH", "420 -14 OFFCURVE", "385 31 OFFCURVE", "368 119 CURVE", "347 69 OFFCURVE", "321 36 OFFCURVE", "292 23 CURVE SMOOTH", "264 10 OFFCURVE", "220 5 OFFCURVE", "160 5 CURVE SMOOTH", "68 5 OFFCURVE", "41 55 OFFCURVE", "78 156 CURVE SMOOTH", "82 167 OFFCURVE", "88 172 OFFCURVE", "95 172 CURVE SMOOTH", "102 172 OFFCURVE", "107 165 OFFCURVE", "112 153 CURVE SMOOTH", "117 140 OFFCURVE", "125 134 OFFCURVE", "135 132 CURVE SMOOTH", "197 122 OFFCURVE", "253 126 OFFCURVE", "302 145 CURVE SMOOTH", "329 155 OFFCURVE", "344 170 OFFCURVE", "349 189 CURVE", "349 196 OFFCURVE", "345 231 OFFCURVE", "336 293 CURVE SMOOTH", "327 355 OFFCURVE", "322 393 OFFCURVE", "321 406 CURVE SMOOTH", "320 419 OFFCURVE", "323 434 OFFCURVE", "330 451 CURVE SMOOTH", "353 502 LINE SMOOTH", "357 511 OFFCURVE", "363 516 OFFCURVE", "370 516 CURVE SMOOTH", "377 516 OFFCURVE", "381 510 OFFCURVE", "382 500 CURVE SMOOTH", "402 337 OFFCURVE", "418 232 OFFCURVE", "431 183 CURVE SMOOTH", "444 134 OFFCURVE", "457 108 OFFCURVE", "471 104 CURVE SMOOTH", "488 99 OFFCURVE", "499 88 OFFCURVE", "504 69 CURVE SMOOTH" ); } ); width = 471; } ); }, { glyphname = aDal.isol; layers = ( { anchors = ( { name = DotAbove; position = "{205, 586}"; }, { name = DotBelow; position = "{244, -146}"; }, { name = HamzaAbove; position = "{205, 586}"; }, { name = HamzaBelow; position = "{244, -146}"; }, { name = RingBelow; position = "{239, 54}"; }, { name = TaaAbove; position = "{205, 537}"; }, { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{151, 586}"; }, { name = TwoDotsBelow; position = "{190, -146}"; }, { name = VAbove; position = "{205, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "181 355 OFFCURVE", "191 375 OFFCURVE", "199 385 CURVE SMOOTH", "205 392 OFFCURVE", "213 392 OFFCURVE", "222 387 CURVE SMOOTH", "311 338 OFFCURVE", "362 272 OFFCURVE", "377 190 CURVE SMOOTH", "385 144 OFFCURVE", "384 103 OFFCURVE", "372 68 CURVE SMOOTH", "368 58 OFFCURVE", "361 50 OFFCURVE", "351 44 CURVE SMOOTH", "288 11 OFFCURVE", "217 -5 OFFCURVE", "141 -6 CURVE SMOOTH", "88 -7 OFFCURVE", "69 28 OFFCURVE", "85 96 CURVE SMOOTH", "87 104 OFFCURVE", "91 108 OFFCURVE", "97 109 CURVE SMOOTH", "101 109 OFFCURVE", "106 107 OFFCURVE", "112 102 CURVE SMOOTH", "125 91 OFFCURVE", "150 88 OFFCURVE", "187 93 CURVE SMOOTH", "268 103 OFFCURVE", "321 116 OFFCURVE", "346 131 CURVE SMOOTH", "348 132 OFFCURVE", "349 136 OFFCURVE", "348 143 CURVE SMOOTH", "336 210 OFFCURVE", "281 262 OFFCURVE", "185 299 CURVE SMOOTH", "172 304 OFFCURVE", "167 312 OFFCURVE", "170 322 CURVE SMOOTH" ); } ); width = 450; }, { anchors = ( { name = DotAbove; position = "{205, 586}"; }, { name = DotBelow; position = "{244, -146}"; }, { name = HamzaAbove; position = "{205, 586}"; }, { name = HamzaBelow; position = "{244, -146}"; }, { name = RingBelow; position = "{239, 54}"; }, { name = TaaAbove; position = "{205, 537}"; }, { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{151, 586}"; }, { name = TwoDotsBelow; position = "{190, -146}"; }, { name = VAbove; position = "{205, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "166 291 OFFCURVE", "164 306 OFFCURVE", "172 329 CURVE SMOOTH", "180 352 OFFCURVE", "189 371 OFFCURVE", "197 387 CURVE SMOOTH", "205 403 OFFCURVE", "216 407 OFFCURVE", "229 400 CURVE SMOOTH", "312 351 OFFCURVE", "361 282 OFFCURVE", "379 193 CURVE SMOOTH", "388 145 OFFCURVE", "388 103 OFFCURVE", "375 67 CURVE SMOOTH", "368 45 OFFCURVE", "357 31 OFFCURVE", "345 26 CURVE SMOOTH", "275 -2 OFFCURVE", "215 -18 OFFCURVE", "165 -21 CURVE SMOOTH", "92 -26 OFFCURVE", "65 14 OFFCURVE", "86 99 CURVE SMOOTH", "90 115 OFFCURVE", "96 124 OFFCURVE", "105 124 CURVE SMOOTH", "112 124 OFFCURVE", "117 120 OFFCURVE", "122 112 CURVE SMOOTH", "127 104 OFFCURVE", "157 103 OFFCURVE", "213 110 CURVE SMOOTH", "269 117 OFFCURVE", "312 128 OFFCURVE", "343 143 CURVE", "333 194 OFFCURVE", "279 241 OFFCURVE", "180 285 CURVE SMOOTH" ); } ); width = 450; } ); }, { glyphname = aFaa.fina; layers = ( { anchors = ( { name = DotAbove; position = "{684, 488}"; }, { name = DotAlt; position = "{439, -244}"; }, { name = DotBelow; position = "{830, -146}"; }, { name = HamzaAbove; position = "{684, 488}"; }, { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; }, { name = TwoDotsAbove; position = "{635, 488}"; }, { name = TwoDotsBelow; position = "{781, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "827 344 OFFCURVE", "863 363 OFFCURVE", "892 337 CURVE SMOOTH", "928 304 OFFCURVE", "940 253 OFFCURVE", "928 182 CURVE SMOOTH", "924 158 OFFCURVE", "913 131 OFFCURVE", "897 100 CURVE", "922 90 OFFCURVE", "958 86 OFFCURVE", "1006 90 CURVE SMOOTH", "1022 91 OFFCURVE", "1030 81 OFFCURVE", "1030 60 CURVE SMOOTH", "1030 21 OFFCURVE", "1022 1 OFFCURVE", "1006 0 CURVE SMOOTH", "935 -5 OFFCURVE", "877 3 OFFCURVE", "832 25 CURVE", "792 -2 OFFCURVE", "739 -26 OFFCURVE", "673 -46 CURVE SMOOTH", "530 -89 OFFCURVE", "397 -102 OFFCURVE", "271 -85 CURVE SMOOTH", "206 -76 OFFCURVE", "154 -58 OFFCURVE", "118 -32 CURVE SMOOTH", "82 -6 OFFCURVE", "63 28 OFFCURVE", "63 70 CURVE SMOOTH", "63 112 OFFCURVE", "84 165 OFFCURVE", "123 229 CURVE SMOOTH", "126 233 OFFCURVE", "129 235 OFFCURVE", "133 235 CURVE SMOOTH", "137 235 OFFCURVE", "141 234 OFFCURVE", "143 230 CURVE SMOOTH", "145 226 OFFCURVE", "145 222 OFFCURVE", "142 217 CURVE SMOOTH", "115 170 OFFCURVE", "108 135 OFFCURVE", "119 114 CURVE SMOOTH", "157 44 OFFCURVE", "243 10 OFFCURVE", "375 12 CURVE SMOOTH", "530 15 OFFCURVE", "655 35 OFFCURVE", "753 73 CURVE", "729 91 OFFCURVE", "721 119 OFFCURVE", "729 158 CURVE SMOOTH", "737 197 OFFCURVE", "755 238 OFFCURVE", "785 282 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "813 252 OFFCURVE", "790 227 OFFCURVE", "771 173 CURVE", "774 162 OFFCURVE", "782 151 OFFCURVE", "791 142 CURVE SMOOTH", "800 133 OFFCURVE", "810 127 OFFCURVE", "819 124 CURVE SMOOTH", "828 121 OFFCURVE", "840 123 OFFCURVE", "856 131 CURVE SMOOTH", "872 139 OFFCURVE", "882 147 OFFCURVE", "887 156 CURVE", "885 214 OFFCURVE", "870 246 OFFCURVE", "840 249 CURVE SMOOTH" ); } ); width = 1005; }, { anchors = ( { name = DotAbove; position = "{684, 488}"; }, { name = DotAlt; position = "{439, -244}"; }, { name = DotBelow; position = "{830, -146}"; }, { name = HamzaAbove; position = "{684, 488}"; }, { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; }, { name = TwoDotsAbove; position = "{635, 488}"; }, { name = TwoDotsBelow; position = "{781, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "825 371 OFFCURVE", "866 390 OFFCURVE", "902 357 CURVE SMOOTH", "938 324 OFFCURVE", "949 264 OFFCURVE", "933 179 CURVE SMOOTH", "929 158 OFFCURVE", "921 134 OFFCURVE", "909 108 CURVE", "931 103 OFFCURVE", "964 103 OFFCURVE", "1006 105 CURVE SMOOTH", "1025 106 OFFCURVE", "1037 98 OFFCURVE", "1042 79 CURVE SMOOTH", "1044 72 OFFCURVE", "1045 66 OFFCURVE", "1045 60 CURVE SMOOTH", "1044 12 OFFCURVE", "1031 -13 OFFCURVE", "1006 -15 CURVE SMOOTH", "946 -20 OFFCURVE", "888 -9 OFFCURVE", "833 16 CURVE", "690 -66 OFFCURVE", "535 -107 OFFCURVE", "367 -107 CURVE SMOOTH", "157 -107 OFFCURVE", "55 -49 OFFCURVE", "63 68 CURVE SMOOTH", "66 114 OFFCURVE", "83 162 OFFCURVE", "114 214 CURVE SMOOTH", "127 235 OFFCURVE", "138 242 OFFCURVE", "149 233 CURVE SMOOTH", "155 228 OFFCURVE", "154 219 OFFCURVE", "147 205 CURVE SMOOTH", "125 164 OFFCURVE", "118 135 OFFCURVE", "126 121 CURVE SMOOTH", "161 56 OFFCURVE", "246 25 OFFCURVE", "381 27 CURVE SMOOTH", "516 29 OFFCURVE", "633 49 OFFCURVE", "736 84 CURVE", "720 103 OFFCURVE", "715 133 OFFCURVE", "722 173 CURVE SMOOTH", "729 213 OFFCURVE", "747 255 OFFCURVE", "778 300 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "811 236 OFFCURVE", "789 216 OFFCURVE", "772 173 CURVE", "782 147 OFFCURVE", "800 133 OFFCURVE", "824 133 CURVE SMOOTH", "848 133 OFFCURVE", "867 142 OFFCURVE", "882 161 CURVE", "880 208 OFFCURVE", "866 232 OFFCURVE", "839 234 CURVE SMOOTH" ); } ); width = 1005; } ); }, { glyphname = aFaa.init; layers = ( { anchors = ( { name = DotAbove; position = "{78, 562}"; }, { name = DotBelow; position = "{146, -146}"; }, { name = HamzaAbove; position = "{78, 562}"; }, { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{59, 562}"; }, { name = TwoDotsBelow; position = "{98, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "124 409 OFFCURVE", "134 404 OFFCURVE", "147 393 CURVE SMOOTH", "207 341 OFFCURVE", "235 274 OFFCURVE", "232 195 CURVE SMOOTH", "230 153 OFFCURVE", "220 120 OFFCURVE", "201 95 CURVE SMOOTH", "152 32 OFFCURVE", "85 0 OFFCURVE", "0 0 CURVE", "-8 0 OFFCURVE", "-15 8 OFFCURVE", "-19 23 CURVE SMOOTH", "-23 38 OFFCURVE", "-22 54 OFFCURVE", "-19 68 CURVE SMOOTH", "-16 82 OFFCURVE", "-9 89 OFFCURVE", "0 90 CURVE SMOOTH", "83 96 OFFCURVE", "146 120 OFFCURVE", "188 162 CURVE", "186 182 OFFCURVE", "184 194 OFFCURVE", "179 201 CURVE SMOOTH", "174 208 OFFCURVE", "170 211 OFFCURVE", "167 210 CURVE SMOOTH", "164 209 OFFCURVE", "163 208 OFFCURVE", "162 206 CURVE SMOOTH", "151 177 OFFCURVE", "133 159 OFFCURVE", "110 154 CURVE SMOOTH", "37 138 OFFCURVE", "3 167 OFFCURVE", "9 239 CURVE SMOOTH", "12 274 OFFCURVE", "26 312 OFFCURVE", "49 351 CURVE SMOOTH", "72 390 OFFCURVE", "94 409 OFFCURVE", "115 409 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "67 300 OFFCURVE", "58 287 OFFCURVE", "55 262 CURVE SMOOTH", "55 258 OFFCURVE", "55 256 OFFCURVE", "56 256 CURVE SMOOTH", "69 252 OFFCURVE", "83 251 OFFCURVE", "97 253 CURVE SMOOTH", "111 255 OFFCURVE", "120 260 OFFCURVE", "124 266 CURVE", "109 290 OFFCURVE", "94 302 OFFCURVE", "82 301 CURVE SMOOTH" ); } ); width = 295; }, { anchors = ( { name = DotAbove; position = "{78, 562}"; }, { name = DotBelow; position = "{146, -146}"; }, { name = HamzaAbove; position = "{78, 562}"; }, { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{59, 562}"; }, { name = TwoDotsBelow; position = "{98, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "62 320 OFFCURVE", "53 306 OFFCURVE", "51 276 CURVE", "61 273 OFFCURVE", "74 271 OFFCURVE", "90 273 CURVE SMOOTH", "106 275 OFFCURVE", "115 279 OFFCURVE", "119 285 CURVE", "104 308 OFFCURVE", "90 320 OFFCURVE", "77 320 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "122 443 OFFCURVE", "139 436 OFFCURVE", "152 423 CURVE SMOOTH", "205 369 OFFCURVE", "232 296 OFFCURVE", "232 204 CURVE SMOOTH", "232 151 OFFCURVE", "222 111 OFFCURVE", "203 86 CURVE", "149 17 OFFCURVE", "81 -17 OFFCURVE", "0 -15 CURVE SMOOTH", "-16 -15 OFFCURVE", "-27 -4 OFFCURVE", "-32 16 CURVE SMOOTH", "-37 36 OFFCURVE", "-37 55 OFFCURVE", "-32 74 CURVE SMOOTH", "-27 94 OFFCURVE", "-17 104 OFFCURVE", "-1 105 CURVE SMOOTH", "83 111 OFFCURVE", "145 131 OFFCURVE", "183 167 CURVE", "181 189 OFFCURVE", "178 203 OFFCURVE", "175 206 CURVE SMOOTH", "171 211 OFFCURVE", "167 209 OFFCURVE", "162 201 CURVE SMOOTH", "149 179 OFFCURVE", "132 166 OFFCURVE", "112 161 CURVE SMOOTH", "47 145 OFFCURVE", "12 162 OFFCURVE", "8 212 CURVE SMOOTH", "3 270 OFFCURVE", "11 323 OFFCURVE", "33 371 CURVE SMOOTH", "55 419 OFFCURVE", "78 443 OFFCURVE", "102 443 CURVE SMOOTH" ); } ); width = 295; } ); }, { glyphname = aFaa.isol; layers = ( { anchors = ( { name = DotAbove; position = "{635, 659}"; }, { name = DotAlt; position = "{488, -146}"; }, { name = DotBelow; position = "{830, -49}"; }, { name = HamzaAbove; position = "{635, 659}"; }, { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; }, { name = TwoDotsAbove; position = "{581, 659}"; }, { name = TwoDotsBelow; position = "{781, -49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "823 512 OFFCURVE", "849 496 OFFCURVE", "875 455 CURVE SMOOTH", "901 414 OFFCURVE", "916 356 OFFCURVE", "920 281 CURVE SMOOTH", "922 254 OFFCURVE", "919 231 OFFCURVE", "911 212 CURVE SMOOTH", "893 170 OFFCURVE", "852 133 OFFCURVE", "787 99 CURVE SMOOTH", "722 65 OFFCURVE", "648 40 OFFCURVE", "564 21 CURVE SMOOTH", "480 2 OFFCURVE", "403 -8 OFFCURVE", "333 -8 CURVE SMOOTH", "165 -9 OFFCURVE", "75 43 OFFCURVE", "64 149 CURVE SMOOTH", "62 167 OFFCURVE", "64 194 OFFCURVE", "71 227 CURVE SMOOTH", "78 260 OFFCURVE", "92 292 OFFCURVE", "114 323 CURVE SMOOTH", "117 328 OFFCURVE", "121 329 OFFCURVE", "125 329 CURVE SMOOTH", "129 329 OFFCURVE", "133 326 OFFCURVE", "134 322 CURVE SMOOTH", "135 318 OFFCURVE", "135 314 OFFCURVE", "132 310 CURVE SMOOTH", "84 234 OFFCURVE", "85 178 OFFCURVE", "132 144 CURVE SMOOTH", "201 94 OFFCURVE", "311 78 OFFCURVE", "461 96 CURVE SMOOTH", "584 111 OFFCURVE", "707 149 OFFCURVE", "830 212 CURVE SMOOTH", "866 230 OFFCURVE", "887 251 OFFCURVE", "892 275 CURVE", "889 291 OFFCURVE", "880 306 OFFCURVE", "866 317 CURVE SMOOTH", "865 318 OFFCURVE", "862 316 OFFCURVE", "860 312 CURVE SMOOTH", "842 277 OFFCURVE", "819 258 OFFCURVE", "792 254 CURVE SMOOTH", "738 246 OFFCURVE", "707 268 OFFCURVE", "698 318 CURVE SMOOTH", "692 352 OFFCURVE", "711 403 OFFCURVE", "755 471 CURVE SMOOTH", "766 488 OFFCURVE", "779 499 OFFCURVE", "796 504 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "814 369 OFFCURVE", "813 375 OFFCURVE", "806 381 CURVE SMOOTH", "782 401 OFFCURVE", "763 399 OFFCURVE", "750 375 CURVE SMOOTH", "747 369 OFFCURVE", "747 365 OFFCURVE", "751 361 CURVE SMOOTH", "770 345 OFFCURVE", "789 346 OFFCURVE", "807 363 CURVE SMOOTH" ); } ); width = 983; }, { anchors = ( { name = DotAbove; position = "{635, 659}"; }, { name = DotAlt; position = "{488, -146}"; }, { name = DotBelow; position = "{830, -49}"; }, { name = HamzaAbove; position = "{635, 659}"; }, { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{526, -327}"; }, { name = TwoDotsAbove; position = "{581, 659}"; }, { name = TwoDotsBelow; position = "{781, -49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "804 383 OFFCURVE", "803 390 OFFCURVE", "796 396 CURVE SMOOTH", "772 416 OFFCURVE", "753 414 OFFCURVE", "740 390 CURVE SMOOTH", "737 384 OFFCURVE", "737 380 OFFCURVE", "741 376 CURVE SMOOTH", "760 360 OFFCURVE", "779 360 OFFCURVE", "797 377 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "899 430 OFFCURVE", "915 364 OFFCURVE", "920 282 CURVE SMOOTH", "922 252 OFFCURVE", "919 227 OFFCURVE", "910 206 CURVE SMOOTH", "891 161 OFFCURVE", "850 122 OFFCURVE", "788 87 CURVE SMOOTH", "726 52 OFFCURVE", "653 25 OFFCURVE", "568 6 CURVE SMOOTH", "483 -13 OFFCURVE", "404 -23 OFFCURVE", "333 -23 CURVE SMOOTH", "165 -24 OFFCURVE", "76 33 OFFCURVE", "64 148 CURVE SMOOTH", "61 174 OFFCURVE", "65 204 OFFCURVE", "74 238 CURVE SMOOTH", "83 272 OFFCURVE", "93 295 OFFCURVE", "105 310 CURVE SMOOTH", "117 325 OFFCURVE", "126 330 OFFCURVE", "133 325 CURVE SMOOTH", "140 320 OFFCURVE", "139 309 OFFCURVE", "130 292 CURVE SMOOTH", "96 230 OFFCURVE", "101 185 OFFCURVE", "141 156 CURVE SMOOTH", "208 108 OFFCURVE", "313 92 OFFCURVE", "459 110 CURVE SMOOTH", "588 126 OFFCURVE", "709 164 OFFCURVE", "823 225 CURVE SMOOTH", "857 243 OFFCURVE", "874 260 OFFCURVE", "876 276 CURVE", "876 283 OFFCURVE", "870 295 OFFCURVE", "857 310 CURVE", "844 281 OFFCURVE", "820 262 OFFCURVE", "784 254 CURVE SMOOTH", "723 243 OFFCURVE", "691 268 OFFCURVE", "688 330 CURVE SMOOTH", "687 376 OFFCURVE", "707 431 OFFCURVE", "748 493 CURVE SMOOTH", "767 523 OFFCURVE", "786 538 OFFCURVE", "807 537 CURVE SMOOTH", "828 536 OFFCURVE", "848 517 OFFCURVE", "869 480 CURVE" ); } ); width = 983; } ); }, { glyphname = aFaa.medi; layers = ( { anchors = ( { name = DotAbove; position = "{237, 586}"; }, { name = DotBelow; position = "{181, -146}"; }, { name = HamzaAbove; position = "{195, 586}"; }, { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; }, { name = TwoDotsAbove; position = "{146, 586}"; }, { name = TwoDotsBelow; position = "{132, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "287 379 OFFCURVE", "289 378 OFFCURVE", "292 377 CURVE SMOOTH", "308 367 OFFCURVE", "318 349 OFFCURVE", "323 322 CURVE SMOOTH", "332 271 OFFCURVE", "326 223 OFFCURVE", "306 179 CURVE SMOOTH", "296 158 OFFCURVE", "284 136 OFFCURVE", "270 115 CURVE", "311 100 OFFCURVE", "347 91 OFFCURVE", "378 90 CURVE SMOOTH", "384 90 OFFCURVE", "389 81 OFFCURVE", "390 65 CURVE SMOOTH", "394 22 OFFCURVE", "389 1 OFFCURVE", "378 0 CURVE SMOOTH", "323 -6 OFFCURVE", "255 14 OFFCURVE", "172 58 CURVE", "148 46 OFFCURVE", "116 33 OFFCURVE", "77 20 CURVE SMOOTH", "38 7 OFFCURVE", "12 0 OFFCURVE", "0 0 CURVE SMOOTH", "-8 0 OFFCURVE", "-14 7 OFFCURVE", "-18 22 CURVE SMOOTH", "-22 37 OFFCURVE", "-21 51 OFFCURVE", "-18 66 CURVE SMOOTH", "-15 81 OFFCURVE", "-9 89 OFFCURVE", "0 90 CURVE SMOOTH", "38 96 OFFCURVE", "73 105 OFFCURVE", "106 116 CURVE", "101 146 OFFCURVE", "105 177 OFFCURVE", "118 211 CURVE SMOOTH", "139 266 OFFCURVE", "175 314 OFFCURVE", "230 355 CURVE SMOOTH", "251 371 OFFCURVE", "269 379 OFFCURVE", "283 379 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "206 276 OFFCURVE", "177 259 OFFCURVE", "151 222 CURVE", "144 213 OFFCURVE", "147 198 OFFCURVE", "162 178 CURVE SMOOTH", "177 158 OFFCURVE", "193 148 OFFCURVE", "213 148 CURVE SMOOTH", "233 148 OFFCURVE", "255 162 OFFCURVE", "279 187 CURVE", "281 238 OFFCURVE", "267 266 OFFCURVE", "238 273 CURVE" ); } ); width = 378; }, { anchors = ( { name = DotAbove; position = "{237, 586}"; }, { name = DotBelow; position = "{181, -146}"; }, { name = HamzaAbove; position = "{195, 586}"; }, { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; }, { name = TwoDotsAbove; position = "{146, 586}"; }, { name = TwoDotsBelow; position = "{132, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "290 394 OFFCURVE", "296 392 OFFCURVE", "300 390 CURVE SMOOTH", "320 378 OFFCURVE", "332 356 OFFCURVE", "338 325 CURVE SMOOTH", "347 271 OFFCURVE", "340 220 OFFCURVE", "319 173 CURVE SMOOTH", "311 156 OFFCURVE", "302 140 OFFCURVE", "292 123 CURVE", "325 112 OFFCURVE", "354 106 OFFCURVE", "379 105 CURVE SMOOTH", "394 104 OFFCURVE", "402 89 OFFCURVE", "405 59 CURVE SMOOTH", "408 29 OFFCURVE", "406 9 OFFCURVE", "399 -2 CURVE", "394 -9 OFFCURVE", "388 -14 OFFCURVE", "380 -15 CURVE SMOOTH", "324 -21 OFFCURVE", "254 -2 OFFCURVE", "171 41 CURVE", "147 30 OFFCURVE", "116 18 OFFCURVE", "78 5 CURVE SMOOTH", "40 -8 OFFCURVE", "14 -15 OFFCURVE", "-1 -15 CURVE SMOOTH", "-16 -15 OFFCURVE", "-26 -6 OFFCURVE", "-31 14 CURVE SMOOTH", "-36 34 OFFCURVE", "-35 54 OFFCURVE", "-31 73 CURVE SMOOTH", "-27 92 OFFCURVE", "-17 102 OFFCURVE", "-2 105 CURVE", "31 110 OFFCURVE", "61 117 OFFCURVE", "90 126 CURVE", "88 155 OFFCURVE", "92 185 OFFCURVE", "104 216 CURVE SMOOTH", "126 274 OFFCURVE", "165 324 OFFCURVE", "222 367 CURVE SMOOTH", "245 385 OFFCURVE", "266 394 OFFCURVE", "283 394 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "200 260 OFFCURVE", "171 244 OFFCURVE", "148 213 CURVE", "175 157 OFFCURVE", "217 151 OFFCURVE", "274 193 CURVE", "274 236 OFFCURVE", "261 258 OFFCURVE", "235 259 CURVE SMOOTH" ); } ); width = 378; } ); }, { glyphname = aHaa.fina; layers = ( { anchors = ( { name = DigitBelow; position = "{391, -34}"; }, { name = DotAbove; position = "{342, 439}"; }, { name = DotBelow; position = "{391, -156}"; }, { name = HamzaAbove; position = "{342, 439}"; }, { name = HamzaBelow; position = "{391, -156}"; }, { name = TaaAbove; position = "{342, 439}"; }, { name = TaaBelow; position = "{342, 146}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; }, { name = TwoDotsAbove; position = "{288, 439}"; }, { name = TwoDotsBelow; position = "{336, -156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "235 260 OFFCURVE", "274 256 OFFCURVE", "327 247 CURVE SMOOTH", "427 230 OFFCURVE", "522 230 OFFCURVE", "611 247 CURVE SMOOTH", "631 251 OFFCURVE", "636 244 OFFCURVE", "628 227 CURVE SMOOTH", "605 175 LINE SMOOTH", "602 169 OFFCURVE", "599 167 OFFCURVE", "594 166 CURVE SMOOTH", "546 160 OFFCURVE", "506 153 OFFCURVE", "472 146 CURVE", "476 131 OFFCURVE", "486 118 OFFCURVE", "499 110 CURVE SMOOTH", "529 91 OFFCURVE", "576 84 OFFCURVE", "640 90 CURVE SMOOTH", "652 91 OFFCURVE", "660 84 OFFCURVE", "663 68 CURVE SMOOTH", "666 52 OFFCURVE", "665 38 OFFCURVE", "660 23 CURVE SMOOTH", "655 8 OFFCURVE", "648 1 OFFCURVE", "640 0 CURVE SMOOTH", "517 -7 OFFCURVE", "449 16 OFFCURVE", "435 69 CURVE SMOOTH", "429 92 OFFCURVE", "428 115 OFFCURVE", "432 138 CURVE", "361 121 OFFCURVE", "305 99 OFFCURVE", "262 71 CURVE SMOOTH", "209 36 OFFCURVE", "169 -8 OFFCURVE", "143 -62 CURVE SMOOTH", "117 -116 OFFCURVE", "107 -168 OFFCURVE", "115 -218 CURVE SMOOTH", "127 -297 OFFCURVE", "173 -357 OFFCURVE", "254 -397 CURVE SMOOTH", "308 -423 OFFCURVE", "424 -429 OFFCURVE", "601 -414 CURVE SMOOTH", "687 -407 OFFCURVE", "731 -403 OFFCURVE", "732 -403 CURVE SMOOTH", "747 -402 OFFCURVE", "754 -405 OFFCURVE", "754 -412 CURVE SMOOTH", "754 -419 OFFCURVE", "745 -426 OFFCURVE", "727 -432 CURVE SMOOTH", "698 -441 OFFCURVE", "671 -454 OFFCURVE", "645 -471 CURVE SMOOTH", "619 -488 OFFCURVE", "603 -499 OFFCURVE", "597 -502 CURVE SMOOTH", "591 -505 OFFCURVE", "586 -506 OFFCURVE", "580 -507 CURVE SMOOTH", "376 -530 OFFCURVE", "234 -511 OFFCURVE", "155 -451 CURVE SMOOTH", "87 -400 OFFCURVE", "57 -324 OFFCURVE", "64 -225 CURVE SMOOTH", "77 -44 OFFCURVE", "160 84 OFFCURVE", "314 158 CURVE", "230 178 OFFCURVE", "159 173 OFFCURVE", "101 144 CURVE SMOOTH", "97 142 OFFCURVE", "93 142 OFFCURVE", "89 144 CURVE SMOOTH", "85 146 OFFCURVE", "83 147 OFFCURVE", "83 151 CURVE SMOOTH", "85 223 OFFCURVE", "127 259 OFFCURVE", "209 260 CURVE SMOOTH" ); } ); width = 639; }, { anchors = ( { name = DigitBelow; position = "{391, -34}"; }, { name = DotAbove; position = "{342, 439}"; }, { name = DotBelow; position = "{391, -156}"; }, { name = HamzaAbove; position = "{342, 439}"; }, { name = HamzaBelow; position = "{391, -156}"; }, { name = TaaAbove; position = "{342, 439}"; }, { name = TaaBelow; position = "{342, 146}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; }, { name = TwoDotsAbove; position = "{288, 439}"; }, { name = TwoDotsBelow; position = "{336, -156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "86 232 OFFCURVE", "129 274 OFFCURVE", "213 275 CURVE SMOOTH", "237 275 OFFCURVE", "277 271 OFFCURVE", "330 262 CURVE", "416 247 OFFCURVE", "504 246 OFFCURVE", "594 261 CURVE SMOOTH", "629 267 OFFCURVE", "642 259 OFFCURVE", "633 238 CURVE SMOOTH", "604 169 LINE SMOOTH", "599 158 OFFCURVE", "592 152 OFFCURVE", "582 151 CURVE", "542 147 OFFCURVE", "507 141 OFFCURVE", "479 133 CURVE", "498 107 OFFCURVE", "551 98 OFFCURVE", "638 105 CURVE SMOOTH", "659 107 OFFCURVE", "672 95 OFFCURVE", "677 71 CURVE", "681 52 OFFCURVE", "679 34 OFFCURVE", "672 15 CURVE SMOOTH", "665 -4 OFFCURVE", "655 -15 OFFCURVE", "641 -15 CURVE SMOOTH", "551 -15 OFFCURVE", "492 -3 OFFCURVE", "465 21 CURVE SMOOTH", "438 45 OFFCURVE", "426 78 OFFCURVE", "430 120 CURVE", "372 108 OFFCURVE", "319 88 OFFCURVE", "270 59 CURVE SMOOTH", "208 22 OFFCURVE", "164 -22 OFFCURVE", "140 -72 CURVE SMOOTH", "116 -122 OFFCURVE", "107 -170 OFFCURVE", "115 -216 CURVE SMOOTH", "132 -315 OFFCURVE", "199 -376 OFFCURVE", "317 -399 CURVE SMOOTH", "419 -419 OFFCURVE", "551 -419 OFFCURVE", "714 -398 CURVE SMOOTH", "740 -395 OFFCURVE", "754 -399 OFFCURVE", "754 -412 CURVE SMOOTH", "754 -422 OFFCURVE", "740 -431 OFFCURVE", "712 -440 CURVE SMOOTH", "684 -449 OFFCURVE", "658 -463 OFFCURVE", "632 -482 CURVE SMOOTH", "606 -501 OFFCURVE", "590 -512 OFFCURVE", "583 -515 CURVE SMOOTH", "576 -518 OFFCURVE", "569 -520 OFFCURVE", "562 -521 CURVE SMOOTH", "363 -545 OFFCURVE", "224 -526 OFFCURVE", "146 -463 CURVE SMOOTH", "83 -413 OFFCURVE", "56 -333 OFFCURVE", "64 -224 CURVE SMOOTH", "77 -52 OFFCURVE", "146 72 OFFCURVE", "271 151 CURVE", "209 160 OFFCURVE", "154 154 OFFCURVE", "107 131 CURVE SMOOTH", "90 123 OFFCURVE", "82 129 OFFCURVE", "83 151 CURVE SMOOTH" ); } ); width = 639; } ); }, { glyphname = aHaa.init; layers = ( { anchors = ( { name = DigitBelow; position = "{303, -99}"; }, { name = DotAbove; position = "{303, 464}"; }, { name = DotBelow; position = "{303, -99}"; }, { name = HamzaAbove; position = "{303, 464}"; }, { name = HamzaBelow; position = "{303, -99}"; }, { name = TaaAbove; position = "{303, 464}"; }, { name = TaaBelow; position = "{303, 97}"; }, { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; }, { name = TwoDotsAbove; position = "{254, 464}"; }, { name = TwoDotsBelow; position = "{249, -99}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "11 239 OFFCURVE", "24 260 OFFCURVE", "46 281 CURVE SMOOTH", "68 302 OFFCURVE", "92 313 OFFCURVE", "117 313 CURVE SMOOTH", "142 313 OFFCURVE", "200 294 OFFCURVE", "291 256 CURVE SMOOTH", "324 242 OFFCURVE", "367 231 OFFCURVE", "418 221 CURVE SMOOTH", "469 211 OFFCURVE", "522 208 OFFCURVE", "576 212 CURVE SMOOTH", "591 213 OFFCURVE", "595 207 OFFCURVE", "589 194 CURVE SMOOTH", "561 133 LINE SMOOTH", "557 125 OFFCURVE", "551 122 OFFCURVE", "540 124 CURVE SMOOTH", "464 137 OFFCURVE", "393 133 OFFCURVE", "326 113 CURVE", "244 86 OFFCURVE", "177 60 OFFCURVE", "128 36 CURVE SMOOTH", "80 12 OFFCURVE", "38 0 OFFCURVE", "0 0 CURVE SMOOTH", "-4 0 OFFCURVE", "-7 3 OFFCURVE", "-10 10 CURVE SMOOTH", "-18 31 OFFCURVE", "-19 49 OFFCURVE", "-15 65 CURVE SMOOTH", "-11 81 OFFCURVE", "-6 89 OFFCURVE", "0 90 CURVE SMOOTH", "96 97 OFFCURVE", "184 122 OFFCURVE", "265 163 CURVE", "176 214 OFFCURVE", "96 227 OFFCURVE", "22 204 CURVE SMOOTH", "17 202 OFFCURVE", "12 203 OFFCURVE", "9 206 CURVE SMOOTH", "6 209 OFFCURVE", "5 213 OFFCURVE", "6 218 CURVE SMOOTH" ); } ); width = 655; }, { anchors = ( { name = DigitBelow; position = "{303, -99}"; }, { name = DotAbove; position = "{303, 464}"; }, { name = DotBelow; position = "{303, -99}"; }, { name = HamzaAbove; position = "{303, 464}"; }, { name = HamzaBelow; position = "{303, -99}"; }, { name = TaaAbove; position = "{303, 464}"; }, { name = TaaBelow; position = "{303, 97}"; }, { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; }, { name = TwoDotsAbove; position = "{254, 464}"; }, { name = TwoDotsBelow; position = "{249, -99}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "12 245 OFFCURVE", "28 269 OFFCURVE", "52 292 CURVE SMOOTH", "76 315 OFFCURVE", "100 327 OFFCURVE", "123 327 CURVE SMOOTH", "146 327 OFFCURVE", "202 310 OFFCURVE", "288 274 CURVE SMOOTH", "374 238 OFFCURVE", "470 222 OFFCURVE", "575 227 CURVE SMOOTH", "595 228 OFFCURVE", "597 215 OFFCURVE", "585 188 CURVE SMOOTH", "558 126 LINE SMOOTH", "552 114 OFFCURVE", "545 108 OFFCURVE", "537 109 CURVE", "460 122 OFFCURVE", "388 117 OFFCURVE", "321 96 CURVE SMOOTH", "254 75 OFFCURVE", "193 52 OFFCURVE", "140 25 CURVE SMOOTH", "87 -2 OFFCURVE", "40 -15 OFFCURVE", "0 -15 CURVE", "-11 -15 OFFCURVE", "-19 -8 OFFCURVE", "-24 4 CURVE", "-33 28 OFFCURVE", "-35 49 OFFCURVE", "-30 67 CURVE SMOOTH", "-25 85 OFFCURVE", "-20 96 OFFCURVE", "-15 99 CURVE SMOOTH", "-10 102 OFFCURVE", "-5 104 OFFCURVE", "-1 105 CURVE", "102 111 OFFCURVE", "187 130 OFFCURVE", "257 163 CURVE", "162 206 OFFCURVE", "85 218 OFFCURVE", "26 200 CURVE SMOOTH", "7 193 OFFCURVE", "1 201 OFFCURVE", "6 222 CURVE SMOOTH" ); } ); width = 655; } ); }, { glyphname = aHaa.isol; layers = ( { anchors = ( { name = DigitBelow; position = "{391, -34}"; }, { name = DotAbove; position = "{342, 439}"; }, { name = DotBelow; position = "{391, -156}"; }, { name = HamzaAbove; position = "{342, 439}"; }, { name = HamzaBelow; position = "{391, -156}"; }, { name = TaaAbove; position = "{342, 439}"; }, { name = TaaBelow; position = "{391, 146}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; }, { name = TwoDotsAbove; position = "{288, 439}"; }, { name = TwoDotsBelow; position = "{336, -156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "609 172 LINE SMOOTH", "606 166 OFFCURVE", "603 164 OFFCURVE", "598 163 CURVE SMOOTH", "438 142 OFFCURVE", "327 111 OFFCURVE", "263 69 CURVE SMOOTH", "138 -13 OFFCURVE", "89 -112 OFFCURVE", "116 -228 CURVE SMOOTH", "131 -292 OFFCURVE", "179 -342 OFFCURVE", "260 -378 CURVE SMOOTH", "304 -397 OFFCURVE", "374 -410 OFFCURVE", "469 -416 CURVE SMOOTH", "564 -422 OFFCURVE", "653 -420 OFFCURVE", "735 -413 CURVE SMOOTH", "745 -412 OFFCURVE", "752 -413 OFFCURVE", "755 -417 CURVE SMOOTH", "758 -421 OFFCURVE", "758 -425 OFFCURVE", "755 -430 CURVE SMOOTH", "752 -435 OFFCURVE", "747 -437 OFFCURVE", "742 -439 CURVE SMOOTH", "702 -451 OFFCURVE", "670 -464 OFFCURVE", "647 -478 CURVE SMOOTH", "613 -499 OFFCURVE", "591 -508 OFFCURVE", "583 -509 CURVE SMOOTH", "387 -526 OFFCURVE", "246 -503 OFFCURVE", "159 -440 CURVE SMOOTH", "72 -377 OFFCURVE", "44 -277 OFFCURVE", "75 -142 CURVE SMOOTH", "106 -7 OFFCURVE", "186 93 OFFCURVE", "317 155 CURVE", "227 177 OFFCURVE", "160 174 OFFCURVE", "115 148 CURVE SMOOTH", "111 146 OFFCURVE", "107 145 OFFCURVE", "103 146 CURVE SMOOTH", "99 147 OFFCURVE", "98 149 OFFCURVE", "98 153 CURVE SMOOTH", "99 169 OFFCURVE", "102 185 OFFCURVE", "108 202 CURVE SMOOTH", "120 237 OFFCURVE", "152 256 OFFCURVE", "204 259 CURVE SMOOTH", "230 260 OFFCURVE", "271 255 OFFCURVE", "327 244 CURVE SMOOTH", "383 233 OFFCURVE", "431 228 OFFCURVE", "470 229 CURVE SMOOTH", "509 230 OFFCURVE", "557 234 OFFCURVE", "614 244 CURVE SMOOTH", "634 247 OFFCURVE", "640 241 OFFCURVE", "633 226 CURVE SMOOTH" ); } ); width = 661; }, { anchors = ( { name = DigitBelow; position = "{391, -34}"; }, { name = DotAbove; position = "{342, 439}"; }, { name = DotBelow; position = "{391, -156}"; }, { name = HamzaAbove; position = "{342, 439}"; }, { name = HamzaBelow; position = "{391, -156}"; }, { name = TaaAbove; position = "{342, 439}"; }, { name = TaaBelow; position = "{391, 146}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, 49}"; }, { name = TwoDotsAbove; position = "{288, 439}"; }, { name = TwoDotsBelow; position = "{336, -156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "208 22 OFFCURVE", "164 -22 OFFCURVE", "140 -72 CURVE SMOOTH", "116 -122 OFFCURVE", "107 -170 OFFCURVE", "115 -216 CURVE SMOOTH", "132 -315 OFFCURVE", "199 -376 OFFCURVE", "317 -399 CURVE SMOOTH", "416 -419 OFFCURVE", "548 -419 OFFCURVE", "714 -398 CURVE SMOOTH", "740 -395 OFFCURVE", "754 -399 OFFCURVE", "754 -412 CURVE SMOOTH", "754 -422 OFFCURVE", "740 -431 OFFCURVE", "712 -440 CURVE SMOOTH", "684 -449 OFFCURVE", "658 -463 OFFCURVE", "632 -482 CURVE SMOOTH", "606 -501 OFFCURVE", "590 -512 OFFCURVE", "583 -515 CURVE SMOOTH", "576 -518 OFFCURVE", "569 -520 OFFCURVE", "562 -521 CURVE SMOOTH", "363 -545 OFFCURVE", "224 -526 OFFCURVE", "146 -463 CURVE SMOOTH", "83 -413 OFFCURVE", "56 -333 OFFCURVE", "64 -224 CURVE SMOOTH", "77 -52 OFFCURVE", "146 72 OFFCURVE", "271 151 CURVE", "210 160 OFFCURVE", "160 155 OFFCURVE", "122 136 CURVE SMOOTH", "105 128 OFFCURVE", "97 135 OFFCURVE", "98 157 CURVE SMOOTH", "100 234 OFFCURVE", "144 273 OFFCURVE", "228 275 CURVE SMOOTH", "243 275 OFFCURVE", "277 271 OFFCURVE", "330 262 CURVE SMOOTH", "416 247 OFFCURVE", "504 246 OFFCURVE", "594 261 CURVE SMOOTH", "629 267 OFFCURVE", "642 259 OFFCURVE", "633 238 CURVE SMOOTH", "604 169 LINE SMOOTH", "599 156 OFFCURVE", "592 149 OFFCURVE", "582 148 CURVE SMOOTH", "455 137 OFFCURVE", "351 107 OFFCURVE", "270 59 CURVE SMOOTH" ); } ); width = 661; } ); }, { glyphname = aHaa.medi; layers = ( { anchors = ( { name = DigitBelow; position = "{293, -93}"; }, { name = DotAbove; position = "{317, 464}"; }, { name = DotBelow; position = "{293, -93}"; }, { name = HamzaAbove; position = "{317, 464}"; }, { name = HamzaBelow; position = "{293, -93}"; }, { name = TaaAbove; position = "{317, 464}"; }, { name = TaaBelow; position = "{293, 103}"; }, { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{269, 464}"; }, { name = TwoDotsBelow; position = "{239, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "154 313 OFFCURVE", "202 297 OFFCURVE", "284 264 CURVE SMOOTH", "326 247 OFFCURVE", "376 234 OFFCURVE", "433 226 CURVE SMOOTH", "490 218 OFFCURVE", "544 217 OFFCURVE", "595 224 CURVE SMOOTH", "604 225 OFFCURVE", "608 220 OFFCURVE", "605 209 CURVE SMOOTH", "598 180 OFFCURVE", "591 157 OFFCURVE", "584 139 CURVE SMOOTH", "582 134 OFFCURVE", "578 131 OFFCURVE", "572 132 CURVE SMOOTH", "538 135 OFFCURVE", "509 136 OFFCURVE", "485 137 CURVE", "475 117 OFFCURVE", "484 104 OFFCURVE", "510 96 CURVE SMOOTH", "536 88 OFFCURVE", "569 86 OFFCURVE", "610 90 CURVE SMOOTH", "637 92 OFFCURVE", "643 70 OFFCURVE", "629 22 CURVE SMOOTH", "625 8 OFFCURVE", "618 1 OFFCURVE", "610 0 CURVE SMOOTH", "559 -7 OFFCURVE", "518 -4 OFFCURVE", "485 7 CURVE SMOOTH", "440 23 OFFCURVE", "426 59 OFFCURVE", "443 117 CURVE SMOOTH", "446 126 OFFCURVE", "447 132 OFFCURVE", "448 135 CURVE", "387 131 OFFCURVE", "323 120 OFFCURVE", "257 100 CURVE SMOOTH", "230 92 OFFCURVE", "187 73 OFFCURVE", "128 44 CURVE SMOOTH", "69 15 OFFCURVE", "27 0 OFFCURVE", "0 0 CURVE SMOOTH", "-9 0 OFFCURVE", "-16 7 OFFCURVE", "-21 20 CURVE SMOOTH", "-26 33 OFFCURVE", "-27 46 OFFCURVE", "-24 62 CURVE SMOOTH", "-20 79 OFFCURVE", "-13 88 OFFCURVE", "0 90 CURVE SMOOTH", "57 100 OFFCURVE", "103 113 OFFCURVE", "138 128 CURVE SMOOTH", "182 148 OFFCURVE", "212 161 OFFCURVE", "232 167 CURVE SMOOTH", "239 169 OFFCURVE", "242 172 OFFCURVE", "241 175 CURVE SMOOTH", "241 178 OFFCURVE", "238 180 OFFCURVE", "233 182 CURVE SMOOTH", "183 203 OFFCURVE", "143 215 OFFCURVE", "114 218 CURVE SMOOTH", "85 221 OFFCURVE", "57 215 OFFCURVE", "32 201 CURVE SMOOTH", "26 198 OFFCURVE", "21 197 OFFCURVE", "16 198 CURVE SMOOTH", "11 199 OFFCURVE", "10 205 OFFCURVE", "12 213 CURVE SMOOTH", "29 275 OFFCURVE", "72 308 OFFCURVE", "139 312 CURVE SMOOTH" ); } ); width = 610; }, { anchors = ( { name = DigitBelow; position = "{293, -93}"; }, { name = DotAbove; position = "{317, 464}"; }, { name = DotBelow; position = "{293, -93}"; }, { name = HamzaAbove; position = "{317, 464}"; }, { name = HamzaBelow; position = "{293, -93}"; }, { name = TaaAbove; position = "{317, 464}"; }, { name = TaaBelow; position = "{293, 103}"; }, { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{269, 464}"; }, { name = TwoDotsBelow; position = "{239, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "30 294 OFFCURVE", "73 330 OFFCURVE", "143 330 CURVE SMOOTH", "175 330 OFFCURVE", "224 315 OFFCURVE", "290 283 CURVE SMOOTH", "322 268 OFFCURVE", "364 256 OFFCURVE", "419 248 CURVE SMOOTH", "474 240 OFFCURVE", "527 238 OFFCURVE", "579 244 CURVE SMOOTH", "602 247 OFFCURVE", "610 240 OFFCURVE", "605 222 CURVE SMOOTH", "583 148 LINE SMOOTH", "579 136 OFFCURVE", "570 131 OFFCURVE", "555 132 CURVE SMOOTH", "528 134 OFFCURVE", "506 136 OFFCURVE", "486 137 CURVE", "477 112 OFFCURVE", "518 101 OFFCURVE", "611 103 CURVE SMOOTH", "650 104 OFFCURVE", "661 76 OFFCURVE", "644 18 CURVE", "637 -2 OFFCURVE", "626 -13 OFFCURVE", "612 -15 CURVE SMOOTH", "557 -22 OFFCURVE", "513 -19 OFFCURVE", "480 -7 CURVE SMOOTH", "434 10 OFFCURVE", "422 57 OFFCURVE", "443 134 CURVE", "389 129 OFFCURVE", "339 118 OFFCURVE", "292 100 CURVE SMOOTH", "245 82 OFFCURVE", "191 59 OFFCURVE", "131 29 CURVE SMOOTH", "71 -1 OFFCURVE", "28 -16 OFFCURVE", "0 -15 CURVE SMOOTH", "-16 -15 OFFCURVE", "-27 -5 OFFCURVE", "-34 12 CURVE SMOOTH", "-41 29 OFFCURVE", "-43 48 OFFCURVE", "-38 69 CURVE SMOOTH", "-33 90 OFFCURVE", "-21 101 OFFCURVE", "-2 105 CURVE SMOOTH", "54 115 OFFCURVE", "102 128 OFFCURVE", "143 145 CURVE SMOOTH", "184 162 OFFCURVE", "216 173 OFFCURVE", "241 180 CURVE", "147 211 OFFCURVE", "81 217 OFFCURVE", "44 198 CURVE SMOOTH", "31 191 OFFCURVE", "23 189 OFFCURVE", "16 192 CURVE SMOOTH", "9 195 OFFCURVE", "8 205 OFFCURVE", "12 222 CURVE SMOOTH" ); } ); width = 610; } ); }, { glyphname = aHeh.fina; layers = ( { anchors = ( { name = DotAbove; position = "{142, 537}"; }, { name = HamzaAbove; position = "{195, 537}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; }, { name = TwoDotsAbove; position = "{87, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "265 451 OFFCURVE", "270 449 OFFCURVE", "272 431 CURVE SMOOTH", "273 418 OFFCURVE", "279 379 OFFCURVE", "287 313 CURVE SMOOTH", "295 247 OFFCURVE", "300 208 OFFCURVE", "301 196 CURVE SMOOTH", "306 143 OFFCURVE", "317 110 OFFCURVE", "335 99 CURVE SMOOTH", "345 92 OFFCURVE", "360 89 OFFCURVE", "379 90 CURVE SMOOTH", "391 90 OFFCURVE", "398 83 OFFCURVE", "400 69 CURVE SMOOTH", "402 55 OFFCURVE", "401 40 OFFCURVE", "396 24 CURVE SMOOTH", "391 8 OFFCURVE", "385 1 OFFCURVE", "379 0 CURVE SMOOTH", "341 -3 OFFCURVE", "314 6 OFFCURVE", "296 28 CURVE SMOOTH", "278 50 OFFCURVE", "265 90 OFFCURVE", "258 147 CURVE", "239 111 OFFCURVE", "220 90 OFFCURVE", "200 82 CURVE SMOOTH", "187 77 OFFCURVE", "166 76 OFFCURVE", "139 81 CURVE SMOOTH", "112 86 OFFCURVE", "92 93 OFFCURVE", "80 103 CURVE SMOOTH", "68 113 OFFCURVE", "62 124 OFFCURVE", "64 138 CURVE SMOOTH", "66 152 OFFCURVE", "72 170 OFFCURVE", "83 192 CURVE SMOOTH", "94 214 OFFCURVE", "102 228 OFFCURVE", "109 235 CURVE SMOOTH", "144 269 OFFCURVE", "186 299 OFFCURVE", "235 325 CURVE", "233 352 OFFCURVE", "232 373 OFFCURVE", "232 386 CURVE SMOOTH", "232 399 OFFCURVE", "235 410 OFFCURVE", "241 418 CURVE SMOOTH", "256 439 LINE SMOOTH" ); }, { closed = 1; nodes = ( "190 249 OFFCURVE", "153 227 OFFCURVE", "130 197 CURVE SMOOTH", "127 193 OFFCURVE", "128 190 OFFCURVE", "133 187 CURVE", "160 174 OFFCURVE", "196 171 OFFCURVE", "241 181 CURVE SMOOTH", "245 182 OFFCURVE", "248 184 OFFCURVE", "252 188 CURVE", "250 209 OFFCURVE", "247 234 OFFCURVE", "242 264 CURVE" ); } ); width = 379; }, { anchors = ( { name = DotAbove; position = "{142, 537}"; }, { name = HamzaAbove; position = "{195, 537}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; }, { name = TwoDotsAbove; position = "{87, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "183 245 OFFCURVE", "149 224 OFFCURVE", "130 197 CURVE SMOOTH", "127 193 OFFCURVE", "128 190 OFFCURVE", "133 187 CURVE SMOOTH", "167 173 OFFCURVE", "204 172 OFFCURVE", "245 183 CURVE", "242 204 OFFCURVE", "238 230 OFFCURVE", "234 261 CURVE" ); }, { closed = 1; nodes = ( "274 483 OFFCURVE", "284 474 OFFCURVE", "287 437 CURVE SMOOTH", "316 197 LINE SMOOTH", "323 135 OFFCURVE", "344 104 OFFCURVE", "379 105 CURVE SMOOTH", "395 105 OFFCURVE", "406 98 OFFCURVE", "412 83 CURVE", "418 66 OFFCURVE", "417 46 OFFCURVE", "410 22 CURVE SMOOTH", "403 -2 OFFCURVE", "392 -15 OFFCURVE", "379 -15 CURVE SMOOTH", "337 -15 OFFCURVE", "308 -4 OFFCURVE", "291 17 CURVE SMOOTH", "274 38 OFFCURVE", "262 75 OFFCURVE", "255 126 CURVE", "230 89 OFFCURVE", "212 67 OFFCURVE", "202 62 CURVE SMOOTH", "192 57 OFFCURVE", "175 56 OFFCURVE", "151 58 CURVE SMOOTH", "119 60 OFFCURVE", "92 68 OFFCURVE", "69 83 CURVE SMOOTH", "53 93 OFFCURVE", "48 107 OFFCURVE", "50 126 CURVE SMOOTH", "52 145 OFFCURVE", "59 166 OFFCURVE", "72 190 CURVE SMOOTH", "85 214 OFFCURVE", "96 232 OFFCURVE", "104 241 CURVE SMOOTH", "137 276 OFFCURVE", "177 306 OFFCURVE", "225 333 CURVE", "220 385 OFFCURVE", "221 417 OFFCURVE", "229 427 CURVE SMOOTH", "259 464 LINE SMOOTH" ); } ); width = 379; } ); }, { glyphname = aHeh.init; layers = ( { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "102 382 OFFCURVE", "124 411 OFFCURVE", "152 410 CURVE SMOOTH", "180 409 OFFCURVE", "226 379 OFFCURVE", "287 321 CURVE SMOOTH", "348 263 OFFCURVE", "381 216 OFFCURVE", "387 181 CURVE SMOOTH", "394 137 OFFCURVE", "384 98 OFFCURVE", "356 64 CURVE SMOOTH", "342 47 OFFCURVE", "325 40 OFFCURVE", "304 42 CURVE SMOOTH", "251 48 OFFCURVE", "194 62 OFFCURVE", "133 85 CURVE", "69 28 OFFCURVE", "25 0 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-11 5 OFFCURVE", "-16 16 CURVE SMOOTH", "-36 61 OFFCURVE", "-30 86 OFFCURVE", "0 90 CURVE SMOOTH", "25 93 OFFCURVE", "48 102 OFFCURVE", "69 118 CURVE", "50 133 OFFCURVE", "46 154 OFFCURVE", "54 179 CURVE SMOOTH", "68 222 OFFCURVE", "92 259 OFFCURVE", "127 290 CURVE", "120 301 OFFCURVE", "110 307 OFFCURVE", "95 309 CURVE SMOOTH", "87 310 OFFCURVE", "84 315 OFFCURVE", "86 322 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "181 176 OFFCURVE", "192 184 OFFCURVE", "192 191 CURVE", "189 226 OFFCURVE", "179 245 OFFCURVE", "161 249 CURVE SMOOTH", "134 255 OFFCURVE", "109 243 OFFCURVE", "86 214 CURVE SMOOTH", "79 206 OFFCURVE", "82 198 OFFCURVE", "93 191 CURVE SMOOTH", "104 184 OFFCURVE", "127 175 OFFCURVE", "159 165 CURVE" ); }, { closed = 1; nodes = ( "231 239 OFFCURVE", "230 238 OFFCURVE", "230 235 CURVE SMOOTH", "233 214 OFFCURVE", "222 186 OFFCURVE", "196 152 CURVE", "274 128 OFFCURVE", "319 120 OFFCURVE", "333 128 CURVE SMOOTH", "337 130 OFFCURVE", "339 133 OFFCURVE", "338 136 CURVE SMOOTH", "325 167 OFFCURVE", "291 201 OFFCURVE", "234 237 CURVE SMOOTH" ); } ); width = 452; }, { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "243 207 OFFCURVE", "231 183 OFFCURVE", "205 159 CURVE", "266 136 OFFCURVE", "314 124 OFFCURVE", "348 123 CURVE SMOOTH", "354 123 OFFCURVE", "356 126 OFFCURVE", "353 134 CURVE SMOOTH", "343 164 OFFCURVE", "306 197 OFFCURVE", "241 232 CURVE" ); }, { closed = 1; nodes = ( "184 187 OFFCURVE", "195 194 OFFCURVE", "195 198 CURVE SMOOTH", "192 236 OFFCURVE", "182 257 OFFCURVE", "164 260 CURVE SMOOTH", "137 266 OFFCURVE", "114 255 OFFCURVE", "94 230 CURVE SMOOTH", "87 222 OFFCURVE", "91 214 OFFCURVE", "102 207 CURVE SMOOTH", "120 195 OFFCURVE", "140 184 OFFCURVE", "162 176 CURVE" ); }, { closed = 1; nodes = ( "80 17 OFFCURVE", "34 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-13 -15 OFFCURVE", "-22 -7 OFFCURVE", "-29 9 CURVE SMOOTH", "-52 68 OFFCURVE", "-43 100 OFFCURVE", "0 105 CURVE SMOOTH", "28 108 OFFCURVE", "49 114 OFFCURVE", "62 121 CURVE", "42 137 OFFCURVE", "37 160 OFFCURVE", "48 193 CURVE SMOOTH", "59 226 OFFCURVE", "77 259 OFFCURVE", "106 291 CURVE", "102 293 OFFCURVE", "97 294 OFFCURVE", "89 295 CURVE SMOOTH", "81 296 OFFCURVE", "76 300 OFFCURVE", "74 307 CURVE SMOOTH", "72 314 OFFCURVE", "71 321 OFFCURVE", "72 326 CURVE SMOOTH", "89 392 OFFCURVE", "114 425 OFFCURVE", "148 425 CURVE SMOOTH", "182 425 OFFCURVE", "231 394 OFFCURVE", "295 333 CURVE SMOOTH", "359 272 OFFCURVE", "395 221 OFFCURVE", "402 183 CURVE", "410 134 OFFCURVE", "398 91 OFFCURVE", "367 55 CURVE SMOOTH", "349 34 OFFCURVE", "327 24 OFFCURVE", "302 27 CURVE SMOOTH", "252 33 OFFCURVE", "197 50 OFFCURVE", "136 79 CURVE" ); } ); width = 452; } ); }, { glyphname = aHeh.isol; layers = ( { anchors = ( { name = DotAbove; position = "{180, 532}"; }, { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; }, { name = TwoDotsAbove; position = "{125, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "169 334 OFFCURVE", "183 332 OFFCURVE", "199 323 CURVE SMOOTH", "242 298 OFFCURVE", "272 266 OFFCURVE", "290 227 CURVE SMOOTH", "308 188 OFFCURVE", "312 147 OFFCURVE", "303 106 CURVE SMOOTH", "294 65 OFFCURVE", "277 34 OFFCURVE", "252 11 CURVE SMOOTH", "227 -12 OFFCURVE", "199 -24 OFFCURVE", "165 -24 CURVE SMOOTH", "120 -25 OFFCURVE", "89 -8 OFFCURVE", "75 24 CURVE SMOOTH", "61 56 OFFCURVE", "60 99 OFFCURVE", "74 153 CURVE SMOOTH", "88 207 OFFCURVE", "114 256 OFFCURVE", "151 299 CURVE SMOOTH", "152 300 OFFCURVE", "153 305 OFFCURVE", "153 312 CURVE SMOOTH", "153 319 OFFCURVE", "154 324 OFFCURVE", "158 326 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "261 117 OFFCURVE", "259 127 OFFCURVE", "248 141 CURVE SMOOTH", "217 179 OFFCURVE", "187 198 OFFCURVE", "159 197 CURVE SMOOTH", "145 197 OFFCURVE", "133 187 OFFCURVE", "123 168 CURVE SMOOTH", "113 149 OFFCURVE", "109 135 OFFCURVE", "112 123 CURVE SMOOTH", "118 99 OFFCURVE", "137 86 OFFCURVE", "170 86 CURVE SMOOTH", "203 86 OFFCURVE", "231 94 OFFCURVE", "253 111 CURVE SMOOTH" ); } ); width = 369; }, { anchors = ( { name = DotAbove; position = "{180, 532}"; }, { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; }, { name = TwoDotsAbove; position = "{125, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "166 348 OFFCURVE", "185 348 OFFCURVE", "206 336 CURVE SMOOTH", "252 309 OFFCURVE", "283 274 OFFCURVE", "299 232 CURVE SMOOTH", "315 190 OFFCURVE", "318 146 OFFCURVE", "307 100 CURVE SMOOTH", "286 9 OFFCURVE", "238 -38 OFFCURVE", "165 -39 CURVE SMOOTH", "113 -39 OFFCURVE", "80 -20 OFFCURVE", "67 17 CURVE SMOOTH", "54 54 OFFCURVE", "55 102 OFFCURVE", "71 160 CURVE SMOOTH", "87 218 OFFCURVE", "109 267 OFFCURVE", "138 306 CURVE", "139 323 OFFCURVE", "142 333 OFFCURVE", "149 337 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "233 161 OFFCURVE", "200 181 OFFCURVE", "160 182 CURVE SMOOTH", "142 183 OFFCURVE", "129 176 OFFCURVE", "121 161 CURVE SMOOTH", "99 121 OFFCURVE", "116 101 OFFCURVE", "173 101 CURVE SMOOTH", "210 101 OFFCURVE", "238 108 OFFCURVE", "258 122 CURVE" ); } ); width = 369; } ); }, { glyphname = aHeh.medi; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "298 344 OFFCURVE", "306 330 OFFCURVE", "307 309 CURVE SMOOTH", "314 209 OFFCURVE", "282 128 OFFCURVE", "212 66 CURVE", "248 63 OFFCURVE", "308 70 OFFCURVE", "391 90 CURVE SMOOTH", "397 91 OFFCURVE", "400 88 OFFCURVE", "404 80 CURVE SMOOTH", "412 61 OFFCURVE", "412 40 OFFCURVE", "404 17 CURVE SMOOTH", "400 7 OFFCURVE", "396 1 OFFCURVE", "391 0 CURVE SMOOTH", "357 -7 OFFCURVE", "325 -11 OFFCURVE", "296 -9 CURVE", "318 -32 OFFCURVE", "327 -71 OFFCURVE", "323 -126 CURVE SMOOTH", "321 -150 OFFCURVE", "312 -174 OFFCURVE", "295 -196 CURVE SMOOTH", "278 -218 OFFCURVE", "258 -230 OFFCURVE", "235 -230 CURVE SMOOTH", "163 -231 OFFCURVE", "120 -163 OFFCURVE", "105 -27 CURVE", "77 -23 LINE", "77 25 LINE", "44 8 OFFCURVE", "19 0 OFFCURVE", "0 0 CURVE SMOOTH", "-13 0 OFFCURVE", "-22 22 OFFCURVE", "-28 67 CURVE SMOOTH", "-30 81 OFFCURVE", "-20 89 OFFCURVE", "0 90 CURVE SMOOTH", "37 92 OFFCURVE", "76 100 OFFCURVE", "117 114 CURVE", "144 186 OFFCURVE", "183 252 OFFCURVE", "234 312 CURVE SMOOTH", "259 341 OFFCURVE", "276 354 OFFCURVE", "284 350 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "230 234 OFFCURVE", "226 233 OFFCURVE", "222 231 CURVE SMOOTH", "181 208 OFFCURVE", "155 171 OFFCURVE", "142 121 CURVE", "205 146 OFFCURVE", "247 173 OFFCURVE", "267 201 CURVE SMOOTH", "271 206 OFFCURVE", "271 211 OFFCURVE", "268 216 CURVE SMOOTH", "261 228 OFFCURVE", "251 234 OFFCURVE", "236 234 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "158 -85 OFFCURVE", "179 -118 OFFCURVE", "210 -132 CURVE SMOOTH", "235 -143 OFFCURVE", "262 -141 OFFCURVE", "288 -125 CURVE SMOOTH", "295 -120 OFFCURVE", "296 -113 OFFCURVE", "291 -105 CURVE", "266 -69 OFFCURVE", "218 -45 OFFCURVE", "146 -32 CURVE" ); } ); width = 390; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "310 355 OFFCURVE", "320 337 OFFCURVE", "322 310 CURVE SMOOTH", "328 219 OFFCURVE", "303 142 OFFCURVE", "248 81 CURVE", "285 83 OFFCURVE", "333 90 OFFCURVE", "391 104 CURVE SMOOTH", "405 107 OFFCURVE", "413 100 OFFCURVE", "418 85 CURVE SMOOTH", "426 58 OFFCURVE", "425 34 OFFCURVE", "417 12 CURVE SMOOTH", "409 -2 OFFCURVE", "401 -11 OFFCURVE", "391 -14 CURVE SMOOTH", "366 -20 OFFCURVE", "344 -22 OFFCURVE", "324 -23 CURVE", "334 -49 OFFCURVE", "337 -80 OFFCURVE", "334 -115 CURVE SMOOTH", "331 -150 OFFCURVE", "320 -180 OFFCURVE", "303 -206 CURVE SMOOTH", "286 -232 OFFCURVE", "263 -245 OFFCURVE", "235 -245 CURVE SMOOTH", "162 -245 OFFCURVE", "118 -177 OFFCURVE", "101 -41 CURVE", "62 -36 LINE", "62 1 LINE", "37 -10 OFFCURVE", "16 -15 OFFCURVE", "-1 -15 CURVE SMOOTH", "-18 -15 OFFCURVE", "-30 1 OFFCURVE", "-37 32 CURVE SMOOTH", "-39 40 OFFCURVE", "-40 52 OFFCURVE", "-42 68 CURVE SMOOTH", "-44 84 OFFCURVE", "-36 96 OFFCURVE", "-18 102 CURVE SMOOTH", "-12 104 OFFCURVE", "-6 104 OFFCURVE", "0 105 CURVE SMOOTH", "31 107 OFFCURVE", "69 115 OFFCURVE", "116 131 CURVE", "138 201 OFFCURVE", "174 264 OFFCURVE", "223 322 CURVE SMOOTH", "242 343 OFFCURVE", "256 357 OFFCURVE", "264 362 CURVE SMOOTH", "272 367 OFFCURVE", "281 368 OFFCURVE", "290 364 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "253 229 OFFCURVE", "241 234 OFFCURVE", "226 229 CURVE", "195 218 OFFCURVE", "170 189 OFFCURVE", "151 142 CURVE", "209 167 OFFCURVE", "247 190 OFFCURVE", "263 213 CURVE" ); }, { closed = 1; nodes = ( "163 -82 OFFCURVE", "185 -108 OFFCURVE", "213 -120 CURVE SMOOTH", "241 -132 OFFCURVE", "268 -130 OFFCURVE", "292 -115 CURVE", "269 -74 OFFCURVE", "221 -50 OFFCURVE", "149 -43 CURVE" ); } ); width = 390; } ); }, { glyphname = aKaf.fina; layers = ( { anchors = ( { name = Dash; position = "{709, 708}"; }, { name = DotAbove; position = "{684, 806}"; }, { name = DotBelow; position = "{356, -122}"; }, { name = HamzaAbove; position = "{356, 306}"; }, { name = RingBelow; position = "{366, 20}"; }, { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{596, 806}"; }, { name = TwoDotsBelow; position = "{303, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "697 720 OFFCURVE", "702 719 OFFCURVE", "703 706 CURVE SMOOTH", "704 693 OFFCURVE", "709 628 OFFCURVE", "718 512 CURVE SMOOTH", "733 321 OFFCURVE", "746 209 OFFCURVE", "757 177 CURVE SMOOTH", "774 129 OFFCURVE", "796 99 OFFCURVE", "823 90 CURVE", "836 86 OFFCURVE", "844 77 OFFCURVE", "847 62 CURVE SMOOTH", "850 47 OFFCURVE", "848 33 OFFCURVE", "842 20 CURVE SMOOTH", "836 7 OFFCURVE", "830 0 OFFCURVE", "823 0 CURVE SMOOTH", "758 0 OFFCURVE", "719 58 OFFCURVE", "707 175 CURVE", "696 148 OFFCURVE", "679 121 OFFCURVE", "657 94 CURVE SMOOTH", "635 67 OFFCURVE", "612 48 OFFCURVE", "589 36 CURVE SMOOTH", "513 -3 OFFCURVE", "427 -25 OFFCURVE", "334 -28 CURVE SMOOTH", "197 -33 OFFCURVE", "112 -3 OFFCURVE", "77 62 CURVE SMOOTH", "68 80 OFFCURVE", "63 98 OFFCURVE", "63 116 CURVE SMOOTH", "65 181 OFFCURVE", "86 238 OFFCURVE", "126 286 CURVE SMOOTH", "129 290 OFFCURVE", "133 292 OFFCURVE", "138 292 CURVE SMOOTH", "143 292 OFFCURVE", "145 289 OFFCURVE", "146 285 CURVE SMOOTH", "147 281 OFFCURVE", "146 277 OFFCURVE", "141 270 CURVE SMOOTH", "112 225 OFFCURVE", "100 192 OFFCURVE", "104 172 CURVE SMOOTH", "118 103 OFFCURVE", "189 68 OFFCURVE", "318 66 CURVE SMOOTH", "407 65 OFFCURVE", "497 83 OFFCURVE", "590 119 CURVE SMOOTH", "622 132 OFFCURVE", "648 152 OFFCURVE", "666 178 CURVE SMOOTH", "671 185 OFFCURVE", "674 199 OFFCURVE", "675 221 CURVE SMOOTH", "676 243 OFFCURVE", "672 309 OFFCURVE", "663 419 CURVE SMOOTH", "654 529 OFFCURVE", "649 583 OFFCURVE", "649 583 CURVE SMOOTH", "645 620 OFFCURVE", "647 646 OFFCURVE", "656 659 CURVE SMOOTH", "690 709 LINE SMOOTH" ); } ); width = 822; }, { anchors = ( { name = Dash; position = "{709, 708}"; }, { name = DotAbove; position = "{684, 806}"; }, { name = DotBelow; position = "{356, -122}"; }, { name = HamzaAbove; position = "{356, 306}"; }, { name = RingBelow; position = "{366, 20}"; }, { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{596, 806}"; }, { name = TwoDotsBelow; position = "{303, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "751 -15 OFFCURVE", "710 46 OFFCURVE", "701 167 CURVE", "647 34 OFFCURVE", "525 -35 OFFCURVE", "335 -42 CURVE SMOOTH", "188 -47 OFFCURVE", "102 -14 OFFCURVE", "75 58 CURVE SMOOTH", "48 130 OFFCURVE", "62 204 OFFCURVE", "116 280 CURVE SMOOTH", "129 299 OFFCURVE", "140 304 OFFCURVE", "147 296 CURVE SMOOTH", "154 288 OFFCURVE", "154 277 OFFCURVE", "144 262 CURVE SMOOTH", "117 221 OFFCURVE", "105 191 OFFCURVE", "108 175 CURVE SMOOTH", "121 114 OFFCURVE", "191 83 OFFCURVE", "318 81 CURVE SMOOTH", "407 80 OFFCURVE", "496 97 OFFCURVE", "585 133 CURVE SMOOTH", "621 148 OFFCURVE", "646 165 OFFCURVE", "658 186 CURVE SMOOTH", "661 192 OFFCURVE", "664 205 OFFCURVE", "665 225 CURVE SMOOTH", "666 245 OFFCURVE", "663 306 OFFCURVE", "655 407 CURVE SMOOTH", "647 508 OFFCURVE", "642 561 OFFCURVE", "642 564 CURVE SMOOTH", "637 609 OFFCURVE", "639 637 OFFCURVE", "647 649 CURVE SMOOTH", "681 700 LINE SMOOTH", "703 734 OFFCURVE", "715 727 OFFCURVE", "717 679 CURVE SMOOTH", "718 661 OFFCURVE", "723 579 OFFCURVE", "734 434 CURVE SMOOTH", "744 297 OFFCURVE", "757 210 OFFCURVE", "770 173 CURVE SMOOTH", "783 136 OFFCURVE", "801 112 OFFCURVE", "823 105 CURVE SMOOTH", "845 98 OFFCURVE", "857 85 OFFCURVE", "861 66 CURVE SMOOTH", "865 47 OFFCURVE", "862 28 OFFCURVE", "854 11 CURVE SMOOTH", "846 -6 OFFCURVE", "835 -15 OFFCURVE", "823 -15 CURVE SMOOTH" ); } ); width = 822; } ); }, { glyphname = aKaf.init.alt; layers = ( { anchors = ( { name = TashkilAbove; position = "{275, 801}"; }, { name = TashkilBelow; position = "{732, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "206 73 OFFCURVE", "448 75 OFFCURVE", "725 95 CURVE SMOOTH", "855 104 OFFCURVE", "1113 130 OFFCURVE", "1498 170 CURVE SMOOTH", "1505 171 OFFCURVE", "1505 175 OFFCURVE", "1501 182 CURVE SMOOTH", "1477 227 OFFCURVE", "1446 251 OFFCURVE", "1407 255 CURVE SMOOTH", "1350 261 OFFCURVE", "1253 257 OFFCURVE", "1117 244 CURVE SMOOTH", "981 231 OFFCURVE", "831 219 OFFCURVE", "667 207 CURVE SMOOTH", "503 195 OFFCURVE", "352 195 OFFCURVE", "214 207 CURVE SMOOTH", "140 213 OFFCURVE", "96 229 OFFCURVE", "83 257 CURVE SMOOTH", "78 267 OFFCURVE", "79 277 OFFCURVE", "84 287 CURVE SMOOTH", "102 324 OFFCURVE", "121 354 OFFCURVE", "142 376 CURVE SMOOTH", "252 487 OFFCURVE", "406 571 OFFCURVE", "604 628 CURVE", "615 631 OFFCURVE", "620 628 OFFCURVE", "618 620 CURVE SMOOTH", "603 548 LINE", "601 542 OFFCURVE", "597 538 OFFCURVE", "590 536 CURVE SMOOTH", "500 511 OFFCURVE", "416 479 OFFCURVE", "337 441 CURVE SMOOTH", "258 403 OFFCURVE", "196 364 OFFCURVE", "153 324 CURVE SMOOTH", "149 320 OFFCURVE", "149 317 OFFCURVE", "152 315 CURVE SMOOTH", "187 291 OFFCURVE", "303 279 OFFCURVE", "503 280 CURVE SMOOTH", "639 281 OFFCURVE", "806 290 OFFCURVE", "1001 310 CURVE SMOOTH", "1196 330 OFFCURVE", "1333 339 OFFCURVE", "1412 338 CURVE SMOOTH", "1457 337 OFFCURVE", "1494 324 OFFCURVE", "1523 298 CURVE SMOOTH", "1552 272 OFFCURVE", "1567 238 OFFCURVE", "1570 198 CURVE", "1571 186 OFFCURVE", "1561 163 OFFCURVE", "1538 129 CURVE SMOOTH", "1515 95 OFFCURVE", "1496 79 OFFCURVE", "1479 78 CURVE", "1431 74 OFFCURVE", "1294 62 OFFCURVE", "1069 42 CURVE SMOOTH", "844 21 OFFCURVE", "718 10 OFFCURVE", "691 8 CURVE SMOOTH", "386 -12 OFFCURVE", "156 -15 OFFCURVE", "0 0 CURVE", "-12 0 OFFCURVE", "-21 7 OFFCURVE", "-26 22 CURVE SMOOTH", "-31 37 OFFCURVE", "-31 53 OFFCURVE", "-26 68 CURVE SMOOTH", "-21 83 OFFCURVE", "-12 90 OFFCURVE", "0 90 CURVE" ); } ); width = 1633; }, { anchors = ( { name = TashkilAbove; position = "{275, 801}"; }, { name = TashkilBelow; position = "{732, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "201 89 OFFCURVE", "441 90 OFFCURVE", "724 110 CURVE SMOOTH", "907 123 OFFCURVE", "1166 147 OFFCURVE", "1499 183 CURVE", "1479 217 OFFCURVE", "1447 236 OFFCURVE", "1405 240 CURVE SMOOTH", "1349 246 OFFCURVE", "1261 243 OFFCURVE", "1143 232 CURVE SMOOTH", "1025 221 OFFCURVE", "877 208 OFFCURVE", "700 195 CURVE SMOOTH", "523 182 OFFCURVE", "361 182 OFFCURVE", "213 197 CURVE SMOOTH", "145 204 OFFCURVE", "104 221 OFFCURVE", "90 250 CURVE SMOOTH", "83 264 OFFCURVE", "83 278 OFFCURVE", "90 293 CURVE SMOOTH", "110 335 OFFCURVE", "130 366 OFFCURVE", "151 386 CURVE SMOOTH", "277 508 OFFCURVE", "427 594 OFFCURVE", "600 643 CURVE SMOOTH", "627 650 OFFCURVE", "637 642 OFFCURVE", "632 617 CURVE SMOOTH", "617 545 LINE SMOOTH", "615 533 OFFCURVE", "607 526 OFFCURVE", "594 522 CURVE SMOOTH", "505 497 OFFCURVE", "420 466 OFFCURVE", "340 430 CURVE SMOOTH", "260 394 OFFCURVE", "198 358 OFFCURVE", "157 322 CURVE", "203 303 OFFCURVE", "306 295 OFFCURVE", "467 295 CURVE SMOOTH", "628 295 OFFCURVE", "807 305 OFFCURVE", "1004 325 CURVE SMOOTH", "1201 345 OFFCURVE", "1337 355 OFFCURVE", "1412 353 CURVE SMOOTH", "1452 352 OFFCURVE", "1487 337 OFFCURVE", "1518 309 CURVE SMOOTH", "1549 281 OFFCURVE", "1566 245 OFFCURVE", "1570 200 CURVE SMOOTH", "1572 184 OFFCURVE", "1561 158 OFFCURVE", "1536 121 CURVE SMOOTH", "1511 84 OFFCURVE", "1488 65 OFFCURVE", "1466 63 CURVE SMOOTH", "1342 53 OFFCURVE", "1196 40 OFFCURVE", "1029 24 CURVE SMOOTH", "862 8 OFFCURVE", "749 -3 OFFCURVE", "692 -7 CURVE SMOOTH", "396 -27 OFFCURVE", "165 -30 OFFCURVE", "-1 -15 CURVE SMOOTH", "-20 -13 OFFCURVE", "-32 -3 OFFCURVE", "-39 16 CURVE SMOOTH", "-46 35 OFFCURVE", "-45 55 OFFCURVE", "-38 76 CURVE SMOOTH", "-31 97 OFFCURVE", "-19 107 OFFCURVE", "1 105 CURVE SMOOTH" ); } ); width = 1633; } ); }, { glyphname = aKaf.init; layers = ( { anchors = ( { name = Dash; position = "{305, 687}"; }, { name = DotAbove; position = "{138, 696}"; }, { name = DotBelow; position = "{132, -80}"; }, { name = RingBelow; position = "{303, 604}"; }, { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; }, { name = TwoDotsAbove; position = "{84, 696}"; }, { name = TwoDotsBelow; position = "{78, -80}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "109 74 OFFCURVE", "195 98 OFFCURVE", "257 160 CURVE SMOOTH", "259 162 OFFCURVE", "260 164 OFFCURVE", "259 167 CURVE", "218 233 OFFCURVE", "148 291 OFFCURVE", "50 340 CURVE", "39 346 OFFCURVE", "33 366 OFFCURVE", "32 402 CURVE SMOOTH", "30 452 OFFCURVE", "40 487 OFFCURVE", "62 507 CURVE SMOOTH", "157 592 OFFCURVE", "330 674 OFFCURVE", "581 752 CURVE SMOOTH", "586 754 OFFCURVE", "590 754 OFFCURVE", "593 754 CURVE SMOOTH", "597 754 OFFCURVE", "599 753 OFFCURVE", "599 748 CURVE SMOOTH", "599 747 OFFCURVE", "598 745 OFFCURVE", "597 741 CURVE SMOOTH", "578 670 LINE SMOOTH", "575 660 OFFCURVE", "570 655 OFFCURVE", "564 653 CURVE SMOOTH", "277 550 OFFCURVE", "111 476 OFFCURVE", "65 430 CURVE", "62 427 OFFCURVE", "63 425 OFFCURVE", "67 423 CURVE", "207 339 OFFCURVE", "278 256 OFFCURVE", "279 172 CURVE SMOOTH", "279 125 OFFCURVE", "270 89 OFFCURVE", "250 62 CURVE SMOOTH", "230 35 OFFCURVE", "205 17 OFFCURVE", "176 10 CURVE SMOOTH", "107 -7 OFFCURVE", "45 -11 OFFCURVE", "-8 -1 CURVE SMOOTH", "-17 1 OFFCURVE", "-22 8 OFFCURVE", "-24 24 CURVE SMOOTH", "-26 40 OFFCURVE", "-27 53 OFFCURVE", "-27 60 CURVE SMOOTH", "-27 83 OFFCURVE", "-18 93 OFFCURVE", "0 90 CURVE SMOOTH" ); } ); width = 659; }, { anchors = ( { name = Dash; position = "{305, 687}"; }, { name = DotAbove; position = "{138, 696}"; }, { name = DotBelow; position = "{132, -80}"; }, { name = RingBelow; position = "{303, 604}"; }, { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; }, { name = TwoDotsAbove; position = "{84, 696}"; }, { name = TwoDotsBelow; position = "{78, -80}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "108 91 OFFCURVE", "190 111 OFFCURVE", "249 166 CURVE", "189 246 OFFCURVE", "126 299 OFFCURVE", "59 325 CURVE SMOOTH", "43 331 OFFCURVE", "34 359 OFFCURVE", "32 408 CURVE SMOOTH", "30 458 OFFCURVE", "41 495 OFFCURVE", "66 518 CURVE SMOOTH", "167 610 OFFCURVE", "339 693 OFFCURVE", "582 766 CURVE SMOOTH", "599 771 OFFCURVE", "606 766 OFFCURVE", "601 749 CURVE SMOOTH", "577 661 LINE SMOOTH", "573 646 OFFCURVE", "565 637 OFFCURVE", "554 633 CURVE SMOOTH", "296 543 OFFCURVE", "135 475 OFFCURVE", "72 431 CURVE", "211 356 OFFCURVE", "281 270 OFFCURVE", "281 172 CURVE SMOOTH", "281 71 OFFCURVE", "247 13 OFFCURVE", "179 -4 CURVE SMOOTH", "106 -22 OFFCURVE", "43 -26 OFFCURVE", "-11 -16 CURVE SMOOTH", "-27 -13 OFFCURVE", "-35 -1 OFFCURVE", "-38 19 CURVE SMOOTH", "-42 49 OFFCURVE", "-44 67 OFFCURVE", "-42 73 CURVE SMOOTH", "-35 97 OFFCURVE", "-20 108 OFFCURVE", "2 105 CURVE SMOOTH" ); } ); width = 659; } ); }, { glyphname = aKaf.isol; layers = ( { anchors = ( { name = Dash; position = "{492, 788}"; }, { name = DotAbove; position = "{464, 879}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = HamzaAbove; position = "{205, 303}"; }, { name = RingBelow; position = "{293, 49}"; }, { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{410, 879}"; }, { name = TwoDotsBelow; position = "{239, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "506 753 OFFCURVE", "523 729 OFFCURVE", "545 712 CURVE SMOOTH", "551 707 OFFCURVE", "550 701 OFFCURVE", "545 693 CURVE SMOOTH", "527 663 LINE SMOOTH", "524 658 OFFCURVE", "523 655 OFFCURVE", "523 653 CURVE SMOOTH", "570 426 OFFCURVE", "594 283 OFFCURVE", "594 224 CURVE", "594 175 LINE", "593 133 OFFCURVE", "584 91 OFFCURVE", "565 49 CURVE SMOOTH", "549 13 OFFCURVE", "437 -4 OFFCURVE", "227 0 CURVE SMOOTH", "168 1 OFFCURVE", "116 5 OFFCURVE", "73 12 CURVE SMOOTH", "69 13 OFFCURVE", "66 15 OFFCURVE", "66 21 CURVE SMOOTH", "63 63 OFFCURVE", "63 91 OFFCURVE", "64 107 CURVE SMOOTH", "64 112 OFFCURVE", "67 114 OFFCURVE", "71 112 CURVE SMOOTH", "97 102 OFFCURVE", "142 96 OFFCURVE", "205 95 CURVE SMOOTH", "397 91 OFFCURVE", "514 103 OFFCURVE", "556 132 CURVE", "560 155 OFFCURVE", "548 246 OFFCURVE", "519 403 CURVE SMOOTH", "490 560 OFFCURVE", "473 649 OFFCURVE", "468 670 CURVE SMOOTH", "463 691 OFFCURVE", "459 707 OFFCURVE", "456 717 CURVE SMOOTH", "453 727 OFFCURVE", "453 738 OFFCURVE", "458 748 CURVE SMOOTH", "477 786 LINE SMOOTH", "479 790 OFFCURVE", "481 792 OFFCURVE", "484 791 CURVE SMOOTH", "487 790 OFFCURVE", "490 787 OFFCURVE", "492 782 CURVE SMOOTH" ); } ); width = 657; }, { anchors = ( { name = Dash; position = "{492, 788}"; }, { name = DotAbove; position = "{464, 879}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = HamzaAbove; position = "{205, 303}"; }, { name = RingBelow; position = "{293, 49}"; }, { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{410, 879}"; }, { name = TwoDotsBelow; position = "{239, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "479 823 OFFCURVE", "491 818 OFFCURVE", "504 791 CURVE SMOOTH", "517 764 OFFCURVE", "533 741 OFFCURVE", "554 724 CURVE SMOOTH", "568 713 OFFCURVE", "569 699 OFFCURVE", "558 685 CURVE SMOOTH", "534 653 LINE SMOOTH", "578 418 OFFCURVE", "600 259 OFFCURVE", "599 175 CURVE SMOOTH", "599 131 OFFCURVE", "589 87 OFFCURVE", "569 43 CURVE SMOOTH", "556 14 OFFCURVE", "509 -3 OFFCURVE", "430 -10 CURVE SMOOTH", "381 -14 OFFCURVE", "319 -15 OFFCURVE", "244 -14 CURVE SMOOTH", "169 -13 OFFCURVE", "111 -10 OFFCURVE", "70 -3 CURVE SMOOTH", "58 -1 OFFCURVE", "52 4 OFFCURVE", "52 12 CURVE SMOOTH", "50 47 OFFCURVE", "49 81 OFFCURVE", "50 115 CURVE SMOOTH", "50 128 OFFCURVE", "56 132 OFFCURVE", "67 129 CURVE SMOOTH", "112 117 OFFCURVE", "158 110 OFFCURVE", "206 109 CURVE SMOOTH", "392 106 OFFCURVE", "506 117 OFFCURVE", "552 141 CURVE", "553 153 OFFCURVE", "524 322 OFFCURVE", "464 648 CURVE SMOOTH", "463 657 OFFCURVE", "456 677 OFFCURVE", "444 708 CURVE SMOOTH", "437 725 OFFCURVE", "438 740 OFFCURVE", "445 754 CURVE SMOOTH", "470 804 LINE SMOOTH" ); } ); width = 657; } ); }, { glyphname = aKaf.medi; layers = ( { anchors = ( { name = Dash; position = "{286, 771}"; }, { name = DotAbove; position = "{105, 708}"; }, { name = DotBelow; position = "{371, -98}"; }, { name = RingBelow; position = "{318, 656}"; }, { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; }, { name = TwoDotsAbove; position = "{51, 708}"; }, { name = TwoDotsBelow; position = "{317, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-3 91 OFFCURVE", "3 90 OFFCURVE", "16 88 CURVE SMOOTH", "29 86 OFFCURVE", "50 86 OFFCURVE", "79 86 CURVE SMOOTH", "108 86 OFFCURVE", "140 93 OFFCURVE", "175 106 CURVE SMOOTH", "210 119 OFFCURVE", "239 139 OFFCURVE", "261 165 CURVE", "245 225 OFFCURVE", "176 284 OFFCURVE", "54 341 CURVE", "40 350 OFFCURVE", "32 372 OFFCURVE", "29 407 CURVE SMOOTH", "26 446 OFFCURVE", "29 472 OFFCURVE", "39 486 CURVE SMOOTH", "116 596 OFFCURVE", "285 704 OFFCURVE", "544 811 CURVE SMOOTH", "550 813 OFFCURVE", "554 814 OFFCURVE", "558 814 CURVE SMOOTH", "564 814 OFFCURVE", "566 811 OFFCURVE", "566 804 CURVE SMOOTH", "566 801 OFFCURVE", "566 798 OFFCURVE", "565 795 CURVE SMOOTH", "551 731 LINE SMOOTH", "549 723 OFFCURVE", "543 717 OFFCURVE", "535 713 CURVE SMOOTH", "303 599 OFFCURVE", "148 504 OFFCURVE", "68 427 CURVE", "204 358 OFFCURVE", "320 279 OFFCURVE", "417 191 CURVE SMOOTH", "487 128 OFFCURVE", "544 94 OFFCURVE", "588 90 CURVE SMOOTH", "604 88 OFFCURVE", "612 79 OFFCURVE", "612 60 CURVE SMOOTH", "612 49 OFFCURVE", "610 36 OFFCURVE", "605 21 CURVE SMOOTH", "600 6 OFFCURVE", "595 0 OFFCURVE", "588 0 CURVE", "542 0 OFFCURVE", "472 46 OFFCURVE", "379 138 CURVE SMOOTH", "348 169 OFFCURVE", "316 197 OFFCURVE", "283 221 CURVE", "285 194 OFFCURVE", "284 169 OFFCURVE", "281 146 CURVE SMOOTH", "266 44 OFFCURVE", "188 -6 OFFCURVE", "47 -6 CURVE SMOOTH", "24 -6 OFFCURVE", "6 -5 OFFCURVE", "-7 -2 CURVE SMOOTH", "-20 1 OFFCURVE", "-27 22 OFFCURVE", "-27 60 CURVE SMOOTH", "-27 81 OFFCURVE", "-20 91 OFFCURVE", "-5 91 CURVE SMOOTH" ); } ); width = 588; }, { anchors = ( { name = Dash; position = "{286, 771}"; }, { name = DotAbove; position = "{105, 708}"; }, { name = DotBelow; position = "{371, -98}"; }, { name = RingBelow; position = "{318, 656}"; }, { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; }, { name = TwoDotsAbove; position = "{51, 708}"; }, { name = TwoDotsBelow; position = "{317, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-42 92 OFFCURVE", "-23 107 OFFCURVE", "13 104 CURVE SMOOTH", "116 96 OFFCURVE", "196 116 OFFCURVE", "254 168 CURVE", "240 217 OFFCURVE", "171 273 OFFCURVE", "47 335 CURVE", "34 357 OFFCURVE", "27 389 OFFCURVE", "28 431 CURVE SMOOTH", "28 459 OFFCURVE", "33 478 OFFCURVE", "41 489 CURVE", "120 604 OFFCURVE", "287 718 OFFCURVE", "544 828 CURVE SMOOTH", "566 838 OFFCURVE", "574 830 OFFCURVE", "568 804 CURVE SMOOTH", "548 717 LINE SMOOTH", "545 707 OFFCURVE", "538 699 OFFCURVE", "527 693 CURVE SMOOTH", "310 585 OFFCURVE", "161 496 OFFCURVE", "79 427 CURVE", "200 374 OFFCURVE", "314 299 OFFCURVE", "421 202 CURVE SMOOTH", "488 141 OFFCURVE", "544 109 OFFCURVE", "589 104 CURVE SMOOTH", "626 100 OFFCURVE", "635 70 OFFCURVE", "617 13 CURVE SMOOTH", "611 -6 OFFCURVE", "601 -15 OFFCURVE", "587 -15 CURVE SMOOTH", "532 -15 OFFCURVE", "459 33 OFFCURVE", "369 128 CURVE SMOOTH", "338 160 OFFCURVE", "311 185 OFFCURVE", "289 202 CURVE", "289 177 OFFCURVE", "288 158 OFFCURVE", "286 146 CURVE SMOOTH", "269 34 OFFCURVE", "190 -21 OFFCURVE", "47 -21 CURVE SMOOTH", "23 -21 OFFCURVE", "3 -19 OFFCURVE", "-11 -16 CURVE SMOOTH", "-32 -11 OFFCURVE", "-42 14 OFFCURVE", "-42 60 CURVE SMOOTH" ); } ); width = 588; } ); }, { glyphname = aLam.fina; layers = ( { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{491, 445}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "538 187 OFFCURVE", "585 99 OFFCURVE", "663 86 CURVE", "669 83 OFFCURVE", "669 66 OFFCURVE", "663 36 CURVE", "659 12 OFFCURVE", "653 0 OFFCURVE", "645 0 CURVE SMOOTH", "597 0 OFFCURVE", "559 27 OFFCURVE", "531 80 CURVE", "547 -117 OFFCURVE", "527 -235 OFFCURVE", "472 -276 CURVE SMOOTH", "397 -330 OFFCURVE", "329 -358 OFFCURVE", "266 -359 CURVE SMOOTH", "200 -360 OFFCURVE", "147 -343 OFFCURVE", "109 -306 CURVE SMOOTH", "71 -269 OFFCURVE", "57 -219 OFFCURVE", "66 -154 CURVE SMOOTH", "75 -89 OFFCURVE", "103 -24 OFFCURVE", "153 42 CURVE SMOOTH", "156 46 OFFCURVE", "160 48 OFFCURVE", "165 48 CURVE SMOOTH", "170 48 OFFCURVE", "172 46 OFFCURVE", "174 42 CURVE SMOOTH", "176 38 OFFCURVE", "175 33 OFFCURVE", "171 27 CURVE SMOOTH", "116 -56 OFFCURVE", "99 -123 OFFCURVE", "120 -172 CURVE SMOOTH", "146 -232 OFFCURVE", "206 -259 OFFCURVE", "299 -253 CURVE SMOOTH", "376 -248 OFFCURVE", "444 -217 OFFCURVE", "505 -157 CURVE", "457 523 LINE SMOOTH", "455 545 OFFCURVE", "455 562 OFFCURVE", "458 573 CURVE SMOOTH", "477 633 LINE SMOOTH", "488 645 OFFCURVE", "494 639 OFFCURVE", "497 613 CURVE SMOOTH", "522 348 LINE SMOOTH" ); } ); width = 644; }, { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{486, 445}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "537 350 LINE SMOOTH", "554 196 OFFCURVE", "590 114 OFFCURVE", "645 104 CURVE SMOOTH", "671 99 OFFCURVE", "682 77 OFFCURVE", "677 34 CURVE SMOOTH", "674 10 OFFCURVE", "668 -5 OFFCURVE", "657 -11 CURVE SMOOTH", "653 -13 OFFCURVE", "650 -15 OFFCURVE", "645 -15 CURVE SMOOTH", "603 -15 OFFCURVE", "564 8 OFFCURVE", "531 53 CURVE", "540 -17 OFFCURVE", "541 -89 OFFCURVE", "532 -164 CURVE SMOOTH", "525 -221 OFFCURVE", "505 -262 OFFCURVE", "471 -288 CURVE SMOOTH", "397 -344 OFFCURVE", "327 -372 OFFCURVE", "260 -374 CURVE SMOOTH", "193 -376 OFFCURVE", "142 -357 OFFCURVE", "107 -317 CURVE SMOOTH", "72 -278 OFFCURVE", "59 -224 OFFCURVE", "66 -153 CURVE SMOOTH", "71 -104 OFFCURVE", "98 -40 OFFCURVE", "148 37 CURVE SMOOTH", "156 50 OFFCURVE", "164 52 OFFCURVE", "171 45 CURVE SMOOTH", "178 38 OFFCURVE", "177 29 OFFCURVE", "170 19 CURVE SMOOTH", "120 -56 OFFCURVE", "103 -117 OFFCURVE", "121 -166 CURVE SMOOTH", "141 -220 OFFCURVE", "200 -245 OFFCURVE", "298 -239 CURVE SMOOTH", "376 -234 OFFCURVE", "444 -205 OFFCURVE", "500 -151 CURVE", "442 522 LINE SMOOTH", "440 545 OFFCURVE", "442 563 OFFCURVE", "448 577 CURVE SMOOTH", "477 647 LINE SMOOTH", "492 683 OFFCURVE", "501 679 OFFCURVE", "506 632 CURVE SMOOTH" ); } ); width = 644; } ); }, { glyphname = aLam.init; layers = ( { anchors = ( { name = DotAbove; position = "{39, 814}"; }, { name = Stroke; position = "{59, 523}"; }, { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; }, { name = TwoDotsAbove; position = "{-20, 814}"; }, { name = TwoDotsBelow; position = "{39, -49}"; }, { name = VAbove; position = "{39, 765}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "26 684 OFFCURVE", "32 699 OFFCURVE", "34 705 CURVE SMOOTH", "36 711 OFFCURVE", "39 714 OFFCURVE", "44 714 CURVE SMOOTH", "49 714 OFFCURVE", "53 711 OFFCURVE", "55 704 CURVE SMOOTH", "65 674 OFFCURVE", "79 650 OFFCURVE", "98 631 CURVE SMOOTH", "105 624 OFFCURVE", "104 617 OFFCURVE", "97 608 CURVE", "75 577 LINE", "79 540 OFFCURVE", "83 505 OFFCURVE", "87 473 CURVE SMOOTH", "109 308 OFFCURVE", "117 207 OFFCURVE", "110 171 CURVE SMOOTH", "89 66 OFFCURVE", "53 8 OFFCURVE", "0 0 CURVE SMOOTH", "-12 -2 OFFCURVE", "-17 20 OFFCURVE", "-15 66 CURVE SMOOTH", "-15 81 OFFCURVE", "-10 89 OFFCURVE", "0 90 CURVE SMOOTH", "36 94 OFFCURVE", "62 109 OFFCURVE", "76 135 CURVE", "74 187 OFFCURVE", "65 270 OFFCURVE", "51 381 CURVE SMOOTH", "37 492 OFFCURVE", "28 560 OFFCURVE", "25 585 CURVE", "15 642 LINE SMOOTH", "14 650 OFFCURVE", "14 655 OFFCURVE", "16 660 CURVE SMOOTH" ); } ); width = 175; }, { anchors = ( { name = DotAbove; position = "{39, 814}"; }, { name = Stroke; position = "{59, 523}"; }, { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; }, { name = TwoDotsAbove; position = "{-20, 814}"; }, { name = TwoDotsBelow; position = "{39, -49}"; }, { name = VAbove; position = "{39, 765}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "112 376 OFFCURVE", "122 242 OFFCURVE", "115 168 CURVE SMOOTH", "104 57 OFFCURVE", "65 -4 OFFCURVE", "0 -15 CURVE SMOOTH", "-17 -18 OFFCURVE", "-26 -7 OFFCURVE", "-28 16 CURVE SMOOTH", "-30 31 OFFCURVE", "-30 49 OFFCURVE", "-29 70 CURVE SMOOTH", "-28 91 OFFCURVE", "-18 103 OFFCURVE", "0 105 CURVE SMOOTH", "37 109 OFFCURVE", "61 120 OFFCURVE", "71 139 CURVE", "70 155 OFFCURVE", "52 301 OFFCURVE", "15 577 CURVE", "11 602 OFFCURVE", "7 619 OFFCURVE", "5 628 CURVE", "-2 645 OFFCURVE", "-1 660 OFFCURVE", "6 674 CURVE SMOOTH", "31 724 LINE SMOOTH", "40 743 OFFCURVE", "50 738 OFFCURVE", "60 711 CURVE SMOOTH", "70 684 OFFCURVE", "84 661 OFFCURVE", "105 644 CURVE SMOOTH", "119 633 OFFCURVE", "120 619 OFFCURVE", "109 605 CURVE SMOOTH", "85 573 LINE" ); } ); width = 175; } ); }, { glyphname = aLam.isol; layers = ( { anchors = ( { name = DotAbove; position = "{317, 684}"; }, { name = Stroke; position = "{479, 549}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; }, { name = TwoDotsAbove; position = "{220, 586}"; }, { name = TwoDotsBelow; position = "{286, -161}"; }, { name = VAbove; position = "{323, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "465 749 OFFCURVE", "468 751 OFFCURVE", "473 751 CURVE SMOOTH", "478 751 OFFCURVE", "481 748 OFFCURVE", "483 742 CURVE SMOOTH", "495 710 OFFCURVE", "508 686 OFFCURVE", "524 669 CURVE SMOOTH", "530 663 OFFCURVE", "530 655 OFFCURVE", "523 645 CURVE SMOOTH", "516 635 OFFCURVE", "511 627 OFFCURVE", "507 622 CURVE SMOOTH", "503 617 OFFCURVE", "501 611 OFFCURVE", "501 602 CURVE SMOOTH", "504 558 OFFCURVE", "510 497 OFFCURVE", "520 420 CURVE SMOOTH", "530 343 OFFCURVE", "536 283 OFFCURVE", "539 241 CURVE SMOOTH", "544 173 OFFCURVE", "535 112 OFFCURVE", "512 58 CURVE SMOOTH", "498 24 OFFCURVE", "463 -5 OFFCURVE", "407 -29 CURVE SMOOTH", "351 -53 OFFCURVE", "301 -65 OFFCURVE", "257 -64 CURVE SMOOTH", "129 -62 OFFCURVE", "64 -6 OFFCURVE", "63 104 CURVE SMOOTH", "62 177 OFFCURVE", "88 247 OFFCURVE", "139 313 CURVE SMOOTH", "142 317 OFFCURVE", "146 319 OFFCURVE", "150 318 CURVE SMOOTH", "154 317 OFFCURVE", "157 315 OFFCURVE", "158 311 CURVE SMOOTH", "159 307 OFFCURVE", "159 303 OFFCURVE", "156 298 CURVE SMOOTH", "121 235 OFFCURVE", "104 189 OFFCURVE", "107 159 CURVE SMOOTH", "116 77 OFFCURVE", "178 38 OFFCURVE", "290 42 CURVE SMOOTH", "386 45 OFFCURVE", "456 74 OFFCURVE", "499 129 CURVE", "497 171 OFFCURVE", "490 245 OFFCURVE", "476 352 CURVE SMOOTH", "462 459 OFFCURVE", "452 558 OFFCURVE", "445 652 CURVE", "441 686 LINE", "441 692 OFFCURVE", "442 696 OFFCURVE", "444 700 CURVE SMOOTH", "463 744 LINE SMOOTH" ); } ); width = 603; }, { anchors = ( { name = DotAbove; position = "{317, 684}"; }, { name = Stroke; position = "{479, 549}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; }, { name = TwoDotsAbove; position = "{220, 586}"; }, { name = TwoDotsBelow; position = "{286, -161}"; }, { name = VAbove; position = "{323, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "437 618 OFFCURVE", "434 637 OFFCURVE", "430 658 CURVE", "423 675 OFFCURVE", "423 690 OFFCURVE", "430 704 CURVE SMOOTH", "456 754 LINE SMOOTH", "465 773 OFFCURVE", "474 768 OFFCURVE", "484 741 CURVE SMOOTH", "494 714 OFFCURVE", "509 691 OFFCURVE", "530 674 CURVE SMOOTH", "544 663 OFFCURVE", "545 649 OFFCURVE", "534 635 CURVE SMOOTH", "509 603 LINE", "512 558 OFFCURVE", "518 498 OFFCURVE", "528 421 CURVE SMOOTH", "538 344 OFFCURVE", "543 285 OFFCURVE", "546 242 CURVE SMOOTH", "551 171 OFFCURVE", "542 108 OFFCURVE", "519 52 CURVE SMOOTH", "503 15 OFFCURVE", "466 -17 OFFCURVE", "410 -42 CURVE SMOOTH", "354 -67 OFFCURVE", "303 -80 OFFCURVE", "257 -79 CURVE SMOOTH", "164 -78 OFFCURVE", "103 -43 OFFCURVE", "76 26 CURVE SMOOTH", "67 50 OFFCURVE", "62 76 OFFCURVE", "62 104 CURVE SMOOTH", "62 179 OFFCURVE", "85 247 OFFCURVE", "133 307 CURVE SMOOTH", "143 320 OFFCURVE", "150 322 OFFCURVE", "156 316 CURVE SMOOTH", "162 310 OFFCURVE", "161 301 OFFCURVE", "154 288 CURVE SMOOTH", "122 231 OFFCURVE", "108 189 OFFCURVE", "111 160 CURVE SMOOTH", "118 87 OFFCURVE", "178 52 OFFCURVE", "289 56 CURVE SMOOTH", "385 59 OFFCURVE", "454 85 OFFCURVE", "494 134 CURVE", "477 256 OFFCURVE", "465 347 OFFCURVE", "459 407 CURVE SMOOTH", "453 467 OFFCURVE", "447 531 OFFCURVE", "440 599 CURVE" ); } ); width = 603; } ); }, { glyphname = aLam.medi; layers = ( { anchors = ( { name = DotAbove; position = "{63, 796}"; }, { name = Stroke; position = "{82, 529}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; }, { name = TwoDotsAbove; position = "{5, 796}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{63, 747}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "207 88 OFFCURVE", "210 79 OFFCURVE", "210 61 CURVE SMOOTH", "209 20 OFFCURVE", "205 -1 OFFCURVE", "198 0 CURVE SMOOTH", "160 5 OFFCURVE", "127 43 OFFCURVE", "99 115 CURVE SMOOTH", "93 130 OFFCURVE", "88 129 OFFCURVE", "86 112 CURVE SMOOTH", "75 38 OFFCURVE", "46 1 OFFCURVE", "0 0 CURVE SMOOTH", "-5 0 OFFCURVE", "-8 4 OFFCURVE", "-11 11 CURVE SMOOTH", "-27 57 OFFCURVE", "-24 83 OFFCURVE", "0 90 CURVE SMOOTH", "23 97 OFFCURVE", "41 109 OFFCURVE", "53 126 CURVE SMOOTH", "63 140 OFFCURVE", "68 159 OFFCURVE", "67 182 CURVE SMOOTH", "50 635 LINE SMOOTH", "50 643 OFFCURVE", "51 649 OFFCURVE", "54 652 CURVE SMOOTH", "83 686 LINE SMOOTH", "90 694 OFFCURVE", "93 693 OFFCURVE", "94 681 CURVE SMOOTH", "97 649 OFFCURVE", "100 605 OFFCURVE", "102 549 CURVE SMOOTH", "109 346 OFFCURVE", "115 231 OFFCURVE", "121 204 CURVE SMOOTH", "137 136 OFFCURVE", "163 98 OFFCURVE", "198 90 CURVE SMOOTH" ); } ); width = 197; }, { anchors = ( { name = DotAbove; position = "{63, 796}"; }, { name = Stroke; position = "{82, 529}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; }, { name = TwoDotsAbove; position = "{5, 796}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{63, 747}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "79 29 OFFCURVE", "48 -15 OFFCURVE", "0 -15 CURVE", "-12 -15 OFFCURVE", "-21 -8 OFFCURVE", "-25 6 CURVE SMOOTH", "-41 61 OFFCURVE", "-33 94 OFFCURVE", "0 104 CURVE SMOOTH", "38 116 OFFCURVE", "58 143 OFFCURVE", "58 182 CURVE SMOOTH", "41 615 LINE SMOOTH", "40 630 OFFCURVE", "42 640 OFFCURVE", "48 646 CURVE SMOOTH", "85 688 LINE SMOOTH", "98 703 OFFCURVE", "104 694 OFFCURVE", "104 663 CURVE SMOOTH", "115 432 LINE SMOOTH", "120 309 OFFCURVE", "125 234 OFFCURVE", "130 207 CURVE SMOOTH", "142 147 OFFCURVE", "165 112 OFFCURVE", "198 104 CURVE SMOOTH", "215 100 OFFCURVE", "223 85 OFFCURVE", "225 59 CURVE SMOOTH", "227 33 OFFCURVE", "224 12 OFFCURVE", "217 -4 CURVE SMOOTH", "213 -11 OFFCURVE", "207 -15 OFFCURVE", "198 -15 CURVE SMOOTH", "153 -15 OFFCURVE", "117 29 OFFCURVE", "93 115 CURVE" ); } ); width = 197; } ); }, { glyphname = aMem.fina.alt; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "343 91 OFFCURVE", "348 89 OFFCURVE", "350 82 CURVE SMOOTH", "355 60 OFFCURVE", "353 33 OFFCURVE", "344 4 CURVE SMOOTH", "343 2 OFFCURVE", "340 1 OFFCURVE", "334 0 CURVE SMOOTH", "296 -6 OFFCURVE", "269 -15 OFFCURVE", "251 -29 CURVE", "317 -64 OFFCURVE", "363 -91 OFFCURVE", "389 -111 CURVE SMOOTH", "402 -120 OFFCURVE", "406 -132 OFFCURVE", "399 -147 CURVE SMOOTH", "373 -208 LINE SMOOTH", "365 -227 OFFCURVE", "356 -234 OFFCURVE", "347 -229 CURVE SMOOTH", "317 -213 OFFCURVE", "275 -206 OFFCURVE", "222 -208 CURVE SMOOTH", "143 -211 OFFCURVE", "100 -227 OFFCURVE", "96 -258 CURVE SMOOTH", "92 -284 OFFCURVE", "111 -387 OFFCURVE", "151 -569 CURVE SMOOTH", "162 -620 OFFCURVE", "168 -667 OFFCURVE", "166 -708 CURVE SMOOTH", "165 -727 OFFCURVE", "160 -737 OFFCURVE", "151 -738 CURVE SMOOTH", "142 -739 OFFCURVE", "136 -730 OFFCURVE", "134 -710 CURVE SMOOTH", "128 -649 OFFCURVE", "117 -592 OFFCURVE", "102 -539 CURVE SMOOTH", "87 -486 OFFCURVE", "76 -435 OFFCURVE", "68 -386 CURVE SMOOTH", "60 -337 OFFCURVE", "61 -291 OFFCURVE", "73 -245 CURVE SMOOTH", "85 -199 OFFCURVE", "100 -168 OFFCURVE", "120 -152 CURVE SMOOTH", "140 -136 OFFCURVE", "165 -125 OFFCURVE", "198 -120 CURVE", "170 -105 OFFCURVE", "153 -96 OFFCURVE", "147 -93 CURVE SMOOTH", "141 -90 OFFCURVE", "139 -84 OFFCURVE", "141 -75 CURVE SMOOTH", "148 -46 OFFCURVE", "154 -29 OFFCURVE", "160 -24 CURVE SMOOTH", "235 46 OFFCURVE", "293 84 OFFCURVE", "334 90 CURVE SMOOTH" ); } ); width = 334; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "349 108 OFFCURVE", "360 101 OFFCURVE", "364 85 CURVE", "370 60 OFFCURVE", "368 32 OFFCURVE", "358 0 CURVE SMOOTH", "355 -8 OFFCURVE", "349 -12 OFFCURVE", "338 -14 CURVE SMOOTH", "337 -14 OFFCURVE", "331 -15 OFFCURVE", "320 -17 CURVE SMOOTH", "309 -19 OFFCURVE", "296 -23 OFFCURVE", "281 -29 CURVE", "335 -58 OFFCURVE", "373 -81 OFFCURVE", "394 -97 CURVE SMOOTH", "415 -113 OFFCURVE", "422 -131 OFFCURVE", "412 -153 CURVE SMOOTH", "386 -213 LINE SMOOTH", "378 -232 OFFCURVE", "368 -242 OFFCURVE", "356 -244 CURVE", "350 -245 OFFCURVE", "345 -245 OFFCURVE", "340 -242 CURVE SMOOTH", "312 -228 OFFCURVE", "268 -221 OFFCURVE", "207 -223 CURVE SMOOTH", "146 -225 OFFCURVE", "115 -238 OFFCURVE", "111 -261 CURVE SMOOTH", "107 -284 OFFCURVE", "126 -386 OFFCURVE", "166 -566 CURVE SMOOTH", "178 -619 OFFCURVE", "182 -666 OFFCURVE", "180 -709 CURVE", "178 -735 OFFCURVE", "169 -750 OFFCURVE", "153 -753 CURVE", "134 -756 OFFCURVE", "123 -742 OFFCURVE", "119 -712 CURVE", "113 -651 OFFCURVE", "103 -595 OFFCURVE", "88 -542 CURVE SMOOTH", "73 -489 OFFCURVE", "61 -437 OFFCURVE", "53 -387 CURVE SMOOTH", "45 -337 OFFCURVE", "47 -288 OFFCURVE", "59 -240 CURVE SMOOTH", "71 -192 OFFCURVE", "89 -158 OFFCURVE", "111 -140 CURVE SMOOTH", "125 -129 OFFCURVE", "140 -121 OFFCURVE", "158 -115 CURVE", "150 -111 OFFCURVE", "144 -107 OFFCURVE", "140 -105 CURVE SMOOTH", "127 -99 OFFCURVE", "123 -88 OFFCURVE", "127 -71 CURVE SMOOTH", "134 -42 OFFCURVE", "139 -25 OFFCURVE", "143 -21 CURVE SMOOTH", "147 -17 OFFCURVE", "149 -14 OFFCURVE", "150 -13 CURVE SMOOTH", "228 59 OFFCURVE", "288 99 OFFCURVE", "332 105 CURVE SMOOTH" ); } ); width = 334; } ); }, { glyphname = aMem.fina; layers = ( { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "294 165 OFFCURVE", "334 135 OFFCURVE", "381 118 CURVE SMOOTH", "428 101 OFFCURVE", "474 91 OFFCURVE", "522 90 CURVE SMOOTH", "543 89 OFFCURVE", "552 75 OFFCURVE", "547 45 CURVE SMOOTH", "542 15 OFFCURVE", "533 0 OFFCURVE", "522 0 CURVE SMOOTH", "461 0 OFFCURVE", "407 13 OFFCURVE", "358 40 CURVE SMOOTH", "354 42 OFFCURVE", "354 41 OFFCURVE", "354 37 CURVE SMOOTH", "357 -34 OFFCURVE", "344 -81 OFFCURVE", "316 -104 CURVE SMOOTH", "307 -111 OFFCURVE", "297 -111 OFFCURVE", "288 -103 CURVE SMOOTH", "249 -68 OFFCURVE", "224 -15 OFFCURVE", "217 57 CURVE", "182 56 OFFCURVE", "145 36 OFFCURVE", "107 -2 CURVE", "100 -10 OFFCURVE", "102 -53 OFFCURVE", "114 -132 CURVE SMOOTH", "151 -375 OFFCURVE", "164 -514 OFFCURVE", "155 -549 CURVE SMOOTH", "151 -565 OFFCURVE", "147 -574 OFFCURVE", "141 -577 CURVE SMOOTH", "135 -580 OFFCURVE", "130 -579 OFFCURVE", "125 -572 CURVE SMOOTH", "120 -565 OFFCURVE", "118 -555 OFFCURVE", "118 -543 CURVE SMOOTH", "116 -478 OFFCURVE", "103 -375 OFFCURVE", "79 -233 CURVE SMOOTH", "58 -112 OFFCURVE", "60 -20 OFFCURVE", "84 42 CURVE SMOOTH", "106 97 OFFCURVE", "153 140 OFFCURVE", "226 170 CURVE", "230 182 OFFCURVE", "235 193 OFFCURVE", "241 202 CURVE SMOOTH", "247 211 OFFCURVE", "254 212 OFFCURVE", "261 204 CURVE SMOOTH" ); } ); width = 522; }, { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "330 145 OFFCURVE", "413 109 OFFCURVE", "522 105 CURVE SMOOTH", "555 104 OFFCURVE", "568 83 OFFCURVE", "561 44 CURVE SMOOTH", "554 5 OFFCURVE", "541 -15 OFFCURVE", "522 -15 CURVE SMOOTH", "463 -16 OFFCURVE", "411 -4 OFFCURVE", "364 18 CURVE", "364 -45 OFFCURVE", "349 -89 OFFCURVE", "320 -112 CURVE SMOOTH", "307 -122 OFFCURVE", "294 -122 OFFCURVE", "281 -111 CURVE SMOOTH", "242 -76 OFFCURVE", "218 -25 OFFCURVE", "209 41 CURVE", "172 36 OFFCURVE", "140 18 OFFCURVE", "112 -11 CURVE", "109 -25 OFFCURVE", "112 -64 OFFCURVE", "122 -130 CURVE SMOOTH", "158 -370 OFFCURVE", "172 -510 OFFCURVE", "163 -550 CURVE SMOOTH", "157 -575 OFFCURVE", "147 -588 OFFCURVE", "133 -588 CURVE SMOOTH", "119 -588 OFFCURVE", "112 -572 OFFCURVE", "111 -543 CURVE SMOOTH", "110 -496 OFFCURVE", "97 -403 OFFCURVE", "74 -262 CURVE SMOOTH", "51 -121 OFFCURVE", "51 -19 OFFCURVE", "76 43 CURVE SMOOTH", "101 105 OFFCURVE", "150 152 OFFCURVE", "223 185 CURVE", "237 226 OFFCURVE", "253 235 OFFCURVE", "272 213 CURVE SMOOTH" ); } ); width = 522; } ); }, { glyphname = aMem.init; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "278 317 OFFCURVE", "309 262 OFFCURVE", "326 152 CURVE SMOOTH", "327 145 OFFCURVE", "326 139 OFFCURVE", "323 135 CURVE SMOOTH", "268 66 LINE SMOOTH", "263 59 OFFCURVE", "256 57 OFFCURVE", "249 59 CURVE SMOOTH", "197 74 OFFCURVE", "152 98 OFFCURVE", "113 131 CURVE", "82 44 OFFCURVE", "45 0 OFFCURVE", "0 0 CURVE", "-6 0 OFFCURVE", "-10 7 OFFCURVE", "-15 21 CURVE SMOOTH", "-30 67 OFFCURVE", "-25 90 OFFCURVE", "0 90 CURVE", "31 91 OFFCURVE", "60 110 OFFCURVE", "88 146 CURVE SMOOTH", "97 158 OFFCURVE", "119 195 OFFCURVE", "153 256 CURVE SMOOTH", "176 297 OFFCURVE", "202 318 OFFCURVE", "233 318 CURVE" ); }, { closed = 1; nodes = ( "185 197 OFFCURVE", "215 182 OFFCURVE", "251 174 CURVE", "252 203 OFFCURVE", "242 222 OFFCURVE", "222 231 CURVE SMOOTH", "202 240 OFFCURVE", "182 237 OFFCURVE", "161 220 CURVE" ); } ); width = 389; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "185 197 OFFCURVE", "215 182 OFFCURVE", "251 174 CURVE", "252 203 OFFCURVE", "242 222 OFFCURVE", "222 231 CURVE SMOOTH", "202 240 OFFCURVE", "182 237 OFFCURVE", "161 220 CURVE" ); }, { closed = 1; nodes = ( "282 332 OFFCURVE", "316 271 OFFCURVE", "335 149 CURVE SMOOTH", "337 138 OFFCURVE", "335 128 OFFCURVE", "329 121 CURVE SMOOTH", "280 57 LINE SMOOTH", "271 46 OFFCURVE", "260 42 OFFCURVE", "245 45 CURVE SMOOTH", "192 58 OFFCURVE", "147 82 OFFCURVE", "112 117 CURVE", "84 30 OFFCURVE", "47 -14 OFFCURVE", "0 -15 CURVE SMOOTH", "-13 -15 OFFCURVE", "-23 -5 OFFCURVE", "-29 14 CURVE SMOOTH", "-35 33 OFFCURVE", "-38 51 OFFCURVE", "-38 67 CURVE SMOOTH", "-38 83 OFFCURVE", "-31 94 OFFCURVE", "-17 101 CURVE SMOOTH", "-12 103 OFFCURVE", "-6 105 OFFCURVE", "0 105 CURVE SMOOTH", "36 107 OFFCURVE", "66 126 OFFCURVE", "90 161 CURVE SMOOTH", "97 172 OFFCURVE", "118 205 OFFCURVE", "150 263 CURVE SMOOTH", "176 310 OFFCURVE", "204 333 OFFCURVE", "233 333 CURVE SMOOTH" ); } ); width = 389; } ); }, { glyphname = aMem.isol; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "180 173 OFFCURVE", "209 181 OFFCURVE", "243 185 CURVE", "219 205 OFFCURVE", "201 214 OFFCURVE", "188 210 CURVE SMOOTH", "170 205 OFFCURVE", "159 189 OFFCURVE", "156 163 CURVE" ); }, { closed = 1; nodes = ( "110 169 OFFCURVE", "121 211 OFFCURVE", "140 250 CURVE SMOOTH", "159 289 OFFCURVE", "180 313 OFFCURVE", "202 321 CURVE", "233 333 OFFCURVE", "271 320 OFFCURVE", "316 282 CURVE SMOOTH", "340 262 OFFCURVE", "361 239 OFFCURVE", "381 214 CURVE SMOOTH", "387 207 OFFCURVE", "390 200 OFFCURVE", "389 193 CURVE SMOOTH", "379 135 OFFCURVE", "373 101 OFFCURVE", "370 94 CURVE SMOOTH", "367 87 OFFCURVE", "361 84 OFFCURVE", "353 86 CURVE", "242 112 OFFCURVE", "160 92 OFFCURVE", "104 26 CURVE SMOOTH", "99 20 OFFCURVE", "97 13 OFFCURVE", "99 6 CURVE SMOOTH", "123 -81 OFFCURVE", "145 -176 OFFCURVE", "165 -280 CURVE SMOOTH", "195 -434 OFFCURVE", "198 -513 OFFCURVE", "173 -516 CURVE SMOOTH", "165 -517 OFFCURVE", "160 -508 OFFCURVE", "158 -490 CURVE SMOOTH", "152 -426 OFFCURVE", "137 -351 OFFCURVE", "116 -267 CURVE", "76 -114 OFFCURVE", "59 -18 OFFCURVE", "65 20 CURVE SMOOTH", "72 71 OFFCURVE", "86 106 OFFCURVE", "104 126 CURVE" ); } ); width = 452; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "180 173 OFFCURVE", "209 181 OFFCURVE", "243 185 CURVE", "219 205 OFFCURVE", "201 214 OFFCURVE", "188 210 CURVE SMOOTH", "170 205 OFFCURVE", "159 189 OFFCURVE", "156 163 CURVE" ); }, { closed = 1; nodes = ( "101 181 OFFCURVE", "110 223 OFFCURVE", "128 259 CURVE SMOOTH", "190 385 OFFCURVE", "277 374 OFFCURVE", "388 223 CURVE", "396 210 OFFCURVE", "399 198 OFFCURVE", "398 190 CURVE SMOOTH", "389 133 OFFCURVE", "383 100 OFFCURVE", "379 92 CURVE", "373 76 OFFCURVE", "361 69 OFFCURVE", "345 72 CURVE", "244 96 OFFCURVE", "165 75 OFFCURVE", "108 12 CURVE", "131 -77 OFFCURVE", "151 -159 OFFCURVE", "167 -236 CURVE", "196 -379 OFFCURVE", "205 -466 OFFCURVE", "196 -499 CURVE SMOOTH", "191 -515 OFFCURVE", "184 -523 OFFCURVE", "174 -525 CURVE SMOOTH", "159 -527 OFFCURVE", "151 -514 OFFCURVE", "148 -486 CURVE SMOOTH", "143 -426 OFFCURVE", "129 -354 OFFCURVE", "107 -270 CURVE SMOOTH", "67 -118 OFFCURVE", "50 -18 OFFCURVE", "56 29 CURVE SMOOTH", "62 76 OFFCURVE", "77 111 OFFCURVE", "99 133 CURVE" ); } ); width = 452; } ); }, { glyphname = aMem.medi; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "227 252 OFFCURVE", "230 251 OFFCURVE", "232 248 CURVE SMOOTH", "256 212 OFFCURVE", "288 178 OFFCURVE", "328 146 CURVE SMOOTH", "368 114 OFFCURVE", "413 95 OFFCURVE", "464 90 CURVE SMOOTH", "477 89 OFFCURVE", "483 80 OFFCURVE", "483 65 CURVE SMOOTH", "483 21 OFFCURVE", "477 0 OFFCURVE", "464 0 CURVE SMOOTH", "418 0 OFFCURVE", "371 17 OFFCURVE", "323 50 CURVE", "320 14 OFFCURVE", "317 -7 OFFCURVE", "311 -13 CURVE SMOOTH", "305 -19 OFFCURVE", "298 -21 OFFCURVE", "292 -21 CURVE SMOOTH", "217 -15 OFFCURVE", "155 17 OFFCURVE", "105 78 CURVE SMOOTH", "103 81 OFFCURVE", "101 81 OFFCURVE", "98 77 CURVE SMOOTH", "65 27 OFFCURVE", "32 1 OFFCURVE", "0 0 CURVE SMOOTH", "-7 0 OFFCURVE", "-12 5 OFFCURVE", "-15 16 CURVE SMOOTH", "-23 46 OFFCURVE", "-23 67 OFFCURVE", "-14 80 CURVE SMOOTH", "-9 87 OFFCURVE", "-5 90 OFFCURVE", "0 90 CURVE SMOOTH", "63 92 OFFCURVE", "101 108 OFFCURVE", "115 138 CURVE", "144 197 OFFCURVE", "181 235 OFFCURVE", "223 250 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "218 178 OFFCURVE", "216 179 OFFCURVE", "212 178 CURVE SMOOTH", "191 173 OFFCURVE", "177 164 OFFCURVE", "169 153 CURVE SMOOTH", "166 149 OFFCURVE", "166 145 OFFCURVE", "170 142 CURVE SMOOTH", "194 122 OFFCURVE", "222 106 OFFCURVE", "256 96 CURVE SMOOTH", "265 93 OFFCURVE", "267 96 OFFCURVE", "262 102 CURVE SMOOTH", "248 120 OFFCURVE", "234 145 OFFCURVE", "219 176 CURVE SMOOTH" ); } ); width = 463; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "218 178 OFFCURVE", "216 179 OFFCURVE", "212 178 CURVE SMOOTH", "191 173 OFFCURVE", "177 164 OFFCURVE", "169 153 CURVE SMOOTH", "166 149 OFFCURVE", "166 145 OFFCURVE", "170 142 CURVE SMOOTH", "194 122 OFFCURVE", "222 106 OFFCURVE", "256 96 CURVE SMOOTH", "265 93 OFFCURVE", "267 96 OFFCURVE", "262 102 CURVE SMOOTH", "248 120 OFFCURVE", "234 145 OFFCURVE", "219 176 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "229 267 OFFCURVE", "237 265 OFFCURVE", "244 256 CURVE SMOOTH", "268 221 OFFCURVE", "298 189 OFFCURVE", "336 158 CURVE SMOOTH", "374 127 OFFCURVE", "416 110 OFFCURVE", "464 105 CURVE SMOOTH", "485 103 OFFCURVE", "497 89 OFFCURVE", "498 65 CURVE", "498 32 OFFCURVE", "495 11 OFFCURVE", "488 1 CURVE SMOOTH", "481 -9 OFFCURVE", "473 -15 OFFCURVE", "464 -15 CURVE", "421 -15 OFFCURVE", "378 -2 OFFCURVE", "335 24 CURVE", "332 2 OFFCURVE", "330 -11 OFFCURVE", "327 -15 CURVE SMOOTH", "317 -29 OFFCURVE", "306 -36 OFFCURVE", "292 -36 CURVE", "218 -30 OFFCURVE", "155 2 OFFCURVE", "103 59 CURVE", "69 12 OFFCURVE", "35 -13 OFFCURVE", "0 -15 CURVE", "-15 -15 OFFCURVE", "-24 -6 OFFCURVE", "-29 12 CURVE SMOOTH", "-38 47 OFFCURVE", "-37 72 OFFCURVE", "-26 88 CURVE", "-18 98 OFFCURVE", "-9 104 OFFCURVE", "0 105 CURVE", "57 107 OFFCURVE", "91 120 OFFCURVE", "102 144 CURVE", "134 207 OFFCURVE", "172 246 OFFCURVE", "218 263 CURVE SMOOTH" ); } ); width = 463; } ); }, { glyphname = aNon.fina.alt; layers = ( { anchors = ( { name = DotAbove; position = "{968, 81}"; }, { name = DotBelow; position = "{923, -520}"; }, { name = HamzaAbove; position = "{968, 81}"; }, { name = RingBelow; position = "{923, -325}"; }, { name = TashkilAbove; position = "{968, 801}"; }, { name = TashkilBelow; position = "{488, -425}"; }, { name = TwoDotsAbove; position = "{914, 81}"; }, { name = TwoDotsBelow; position = "{869, -520}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1530 153 OFFCURVE", "1538 156 OFFCURVE", "1544 144 CURVE SMOOTH", "1561 109 OFFCURVE", "1580 90 OFFCURVE", "1599 90 CURVE SMOOTH", "1609 90 OFFCURVE", "1614 75 OFFCURVE", "1614 45 CURVE SMOOTH", "1614 15 OFFCURVE", "1609 1 OFFCURVE", "1599 0 CURVE", "1567 0 LINE", "1563 -22 OFFCURVE", "1557 -43 OFFCURVE", "1550 -63 CURVE SMOOTH", "1543 -83 OFFCURVE", "1526 -108 OFFCURVE", "1503 -140 CURVE SMOOTH", "1440 -225 OFFCURVE", "1334 -287 OFFCURVE", "1186 -325 CURVE SMOOTH", "1056 -358 OFFCURVE", "925 -375 OFFCURVE", "794 -376 CURVE SMOOTH", "573 -378 OFFCURVE", "398 -341 OFFCURVE", "268 -264 CURVE SMOOTH", "257 -257 OFFCURVE", "190 -198 OFFCURVE", "69 -87 CURVE SMOOTH", "65 -83 OFFCURVE", "63 -80 OFFCURVE", "63 -75 CURVE SMOOTH", "63 -70 OFFCURVE", "65 -67 OFFCURVE", "69 -66 CURVE SMOOTH", "73 -65 OFFCURVE", "77 -65 OFFCURVE", "81 -68 CURVE SMOOTH", "275 -210 OFFCURVE", "518 -280 OFFCURVE", "812 -277 CURVE SMOOTH", "912 -276 OFFCURVE", "1004 -266 OFFCURVE", "1090 -247 CURVE SMOOTH", "1314 -197 OFFCURVE", "1456 -130 OFFCURVE", "1515 -44 CURVE SMOOTH", "1518 -40 OFFCURVE", "1519 -36 OFFCURVE", "1519 -34 CURVE SMOOTH", "1518 -4 OFFCURVE", "1510 28 OFFCURVE", "1495 64 CURVE SMOOTH", "1493 69 OFFCURVE", "1493 73 OFFCURVE", "1495 77 CURVE SMOOTH", "1521 133 LINE SMOOTH" ); } ); width = 1599; }, { anchors = ( { name = DotAbove; position = "{968, 81}"; }, { name = DotBelow; position = "{923, -520}"; }, { name = HamzaAbove; position = "{968, 81}"; }, { name = RingBelow; position = "{923, -325}"; }, { name = TashkilAbove; position = "{968, 801}"; }, { name = TashkilBelow; position = "{488, -425}"; }, { name = TwoDotsAbove; position = "{914, 81}"; }, { name = TwoDotsBelow; position = "{869, -520}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1514 152 OFFCURVE", "1523 160 OFFCURVE", "1532 165 CURVE SMOOTH", "1541 170 OFFCURVE", "1550 165 OFFCURVE", "1558 150 CURVE SMOOTH", "1573 121 OFFCURVE", "1586 106 OFFCURVE", "1599 105 CURVE SMOOTH", "1619 104 OFFCURVE", "1629 86 OFFCURVE", "1629 51 CURVE SMOOTH", "1629 16 OFFCURVE", "1623 -4 OFFCURVE", "1612 -11 CURVE SMOOTH", "1608 -13 OFFCURVE", "1605 -15 OFFCURVE", "1600 -15 CURVE SMOOTH", "1579 -15 LINE", "1575 -34 OFFCURVE", "1569 -53 OFFCURVE", "1562 -72 CURVE SMOOTH", "1555 -91 OFFCURVE", "1539 -117 OFFCURVE", "1515 -149 CURVE SMOOTH", "1449 -237 OFFCURVE", "1340 -300 OFFCURVE", "1189 -339 CURVE SMOOTH", "1058 -372 OFFCURVE", "926 -390 OFFCURVE", "794 -391 CURVE SMOOTH", "571 -393 OFFCURVE", "393 -355 OFFCURVE", "260 -276 CURVE SMOOTH", "247 -268 OFFCURVE", "181 -209 OFFCURVE", "59 -98 CURVE SMOOTH", "52 -91 OFFCURVE", "48 -83 OFFCURVE", "49 -73 CURVE SMOOTH", "50 -63 OFFCURVE", "55 -56 OFFCURVE", "64 -52 CURVE", "73 -49 OFFCURVE", "81 -51 OFFCURVE", "90 -57 CURVE SMOOTH", "281 -197 OFFCURVE", "522 -265 OFFCURVE", "812 -262 CURVE SMOOTH", "911 -261 OFFCURVE", "1003 -252 OFFCURVE", "1087 -233 CURVE SMOOTH", "1307 -184 OFFCURVE", "1446 -118 OFFCURVE", "1503 -36 CURVE SMOOTH", "1504 -35 OFFCURVE", "1503 -34 OFFCURVE", "1504 -33 CURVE", "1503 -5 OFFCURVE", "1496 25 OFFCURVE", "1482 58 CURVE SMOOTH", "1479 67 OFFCURVE", "1478 75 OFFCURVE", "1482 83 CURVE SMOOTH", "1508 139 LINE SMOOTH" ); } ); width = 1599; } ); }, { glyphname = aNon.fina; layers = ( { anchors = ( { name = DotAbove; position = "{332, 312}"; }, { name = DotBelow; position = "{267, -486}"; }, { name = HamzaAbove; position = "{332, 244}"; }, { name = RingBelow; position = "{267, -291}"; }, { name = TaaAbove; position = "{332, 195}"; }, { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; }, { name = TwoDotsAbove; position = "{278, 312}"; }, { name = TwoDotsBelow; position = "{213, -486}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "531 158 OFFCURVE", "536 159 OFFCURVE", "543 152 CURVE SMOOTH", "550 145 OFFCURVE", "560 130 OFFCURVE", "574 109 CURVE SMOOTH", "582 96 OFFCURVE", "595 90 OFFCURVE", "615 90 CURVE SMOOTH", "629 90 OFFCURVE", "637 83 OFFCURVE", "639 69 CURVE SMOOTH", "641 55 OFFCURVE", "638 40 OFFCURVE", "632 24 CURVE SMOOTH", "626 8 OFFCURVE", "621 0 OFFCURVE", "615 0 CURVE SMOOTH", "584 0 LINE", "580 -77 OFFCURVE", "557 -149 OFFCURVE", "513 -216 CURVE SMOOTH", "463 -292 OFFCURVE", "378 -332 OFFCURVE", "259 -336 CURVE SMOOTH", "199 -338 OFFCURVE", "150 -321 OFFCURVE", "114 -286 CURVE SMOOTH", "78 -251 OFFCURVE", "61 -208 OFFCURVE", "64 -157 CURVE SMOOTH", "67 -106 OFFCURVE", "93 -38 OFFCURVE", "140 49 CURVE SMOOTH", "142 53 OFFCURVE", "144 55 OFFCURVE", "148 55 CURVE SMOOTH", "152 55 OFFCURVE", "156 54 OFFCURVE", "158 51 CURVE SMOOTH", "160 48 OFFCURVE", "160 43 OFFCURVE", "157 38 CURVE SMOOTH", "125 -24 OFFCURVE", "109 -68 OFFCURVE", "111 -93 CURVE SMOOTH", "116 -182 OFFCURVE", "170 -227 OFFCURVE", "271 -228 CURVE", "382 -229 OFFCURVE", "465 -199 OFFCURVE", "522 -137 CURVE", "533 -57 OFFCURVE", "527 10 OFFCURVE", "503 64 CURVE SMOOTH", "499 73 OFFCURVE", "497 79 OFFCURVE", "498 81 CURVE SMOOTH", "527 148 LINE SMOOTH" ); } ); width = 615; }, { anchors = ( { name = DotAbove; position = "{332, 312}"; }, { name = DotBelow; position = "{267, -486}"; }, { name = HamzaAbove; position = "{332, 244}"; }, { name = RingBelow; position = "{267, -291}"; }, { name = TaaAbove; position = "{332, 195}"; }, { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; }, { name = TwoDotsAbove; position = "{278, 312}"; }, { name = TwoDotsBelow; position = "{213, -486}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "526 171 OFFCURVE", "537 175 OFFCURVE", "550 166 CURVE SMOOTH", "557 161 OFFCURVE", "569 144 OFFCURVE", "586 117 CURVE", "590 109 OFFCURVE", "600 105 OFFCURVE", "615 105 CURVE SMOOTH", "630 105 OFFCURVE", "642 98 OFFCURVE", "649 82 CURVE SMOOTH", "656 66 OFFCURVE", "656 47 OFFCURVE", "648 26 CURVE SMOOTH", "640 5 OFFCURVE", "634 -7 OFFCURVE", "629 -10 CURVE SMOOTH", "624 -13 OFFCURVE", "619 -15 OFFCURVE", "615 -15 CURVE SMOOTH", "593 -15 LINE", "589 -62 OFFCURVE", "572 -117 OFFCURVE", "541 -180 CURVE SMOOTH", "487 -291 OFFCURVE", "392 -348 OFFCURVE", "259 -351 CURVE SMOOTH", "201 -352 OFFCURVE", "154 -334 OFFCURVE", "116 -298 CURVE SMOOTH", "78 -262 OFFCURVE", "60 -216 OFFCURVE", "63 -162 CURVE SMOOTH", "66 -108 OFFCURVE", "90 -40 OFFCURVE", "136 44 CURVE SMOOTH", "143 56 OFFCURVE", "149 60 OFFCURVE", "155 56 CURVE SMOOTH", "161 52 OFFCURVE", "162 44 OFFCURVE", "156 33 CURVE SMOOTH", "126 -26 OFFCURVE", "112 -67 OFFCURVE", "113 -92 CURVE SMOOTH", "118 -172 OFFCURVE", "170 -212 OFFCURVE", "271 -213 CURVE SMOOTH", "381 -214 OFFCURVE", "464 -186 OFFCURVE", "519 -130 CURVE", "528 -56 OFFCURVE", "518 10 OFFCURVE", "492 68 CURVE SMOOTH", "487 78 OFFCURVE", "488 90 OFFCURVE", "495 104 CURVE SMOOTH", "518 154 LINE SMOOTH" ); } ); width = 615; } ); }, { glyphname = aNon.isol.alt; layers = ( { anchors = ( { name = DotAbove; position = "{1074, 273}"; }, { name = DotBelow; position = "{1061, -332}"; }, { name = HamzaAbove; position = "{1074, 273}"; }, { name = RingBelow; position = "{1061, -137}"; }, { name = TashkilAbove; position = "{1074, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; }, { name = TwoDotsAbove; position = "{1020, 273}"; }, { name = TwoDotsBelow; position = "{1007, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1646 336 OFFCURVE", "1659 292 OFFCURVE", "1667 240 CURVE SMOOTH", "1675 188 OFFCURVE", "1674 148 OFFCURVE", "1665 118 CURVE SMOOTH", "1650 72 OFFCURVE", "1633 36 OFFCURVE", "1614 11 CURVE", "1586 -24 OFFCURVE", "1540 -55 OFFCURVE", "1474 -85 CURVE SMOOTH", "1372 -132 OFFCURVE", "1232 -164 OFFCURVE", "1053 -183 CURVE SMOOTH", "874 -202 OFFCURVE", "699 -192 OFFCURVE", "528 -155 CURVE", "405 -129 OFFCURVE", "320 -101 OFFCURVE", "274 -73 CURVE SMOOTH", "228 -45 OFFCURVE", "160 14 OFFCURVE", "70 104 CURVE SMOOTH", "63 110 OFFCURVE", "62 117 OFFCURVE", "66 123 CURVE SMOOTH", "70 129 OFFCURVE", "75 130 OFFCURVE", "83 125 CURVE SMOOTH", "179 62 OFFCURVE", "303 11 OFFCURVE", "455 -29 CURVE", "658 -83 OFFCURVE", "872 -97 OFFCURVE", "1095 -73 CURVE SMOOTH", "1282 -52 OFFCURVE", "1418 -21 OFFCURVE", "1506 21 CURVE SMOOTH", "1562 48 OFFCURVE", "1602 80 OFFCURVE", "1627 115 CURVE SMOOTH", "1629 118 OFFCURVE", "1630 121 OFFCURVE", "1630 125 CURVE SMOOTH", "1627 166 OFFCURVE", "1610 217 OFFCURVE", "1578 279 CURVE SMOOTH", "1576 283 OFFCURVE", "1576 288 OFFCURVE", "1578 293 CURVE SMOOTH", "1614 372 LINE SMOOTH", "1618 380 OFFCURVE", "1622 379 OFFCURVE", "1627 371 CURVE" ); } ); width = 1734; }, { anchors = ( { name = DotAbove; position = "{1074, 273}"; }, { name = DotBelow; position = "{1061, -332}"; }, { name = HamzaAbove; position = "{1074, 273}"; }, { name = RingBelow; position = "{1061, -137}"; }, { name = TashkilAbove; position = "{1074, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; }, { name = TwoDotsAbove; position = "{1020, 273}"; }, { name = TwoDotsBelow; position = "{1007, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1658 347 OFFCURVE", "1673 303 OFFCURVE", "1681 246 CURVE SMOOTH", "1689 189 OFFCURVE", "1688 145 OFFCURVE", "1678 113 CURVE SMOOTH", "1662 65 OFFCURVE", "1645 28 OFFCURVE", "1625 2 CURVE", "1595 -34 OFFCURVE", "1548 -68 OFFCURVE", "1480 -99 CURVE SMOOTH", "1376 -146 OFFCURVE", "1234 -179 OFFCURVE", "1054 -198 CURVE SMOOTH", "874 -217 OFFCURVE", "698 -207 OFFCURVE", "525 -170 CURVE SMOOTH", "400 -143 OFFCURVE", "314 -114 OFFCURVE", "267 -85 CURVE SMOOTH", "220 -56 OFFCURVE", "151 4 OFFCURVE", "60 94 CURVE", "48 105 OFFCURVE", "45 117 OFFCURVE", "52 129 CURVE SMOOTH", "59 141 OFFCURVE", "70 145 OFFCURVE", "83 141 CURVE SMOOTH", "86 140 OFFCURVE", "89 139 OFFCURVE", "91 137 CURVE SMOOTH", "186 75 OFFCURVE", "309 24 OFFCURVE", "459 -15 CURVE SMOOTH", "661 -68 OFFCURVE", "872 -83 OFFCURVE", "1093 -59 CURVE", "1278 -38 OFFCURVE", "1414 -7 OFFCURVE", "1500 35 CURVE SMOOTH", "1553 61 OFFCURVE", "1591 90 OFFCURVE", "1615 123 CURVE", "1615 124 OFFCURVE", "1615 124 OFFCURVE", "1615 124 CURVE SMOOTH", "1612 163 OFFCURVE", "1596 212 OFFCURVE", "1565 272 CURVE SMOOTH", "1561 281 OFFCURVE", "1560 290 OFFCURVE", "1564 299 CURVE SMOOTH", "1601 378 LINE SMOOTH", "1604 383 OFFCURVE", "1607 387 OFFCURVE", "1610 389 CURVE SMOOTH", "1621 396 OFFCURVE", "1631 393 OFFCURVE", "1639 379 CURVE SMOOTH" ); } ); width = 1734; } ); }, { glyphname = aNon.isol; layers = ( { anchors = ( { name = DotAbove; position = "{269, 552}"; }, { name = DotBelow; position = "{280, -213}"; }, { name = HamzaAbove; position = "{269, 488}"; }, { name = RingBelow; position = "{280, -18}"; }, { name = TaaAbove; position = "{269, 488}"; }, { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{214, 552}"; }, { name = TwoDotsBelow; position = "{226, -213}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "461 416 OFFCURVE", "481 364 OFFCURVE", "496 302 CURVE SMOOTH", "511 240 OFFCURVE", "513 181 OFFCURVE", "504 123 CURVE SMOOTH", "499 92 OFFCURVE", "489 64 OFFCURVE", "474 41 CURVE SMOOTH", "435 -20 OFFCURVE", "367 -55 OFFCURVE", "271 -64 CURVE SMOOTH", "202 -71 OFFCURVE", "149 -57 OFFCURVE", "113 -23 CURVE SMOOTH", "77 11 OFFCURVE", "61 57 OFFCURVE", "64 117 CURVE SMOOTH", "67 177 OFFCURVE", "87 233 OFFCURVE", "125 285 CURVE SMOOTH", "130 292 OFFCURVE", "135 294 OFFCURVE", "140 291 CURVE SMOOTH", "145 288 OFFCURVE", "145 280 OFFCURVE", "139 271 CURVE SMOOTH", "98 202 OFFCURVE", "90 145 OFFCURVE", "115 102 CURVE SMOOTH", "140 59 OFFCURVE", "191 38 OFFCURVE", "266 38 CURVE", "354 39 OFFCURVE", "424 67 OFFCURVE", "477 125 CURVE SMOOTH", "478 126 OFFCURVE", "479 130 OFFCURVE", "479 134 CURVE SMOOTH", "480 165 OFFCURVE", "470 207 OFFCURVE", "450 259 CURVE SMOOTH", "430 311 OFFCURVE", "413 349 OFFCURVE", "397 372 CURVE SMOOTH", "392 379 OFFCURVE", "391 384 OFFCURVE", "393 389 CURVE SMOOTH", "423 463 LINE SMOOTH", "427 472 OFFCURVE", "431 471 OFFCURVE", "438 460 CURVE" ); } ); width = 572; }, { anchors = ( { name = DotAbove; position = "{269, 552}"; }, { name = DotBelow; position = "{280, -213}"; }, { name = HamzaAbove; position = "{269, 488}"; }, { name = RingBelow; position = "{280, -18}"; }, { name = TaaAbove; position = "{269, 488}"; }, { name = TashkilAbove; position = "{269, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{214, 552}"; }, { name = TwoDotsBelow; position = "{226, -213}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "506 357 OFFCURVE", "524 244 OFFCURVE", "509 120 CURVE SMOOTH", "505 89 OFFCURVE", "495 60 OFFCURVE", "477 33 CURVE SMOOTH", "435 -31 OFFCURVE", "366 -69 OFFCURVE", "273 -79 CURVE SMOOTH", "208 -86 OFFCURVE", "157 -71 OFFCURVE", "119 -35 CURVE SMOOTH", "81 1 OFFCURVE", "63 48 OFFCURVE", "64 107 CURVE SMOOTH", "65 168 OFFCURVE", "85 227 OFFCURVE", "122 281 CURVE SMOOTH", "130 292 OFFCURVE", "136 296 OFFCURVE", "142 290 CURVE SMOOTH", "148 284 OFFCURVE", "149 275 OFFCURVE", "142 264 CURVE SMOOTH", "106 200 OFFCURVE", "100 149 OFFCURVE", "124 109 CURVE SMOOTH", "147 71 OFFCURVE", "194 51 OFFCURVE", "266 52 CURVE SMOOTH", "354 53 OFFCURVE", "424 80 OFFCURVE", "474 133 CURVE", "471 192 OFFCURVE", "443 265 OFFCURVE", "390 354 CURVE SMOOTH", "383 366 OFFCURVE", "380 377 OFFCURVE", "384 385 CURVE SMOOTH", "421 469 LINE", "430 490 OFFCURVE", "442 486 OFFCURVE", "456 458 CURVE SMOOTH" ); } ); width = 572; } ); }, { glyphname = aQaf.fina; layers = ( { anchors = ( { name = DotAbove; position = "{469, 361}"; }, { name = HamzaAbove; position = "{469, 361}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{415, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "529 211 OFFCURVE", "557 169 OFFCURVE", "571 90 CURVE", "594 90 OFFCURVE", "606 90 OFFCURVE", "608 90 CURVE SMOOTH", "617 90 OFFCURVE", "624 83 OFFCURVE", "627 68 CURVE SMOOTH", "630 53 OFFCURVE", "631 37 OFFCURVE", "627 22 CURVE SMOOTH", "623 7 OFFCURVE", "617 0 OFFCURVE", "608 0 CURVE SMOOTH", "569 0 LINE", "568 -5 OFFCURVE", "564 -23 OFFCURVE", "555 -55 CURVE SMOOTH", "546 -87 OFFCURVE", "535 -112 OFFCURVE", "521 -130 CURVE SMOOTH", "468 -201 OFFCURVE", "391 -242 OFFCURVE", "288 -255 CURVE SMOOTH", "230 -262 OFFCURVE", "180 -253 OFFCURVE", "139 -230 CURVE SMOOTH", "105 -210 OFFCURVE", "83 -183 OFFCURVE", "72 -146 CURVE SMOOTH", "53 -82 OFFCURVE", "66 -11 OFFCURVE", "111 67 CURVE", "140 116 LINE SMOOTH", "143 121 OFFCURVE", "146 123 OFFCURVE", "150 123 CURVE SMOOTH", "154 123 OFFCURVE", "157 120 OFFCURVE", "158 116 CURVE SMOOTH", "159 112 OFFCURVE", "159 109 OFFCURVE", "157 105 CURVE SMOOTH", "144 84 OFFCURVE", "136 71 OFFCURVE", "133 66 CURVE SMOOTH", "95 0 OFFCURVE", "92 -58 OFFCURVE", "126 -107 CURVE SMOOTH", "148 -139 OFFCURVE", "187 -158 OFFCURVE", "244 -165 CURVE SMOOTH", "301 -172 OFFCURVE", "358 -164 OFFCURVE", "415 -142 CURVE SMOOTH", "472 -120 OFFCURVE", "512 -86 OFFCURVE", "534 -42 CURVE", "537 -33 OFFCURVE", "536 -20 OFFCURVE", "530 0 CURVE", "474 0 OFFCURVE", "435 10 OFFCURVE", "412 30 CURVE SMOOTH", "389 50 OFFCURVE", "395 89 OFFCURVE", "430 148 CURVE SMOOTH", "458 194 OFFCURVE", "476 217 OFFCURVE", "487 216 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "490 121 OFFCURVE", "480 128 OFFCURVE", "466 128 CURVE SMOOTH", "452 128 OFFCURVE", "447 124 OFFCURVE", "451 115 CURVE SMOOTH", "458 100 OFFCURVE", "472 93 OFFCURVE", "494 95 CURVE SMOOTH", "499 96 OFFCURVE", "500 99 OFFCURVE", "498 103 CURVE SMOOTH" ); } ); width = 607; }, { anchors = ( { name = DotAbove; position = "{469, 361}"; }, { name = HamzaAbove; position = "{469, 361}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{415, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "490 121 OFFCURVE", "480 128 OFFCURVE", "466 128 CURVE SMOOTH", "452 128 OFFCURVE", "447 124 OFFCURVE", "451 115 CURVE SMOOTH", "458 100 OFFCURVE", "472 93 OFFCURVE", "494 95 CURVE SMOOTH", "499 96 OFFCURVE", "500 99 OFFCURVE", "498 103 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "538 224 OFFCURVE", "567 182 OFFCURVE", "583 104 CURVE", "604 104 OFFCURVE", "616 104 OFFCURVE", "619 103 CURVE SMOOTH", "630 98 OFFCURVE", "637 87 OFFCURVE", "641 70 CURVE SMOOTH", "645 53 OFFCURVE", "645 35 OFFCURVE", "640 15 CURVE SMOOTH", "635 -5 OFFCURVE", "624 -15 OFFCURVE", "608 -15 CURVE", "576 -15 LINE", "573 -25 OFFCURVE", "568 -43 OFFCURVE", "561 -70 CURVE SMOOTH", "554 -97 OFFCURVE", "543 -119 OFFCURVE", "528 -139 CURVE SMOOTH", "473 -212 OFFCURVE", "394 -256 OFFCURVE", "290 -270 CURVE SMOOTH", "237 -277 OFFCURVE", "188 -268 OFFCURVE", "146 -243 CURVE SMOOTH", "110 -222 OFFCURVE", "86 -191 OFFCURVE", "72 -150 CURVE SMOOTH", "46 -72 OFFCURVE", "69 16 OFFCURVE", "139 115 CURVE SMOOTH", "146 124 OFFCURVE", "153 126 OFFCURVE", "160 121 CURVE SMOOTH", "167 116 OFFCURVE", "167 108 OFFCURVE", "160 97 CURVE SMOOTH", "105 19 OFFCURVE", "97 -46 OFFCURVE", "134 -99 CURVE SMOOTH", "154 -127 OFFCURVE", "191 -143 OFFCURVE", "246 -150 CURVE SMOOTH", "301 -157 OFFCURVE", "355 -149 OFFCURVE", "411 -128 CURVE SMOOTH", "467 -107 OFFCURVE", "504 -77 OFFCURVE", "525 -37 CURVE", "526 -32 OFFCURVE", "526 -24 OFFCURVE", "524 -14 CURVE", "465 -12 OFFCURVE", "424 -2 OFFCURVE", "402 19 CURVE SMOOTH", "376 43 OFFCURVE", "383 88 OFFCURVE", "422 155 CURVE SMOOTH", "441 188 OFFCURVE", "455 209 OFFCURVE", "467 219 CURVE SMOOTH", "477 228 OFFCURVE", "487 231 OFFCURVE", "495 230 CURVE SMOOTH" ); } ); width = 607; } ); }, { glyphname = aQaf.isol; layers = ( { anchors = ( { name = DotAbove; position = "{474, 537}"; }, { name = HamzaAbove; position = "{469, 537}"; }, { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{420, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "520 393 OFFCURVE", "534 383 OFFCURVE", "550 364 CURVE SMOOTH", "585 322 OFFCURVE", "608 264 OFFCURVE", "620 188 CURVE SMOOTH", "626 150 OFFCURVE", "625 111 OFFCURVE", "618 73 CURVE SMOOTH", "604 5 OFFCURVE", "568 -48 OFFCURVE", "510 -89 CURVE", "442 -136 OFFCURVE", "373 -162 OFFCURVE", "305 -164 CURVE SMOOTH", "182 -168 OFFCURVE", "104 -125 OFFCURVE", "71 -36 CURVE", "63 -12 OFFCURVE", "61 18 OFFCURVE", "67 53 CURVE SMOOTH", "78 125 OFFCURVE", "110 198 OFFCURVE", "160 271 CURVE SMOOTH", "163 275 OFFCURVE", "167 277 OFFCURVE", "171 276 CURVE SMOOTH", "175 275 OFFCURVE", "178 274 OFFCURVE", "180 270 CURVE SMOOTH", "182 266 OFFCURVE", "181 262 OFFCURVE", "178 257 CURVE", "134 193 OFFCURVE", "111 140 OFFCURVE", "110 96 CURVE SMOOTH", "109 52 OFFCURVE", "125 15 OFFCURVE", "158 -16 CURVE SMOOTH", "191 -47 OFFCURVE", "240 -62 OFFCURVE", "306 -59 CURVE SMOOTH", "390 -55 OFFCURVE", "469 -25 OFFCURVE", "543 34 CURVE SMOOTH", "576 60 OFFCURVE", "593 85 OFFCURVE", "595 109 CURVE SMOOTH", "597 133 OFFCURVE", "589 154 OFFCURVE", "570 173 CURVE", "529 130 OFFCURVE", "486 117 OFFCURVE", "443 131 CURVE SMOOTH", "388 149 OFFCURVE", "376 197 OFFCURVE", "405 275 CURVE SMOOTH", "434 353 OFFCURVE", "469 393 OFFCURVE", "508 393 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "499 272 OFFCURVE", "486 280 OFFCURVE", "475 280 CURVE SMOOTH", "464 280 OFFCURVE", "455 273 OFFCURVE", "446 259 CURVE", "455 249 OFFCURVE", "466 244 OFFCURVE", "479 243 CURVE SMOOTH", "492 242 OFFCURVE", "503 247 OFFCURVE", "513 256 CURVE" ); } ); width = 687; }, { anchors = ( { name = DotAbove; position = "{474, 537}"; }, { name = HamzaAbove; position = "{469, 537}"; }, { name = TashkilAbove; position = "{439, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{420, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "499 272 OFFCURVE", "486 280 OFFCURVE", "475 280 CURVE SMOOTH", "464 280 OFFCURVE", "455 273 OFFCURVE", "446 259 CURVE", "455 249 OFFCURVE", "466 244 OFFCURVE", "479 243 CURVE SMOOTH", "492 242 OFFCURVE", "503 247 OFFCURVE", "513 256 CURVE" ); }, { closed = 1; nodes = ( "527 407 OFFCURVE", "545 396 OFFCURVE", "562 374 CURVE SMOOTH", "592 335 OFFCURVE", "612 274 OFFCURVE", "625 190 CURVE SMOOTH", "632 148 OFFCURVE", "630 107 OFFCURVE", "622 70 CURVE SMOOTH", "605 -9 OFFCURVE", "570 -66 OFFCURVE", "518 -102 CURVE SMOOTH", "447 -151 OFFCURVE", "376 -175 OFFCURVE", "305 -178 CURVE SMOOTH", "185 -183 OFFCURVE", "107 -137 OFFCURVE", "72 -41 CURVE SMOOTH", "63 -15 OFFCURVE", "61 17 OFFCURVE", "67 56 CURVE SMOOTH", "76 114 OFFCURVE", "105 183 OFFCURVE", "154 264 CURVE SMOOTH", "162 277 OFFCURVE", "170 281 OFFCURVE", "180 276 CURVE SMOOTH", "190 271 OFFCURVE", "190 262 OFFCURVE", "181 249 CURVE SMOOTH", "139 187 OFFCURVE", "118 135 OFFCURVE", "118 95 CURVE SMOOTH", "118 55 OFFCURVE", "134 22 OFFCURVE", "164 -6 CURVE SMOOTH", "194 -34 OFFCURVE", "245 -47 OFFCURVE", "317 -44 CURVE SMOOTH", "389 -41 OFFCURVE", "461 -11 OFFCURVE", "534 46 CURVE SMOOTH", "570 74 OFFCURVE", "589 97 OFFCURVE", "590 113 CURVE SMOOTH", "591 129 OFFCURVE", "584 142 OFFCURVE", "569 152 CURVE", "524 110 OFFCURVE", "479 98 OFFCURVE", "433 119 CURVE SMOOTH", "379 143 OFFCURVE", "368 198 OFFCURVE", "401 282 CURVE SMOOTH", "434 366 OFFCURVE", "469 408 OFFCURVE", "508 407 CURVE SMOOTH" ); } ); width = 687; } ); }, { glyphname = aRaa.fina.alt2; layers = ( { anchors = ( { name = DotAbove; position = "{355, 416}"; }, { name = DotAlt; position = "{212, -75}"; }, { name = DotBelow; position = "{181, -475}"; }, { name = HamzaAbove; position = "{356, 355}"; }, { name = RingBelow; position = "{180, -263}"; }, { name = Stroke; position = "{361, -102}"; }, { name = TaaAbove; position = "{355, 355}"; }, { name = TashkilAbove; position = "{248, 801}"; }, { name = TashkilBelow; position = "{259, -327}"; }, { name = TwoDotsAbove; position = "{355, 416}"; }, { name = VAbove; position = "{355, 355}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "464 -30 OFFCURVE", "416 -68 OFFCURVE", "378 -114 CURVE SMOOTH", "343 -156 OFFCURVE", "317 -192 OFFCURVE", "298 -222 CURVE", "249 -302 OFFCURVE", "199 -338 OFFCURVE", "149 -329 CURVE SMOOTH", "120 -324 OFFCURVE", "98 -308 OFFCURVE", "81 -282 CURVE SMOOTH", "65 -259 OFFCURVE", "60 -225 OFFCURVE", "64 -180 CURVE SMOOTH", "68 -135 OFFCURVE", "89 -78 OFFCURVE", "126 -8 CURVE SMOOTH", "129 -3 OFFCURVE", "132 -1 OFFCURVE", "136 0 CURVE SMOOTH", "140 1 OFFCURVE", "143 0 OFFCURVE", "144 -3 CURVE SMOOTH", "145 -6 OFFCURVE", "146 -9 OFFCURVE", "145 -12 CURVE SMOOTH", "144 -15 OFFCURVE", "136 -31 OFFCURVE", "121 -62 CURVE SMOOTH", "108 -88 OFFCURVE", "99 -115 OFFCURVE", "95 -142 CURVE SMOOTH", "88 -194 OFFCURVE", "105 -227 OFFCURVE", "148 -241 CURVE SMOOTH", "175 -250 OFFCURVE", "200 -247 OFFCURVE", "221 -232 CURVE SMOOTH", "242 -218 OFFCURVE", "263 -193 OFFCURVE", "283 -158 CURVE SMOOTH", "332 -72 OFFCURVE", "384 -6 OFFCURVE", "441 39 CURVE SMOOTH", "464 58 OFFCURVE", "491 74 OFFCURVE", "522 90 CURVE SMOOTH", "535 97 OFFCURVE", "541 94 OFFCURVE", "541 82 CURVE SMOOTH", "540 56 OFFCURVE", "538 33 OFFCURVE", "534 13 CURVE SMOOTH", "533 8 OFFCURVE", "529 4 OFFCURVE", "522 0 CURVE SMOOTH" ); } ); width = 522; }, { anchors = ( { name = DotAbove; position = "{355, 416}"; }, { name = DotAlt; position = "{212, -75}"; }, { name = DotBelow; position = "{181, -475}"; }, { name = HamzaAbove; position = "{356, 355}"; }, { name = RingBelow; position = "{180, -263}"; }, { name = Stroke; position = "{361, -102}"; }, { name = TaaAbove; position = "{355, 355}"; }, { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{259, -327}"; }, { name = TwoDotsAbove; position = "{355, 416}"; }, { name = VAbove; position = "{355, 355}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "473 -43 OFFCURVE", "427 -79 OFFCURVE", "391 -122 CURVE SMOOTH", "355 -165 OFFCURVE", "329 -200 OFFCURVE", "311 -229 CURVE SMOOTH", "258 -315 OFFCURVE", "203 -353 OFFCURVE", "147 -343 CURVE SMOOTH", "83 -331 OFFCURVE", "55 -276 OFFCURVE", "64 -179 CURVE SMOOTH", "68 -134 OFFCURVE", "88 -80 OFFCURVE", "123 -14 CURVE SMOOTH", "128 -4 OFFCURVE", "133 0 OFFCURVE", "140 -3 CURVE SMOOTH", "147 -6 OFFCURVE", "148 -12 OFFCURVE", "143 -22 CURVE SMOOTH", "119 -68 OFFCURVE", "105 -109 OFFCURVE", "102 -144 CURVE SMOOTH", "98 -188 OFFCURVE", "115 -215 OFFCURVE", "153 -227 CURVE SMOOTH", "176 -234 OFFCURVE", "197 -232 OFFCURVE", "215 -219 CURVE SMOOTH", "233 -206 OFFCURVE", "251 -184 OFFCURVE", "270 -151 CURVE SMOOTH", "320 -63 OFFCURVE", "374 4 OFFCURVE", "432 50 CURVE SMOOTH", "456 69 OFFCURVE", "479 84 OFFCURVE", "498 94 CURVE SMOOTH", "517 104 OFFCURVE", "529 108 OFFCURVE", "534 108 CURVE SMOOTH", "549 108 OFFCURVE", "556 100 OFFCURVE", "556 82 CURVE", "555 55 OFFCURVE", "552 31 OFFCURVE", "548 10 CURVE SMOOTH", "546 1 OFFCURVE", "540 -7 OFFCURVE", "529 -13 CURVE SMOOTH" ); } ); width = 522; } ); }, { glyphname = aRaa.fina; layers = ( { anchors = ( { name = DotAbove; position = "{321, 397}"; }, { name = DotAlt; position = "{216, -82}"; }, { name = DotBelow; position = "{357, -351}"; }, { name = HamzaAbove; position = "{321, 397}"; }, { name = RingBelow; position = "{246, -233}"; }, { name = Stroke; position = "{398, -107}"; }, { name = TaaAbove; position = "{320, 300}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{267, 397}"; }, { name = VAbove; position = "{320, 397}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "407 142 LINE SMOOTH", "412 153 OFFCURVE", "416 155 OFFCURVE", "420 148 CURVE SMOOTH", "431 128 OFFCURVE", "442 113 OFFCURVE", "452 104 CURVE SMOOTH", "462 95 OFFCURVE", "474 90 OFFCURVE", "490 90 CURVE SMOOTH", "506 90 OFFCURVE", "514 75 OFFCURVE", "514 46 CURVE SMOOTH", "514 17 OFFCURVE", "506 1 OFFCURVE", "490 0 CURVE SMOOTH", "479 -1 OFFCURVE", "468 -1 OFFCURVE", "457 0 CURVE SMOOTH", "454 0 OFFCURVE", "453 -2 OFFCURVE", "452 -6 CURVE", "450 -71 OFFCURVE", "427 -131 OFFCURVE", "384 -187 CURVE SMOOTH", "341 -243 OFFCURVE", "300 -274 OFFCURVE", "263 -278 CURVE SMOOTH", "226 -282 OFFCURVE", "194 -281 OFFCURVE", "169 -275 CURVE SMOOTH", "144 -269 OFFCURVE", "111 -257 OFFCURVE", "72 -237 CURVE SMOOTH", "67 -235 OFFCURVE", "64 -233 OFFCURVE", "63 -229 CURVE SMOOTH", "62 -225 OFFCURVE", "62 -222 OFFCURVE", "65 -220 CURVE SMOOTH", "68 -218 OFFCURVE", "71 -218 OFFCURVE", "75 -219 CURVE", "119 -230 OFFCURVE", "156 -232 OFFCURVE", "189 -225 CURVE SMOOTH", "257 -211 OFFCURVE", "319 -171 OFFCURVE", "376 -108 CURVE SMOOTH", "400 -81 OFFCURVE", "415 -54 OFFCURVE", "421 -27 CURVE", "422 -10 OFFCURVE", "408 13 OFFCURVE", "380 41 CURVE SMOOTH", "374 47 OFFCURVE", "373 53 OFFCURVE", "376 62 CURVE SMOOTH" ); } ); width = 489; }, { anchors = ( { name = DotAbove; position = "{321, 397}"; }, { name = DotAlt; position = "{216, -82}"; }, { name = DotBelow; position = "{357, -351}"; }, { name = HamzaAbove; position = "{321, 397}"; }, { name = RingBelow; position = "{246, -233}"; }, { name = Stroke; position = "{398, -107}"; }, { name = TaaAbove; position = "{320, 300}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{267, 397}"; }, { name = VAbove; position = "{320, 397}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "399 155 LINE SMOOTH", "408 177 OFFCURVE", "419 178 OFFCURVE", "430 157 CURVE SMOOTH", "441 136 OFFCURVE", "448 122 OFFCURVE", "452 116 CURVE SMOOTH", "456 110 OFFCURVE", "469 106 OFFCURVE", "490 105 CURVE SMOOTH", "514 104 OFFCURVE", "527 84 OFFCURVE", "528 46 CURVE", "528 6 OFFCURVE", "515 -14 OFFCURVE", "491 -15 CURVE SMOOTH", "481 -15 OFFCURVE", "470 -15 OFFCURVE", "457 -15 CURVE", "452 -90 OFFCURVE", "428 -154 OFFCURVE", "388 -206 CURVE SMOOTH", "348 -258 OFFCURVE", "308 -287 OFFCURVE", "267 -293 CURVE SMOOTH", "226 -299 OFFCURVE", "186 -294 OFFCURVE", "145 -276 CURVE SMOOTH", "104 -258 OFFCURVE", "80 -246 OFFCURVE", "70 -240 CURVE SMOOTH", "60 -234 OFFCURVE", "57 -228 OFFCURVE", "61 -221 CURVE SMOOTH", "64 -214 OFFCURVE", "71 -212 OFFCURVE", "82 -215 CURVE SMOOTH", "121 -225 OFFCURVE", "155 -226 OFFCURVE", "188 -218 CURVE SMOOTH", "244 -204 OFFCURVE", "295 -174 OFFCURVE", "340 -127 CURVE SMOOTH", "385 -80 OFFCURVE", "408 -47 OFFCURVE", "411 -26 CURVE SMOOTH", "412 -18 OFFCURVE", "399 1 OFFCURVE", "370 30 CURVE SMOOTH", "359 41 OFFCURVE", "356 54 OFFCURVE", "362 68 CURVE SMOOTH" ); } ); width = 489; } ); }, { glyphname = aRaa.isol; layers = ( { anchors = ( { name = DotAbove; position = "{160, 531}"; }, { name = DotAlt; position = "{69, -33}"; }, { name = DotBelow; position = "{273, -264}"; }, { name = HamzaAbove; position = "{185, 458}"; }, { name = RingBelow; position = "{95, -173}"; }, { name = Stroke; position = "{317, 31}"; }, { name = TaaAbove; position = "{160, 434}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; }, { name = TwoDotsAbove; position = "{130, 458}"; }, { name = VAbove; position = "{185, 458}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "248 287 OFFCURVE", "254 286 OFFCURVE", "264 276 CURVE SMOOTH", "290 249 OFFCURVE", "309 214 OFFCURVE", "322 169 CURVE SMOOTH", "335 124 OFFCURVE", "340 80 OFFCURVE", "336 35 CURVE", "328 -23 OFFCURVE", "305 -77 OFFCURVE", "266 -127 CURVE SMOOTH", "227 -177 OFFCURVE", "176 -210 OFFCURVE", "114 -226 CURVE SMOOTH", "97 -231 OFFCURVE", "81 -230 OFFCURVE", "66 -225 CURVE SMOOTH", "-12 -199 OFFCURVE", "-60 -179 OFFCURVE", "-79 -167 CURVE SMOOTH", "-82 -165 OFFCURVE", "-83 -164 OFFCURVE", "-83 -161 CURVE SMOOTH", "-83 -158 OFFCURVE", "-82 -156 OFFCURVE", "-80 -154 CURVE SMOOTH", "-78 -152 OFFCURVE", "-74 -152 OFFCURVE", "-71 -153 CURVE SMOOTH", "-25 -167 OFFCURVE", "14 -171 OFFCURVE", "47 -167 CURVE SMOOTH", "80 -163 OFFCURVE", "118 -148 OFFCURVE", "161 -120 CURVE SMOOTH", "225 -79 OFFCURVE", "271 -31 OFFCURVE", "300 24 CURVE SMOOTH", "303 29 OFFCURVE", "303 34 OFFCURVE", "302 40 CURVE SMOOTH", "292 75 OFFCURVE", "266 119 OFFCURVE", "224 171 CURVE SMOOTH", "222 174 OFFCURVE", "221 177 OFFCURVE", "222 179 CURVE SMOOTH", "246 279 LINE SMOOTH" ); } ); width = 399; }, { anchors = ( { name = DotAbove; position = "{160, 531}"; }, { name = DotAlt; position = "{69, -33}"; }, { name = DotBelow; position = "{273, -264}"; }, { name = HamzaAbove; position = "{185, 458}"; }, { name = RingBelow; position = "{95, -173}"; }, { name = Stroke; position = "{317, 31}"; }, { name = TaaAbove; position = "{160, 434}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{248, -327}"; }, { name = TwoDotsAbove; position = "{130, 458}"; }, { name = VAbove; position = "{185, 458}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "242 313 OFFCURVE", "255 309 OFFCURVE", "276 283 CURVE SMOOTH", "297 257 OFFCURVE", "316 220 OFFCURVE", "330 170 CURVE", "361 58 OFFCURVE", "341 -44 OFFCURVE", "270 -136 CURVE SMOOTH", "229 -189 OFFCURVE", "178 -224 OFFCURVE", "118 -240 CURVE SMOOTH", "96 -246 OFFCURVE", "77 -245 OFFCURVE", "62 -238 CURVE SMOOTH", "3 -213 OFFCURVE", "-43 -192 OFFCURVE", "-76 -176 CURVE SMOOTH", "-87 -170 OFFCURVE", "-91 -164 OFFCURVE", "-87 -156 CURVE SMOOTH", "-83 -148 OFFCURVE", "-76 -145 OFFCURVE", "-65 -148 CURVE SMOOTH", "-21 -161 OFFCURVE", "15 -165 OFFCURVE", "43 -158 CURVE SMOOTH", "71 -151 OFFCURVE", "108 -134 OFFCURVE", "153 -107 CURVE SMOOTH", "231 -60 OFFCURVE", "279 -14 OFFCURVE", "296 31 CURVE SMOOTH", "297 33 OFFCURVE", "297 35 OFFCURVE", "297 37 CURVE SMOOTH", "291 68 OFFCURVE", "263 110 OFFCURVE", "212 163 CURVE SMOOTH", "207 168 OFFCURVE", "206 174 OFFCURVE", "208 182 CURVE SMOOTH", "237 295 LINE SMOOTH" ); } ); width = 399; } ); }, { glyphname = aSad.fina; layers = ( { anchors = ( { name = DotAbove; position = "{822, 501}"; }, { name = DotBelow; position = "{830, -146}"; }, { name = HamzaAbove; position = "{822, 501}"; }, { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{768, 501}"; }, { name = TwoDotsBelow; position = "{781, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "923 234 OFFCURVE", "874 218 OFFCURVE", "832 184 CURVE", "768 126 LINE", "814 124 OFFCURVE", "866 130 OFFCURVE", "926 142 CURVE SMOOTH", "986 154 OFFCURVE", "1029 171 OFFCURVE", "1054 194 CURVE", "1032 221 OFFCURVE", "1007 234 OFFCURVE", "979 234 CURVE" ); }, { closed = 1; nodes = ( "753 22 OFFCURVE", "682 27 OFFCURVE", "618 42 CURVE", "603 -72 OFFCURVE", "584 -141 OFFCURVE", "560 -164 CURVE SMOOTH", "489 -232 OFFCURVE", "400 -269 OFFCURVE", "293 -277 CURVE SMOOTH", "215 -283 OFFCURVE", "156 -262 OFFCURVE", "115 -215 CURVE SMOOTH", "74 -168 OFFCURVE", "58 -115 OFFCURVE", "65 -57 CURVE SMOOTH", "74 19 OFFCURVE", "101 82 OFFCURVE", "144 131 CURVE SMOOTH", "149 137 OFFCURVE", "154 140 OFFCURVE", "158 139 CURVE SMOOTH", "162 138 OFFCURVE", "165 136 OFFCURVE", "165 131 CURVE SMOOTH", "165 126 OFFCURVE", "163 122 OFFCURVE", "160 118 CURVE SMOOTH", "85 21 OFFCURVE", "81 -61 OFFCURVE", "149 -128 CURVE SMOOTH", "183 -162 OFFCURVE", "228 -179 OFFCURVE", "283 -179 CURVE SMOOTH", "375 -179 OFFCURVE", "458 -155 OFFCURVE", "530 -108 CURVE SMOOTH", "552 -93 OFFCURVE", "570 -72 OFFCURVE", "582 -45 CURVE SMOOTH", "584 -41 OFFCURVE", "584 -37 OFFCURVE", "583 -31 CURVE SMOOTH", "576 28 OFFCURVE", "559 77 OFFCURVE", "532 116 CURVE SMOOTH", "527 123 OFFCURVE", "525 129 OFFCURVE", "527 134 CURVE SMOOTH", "558 216 LINE", "564 228 OFFCURVE", "570 229 OFFCURVE", "576 219 CURVE SMOOTH", "613 156 LINE", "633 143 OFFCURVE", "670 135 OFFCURVE", "722 130 CURVE", "771 185 OFFCURVE", "826 235 OFFCURVE", "888 282 CURVE SMOOTH", "950 329 OFFCURVE", "998 352 OFFCURVE", "1032 352 CURVE SMOOTH", "1057 352 OFFCURVE", "1080 342 OFFCURVE", "1099 323 CURVE SMOOTH", "1118 304 OFFCURVE", "1133 281 OFFCURVE", "1142 255 CURVE SMOOTH", "1144 249 OFFCURVE", "1144 245 OFFCURVE", "1143 239 CURVE SMOOTH", "1139 208 OFFCURVE", "1119 169 OFFCURVE", "1084 125 CURVE", "1080 121 OFFCURVE", "1077 118 OFFCURVE", "1073 115 CURVE", "1114 100 OFFCURVE", "1150 91 OFFCURVE", "1181 90 CURVE SMOOTH", "1187 90 OFFCURVE", "1191 81 OFFCURVE", "1192 65 CURVE SMOOTH", "1196 22 OFFCURVE", "1192 1 OFFCURVE", "1181 0 CURVE SMOOTH", "1126 -6 OFFCURVE", "1058 13 OFFCURVE", "975 57 CURVE", "933 41 OFFCURVE", "885 31 OFFCURVE", "831 27 CURVE" ); } ); width = 1181; }, { anchors = ( { name = DotAbove; position = "{822, 501}"; }, { name = DotBelow; position = "{830, -146}"; }, { name = HamzaAbove; position = "{822, 501}"; }, { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{768, 501}"; }, { name = TwoDotsBelow; position = "{781, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "913 224 OFFCURVE", "849 196 OFFCURVE", "787 141 CURVE", "823 143 OFFCURVE", "870 148 OFFCURVE", "928 157 CURVE SMOOTH", "986 166 OFFCURVE", "1028 179 OFFCURVE", "1052 196 CURVE", "1032 212 OFFCURVE", "1007 221 OFFCURVE", "979 224 CURVE" ); }, { closed = 1; nodes = ( "823 4 OFFCURVE", "725 4 OFFCURVE", "621 25 CURVE", "606 -81 OFFCURVE", "586 -147 OFFCURVE", "561 -174 CURVE SMOOTH", "486 -253 OFFCURVE", "396 -293 OFFCURVE", "294 -292 CURVE SMOOTH", "209 -292 OFFCURVE", "147 -268 OFFCURVE", "109 -222 CURVE SMOOTH", "71 -176 OFFCURVE", "55 -120 OFFCURVE", "62 -54 CURVE SMOOTH", "69 13 OFFCURVE", "95 75 OFFCURVE", "142 131 CURVE SMOOTH", "150 140 OFFCURVE", "157 143 OFFCURVE", "163 138 CURVE SMOOTH", "169 133 OFFCURVE", "167 123 OFFCURVE", "157 109 CURVE", "106 30 OFFCURVE", "99 -37 OFFCURVE", "135 -91 CURVE SMOOTH", "168 -140 OFFCURVE", "221 -164 OFFCURVE", "295 -164 CURVE SMOOTH", "376 -164 OFFCURVE", "451 -141 OFFCURVE", "521 -96 CURVE SMOOTH", "556 -74 OFFCURVE", "575 -55 OFFCURVE", "578 -40 CURVE", "580 -14 OFFCURVE", "561 36 OFFCURVE", "520 108 CURVE SMOOTH", "513 121 OFFCURVE", "510 132 OFFCURVE", "513 139 CURVE SMOOTH", "552 241 LINE SMOOTH", "559 261 OFFCURVE", "572 256 OFFCURVE", "589 226 CURVE SMOOTH", "624 167 LINE", "640 157 OFFCURVE", "676 150 OFFCURVE", "735 145 CURVE", "769 195 OFFCURVE", "818 245 OFFCURVE", "882 293 CURVE SMOOTH", "946 341 OFFCURVE", "994 366 OFFCURVE", "1028 366 CURVE SMOOTH", "1062 366 OFFCURVE", "1088 358 OFFCURVE", "1104 339 CURVE SMOOTH", "1120 320 OFFCURVE", "1134 295 OFFCURVE", "1145 263 CURVE SMOOTH", "1156 231 OFFCURVE", "1138 186 OFFCURVE", "1092 125 CURVE", "1116 116 OFFCURVE", "1147 109 OFFCURVE", "1182 105 CURVE SMOOTH", "1197 104 OFFCURVE", "1205 88 OFFCURVE", "1208 59 CURVE SMOOTH", "1211 29 OFFCURVE", "1209 9 OFFCURVE", "1202 -2 CURVE SMOOTH", "1197 -9 OFFCURVE", "1191 -14 OFFCURVE", "1183 -15 CURVE SMOOTH", "1128 -22 OFFCURVE", "1058 -2 OFFCURVE", "971 43 CURVE", "953 36 OFFCURVE", "934 30 OFFCURVE", "913 25 CURVE SMOOTH" ); } ); width = 1181; } ); }, { glyphname = aSad.init; layers = ( { anchors = ( { name = DotAbove; position = "{310, 437}"; }, { name = DotBelow; position = "{391, -195}"; }, { name = HamzaAbove; position = "{310, 437}"; }, { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{255, 437}"; }, { name = TwoDotsBelow; position = "{342, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "542 285 OFFCURVE", "567 274 OFFCURVE", "597 252 CURVE SMOOTH", "627 230 OFFCURVE", "639 208 OFFCURVE", "635 186 CURVE SMOOTH", "631 164 OFFCURVE", "620 137 OFFCURVE", "603 106 CURVE SMOOTH", "586 75 OFFCURVE", "573 56 OFFCURVE", "566 51 CURVE SMOOTH", "505 6 OFFCURVE", "425 -16 OFFCURVE", "326 -16 CURVE", "287 -16 OFFCURVE", "249 -10 OFFCURVE", "215 -1 CURVE", "210 -8 OFFCURVE", "201 -35 OFFCURVE", "188 -83 CURVE", "186 -93 OFFCURVE", "179 -96 OFFCURVE", "168 -92 CURVE SMOOTH", "157 -88 OFFCURVE", "153 -81 OFFCURVE", "154 -70 CURVE SMOOTH", "158 -46 OFFCURVE", "166 -18 OFFCURVE", "179 13 CURVE", "144 28 OFFCURVE", "117 47 OFFCURVE", "97 71 CURVE SMOOTH", "90 80 OFFCURVE", "84 84 OFFCURVE", "80 84 CURVE SMOOTH", "76 84 OFFCURVE", "72 79 OFFCURVE", "68 70 CURVE SMOOTH", "49 23 OFFCURVE", "26 0 OFFCURVE", "0 0 CURVE SMOOTH", "-4 0 OFFCURVE", "-7 4 OFFCURVE", "-11 11 CURVE SMOOTH", "-21 35 OFFCURVE", "-25 54 OFFCURVE", "-20 67 CURVE SMOOTH", "-15 80 OFFCURVE", "-8 88 OFFCURVE", "0 90 CURVE SMOOTH", "35 98 OFFCURVE", "64 124 OFFCURVE", "87 167 CURVE SMOOTH", "92 176 OFFCURVE", "99 180 OFFCURVE", "108 180 CURVE SMOOTH", "117 180 OFFCURVE", "126 175 OFFCURVE", "132 165 CURVE SMOOTH", "153 132 OFFCURVE", "188 108 OFFCURVE", "238 93 CURVE", "267 125 OFFCURVE", "295 153 OFFCURVE", "322 177 CURVE SMOOTH", "404 248 OFFCURVE", "471 284 OFFCURVE", "523 285 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "529 168 OFFCURVE", "486 183 OFFCURVE", "439 179 CURVE SMOOTH", "420 177 OFFCURVE", "392 164 OFFCURVE", "355 140 CURVE SMOOTH", "318 116 OFFCURVE", "292 97 OFFCURVE", "279 83 CURVE", "317 77 OFFCURVE", "372 78 OFFCURVE", "441 86 CURVE SMOOTH", "510 94 OFFCURVE", "552 106 OFFCURVE", "566 123 CURVE", "570 126 OFFCURVE", "571 129 OFFCURVE", "567 133 CURVE SMOOTH" ); } ); width = 698; }, { anchors = ( { name = DotAbove; position = "{310, 437}"; }, { name = DotBelow; position = "{391, -195}"; }, { name = HamzaAbove; position = "{310, 437}"; }, { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{255, 437}"; }, { name = TwoDotsBelow; position = "{342, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "55 14 OFFCURVE", "30 -16 OFFCURVE", "0 -15 CURVE SMOOTH", "-10 -15 OFFCURVE", "-18 -8 OFFCURVE", "-24 5 CURVE", "-36 33 OFFCURVE", "-39 56 OFFCURVE", "-32 74 CURVE SMOOTH", "-25 92 OFFCURVE", "-16 101 OFFCURVE", "-3 104 CURVE SMOOTH", "33 111 OFFCURVE", "62 135 OFFCURVE", "84 174 CURVE SMOOTH", "92 188 OFFCURVE", "101 195 OFFCURVE", "113 195 CURVE SMOOTH", "125 195 OFFCURVE", "136 187 OFFCURVE", "145 172 CURVE SMOOTH", "162 144 OFFCURVE", "196 123 OFFCURVE", "247 106 CURVE", "280 143 OFFCURVE", "307 170 OFFCURVE", "327 188 CURVE", "413 262 OFFCURVE", "478 300 OFFCURVE", "523 300 CURVE SMOOTH", "548 300 OFFCURVE", "576 288 OFFCURVE", "607 263 CURVE SMOOTH", "631 243 OFFCURVE", "641 219 OFFCURVE", "636 190 CURVE SMOOTH", "631 161 OFFCURVE", "619 130 OFFCURVE", "601 98 CURVE SMOOTH", "583 66 OFFCURVE", "570 47 OFFCURVE", "561 40 CURVE SMOOTH", "497 -6 OFFCURVE", "418 -30 OFFCURVE", "326 -30 CURVE", "290 -30 OFFCURVE", "251 -25 OFFCURVE", "212 -16 CURVE", "204 -33 OFFCURVE", "197 -54 OFFCURVE", "192 -78 CURVE SMOOTH", "188 -94 OFFCURVE", "180 -99 OFFCURVE", "167 -95 CURVE SMOOTH", "154 -91 OFFCURVE", "149 -80 OFFCURVE", "152 -64 CURVE SMOOTH", "155 -48 OFFCURVE", "162 -27 OFFCURVE", "172 0 CURVE", "138 11 OFFCURVE", "107 36 OFFCURVE", "76 75 CURVE" ); }, { closed = 1; nodes = ( "531 157 OFFCURVE", "488 170 OFFCURVE", "440 167 CURVE SMOOTH", "404 165 OFFCURVE", "355 140 OFFCURVE", "295 94 CURVE", "329 93 OFFCURVE", "379 95 OFFCURVE", "445 101 CURVE SMOOTH", "511 107 OFFCURVE", "553 116 OFFCURVE", "570 128 CURVE" ); } ); width = 698; } ); }, { glyphname = aSad.isol; layers = ( { anchors = ( { name = DotAbove; position = "{821, 542}"; }, { name = DotBelow; position = "{879, -98}"; }, { name = HamzaAbove; position = "{821, 542}"; }, { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{767, 542}"; }, { name = TwoDotsBelow; position = "{830, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1089 394 OFFCURVE", "1125 364 OFFCURVE", "1147 305 CURVE", "1152 287 OFFCURVE", "1148 264 OFFCURVE", "1133 235 CURVE SMOOTH", "1118 206 OFFCURVE", "1106 187 OFFCURVE", "1097 177 CURVE SMOOTH", "1049 124 OFFCURVE", "961 92 OFFCURVE", "829 81 CURVE SMOOTH", "755 75 OFFCURVE", "687 79 OFFCURVE", "626 93 CURVE", "613 -15 OFFCURVE", "591 -84 OFFCURVE", "562 -114 CURVE SMOOTH", "495 -183 OFFCURVE", "407 -222 OFFCURVE", "298 -229 CURVE SMOOTH", "178 -237 OFFCURVE", "103 -192 OFFCURVE", "71 -96 CURVE SMOOTH", "63 -71 OFFCURVE", "60 -41 OFFCURVE", "65 -7 CURVE SMOOTH", "73 52 OFFCURVE", "92 107 OFFCURVE", "120 158 CURVE SMOOTH", "132 179 OFFCURVE", "143 197 OFFCURVE", "153 210 CURVE SMOOTH", "156 214 OFFCURVE", "160 216 OFFCURVE", "164 215 CURVE SMOOTH", "168 214 OFFCURVE", "171 212 OFFCURVE", "172 208 CURVE SMOOTH", "173 204 OFFCURVE", "172 200 OFFCURVE", "170 196 CURVE", "160 182 OFFCURVE", "151 165 OFFCURVE", "143 145 CURVE SMOOTH", "122 94 OFFCURVE", "115 49 OFFCURVE", "121 10 CURVE", "136 -79 OFFCURVE", "192 -124 OFFCURVE", "288 -127 CURVE", "374 -129 OFFCURVE", "453 -107 OFFCURVE", "528 -62 CURVE", "553 -47 OFFCURVE", "571 -26 OFFCURVE", "583 3 CURVE SMOOTH", "585 7 OFFCURVE", "585 12 OFFCURVE", "584 18 CURVE SMOOTH", "574 81 OFFCURVE", "557 130 OFFCURVE", "533 164 CURVE SMOOTH", "528 171 OFFCURVE", "526 177 OFFCURVE", "528 181 CURVE SMOOTH", "559 263 LINE", "565 274 OFFCURVE", "570 276 OFFCURVE", "576 266 CURVE SMOOTH", "613 203 LINE", "636 189 OFFCURVE", "675 181 OFFCURVE", "726 179 CURVE", "784 238 OFFCURVE", "842 288 OFFCURVE", "901 330 CURVE SMOOTH", "960 372 OFFCURVE", "1006 393 OFFCURVE", "1039 393 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1047 283 OFFCURVE", "1004 295 OFFCURVE", "957 283 CURVE SMOOTH", "910 271 OFFCURVE", "849 236 OFFCURVE", "773 178 CURVE", "913 170 OFFCURVE", "1018 192 OFFCURVE", "1088 245 CURVE" ); } ); width = 1212; }, { anchors = ( { name = DotAbove; position = "{821, 542}"; }, { name = DotBelow; position = "{879, -98}"; }, { name = HamzaAbove; position = "{821, 542}"; }, { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{767, 542}"; }, { name = TwoDotsBelow; position = "{830, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1091 409 OFFCURVE", "1129 376 OFFCURVE", "1152 310 CURVE SMOOTH", "1159 290 OFFCURVE", "1153 263 OFFCURVE", "1137 231 CURVE SMOOTH", "1121 199 OFFCURVE", "1108 178 OFFCURVE", "1098 167 CURVE SMOOTH", "1046 110 OFFCURVE", "956 76 OFFCURVE", "830 66 CURVE SMOOTH", "756 60 OFFCURVE", "689 63 OFFCURVE", "629 75 CURVE", "615 -28 OFFCURVE", "593 -94 OFFCURVE", "563 -125 CURVE SMOOTH", "493 -197 OFFCURVE", "405 -236 OFFCURVE", "299 -243 CURVE SMOOTH", "225 -248 OFFCURVE", "169 -234 OFFCURVE", "129 -199 CURVE SMOOTH", "75 -152 OFFCURVE", "53 -87 OFFCURVE", "63 -5 CURVE SMOOTH", "71 58 OFFCURVE", "90 115 OFFCURVE", "120 165 CURVE SMOOTH", "134 189 OFFCURVE", "145 205 OFFCURVE", "151 212 CURVE SMOOTH", "157 219 OFFCURVE", "163 221 OFFCURVE", "170 217 CURVE SMOOTH", "177 213 OFFCURVE", "177 204 OFFCURVE", "170 192 CURVE SMOOTH", "136 126 OFFCURVE", "123 66 OFFCURVE", "130 12 CURVE SMOOTH", "141 -70 OFFCURVE", "200 -110 OFFCURVE", "308 -110 CURVE SMOOTH", "389 -110 OFFCURVE", "460 -89 OFFCURVE", "521 -48 CURVE SMOOTH", "554 -26 OFFCURVE", "574 -7 OFFCURVE", "580 9 CURVE", "574 65 OFFCURVE", "555 113 OFFCURVE", "525 152 CURVE SMOOTH", "516 163 OFFCURVE", "514 175 OFFCURVE", "518 184 CURVE SMOOTH", "556 278 LINE SMOOTH", "564 298 OFFCURVE", "575 296 OFFCURVE", "589 273 CURVE", "624 214 LINE", "644 203 OFFCURVE", "682 196 OFFCURVE", "737 194 CURVE", "781 245 OFFCURVE", "834 294 OFFCURVE", "894 339 CURVE SMOOTH", "954 384 OFFCURVE", "1003 407 OFFCURVE", "1039 408 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1052 271 OFFCURVE", "1009 279 OFFCURVE", "958 269 CURVE SMOOTH", "907 259 OFFCURVE", "852 233 OFFCURVE", "793 191 CURVE", "927 190 OFFCURVE", "1025 208 OFFCURVE", "1085 246 CURVE" ); } ); width = 1212; } ); }, { glyphname = aSad.medi; layers = ( { anchors = ( { name = DotAbove; position = "{348, 482}"; }, { name = DotBelow; position = "{391, -195}"; }, { name = HamzaAbove; position = "{348, 482}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{293, 482}"; }, { name = TwoDotsBelow; position = "{342, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "549 242 OFFCURVE", "480 239 OFFCURVE", "392 181 CURVE SMOOTH", "348 152 OFFCURVE", "315 121 OFFCURVE", "293 88 CURVE", "343 86 OFFCURVE", "405 96 OFFCURVE", "475 117 CURVE SMOOTH", "520 131 OFFCURVE", "561 152 OFFCURVE", "599 181 CURVE SMOOTH", "603 184 OFFCURVE", "604 188 OFFCURVE", "599 192 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "224 -19 OFFCURVE", "218 -40 OFFCURVE", "216 -54 CURVE SMOOTH", "214 -68 OFFCURVE", "209 -76 OFFCURVE", "202 -79 CURVE SMOOTH", "195 -82 OFFCURVE", "190 -82 OFFCURVE", "184 -78 CURVE SMOOTH", "174 -70 OFFCURVE", "178 -37 OFFCURVE", "199 22 CURVE", "178 28 OFFCURVE", "161 36 OFFCURVE", "147 46 CURVE SMOOTH", "133 56 OFFCURVE", "120 69 OFFCURVE", "107 86 CURVE", "72 32 OFFCURVE", "36 3 OFFCURVE", "0 0 CURVE SMOOTH", "-8 -1 OFFCURVE", "-13 5 OFFCURVE", "-17 17 CURVE SMOOTH", "-25 41 OFFCURVE", "-25 62 OFFCURVE", "-16 79 CURVE SMOOTH", "-11 88 OFFCURVE", "-6 91 OFFCURVE", "0 90 CURVE SMOOTH", "31 85 OFFCURVE", "66 108 OFFCURVE", "107 157 CURVE SMOOTH", "112 163 OFFCURVE", "116 165 OFFCURVE", "121 163 CURVE SMOOTH", "126 161 OFFCURVE", "131 156 OFFCURVE", "138 149 CURVE SMOOTH", "168 115 OFFCURVE", "205 97 OFFCURVE", "248 94 CURVE", "286 152 OFFCURVE", "334 204 OFFCURVE", "392 250 CURVE SMOOTH", "450 296 OFFCURVE", "498 323 OFFCURVE", "536 332 CURVE", "562 338 OFFCURVE", "591 331 OFFCURVE", "621 313 CURVE SMOOTH", "651 295 OFFCURVE", "669 273 OFFCURVE", "675 249 CURVE", "663 194 OFFCURVE", "644 149 OFFCURVE", "618 114 CURVE", "658 100 OFFCURVE", "692 91 OFFCURVE", "722 90 CURVE SMOOTH", "728 90 OFFCURVE", "732 81 OFFCURVE", "733 65 CURVE SMOOTH", "737 22 OFFCURVE", "733 1 OFFCURVE", "722 0 CURVE SMOOTH", "670 -5 OFFCURVE", "606 12 OFFCURVE", "529 51 CURVE", "432 2 OFFCURVE", "333 -11 OFFCURVE", "234 11 CURVE" ); } ); width = 722; }, { anchors = ( { name = DotAbove; position = "{348, 482}"; }, { name = DotBelow; position = "{391, -195}"; }, { name = HamzaAbove; position = "{348, 482}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{293, 482}"; }, { name = TwoDotsBelow; position = "{342, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "545 227 OFFCURVE", "488 227 OFFCURVE", "427 191 CURVE SMOOTH", "366 155 OFFCURVE", "326 126 OFFCURVE", "306 103 CURVE", "349 105 OFFCURVE", "400 114 OFFCURVE", "458 130 CURVE SMOOTH", "516 146 OFFCURVE", "562 167 OFFCURVE", "596 192 CURVE" ); }, { closed = 1; nodes = ( "225 -24 OFFCURVE", "220 -41 OFFCURVE", "217 -57 CURVE SMOOTH", "213 -76 OFFCURVE", "204 -84 OFFCURVE", "191 -82 CURVE SMOOTH", "175 -79 OFFCURVE", "172 -61 OFFCURVE", "181 -29 CURVE SMOOTH", "188 -4 OFFCURVE", "192 8 OFFCURVE", "192 9 CURVE", "157 19 OFFCURVE", "127 41 OFFCURVE", "102 72 CURVE", "66 15 OFFCURVE", "32 -15 OFFCURVE", "1 -15 CURVE SMOOTH", "-15 -15 OFFCURVE", "-25 -6 OFFCURVE", "-31 12 CURVE SMOOTH", "-43 51 OFFCURVE", "-38 80 OFFCURVE", "-17 100 CURVE SMOOTH", "-13 104 OFFCURVE", "-7 105 OFFCURVE", "0 105 CURVE", "38 105 OFFCURVE", "75 125 OFFCURVE", "110 166 CURVE SMOOTH", "115 172 OFFCURVE", "121 175 OFFCURVE", "127 174 CURVE SMOOTH", "133 173 OFFCURVE", "140 169 OFFCURVE", "149 159 CURVE", "173 131 OFFCURVE", "208 114 OFFCURVE", "255 109 CURVE", "294 165 OFFCURVE", "340 217 OFFCURVE", "393 263 CURVE SMOOTH", "446 309 OFFCURVE", "493 337 OFFCURVE", "533 346 CURVE", "564 352 OFFCURVE", "593 345 OFFCURVE", "622 325 CURVE SMOOTH", "651 305 OFFCURVE", "669 279 OFFCURVE", "676 249 CURVE", "666 200 OFFCURVE", "650 159 OFFCURVE", "629 125 CURVE", "657 115 OFFCURVE", "689 109 OFFCURVE", "723 105 CURVE SMOOTH", "738 104 OFFCURVE", "746 88 OFFCURVE", "749 59 CURVE SMOOTH", "752 28 OFFCURVE", "750 8 OFFCURVE", "743 -2 CURVE SMOOTH", "738 -9 OFFCURVE", "732 -14 OFFCURVE", "724 -15 CURVE SMOOTH", "672 -21 OFFCURVE", "605 -4 OFFCURVE", "525 36 CURVE", "443 -13 OFFCURVE", "346 -27 OFFCURVE", "232 -6 CURVE" ); } ); width = 722; } ); }, { glyphname = aSen.fina; layers = ( { anchors = ( { name = DigitAbove; position = "{779, 366}"; }, { name = DotAbove; position = "{779, 366}"; }, { name = DotBelow; position = "{781, -195}"; }, { name = HamzaAbove; position = "{779, 366}"; }, { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; }, { name = TwoDotsAbove; position = "{725, 366}"; }, { name = TwoDotsBelow; position = "{732, -195}"; }, { name = VAbove; position = "{779, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "943 191 OFFCURVE", "947 195 OFFCURVE", "954 198 CURVE SMOOTH", "962 201 OFFCURVE", "970 196 OFFCURVE", "977 183 CURVE SMOOTH", "1009 121 OFFCURVE", "1043 89 OFFCURVE", "1079 90 CURVE SMOOTH", "1099 91 OFFCURVE", "1106 72 OFFCURVE", "1101 34 CURVE SMOOTH", "1098 12 OFFCURVE", "1090 0 OFFCURVE", "1079 0 CURVE SMOOTH", "1030 0 OFFCURVE", "989 38 OFFCURVE", "958 113 CURVE SMOOTH", "955 121 OFFCURVE", "952 120 OFFCURVE", "949 112 CURVE SMOOTH", "932 58 OFFCURVE", "920 24 OFFCURVE", "912 8 CURVE SMOOTH", "904 -8 OFFCURVE", "891 -17 OFFCURVE", "875 -17 CURVE SMOOTH", "836 -18 OFFCURVE", "800 -3 OFFCURVE", "767 28 CURVE", "732 -11 OFFCURVE", "684 -27 OFFCURVE", "625 -20 CURVE", "622 -92 OFFCURVE", "612 -148 OFFCURVE", "593 -189 CURVE SMOOTH", "580 -220 OFFCURVE", "561 -244 OFFCURVE", "535 -264 CURVE SMOOTH", "457 -323 OFFCURVE", "372 -352 OFFCURVE", "281 -350 CURVE SMOOTH", "169 -347 OFFCURVE", "98 -300 OFFCURVE", "69 -209 CURVE SMOOTH", "61 -183 OFFCURVE", "62 -147 OFFCURVE", "71 -100 CURVE SMOOTH", "80 -53 OFFCURVE", "101 1 OFFCURVE", "135 63 CURVE SMOOTH", "137 67 OFFCURVE", "140 70 OFFCURVE", "144 70 CURVE SMOOTH", "148 70 OFFCURVE", "152 68 OFFCURVE", "154 65 CURVE SMOOTH", "156 62 OFFCURVE", "156 58 OFFCURVE", "154 54 CURVE SMOOTH", "113 -23 OFFCURVE", "96 -78 OFFCURVE", "103 -109 CURVE SMOOTH", "121 -186 OFFCURVE", "184 -231 OFFCURVE", "291 -243 CURVE SMOOTH", "336 -248 OFFCURVE", "388 -240 OFFCURVE", "448 -217 CURVE SMOOTH", "508 -194 OFFCURVE", "553 -162 OFFCURVE", "582 -119 CURVE", "597 -66 OFFCURVE", "584 -11 OFFCURVE", "545 47 CURVE SMOOTH", "541 54 OFFCURVE", "540 60 OFFCURVE", "542 66 CURVE SMOOTH", "565 149 LINE SMOOTH", "569 162 OFFCURVE", "574 164 OFFCURVE", "581 155 CURVE SMOOTH", "590 139 OFFCURVE", "598 120 OFFCURVE", "605 99 CURVE SMOOTH", "612 77 OFFCURVE", "648 71 OFFCURVE", "711 80 CURVE SMOOTH", "743 85 OFFCURVE", "768 103 OFFCURVE", "786 137 CURVE SMOOTH", "791 145 OFFCURVE", "795 155 OFFCURVE", "799 166 CURVE SMOOTH", "803 177 OFFCURVE", "807 183 OFFCURVE", "812 184 CURVE SMOOTH", "817 185 OFFCURVE", "820 183 OFFCURVE", "824 179 CURVE SMOOTH", "828 175 OFFCURVE", "829 171 OFFCURVE", "828 166 CURVE SMOOTH", "818 137 LINE SMOOTH", "815 125 OFFCURVE", "819 115 OFFCURVE", "828 110 CURVE SMOOTH", "855 95 OFFCURVE", "882 92 OFFCURVE", "909 99 CURVE SMOOTH", "917 101 OFFCURVE", "928 129 OFFCURVE", "941 183 CURVE SMOOTH" ); } ); width = 1079; }, { anchors = ( { name = DigitAbove; position = "{779, 366}"; }, { name = DotAbove; position = "{779, 366}"; }, { name = DotBelow; position = "{781, -195}"; }, { name = HamzaAbove; position = "{779, 366}"; }, { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; }, { name = TwoDotsAbove; position = "{725, 366}"; }, { name = TwoDotsBelow; position = "{732, -195}"; }, { name = VAbove; position = "{779, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "625 -107 OFFCURVE", "611 -163 OFFCURVE", "588 -204 CURVE SMOOTH", "527 -311 OFFCURVE", "425 -364 OFFCURVE", "281 -364 CURVE SMOOTH", "169 -364 OFFCURVE", "99 -314 OFFCURVE", "70 -213 CURVE SMOOTH", "62 -186 OFFCURVE", "63 -147 OFFCURVE", "72 -97 CURVE SMOOTH", "81 -47 OFFCURVE", "102 7 OFFCURVE", "135 63 CURVE SMOOTH", "139 70 OFFCURVE", "143 71 OFFCURVE", "149 68 CURVE", "159 65 OFFCURVE", "162 59 OFFCURVE", "157 51 CURVE SMOOTH", "118 -16 OFFCURVE", "104 -73 OFFCURVE", "114 -118 CURVE", "131 -190 OFFCURVE", "190 -227 OFFCURVE", "292 -229 CURVE SMOOTH", "345 -230 OFFCURVE", "399 -221 OFFCURVE", "454 -201 CURVE SMOOTH", "509 -181 OFFCURVE", "551 -152 OFFCURVE", "578 -113 CURVE", "588 -65 OFFCURVE", "573 -14 OFFCURVE", "533 39 CURVE", "526 50 OFFCURVE", "524 60 OFFCURVE", "527 70 CURVE SMOOTH", "555 166 LINE SMOOTH", "563 194 OFFCURVE", "575 192 OFFCURVE", "594 161 CURVE SMOOTH", "603 145 OFFCURVE", "613 125 OFFCURVE", "620 103 CURVE SMOOTH", "624 90 OFFCURVE", "653 87 OFFCURVE", "709 94 CURVE SMOOTH", "747 99 OFFCURVE", "776 125 OFFCURVE", "795 171 CURVE SMOOTH", "802 190 OFFCURVE", "811 197 OFFCURVE", "822 193 CURVE SMOOTH", "833 189 OFFCURVE", "837 180 OFFCURVE", "834 166 CURVE", "825 136 LINE", "825 131 OFFCURVE", "825 127 OFFCURVE", "827 126 CURVE SMOOTH", "854 112 OFFCURVE", "883 107 OFFCURVE", "912 112 CURVE", "924 139 OFFCURVE", "932 164 OFFCURVE", "936 186 CURVE SMOOTH", "938 196 OFFCURVE", "944 203 OFFCURVE", "954 207 CURVE SMOOTH", "964 211 OFFCURVE", "974 204 OFFCURVE", "982 189 CURVE SMOOTH", "1013 133 OFFCURVE", "1046 105 OFFCURVE", "1079 105 CURVE SMOOTH", "1112 105 OFFCURVE", "1124 81 OFFCURVE", "1115 32 CURVE", "1110 1 OFFCURVE", "1099 -15 OFFCURVE", "1079 -15 CURVE SMOOTH", "1028 -15 OFFCURVE", "986 23 OFFCURVE", "954 99 CURVE", "942 55 OFFCURVE", "930 22 OFFCURVE", "919 1 CURVE SMOOTH", "908 -20 OFFCURVE", "892 -31 OFFCURVE", "871 -31 CURVE SMOOTH", "835 -31 OFFCURVE", "801 -19 OFFCURVE", "768 8 CURVE", "733 -24 OFFCURVE", "687 -39 OFFCURVE", "630 -36 CURVE" ); } ); width = 1079; } ); }, { glyphname = aSen.init; layers = ( { anchors = ( { name = DigitAbove; position = "{317, 439}"; }, { name = DotAbove; position = "{317, 439}"; }, { name = DotBelow; position = "{317, -98}"; }, { name = HamzaAbove; position = "{317, 439}"; }, { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{263, 439}"; }, { name = TwoDotsBelow; position = "{269, -98}"; }, { name = VAbove; position = "{317, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "488 289 OFFCURVE", "491 287 OFFCURVE", "496 279 CURVE SMOOTH", "501 271 OFFCURVE", "504 255 OFFCURVE", "505 229 CURVE SMOOTH", "506 203 OFFCURVE", "504 178 OFFCURVE", "498 153 CURVE", "484 99 OFFCURVE", "467 72 OFFCURVE", "446 71 CURVE SMOOTH", "397 69 OFFCURVE", "355 87 OFFCURVE", "321 122 CURVE", "298 67 OFFCURVE", "266 34 OFFCURVE", "225 23 CURVE SMOOTH", "184 12 OFFCURVE", "142 30 OFFCURVE", "100 75 CURVE", "65 25 OFFCURVE", "31 0 OFFCURVE", "0 0 CURVE", "-7 0 OFFCURVE", "-13 15 OFFCURVE", "-18 44 CURVE SMOOTH", "-23 73 OFFCURVE", "-17 88 OFFCURVE", "0 90 CURVE SMOOTH", "64 97 OFFCURVE", "115 130 OFFCURVE", "150 191 CURVE SMOOTH", "152 195 OFFCURVE", "154 196 OFFCURVE", "157 196 CURVE SMOOTH", "160 196 OFFCURVE", "163 195 OFFCURVE", "165 192 CURVE SMOOTH", "169 187 OFFCURVE", "163 172 OFFCURVE", "150 148 CURVE", "161 128 OFFCURVE", "188 118 OFFCURVE", "231 117 CURVE SMOOTH", "282 116 OFFCURVE", "323 161 OFFCURVE", "350 252 CURVE SMOOTH", "351 256 OFFCURVE", "353 259 OFFCURVE", "356 259 CURVE SMOOTH", "359 259 OFFCURVE", "363 258 OFFCURVE", "365 255 CURVE SMOOTH", "367 252 OFFCURVE", "368 249 OFFCURVE", "367 245 CURVE SMOOTH", "357 203 LINE", "371 188 OFFCURVE", "391 177 OFFCURVE", "418 169 CURVE SMOOTH", "445 161 OFFCURVE", "461 162 OFFCURVE", "465 172 CURVE SMOOTH", "469 182 OFFCURVE", "466 200 OFFCURVE", "456 230 CURVE SMOOTH", "455 233 OFFCURVE", "464 252 OFFCURVE", "485 285 CURVE SMOOTH" ); } ); width = 568; }, { anchors = ( { name = DigitAbove; position = "{317, 439}"; }, { name = DotAbove; position = "{317, 439}"; }, { name = DotBelow; position = "{317, -98}"; }, { name = HamzaAbove; position = "{317, 439}"; }, { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{263, 439}"; }, { name = TwoDotsBelow; position = "{269, -98}"; }, { name = VAbove; position = "{317, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "178 207 OFFCURVE", "180 189 OFFCURVE", "162 154 CURVE", "181 139 OFFCURVE", "203 132 OFFCURVE", "231 132 CURVE SMOOTH", "276 131 OFFCURVE", "313 172 OFFCURVE", "343 255 CURVE SMOOTH", "348 268 OFFCURVE", "354 272 OFFCURVE", "364 269 CURVE SMOOTH", "374 266 OFFCURVE", "378 258 OFFCURVE", "376 246 CURVE", "367 211 LINE", "379 201 OFFCURVE", "396 193 OFFCURVE", "416 186 CURVE SMOOTH", "436 179 OFFCURVE", "453 177 OFFCURVE", "465 177 CURVE", "460 197 OFFCURVE", "455 212 OFFCURVE", "449 222 CURVE SMOOTH", "443 232 OFFCURVE", "445 242 OFFCURVE", "452 254 CURVE SMOOTH", "482 305 LINE", "493 316 OFFCURVE", "501 308 OFFCURVE", "507 280 CURVE SMOOTH", "516 234 OFFCURVE", "516 189 OFFCURVE", "506 146 CURVE SMOOTH", "496 103 OFFCURVE", "480 75 OFFCURVE", "456 60 CURVE SMOOTH", "453 58 OFFCURVE", "448 57 OFFCURVE", "441 57 CURVE SMOOTH", "395 55 OFFCURVE", "355 68 OFFCURVE", "321 97 CURVE", "296 49 OFFCURVE", "264 19 OFFCURVE", "222 8 CURVE SMOOTH", "180 -3 OFFCURVE", "138 13 OFFCURVE", "96 57 CURVE", "56 9 OFFCURVE", "24 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-14 -15 OFFCURVE", "-23 -4 OFFCURVE", "-28 18 CURVE SMOOTH", "-31 30 OFFCURVE", "-33 41 OFFCURVE", "-34 51 CURVE SMOOTH", "-37 84 OFFCURVE", "-26 102 OFFCURVE", "-1 105 CURVE SMOOTH", "65 112 OFFCURVE", "112 141 OFFCURVE", "141 193 CURVE SMOOTH", "146 202 OFFCURVE", "151 207 OFFCURVE", "157 207 CURVE SMOOTH" ); } ); width = 568; } ); }, { glyphname = aSen.isol; layers = ( { anchors = ( { name = DigitAbove; position = "{748, 522}"; }, { name = DotAbove; position = "{748, 522}"; }, { name = DotBelow; position = "{781, -98}"; }, { name = HamzaAbove; position = "{748, 522}"; }, { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{694, 522}"; }, { name = TwoDotsBelow; position = "{732, -98}"; }, { name = VAbove; position = "{748, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "895 370 OFFCURVE", "898 373 OFFCURVE", "903 373 CURVE SMOOTH", "908 373 OFFCURVE", "913 371 OFFCURVE", "916 365 CURVE SMOOTH", "925 350 OFFCURVE", "929 328 OFFCURVE", "929 297 CURVE SMOOTH", "929 248 OFFCURVE", "917 205 OFFCURVE", "894 167 CURVE SMOOTH", "888 157 OFFCURVE", "880 150 OFFCURVE", "870 148 CURVE SMOOTH", "839 142 OFFCURVE", "802 152 OFFCURVE", "761 177 CURVE", "731 124 OFFCURVE", "688 100 OFFCURVE", "632 108 CURVE", "629 51 OFFCURVE", "620 2 OFFCURVE", "606 -40 CURVE SMOOTH", "592 -82 OFFCURVE", "567 -116 OFFCURVE", "532 -144 CURVE SMOOTH", "456 -204 OFFCURVE", "371 -232 OFFCURVE", "279 -230 CURVE SMOOTH", "165 -227 OFFCURVE", "95 -179 OFFCURVE", "68 -87 CURVE SMOOTH", "61 -61 OFFCURVE", "62 -24 OFFCURVE", "72 25 CURVE SMOOTH", "82 74 OFFCURVE", "102 126 OFFCURVE", "133 183 CURVE SMOOTH", "135 187 OFFCURVE", "138 189 OFFCURVE", "142 189 CURVE SMOOTH", "146 189 OFFCURVE", "149 188 OFFCURVE", "151 185 CURVE SMOOTH", "153 182 OFFCURVE", "153 178 OFFCURVE", "151 174 CURVE SMOOTH", "109 93 OFFCURVE", "93 38 OFFCURVE", "101 11 CURVE SMOOTH", "125 -76 OFFCURVE", "188 -121 OFFCURVE", "289 -124 CURVE SMOOTH", "427 -128 OFFCURVE", "526 -83 OFFCURVE", "585 10 CURVE", "589 61 OFFCURVE", "576 120 OFFCURVE", "546 184 CURVE SMOOTH", "542 191 OFFCURVE", "541 196 OFFCURVE", "543 200 CURVE SMOOTH", "557 231 OFFCURVE", "570 254 OFFCURVE", "579 268 CURVE SMOOTH", "582 272 OFFCURVE", "585 272 OFFCURVE", "588 269 CURVE SMOOTH", "591 266 OFFCURVE", "599 256 OFFCURVE", "610 237 CURVE SMOOTH", "621 218 OFFCURVE", "628 208 OFFCURVE", "634 207 CURVE SMOOTH", "668 200 OFFCURVE", "703 210 OFFCURVE", "738 238 CURVE SMOOTH", "751 249 OFFCURVE", "763 280 OFFCURVE", "775 330 CURVE SMOOTH", "776 336 OFFCURVE", "779 338 OFFCURVE", "783 340 CURVE SMOOTH", "787 342 OFFCURVE", "791 342 OFFCURVE", "794 340 CURVE SMOOTH", "801 335 OFFCURVE", "801 316 OFFCURVE", "795 282 CURVE", "822 262 OFFCURVE", "851 255 OFFCURVE", "884 258 CURVE", "884 268 OFFCURVE", "883 275 OFFCURVE", "879 279 CURVE SMOOTH", "875 283 OFFCURVE", "874 287 OFFCURVE", "875 291 CURVE SMOOTH", "893 363 LINE SMOOTH" ); } ); width = 992; }, { anchors = ( { name = DigitAbove; position = "{748, 522}"; }, { name = DotAbove; position = "{748, 522}"; }, { name = DotBelow; position = "{781, -98}"; }, { name = HamzaAbove; position = "{748, 522}"; }, { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{694, 522}"; }, { name = TwoDotsBelow; position = "{732, -98}"; }, { name = VAbove; position = "{748, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "890 400 OFFCURVE", "899 401 OFFCURVE", "913 386 CURVE SMOOTH", "927 371 OFFCURVE", "934 347 OFFCURVE", "934 314 CURVE SMOOTH", "934 250 OFFCURVE", "922 198 OFFCURVE", "897 159 CURVE SMOOTH", "889 146 OFFCURVE", "878 138 OFFCURVE", "863 134 CURVE SMOOTH", "834 126 OFFCURVE", "800 136 OFFCURVE", "764 163 CURVE", "732 112 OFFCURVE", "690 88 OFFCURVE", "636 92 CURVE", "632 40 OFFCURVE", "622 -8 OFFCURVE", "608 -50 CURVE SMOOTH", "594 -92 OFFCURVE", "568 -127 OFFCURVE", "531 -156 CURVE SMOOTH", "452 -218 OFFCURVE", "368 -247 OFFCURVE", "279 -245 CURVE SMOOTH", "167 -242 OFFCURVE", "97 -190 OFFCURVE", "69 -91 CURVE SMOOTH", "61 -63 OFFCURVE", "62 -25 OFFCURVE", "72 24 CURVE SMOOTH", "82 73 OFFCURVE", "101 126 OFFCURVE", "131 181 CURVE SMOOTH", "136 190 OFFCURVE", "141 193 OFFCURVE", "148 189 CURVE SMOOTH", "155 185 OFFCURVE", "156 178 OFFCURVE", "152 169 CURVE SMOOTH", "119 91 OFFCURVE", "107 39 OFFCURVE", "114 15 CURVE SMOOTH", "136 -67 OFFCURVE", "195 -109 OFFCURVE", "290 -109 CURVE SMOOTH", "429 -110 OFFCURVE", "526 -68 OFFCURVE", "581 15 CURVE", "583 58 OFFCURVE", "567 112 OFFCURVE", "533 177 CURVE SMOOTH", "527 188 OFFCURVE", "526 199 OFFCURVE", "530 207 CURVE SMOOTH", "572 285 LINE SMOOTH", "578 297 OFFCURVE", "587 294 OFFCURVE", "599 278 CURVE SMOOTH", "611 262 OFFCURVE", "623 243 OFFCURVE", "632 221 CURVE", "705 210 OFFCURVE", "751 247 OFFCURVE", "771 333 CURVE SMOOTH", "775 348 OFFCURVE", "781 355 OFFCURVE", "790 354 CURVE SMOOTH", "805 352 OFFCURVE", "808 331 OFFCURVE", "801 292 CURVE", "823 278 OFFCURVE", "848 271 OFFCURVE", "876 272 CURVE", "876 275 OFFCURVE", "873 282 OFFCURVE", "866 293 CURVE SMOOTH", "864 297 OFFCURVE", "864 303 OFFCURVE", "867 314 CURVE SMOOTH", "885 382 LINE SMOOTH" ); } ); width = 992; } ); }, { glyphname = aSen.medi; layers = ( { anchors = ( { name = DigitAbove; position = "{291, 379}"; }, { name = DotAbove; position = "{291, 379}"; }, { name = DotBelow; position = "{269, -195}"; }, { name = HamzaAbove; position = "{291, 379}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; }, { name = TwoDotsAbove; position = "{236, 379}"; }, { name = TwoDotsBelow; position = "{220, -146}"; }, { name = VAbove; position = "{291, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "132 170 OFFCURVE", "137 175 OFFCURVE", "142 177 CURVE SMOOTH", "147 179 OFFCURVE", "152 177 OFFCURVE", "156 172 CURVE SMOOTH", "160 167 OFFCURVE", "160 159 OFFCURVE", "155 149 CURVE SMOOTH", "150 139 OFFCURVE", "145 129 OFFCURVE", "139 118 CURVE", "220 85 OFFCURVE", "276 107 OFFCURVE", "308 183 CURVE SMOOTH", "312 191 OFFCURVE", "316 196 OFFCURVE", "321 198 CURVE SMOOTH", "326 200 OFFCURVE", "331 199 OFFCURVE", "335 194 CURVE SMOOTH", "339 189 OFFCURVE", "339 182 OFFCURVE", "336 174 CURVE SMOOTH", "328 152 OFFCURVE", "325 137 OFFCURVE", "326 129 CURVE SMOOTH", "328 114 OFFCURVE", "340 103 OFFCURVE", "363 98 CURVE SMOOTH", "386 93 OFFCURVE", "403 96 OFFCURVE", "415 108 CURVE SMOOTH", "427 120 OFFCURVE", "437 147 OFFCURVE", "447 189 CURVE SMOOTH", "448 195 OFFCURVE", "452 197 OFFCURVE", "459 197 CURVE SMOOTH", "466 197 OFFCURVE", "471 195 OFFCURVE", "473 189 CURVE SMOOTH", "497 127 OFFCURVE", "529 94 OFFCURVE", "569 90 CURVE SMOOTH", "577 89 OFFCURVE", "583 80 OFFCURVE", "586 62 CURVE SMOOTH", "589 46 OFFCURVE", "589 31 OFFCURVE", "585 19 CURVE SMOOTH", "581 7 OFFCURVE", "576 0 OFFCURVE", "569 0 CURVE SMOOTH", "514 0 OFFCURVE", "474 33 OFFCURVE", "449 99 CURVE SMOOTH", "447 104 OFFCURVE", "446 104 OFFCURVE", "444 99 CURVE SMOOTH", "432 59 OFFCURVE", "421 31 OFFCURVE", "410 16 CURVE SMOOTH", "399 1 OFFCURVE", "386 -6 OFFCURVE", "371 -7 CURVE SMOOTH", "324 -9 OFFCURVE", "288 9 OFFCURVE", "264 46 CURVE", "238 15 OFFCURVE", "206 0 OFFCURVE", "168 0 CURVE SMOOTH", "130 0 OFFCURVE", "102 13 OFFCURVE", "83 39 CURVE", "57 13 OFFCURVE", "29 0 OFFCURVE", "0 0 CURVE SMOOTH", "-13 0 OFFCURVE", "-20 22 OFFCURVE", "-23 67 CURVE SMOOTH", "-24 81 OFFCURVE", "-17 88 OFFCURVE", "0 90 CURVE SMOOTH", "66 95 OFFCURVE", "109 120 OFFCURVE", "128 162 CURVE SMOOTH" ); } ); width = 568; }, { anchors = ( { name = DigitAbove; position = "{291, 379}"; }, { name = DotAbove; position = "{291, 379}"; }, { name = DotBelow; position = "{269, -195}"; }, { name = HamzaAbove; position = "{291, 379}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; }, { name = TwoDotsAbove; position = "{236, 379}"; }, { name = TwoDotsBelow; position = "{220, -146}"; }, { name = VAbove; position = "{291, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "132 181 OFFCURVE", "141 187 OFFCURVE", "154 182 CURVE SMOOTH", "166 177 OFFCURVE", "168 165 OFFCURVE", "159 145 CURVE SMOOTH", "156 139 OFFCURVE", "153 133 OFFCURVE", "150 127 CURVE", "222 101 OFFCURVE", "274 122 OFFCURVE", "305 187 CURVE", "311 201 OFFCURVE", "321 206 OFFCURVE", "332 201 CURVE SMOOTH", "343 196 OFFCURVE", "346 186 OFFCURVE", "340 170 CURVE SMOOTH", "334 154 OFFCURVE", "331 143 OFFCURVE", "331 138 CURVE SMOOTH", "332 124 OFFCURVE", "345 115 OFFCURVE", "370 112 CURVE SMOOTH", "395 109 OFFCURVE", "411 113 OFFCURVE", "419 124 CURVE SMOOTH", "427 135 OFFCURVE", "435 157 OFFCURVE", "442 192 CURVE SMOOTH", "444 201 OFFCURVE", "450 206 OFFCURVE", "459 206 CURVE SMOOTH", "468 206 OFFCURVE", "474 202 OFFCURVE", "477 194 CURVE SMOOTH", "498 138 OFFCURVE", "529 109 OFFCURVE", "569 105 CURVE SMOOTH", "584 103 OFFCURVE", "594 91 OFFCURVE", "599 69 CURVE SMOOTH", "604 47 OFFCURVE", "603 28 OFFCURVE", "598 11 CURVE SMOOTH", "593 -6 OFFCURVE", "583 -15 OFFCURVE", "569 -15 CURVE SMOOTH", "509 -15 OFFCURVE", "468 19 OFFCURVE", "447 87 CURVE", "438 57 OFFCURVE", "427 31 OFFCURVE", "416 10 CURVE SMOOTH", "405 -11 OFFCURVE", "390 -20 OFFCURVE", "371 -21 CURVE SMOOTH", "325 -23 OFFCURVE", "289 -9 OFFCURVE", "263 23 CURVE", "236 -2 OFFCURVE", "204 -14 OFFCURVE", "168 -14 CURVE SMOOTH", "132 -14 OFFCURVE", "102 -3 OFFCURVE", "81 18 CURVE", "55 -3 OFFCURVE", "28 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-19 -15 OFFCURVE", "-30 2 OFFCURVE", "-35 34 CURVE SMOOTH", "-36 42 OFFCURVE", "-38 53 OFFCURVE", "-39 68 CURVE SMOOTH", "-40 84 OFFCURVE", "-32 96 OFFCURVE", "-16 102 CURVE SMOOTH", "-10 104 OFFCURVE", "-5 105 OFFCURVE", "0 105 CURVE SMOOTH", "72 110 OFFCURVE", "114 131 OFFCURVE", "127 167 CURVE SMOOTH" ); } ); width = 568; } ); }, { glyphname = aTaa.fina; layers = ( { anchors = ( { name = DotAbove; position = "{576, 488}"; }, { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{522, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "501 11 OFFCURVE", "441 3 OFFCURVE", "354 -2 CURVE SMOOTH", "233 -9 OFFCURVE", "165 -8 OFFCURVE", "148 2 CURVE SMOOTH", "116 20 OFFCURVE", "89 50 OFFCURVE", "65 91 CURVE SMOOTH", "61 98 OFFCURVE", "63 101 OFFCURVE", "70 100 CURVE SMOOTH", "142 87 OFFCURVE", "208 86 OFFCURVE", "269 96 CURVE", "336 168 LINE", "340 215 OFFCURVE", "338 288 OFFCURVE", "331 386 CURVE SMOOTH", "324 484 OFFCURVE", "315 577 OFFCURVE", "303 663 CURVE SMOOTH", "296 710 LINE", "304 732 OFFCURVE", "313 751 OFFCURVE", "321 766 CURVE SMOOTH", "323 770 OFFCURVE", "326 771 OFFCURVE", "330 771 CURVE SMOOTH", "334 771 OFFCURVE", "338 767 OFFCURVE", "341 759 CURVE SMOOTH", "351 729 OFFCURVE", "363 706 OFFCURVE", "378 691 CURVE SMOOTH", "386 683 OFFCURVE", "387 674 OFFCURVE", "381 666 CURVE SMOOTH", "362 641 LINE SMOOTH", "358 636 OFFCURVE", "356 629 OFFCURVE", "357 622 CURVE SMOOTH", "373 452 OFFCURVE", "380 351 OFFCURVE", "378 320 CURVE SMOOTH", "376 289 OFFCURVE", "369 245 OFFCURVE", "358 188 CURVE", "421 242 OFFCURVE", "486 284 OFFCURVE", "551 314 CURVE SMOOTH", "588 331 OFFCURVE", "616 336 OFFCURVE", "635 329 CURVE SMOOTH", "664 318 OFFCURVE", "686 294 OFFCURVE", "704 257 CURVE SMOOTH", "707 250 OFFCURVE", "708 241 OFFCURVE", "706 228 CURVE SMOOTH", "696 170 OFFCURVE", "670 127 OFFCURVE", "630 98 CURVE", "681 89 OFFCURVE", "722 86 OFFCURVE", "752 90 CURVE SMOOTH", "761 91 OFFCURVE", "768 85 OFFCURVE", "771 72 CURVE SMOOTH", "777 46 OFFCURVE", "776 28 OFFCURVE", "769 17 CURVE SMOOTH", "762 6 OFFCURVE", "756 0 OFFCURVE", "752 0 CURVE SMOOTH", "687 -5 OFFCURVE", "614 3 OFFCURVE", "534 24 CURVE" ); }, { closed = 1; nodes = ( "471 217 OFFCURVE", "399 175 OFFCURVE", "322 100 CURVE", "446 108 OFFCURVE", "551 131 OFFCURVE", "635 167 CURVE", "610 211 OFFCURVE", "576 231 OFFCURVE", "535 225 CURVE SMOOTH" ); } ); width = 751; }, { anchors = ( { name = DotAbove; position = "{576, 488}"; }, { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{522, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "485 0 OFFCURVE", "414 -11 OFFCURVE", "315 -18 CURVE SMOOTH", "216 -25 OFFCURVE", "159 -22 OFFCURVE", "141 -11 CURVE SMOOTH", "108 10 OFFCURVE", "78 42 OFFCURVE", "52 84 CURVE SMOOTH", "37 109 OFFCURVE", "43 119 OFFCURVE", "72 114 CURVE SMOOTH", "146 102 OFFCURVE", "214 100 OFFCURVE", "276 109 CURVE", "297 133 OFFCURVE", "315 154 OFFCURVE", "329 172 CURVE", "331 210 OFFCURVE", "327 291 OFFCURVE", "318 414 CURVE SMOOTH", "309 537 OFFCURVE", "300 620 OFFCURVE", "292 661 CURVE", "283 704 LINE SMOOTH", "281 712 OFFCURVE", "290 735 OFFCURVE", "308 773 CURVE SMOOTH", "324 806 OFFCURVE", "338 803 OFFCURVE", "351 764 CURVE SMOOTH", "360 736 OFFCURVE", "372 715 OFFCURVE", "387 701 CURVE SMOOTH", "402 687 OFFCURVE", "404 673 OFFCURVE", "393 657 CURVE SMOOTH", "374 636 LINE SMOOTH", "369 631 OFFCURVE", "368 628 OFFCURVE", "368 624 CURVE SMOOTH", "383 457 OFFCURVE", "388 352 OFFCURVE", "383 309 CURVE SMOOTH", "378 266 OFFCURVE", "373 233 OFFCURVE", "370 208 CURVE", "419 249 OFFCURVE", "472 283 OFFCURVE", "526 312 CURVE SMOOTH", "580 341 OFFCURVE", "618 352 OFFCURVE", "640 343 CURVE SMOOTH", "674 330 OFFCURVE", "699 303 OFFCURVE", "717 263 CURVE SMOOTH", "721 254 OFFCURVE", "722 241 OFFCURVE", "720 225 CURVE SMOOTH", "713 176 OFFCURVE", "690 137 OFFCURVE", "651 107 CURVE", "686 101 OFFCURVE", "719 100 OFFCURVE", "751 104 CURVE SMOOTH", "776 107 OFFCURVE", "790 88 OFFCURVE", "790 48 CURVE SMOOTH", "790 7 OFFCURVE", "778 -14 OFFCURVE", "752 -15 CURVE SMOOTH", "685 -17 OFFCURVE", "610 -6 OFFCURVE", "528 15 CURVE" ); }, { closed = 1; nodes = ( "475 210 OFFCURVE", "410 177 OFFCURVE", "344 118 CURVE", "463 127 OFFCURVE", "559 147 OFFCURVE", "629 178 CURVE", "605 208 OFFCURVE", "574 221 OFFCURVE", "537 217 CURVE SMOOTH" ); } ); width = 751; } ); }, { glyphname = aTaa.init; layers = ( { anchors = ( { name = DotAbove; position = "{374, 488}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{317, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "128 712 OFFCURVE", "130 714 OFFCURVE", "133 713 CURVE SMOOTH", "136 712 OFFCURVE", "138 709 OFFCURVE", "140 705 CURVE SMOOTH", "157 667 OFFCURVE", "171 640 OFFCURVE", "183 627 CURVE SMOOTH", "189 621 OFFCURVE", "189 614 OFFCURVE", "183 607 CURVE SMOOTH", "163 582 LINE SMOOTH", "159 577 OFFCURVE", "157 571 OFFCURVE", "158 561 CURVE SMOOTH", "167 428 OFFCURVE", "171 354 OFFCURVE", "171 340 CURVE SMOOTH", "171 273 OFFCURVE", "166 220 OFFCURVE", "158 180 CURVE", "255 258 OFFCURVE", "327 303 OFFCURVE", "375 316 CURVE SMOOTH", "400 323 OFFCURVE", "420 324 OFFCURVE", "436 318 CURVE SMOOTH", "461 309 OFFCURVE", "482 286 OFFCURVE", "501 250 CURVE SMOOTH", "505 243 OFFCURVE", "505 232 OFFCURVE", "502 221 CURVE SMOOTH", "490 179 OFFCURVE", "473 141 OFFCURVE", "451 107 CURVE SMOOTH", "435 83 OFFCURVE", "403 65 OFFCURVE", "353 53 CURVE SMOOTH", "231 25 OFFCURVE", "113 7 OFFCURVE", "0 0 CURVE SMOOTH", "-7 0 OFFCURVE", "-12 7 OFFCURVE", "-17 22 CURVE SMOOTH", "-22 37 OFFCURVE", "-24 52 OFFCURVE", "-21 67 CURVE SMOOTH", "-18 82 OFFCURVE", "-11 89 OFFCURVE", "0 90 CURVE SMOOTH", "28 91 OFFCURVE", "50 94 OFFCURVE", "66 96 CURVE", "122 150 LINE", "123 155 OFFCURVE", "125 168 OFFCURVE", "126 188 CURVE SMOOTH", "127 208 OFFCURVE", "127 234 OFFCURVE", "127 265 CURVE SMOOTH", "127 296 OFFCURVE", "124 353 OFFCURVE", "119 435 CURVE SMOOTH", "113 532 OFFCURVE", "108 591 OFFCURVE", "104 614 CURVE SMOOTH", "100 637 OFFCURVE", "98 650 OFFCURVE", "99 654 CURVE SMOOTH", "107 676 OFFCURVE", "116 693 OFFCURVE", "125 708 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "333 226 OFFCURVE", "326 225 OFFCURVE", "319 223 CURVE SMOOTH", "253 202 OFFCURVE", "189 161 OFFCURVE", "127 100 CURVE", "255 111 OFFCURVE", "358 129 OFFCURVE", "435 157 CURVE SMOOTH", "439 158 OFFCURVE", "440 161 OFFCURVE", "438 164 CURVE SMOOTH", "411 204 OFFCURVE", "378 225 OFFCURVE", "340 226 CURVE SMOOTH" ); } ); width = 567; }, { anchors = ( { name = DotAbove; position = "{374, 488}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{317, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "124 200 OFFCURVE", "123 281 OFFCURVE", "115 400 CURVE SMOOTH", "107 519 OFFCURVE", "99 589 OFFCURVE", "95 612 CURVE SMOOTH", "91 635 OFFCURVE", "89 647 OFFCURVE", "90 650 CURVE SMOOTH", "92 665 OFFCURVE", "101 686 OFFCURVE", "117 715 CURVE SMOOTH", "128 734 OFFCURVE", "138 732 OFFCURVE", "148 710 CURVE SMOOTH", "165 674 OFFCURVE", "178 652 OFFCURVE", "186 643 CURVE SMOOTH", "200 627 OFFCURVE", "202 613 OFFCURVE", "192 601 CURVE SMOOTH", "167 573 LINE SMOOTH", "166 571 OFFCURVE", "166 568 OFFCURVE", "166 562 CURVE SMOOTH", "175 429 OFFCURVE", "179 344 OFFCURVE", "177 307 CURVE SMOOTH", "175 270 OFFCURVE", "172 234 OFFCURVE", "167 199 CURVE", "258 275 OFFCURVE", "327 319 OFFCURVE", "372 331 CURVE SMOOTH", "428 346 OFFCURVE", "471 320 OFFCURVE", "504 256 CURVE SMOOTH", "510 245 OFFCURVE", "510 232 OFFCURVE", "506 217 CURVE SMOOTH", "493 171 OFFCURVE", "475 132 OFFCURVE", "454 101 CURVE SMOOTH", "433 70 OFFCURVE", "400 49 OFFCURVE", "356 39 CURVE SMOOTH", "232 10 OFFCURVE", "114 -8 OFFCURVE", "0 -15 CURVE", "-14 -15 OFFCURVE", "-24 -6 OFFCURVE", "-30 14 CURVE SMOOTH", "-36 34 OFFCURVE", "-38 53 OFFCURVE", "-34 73 CURVE SMOOTH", "-30 93 OFFCURVE", "-19 104 OFFCURVE", "0 105 CURVE", "35 106 OFFCURVE", "58 107 OFFCURVE", "69 109 CURVE", "118 157 LINE" ); }, { closed = 1; nodes = ( "290 213 OFFCURVE", "224 180 OFFCURVE", "145 116 CURVE", "272 129 OFFCURVE", "368 146 OFFCURVE", "435 167 CURVE", "409 199 OFFCURVE", "377 214 OFFCURVE", "340 214 CURVE SMOOTH" ); } ); width = 567; } ); }, { glyphname = aTaa.isol; layers = ( { anchors = ( { name = DotAbove; position = "{566, 488}"; }, { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = TwoDotsAbove; position = "{513, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "302 703 OFFCURVE", "310 720 OFFCURVE", "312 723 CURVE SMOOTH", "314 726 OFFCURVE", "317 728 OFFCURVE", "321 728 CURVE SMOOTH", "325 728 OFFCURVE", "327 725 OFFCURVE", "328 722 CURVE SMOOTH", "335 704 OFFCURVE", "341 690 OFFCURVE", "346 680 CURVE SMOOTH", "351 670 OFFCURVE", "360 659 OFFCURVE", "373 644 CURVE", "378 637 OFFCURVE", "378 629 OFFCURVE", "373 623 CURVE SMOOTH", "354 598 LINE SMOOTH", "350 593 OFFCURVE", "348 587 OFFCURVE", "349 581 CURVE SMOOTH", "364 420 OFFCURVE", "370 315 OFFCURVE", "367 266 CURVE SMOOTH", "364 217 OFFCURVE", "361 184 OFFCURVE", "357 167 CURVE", "439 231 OFFCURVE", "499 271 OFFCURVE", "534 288 CURVE SMOOTH", "569 305 OFFCURVE", "600 315 OFFCURVE", "625 318 CURVE SMOOTH", "639 320 OFFCURVE", "654 316 OFFCURVE", "671 305 CURVE", "707 282 OFFCURVE", "727 260 OFFCURVE", "729 240 CURVE SMOOTH", "731 220 OFFCURVE", "724 193 OFFCURVE", "706 159 CURVE SMOOTH", "688 125 OFFCURVE", "673 102 OFFCURVE", "662 90 CURVE SMOOTH", "645 72 OFFCURVE", "591 49 OFFCURVE", "500 21 CURVE SMOOTH", "409 -7 OFFCURVE", "312 -23 OFFCURVE", "212 -28 CURVE", "175 -22 OFFCURVE", "145 -9 OFFCURVE", "120 8 CURVE SMOOTH", "95 25 OFFCURVE", "78 42 OFFCURVE", "69 58 CURVE SMOOTH", "60 74 OFFCURVE", "62 81 OFFCURVE", "73 80 CURVE SMOOTH", "121 73 OFFCURVE", "184 72 OFFCURVE", "263 78 CURVE", "329 143 LINE", "333 212 OFFCURVE", "331 284 OFFCURVE", "324 360 CURVE SMOOTH", "317 436 OFFCURVE", "309 502 OFFCURVE", "302 559 CURVE SMOOTH", "295 616 OFFCURVE", "290 647 OFFCURVE", "288 654 CURVE SMOOTH", "286 661 OFFCURVE", "287 666 OFFCURVE", "289 672 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "455 189 OFFCURVE", "395 150 OFFCURVE", "322 85 CURVE", "459 100 OFFCURVE", "569 130 OFFCURVE", "651 173 CURVE", "629 217 OFFCURVE", "579 227 OFFCURVE", "503 204 CURVE SMOOTH" ); } ); width = 792; }, { anchors = ( { name = DotAbove; position = "{566, 488}"; }, { name = TashkilAbove; position = "{537, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = TwoDotsAbove; position = "{513, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "285 621 OFFCURVE", "280 656 OFFCURVE", "279 662 CURVE SMOOTH", "278 668 OFFCURVE", "279 675 OFFCURVE", "284 686 CURVE SMOOTH", "286 687 OFFCURVE", "292 702 OFFCURVE", "304 731 CURVE SMOOTH", "307 739 OFFCURVE", "312 744 OFFCURVE", "319 744 CURVE SMOOTH", "326 744 OFFCURVE", "331 739 OFFCURVE", "336 727 CURVE SMOOTH", "343 709 OFFCURVE", "349 696 OFFCURVE", "353 688 CURVE SMOOTH", "357 680 OFFCURVE", "365 668 OFFCURVE", "378 654 CURVE SMOOTH", "391 640 OFFCURVE", "392 628 OFFCURVE", "384 617 CURVE", "366 595 OFFCURVE", "357 583 OFFCURVE", "357 583 CURVE SMOOTH", "372 421 OFFCURVE", "378 318 OFFCURVE", "374 275 CURVE SMOOTH", "370 232 OFFCURVE", "368 203 OFFCURVE", "366 186 CURVE", "467 277 OFFCURVE", "551 326 OFFCURVE", "618 333 CURVE SMOOTH", "640 335 OFFCURVE", "661 330 OFFCURVE", "679 317 CURVE SMOOTH", "712 295 OFFCURVE", "729 270 OFFCURVE", "732 245 CURVE SMOOTH", "735 220 OFFCURVE", "728 189 OFFCURVE", "709 153 CURVE SMOOTH", "690 117 OFFCURVE", "675 93 OFFCURVE", "663 80 CURVE SMOOTH", "644 61 OFFCURVE", "590 37 OFFCURVE", "500 8 CURVE SMOOTH", "410 -21 OFFCURVE", "313 -37 OFFCURVE", "211 -42 CURVE", "171 -35 OFFCURVE", "139 -23 OFFCURVE", "114 -4 CURVE SMOOTH", "89 15 OFFCURVE", "71 31 OFFCURVE", "60 45 CURVE SMOOTH", "30 82 OFFCURVE", "35 100 OFFCURVE", "75 95 CURVE SMOOTH", "128 89 OFFCURVE", "192 87 OFFCURVE", "267 92 CURVE", "325 149 LINE", "329 242 OFFCURVE", "318 378 OFFCURVE", "294 557 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "445 175 OFFCURVE", "389 146 OFFCURVE", "344 104 CURVE", "473 119 OFFCURVE", "574 146 OFFCURVE", "645 184 CURVE", "625 208 OFFCURVE", "581 211 OFFCURVE", "513 193 CURVE SMOOTH" ); } ); width = 792; } ); }, { glyphname = aTaa.medi; layers = ( { anchors = ( { name = DotAbove; position = "{342, 488}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; }, { name = TwoDotsAbove; position = "{288, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "285 8 OFFCURVE", "221 -1 OFFCURVE", "142 -2 CURVE SMOOTH", "63 -3 OFFCURVE", "16 -2 OFFCURVE", "0 0 CURVE SMOOTH", "-5 1 OFFCURVE", "-10 8 OFFCURVE", "-15 23 CURVE SMOOTH", "-29 66 OFFCURVE", "-23 88 OFFCURVE", "0 90 CURVE", "43 91 LINE", "98 150 LINE", "99 278 OFFCURVE", "89 433 OFFCURVE", "66 613 CURVE SMOOTH", "63 639 OFFCURVE", "61 655 OFFCURVE", "59 661 CURVE SMOOTH", "56 671 OFFCURVE", "64 693 OFFCURVE", "83 729 CURVE SMOOTH", "85 733 OFFCURVE", "87 735 OFFCURVE", "91 735 CURVE SMOOTH", "95 735 OFFCURVE", "97 732 OFFCURVE", "99 728 CURVE SMOOTH", "113 692 OFFCURVE", "127 667 OFFCURVE", "141 653 CURVE SMOOTH", "149 646 OFFCURVE", "149 637 OFFCURVE", "141 627 CURVE SMOOTH", "124 605 LINE SMOOTH", "120 600 OFFCURVE", "120 593 OFFCURVE", "121 583 CURVE SMOOTH", "138 447 OFFCURVE", "145 350 OFFCURVE", "142 295 CURVE SMOOTH", "141 273 OFFCURVE", "134 234 OFFCURVE", "123 178 CURVE", "204 246 OFFCURVE", "265 290 OFFCURVE", "306 309 CURVE SMOOTH", "347 328 OFFCURVE", "378 335 OFFCURVE", "399 328 CURVE SMOOTH", "431 319 OFFCURVE", "456 294 OFFCURVE", "474 257 CURVE SMOOTH", "478 250 OFFCURVE", "478 240 OFFCURVE", "476 228 CURVE SMOOTH", "467 177 OFFCURVE", "444 135 OFFCURVE", "408 103 CURVE", "459 90 OFFCURVE", "507 85 OFFCURVE", "552 90 CURVE SMOOTH", "561 91 OFFCURVE", "567 85 OFFCURVE", "570 72 CURVE SMOOTH", "576 46 OFFCURVE", "576 28 OFFCURVE", "569 17 CURVE SMOOTH", "562 6 OFFCURVE", "556 0 OFFCURVE", "552 0 CURVE SMOOTH", "487 -5 OFFCURVE", "414 3 OFFCURVE", "334 24 CURVE" ); }, { closed = 1; nodes = ( "325 238 OFFCURVE", "266 228 OFFCURVE", "192 177 CURVE SMOOTH", "154 151 OFFCURVE", "121 122 OFFCURVE", "90 91 CURVE", "210 98 OFFCURVE", "314 124 OFFCURVE", "404 169 CURVE", "397 182 OFFCURVE", "385 194 OFFCURVE", "367 207 CURVE SMOOTH" ); } ); width = 551; }, { anchors = ( { name = DotAbove; position = "{342, 488}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; }, { name = TwoDotsAbove; position = "{288, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "227 -14 OFFCURVE", "116 -23 OFFCURVE", "0 -15 CURVE SMOOTH", "-11 -14 OFFCURVE", "-20 -5 OFFCURVE", "-27 14 CURVE SMOOTH", "-45 60 OFFCURVE", "-41 89 OFFCURVE", "-17 101 CURVE SMOOTH", "-11 104 OFFCURVE", "-6 105 OFFCURVE", "0 105 CURVE SMOOTH", "46 105 LINE", "93 156 LINE", "94 256 OFFCURVE", "82 408 OFFCURVE", "57 611 CURVE SMOOTH", "54 638 OFFCURVE", "51 653 OFFCURVE", "50 657 CURVE", "47 669 OFFCURVE", "56 696 OFFCURVE", "76 736 CURVE SMOOTH", "80 744 OFFCURVE", "86 749 OFFCURVE", "93 749 CURVE SMOOTH", "100 749 OFFCURVE", "105 744 OFFCURVE", "109 733 CURVE SMOOTH", "121 701 OFFCURVE", "134 678 OFFCURVE", "148 664 CURVE SMOOTH", "162 650 OFFCURVE", "162 636 OFFCURVE", "150 620 CURVE SMOOTH", "133 598 LINE SMOOTH", "129 593 OFFCURVE", "128 589 OFFCURVE", "129 584 CURVE SMOOTH", "145 473 OFFCURVE", "152 383 OFFCURVE", "150 313 CURVE SMOOTH", "149 284 OFFCURVE", "145 246 OFFCURVE", "136 199 CURVE", "260 313 OFFCURVE", "349 360 OFFCURVE", "403 342 CURVE SMOOTH", "437 331 OFFCURVE", "464 305 OFFCURVE", "483 264 CURVE SMOOTH", "488 254 OFFCURVE", "488 242 OFFCURVE", "486 226 CURVE SMOOTH", "479 181 OFFCURVE", "458 143 OFFCURVE", "422 111 CURVE", "467 103 OFFCURVE", "510 101 OFFCURVE", "552 105 CURVE SMOOTH", "570 106 OFFCURVE", "580 97 OFFCURVE", "584 76 CURVE", "594 28 OFFCURVE", "588 -1 OFFCURVE", "563 -11 CURVE SMOOTH", "558 -13 OFFCURVE", "555 -15 OFFCURVE", "552 -15 CURVE SMOOTH", "489 -20 OFFCURVE", "416 -11 OFFCURVE", "333 11 CURVE" ); }, { closed = 1; nodes = ( "284 224 OFFCURVE", "209 189 OFFCURVE", "110 109 CURVE", "224 121 OFFCURVE", "320 142 OFFCURVE", "397 174 CURVE", "380 194 OFFCURVE", "359 207 OFFCURVE", "333 213 CURVE SMOOTH" ); } ); width = 551; } ); }, { glyphname = aWaw.fina; layers = ( { anchors = ( { name = DigitAbove; position = "{343, 377}"; }, { name = DotAbove; position = "{343, 377}"; }, { name = HamzaAbove; position = "{343, 377}"; }, { name = RingBelow; position = "{269, -63}"; }, { name = Stroke; position = "{404, -104}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{289, 377}"; }, { name = VAbove; position = "{385, 348}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "410 129 OFFCURVE", "394 143 OFFCURVE", "375 142 CURVE", "363 140 OFFCURVE", "355 135 OFFCURVE", "348 126 CURVE SMOOTH", "345 122 OFFCURVE", "345 118 OFFCURVE", "350 112 CURVE SMOOTH", "360 99 OFFCURVE", "384 92 OFFCURVE", "419 93 CURVE SMOOTH", "423 93 OFFCURVE", "424 96 OFFCURVE", "423 101 CURVE" ); }, { closed = 1; nodes = ( "450 -130 OFFCURVE", "387 -213 OFFCURVE", "282 -260 CURVE SMOOTH", "255 -272 OFFCURVE", "230 -280 OFFCURVE", "207 -281 CURVE SMOOTH", "184 -282 OFFCURVE", "141 -262 OFFCURVE", "79 -220 CURVE SMOOTH", "72 -215 OFFCURVE", "69 -210 OFFCURVE", "72 -205 CURVE SMOOTH", "75 -200 OFFCURVE", "80 -200 OFFCURVE", "86 -203 CURVE SMOOTH", "142 -232 OFFCURVE", "211 -222 OFFCURVE", "295 -174 CURVE SMOOTH", "367 -133 OFFCURVE", "415 -77 OFFCURVE", "441 -5 CURVE", "441 -3 OFFCURVE", "440 -1 OFFCURVE", "438 0 CURVE", "389 1 OFFCURVE", "354 7 OFFCURVE", "331 20 CURVE SMOOTH", "308 33 OFFCURVE", "299 60 OFFCURVE", "305 98 CURVE SMOOTH", "306 107 OFFCURVE", "309 117 OFFCURVE", "313 129 CURVE SMOOTH", "327 170 OFFCURVE", "348 199 OFFCURVE", "375 214 CURVE SMOOTH", "402 229 OFFCURVE", "425 224 OFFCURVE", "444 198 CURVE SMOOTH", "463 171 OFFCURVE", "474 135 OFFCURVE", "477 90 CURVE", "482 90 OFFCURVE", "486 91 OFFCURVE", "492 91 CURVE SMOOTH", "502 91 OFFCURVE", "508 84 OFFCURVE", "510 68 CURVE SMOOTH", "512 53 OFFCURVE", "511 38 OFFCURVE", "507 23 CURVE SMOOTH", "503 8 OFFCURVE", "498 0 OFFCURVE", "492 0 CURVE SMOOTH", "487 0 OFFCURVE", "481 0 OFFCURVE", "473 0 CURVE", "473 -3 OFFCURVE", "472 -7 OFFCURVE", "471 -11 CURVE SMOOTH" ); } ); width = 492; }, { anchors = ( { name = DigitAbove; position = "{343, 377}"; }, { name = DotAbove; position = "{343, 377}"; }, { name = HamzaAbove; position = "{343, 377}"; }, { name = RingBelow; position = "{269, -63}"; }, { name = Stroke; position = "{404, -104}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; }, { name = TwoDotsAbove; position = "{289, 377}"; }, { name = VAbove; position = "{385, 348}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "410 129 OFFCURVE", "394 143 OFFCURVE", "375 142 CURVE", "363 140 OFFCURVE", "356 136 OFFCURVE", "351 130 CURVE SMOOTH", "346 124 OFFCURVE", "345 118 OFFCURVE", "350 112 CURVE SMOOTH", "360 99 OFFCURVE", "384 92 OFFCURVE", "419 93 CURVE SMOOTH", "423 93 OFFCURVE", "424 96 OFFCURVE", "423 101 CURVE" ); }, { closed = 1; nodes = ( "452 -142 OFFCURVE", "389 -228 OFFCURVE", "288 -273 CURVE SMOOTH", "259 -286 OFFCURVE", "232 -293 OFFCURVE", "207 -293 CURVE SMOOTH", "173 -293 OFFCURVE", "128 -270 OFFCURVE", "72 -223 CURVE", "62 -215 OFFCURVE", "58 -208 OFFCURVE", "62 -201 CURVE SMOOTH", "66 -194 OFFCURVE", "74 -194 OFFCURVE", "87 -199 CURVE", "147 -220 OFFCURVE", "214 -207 OFFCURVE", "288 -162 CURVE SMOOTH", "362 -117 OFFCURVE", "411 -66 OFFCURVE", "433 -10 CURVE", "382 -8 OFFCURVE", "347 0 OFFCURVE", "326 13 CURVE SMOOTH", "300 29 OFFCURVE", "291 58 OFFCURVE", "300 100 CURVE SMOOTH", "315 166 OFFCURVE", "337 208 OFFCURVE", "368 227 CURVE SMOOTH", "401 247 OFFCURVE", "428 242 OFFCURVE", "450 214 CURVE SMOOTH", "466 193 OFFCURVE", "477 157 OFFCURVE", "483 106 CURVE", "507 107 OFFCURVE", "521 95 OFFCURVE", "524 70 CURVE SMOOTH", "526 53 OFFCURVE", "525 36 OFFCURVE", "520 16 CURVE SMOOTH", "515 -4 OFFCURVE", "506 -14 OFFCURVE", "493 -15 CURVE SMOOTH", "487 -15 OFFCURVE", "482 -15 OFFCURVE", "476 -15 CURVE" ); } ); width = 492; } ); }, { glyphname = aWaw.isol; layers = ( { anchors = ( { name = AlefAbove; position = "{391, 317}"; }, { name = DigitAbove; position = "{347, 439}"; }, { name = DotAbove; position = "{347, 439}"; }, { name = HamzaAbove; position = "{347, 439}"; }, { name = RingBelow; position = "{264, -10}"; }, { name = Stroke; position = "{429, -21}"; }, { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; }, { name = TwoDotsAbove; position = "{292, 439}"; }, { name = VAbove; position = "{389, 411}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "338 258 OFFCURVE", "365 291 OFFCURVE", "397 290 CURVE SMOOTH", "416 290 OFFCURVE", "434 277 OFFCURVE", "451 250 CURVE SMOOTH", "468 223 OFFCURVE", "477 194 OFFCURVE", "482 161 CURVE SMOOTH", "487 128 OFFCURVE", "482 81 OFFCURVE", "467 22 CURVE SMOOTH", "452 -37 OFFCURVE", "423 -91 OFFCURVE", "379 -141 CURVE SMOOTH", "335 -191 OFFCURVE", "301 -217 OFFCURVE", "274 -220 CURVE SMOOTH", "247 -223 OFFCURVE", "212 -221 OFFCURVE", "168 -214 CURVE SMOOTH", "124 -207 OFFCURVE", "93 -198 OFFCURVE", "73 -190 CURVE SMOOTH", "66 -187 OFFCURVE", "62 -183 OFFCURVE", "63 -178 CURVE SMOOTH", "64 -173 OFFCURVE", "69 -171 OFFCURVE", "76 -172 CURVE SMOOTH", "128 -179 OFFCURVE", "178 -177 OFFCURVE", "225 -166 CURVE SMOOTH", "253 -159 OFFCURVE", "294 -133 OFFCURVE", "347 -86 CURVE SMOOTH", "400 -39 OFFCURVE", "432 -1 OFFCURVE", "442 31 CURVE", "439 58 OFFCURVE", "435 74 OFFCURVE", "430 77 CURVE", "405 38 OFFCURVE", "372 28 OFFCURVE", "333 48 CURVE SMOOTH", "294 68 OFFCURVE", "288 117 OFFCURVE", "315 194 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "387 188 OFFCURVE", "366 189 OFFCURVE", "344 161 CURVE", "361 142 OFFCURVE", "382 141 OFFCURVE", "406 157 CURVE" ); } ); width = 547; }, { anchors = ( { name = AlefAbove; position = "{391, 317}"; }, { name = DigitAbove; position = "{347, 439}"; }, { name = DotAbove; position = "{347, 439}"; }, { name = HamzaAbove; position = "{347, 439}"; }, { name = RingBelow; position = "{264, -10}"; }, { name = Stroke; position = "{429, -21}"; }, { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; }, { name = TwoDotsAbove; position = "{292, 439}"; }, { name = VAbove; position = "{389, 411}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "387 188 OFFCURVE", "366 189 OFFCURVE", "344 161 CURVE", "361 142 OFFCURVE", "382 141 OFFCURVE", "406 157 CURVE" ); }, { closed = 1; nodes = ( "337 275 OFFCURVE", "365 311 OFFCURVE", "397 310 CURVE SMOOTH", "421 309 OFFCURVE", "442 293 OFFCURVE", "460 264 CURVE SMOOTH", "478 235 OFFCURVE", "488 202 OFFCURVE", "491 165 CURVE SMOOTH", "494 128 OFFCURVE", "488 79 OFFCURVE", "473 18 CURVE SMOOTH", "458 -43 OFFCURVE", "429 -99 OFFCURVE", "386 -151 CURVE SMOOTH", "343 -202 OFFCURVE", "307 -230 OFFCURVE", "277 -233 CURVE SMOOTH", "254 -236 OFFCURVE", "219 -233 OFFCURVE", "171 -223 CURVE SMOOTH", "125 -214 OFFCURVE", "90 -203 OFFCURVE", "67 -194 CURVE SMOOTH", "60 -191 OFFCURVE", "57 -185 OFFCURVE", "59 -177 CURVE SMOOTH", "61 -169 OFFCURVE", "67 -165 OFFCURVE", "78 -167 CURVE SMOOTH", "117 -173 OFFCURVE", "165 -170 OFFCURVE", "221 -157 CURVE SMOOTH", "247 -151 OFFCURVE", "288 -125 OFFCURVE", "341 -79 CURVE SMOOTH", "394 -33 OFFCURVE", "427 4 OFFCURVE", "437 33 CURVE", "436 40 OFFCURVE", "432 50 OFFCURVE", "428 62 CURVE", "400 26 OFFCURVE", "366 17 OFFCURVE", "327 35 CURVE SMOOTH", "283 55 OFFCURVE", "277 111 OFFCURVE", "311 204 CURVE SMOOTH" ); } ); width = 547; } ); }, { glyphname = aYaa.fina; layers = ( { anchors = ( { name = AlefAbove; position = "{293, -49}"; }, { name = DigitAbove; position = "{259, 244}"; }, { name = DigitBelow; position = "{366, -487}"; }, { name = DotAbove; position = "{259, 244}"; }, { name = DotBelow; position = "{366, -487}"; }, { name = HamzaAbove; position = "{161, 244}"; }, { name = HamzaBelow; position = "{366, -487}"; }, { name = RingBelow; position = "{312, -293}"; }, { name = Tail; position = "{141, 76}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; }, { name = TwoDotsAbove; position = "{205, 244}"; }, { name = TwoDotsBelow; position = "{312, -487}"; }, { name = VAbove; position = "{210, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "66 -83 OFFCURVE", "75 -46 OFFCURVE", "90 -6 CURVE SMOOTH", "105 34 OFFCURVE", "119 64 OFFCURVE", "134 84 CURVE SMOOTH", "139 90 OFFCURVE", "144 92 OFFCURVE", "150 89 CURVE SMOOTH", "156 86 OFFCURVE", "157 80 OFFCURVE", "152 72 CURVE SMOOTH", "100 -23 OFFCURVE", "86 -97 OFFCURVE", "111 -146 CURVE SMOOTH", "147 -218 OFFCURVE", "215 -251 OFFCURVE", "314 -246 CURVE SMOOTH", "429 -241 OFFCURVE", "529 -203 OFFCURVE", "615 -131 CURVE", "622 -121 OFFCURVE", "616 -114 OFFCURVE", "597 -109 CURVE SMOOTH", "578 -104 OFFCURVE", "548 -100 OFFCURVE", "508 -97 CURVE SMOOTH", "468 -94 OFFCURVE", "446 -92 OFFCURVE", "442 -89 CURVE SMOOTH", "409 -71 OFFCURVE", "405 -44 OFFCURVE", "429 -6 CURVE", "458 38 OFFCURVE", "511 69 OFFCURVE", "586 90 CURVE SMOOTH", "606 96 OFFCURVE", "615 85 OFFCURVE", "611 58 CURVE SMOOTH", "606 20 OFFCURVE", "598 0 OFFCURVE", "586 0 CURVE SMOOTH", "522 0 OFFCURVE", "489 -8 OFFCURVE", "488 -26 CURVE", "570 -29 OFFCURVE", "624 -41 OFFCURVE", "650 -61 CURVE SMOOTH", "660 -69 OFFCURVE", "667 -79 OFFCURVE", "670 -91 CURVE SMOOTH", "673 -103 OFFCURVE", "670 -121 OFFCURVE", "660 -146 CURVE SMOOTH", "650 -171 OFFCURVE", "641 -188 OFFCURVE", "632 -197 CURVE SMOOTH", "547 -287 OFFCURVE", "439 -334 OFFCURVE", "308 -340 CURVE SMOOTH", "227 -344 OFFCURVE", "162 -324 OFFCURVE", "114 -280 CURVE SMOOTH", "76 -245 OFFCURVE", "59 -191 OFFCURVE", "64 -116 CURVE SMOOTH" ); } ); width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, -49}"; }, { name = DigitAbove; position = "{259, 244}"; }, { name = DigitBelow; position = "{366, -487}"; }, { name = DotAbove; position = "{259, 244}"; }, { name = DotBelow; position = "{366, -487}"; }, { name = HamzaAbove; position = "{161, 244}"; }, { name = HamzaBelow; position = "{366, -487}"; }, { name = RingBelow; position = "{312, -293}"; }, { name = Tail; position = "{141, 76}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; }, { name = TwoDotsAbove; position = "{205, 244}"; }, { name = TwoDotsBelow; position = "{312, -487}"; }, { name = VAbove; position = "{210, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "67 -62 OFFCURVE", "89 5 OFFCURVE", "128 74 CURVE SMOOTH", "135 86 OFFCURVE", "144 90 OFFCURVE", "153 84 CURVE SMOOTH", "162 78 OFFCURVE", "163 69 OFFCURVE", "155 55 CURVE SMOOTH", "106 -35 OFFCURVE", "94 -103 OFFCURVE", "118 -148 CURVE", "152 -214 OFFCURVE", "216 -245 OFFCURVE", "313 -241 CURVE", "422 -236 OFFCURVE", "518 -200 OFFCURVE", "599 -134 CURVE", "583 -129 OFFCURVE", "554 -125 OFFCURVE", "512 -122 CURVE SMOOTH", "470 -119 OFFCURVE", "445 -117 OFFCURVE", "438 -114 CURVE SMOOTH", "421 -107 OFFCURVE", "410 -96 OFFCURVE", "404 -81 CURVE SMOOTH", "394 -53 OFFCURVE", "398 -26 OFFCURVE", "417 2 CURVE SMOOTH", "448 49 OFFCURVE", "503 83 OFFCURVE", "582 104 CURVE SMOOTH", "594 107 OFFCURVE", "605 106 OFFCURVE", "615 99 CURVE SMOOTH", "625 92 OFFCURVE", "627 75 OFFCURVE", "624 47 CURVE SMOOTH", "621 19 OFFCURVE", "615 2 OFFCURVE", "608 -4 CURVE SMOOTH", "601 -10 OFFCURVE", "584 -14 OFFCURVE", "558 -14 CURVE SMOOTH", "532 -14 OFFCURVE", "517 -17 OFFCURVE", "515 -21 CURVE", "610 -26 OFFCURVE", "663 -49 OFFCURVE", "675 -92 CURVE SMOOTH", "679 -107 OFFCURVE", "676 -128 OFFCURVE", "664 -155 CURVE SMOOTH", "652 -182 OFFCURVE", "641 -201 OFFCURVE", "631 -212 CURVE", "535 -309 OFFCURVE", "427 -360 OFFCURVE", "308 -365 CURVE SMOOTH", "218 -369 OFFCURVE", "150 -347 OFFCURVE", "104 -301 CURVE SMOOTH", "66 -263 OFFCURVE", "51 -204 OFFCURVE", "60 -125 CURVE SMOOTH" ); } ); width = 585; } ); }, { glyphname = aYaa.isol; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = DigitAbove; position = "{286, 404}"; }, { name = DigitBelow; position = "{355, -346}"; }, { name = DotAbove; position = "{286, 404}"; }, { name = DotBelow; position = "{355, -346}"; }, { name = HamzaAbove; position = "{188, 404}"; }, { name = HamzaBelow; position = "{355, -346}"; }, { name = RingBelow; position = "{312, -146}"; }, { name = Tail; position = "{171, 236}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{232, 404}"; }, { name = TwoDotsBelow; position = "{301, -346}"; }, { name = VAbove; position = "{237, 404}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "631 309 OFFCURVE", "581 304 OFFCURVE", "519 269 CURVE SMOOTH", "479 246 OFFCURVE", "451 212 OFFCURVE", "436 169 CURVE SMOOTH", "433 161 OFFCURVE", "434 152 OFFCURVE", "438 143 CURVE SMOOTH", "452 111 OFFCURVE", "495 93 OFFCURVE", "566 89 CURVE SMOOTH", "637 85 OFFCURVE", "675 70 OFFCURVE", "678 44 CURVE SMOOTH", "685 -8 OFFCURVE", "669 -49 OFFCURVE", "633 -78 CURVE SMOOTH", "537 -155 OFFCURVE", "428 -196 OFFCURVE", "306 -201 CURVE SMOOTH", "160 -207 OFFCURVE", "79 -153 OFFCURVE", "64 -39 CURVE SMOOTH", "57 13 OFFCURVE", "70 75 OFFCURVE", "102 145 CURVE SMOOTH", "120 183 OFFCURVE", "141 216 OFFCURVE", "165 246 CURVE SMOOTH", "172 254 OFFCURVE", "177 255 OFFCURVE", "181 248 CURVE SMOOTH", "185 241 OFFCURVE", "184 236 OFFCURVE", "180 230 CURVE SMOOTH", "114 137 OFFCURVE", "93 62 OFFCURVE", "116 4 CURVE SMOOTH", "146 -72 OFFCURVE", "212 -108 OFFCURVE", "316 -106 CURVE SMOOTH", "443 -104 OFFCURVE", "546 -71 OFFCURVE", "624 -9 CURVE SMOOTH", "631 -4 OFFCURVE", "631 0 OFFCURVE", "625 5 CURVE SMOOTH", "614 14 OFFCURVE", "577 21 OFFCURVE", "512 25 CURVE SMOOTH", "447 29 OFFCURVE", "409 46 OFFCURVE", "399 75 CURVE SMOOTH", "389 104 OFFCURVE", "389 137 OFFCURVE", "401 174 CURVE SMOOTH", "425 246 OFFCURVE", "472 307 OFFCURVE", "542 357 CURVE SMOOTH", "577 383 OFFCURVE", "608 396 OFFCURVE", "633 398 CURVE SMOOTH", "693 402 OFFCURVE", "715 371 OFFCURVE", "697 305 CURVE SMOOTH", "692 287 OFFCURVE", "683 281 OFFCURVE", "671 288 CURVE SMOOTH" ); } ); width = 764; }, { anchors = ( { name = AlefAbove; position = "{293, 171}"; }, { name = DigitAbove; position = "{286, 404}"; }, { name = DigitBelow; position = "{355, -346}"; }, { name = DotAbove; position = "{286, 404}"; }, { name = DotBelow; position = "{355, -346}"; }, { name = HamzaAbove; position = "{188, 404}"; }, { name = HamzaBelow; position = "{355, -346}"; }, { name = RingBelow; position = "{312, -146}"; }, { name = Tail; position = "{171, 236}"; }, { name = TashkilAbove; position = "{391, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{232, 404}"; }, { name = TwoDotsBelow; position = "{301, -346}"; }, { name = VAbove; position = "{237, 404}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "631 293 OFFCURVE", "585 287 OFFCURVE", "526 256 CURVE SMOOTH", "478 231 OFFCURVE", "450 201 OFFCURVE", "440 165 CURVE SMOOTH", "439 160 OFFCURVE", "439 155 OFFCURVE", "441 149 CURVE SMOOTH", "453 123 OFFCURVE", "496 108 OFFCURVE", "568 104 CURVE SMOOTH", "640 100 OFFCURVE", "679 83 OFFCURVE", "683 50 CURVE SMOOTH", "692 -14 OFFCURVE", "678 -60 OFFCURVE", "642 -89 CURVE SMOOTH", "543 -168 OFFCURVE", "432 -210 OFFCURVE", "307 -215 CURVE SMOOTH", "152 -221 OFFCURVE", "69 -164 OFFCURVE", "59 -41 CURVE SMOOTH", "54 21 OFFCURVE", "68 85 OFFCURVE", "100 151 CURVE SMOOTH", "117 186 OFFCURVE", "137 219 OFFCURVE", "159 247 CURVE SMOOTH", "170 261 OFFCURVE", "178 263 OFFCURVE", "185 256 CURVE SMOOTH", "192 249 OFFCURVE", "190 237 OFFCURVE", "179 221 CURVE SMOOTH", "120 134 OFFCURVE", "103 64 OFFCURVE", "124 9 CURVE SMOOTH", "151 -60 OFFCURVE", "215 -94 OFFCURVE", "316 -92 CURVE SMOOTH", "436 -90 OFFCURVE", "534 -59 OFFCURVE", "609 -2 CURVE", "593 4 OFFCURVE", "561 8 OFFCURVE", "511 11 CURVE SMOOTH", "446 16 OFFCURVE", "407 34 OFFCURVE", "395 69 CURVE SMOOTH", "383 104 OFFCURVE", "384 140 OFFCURVE", "397 178 CURVE SMOOTH", "426 260 OFFCURVE", "471 324 OFFCURVE", "533 369 CURVE SMOOTH", "585 407 OFFCURVE", "631 420 OFFCURVE", "670 410 CURVE SMOOTH", "709 400 OFFCURVE", "720 364 OFFCURVE", "703 301 CURVE SMOOTH", "696 275 OFFCURVE", "683 266 OFFCURVE", "665 275 CURVE" ); } ); width = 764; } ); }, { glyphname = aLam.medi.LamMemFina; layers = ( { anchors = ( { name = DotAbove; position = "{83, 842}"; }, { name = Stroke; position = "{82, 599}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; }, { name = TwoDotsAbove; position = "{24, 842}"; }, { name = TwoDotsBelow; position = "{195, -98}"; }, { name = VAbove; position = "{83, 793}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "100 156 OFFCURVE", "79 93 OFFCURVE", "40 50 CURVE SMOOTH", "27 36 OFFCURVE", "7 33 OFFCURVE", "-19 41 CURVE SMOOTH", "-34 46 OFFCURVE", "-42 51 OFFCURVE", "-41 57 CURVE SMOOTH", "-41 60 OFFCURVE", "-37 62 OFFCURVE", "-31 64 CURVE SMOOTH", "46 92 OFFCURVE", "83 161 OFFCURVE", "79 269 CURVE SMOOTH", "76 359 OFFCURVE", "71 440 OFFCURVE", "63 513 CURVE SMOOTH", "55 586 OFFCURVE", "51 637 OFFCURVE", "49 667 CURVE SMOOTH", "49 674 OFFCURVE", "51 682 OFFCURVE", "55 690 CURVE SMOOTH", "76 731 LINE SMOOTH", "86 752 OFFCURVE", "93 747 OFFCURVE", "96 718 CURVE SMOOTH", "96 718 OFFCURVE", "104 643 OFFCURVE", "120 493 CURVE SMOOTH", "136 343 OFFCURVE", "144 269 OFFCURVE", "144 267 CURVE SMOOTH", "164 154 OFFCURVE", "201 95 OFFCURVE", "254 90 CURVE SMOOTH", "284 87 OFFCURVE", "290 62 OFFCURVE", "271 13 CURVE SMOOTH", "268 5 OFFCURVE", "261 0 OFFCURVE", "254 0 CURVE SMOOTH", "180 0 OFFCURVE", "130 79 OFFCURVE", "105 239 CURVE" ); } ); width = 254; }, { anchors = ( { name = DotAbove; position = "{83, 842}"; }, { name = Stroke; position = "{82, 599}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; }, { name = TwoDotsAbove; position = "{24, 842}"; }, { name = TwoDotsBelow; position = "{195, -98}"; }, { name = VAbove; position = "{83, 793}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "99 128 OFFCURVE", "79 76 OFFCURVE", "50 41 CURVE SMOOTH", "34 22 OFFCURVE", "10 16 OFFCURVE", "-23 26 CURVE", "-44 33 OFFCURVE", "-55 43 OFFCURVE", "-55 55 CURVE SMOOTH", "-55 66 OFFCURVE", "-49 74 OFFCURVE", "-36 78 CURVE SMOOTH", "39 104 OFFCURVE", "75 168 OFFCURVE", "72 269 CURVE SMOOTH", "71 323 OFFCURVE", "65 398 OFFCURVE", "55 493 CURVE SMOOTH", "45 588 OFFCURVE", "40 643 OFFCURVE", "40 658 CURVE SMOOTH", "40 673 OFFCURVE", "42 686 OFFCURVE", "47 696 CURVE SMOOTH", "70 741 LINE", "89 781 OFFCURVE", "100 775 OFFCURVE", "106 722 CURVE SMOOTH", "130 492 LINE", "142 365 OFFCURVE", "150 291 OFFCURVE", "154 269 CURVE SMOOTH", "172 165 OFFCURVE", "205 110 OFFCURVE", "254 105 CURVE SMOOTH", "260 104 OFFCURVE", "266 104 OFFCURVE", "271 102 CURVE SMOOTH", "301 93 OFFCURVE", "305 60 OFFCURVE", "284 7 CURVE SMOOTH", "278 -8 OFFCURVE", "268 -15 OFFCURVE", "254 -15 CURVE SMOOTH", "182 -14 OFFCURVE", "134 57 OFFCURVE", "108 199 CURVE" ); } ); width = 254; } ); }, { glyphname = aMem.fina.LamMemFina; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 34, -140}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 34, -140}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = aBaa.init.BaaRaaIsol; layers = ( { anchors = ( { name = DigitAbove; position = "{119, 464}"; }, { name = DigitBelow; position = "{95, -98}"; }, { name = DotAbove; position = "{119, 464}"; }, { name = DotBelow; position = "{95, -98}"; }, { name = DotBelowAlt; position = "{95, -366}"; }, { name = HamzaAbove; position = "{119, 464}"; }, { name = HamzaBelow; position = "{95, -98}"; }, { name = RingBelow; position = "{98, 132}"; }, { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; }, { name = TwoDotsAbove; position = "{80, 464}"; }, { name = TwoDotsBelow; position = "{80, -98}"; }, { name = TwoDotsBelowAlt; position = "{41, -366}"; }, { name = VAbove; position = "{119, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "127 263 OFFCURVE", "131 259 OFFCURVE", "132 251 CURVE SMOOTH", "137 202 OFFCURVE", "132 162 OFFCURVE", "117 131 CURVE SMOOTH", "102 100 OFFCURVE", "75 81 OFFCURVE", "37 75 CURVE SMOOTH", "10 70 OFFCURVE", "-12 73 OFFCURVE", "-31 82 CURVE SMOOTH", "-39 86 OFFCURVE", "-42 97 OFFCURVE", "-39 114 CURVE", "-24 190 LINE SMOOTH", "-21 207 OFFCURVE", "-15 209 OFFCURVE", "-6 196 CURVE SMOOTH", "3 183 OFFCURVE", "17 176 OFFCURVE", "37 174 CURVE SMOOTH", "57 172 OFFCURVE", "74 177 OFFCURVE", "89 190 CURVE SMOOTH", "104 203 OFFCURVE", "111 224 OFFCURVE", "110 250 CURVE SMOOTH", "110 258 OFFCURVE", "113 263 OFFCURVE", "120 263 CURVE SMOOTH" ); } ); width = 246; }, { anchors = ( { name = DigitAbove; position = "{119, 464}"; }, { name = DigitBelow; position = "{95, -98}"; }, { name = DotAbove; position = "{119, 464}"; }, { name = DotBelow; position = "{95, -98}"; }, { name = DotBelowAlt; position = "{95, -366}"; }, { name = HamzaAbove; position = "{119, 464}"; }, { name = HamzaBelow; position = "{95, -98}"; }, { name = RingBelow; position = "{98, 132}"; }, { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; }, { name = TwoDotsAbove; position = "{80, 464}"; }, { name = TwoDotsBelow; position = "{80, -98}"; }, { name = TwoDotsBelowAlt; position = "{41, -366}"; }, { name = VAbove; position = "{119, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "99 211 OFFCURVE", "106 227 OFFCURVE", "105 245 CURVE SMOOTH", "104 263 OFFCURVE", "109 272 OFFCURVE", "119 272 CURVE SMOOTH", "129 272 OFFCURVE", "135 266 OFFCURVE", "137 252 CURVE SMOOTH", "143 201 OFFCURVE", "138 158 OFFCURVE", "122 123 CURVE SMOOTH", "106 88 OFFCURVE", "81 67 OFFCURVE", "46 61 CURVE SMOOTH", "11 55 OFFCURVE", "-17 58 OFFCURVE", "-38 69 CURVE", "-53 77 OFFCURVE", "-58 93 OFFCURVE", "-53 116 CURVE SMOOTH", "-38 193 LINE SMOOTH", "-36 204 OFFCURVE", "-32 211 OFFCURVE", "-27 215 CURVE", "-16 222 OFFCURVE", "-6 220 OFFCURVE", "3 208 CURVE SMOOTH", "12 196 OFFCURVE", "25 189 OFFCURVE", "43 188 CURVE SMOOTH", "61 187 OFFCURVE", "75 190 OFFCURVE", "83 197 CURVE SMOOTH" ); } ); width = 246; } ); }, { glyphname = aRaa.fina.BaaRaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{312, 440}"; }, { name = DotAlt; position = "{207, -2}"; }, { name = DotBelow; position = "{305, -319}"; }, { name = HamzaAbove; position = "{313, 440}"; }, { name = RingBelow; position = "{241, -144}"; }, { name = Stroke; position = "{400, -27}"; }, { name = TaaAbove; position = "{313, 343}"; }, { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{259, 440}"; }, { name = VAbove; position = "{313, 440}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "457 175 OFFCURVE", "467 155 OFFCURVE", "471 137 CURVE SMOOTH", "475 119 OFFCURVE", "476 93 OFFCURVE", "473 57 CURVE SMOOTH", "467 -5 OFFCURVE", "440 -63 OFFCURVE", "392 -116 CURVE SMOOTH", "344 -169 OFFCURVE", "300 -196 OFFCURVE", "260 -198 CURVE SMOOTH", "192 -201 OFFCURVE", "129 -183 OFFCURVE", "71 -146 CURVE SMOOTH", "66 -143 OFFCURVE", "64 -141 OFFCURVE", "63 -137 CURVE SMOOTH", "62 -133 OFFCURVE", "63 -130 OFFCURVE", "66 -128 CURVE SMOOTH", "69 -126 OFFCURVE", "73 -126 OFFCURVE", "77 -128 CURVE SMOOTH", "122 -142 OFFCURVE", "160 -147 OFFCURVE", "192 -141 CURVE SMOOTH", "308 -120 OFFCURVE", "390 -59 OFFCURVE", "439 41 CURVE SMOOTH", "440 44 OFFCURVE", "440 49 OFFCURVE", "440 57 CURVE SMOOTH", "440 62 OFFCURVE", "432 70 OFFCURVE", "414 82 CURVE SMOOTH", "406 89 OFFCURVE", "403 99 OFFCURVE", "406 114 CURVE SMOOTH", "421 190 LINE SMOOTH", "424 206 OFFCURVE", "431 208 OFFCURVE", "440 196 CURVE SMOOTH" ); } ); width = 445; }, { anchors = ( { name = DotAbove; position = "{312, 440}"; }, { name = DotAlt; position = "{207, -2}"; }, { name = DotBelow; position = "{305, -319}"; }, { name = HamzaAbove; position = "{313, 440}"; }, { name = RingBelow; position = "{241, -144}"; }, { name = Stroke; position = "{400, -27}"; }, { name = TaaAbove; position = "{313, 343}"; }, { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{259, 440}"; }, { name = VAbove; position = "{313, 440}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "463 182 OFFCURVE", "472 161 OFFCURVE", "476 141 CURVE SMOOTH", "480 118 OFFCURVE", "481 90 OFFCURVE", "478 56 CURVE SMOOTH", "470 -19 OFFCURVE", "444 -80 OFFCURVE", "402 -126 CURVE SMOOTH", "348 -186 OFFCURVE", "302 -215 OFFCURVE", "261 -213 CURVE SMOOTH", "190 -210 OFFCURVE", "126 -189 OFFCURVE", "69 -150 CURVE SMOOTH", "60 -144 OFFCURVE", "57 -138 OFFCURVE", "58 -131 CURVE SMOOTH", "60 -122 OFFCURVE", "68 -120 OFFCURVE", "82 -125 CURVE SMOOTH", "123 -137 OFFCURVE", "159 -139 OFFCURVE", "190 -131 CURVE SMOOTH", "311 -102 OFFCURVE", "393 -41 OFFCURVE", "436 51 CURVE", "405 71 LINE SMOOTH", "392 81 OFFCURVE", "388 97 OFFCURVE", "392 117 CURVE SMOOTH", "407 193 LINE SMOOTH", "409 202 OFFCURVE", "413 209 OFFCURVE", "418 214 CURVE SMOOTH", "427 222 OFFCURVE", "437 218 OFFCURVE", "448 202 CURVE SMOOTH" ); } ); width = 445; } ); }, { glyphname = aLam.medi.LamWawFina; layers = ( { anchors = ( { name = DotAbove; position = "{107, 818}"; }, { name = Stroke; position = "{106, 599}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{49, 818}"; }, { name = TwoDotsBelow; position = "{88, -73}"; }, { name = VAbove; position = "{107, 769}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "106 720 OFFCURVE", "109 720 OFFCURVE", "112 718 CURVE SMOOTH", "115 716 OFFCURVE", "116 714 OFFCURVE", "116 711 CURVE SMOOTH", "136 535 LINE SMOOTH", "155 338 OFFCURVE", "172 218 OFFCURVE", "187 173 CURVE SMOOTH", "201 131 OFFCURVE", "223 103 OFFCURVE", "254 90 CURVE SMOOTH", "272 82 OFFCURVE", "279 74 OFFCURVE", "277 66 CURVE SMOOTH", "275 59 OFFCURVE", "272 44 OFFCURVE", "266 21 CURVE SMOOTH", "262 7 OFFCURVE", "258 0 OFFCURVE", "254 0 CURVE SMOOTH", "194 0 OFFCURVE", "154 57 OFFCURVE", "134 172 CURVE", "124 134 OFFCURVE", "110 103 OFFCURVE", "92 80 CURVE SMOOTH", "74 57 OFFCURVE", "48 41 OFFCURVE", "13 30 CURVE SMOOTH", "2 27 OFFCURVE", "-6 35 OFFCURVE", "-11 54 CURVE SMOOTH", "-18 79 OFFCURVE", "-15 99 OFFCURVE", "-3 113 CURVE SMOOTH", "1 118 OFFCURVE", "5 121 OFFCURVE", "11 122 CURVE SMOOTH", "71 138 OFFCURVE", "103 161 OFFCURVE", "107 192 CURVE SMOOTH", "109 213 OFFCURVE", "97 365 OFFCURVE", "71 650 CURVE SMOOTH", "70 656 OFFCURVE", "72 662 OFFCURVE", "74 666 CURVE SMOOTH", "104 717 LINE SMOOTH" ); } ); width = 253; }, { anchors = ( { name = DotAbove; position = "{107, 818}"; }, { name = Stroke; position = "{106, 599}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{49, 818}"; }, { name = TwoDotsBelow; position = "{88, -73}"; }, { name = VAbove; position = "{107, 769}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "114 747 OFFCURVE", "122 741 OFFCURVE", "125 712 CURVE SMOOTH", "145 537 LINE", "164 341 OFFCURVE", "181 223 OFFCURVE", "197 182 CURVE SMOOTH", "213 141 OFFCURVE", "233 116 OFFCURVE", "258 104 CURVE SMOOTH", "283 92 OFFCURVE", "295 78 OFFCURVE", "292 62 CURVE SMOOTH", "283 19 OFFCURVE", "275 -5 OFFCURVE", "269 -9 CURVE SMOOTH", "263 -13 OFFCURVE", "258 -15 OFFCURVE", "253 -15 CURVE SMOOTH", "187 -12 OFFCURVE", "146 42 OFFCURVE", "133 147 CURVE", "111 72 OFFCURVE", "72 28 OFFCURVE", "17 16 CURVE SMOOTH", "-4 11 OFFCURVE", "-18 23 OFFCURVE", "-26 52 CURVE SMOOTH", "-34 81 OFFCURVE", "-30 104 OFFCURVE", "-15 122 CURVE SMOOTH", "-9 129 OFFCURVE", "-1 134 OFFCURVE", "8 136 CURVE SMOOTH", "67 150 OFFCURVE", "97 169 OFFCURVE", "101 194 CURVE", "75 496 OFFCURVE", "61 650 OFFCURVE", "61 655 CURVE SMOOTH", "61 660 OFFCURVE", "63 666 OFFCURVE", "67 673 CURVE SMOOTH", "102 727 LINE SMOOTH" ); } ); width = 253; } ); }, { glyphname = aWaw.fina.LamWawFina; layers = ( { anchors = ( { name = DigitAbove; position = "{344, 400}"; }, { name = DotAbove; position = "{344, 400}"; }, { name = HamzaAbove; position = "{344, 400}"; }, { name = RingBelow; position = "{267, -40}"; }, { name = Stroke; position = "{425, -52}"; }, { name = TashkilAbove; position = "{295, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; }, { name = TwoDotsAbove; position = "{290, 400}"; }, { name = VAbove; position = "{386, 372}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "479 154 OFFCURVE", "489 93 OFFCURVE", "480 30 CURVE SMOOTH", "476 4 OFFCURVE", "469 -23 OFFCURVE", "461 -50 CURVE SMOOTH", "446 -99 OFFCURVE", "418 -144 OFFCURVE", "378 -185 CURVE SMOOTH", "338 -226 OFFCURVE", "302 -246 OFFCURVE", "271 -247 CURVE SMOOTH", "208 -249 OFFCURVE", "142 -235 OFFCURVE", "74 -208 CURVE SMOOTH", "69 -206 OFFCURVE", "65 -203 OFFCURVE", "63 -200 CURVE SMOOTH", "61 -197 OFFCURVE", "62 -194 OFFCURVE", "65 -192 CURVE SMOOTH", "68 -190 OFFCURVE", "71 -189 OFFCURVE", "76 -190 CURVE SMOOTH", "104 -196 OFFCURVE", "125 -199 OFFCURVE", "138 -198 CURVE SMOOTH", "258 -195 OFFCURVE", "358 -138 OFFCURVE", "436 -27 CURVE SMOOTH", "441 -20 OFFCURVE", "440 -4 OFFCURVE", "435 21 CURVE", "385 12 OFFCURVE", "346 13 OFFCURVE", "317 25 CURVE SMOOTH", "288 37 OFFCURVE", "282 76 OFFCURVE", "300 142 CURVE SMOOTH", "318 208 OFFCURVE", "350 245 OFFCURVE", "396 252 CURVE SMOOTH", "415 255 OFFCURVE", "432 242 OFFCURVE", "448 212 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "394 133 OFFCURVE", "380 145 OFFCURVE", "364 146 CURVE SMOOTH", "348 147 OFFCURVE", "338 139 OFFCURVE", "333 123 CURVE", "339 110 OFFCURVE", "363 105 OFFCURVE", "406 110 CURVE" ); } ); width = 466; }, { anchors = ( { name = DigitAbove; position = "{344, 400}"; }, { name = DotAbove; position = "{344, 400}"; }, { name = HamzaAbove; position = "{344, 400}"; }, { name = RingBelow; position = "{267, -40}"; }, { name = Stroke; position = "{425, -52}"; }, { name = TashkilAbove; position = "{295, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; }, { name = TwoDotsAbove; position = "{290, 400}"; }, { name = VAbove; position = "{386, 372}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "394 133 OFFCURVE", "380 145 OFFCURVE", "364 146 CURVE SMOOTH", "348 147 OFFCURVE", "338 139 OFFCURVE", "333 123 CURVE", "339 110 OFFCURVE", "363 105 OFFCURVE", "406 110 CURVE" ); }, { closed = 1; nodes = ( "496 143 OFFCURVE", "499 52 OFFCURVE", "466 -55 CURVE", "450 -106 OFFCURVE", "422 -153 OFFCURVE", "383 -195 CURVE SMOOTH", "344 -237 OFFCURVE", "307 -260 OFFCURVE", "272 -262 CURVE SMOOTH", "200 -266 OFFCURVE", "132 -249 OFFCURVE", "68 -212 CURVE SMOOTH", "61 -208 OFFCURVE", "59 -202 OFFCURVE", "61 -194 CURVE SMOOTH", "63 -186 OFFCURVE", "68 -184 OFFCURVE", "76 -187 CURVE SMOOTH", "92 -193 OFFCURVE", "114 -194 OFFCURVE", "142 -192 CURVE SMOOTH", "252 -185 OFFCURVE", "349 -127 OFFCURVE", "434 -19 CURVE", "434 -15 OFFCURVE", "433 -7 OFFCURVE", "431 4 CURVE", "378 -3 OFFCURVE", "337 0 OFFCURVE", "311 12 CURVE SMOOTH", "279 27 OFFCURVE", "274 73 OFFCURVE", "295 150 CURVE SMOOTH", "316 227 OFFCURVE", "350 266 OFFCURVE", "394 267 CURVE SMOOTH", "423 267 OFFCURVE", "444 251 OFFCURVE", "460 219 CURVE SMOOTH" ); } ); width = 466; } ); }, { glyphname = aLam.init.LamHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{151, 815}"; }, { name = Stroke; position = "{158, 527}"; }, { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; }, { name = TwoDotsAbove; position = "{93, 815}"; }, { name = TwoDotsBelow; position = "{151, 0}"; }, { name = VAbove; position = "{151, 767}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "155 396 OFFCURVE", "145 487 OFFCURVE", "129 596 CURVE", "117 637 LINE", "116 645 OFFCURVE", "118 652 OFFCURVE", "121 657 CURVE SMOOTH", "124 662 OFFCURVE", "133 675 OFFCURVE", "146 698 CURVE SMOOTH", "148 702 OFFCURVE", "152 704 OFFCURVE", "155 704 CURVE SMOOTH", "158 704 OFFCURVE", "161 701 OFFCURVE", "162 696 CURVE SMOOTH", "169 670 OFFCURVE", "183 645 OFFCURVE", "206 621 CURVE SMOOTH", "212 615 OFFCURVE", "213 608 OFFCURVE", "207 601 CURVE SMOOTH", "186 572 LINE SMOOTH", "183 568 OFFCURVE", "182 561 OFFCURVE", "183 551 CURVE SMOOTH", "202 409 OFFCURVE", "204 317 OFFCURVE", "187 275 CURVE SMOOTH", "168 227 OFFCURVE", "104 199 OFFCURVE", "-5 192 CURVE SMOOTH", "-51 189 OFFCURVE", "-59 205 OFFCURVE", "-31 240 CURVE SMOOTH", "-24 248 OFFCURVE", "-19 255 OFFCURVE", "-13 262 CURVE SMOOTH", "-7 269 OFFCURVE", "2 273 OFFCURVE", "13 273 CURVE SMOOTH", "64 274 OFFCURVE", "103 278 OFFCURVE", "131 285 CURVE SMOOTH", "152 290 OFFCURVE", "161 302 OFFCURVE", "160 322 CURVE SMOOTH" ); } ); width = 559; }, { anchors = ( { name = DotAbove; position = "{151, 815}"; }, { name = Stroke; position = "{158, 527}"; }, { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; }, { name = TwoDotsAbove; position = "{93, 815}"; }, { name = TwoDotsBelow; position = "{151, 0}"; }, { name = VAbove; position = "{151, 767}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "145 394 OFFCURVE", "136 485 OFFCURVE", "120 593 CURVE", "107 634 LINE", "105 645 OFFCURVE", "107 655 OFFCURVE", "112 663 CURVE SMOOTH", "147 718 LINE", "159 733 OFFCURVE", "169 726 OFFCURVE", "176 699 CURVE", "182 677 OFFCURVE", "196 654 OFFCURVE", "217 631 CURVE SMOOTH", "227 619 OFFCURVE", "227 607 OFFCURVE", "218 594 CURVE SMOOTH", "197 566 LINE", "192 560 OFFCURVE", "189 554 OFFCURVE", "190 549 CURVE SMOOTH", "209 406 OFFCURVE", "210 313 OFFCURVE", "193 270 CURVE SMOOTH", "171 215 OFFCURVE", "105 184 OFFCURVE", "-4 178 CURVE SMOOTH", "-26 177 OFFCURVE", "-41 178 OFFCURVE", "-47 183 CURVE SMOOTH", "-53 188 OFFCURVE", "-57 193 OFFCURVE", "-59 196 CURVE SMOOTH", "-66 211 OFFCURVE", "-54 237 OFFCURVE", "-21 274 CURVE SMOOTH", "-14 282 OFFCURVE", "-3 287 OFFCURVE", "13 288 CURVE SMOOTH", "60 289 OFFCURVE", "98 293 OFFCURVE", "128 299 CURVE SMOOTH", "144 302 OFFCURVE", "151 310 OFFCURVE", "150 321 CURVE SMOOTH" ); } ); width = 559; } ); }, { glyphname = aFaa.medi.FaaYaaFina; layers = ( { anchors = ( { name = DotAbove; position = "{285, 586}"; }, { name = DotBelow; position = "{277, -303}"; }, { name = HamzaAbove; position = "{243, 586}"; }, { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; }, { name = TwoDotsAbove; position = "{194, 586}"; }, { name = TwoDotsBelow; position = "{229, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "187 266 OFFCURVE", "223 314 OFFCURVE", "278 355 CURVE SMOOTH", "299 371 OFFCURVE", "317 379 OFFCURVE", "331 379 CURVE SMOOTH", "335 379 OFFCURVE", "337 378 OFFCURVE", "340 377 CURVE SMOOTH", "356 367 OFFCURVE", "366 349 OFFCURVE", "371 322 CURVE SMOOTH", "380 271 OFFCURVE", "374 223 OFFCURVE", "354 179 CURVE SMOOTH", "344 158 OFFCURVE", "332 136 OFFCURVE", "318 115 CURVE", "345 98 OFFCURVE", "381 89 OFFCURVE", "426 90 CURVE SMOOTH", "432 90 OFFCURVE", "437 82 OFFCURVE", "438 65 CURVE SMOOTH", "442 22 OFFCURVE", "437 0 OFFCURVE", "426 0 CURVE SMOOTH", "361 0 OFFCURVE", "293 19 OFFCURVE", "222 57 CURVE", "114 8 OFFCURVE", "33 -44 OFFCURVE", "-20 -100 CURVE", "-49 -100 LINE", "-24 -37 LINE", "23 12 OFFCURVE", "88 59 OFFCURVE", "172 101 CURVE", "151 132 OFFCURVE", "150 168 OFFCURVE", "166 211 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "254 276 OFFCURVE", "225 259 OFFCURVE", "199 222 CURVE", "192 213 OFFCURVE", "194 198 OFFCURVE", "209 178 CURVE SMOOTH", "224 158 OFFCURVE", "241 148 OFFCURVE", "261 148 CURVE SMOOTH", "281 148 OFFCURVE", "303 162 OFFCURVE", "327 187 CURVE", "329 238 OFFCURVE", "315 266 OFFCURVE", "286 273 CURVE" ); } ); width = 426; }, { anchors = ( { name = DotAbove; position = "{285, 586}"; }, { name = DotBelow; position = "{277, -303}"; }, { name = HamzaAbove; position = "{243, 586}"; }, { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; }, { name = TwoDotsAbove; position = "{194, 586}"; }, { name = TwoDotsBelow; position = "{229, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "173 274 OFFCURVE", "212 324 OFFCURVE", "269 367 CURVE SMOOTH", "292 385 OFFCURVE", "313 394 OFFCURVE", "330 394 CURVE", "337 394 OFFCURVE", "343 392 OFFCURVE", "347 390 CURVE", "367 378 OFFCURVE", "379 356 OFFCURVE", "385 325 CURVE SMOOTH", "394 271 OFFCURVE", "387 220 OFFCURVE", "366 173 CURVE SMOOTH", "358 156 OFFCURVE", "349 140 OFFCURVE", "339 123 CURVE", "365 111 OFFCURVE", "395 105 OFFCURVE", "426 105 CURVE", "441 105 OFFCURVE", "449 89 OFFCURVE", "452 59 CURVE SMOOTH", "455 29 OFFCURVE", "453 9 OFFCURVE", "446 -2 CURVE", "441 -10 OFFCURVE", "435 -15 OFFCURVE", "427 -15 CURVE SMOOTH", "363 -15 OFFCURVE", "294 4 OFFCURVE", "219 41 CURVE", "116 -6 OFFCURVE", "40 -56 OFFCURVE", "-10 -109 CURVE", "-13 -112 OFFCURVE", "-16 -113 OFFCURVE", "-20 -113 CURVE SMOOTH", "-44 -113 LINE SMOOTH", "-56 -113 OFFCURVE", "-61 -107 OFFCURVE", "-57 -95 CURVE SMOOTH", "-39 -39 LINE SMOOTH", "-37 -33 OFFCURVE", "-34 -27 OFFCURVE", "-29 -22 CURVE SMOOTH", "12 22 OFFCURVE", "70 63 OFFCURVE", "146 103 CURVE", "131 130 OFFCURVE", "133 167 OFFCURVE", "151 216 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "247 260 OFFCURVE", "218 244 OFFCURVE", "195 213 CURVE", "222 157 OFFCURVE", "264 151 OFFCURVE", "321 193 CURVE", "321 236 OFFCURVE", "308 258 OFFCURVE", "282 259 CURVE SMOOTH" ); } ); width = 426; } ); }, { glyphname = aYaa.fina.FaaYaaFina; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = DigitAbove; position = "{229, 186}"; }, { name = DigitBelow; position = "{355, -532}"; }, { name = DotAbove; position = "{229, 186}"; }, { name = DotBelow; position = "{355, -532}"; }, { name = HamzaAbove; position = "{132, 186}"; }, { name = HamzaBelow; position = "{355, -532}"; }, { name = RingBelow; position = "{293, -439}"; }, { name = Tail; position = "{146, 39}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; }, { name = TwoDotsAbove; position = "{176, 186}"; }, { name = TwoDotsBelow; position = "{301, -532}"; }, { name = VAbove; position = "{278, 186}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; transform = "{1, 0, 0, 1, 0, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = DigitAbove; position = "{229, 186}"; }, { name = DigitBelow; position = "{355, -532}"; }, { name = DotAbove; position = "{229, 186}"; }, { name = DotBelow; position = "{355, -532}"; }, { name = HamzaAbove; position = "{132, 186}"; }, { name = HamzaBelow; position = "{355, -532}"; }, { name = RingBelow; position = "{293, -439}"; }, { name = Tail; position = "{146, 39}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; }, { name = TwoDotsAbove; position = "{176, 186}"; }, { name = TwoDotsBelow; position = "{301, -532}"; }, { name = VAbove; position = "{278, 186}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; transform = "{1, 0, 0, 1, 0, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = aLam.init.LamLamHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{4, 838}"; }, { name = Stroke; position = "{27, 569}"; }, { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-54, 838}"; }, { name = TwoDotsBelow; position = "{49, 0}"; }, { name = VAbove; position = "{4, 789}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-28 275 OFFCURVE", "-28 290 OFFCURVE", "-15 323 CURVE SMOOTH", "-2 356 OFFCURVE", "7 373 OFFCURVE", "15 376 CURVE SMOOTH", "23 379 OFFCURVE", "27 385 OFFCURVE", "26 395 CURVE SMOOTH", "25 405 OFFCURVE", "18 448 OFFCURVE", "6 524 CURVE SMOOTH", "-6 600 OFFCURVE", "-14 644 OFFCURVE", "-17 657 CURVE SMOOTH", "-20 670 OFFCURVE", "-21 680 OFFCURVE", "-18 687 CURVE SMOOTH", "-2 730 LINE SMOOTH", "0 735 OFFCURVE", "3 738 OFFCURVE", "7 737 CURVE SMOOTH", "11 736 OFFCURVE", "14 733 OFFCURVE", "16 729 CURVE SMOOTH", "30 696 OFFCURVE", "46 672 OFFCURVE", "63 655 CURVE SMOOTH", "69 649 OFFCURVE", "70 641 OFFCURVE", "63 632 CURVE SMOOTH", "49 612 OFFCURVE", "42 602 OFFCURVE", "41 601 CURVE", "59 499 OFFCURVE", "66 438 OFFCURVE", "64 418 CURVE SMOOTH", "55 327 OFFCURVE", "29 279 OFFCURVE", "-16 276 CURVE SMOOTH" ); } ); width = 202; }, { anchors = ( { name = DotAbove; position = "{4, 838}"; }, { name = Stroke; position = "{27, 569}"; }, { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-54, 838}"; }, { name = TwoDotsBelow; position = "{49, 0}"; }, { name = VAbove; position = "{4, 789}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-41 261 OFFCURVE", "-47 279 OFFCURVE", "-34 315 CURVE SMOOTH", "-21 351 OFFCURVE", "-11 372 OFFCURVE", "-4 378 CURVE SMOOTH", "3 384 OFFCURVE", "10 388 OFFCURVE", "16 391 CURVE", "17 395 OFFCURVE", "10 437 OFFCURVE", "-3 516 CURVE SMOOTH", "-16 595 OFFCURVE", "-24 642 OFFCURVE", "-27 656 CURVE SMOOTH", "-30 670 OFFCURVE", "-31 683 OFFCURVE", "-27 692 CURVE SMOOTH", "-11 736 LINE SMOOTH", "0 767 OFFCURVE", "12 770 OFFCURVE", "23 744 CURVE SMOOTH", "38 710 OFFCURVE", "53 685 OFFCURVE", "68 670 CURVE SMOOTH", "83 655 OFFCURVE", "87 640 OFFCURVE", "77 626 CURVE SMOOTH", "67 612 OFFCURVE", "61 603 OFFCURVE", "57 597 CURVE", "72 503 OFFCURVE", "77 443 OFFCURVE", "74 417 CURVE SMOOTH", "63 316 OFFCURVE", "34 263 OFFCURVE", "-15 261 CURVE SMOOTH" ); } ); width = 202; } ); }, { glyphname = aLam.medi.LamLamHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{204, 845}"; }, { name = Stroke; position = "{218, 599}"; }, { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{146, 845}"; }, { name = TwoDotsBelow; position = "{220, 0}"; }, { name = VAbove; position = "{204, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "382 378 OFFCURVE", "385 371 OFFCURVE", "383 356 CURVE SMOOTH", "379 327 OFFCURVE", "370 304 OFFCURVE", "357 285 CURVE SMOOTH", "353 279 OFFCURVE", "350 276 OFFCURVE", "347 276 CURVE SMOOTH", "287 267 OFFCURVE", "248 327 OFFCURVE", "227 456 CURVE", "224 374 OFFCURVE", "184 307 OFFCURVE", "106 257 CURVE SMOOTH", "48 220 OFFCURVE", "-4 200 OFFCURVE", "-52 197 CURVE SMOOTH", "-58 197 OFFCURVE", "-60 200 OFFCURVE", "-57 205 CURVE SMOOTH", "-20 282 LINE SMOOTH", "-18 285 OFFCURVE", "-16 287 OFFCURVE", "-12 287 CURVE SMOOTH", "92 294 OFFCURVE", "160 333 OFFCURVE", "192 403 CURVE", "200 420 OFFCURVE", "201 460 OFFCURVE", "196 524 CURVE SMOOTH", "194 547 OFFCURVE", "192 571 OFFCURVE", "190 595 CURVE SMOOTH", "188 619 OFFCURVE", "185 650 OFFCURVE", "182 688 CURVE SMOOTH", "182 692 OFFCURVE", "183 695 OFFCURVE", "186 699 CURVE SMOOTH", "216 735 LINE SMOOTH", "224 745 OFFCURVE", "228 745 OFFCURVE", "229 735 CURVE SMOOTH", "243 573 OFFCURVE", "260 473 OFFCURVE", "279 436 CURVE SMOOTH", "305 386 OFFCURVE", "337 366 OFFCURVE", "374 376 CURVE SMOOTH" ); } ); width = 360; }, { anchors = ( { name = DotAbove; position = "{204, 845}"; }, { name = Stroke; position = "{218, 599}"; }, { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{146, 845}"; }, { name = TwoDotsBelow; position = "{220, 0}"; }, { name = VAbove; position = "{204, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "314 401 OFFCURVE", "341 384 OFFCURVE", "372 391 CURVE SMOOTH", "394 396 OFFCURVE", "402 383 OFFCURVE", "397 353 CURVE SMOOTH", "392 323 OFFCURVE", "385 300 OFFCURVE", "375 286 CURVE SMOOTH", "365 272 OFFCURVE", "358 264 OFFCURVE", "355 263 CURVE SMOOTH", "288 254 OFFCURVE", "246 305 OFFCURVE", "228 419 CURVE", "218 353 OFFCURVE", "182 297 OFFCURVE", "120 251 CURVE SMOOTH", "75 218 OFFCURVE", "18 196 OFFCURVE", "-51 183 CURVE SMOOTH", "-76 177 OFFCURVE", "-82 187 OFFCURVE", "-70 211 CURVE SMOOTH", "-33 288 LINE SMOOTH", "-29 296 OFFCURVE", "-22 301 OFFCURVE", "-13 302 CURVE SMOOTH", "90 309 OFFCURVE", "156 346 OFFCURVE", "184 410 CURVE SMOOTH", "191 426 OFFCURVE", "192 454 OFFCURVE", "189 496 CURVE SMOOTH", "186 538 OFFCURVE", "181 574 OFFCURVE", "178 607 CURVE SMOOTH", "175 640 OFFCURVE", "173 664 OFFCURVE", "172 678 CURVE SMOOTH", "171 692 OFFCURVE", "174 702 OFFCURVE", "179 708 CURVE SMOOTH", "218 751 LINE SMOOTH", "233 768 OFFCURVE", "241 762 OFFCURVE", "244 736 CURVE SMOOTH", "258 574 OFFCURVE", "274 477 OFFCURVE", "292 443 CURVE SMOOTH" ); } ); width = 360; } ); }, { glyphname = aHaa.medi.LamLamHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{284, -93}"; }, { name = DotAbove; position = "{83, 537}"; }, { name = DotBelow; position = "{284, -93}"; }, { name = HamzaAbove; position = "{49, 439}"; }, { name = HamzaBelow; position = "{284, -93}"; }, { name = TaaAbove; position = "{83, 537}"; }, { name = TaaBelow; position = "{284, 103}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{0, 537}"; }, { name = TwoDotsBelow; position = "{229, -93}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = DigitBelow; position = "{284, -93}"; }, { name = DotAbove; position = "{83, 537}"; }, { name = DotBelow; position = "{284, -93}"; }, { name = HamzaAbove; position = "{49, 439}"; }, { name = HamzaBelow; position = "{284, -93}"; }, { name = TaaAbove; position = "{83, 537}"; }, { name = TaaBelow; position = "{284, 103}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{0, 537}"; }, { name = TwoDotsBelow; position = "{229, -93}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = aBaa.medi.BaaMemFina; layers = ( { anchors = ( { name = DigitAbove; position = "{179, 391}"; }, { name = DigitBelow; position = "{218, -283}"; }, { name = DotAbove; position = "{179, 391}"; }, { name = DotBelow; position = "{218, -283}"; }, { name = HamzaAbove; position = "{179, 391}"; }, { name = HamzaBelow; position = "{218, -283}"; }, { name = RingBelow; position = "{269, 59}"; }, { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; }, { name = TwoDotsAbove; position = "{125, 391}"; }, { name = TwoDotsBelow; position = "{151, -283}"; }, { name = VAbove; position = "{179, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "238 188 OFFCURVE", "265 167 OFFCURVE", "296 125 CURVE SMOOTH", "312 104 OFFCURVE", "326 92 OFFCURVE", "338 90 CURVE SMOOTH", "376 83 OFFCURVE", "383 58 OFFCURVE", "359 12 CURVE SMOOTH", "355 4 OFFCURVE", "348 0 OFFCURVE", "338 0 CURVE SMOOTH", "305 0 OFFCURVE", "275 21 OFFCURVE", "249 64 CURVE SMOOTH", "228 99 OFFCURVE", "194 114 OFFCURVE", "150 107 CURVE SMOOTH", "106 100 OFFCURVE", "65 83 OFFCURVE", "30 55 CURVE SMOOTH", "13 42 OFFCURVE", "0 41 OFFCURVE", "-10 51 CURVE SMOOTH", "-20 61 OFFCURVE", "-24 69 OFFCURVE", "-19 76 CURVE SMOOTH", "-14 83 OFFCURVE", "1 94 OFFCURVE", "26 110 CURVE SMOOTH", "107 162 OFFCURVE", "170 188 OFFCURVE", "215 188 CURVE SMOOTH" ); } ); width = 337; }, { anchors = ( { name = DigitAbove; position = "{179, 391}"; }, { name = DigitBelow; position = "{218, -283}"; }, { name = DotAbove; position = "{179, 391}"; }, { name = DotBelow; position = "{218, -283}"; }, { name = HamzaAbove; position = "{179, 391}"; }, { name = HamzaBelow; position = "{218, -283}"; }, { name = RingBelow; position = "{269, 59}"; }, { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; }, { name = TwoDotsAbove; position = "{125, 391}"; }, { name = TwoDotsBelow; position = "{151, -283}"; }, { name = VAbove; position = "{179, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "243 203 OFFCURVE", "274 179 OFFCURVE", "308 133 CURVE SMOOTH", "321 116 OFFCURVE", "331 107 OFFCURVE", "340 105 CURVE SMOOTH", "371 99 OFFCURVE", "387 84 OFFCURVE", "387 60 CURVE SMOOTH", "387 42 OFFCURVE", "383 26 OFFCURVE", "374 10 CURVE SMOOTH", "365 -6 OFFCURVE", "353 -15 OFFCURVE", "338 -15 CURVE", "299 -15 OFFCURVE", "265 10 OFFCURVE", "236 57 CURVE SMOOTH", "218 86 OFFCURVE", "186 98 OFFCURVE", "140 92 CURVE SMOOTH", "94 86 OFFCURVE", "54 70 OFFCURVE", "20 44 CURVE SMOOTH", "3 31 OFFCURVE", "-11 30 OFFCURVE", "-21 41 CURVE", "-37 58 OFFCURVE", "-40 70 OFFCURVE", "-32 81 CURVE SMOOTH", "-24 92 OFFCURVE", "-8 106 OFFCURVE", "18 123 CURVE SMOOTH", "102 177 OFFCURVE", "168 204 OFFCURVE", "215 203 CURVE SMOOTH" ); } ); width = 337; } ); }, { glyphname = aMem.fina.BaaMemFina; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{269, -586}"; } ); components = ( { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 56, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 223; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{269, -586}"; } ); components = ( { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 56, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 223; } ); }, { glyphname = aSad.init.AboveHaa; layers = ( { anchors = ( { name = DotAbove; position = "{453, 688}"; }, { name = DotBelow; position = "{586, 52}"; }, { name = HamzaAbove; position = "{453, 688}"; }, { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = TwoDotsAbove; position = "{399, 688}"; }, { name = TwoDotsBelow; position = "{537, 52}"; }, { name = exit; position = "{0, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "685 588 OFFCURVE", "710 576 OFFCURVE", "740 552 CURVE SMOOTH", "770 528 OFFCURVE", "785 508 OFFCURVE", "786 490 CURVE SMOOTH", "787 472 OFFCURVE", "771 441 OFFCURVE", "740 399 CURVE SMOOTH", "709 357 OFFCURVE", "685 333 OFFCURVE", "667 326 CURVE SMOOTH", "562 286 OFFCURVE", "449 275 OFFCURVE", "327 296 CURVE", "319 284 OFFCURVE", "311 274 OFFCURVE", "305 264 CURVE SMOOTH", "299 254 OFFCURVE", "294 251 OFFCURVE", "289 254 CURVE SMOOTH", "281 259 OFFCURVE", "283 274 OFFCURVE", "299 301 CURVE", "259 318 OFFCURVE", "230 341 OFFCURVE", "214 369 CURVE", "166 303 OFFCURVE", "97 240 OFFCURVE", "5 180 CURVE SMOOTH", "-38 152 OFFCURVE", "-46 170 OFFCURVE", "-21 234 CURVE SMOOTH", "-20 237 OFFCURVE", "-18 238 OFFCURVE", "-15 240 CURVE SMOOTH", "55 275 OFFCURVE", "109 311 OFFCURVE", "148 345 CURVE SMOOTH", "187 379 OFFCURVE", "214 416 OFFCURVE", "232 456 CURVE SMOOTH", "234 462 OFFCURVE", "239 465 OFFCURVE", "246 465 CURVE SMOOTH", "253 465 OFFCURVE", "258 461 OFFCURVE", "263 453 CURVE SMOOTH", "283 417 OFFCURVE", "315 394 OFFCURVE", "361 383 CURVE", "409 436 OFFCURVE", "463 484 OFFCURVE", "524 526 CURVE SMOOTH", "585 568 OFFCURVE", "632 588 OFFCURVE", "667 588 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "523 479 OFFCURVE", "460 440 OFFCURVE", "396 377 CURVE", "538 369 OFFCURVE", "640 386 OFFCURVE", "703 428 CURVE", "690 446 OFFCURVE", "672 462 OFFCURVE", "650 476 CURVE SMOOTH", "627 491 OFFCURVE", "605 496 OFFCURVE", "582 491 CURVE SMOOTH" ); } ); width = 849; }, { anchors = ( { name = DotAbove; position = "{453, 688}"; }, { name = DotBelow; position = "{586, 52}"; }, { name = HamzaAbove; position = "{453, 688}"; }, { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = TwoDotsAbove; position = "{399, 688}"; }, { name = TwoDotsBelow; position = "{537, 52}"; }, { name = exit; position = "{0, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "688 603 OFFCURVE", "714 589 OFFCURVE", "744 563 CURVE SMOOTH", "774 537 OFFCURVE", "789 513 OFFCURVE", "790 491 CURVE SMOOTH", "791 469 OFFCURVE", "775 436 OFFCURVE", "742 391 CURVE SMOOTH", "709 346 OFFCURVE", "683 319 OFFCURVE", "663 312 CURVE SMOOTH", "558 272 OFFCURVE", "445 261 OFFCURVE", "324 280 CURVE", "316 267 OFFCURVE", "310 260 OFFCURVE", "308 257 CURVE SMOOTH", "299 247 OFFCURVE", "291 244 OFFCURVE", "284 249 CURVE SMOOTH", "277 254 OFFCURVE", "280 269 OFFCURVE", "291 292 CURVE", "257 306 OFFCURVE", "230 326 OFFCURVE", "209 354 CURVE", "163 286 OFFCURVE", "98 224 OFFCURVE", "13 167 CURVE SMOOTH", "-7 154 OFFCURVE", "-23 150 OFFCURVE", "-34 154 CURVE SMOOTH", "-55 162 OFFCURVE", "-55 189 OFFCURVE", "-36 236 CURVE SMOOTH", "-32 245 OFFCURVE", "-27 250 OFFCURVE", "-21 253 CURVE SMOOTH", "40 277 OFFCURVE", "92 308 OFFCURVE", "134 344 CURVE SMOOTH", "176 380 OFFCURVE", "207 420 OFFCURVE", "226 462 CURVE SMOOTH", "231 473 OFFCURVE", "238 479 OFFCURVE", "246 479 CURVE SMOOTH", "254 479 OFFCURVE", "262 473 OFFCURVE", "269 460 CURVE SMOOTH", "285 431 OFFCURVE", "319 410 OFFCURVE", "371 397 CURVE", "419 448 OFFCURVE", "471 496 OFFCURVE", "527 539 CURVE SMOOTH", "583 582 OFFCURVE", "630 603 OFFCURVE", "667 603 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "657 467 OFFCURVE", "621 483 OFFCURVE", "584 477 CURVE SMOOTH", "522 468 OFFCURVE", "467 439 OFFCURVE", "417 390 CURVE", "543 387 OFFCURVE", "635 401 OFFCURVE", "691 432 CURVE" ); } ); width = 849; } ); }, { glyphname = aLam.init.LamBaaMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{73, 798}"; }, { name = Stroke; position = "{101, 525}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; }, { name = TwoDotsAbove; position = "{15, 798}"; }, { name = TwoDotsBelow; position = "{98, 171}"; }, { name = VAbove; position = "{73, 750}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "75 729 OFFCURVE", "78 725 OFFCURVE", "81 718 CURVE SMOOTH", "90 695 OFFCURVE", "106 673 OFFCURVE", "129 651 CURVE SMOOTH", "136 644 OFFCURVE", "137 635 OFFCURVE", "131 627 CURVE SMOOTH", "117 607 OFFCURVE", "110 596 OFFCURVE", "111 593 CURVE SMOOTH", "130 500 OFFCURVE", "138 432 OFFCURVE", "135 389 CURVE SMOOTH", "133 346 OFFCURVE", "119 306 OFFCURVE", "94 271 CURVE SMOOTH", "74 243 OFFCURVE", "41 233 OFFCURVE", "-8 241 CURVE SMOOTH", "-18 243 OFFCURVE", "-24 251 OFFCURVE", "-26 267 CURVE SMOOTH", "-28 283 OFFCURVE", "-27 297 OFFCURVE", "-21 308 CURVE SMOOTH", "-16 319 OFFCURVE", "-5 324 OFFCURVE", "10 324 CURVE SMOOTH", "59 323 OFFCURVE", "89 339 OFFCURVE", "99 372 CURVE", "96 393 OFFCURVE", "94 410 OFFCURVE", "92 422 CURVE SMOOTH", "62 599 LINE SMOOTH", "59 613 OFFCURVE", "55 625 OFFCURVE", "51 635 CURVE SMOOTH", "43 655 LINE SMOOTH", "40 664 OFFCURVE", "40 672 OFFCURVE", "42 677 CURVE SMOOTH", "51 700 OFFCURVE", "59 715 OFFCURVE", "65 723 CURVE SMOOTH", "68 727 OFFCURVE", "71 729 OFFCURVE", "73 729 CURVE SMOOTH" ); } ); width = 190; }, { anchors = ( { name = DotAbove; position = "{73, 798}"; }, { name = Stroke; position = "{101, 525}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; }, { name = TwoDotsAbove; position = "{15, 798}"; }, { name = TwoDotsBelow; position = "{98, 171}"; }, { name = VAbove; position = "{73, 750}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "58 730 LINE SMOOTH", "72 756 OFFCURVE", "85 753 OFFCURVE", "96 720 CURVE SMOOTH", "101 705 OFFCURVE", "116 686 OFFCURVE", "140 662 CURVE SMOOTH", "154 648 OFFCURVE", "154 632 OFFCURVE", "140 615 CURVE SMOOTH", "126 598 OFFCURVE", "120 589 OFFCURVE", "121 586 CURVE SMOOTH", "138 495 OFFCURVE", "146 428 OFFCURVE", "143 385 CURVE SMOOTH", "140 342 OFFCURVE", "127 302 OFFCURVE", "102 266 CURVE SMOOTH", "77 230 OFFCURVE", "40 217 OFFCURVE", "-10 226 CURVE SMOOTH", "-27 229 OFFCURVE", "-37 241 OFFCURVE", "-40 262 CURVE SMOOTH", "-45 293 OFFCURVE", "-38 315 OFFCURVE", "-23 328 CURVE SMOOTH", "-14 335 OFFCURVE", "-3 339 OFFCURVE", "10 339 CURVE SMOOTH", "57 339 OFFCURVE", "84 351 OFFCURVE", "93 374 CURVE", "91 386 OFFCURVE", "79 460 OFFCURVE", "55 596 CURVE SMOOTH", "53 606 OFFCURVE", "46 624 OFFCURVE", "34 650 CURVE SMOOTH", "28 662 OFFCURVE", "28 674 OFFCURVE", "33 683 CURVE SMOOTH" ); } ); width = 190; } ); }, { glyphname = aBaa.medi.LamBaaMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{8, 601}"; }, { name = DigitBelow; position = "{130, -171}"; }, { name = DotAbove; position = "{8, 601}"; }, { name = DotBelow; position = "{130, -171}"; }, { name = HamzaAbove; position = "{8, 601}"; }, { name = HamzaBelow; position = "{130, -98}"; }, { name = RingBelow; position = "{51, 357}"; }, { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; }, { name = TwoDotsAbove; position = "{-46, 601}"; }, { name = TwoDotsBelow; position = "{77, -146}"; }, { name = VAbove; position = "{8, 601}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-48 256 OFFCURVE", "-53 250 OFFCURVE", "-59 250 CURVE SMOOTH", "-72 251 OFFCURVE", "-76 260 OFFCURVE", "-70 278 CURVE SMOOTH", "-60 309 OFFCURVE", "-40 337 OFFCURVE", "-11 361 CURVE SMOOTH", "17 385 OFFCURVE", "45 398 OFFCURVE", "75 399 CURVE SMOOTH", "88 399 OFFCURVE", "98 394 OFFCURVE", "104 384 CURVE SMOOTH", "126 346 OFFCURVE", "141 327 OFFCURVE", "148 325 CURVE SMOOTH", "153 324 OFFCURVE", "156 316 OFFCURVE", "157 301 CURVE SMOOTH", "158 286 OFFCURVE", "156 272 OFFCURVE", "151 259 CURVE SMOOTH", "146 246 OFFCURVE", "140 240 OFFCURVE", "132 241 CURVE SMOOTH", "117 243 OFFCURVE", "103 257 OFFCURVE", "91 282 CURVE SMOOTH", "79 307 OFFCURVE", "65 320 OFFCURVE", "50 321 CURVE SMOOTH", "18 323 OFFCURVE", "-13 308 OFFCURVE", "-41 277 CURVE SMOOTH", "-42 275 OFFCURVE", "-43 273 OFFCURVE", "-45 268 CURVE SMOOTH" ); } ); width = 140; }, { anchors = ( { name = DigitAbove; position = "{8, 601}"; }, { name = DigitBelow; position = "{130, -171}"; }, { name = DotAbove; position = "{8, 601}"; }, { name = DotBelow; position = "{130, -171}"; }, { name = HamzaAbove; position = "{8, 601}"; }, { name = HamzaBelow; position = "{130, -98}"; }, { name = RingBelow; position = "{51, 357}"; }, { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; }, { name = TwoDotsAbove; position = "{-46, 601}"; }, { name = TwoDotsBelow; position = "{77, -146}"; }, { name = VAbove; position = "{8, 601}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-45 240 OFFCURVE", "-56 231 OFFCURVE", "-69 237 CURVE SMOOTH", "-82 243 OFFCURVE", "-84 261 OFFCURVE", "-74 290 CURVE SMOOTH", "-64 319 OFFCURVE", "-45 347 OFFCURVE", "-17 373 CURVE SMOOTH", "11 399 OFFCURVE", "41 413 OFFCURVE", "74 414 CURVE", "93 414 OFFCURVE", "108 406 OFFCURVE", "117 391 CURVE SMOOTH", "134 362 OFFCURVE", "146 345 OFFCURVE", "153 339 CURVE", "164 335 OFFCURVE", "170 324 OFFCURVE", "171 305 CURVE SMOOTH", "172 286 OFFCURVE", "170 269 OFFCURVE", "165 254 CURVE SMOOTH", "158 233 OFFCURVE", "146 225 OFFCURVE", "130 227 CURVE", "109 231 OFFCURVE", "92 247 OFFCURVE", "78 276 CURVE SMOOTH", "68 296 OFFCURVE", "58 305 OFFCURVE", "49 306 CURVE SMOOTH", "17 307 OFFCURVE", "-11 295 OFFCURVE", "-36 268 CURVE SMOOTH", "-37 267 OFFCURVE", "-37 265 OFFCURVE", "-38 263 CURVE SMOOTH" ); } ); width = 140; } ); }, { glyphname = aMem.medi.LamBaaMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "129 248 OFFCURVE", "138 224 OFFCURVE", "155 196 CURVE SMOOTH", "168 175 OFFCURVE", "183 158 OFFCURVE", "201 148 CURVE SMOOTH", "207 144 OFFCURVE", "224 140 OFFCURVE", "249 133 CURVE SMOOTH", "269 128 OFFCURVE", "283 121 OFFCURVE", "295 115 CURVE SMOOTH", "307 109 OFFCURVE", "312 100 OFFCURVE", "312 88 CURVE SMOOTH", "311 53 OFFCURVE", "308 26 OFFCURVE", "303 6 CURVE SMOOTH", "301 -4 OFFCURVE", "295 -7 OFFCURVE", "287 -2 CURVE SMOOTH", "225 32 OFFCURVE", "185 49 OFFCURVE", "165 49 CURVE SMOOTH", "145 49 OFFCURVE", "118 41 OFFCURVE", "83 25 CURVE SMOOTH", "48 9 OFFCURVE", "21 0 OFFCURVE", "0 0 CURVE SMOOTH", "-8 0 OFFCURVE", "-14 7 OFFCURVE", "-19 22 CURVE SMOOTH", "-24 37 OFFCURVE", "-25 52 OFFCURVE", "-22 67 CURVE SMOOTH", "-19 82 OFFCURVE", "-12 89 OFFCURVE", "0 90 CURVE SMOOTH", "55 95 OFFCURVE", "95 107 OFFCURVE", "120 124 CURVE", "93 173 OFFCURVE", "87 224 OFFCURVE", "104 278 CURVE SMOOTH", "122 319 OFFCURVE", "131 315 OFFCURVE", "130 267 CURVE SMOOTH" ); } ); width = 173; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "134 321 OFFCURVE", "139 308 OFFCURVE", "138 282 CURVE SMOOTH", "137 256 OFFCURVE", "143 232 OFFCURVE", "158 209 CURVE SMOOTH", "173 186 OFFCURVE", "188 170 OFFCURVE", "204 161 CURVE SMOOTH", "210 158 OFFCURVE", "223 153 OFFCURVE", "245 147 CURVE SMOOTH", "267 141 OFFCURVE", "287 134 OFFCURVE", "303 126 CURVE SMOOTH", "319 118 OFFCURVE", "327 106 OFFCURVE", "327 88 CURVE", "325 38 OFFCURVE", "320 5 OFFCURVE", "313 -8 CURVE SMOOTH", "306 -21 OFFCURVE", "295 -23 OFFCURVE", "280 -15 CURVE SMOOTH", "221 17 OFFCURVE", "183 34 OFFCURVE", "165 34 CURVE SMOOTH", "147 34 OFFCURVE", "121 26 OFFCURVE", "86 10 CURVE SMOOTH", "51 -6 OFFCURVE", "23 -15 OFFCURVE", "0 -15 CURVE", "-15 -15 OFFCURVE", "-26 -4 OFFCURVE", "-32 15 CURVE SMOOTH", "-38 34 OFFCURVE", "-40 54 OFFCURVE", "-36 73 CURVE SMOOTH", "-32 92 OFFCURVE", "-20 103 OFFCURVE", "-1 105 CURVE SMOOTH", "48 109 OFFCURVE", "83 117 OFFCURVE", "106 129 CURVE", "82 182 OFFCURVE", "80 234 OFFCURVE", "98 283 CURVE SMOOTH", "107 308 OFFCURVE", "116 320 OFFCURVE", "123 320 CURVE SMOOTH" ); } ); width = 173; } ); }, { glyphname = aBaa.init.BaaDal; layers = ( { anchors = ( { name = DigitAbove; position = "{76, 501}"; }, { name = DigitBelow; position = "{39, -171}"; }, { name = DotAbove; position = "{76, 501}"; }, { name = DotBelow; position = "{39, -171}"; }, { name = DotBelowAlt; position = "{39, -366}"; }, { name = HamzaAbove; position = "{54, 500}"; }, { name = HamzaBelow; position = "{39, -171}"; }, { name = RingBelow; position = "{49, 49}"; }, { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; }, { name = TwoDotsAbove; position = "{21, 501}"; }, { name = TwoDotsBelow; position = "{-40, -146}"; }, { name = TwoDotsBelowAlt; position = "{-15, -366}"; }, { name = VAbove; position = "{54, 500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "61 165 OFFCURVE", "53 176 OFFCURVE", "47 182 CURVE SMOOTH", "41 188 OFFCURVE", "39 196 OFFCURVE", "42 206 CURVE SMOOTH", "63 282 LINE SMOOTH", "66 293 OFFCURVE", "72 293 OFFCURVE", "80 280 CURVE SMOOTH", "92 261 OFFCURVE", "101 232 OFFCURVE", "106 195 CURVE SMOOTH", "111 160 OFFCURVE", "111 127 OFFCURVE", "107 97 CURVE SMOOTH", "103 67 OFFCURVE", "96 45 OFFCURVE", "86 30 CURVE SMOOTH", "76 15 OFFCURVE", "58 7 OFFCURVE", "33 4 CURVE SMOOTH", "8 1 OFFCURVE", "-14 7 OFFCURVE", "-33 23 CURVE SMOOTH", "-52 39 OFFCURVE", "-56 60 OFFCURVE", "-46 86 CURVE SMOOTH", "-37 109 OFFCURVE", "-24 119 OFFCURVE", "-7 113 CURVE SMOOTH", "32 100 OFFCURVE", "61 103 OFFCURVE", "81 122 CURVE SMOOTH", "84 125 OFFCURVE", "79 134 OFFCURVE", "69 151 CURVE SMOOTH" ); } ); width = 170; }, { anchors = ( { name = DigitAbove; position = "{76, 501}"; }, { name = DigitBelow; position = "{39, -171}"; }, { name = DotAbove; position = "{76, 501}"; }, { name = DotBelow; position = "{39, -171}"; }, { name = DotBelowAlt; position = "{39, -366}"; }, { name = HamzaAbove; position = "{54, 500}"; }, { name = HamzaBelow; position = "{39, -171}"; }, { name = RingBelow; position = "{49, 49}"; }, { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; }, { name = TwoDotsAbove; position = "{21, 501}"; }, { name = TwoDotsBelow; position = "{-40, -146}"; }, { name = TwoDotsBelowAlt; position = "{-15, -366}"; }, { name = VAbove; position = "{54, 500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "67 143 OFFCURVE", "56 158 OFFCURVE", "42 170 CURVE SMOOTH", "28 182 OFFCURVE", "24 195 OFFCURVE", "28 210 CURVE SMOOTH", "49 286 LINE SMOOTH", "61 328 OFFCURVE", "77 326 OFFCURVE", "99 280 CURVE SMOOTH", "121 234 OFFCURVE", "127 172 OFFCURVE", "118 94 CURVE SMOOTH", "110 30 OFFCURVE", "81 -5 OFFCURVE", "30 -11 CURVE SMOOTH", "3 -14 OFFCURVE", "-21 -6 OFFCURVE", "-44 14 CURVE SMOOTH", "-67 34 OFFCURVE", "-72 59 OFFCURVE", "-60 91 CURVE SMOOTH", "-48 123 OFFCURVE", "-26 134 OFFCURVE", "5 124 CURVE SMOOTH", "36 114 OFFCURVE", "59 114 OFFCURVE", "75 124 CURVE" ); } ); width = 170; } ); }, { glyphname = aDal.fina.BaaDal; layers = ( { anchors = ( { name = DotAbove; position = "{309, 623}"; }, { name = DotBelow; position = "{265, -132}"; }, { name = HamzaAbove; position = "{309, 623}"; }, { name = HamzaBelow; position = "{265, -132}"; }, { name = RingBelow; position = "{208, 59}"; }, { name = TaaAbove; position = "{305, 586}"; }, { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{255, 623}"; }, { name = TwoDotsBelow; position = "{211, -132}"; }, { name = VAbove; position = "{305, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "363 405 OFFCURVE", "382 331 OFFCURVE", "408 250 CURVE SMOOTH", "434 169 OFFCURVE", "456 123 OFFCURVE", "473 114 CURVE SMOOTH", "490 105 OFFCURVE", "506 87 OFFCURVE", "522 61 CURVE SMOOTH", "543 27 OFFCURVE", "543 8 OFFCURVE", "518 4 CURVE SMOOTH", "455 -7 OFFCURVE", "406 49 OFFCURVE", "371 172 CURVE SMOOTH", "370 174 OFFCURVE", "369 175 OFFCURVE", "367 175 CURVE SMOOTH", "365 175 OFFCURVE", "364 174 OFFCURVE", "363 172 CURVE SMOOTH", "360 156 OFFCURVE", "355 137 OFFCURVE", "348 116 CURVE SMOOTH", "341 95 OFFCURVE", "333 80 OFFCURVE", "326 73 CURVE SMOOTH", "301 47 OFFCURVE", "263 27 OFFCURVE", "210 12 CURVE SMOOTH", "157 -3 OFFCURVE", "117 -5 OFFCURVE", "90 7 CURVE SMOOTH", "58 20 OFFCURVE", "53 67 OFFCURVE", "76 145 CURVE SMOOTH", "77 147 OFFCURVE", "79 149 OFFCURVE", "83 149 CURVE SMOOTH", "87 149 OFFCURVE", "89 148 OFFCURVE", "91 144 CURVE", "97 128 OFFCURVE", "104 117 OFFCURVE", "113 111 CURVE SMOOTH", "134 98 OFFCURVE", "174 99 OFFCURVE", "233 115 CURVE SMOOTH", "296 132 OFFCURVE", "335 154 OFFCURVE", "348 181 CURVE SMOOTH", "355 197 OFFCURVE", "346 251 OFFCURVE", "320 341 CURVE SMOOTH", "307 388 OFFCURVE", "303 418 OFFCURVE", "308 432 CURVE SMOOTH", "327 486 LINE SMOOTH", "334 507 OFFCURVE", "341 503 OFFCURVE", "348 474 CURVE SMOOTH" ); } ); width = 481; }, { anchors = ( { name = DotAbove; position = "{309, 623}"; }, { name = DotBelow; position = "{265, -132}"; }, { name = HamzaAbove; position = "{309, 623}"; }, { name = HamzaBelow; position = "{265, -132}"; }, { name = RingBelow; position = "{208, 59}"; }, { name = TaaAbove; position = "{305, 586}"; }, { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{255, 623}"; }, { name = TwoDotsBelow; position = "{211, -132}"; }, { name = VAbove; position = "{305, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "385 373 OFFCURVE", "405 302 OFFCURVE", "419 259 CURVE SMOOTH", "447 175 OFFCURVE", "467 130 OFFCURVE", "480 126 CURVE", "499 115 OFFCURVE", "518 96 OFFCURVE", "535 69 CURVE SMOOTH", "559 32 OFFCURVE", "558 7 OFFCURVE", "534 -5 CURVE SMOOTH", "529 -7 OFFCURVE", "525 -9 OFFCURVE", "520 -10 CURVE SMOOTH", "451 -20 OFFCURVE", "401 34 OFFCURVE", "368 152 CURVE", "361 110 OFFCURVE", "351 80 OFFCURVE", "336 63 CURVE SMOOTH", "314 36 OFFCURVE", "273 14 OFFCURVE", "212 -3 CURVE SMOOTH", "151 -20 OFFCURVE", "109 -22 OFFCURVE", "86 -8 CURVE SMOOTH", "63 6 OFFCURVE", "52 26 OFFCURVE", "53 52 CURVE SMOOTH", "54 78 OFFCURVE", "59 106 OFFCURVE", "67 137 CURVE SMOOTH", "71 151 OFFCURVE", "76 158 OFFCURVE", "83 158 CURVE SMOOTH", "90 158 OFFCURVE", "95 154 OFFCURVE", "98 144 CURVE SMOOTH", "101 134 OFFCURVE", "108 125 OFFCURVE", "120 117 CURVE SMOOTH", "132 109 OFFCURVE", "169 113 OFFCURVE", "231 129 CURVE SMOOTH", "293 145 OFFCURVE", "330 166 OFFCURVE", "339 188 CURVE SMOOTH", "343 197 OFFCURVE", "334 237 OFFCURVE", "314 308 CURVE SMOOTH", "294 379 OFFCURVE", "287 422 OFFCURVE", "294 437 CURVE SMOOTH", "324 508 LINE SMOOTH", "335 535 OFFCURVE", "347 522 OFFCURVE", "360 471 CURVE SMOOTH" ); } ); width = 481; } ); }, { glyphname = aBaa.init.BaaMemHaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{44, 843}"; }, { name = DigitBelow; position = "{162, -200}"; }, { name = DotAbove; position = "{44, 843}"; }, { name = DotBelow; position = "{162, -200}"; }, { name = DotBelowAlt; position = "{162, -366}"; }, { name = HamzaAbove; position = "{44, 843}"; }, { name = HamzaBelow; position = "{162, -200}"; }, { name = RingBelow; position = "{107, 586}"; }, { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-10, 843}"; }, { name = TwoDotsBelow; position = "{107, -127}"; }, { name = TwoDotsBelowAlt; position = "{107, -366}"; }, { name = VAbove; position = "{44, 843}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "108 664 OFFCURVE", "138 653 OFFCURVE", "164 624 CURVE SMOOTH", "168 619 OFFCURVE", "162 592 OFFCURVE", "145 544 CURVE SMOOTH", "141 532 OFFCURVE", "134 529 OFFCURVE", "126 536 CURVE SMOOTH", "99 560 OFFCURVE", "74 571 OFFCURVE", "50 569 CURVE SMOOTH", "26 567 OFFCURVE", "0 554 OFFCURVE", "-26 528 CURVE SMOOTH", "-30 524 OFFCURVE", "-31 519 OFFCURVE", "-29 512 CURVE SMOOTH", "-10 446 OFFCURVE", "20 406 OFFCURVE", "64 392 CURVE SMOOTH", "75 388 OFFCURVE", "75 382 OFFCURVE", "62 372 CURVE", "40 355 OFFCURVE", "17 346 OFFCURVE", "-8 346 CURVE SMOOTH", "-33 346 OFFCURVE", "-48 356 OFFCURVE", "-55 375 CURVE SMOOTH", "-65 403 OFFCURVE", "-70 433 OFFCURVE", "-70 462 CURVE SMOOTH", "-70 526 OFFCURVE", "-45 580 OFFCURVE", "5 623 CURVE SMOOTH", "30 644 OFFCURVE", "52 656 OFFCURVE", "73 659 CURVE SMOOTH" ); } ); width = 310; }, { anchors = ( { name = DigitAbove; position = "{44, 843}"; }, { name = DigitBelow; position = "{162, -200}"; }, { name = DotAbove; position = "{44, 843}"; }, { name = DotBelow; position = "{162, -200}"; }, { name = DotBelowAlt; position = "{162, -366}"; }, { name = HamzaAbove; position = "{44, 843}"; }, { name = HamzaBelow; position = "{162, -200}"; }, { name = RingBelow; position = "{107, 586}"; }, { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-10, 843}"; }, { name = TwoDotsBelow; position = "{107, -127}"; }, { name = TwoDotsBelowAlt; position = "{107, -366}"; }, { name = VAbove; position = "{44, 843}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "110 680 OFFCURVE", "144 666 OFFCURVE", "175 633 CURVE SMOOTH", "182 626 OFFCURVE", "183 617 OFFCURVE", "178 604 CURVE SMOOTH", "153 529 LINE SMOOTH", "147 511 OFFCURVE", "138 508 OFFCURVE", "126 520 CURVE SMOOTH", "77 569 OFFCURVE", "27 569 OFFCURVE", "-23 520 CURVE", "-11 471 OFFCURVE", "20 432 OFFCURVE", "69 406 CURVE SMOOTH", "77 402 OFFCURVE", "82 399 OFFCURVE", "83 397 CURVE SMOOTH", "94 383 OFFCURVE", "85 368 OFFCURVE", "56 350 CURVE SMOOTH", "35 338 OFFCURVE", "12 332 OFFCURVE", "-16 332 CURVE SMOOTH", "-44 332 OFFCURVE", "-62 346 OFFCURVE", "-70 373 CURVE SMOOTH", "-78 400 OFFCURVE", "-81 430 OFFCURVE", "-80 462 CURVE SMOOTH", "-77 531 OFFCURVE", "-52 588 OFFCURVE", "-4 634 CURVE SMOOTH", "19 656 OFFCURVE", "44 670 OFFCURVE", "71 674 CURVE SMOOTH" ); } ); width = 310; } ); }, { glyphname = aMem.medi.BaaMemHaaInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "69 321 OFFCURVE", "142 356 OFFCURVE", "200 374 CURVE SMOOTH", "258 392 OFFCURVE", "299 398 OFFCURVE", "324 392 CURVE SMOOTH", "363 383 OFFCURVE", "392 370 OFFCURVE", "410 352 CURVE SMOOTH", "414 348 OFFCURVE", "415 344 OFFCURVE", "413 339 CURVE SMOOTH", "388 270 LINE SMOOTH", "386 265 OFFCURVE", "382 264 OFFCURVE", "376 267 CURVE SMOOTH", "315 299 OFFCURVE", "269 314 OFFCURVE", "236 313 CURVE SMOOTH", "176 311 OFFCURVE", "113 290 OFFCURVE", "46 249 CURVE SMOOTH", "20 233 OFFCURVE", "-2 232 OFFCURVE", "-20 245 CURVE SMOOTH", "-30 252 OFFCURVE", "-31 259 OFFCURVE", "-24 265 CURVE SMOOTH", "-23 266 OFFCURVE", "-22 267 OFFCURVE", "-21 267 CURVE SMOOTH" ); } ); width = 259; }, { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "291 418 OFFCURVE", "365 410 OFFCURVE", "420 362 CURVE SMOOTH", "428 354 OFFCURVE", "431 345 OFFCURVE", "427 334 CURVE SMOOTH", "401 265 LINE SMOOTH", "395 250 OFFCURVE", "386 246 OFFCURVE", "370 254 CURVE SMOOTH", "310 285 OFFCURVE", "265 299 OFFCURVE", "236 298 CURVE SMOOTH", "175 296 OFFCURVE", "115 277 OFFCURVE", "54 241 CURVE SMOOTH", "12 216 OFFCURVE", "-18 216 OFFCURVE", "-36 240 CURVE SMOOTH", "-45 252 OFFCURVE", "-44 262 OFFCURVE", "-33 269 CURVE SMOOTH", "58 327 OFFCURVE", "135 366 OFFCURVE", "197 387 CURVE SMOOTH" ); } ); width = 259; } ); }, { glyphname = aHaa.medi.BaaMemHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{152, -112}"; }, { name = DotAbove; position = "{89, 537}"; }, { name = DotBelow; position = "{152, -112}"; }, { name = HamzaAbove; position = "{89, 537}"; }, { name = HamzaBelow; position = "{152, -112}"; }, { name = TaaAbove; position = "{89, 537}"; }, { name = TaaBelow; position = "{152, 83}"; }, { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; }, { name = TwoDotsAbove; position = "{40, 537}"; }, { name = TwoDotsBelow; position = "{98, -112}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = DigitBelow; position = "{152, -112}"; }, { name = DotAbove; position = "{89, 537}"; }, { name = DotBelow; position = "{152, -112}"; }, { name = HamzaAbove; position = "{89, 537}"; }, { name = HamzaBelow; position = "{152, -112}"; }, { name = TaaAbove; position = "{89, 537}"; }, { name = TaaBelow; position = "{152, 83}"; }, { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; }, { name = TwoDotsAbove; position = "{40, 537}"; }, { name = TwoDotsBelow; position = "{98, -112}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = aBaa.init.BaaBaaYaa; layers = ( { anchors = ( { name = DigitAbove; position = "{63, 618}"; }, { name = DigitBelow; position = "{72, -139}"; }, { name = DotAbove; position = "{63, 618}"; }, { name = DotBelow; position = "{72, -139}"; }, { name = DotBelowAlt; position = "{72, -366}"; }, { name = HamzaAbove; position = "{63, 618}"; }, { name = HamzaBelow; position = "{72, -139}"; }, { name = RingBelow; position = "{60, 190}"; }, { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; }, { name = TwoDotsAbove; position = "{-6, 618}"; }, { name = TwoDotsBelow; position = "{6, -139}"; }, { name = TwoDotsBelowAlt; position = "{6, -366}"; }, { name = VAbove; position = "{63, 618}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "82 312 OFFCURVE", "84 316 OFFCURVE", "89 318 CURVE SMOOTH", "94 320 OFFCURVE", "98 319 OFFCURVE", "102 315 CURVE SMOOTH", "106 311 OFFCURVE", "107 306 OFFCURVE", "106 299 CURVE SMOOTH", "86 195 OFFCURVE", "49 141 OFFCURVE", "-3 136 CURVE", "-21 135 OFFCURVE", "-28 149 OFFCURVE", "-27 179 CURVE SMOOTH", "-26 209 OFFCURVE", "-15 226 OFFCURVE", "5 227 CURVE SMOOTH", "39 229 OFFCURVE", "64 255 OFFCURVE", "80 305 CURVE SMOOTH" ); } ); width = 203; }, { anchors = ( { name = DigitAbove; position = "{63, 618}"; }, { name = DigitBelow; position = "{72, -139}"; }, { name = DotAbove; position = "{63, 618}"; }, { name = DotBelow; position = "{72, -139}"; }, { name = DotBelowAlt; position = "{72, -366}"; }, { name = HamzaAbove; position = "{63, 618}"; }, { name = HamzaBelow; position = "{72, -139}"; }, { name = RingBelow; position = "{60, 190}"; }, { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; }, { name = TwoDotsAbove; position = "{-6, 618}"; }, { name = TwoDotsBelow; position = "{6, -139}"; }, { name = TwoDotsBelowAlt; position = "{6, -366}"; }, { name = VAbove; position = "{63, 618}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "77 326 OFFCURVE", "85 333 OFFCURVE", "98 331 CURVE SMOOTH", "111 329 OFFCURVE", "116 317 OFFCURVE", "113 296 CURVE SMOOTH", "95 180 OFFCURVE", "57 122 OFFCURVE", "-2 121 CURVE SMOOTH", "-30 120 OFFCURVE", "-44 140 OFFCURVE", "-42 179 CURVE SMOOTH", "-40 218 OFFCURVE", "-25 239 OFFCURVE", "4 241 CURVE", "39 243 OFFCURVE", "63 266 OFFCURVE", "73 309 CURVE SMOOTH" ); } ); width = 203; } ); }, { glyphname = aBaa.medi.BaaBaaYaa; layers = ( { anchors = ( { name = DigitAbove; position = "{65, 573}"; }, { name = DigitBelow; position = "{213, -302}"; }, { name = DotAbove; position = "{65, 573}"; }, { name = DotBelow; position = "{213, -302}"; }, { name = HamzaAbove; position = "{65, 573}"; }, { name = HamzaBelow; position = "{213, -302}"; }, { name = RingBelow; position = "{180, 295}"; }, { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; }, { name = TwoDotsAbove; position = "{-1, 573}"; }, { name = TwoDotsBelow; position = "{213, -302}"; }, { name = VAbove; position = "{65, 573}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "380 228 OFFCURVE", "387 213 OFFCURVE", "386 183 CURVE SMOOTH", "385 153 OFFCURVE", "375 137 OFFCURVE", "355 136 CURVE SMOOTH", "321 135 OFFCURVE", "289 153 OFFCURVE", "258 189 CURVE SMOOTH", "227 225 OFFCURVE", "203 244 OFFCURVE", "185 244 CURVE SMOOTH", "139 244 OFFCURVE", "93 218 OFFCURVE", "46 166 CURVE SMOOTH", "29 147 OFFCURVE", "22 131 OFFCURVE", "26 117 CURVE", "33 88 OFFCURVE", "31 61 OFFCURVE", "18 37 CURVE SMOOTH", "11 22 OFFCURVE", "2 18 OFFCURVE", "-8 25 CURVE SMOOTH", "-25 36 OFFCURVE", "-31 55 OFFCURVE", "-27 81 CURVE SMOOTH", "-23 107 OFFCURVE", "-13 132 OFFCURVE", "2 156 CURVE SMOOTH", "42 220 OFFCURVE", "89 272 OFFCURVE", "143 310 CURVE SMOOTH", "167 326 OFFCURVE", "194 333 OFFCURVE", "222 330 CURVE SMOOTH", "232 329 OFFCURVE", "251 311 OFFCURVE", "279 276 CURVE SMOOTH", "307 241 OFFCURVE", "335 225 OFFCURVE", "364 227 CURVE SMOOTH" ); } ); width = 357; }, { anchors = ( { name = DigitAbove; position = "{65, 573}"; }, { name = DigitBelow; position = "{213, -302}"; }, { name = DotAbove; position = "{65, 573}"; }, { name = DotBelow; position = "{213, -302}"; }, { name = HamzaAbove; position = "{65, 573}"; }, { name = HamzaBelow; position = "{213, -302}"; }, { name = RingBelow; position = "{180, 295}"; }, { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; }, { name = TwoDotsAbove; position = "{-1, 573}"; }, { name = TwoDotsBelow; position = "{213, -302}"; }, { name = VAbove; position = "{65, 573}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "318 121 OFFCURVE", "282 140 OFFCURVE", "250 178 CURVE SMOOTH", "218 216 OFFCURVE", "195 235 OFFCURVE", "179 234 CURVE SMOOTH", "132 230 OFFCURVE", "89 206 OFFCURVE", "51 161 CURVE SMOOTH", "41 149 OFFCURVE", "37 136 OFFCURVE", "41 121 CURVE SMOOTH", "50 84 OFFCURVE", "45 51 OFFCURVE", "28 24 CURVE", "15 6 OFFCURVE", "1 3 OFFCURVE", "-16 13 CURVE", "-38 28 OFFCURVE", "-45 50 OFFCURVE", "-37 80 CURVE SMOOTH", "-29 110 OFFCURVE", "-16 137 OFFCURVE", "0 164 CURVE SMOOTH", "38 228 OFFCURVE", "85 281 OFFCURVE", "141 322 CURVE SMOOTH", "162 337 OFFCURVE", "184 345 OFFCURVE", "209 345 CURVE SMOOTH", "234 345 OFFCURVE", "261 326 OFFCURVE", "290 286 CURVE SMOOTH", "312 255 OFFCURVE", "337 241 OFFCURVE", "365 242 CURVE SMOOTH", "390 243 OFFCURVE", "402 223 OFFCURVE", "401 183 CURVE SMOOTH", "400 143 OFFCURVE", "385 123 OFFCURVE", "356 121 CURVE" ); } ); width = 357; } ); }, { glyphname = aYaa.fina.BaaBaaYaa; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = DigitAbove; position = "{279, 388}"; }, { name = DigitBelow; position = "{371, -435}"; }, { name = DotAbove; position = "{279, 388}"; }, { name = DotBelow; position = "{371, -435}"; }, { name = HamzaAbove; position = "{159, 388}"; }, { name = HamzaBelow; position = "{371, -435}"; }, { name = RingBelow; position = "{312, -235}"; }, { name = Tail; position = "{135, 187}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; }, { name = TwoDotsAbove; position = "{213, 388}"; }, { name = TwoDotsBelow; position = "{316, -435}"; }, { name = VAbove; position = "{219, 388}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "438 32 OFFCURVE", "433 42 OFFCURVE", "431 55 CURVE SMOOTH", "428 79 OFFCURVE", "436 101 OFFCURVE", "454 121 CURVE SMOOTH", "460 127 OFFCURVE", "465 129 OFFCURVE", "472 129 CURVE SMOOTH", "479 129 OFFCURVE", "482 125 OFFCURVE", "484 118 CURVE SMOOTH", "491 91 OFFCURVE", "559 75 OFFCURVE", "686 70 CURVE SMOOTH", "722 69 OFFCURVE", "745 54 OFFCURVE", "755 27 CURVE SMOOTH", "762 8 OFFCURVE", "760 -18 OFFCURVE", "747 -51 CURVE SMOOTH", "734 -84 OFFCURVE", "721 -107 OFFCURVE", "705 -122 CURVE SMOOTH", "600 -218 OFFCURVE", "475 -272 OFFCURVE", "330 -285 CURVE SMOOTH", "228 -294 OFFCURVE", "156 -272 OFFCURVE", "114 -218 CURVE SMOOTH", "80 -174 OFFCURVE", "63 -117 OFFCURVE", "63 -49 CURVE SMOOTH", "64 36 OFFCURVE", "85 116 OFFCURVE", "125 193 CURVE SMOOTH", "128 199 OFFCURVE", "133 202 OFFCURVE", "138 202 CURVE SMOOTH", "143 202 OFFCURVE", "146 200 OFFCURVE", "148 195 CURVE SMOOTH", "151 189 OFFCURVE", "152 185 OFFCURVE", "149 179 CURVE SMOOTH", "110 90 OFFCURVE", "96 18 OFFCURVE", "108 -36 CURVE SMOOTH", "130 -140 OFFCURVE", "203 -190 OFFCURVE", "325 -188 CURVE SMOOTH", "446 -186 OFFCURVE", "570 -133 OFFCURVE", "697 -29 CURVE SMOOTH", "700 -27 OFFCURVE", "700 -25 OFFCURVE", "696 -23 CURVE SMOOTH", "682 -17 OFFCURVE", "643 -11 OFFCURVE", "578 -4 CURVE SMOOTH", "512 3 OFFCURVE", "468 12 OFFCURVE", "449 25 CURVE SMOOTH" ); } ); width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = DigitAbove; position = "{279, 388}"; }, { name = DigitBelow; position = "{371, -435}"; }, { name = DotAbove; position = "{279, 388}"; }, { name = DotBelow; position = "{371, -435}"; }, { name = HamzaAbove; position = "{159, 388}"; }, { name = HamzaBelow; position = "{371, -435}"; }, { name = RingBelow; position = "{312, -235}"; }, { name = Tail; position = "{135, 187}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; }, { name = TwoDotsAbove; position = "{213, 388}"; }, { name = TwoDotsBelow; position = "{316, -435}"; }, { name = VAbove; position = "{219, 388}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "427 23 OFFCURVE", "418 36 OFFCURVE", "416 53 CURVE SMOOTH", "413 82 OFFCURVE", "422 108 OFFCURVE", "443 131 CURVE SMOOTH", "457 145 OFFCURVE", "471 148 OFFCURVE", "486 139 CURVE", "492 135 OFFCURVE", "496 129 OFFCURVE", "498 121 CURVE SMOOTH", "500 113 OFFCURVE", "518 106 OFFCURVE", "552 99 CURVE SMOOTH", "586 92 OFFCURVE", "631 86 OFFCURVE", "686 84 CURVE SMOOTH", "722 82 OFFCURVE", "746 65 OFFCURVE", "759 32 CURVE", "767 9 OFFCURVE", "765 -20 OFFCURVE", "751 -55 CURVE SMOOTH", "737 -90 OFFCURVE", "722 -116 OFFCURVE", "705 -132 CURVE", "596 -230 OFFCURVE", "471 -287 OFFCURVE", "331 -300 CURVE SMOOTH", "223 -310 OFFCURVE", "148 -286 OFFCURVE", "107 -227 CURVE SMOOTH", "76 -182 OFFCURVE", "61 -120 OFFCURVE", "62 -41 CURVE SMOOTH", "63 38 OFFCURVE", "83 116 OFFCURVE", "123 193 CURVE SMOOTH", "129 205 OFFCURVE", "137 207 OFFCURVE", "146 202 CURVE SMOOTH", "155 197 OFFCURVE", "155 185 OFFCURVE", "147 165 CURVE SMOOTH", "114 89 OFFCURVE", "105 23 OFFCURVE", "120 -33 CURVE SMOOTH", "145 -127 OFFCURVE", "212 -174 OFFCURVE", "322 -173 CURVE SMOOTH", "445 -172 OFFCURVE", "567 -124 OFFCURVE", "685 -31 CURVE", "664 -27 OFFCURVE", "624 -23 OFFCURVE", "563 -17 CURVE SMOOTH", "502 -11 OFFCURVE", "462 -1 OFFCURVE", "441 13 CURVE SMOOTH" ); } ); width = 457; } ); }, { glyphname = aLam.medi.LamYaaFina; layers = ( { anchors = ( { name = DotAbove; position = "{22, 793}"; }, { name = Stroke; position = "{33, 516}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = TwoDotsAbove; position = "{-36, 793}"; }, { name = TwoDotsBelow; position = "{83, -366}"; }, { name = VAbove; position = "{22, 744}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "19 690 OFFCURVE", "22 691 OFFCURVE", "28 692 CURVE SMOOTH", "34 693 OFFCURVE", "37 691 OFFCURVE", "38 686 CURVE SMOOTH", "65 478 OFFCURVE", "85 345 OFFCURVE", "98 288 CURVE SMOOTH", "124 175 OFFCURVE", "157 109 OFFCURVE", "196 90 CURVE", "221 77 OFFCURVE", "229 56 OFFCURVE", "220 25 CURVE SMOOTH", "215 6 OFFCURVE", "207 -2 OFFCURVE", "196 0 CURVE SMOOTH", "155 5 OFFCURVE", "117 51 OFFCURVE", "82 137 CURVE", "78 63 OFFCURVE", "62 1 OFFCURVE", "34 -49 CURVE SMOOTH", "27 -62 OFFCURVE", "17 -74 OFFCURVE", "4 -85 CURVE SMOOTH", "-9 -96 OFFCURVE", "-19 -103 OFFCURVE", "-28 -106 CURVE", "-24 -80 OFFCURVE", "-22 -67 OFFCURVE", "-22 -67 CURVE SMOOTH", "5 -46 OFFCURVE", "25 -19 OFFCURVE", "38 14 CURVE SMOOTH", "51 47 OFFCURVE", "55 107 OFFCURVE", "49 193 CURVE", "49 202 OFFCURVE", "41 260 OFFCURVE", "26 366 CURVE SMOOTH", "-2 558 LINE", "-4 571 OFFCURVE", "-4 585 OFFCURVE", "-3 600 CURVE SMOOTH", "-2 615 OFFCURVE", "5 643 OFFCURVE", "17 685 CURVE SMOOTH" ); } ); width = 195; }, { anchors = ( { name = DotAbove; position = "{22, 793}"; }, { name = Stroke; position = "{33, 516}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = TwoDotsAbove; position = "{-36, 793}"; }, { name = TwoDotsBelow; position = "{83, -366}"; }, { name = VAbove; position = "{22, 744}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "11 700 OFFCURVE", "18 708 OFFCURVE", "28 708 CURVE", "39 709 OFFCURVE", "46 702 OFFCURVE", "47 688 CURVE SMOOTH", "64 538 OFFCURVE", "85 407 OFFCURVE", "111 296 CURVE SMOOTH", "137 185 OFFCURVE", "167 121 OFFCURVE", "202 104 CURVE", "234 88 OFFCURVE", "245 59 OFFCURVE", "234 21 CURVE SMOOTH", "227 -6 OFFCURVE", "214 -18 OFFCURVE", "194 -15 CURVE SMOOTH", "155 -10 OFFCURVE", "119 30 OFFCURVE", "86 104 CURVE", "76 15 OFFCURVE", "52 -48 OFFCURVE", "14 -86 CURVE SMOOTH", "-4 -104 OFFCURVE", "-24 -116 OFFCURVE", "-46 -122 CURVE", "-38 -70 LINE", "-33 -66 OFFCURVE", "-28 -62 OFFCURVE", "-21 -56 CURVE SMOOTH", "11 -26 OFFCURVE", "31 5 OFFCURVE", "37 36 CURVE", "45 81 OFFCURVE", "46 133 OFFCURVE", "39 192 CURVE", "-14 555 LINE SMOOTH", "-17 572 OFFCURVE", "-17 588 OFFCURVE", "-13 602 CURVE SMOOTH", "8 688 LINE SMOOTH" ); } ); width = 195; } ); }, { glyphname = aYaa.fina.LamYaaFina; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{284, 261}"; }, { name = DigitBelow; position = "{327, -512}"; }, { name = DotAbove; position = "{284, 261}"; }, { name = DotBelow; position = "{327, -512}"; }, { name = HamzaAbove; position = "{187, 261}"; }, { name = HamzaBelow; position = "{327, -512}"; }, { name = RingBelow; position = "{308, -312}"; }, { name = Tail; position = "{166, 93}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; }, { name = TwoDotsAbove; position = "{230, 261}"; }, { name = TwoDotsBelow; position = "{272, -512}"; }, { name = VAbove; position = "{235, 261}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "460 -55 OFFCURVE", "469 -48 OFFCURVE", "472 -44 CURVE", "555 -55 OFFCURVE", "606 -68 OFFCURVE", "626 -84 CURVE SMOOTH", "646 -100 OFFCURVE", "655 -111 OFFCURVE", "656 -117 CURVE SMOOTH", "658 -142 OFFCURVE", "655 -167 OFFCURVE", "646 -192 CURVE SMOOTH", "637 -217 OFFCURVE", "622 -237 OFFCURVE", "604 -251 CURVE SMOOTH", "548 -295 OFFCURVE", "488 -328 OFFCURVE", "420 -348 CURVE SMOOTH", "352 -368 OFFCURVE", "285 -371 OFFCURVE", "220 -358 CURVE", "174 -348 OFFCURVE", "137 -327 OFFCURVE", "108 -294 CURVE SMOOTH", "35 -212 OFFCURVE", "53 -81 OFFCURVE", "159 100 CURVE SMOOTH", "161 104 OFFCURVE", "164 107 OFFCURVE", "169 107 CURVE SMOOTH", "174 107 OFFCURVE", "177 105 OFFCURVE", "179 102 CURVE SMOOTH", "181 99 OFFCURVE", "181 94 OFFCURVE", "178 89 CURVE SMOOTH", "143 28 OFFCURVE", "121 -21 OFFCURVE", "114 -59 CURVE SMOOTH", "107 -97 OFFCURVE", "114 -136 OFFCURVE", "135 -176 CURVE SMOOTH", "156 -216 OFFCURVE", "187 -241 OFFCURVE", "229 -253 CURVE SMOOTH", "312 -275 OFFCURVE", "410 -264 OFFCURVE", "519 -216 CURVE SMOOTH", "563 -196 OFFCURVE", "595 -174 OFFCURVE", "616 -151 CURVE", "593 -137 OFFCURVE", "534 -122 OFFCURVE", "441 -106 CURVE", "445 -80 OFFCURVE", "447 -67 OFFCURVE", "447 -67 CURVE SMOOTH" ); } ); width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{284, 261}"; }, { name = DigitBelow; position = "{327, -512}"; }, { name = DotAbove; position = "{284, 261}"; }, { name = DotBelow; position = "{327, -512}"; }, { name = HamzaAbove; position = "{187, 261}"; }, { name = HamzaBelow; position = "{327, -512}"; }, { name = RingBelow; position = "{308, -312}"; }, { name = Tail; position = "{166, 93}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; }, { name = TwoDotsAbove; position = "{230, 261}"; }, { name = TwoDotsBelow; position = "{272, -512}"; }, { name = VAbove; position = "{235, 261}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "466 -29 LINE", "556 -41 OFFCURVE", "611 -55 OFFCURVE", "631 -70 CURVE SMOOTH", "651 -85 OFFCURVE", "662 -95 OFFCURVE", "665 -100 CURVE SMOOTH", "668 -105 OFFCURVE", "670 -110 OFFCURVE", "671 -115 CURVE SMOOTH", "673 -143 OFFCURVE", "669 -171 OFFCURVE", "658 -199 CURVE SMOOTH", "647 -227 OFFCURVE", "633 -248 OFFCURVE", "614 -263 CURVE SMOOTH", "555 -308 OFFCURVE", "491 -341 OFFCURVE", "423 -362 CURVE", "278 -405 OFFCURVE", "170 -386 OFFCURVE", "98 -304 CURVE SMOOTH", "26 -222 OFFCURVE", "44 -88 OFFCURVE", "154 98 CURVE SMOOTH", "161 110 OFFCURVE", "169 114 OFFCURVE", "177 109 CURVE SMOOTH", "185 104 OFFCURVE", "185 95 OFFCURVE", "178 82 CURVE SMOOTH", "115 -28 OFFCURVE", "102 -112 OFFCURVE", "140 -169 CURVE SMOOTH", "173 -218 OFFCURVE", "221 -246 OFFCURVE", "285 -253 CURVE SMOOTH", "388 -264 OFFCURVE", "496 -232 OFFCURVE", "609 -156 CURVE", "589 -149 OFFCURVE", "533 -137 OFFCURVE", "439 -121 CURVE", "425 -119 LINE", "434 -61 LINE" ); } ); width = 469; } ); }, { glyphname = aKaf.init.KafBaaInit; layers = ( { anchors = ( { name = Dash; position = "{0, 674}"; }, { name = DotAbove; position = "{29, 864}"; }, { name = DotBelow; position = "{103, -54}"; }, { name = RingBelow; position = "{68, 595}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{29, 864}"; }, { name = TwoDotsBelow; position = "{103, -54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-272 385 OFFCURVE", "-272 380 OFFCURVE", "-264 378 CURVE SMOOTH", "-122 338 OFFCURVE", "-28 300 OFFCURVE", "19 262 CURVE SMOOTH", "67 223 OFFCURVE", "90 176 OFFCURVE", "91 121 CURVE SMOOTH", "92 76 OFFCURVE", "83 48 OFFCURVE", "66 38 CURVE SMOOTH", "49 28 OFFCURVE", "27 25 OFFCURVE", "2 31 CURVE SMOOTH", "-14 35 OFFCURVE", "-23 47 OFFCURVE", "-27 67 CURVE SMOOTH", "-32 95 OFFCURVE", "-23 106 OFFCURVE", "0 98 CURVE SMOOTH", "35 86 OFFCURVE", "58 88 OFFCURVE", "68 104 CURVE SMOOTH", "69 106 OFFCURVE", "69 107 OFFCURVE", "69 108 CURVE SMOOTH", "43 188 OFFCURVE", "-68 251 OFFCURVE", "-265 296 CURVE SMOOTH", "-289 302 OFFCURVE", "-303 315 OFFCURVE", "-307 337 CURVE SMOOTH", "-310 356 OFFCURVE", "-310 376 OFFCURVE", "-308 397 CURVE SMOOTH", "-306 416 OFFCURVE", "-295 433 OFFCURVE", "-275 450 CURVE SMOOTH", "-221 496 OFFCURVE", "-141 542 OFFCURVE", "-33 591 CURVE SMOOTH", "105 653 OFFCURVE", "203 695 OFFCURVE", "261 717 CURVE SMOOTH", "286 727 OFFCURVE", "295 718 OFFCURVE", "286 689 CURVE SMOOTH", "268 632 LINE SMOOTH", "266 627 OFFCURVE", "262 624 OFFCURVE", "256 621 CURVE SMOOTH", "-25 512 OFFCURVE", "-198 435 OFFCURVE", "-263 391 CURVE SMOOTH" ); } ); width = 349; }, { anchors = ( { name = Dash; position = "{0, 674}"; }, { name = DotAbove; position = "{29, 864}"; }, { name = DotBelow; position = "{103, -54}"; }, { name = RingBelow; position = "{68, 595}"; }, { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{29, 864}"; }, { name = TwoDotsBelow; position = "{103, -54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-11 335 OFFCURVE", "99 241 OFFCURVE", "96 110 CURVE SMOOTH", "95 66 OFFCURVE", "86 37 OFFCURVE", "69 25 CURVE SMOOTH", "52 13 OFFCURVE", "28 10 OFFCURVE", "-1 17 CURVE", "-22 23 OFFCURVE", "-37 38 OFFCURVE", "-42 64 CURVE", "-48 98 OFFCURVE", "-38 115 OFFCURVE", "-14 115 CURVE SMOOTH", "-10 115 OFFCURVE", "-4 114 OFFCURVE", "4 112 CURVE SMOOTH", "34 104 OFFCURVE", "54 102 OFFCURVE", "63 109 CURVE", "35 182 OFFCURVE", "-75 240 OFFCURVE", "-268 282 CURVE SMOOTH", "-296 288 OFFCURVE", "-312 300 OFFCURVE", "-317 319 CURVE SMOOTH", "-322 339 OFFCURVE", "-324 362 OFFCURVE", "-322 391 CURVE SMOOTH", "-320 420 OFFCURVE", "-312 440 OFFCURVE", "-298 450 CURVE SMOOTH", "-191 534 OFFCURVE", "-2 630 OFFCURVE", "267 737 CURVE SMOOTH", "297 749 OFFCURVE", "308 742 OFFCURVE", "300 715 CURVE SMOOTH", "272 624 LINE SMOOTH", "269 615 OFFCURVE", "262 608 OFFCURVE", "251 604 CURVE SMOOTH", "64 535 OFFCURVE", "-97 464 OFFCURVE", "-234 390 CURVE" ); } ); width = 349; } ); }, { glyphname = aBaa.medi.KafBaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = DigitBelow; position = "{98, -171}"; }, { name = DotAbove; position = "{24, 664}"; }, { name = DotBelow; position = "{98, -171}"; }, { name = HamzaAbove; position = "{73, 635}"; }, { name = HamzaBelow; position = "{146, -98}"; }, { name = RingBelow; position = "{107, 88}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{24, 664}"; }, { name = TwoDotsBelow; position = "{40, -122}"; }, { name = VAbove; position = "{39, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "111 94 OFFCURVE", "107 95 OFFCURVE", "105 91 CURVE SMOOTH", "71 37 OFFCURVE", "36 7 OFFCURVE", "0 0 CURVE SMOOTH", "-7 -1 OFFCURVE", "-13 5 OFFCURVE", "-18 20 CURVE SMOOTH", "-23 35 OFFCURVE", "-23 50 OFFCURVE", "-21 66 CURVE SMOOTH", "-19 82 OFFCURVE", "-12 89 OFFCURVE", "0 90 CURVE SMOOTH", "48 92 OFFCURVE", "87 110 OFFCURVE", "117 145 CURVE SMOOTH", "122 151 OFFCURVE", "128 151 OFFCURVE", "134 146 CURVE SMOOTH", "157 125 OFFCURVE", "185 109 OFFCURVE", "219 98 CURVE SMOOTH", "233 93 OFFCURVE", "243 80 OFFCURVE", "248 58 CURVE SMOOTH", "253 36 OFFCURVE", "247 26 OFFCURVE", "231 29 CURVE SMOOTH", "196 35 OFFCURVE", "158 55 OFFCURVE", "116 90 CURVE SMOOTH" ); } ); width = 219; }, { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = DigitBelow; position = "{98, -171}"; }, { name = DotAbove; position = "{24, 664}"; }, { name = DotBelow; position = "{98, -171}"; }, { name = HamzaAbove; position = "{73, 635}"; }, { name = HamzaBelow; position = "{146, -98}"; }, { name = RingBelow; position = "{107, 88}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{24, 664}"; }, { name = TwoDotsBelow; position = "{40, -122}"; }, { name = VAbove; position = "{39, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "72 22 OFFCURVE", "36 -10 OFFCURVE", "2 -15 CURVE", "-13 -18 OFFCURVE", "-24 -9 OFFCURVE", "-30 11 CURVE SMOOTH", "-36 31 OFFCURVE", "-38 51 OFFCURVE", "-35 72 CURVE SMOOTH", "-32 93 OFFCURVE", "-20 104 OFFCURVE", "0 105 CURVE", "52 107 OFFCURVE", "89 124 OFFCURVE", "113 155 CURVE SMOOTH", "120 164 OFFCURVE", "128 165 OFFCURVE", "136 157 CURVE SMOOTH", "156 137 OFFCURVE", "186 122 OFFCURVE", "224 112 CURVE", "244 105 OFFCURVE", "255 90 OFFCURVE", "260 67 CURVE SMOOTH", "265 44 OFFCURVE", "264 30 OFFCURVE", "256 23 CURVE SMOOTH", "248 16 OFFCURVE", "239 14 OFFCURVE", "229 15 CURVE SMOOTH", "192 20 OFFCURVE", "151 42 OFFCURVE", "107 80 CURVE" ); } ); width = 219; } ); }, { glyphname = aLam.init.LamMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{-53, 810}"; }, { name = Stroke; position = "{-41, 521}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{-112, 810}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{-53, 761}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "3 298 OFFCURVE", "16 195 OFFCURVE", "26 169 CURVE SMOOTH", "36 143 OFFCURVE", "34 126 OFFCURVE", "22 117 CURVE SMOOTH", "10 108 OFFCURVE", "-1 111 OFFCURVE", "-9 126 CURVE SMOOTH", "-24 154 OFFCURVE", "-40 259 OFFCURVE", "-58 441 CURVE SMOOTH", "-65 518 OFFCURVE", "-70 567 OFFCURVE", "-73 588 CURVE", "-84 634 LINE SMOOTH", "-87 646 OFFCURVE", "-86 656 OFFCURVE", "-83 662 CURVE SMOOTH", "-71 683 OFFCURVE", "-64 695 OFFCURVE", "-60 700 CURVE SMOOTH", "-51 712 OFFCURVE", "-45 712 OFFCURVE", "-42 701 CURVE SMOOTH", "-37 677 OFFCURVE", "-22 652 OFFCURVE", "3 625 CURVE SMOOTH", "8 620 OFFCURVE", "9 614 OFFCURVE", "5 609 CURVE SMOOTH", "-5 595 OFFCURVE", "-12 585 OFFCURVE", "-17 579 CURVE SMOOTH", "-22 573 OFFCURVE", "-24 568 OFFCURVE", "-23 561 CURVE SMOOTH", "-22 554 OFFCURVE", "-19 526 OFFCURVE", "-14 476 CURVE SMOOTH" ); } ); width = 208; }, { anchors = ( { name = DotAbove; position = "{-53, 810}"; }, { name = Stroke; position = "{-41, 521}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{-112, 810}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{-53, 761}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "19 630 OFFCURVE", "21 624 OFFCURVE", "22 617 CURVE SMOOTH", "23 610 OFFCURVE", "13 596 OFFCURVE", "-4 573 CURVE SMOOTH", "-7 569 OFFCURVE", "-9 564 OFFCURVE", "-8 559 CURVE SMOOTH", "-7 554 OFFCURVE", "-1 495 OFFCURVE", "10 382 CURVE SMOOTH", "21 269 OFFCURVE", "32 198 OFFCURVE", "42 169 CURVE SMOOTH", "52 140 OFFCURVE", "48 118 OFFCURVE", "30 105 CURVE", "21 99 OFFCURVE", "13 96 OFFCURVE", "3 98 CURVE SMOOTH", "-7 100 OFFCURVE", "-15 107 OFFCURVE", "-22 119 CURVE SMOOTH", "-38 149 OFFCURVE", "-55 256 OFFCURVE", "-73 440 CURVE SMOOTH", "-80 515 OFFCURVE", "-84 563 OFFCURVE", "-87 585 CURVE", "-98 630 LINE", "-102 646 OFFCURVE", "-101 660 OFFCURVE", "-96 669 CURVE", "-84 690 OFFCURVE", "-75 704 OFFCURVE", "-70 711 CURVE SMOOTH", "-65 718 OFFCURVE", "-59 721 OFFCURVE", "-53 723 CURVE SMOOTH", "-40 726 OFFCURVE", "-32 720 OFFCURVE", "-28 704 CURVE", "-23 682 OFFCURVE", "-9 660 OFFCURVE", "14 635 CURVE SMOOTH" ); } ); width = 208; } ); }, { glyphname = aMem.medi.LamMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "159 196 OFFCURVE", "169 190 OFFCURVE", "173 172 CURVE", "174 165 OFFCURVE", "180 158 OFFCURVE", "192 151 CURVE SMOOTH", "204 144 OFFCURVE", "221 134 OFFCURVE", "244 123 CURVE SMOOTH", "267 112 OFFCURVE", "280 105 OFFCURVE", "286 100 CURVE SMOOTH", "292 95 OFFCURVE", "294 90 OFFCURVE", "293 85 CURVE SMOOTH", "288 43 OFFCURVE", "282 12 OFFCURVE", "274 -9 CURVE SMOOTH", "273 -12 OFFCURVE", "270 -14 OFFCURVE", "264 -14 CURVE SMOOTH", "258 -14 OFFCURVE", "254 -14 OFFCURVE", "251 -11 CURVE SMOOTH", "215 25 OFFCURVE", "185 45 OFFCURVE", "159 52 CURVE SMOOTH", "133 59 OFFCURVE", "97 48 OFFCURVE", "51 20 CURVE SMOOTH", "29 7 OFFCURVE", "12 0 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-11 4 OFFCURVE", "-14 13 CURVE", "-30 62 OFFCURVE", "-25 88 OFFCURVE", "0 90 CURVE SMOOTH", "43 94 OFFCURVE", "90 106 OFFCURVE", "139 127 CURVE", "128 168 OFFCURVE", "128 189 OFFCURVE", "141 192 CURVE" ); } ); width = 147; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "111 178 OFFCURVE", "117 201 OFFCURVE", "137 206 CURVE SMOOTH", "157 211 OFFCURVE", "172 205 OFFCURVE", "182 190 CURVE SMOOTH", "185 184 OFFCURVE", "187 180 OFFCURVE", "188 176 CURVE SMOOTH", "189 169 OFFCURVE", "206 157 OFFCURVE", "238 142 CURVE SMOOTH", "270 127 OFFCURVE", "290 116 OFFCURVE", "298 109 CURVE SMOOTH", "306 102 OFFCURVE", "309 94 OFFCURVE", "308 84 CURVE SMOOTH", "303 41 OFFCURVE", "296 8 OFFCURVE", "288 -14 CURVE", "284 -23 OFFCURVE", "277 -28 OFFCURVE", "266 -29 CURVE SMOOTH", "255 -30 OFFCURVE", "247 -28 OFFCURVE", "241 -22 CURVE SMOOTH", "207 12 OFFCURVE", "179 32 OFFCURVE", "156 38 CURVE SMOOTH", "133 44 OFFCURVE", "100 33 OFFCURVE", "56 6 CURVE SMOOTH", "12 -21 OFFCURVE", "-17 -21 OFFCURVE", "-28 8 CURVE", "-44 57 OFFCURVE", "-40 87 OFFCURVE", "-18 100 CURVE SMOOTH", "-13 103 OFFCURVE", "-7 104 OFFCURVE", "-1 105 CURVE SMOOTH", "37 109 OFFCURVE", "77 119 OFFCURVE", "121 136 CURVE" ); } ); width = 147; } ); }, { glyphname = aLam.init.LamAlfIsol; layers = ( { anchors = ( { name = DotAbove; position = "{190, 837}"; }, { name = Stroke; position = "{199, 535}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; }, { name = TwoDotsAbove; position = "{132, 806}"; }, { name = TwoDotsBelow; position = "{137, -73}"; }, { name = VAbove; position = "{54, 678}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "37 34 OFFCURVE", "14 24 OFFCURVE", "-14 23 CURVE SMOOTH", "-32 23 OFFCURVE", "-40 26 OFFCURVE", "-40 33 CURVE SMOOTH", "-40 40 OFFCURVE", "-32 48 OFFCURVE", "-16 57 CURVE SMOOTH", "92 117 OFFCURVE", "153 226 OFFCURVE", "168 386 CURVE SMOOTH", "176 468 OFFCURVE", "177 550 OFFCURVE", "171 631 CURVE SMOOTH", "169 657 OFFCURVE", "170 673 OFFCURVE", "174 680 CURVE SMOOTH", "188 705 OFFCURVE", "196 720 OFFCURVE", "199 724 CURVE SMOOTH", "202 728 OFFCURVE", "205 730 OFFCURVE", "209 729 CURVE SMOOTH", "213 728 OFFCURVE", "216 726 OFFCURVE", "217 722 CURVE SMOOTH", "227 683 OFFCURVE", "237 658 OFFCURVE", "247 647 CURVE SMOOTH", "257 636 OFFCURVE", "257 626 OFFCURVE", "248 617 CURVE SMOOTH", "220 588 LINE", "223 513 OFFCURVE", "214 427 OFFCURVE", "195 329 CURVE SMOOTH", "173 214 OFFCURVE", "127 122 OFFCURVE", "57 54 CURVE SMOOTH" ); } ); width = 302; }, { anchors = ( { name = DotAbove; position = "{190, 837}"; }, { name = Stroke; position = "{199, 535}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; }, { name = TwoDotsAbove; position = "{132, 806}"; }, { name = TwoDotsBelow; position = "{137, -73}"; }, { name = VAbove; position = "{54, 678}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "44 21 OFFCURVE", "20 10 OFFCURVE", "-5 9 CURVE SMOOTH", "-30 8 OFFCURVE", "-42 17 OFFCURVE", "-42 34 CURVE SMOOTH", "-42 41 OFFCURVE", "-28 53 OFFCURVE", "0 70 CURVE", "137 149 OFFCURVE", "193 335 OFFCURVE", "168 630 CURVE SMOOTH", "165 659 OFFCURVE", "168 678 OFFCURVE", "174 688 CURVE SMOOTH", "202 732 LINE SMOOTH", "206 739 OFFCURVE", "210 741 OFFCURVE", "215 740 CURVE SMOOTH", "222 739 OFFCURVE", "227 735 OFFCURVE", "230 726 CURVE SMOOTH", "243 686 OFFCURVE", "255 660 OFFCURVE", "263 650 CURVE SMOOTH", "274 637 OFFCURVE", "272 623 OFFCURVE", "258 607 CURVE", "235 583 LINE", "237 508 OFFCURVE", "228 422 OFFCURVE", "209 326 CURVE SMOOTH", "186 207 OFFCURVE", "138 112 OFFCURVE", "67 43 CURVE SMOOTH" ); } ); width = 302; } ); }, { glyphname = aAlf.fina.LamAlfIsol; layers = ( { anchors = ( { name = DigitAbove; position = "{24, 635}"; }, { name = HamzaAbove; position = "{212, 786}"; }, { name = HamzaBelow; position = "{270, -137}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "375 50 OFFCURVE", "436 51 OFFCURVE", "464 61 CURVE", "457 126 OFFCURVE", "410 219 OFFCURVE", "323 341 CURVE SMOOTH", "260 429 OFFCURVE", "214 489 OFFCURVE", "183 518 CURVE", "168 492 LINE SMOOTH", "159 486 OFFCURVE", "151 488 OFFCURVE", "144 496 CURVE SMOOTH", "75 570 LINE SMOOTH", "65 581 OFFCURVE", "61 594 OFFCURVE", "63 609 CURVE SMOOTH", "77 696 LINE SMOOTH", "78 705 OFFCURVE", "81 710 OFFCURVE", "86 710 CURVE SMOOTH", "100 711 OFFCURVE", "137 675 OFFCURVE", "198 601 CURVE SMOOTH", "259 528 OFFCURVE", "312 458 OFFCURVE", "356 391 CURVE SMOOTH", "450 248 OFFCURVE", "501 131 OFFCURVE", "507 42 CURVE SMOOTH", "509 4 OFFCURVE", "500 -17 OFFCURVE", "478 -23 CURVE SMOOTH", "416 -39 OFFCURVE", "348 -41 OFFCURVE", "274 -29 CURVE SMOOTH", "266 -28 OFFCURVE", "262 -26 OFFCURVE", "260 -22 CURVE SMOOTH", "248 7 OFFCURVE", "250 31 OFFCURVE", "265 51 CURVE SMOOTH", "270 58 OFFCURVE", "275 61 OFFCURVE", "279 60 CURVE SMOOTH" ); } ); width = 340; }, { anchors = ( { name = DigitAbove; position = "{24, 635}"; }, { name = HamzaAbove; position = "{212, 786}"; }, { name = HamzaBelow; position = "{270, -137}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "368 57 OFFCURVE", "432 56 OFFCURVE", "468 62 CURVE", "444 169 OFFCURVE", "352 318 OFFCURVE", "194 506 CURVE", "180 481 LINE SMOOTH", "169 462 OFFCURVE", "153 465 OFFCURVE", "133 486 CURVE SMOOTH", "64 560 LINE SMOOTH", "51 574 OFFCURVE", "46 591 OFFCURVE", "49 611 CURVE SMOOTH", "62 698 LINE SMOOTH", "69 742 OFFCURVE", "98 736 OFFCURVE", "149 681 CURVE SMOOTH", "226 598 OFFCURVE", "300 503 OFFCURVE", "369 399 CURVE SMOOTH", "465 253 OFFCURVE", "515 135 OFFCURVE", "522 43 CURVE", "524 -3 OFFCURVE", "511 -29 OFFCURVE", "481 -37 CURVE SMOOTH", "417 -53 OFFCURVE", "347 -56 OFFCURVE", "272 -44 CURVE", "258 -41 OFFCURVE", "249 -35 OFFCURVE", "246 -27 CURVE SMOOTH", "235 7 OFFCURVE", "237 32 OFFCURVE", "249 50 CURVE SMOOTH", "257 61 OFFCURVE", "266 66 OFFCURVE", "277 65 CURVE SMOOTH" ); } ); width = 340; } ); }, { glyphname = aLam.init.LamHaaMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{65, 824}"; }, { name = Stroke; position = "{86, 540}"; }, { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; }, { name = TwoDotsAbove; position = "{7, 824}"; }, { name = TwoDotsBelow; position = "{59, -73}"; }, { name = VAbove; position = "{65, 775}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "55 713 OFFCURVE", "58 721 OFFCURVE", "60 724 CURVE SMOOTH", "62 727 OFFCURVE", "65 729 OFFCURVE", "68 729 CURVE SMOOTH", "71 729 OFFCURVE", "74 727 OFFCURVE", "75 724 CURVE SMOOTH", "87 692 OFFCURVE", "103 666 OFFCURVE", "123 646 CURVE SMOOTH", "128 641 OFFCURVE", "128 634 OFFCURVE", "123 627 CURVE", "98 593 LINE SMOOTH", "108 528 LINE SMOOTH", "118 455 OFFCURVE", "115 409 OFFCURVE", "97 390 CURVE SMOOTH", "86 378 OFFCURVE", "61 364 OFFCURVE", "20 347 CURVE", "-9 379 OFFCURVE", "-5 396 OFFCURVE", "32 400 CURVE SMOOTH", "55 403 OFFCURVE", "73 407 OFFCURVE", "87 412 CURVE", "88 421 OFFCURVE", "83 451 OFFCURVE", "74 503 CURVE SMOOTH", "63 565 OFFCURVE", "53 613 OFFCURVE", "43 646 CURVE SMOOTH", "38 662 OFFCURVE", "37 672 OFFCURVE", "39 676 CURVE SMOOTH", "41 680 OFFCURVE", "45 689 OFFCURVE", "50 701 CURVE SMOOTH" ); } ); width = 471; }, { anchors = ( { name = DotAbove; position = "{65, 824}"; }, { name = Stroke; position = "{86, 540}"; }, { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; }, { name = TwoDotsAbove; position = "{7, 824}"; }, { name = TwoDotsBelow; position = "{59, -73}"; }, { name = VAbove; position = "{65, 775}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "71 438 OFFCURVE", "65 470 OFFCURVE", "56 519 CURVE SMOOTH", "47 568 OFFCURVE", "39 606 OFFCURVE", "32 630 CURVE SMOOTH", "25 654 OFFCURVE", "22 668 OFFCURVE", "23 673 CURVE SMOOTH", "24 678 OFFCURVE", "25 682 OFFCURVE", "27 685 CURVE SMOOTH", "29 688 OFFCURVE", "32 695 OFFCURVE", "37 707 CURVE SMOOTH", "42 719 OFFCURVE", "46 728 OFFCURVE", "49 734 CURVE SMOOTH", "52 740 OFFCURVE", "59 743 OFFCURVE", "68 743 CURVE SMOOTH", "77 743 OFFCURVE", "84 739 OFFCURVE", "88 729 CURVE", "99 699 OFFCURVE", "115 675 OFFCURVE", "133 656 CURVE", "143 645 OFFCURVE", "144 632 OFFCURVE", "135 618 CURVE", "113 589 LINE", "123 530 LINE", "134 453 OFFCURVE", "128 403 OFFCURVE", "107 380 CURVE", "94 367 OFFCURVE", "67 351 OFFCURVE", "25 333 CURVE SMOOTH", "16 329 LINE", "9 337 LINE SMOOTH", "-10 359 OFFCURVE", "-18 377 OFFCURVE", "-12 392 CURVE", "-6 405 OFFCURVE", "7 412 OFFCURVE", "26 414 CURVE SMOOTH", "45 416 OFFCURVE", "61 420 OFFCURVE", "72 423 CURVE" ); } ); width = 471; } ); }, { glyphname = aHaa.medi.LamHaaMemInit; layers = ( { anchors = ( { name = DigitBelow; position = "{362, 5}"; }, { name = DotAbove; position = "{362, 537}"; }, { name = DotBelow; position = "{362, 5}"; }, { name = HamzaAbove; position = "{362, 537}"; }, { name = HamzaBelow; position = "{362, 5}"; }, { name = TaaAbove; position = "{362, 537}"; }, { name = TaaBelow; position = "{362, 200}"; }, { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; }, { name = TwoDotsAbove; position = "{308, 537}"; }, { name = TwoDotsBelow; position = "{308, 5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-58 340 OFFCURVE", "-51 357 OFFCURVE", "-38 371 CURVE SMOOTH", "-25 385 OFFCURVE", "-2 394 OFFCURVE", "31 398 CURVE SMOOTH", "64 402 OFFCURVE", "95 397 OFFCURVE", "123 386 CURVE", "224 344 OFFCURVE", "285 321 OFFCURVE", "306 316 CURVE SMOOTH", "357 305 OFFCURVE", "401 300 OFFCURVE", "435 298 CURVE SMOOTH", "439 298 OFFCURVE", "439 295 OFFCURVE", "438 289 CURVE SMOOTH", "433 265 OFFCURVE", "424 244 OFFCURVE", "411 225 CURVE SMOOTH", "409 222 OFFCURVE", "406 221 OFFCURVE", "402 222 CURVE SMOOTH", "362 231 OFFCURVE", "328 237 OFFCURVE", "301 239 CURVE SMOOTH", "220 245 OFFCURVE", "131 231 OFFCURVE", "32 197 CURVE SMOOTH", "15 191 OFFCURVE", "0 191 OFFCURVE", "-12 197 CURVE SMOOTH", "-24 203 OFFCURVE", "-25 211 OFFCURVE", "-16 219 CURVE SMOOTH", "1 235 OFFCURVE", "58 254 OFFCURVE", "157 276 CURVE SMOOTH", "161 277 OFFCURVE", "163 278 OFFCURVE", "163 280 CURVE SMOOTH", "162 287 OFFCURVE", "136 297 OFFCURVE", "85 311 CURVE SMOOTH", "34 325 OFFCURVE", "-13 326 OFFCURVE", "-55 312 CURVE SMOOTH", "-60 310 OFFCURVE", "-62 312 OFFCURVE", "-61 319 CURVE SMOOTH" ); } ); width = 30; }, { anchors = ( { name = DigitBelow; position = "{362, 5}"; }, { name = DotAbove; position = "{362, 537}"; }, { name = DotBelow; position = "{362, 5}"; }, { name = HamzaAbove; position = "{362, 537}"; }, { name = HamzaBelow; position = "{362, 5}"; }, { name = TaaAbove; position = "{362, 537}"; }, { name = TaaBelow; position = "{362, 200}"; }, { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; }, { name = TwoDotsAbove; position = "{308, 537}"; }, { name = TwoDotsBelow; position = "{308, 5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-73 345 OFFCURVE", "-63 365 OFFCURVE", "-48 382 CURVE SMOOTH", "-33 399 OFFCURVE", "-7 408 OFFCURVE", "29 412 CURVE SMOOTH", "65 416 OFFCURVE", "98 412 OFFCURVE", "129 400 CURVE", "229 358 OFFCURVE", "288 335 OFFCURVE", "309 331 CURVE SMOOTH", "360 320 OFFCURVE", "402 314 OFFCURVE", "436 312 CURVE", "450 311 OFFCURVE", "456 302 OFFCURVE", "453 286 CURVE", "447 259 OFFCURVE", "437 236 OFFCURVE", "423 216 CURVE SMOOTH", "417 208 OFFCURVE", "409 206 OFFCURVE", "399 208 CURVE SMOOTH", "360 217 OFFCURVE", "327 222 OFFCURVE", "300 224 CURVE SMOOTH", "221 230 OFFCURVE", "133 216 OFFCURVE", "36 183 CURVE", "7 174 OFFCURVE", "-15 176 OFFCURVE", "-30 192 CURVE", "-41 204 OFFCURVE", "-38 218 OFFCURVE", "-23 232 CURVE SMOOTH", "-8 246 OFFCURVE", "41 263 OFFCURVE", "125 283 CURVE", "113 287 OFFCURVE", "99 292 OFFCURVE", "81 297 CURVE SMOOTH", "33 311 OFFCURVE", "-11 311 OFFCURVE", "-50 298 CURVE SMOOTH", "-61 294 OFFCURVE", "-69 298 OFFCURVE", "-74 310 CURVE SMOOTH", "-76 314 OFFCURVE", "-76 318 OFFCURVE", "-76 321 CURVE SMOOTH" ); } ); width = 30; } ); }, { glyphname = aMem.medi.LamHaaMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "154 223 OFFCURVE", "172 214 OFFCURVE", "190 196 CURVE SMOOTH", "238 149 OFFCURVE", "260 101 OFFCURVE", "256 52 CURVE SMOOTH", "255 36 OFFCURVE", "246 29 OFFCURVE", "227 33 CURVE SMOOTH", "188 40 OFFCURVE", "152 64 OFFCURVE", "118 105 CURVE SMOOTH", "110 115 OFFCURVE", "103 113 OFFCURVE", "98 101 CURVE SMOOTH", "74 37 OFFCURVE", "41 3 OFFCURVE", "0 0 CURVE SMOOTH", "-5 0 OFFCURVE", "-8 4 OFFCURVE", "-12 14 CURVE SMOOTH", "-21 39 OFFCURVE", "-23 60 OFFCURVE", "-18 76 CURVE SMOOTH", "-15 84 OFFCURVE", "-9 88 OFFCURVE", "0 90 CURVE SMOOTH", "44 97 OFFCURVE", "73 118 OFFCURVE", "89 153 CURVE SMOOTH", "107 193 OFFCURVE", "123 216 OFFCURVE", "136 222 CURVE" ); } ); width = 147; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "149 245 OFFCURVE", "172 235 OFFCURVE", "200 207 CURVE SMOOTH", "248 158 OFFCURVE", "270 105 OFFCURVE", "266 51 CURVE", "265 27 OFFCURVE", "249 19 OFFCURVE", "220 25 CURVE SMOOTH", "182 33 OFFCURVE", "148 58 OFFCURVE", "119 101 CURVE SMOOTH", "111 113 OFFCURVE", "106 113 OFFCURVE", "102 100 CURVE SMOOTH", "82 27 OFFCURVE", "49 -11 OFFCURVE", "1 -15 CURVE SMOOTH", "-11 -16 OFFCURVE", "-20 -8 OFFCURVE", "-26 9 CURVE SMOOTH", "-36 37 OFFCURVE", "-38 60 OFFCURVE", "-33 76 CURVE SMOOTH", "-28 92 OFFCURVE", "-20 102 OFFCURVE", "-8 104 CURVE SMOOTH", "38 111 OFFCURVE", "67 128 OFFCURVE", "79 155 CURVE", "103 204 OFFCURVE", "121 231 OFFCURVE", "131 236 CURVE SMOOTH" ); } ); width = 147; } ); }, { glyphname = aBaa.medi.BaaBaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{122, 293}"; }, { name = DigitBelow; position = "{49, -146}"; }, { name = DotAbove; position = "{122, 293}"; }, { name = DotBelow; position = "{49, -146}"; }, { name = HamzaAbove; position = "{122, 293}"; }, { name = HamzaBelow; position = "{98, -73}"; }, { name = RingBelow; position = "{122, 73}"; }, { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; }, { name = TwoDotsAbove; position = "{59, 293}"; }, { name = TwoDotsBelow; position = "{49, -103}"; }, { name = VAbove; position = "{122, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "174 51 OFFCURVE", "160 41 OFFCURVE", "148 48 CURVE SMOOTH", "145 49 OFFCURVE", "136 57 OFFCURVE", "118 70 CURVE", "77 24 OFFCURVE", "38 1 OFFCURVE", "0 0 CURVE SMOOTH", "-14 0 OFFCURVE", "-23 14 OFFCURVE", "-27 44 CURVE SMOOTH", "-31 73 OFFCURVE", "-22 88 OFFCURVE", "0 91 CURVE SMOOTH", "59 98 OFFCURVE", "100 117 OFFCURVE", "125 150 CURVE SMOOTH", "132 159 OFFCURVE", "141 159 OFFCURVE", "151 151 CURVE SMOOTH", "154 149 OFFCURVE", "160 143 OFFCURVE", "171 133 CURVE SMOOTH", "193 114 OFFCURVE", "199 96 OFFCURVE", "188 77 CURVE SMOOTH" ); } ); width = 168; }, { anchors = ( { name = DigitAbove; position = "{122, 293}"; }, { name = DigitBelow; position = "{49, -146}"; }, { name = DotAbove; position = "{122, 293}"; }, { name = DotBelow; position = "{49, -146}"; }, { name = HamzaAbove; position = "{122, 293}"; }, { name = HamzaBelow; position = "{98, -73}"; }, { name = RingBelow; position = "{122, 73}"; }, { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; }, { name = TwoDotsAbove; position = "{59, 293}"; }, { name = TwoDotsBelow; position = "{49, -103}"; }, { name = VAbove; position = "{122, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "182 34 OFFCURVE", "163 25 OFFCURVE", "142 39 CURVE SMOOTH", "134 45 OFFCURVE", "125 49 OFFCURVE", "117 55 CURVE", "74 9 OFFCURVE", "35 -14 OFFCURVE", "0 -15 CURVE SMOOTH", "-22 -15 OFFCURVE", "-36 4 OFFCURVE", "-42 42 CURVE SMOOTH", "-47 80 OFFCURVE", "-34 101 OFFCURVE", "-2 105 CURVE", "56 112 OFFCURVE", "98 130 OFFCURVE", "121 159 CURVE SMOOTH", "133 173 OFFCURVE", "144 176 OFFCURVE", "156 166 CURVE SMOOTH", "166 158 OFFCURVE", "174 151 OFFCURVE", "181 146 CURVE SMOOTH", "209 122 OFFCURVE", "216 96 OFFCURVE", "201 69 CURVE SMOOTH" ); } ); width = 168; } ); }, { glyphname = aAyn.medi.AynYaaFina; layers = ( { anchors = ( { name = DotAbove; position = "{206, 464}"; }, { name = DotBelow; position = "{293, -244}"; }, { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{151, 464}"; }, { name = exit; position = "{0, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "100 210 OFFCURVE", "115 236 OFFCURVE", "140 252 CURVE SMOOTH", "204 292 OFFCURVE", "264 295 OFFCURVE", "318 259 CURVE SMOOTH", "346 240 OFFCURVE", "364 220 OFFCURVE", "372 199 CURVE SMOOTH", "375 192 OFFCURVE", "373 181 OFFCURVE", "367 167 CURVE SMOOTH", "361 153 OFFCURVE", "346 136 OFFCURVE", "321 118 CURVE", "349 100 OFFCURVE", "380 90 OFFCURVE", "411 90 CURVE SMOOTH", "429 90 OFFCURVE", "437 80 OFFCURVE", "434 58 CURVE SMOOTH", "429 20 OFFCURVE", "422 0 OFFCURVE", "411 0 CURVE SMOOTH", "373 0 OFFCURVE", "318 25 OFFCURVE", "248 74 CURVE SMOOTH", "245 76 OFFCURVE", "241 76 OFFCURVE", "235 74 CURVE SMOOTH", "132 41 OFFCURVE", "55 9 OFFCURVE", "5 -23 CURVE SMOOTH", "-5 -29 OFFCURVE", "-14 -28 OFFCURVE", "-21 -20 CURVE SMOOTH", "-30 -9 OFFCURVE", "-32 3 OFFCURVE", "-30 16 CURVE SMOOTH", "-28 24 OFFCURVE", "-25 31 OFFCURVE", "-19 37 CURVE SMOOTH", "3 57 OFFCURVE", "68 87 OFFCURVE", "174 125 CURVE", "148 143 OFFCURVE", "125 154 OFFCURVE", "104 158 CURVE SMOOTH", "96 160 OFFCURVE", "93 165 OFFCURVE", "94 173 CURVE SMOOTH" ); } ); width = 410; }, { anchors = ( { name = DotAbove; position = "{206, 464}"; }, { name = DotBelow; position = "{293, -244}"; }, { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{151, 464}"; }, { name = exit; position = "{0, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "86 217 OFFCURVE", "103 247 OFFCURVE", "132 265 CURVE SMOOTH", "202 308 OFFCURVE", "267 310 OFFCURVE", "326 271 CURVE SMOOTH", "357 250 OFFCURVE", "376 228 OFFCURVE", "385 204 CURVE", "389 193 OFFCURVE", "388 180 OFFCURVE", "382 165 CURVE SMOOTH", "376 150 OFFCURVE", "364 134 OFFCURVE", "347 120 CURVE", "368 110 OFFCURVE", "389 105 OFFCURVE", "410 105 CURVE SMOOTH", "431 105 OFFCURVE", "444 95 OFFCURVE", "448 75 CURVE SMOOTH", "449 69 OFFCURVE", "448 56 OFFCURVE", "446 37 CURVE SMOOTH", "442 3 OFFCURVE", "430 -15 OFFCURVE", "411 -15 CURVE", "370 -15 OFFCURVE", "313 11 OFFCURVE", "241 61 CURVE", "240 61 OFFCURVE", "240 60 OFFCURVE", "239 60 CURVE SMOOTH", "137 27 OFFCURVE", "62 -4 OFFCURVE", "13 -35 CURVE SMOOTH", "-4 -45 OFFCURVE", "-19 -44 OFFCURVE", "-31 -29 CURVE SMOOTH", "-43 -14 OFFCURVE", "-48 0 OFFCURVE", "-45 14 CURVE SMOOTH", "-42 28 OFFCURVE", "-37 40 OFFCURVE", "-29 48 CURVE", "-7 68 OFFCURVE", "50 94 OFFCURVE", "141 128 CURVE", "126 136 OFFCURVE", "112 142 OFFCURVE", "101 144 CURVE SMOOTH", "90 146 OFFCURVE", "83 152 OFFCURVE", "80 163 CURVE SMOOTH", "79 167 OFFCURVE", "78 171 OFFCURVE", "79 175 CURVE SMOOTH" ); } ); width = 410; } ); }, { glyphname = aMem.init.MemRaaIsol; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "38 110 OFFCURVE", "82 128 OFFCURVE", "131 144 CURVE SMOOTH", "136 146 OFFCURVE", "135 148 OFFCURVE", "129 150 CURVE SMOOTH", "112 157 LINE SMOOTH", "102 161 OFFCURVE", "98 168 OFFCURVE", "100 177 CURVE SMOOTH", "109 216 OFFCURVE", "119 244 OFFCURVE", "130 260 CURVE SMOOTH", "137 269 OFFCURVE", "144 273 OFFCURVE", "153 273 CURVE SMOOTH", "193 271 OFFCURVE", "227 262 OFFCURVE", "255 246 CURVE SMOOTH", "281 231 OFFCURVE", "293 201 OFFCURVE", "288 157 CURVE", "283 131 OFFCURVE", "266 111 OFFCURVE", "238 96 CURVE SMOOTH", "201 76 OFFCURVE", "163 61 OFFCURVE", "123 49 CURVE SMOOTH", "78 36 OFFCURVE", "37 19 OFFCURVE", "0 0 CURVE", "-12 6 OFFCURVE", "-19 16 OFFCURVE", "-19 31 CURVE SMOOTH", "-19 47 OFFCURVE", "-16 60 OFFCURVE", "-10 71 CURVE SMOOTH", "0 90 LINE" ); } ); width = 346; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "23 119 OFFCURVE", "59 134 OFFCURVE", "98 148 CURVE", "87 156 OFFCURVE", "82 167 OFFCURVE", "85 180 CURVE SMOOTH", "94 221 OFFCURVE", "105 250 OFFCURVE", "116 265 CURVE SMOOTH", "127 280 OFFCURVE", "140 288 OFFCURVE", "154 288 CURVE", "197 286 OFFCURVE", "233 276 OFFCURVE", "264 258 CURVE SMOOTH", "295 240 OFFCURVE", "308 206 OFFCURVE", "302 155 CURVE", "296 124 OFFCURVE", "277 100 OFFCURVE", "245 83 CURVE SMOOTH", "207 63 OFFCURVE", "166 47 OFFCURVE", "124 34 CURVE SMOOTH", "82 21 OFFCURVE", "40 5 OFFCURVE", "0 -16 CURVE", "-6 -13 LINE SMOOTH", "-24 -5 OFFCURVE", "-33 8 OFFCURVE", "-33 28 CURVE SMOOTH", "-33 48 OFFCURVE", "-30 65 OFFCURVE", "-23 78 CURVE SMOOTH", "-11 101 LINE" ); } ); width = 346; } ); }, { glyphname = aRaa.fina.MemRaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{355, 416}"; }, { name = DotAlt; position = "{212, -75}"; }, { name = DotBelow; position = "{181, -475}"; }, { name = HamzaAbove; position = "{356, 355}"; }, { name = RingBelow; position = "{180, -263}"; }, { name = Stroke; position = "{361, -102}"; }, { name = TaaAbove; position = "{355, 355}"; }, { name = TashkilAbove; position = "{248, 410}"; }, { name = TashkilBelow; position = "{259, -327}"; }, { name = TwoDotsAbove; position = "{355, 416}"; }, { name = VAbove; position = "{355, 355}"; } ); components = ( { name = aRaa.fina.alt2; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { anchors = ( { name = DotAbove; position = "{355, 416}"; }, { name = DotAlt; position = "{212, -75}"; }, { name = DotBelow; position = "{181, -475}"; }, { name = HamzaAbove; position = "{356, 355}"; }, { name = RingBelow; position = "{180, -263}"; }, { name = Stroke; position = "{361, -102}"; }, { name = TaaAbove; position = "{355, 355}"; }, { name = TashkilAbove; position = "{248, 801}"; }, { name = TashkilBelow; position = "{259, -327}"; }, { name = TwoDotsAbove; position = "{355, 416}"; }, { name = VAbove; position = "{355, 355}"; } ); components = ( { name = aRaa.fina.alt2; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = aFaa.init.FaaHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{42, 737}"; }, { name = DotBelow; position = "{293, 298}"; }, { name = HamzaAbove; position = "{66, 737}"; }, { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; }, { name = TwoDotsAbove; position = "{-7, 737}"; }, { name = TwoDotsBelow; position = "{269, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "172 370 OFFCURVE", "166 383 OFFCURVE", "157 394 CURVE SMOOTH", "148 405 OFFCURVE", "141 405 OFFCURVE", "134 396 CURVE SMOOTH", "103 351 OFFCURVE", "72 331 OFFCURVE", "41 335 CURVE SMOOTH", "-10 342 OFFCURVE", "-22 393 OFFCURVE", "4 487 CURVE SMOOTH", "21 548 OFFCURVE", "48 584 OFFCURVE", "84 594 CURVE SMOOTH", "100 599 OFFCURVE", "119 588 OFFCURVE", "141 562 CURVE SMOOTH", "179 517 OFFCURVE", "199 455 OFFCURVE", "202 375 CURVE SMOOTH", "203 347 OFFCURVE", "196 319 OFFCURVE", "182 292 CURVE", "144 223 OFFCURVE", "82 189 OFFCURVE", "-5 192 CURVE SMOOTH", "-47 193 OFFCURVE", "-55 210 OFFCURVE", "-31 240 CURVE SMOOTH", "-22 251 OFFCURVE", "-16 257 OFFCURVE", "-13 259 CURVE SMOOTH", "-6 263 OFFCURVE", "3 266 OFFCURVE", "13 268 CURVE SMOOTH", "114 287 OFFCURVE", "168 315 OFFCURVE", "175 354 CURVE" ); }, { closed = 1; nodes = ( "34 454 OFFCURVE", "45 442 OFFCURVE", "61 441 CURVE", "78 441 OFFCURVE", "88 448 OFFCURVE", "94 465 CURVE", "81 479 OFFCURVE", "68 488 OFFCURVE", "57 489 CURVE SMOOTH", "46 490 OFFCURVE", "37 486 OFFCURVE", "30 477 CURVE" ); } ); width = 584; }, { anchors = ( { name = DotAbove; position = "{42, 737}"; }, { name = DotBelow; position = "{293, 298}"; }, { name = HamzaAbove; position = "{66, 737}"; }, { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; }, { name = TwoDotsAbove; position = "{-7, 737}"; }, { name = TwoDotsBelow; position = "{269, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "34 464 OFFCURVE", "45 452 OFFCURVE", "61 451 CURVE", "78 451 OFFCURVE", "88 458 OFFCURVE", "94 475 CURVE", "81 489 OFFCURVE", "68 497 OFFCURVE", "57 498 CURVE SMOOTH", "46 499 OFFCURVE", "37 496 OFFCURVE", "30 487 CURVE" ); }, { closed = 1; nodes = ( "164 369 OFFCURVE", "157 383 OFFCURVE", "145 396 CURVE", "107 343 OFFCURVE", "68 322 OFFCURVE", "28 333 CURVE SMOOTH", "-20 346 OFFCURVE", "-29 402 OFFCURVE", "0 500 CURVE SMOOTH", "20 567 OFFCURVE", "46 607 OFFCURVE", "80 618 CURVE SMOOTH", "102 625 OFFCURVE", "126 613 OFFCURVE", "152 581 CURVE SMOOTH", "187 538 OFFCURVE", "207 469 OFFCURVE", "210 375 CURVE SMOOTH", "211 343 OFFCURVE", "204 313 OFFCURVE", "188 285 CURVE SMOOTH", "148 211 OFFCURVE", "84 175 OFFCURVE", "-5 178 CURVE SMOOTH", "-33 179 OFFCURVE", "-50 186 OFFCURVE", "-56 200 CURVE SMOOTH", "-62 214 OFFCURVE", "-59 228 OFFCURVE", "-46 244 CURVE SMOOTH", "-33 260 OFFCURVE", "-24 269 OFFCURVE", "-17 273 CURVE SMOOTH", "-10 277 OFFCURVE", "-1 280 OFFCURVE", "10 282 CURVE SMOOTH", "104 299 OFFCURVE", "157 323 OFFCURVE", "165 355 CURVE" ); } ); width = 584; } ); }, { glyphname = aHaa.medi.FaaHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{254, -127}"; }, { name = DotAbove; position = "{488, 439}"; }, { name = DotBelow; position = "{254, -127}"; }, { name = HamzaAbove; position = "{439, 439}"; }, { name = HamzaBelow; position = "{254, -127}"; }, { name = TaaAbove; position = "{488, 439}"; }, { name = TaaBelow; position = "{254, 68}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; }, { name = TwoDotsAbove; position = "{391, 439}"; }, { name = TwoDotsBelow; position = "{200, -127}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = DigitBelow; position = "{254, -127}"; }, { name = DotAbove; position = "{488, 439}"; }, { name = DotBelow; position = "{254, -127}"; }, { name = HamzaAbove; position = "{439, 439}"; }, { name = HamzaBelow; position = "{254, -127}"; }, { name = TaaAbove; position = "{488, 439}"; }, { name = TaaBelow; position = "{254, 68}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; }, { name = TwoDotsAbove; position = "{391, 439}"; }, { name = TwoDotsBelow; position = "{200, -127}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = aHaa.init.HaaHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{541, -122}"; }, { name = DotAbove; position = "{541, 591}"; }, { name = DotBelow; position = "{541, -122}"; }, { name = HamzaAbove; position = "{541, 591}"; }, { name = HamzaBelow; position = "{541, -122}"; }, { name = TaaAbove; position = "{541, 591}"; }, { name = TaaBelow; position = "{541, 74}"; }, { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; }, { name = TwoDotsAbove; position = "{492, 591}"; }, { name = TwoDotsBelow; position = "{492, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "97 471 OFFCURVE", "128 499 OFFCURVE", "177 501 CURVE SMOOTH", "208 502 OFFCURVE", "249 486 OFFCURVE", "300 451 CURVE SMOOTH", "381 396 OFFCURVE", "473 364 OFFCURVE", "576 357 CURVE SMOOTH", "592 356 OFFCURVE", "595 349 OFFCURVE", "587 333 CURVE SMOOTH", "562 282 LINE SMOOTH", "560 277 OFFCURVE", "555 276 OFFCURVE", "549 278 CURVE SMOOTH", "501 291 OFFCURVE", "449 300 OFFCURVE", "392 304 CURVE SMOOTH", "304 310 OFFCURVE", "213 293 OFFCURVE", "121 254 CURVE SMOOTH", "60 231 LINE SMOOTH", "15 214 OFFCURVE", "-8 222 OFFCURVE", "-9 256 CURVE", "41 288 OFFCURVE", "145 320 OFFCURVE", "304 352 CURVE SMOOTH", "311 353 OFFCURVE", "312 355 OFFCURVE", "306 358 CURVE SMOOTH", "257 387 OFFCURVE", "216 406 OFFCURVE", "183 413 CURVE SMOOTH", "150 420 OFFCURVE", "121 419 OFFCURVE", "95 409 CURVE SMOOTH", "85 405 OFFCURVE", "80 407 OFFCURVE", "82 414 CURVE SMOOTH" ); } ); width = 653; }, { anchors = ( { name = DigitBelow; position = "{541, -122}"; }, { name = DotAbove; position = "{541, 591}"; }, { name = DotBelow; position = "{541, -122}"; }, { name = HamzaAbove; position = "{541, 591}"; }, { name = HamzaBelow; position = "{541, -122}"; }, { name = TaaAbove; position = "{541, 591}"; }, { name = TaaBelow; position = "{541, 74}"; }, { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; }, { name = TwoDotsAbove; position = "{492, 591}"; }, { name = TwoDotsBelow; position = "{492, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "84 481 OFFCURVE", "121 514 OFFCURVE", "177 516 CURVE SMOOTH", "211 517 OFFCURVE", "255 500 OFFCURVE", "309 463 CURVE SMOOTH", "388 410 OFFCURVE", "477 379 OFFCURVE", "577 372 CURVE SMOOTH", "589 371 OFFCURVE", "597 366 OFFCURVE", "602 358 CURVE SMOOTH", "607 350 OFFCURVE", "607 339 OFFCURVE", "600 326 CURVE SMOOTH", "575 275 LINE", "569 264 OFFCURVE", "558 260 OFFCURVE", "544 264 CURVE SMOOTH", "497 277 OFFCURVE", "446 285 OFFCURVE", "391 289 CURVE SMOOTH", "305 295 OFFCURVE", "217 279 OFFCURVE", "127 241 CURVE", "65 217 LINE SMOOTH", "20 200 OFFCURVE", "-8 207 OFFCURVE", "-19 235 CURVE SMOOTH", "-22 242 OFFCURVE", "-24 251 OFFCURVE", "-24 264 CURVE", "29 298 OFFCURVE", "128 330 OFFCURVE", "273 360 CURVE", "201 400 OFFCURVE", "143 412 OFFCURVE", "100 395 CURVE SMOOTH", "93 392 OFFCURVE", "87 391 OFFCURVE", "82 392 CURVE SMOOTH", "72 394 OFFCURVE", "67 401 OFFCURVE", "67 413 CURVE SMOOTH", "67 415 OFFCURVE", "68 416 OFFCURVE", "68 417 CURVE SMOOTH" ); } ); width = 653; } ); }, { glyphname = aLam.medi.LamQafFina; layers = ( { anchors = ( { name = DotAbove; position = "{134, 829}"; }, { name = Stroke; position = "{140, 569}"; }, { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{75, 829}"; }, { name = TwoDotsBelow; position = "{98, -73}"; }, { name = VAbove; position = "{134, 780}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "142 732 OFFCURVE", "148 728 OFFCURVE", "151 701 CURVE SMOOTH", "159 626 OFFCURVE", "168 542 OFFCURVE", "176 448 CURVE SMOOTH", "189 305 OFFCURVE", "200 215 OFFCURVE", "208 180 CURVE SMOOTH", "220 126 OFFCURVE", "243 96 OFFCURVE", "278 90 CURVE SMOOTH", "307 85 OFFCURVE", "312 58 OFFCURVE", "293 8 CURVE SMOOTH", "291 3 OFFCURVE", "286 0 OFFCURVE", "278 0 CURVE SMOOTH", "206 0 OFFCURVE", "166 78 OFFCURVE", "157 235 CURVE", "138 165 OFFCURVE", "113 121 OFFCURVE", "82 100 CURVE SMOOTH", "66 90 OFFCURVE", "43 80 OFFCURVE", "13 72 CURVE SMOOTH", "-1 68 OFFCURVE", "-9 76 OFFCURVE", "-13 97 CURVE SMOOTH", "-17 121 OFFCURVE", "-13 140 OFFCURVE", "-2 151 CURVE SMOOTH", "2 155 OFFCURVE", "6 157 OFFCURVE", "11 157 CURVE SMOOTH", "68 161 OFFCURVE", "106 182 OFFCURVE", "123 220 CURVE SMOOTH", "136 250 OFFCURVE", "137 309 OFFCURVE", "128 399 CURVE SMOOTH", "116 515 OFFCURVE", "108 595 OFFCURVE", "104 637 CURVE SMOOTH", "103 648 OFFCURVE", "104 656 OFFCURVE", "107 662 CURVE SMOOTH", "133 713 LINE SMOOTH" ); } ); width = 278; }, { anchors = ( { name = DotAbove; position = "{134, 829}"; }, { name = Stroke; position = "{140, 569}"; }, { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{75, 829}"; }, { name = TwoDotsBelow; position = "{98, -73}"; }, { name = VAbove; position = "{134, 780}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "126 732 OFFCURVE", "133 739 OFFCURVE", "141 740 CURVE SMOOTH", "154 741 OFFCURVE", "161 734 OFFCURVE", "164 717 CURVE SMOOTH", "169 685 OFFCURVE", "178 596 OFFCURVE", "191 452 CURVE SMOOTH", "204 308 OFFCURVE", "214 218 OFFCURVE", "222 183 CURVE SMOOTH", "233 136 OFFCURVE", "253 110 OFFCURVE", "281 105 CURVE SMOOTH", "321 98 OFFCURVE", "330 64 OFFCURVE", "307 3 CURVE", "302 -8 OFFCURVE", "292 -15 OFFCURVE", "278 -15 CURVE SMOOTH", "209 -14 OFFCURVE", "166 47 OFFCURVE", "149 167 CURVE", "132 130 OFFCURVE", "114 104 OFFCURVE", "94 91 CURVE SMOOTH", "74 78 OFFCURVE", "48 67 OFFCURVE", "17 58 CURVE", "-7 52 OFFCURVE", "-22 64 OFFCURVE", "-28 95 CURVE", "-33 124 OFFCURVE", "-28 146 OFFCURVE", "-13 161 CURVE", "-6 167 OFFCURVE", "2 171 OFFCURVE", "10 172 CURVE SMOOTH", "67 176 OFFCURVE", "102 197 OFFCURVE", "113 236 CURVE", "122 267 OFFCURVE", "121 331 OFFCURVE", "111 427 CURVE SMOOTH", "101 523 OFFCURVE", "94 593 OFFCURVE", "90 635 CURVE SMOOTH", "89 649 OFFCURVE", "90 661 OFFCURVE", "94 669 CURVE SMOOTH", "120 720 LINE SMOOTH" ); } ); width = 278; } ); }, { glyphname = aQaf.fina.LamQafFina; layers = ( { anchors = ( { name = DotAbove; position = "{476, 433}"; }, { name = HamzaAbove; position = "{476, 433}"; }, { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; }, { name = TwoDotsAbove; position = "{421, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "624 139 OFFCURVE", "625 112 OFFCURVE", "622 76 CURVE SMOOTH", "615 -11 OFFCURVE", "588 -74 OFFCURVE", "542 -116 CURVE SMOOTH", "472 -180 OFFCURVE", "390 -212 OFFCURVE", "296 -214 CURVE SMOOTH", "202 -216 OFFCURVE", "138 -194 OFFCURVE", "102 -148 CURVE SMOOTH", "66 -102 OFFCURVE", "57 -40 OFFCURVE", "74 37 CURVE SMOOTH", "87 95 OFFCURVE", "109 148 OFFCURVE", "141 198 CURVE SMOOTH", "143 202 OFFCURVE", "146 203 OFFCURVE", "150 203 CURVE SMOOTH", "154 203 OFFCURVE", "157 201 OFFCURVE", "159 198 CURVE SMOOTH", "161 195 OFFCURVE", "161 191 OFFCURVE", "158 186 CURVE SMOOTH", "132 143 OFFCURVE", "117 101 OFFCURVE", "113 62 CURVE", "106 -54 OFFCURVE", "167 -114 OFFCURVE", "297 -119 CURVE SMOOTH", "344 -121 OFFCURVE", "388 -116 OFFCURVE", "426 -104 CURVE SMOOTH", "529 -70 OFFCURVE", "585 -20 OFFCURVE", "594 47 CURVE SMOOTH", "595 54 OFFCURVE", "594 59 OFFCURVE", "593 64 CURVE", "565 58 OFFCURVE", "535 57 OFFCURVE", "501 58 CURVE SMOOTH", "467 59 OFFCURVE", "444 71 OFFCURVE", "431 94 CURVE SMOOTH", "418 117 OFFCURVE", "422 152 OFFCURVE", "441 198 CURVE SMOOTH", "460 244 OFFCURVE", "482 274 OFFCURVE", "507 286 CURVE SMOOTH", "521 293 OFFCURVE", "534 292 OFFCURVE", "546 283 CURVE SMOOTH", "578 260 OFFCURVE", "602 218 OFFCURVE", "619 157 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "508 203 OFFCURVE", "488 205 OFFCURVE", "471 177 CURVE SMOOTH", "468 172 OFFCURVE", "467 168 OFFCURVE", "470 165 CURVE", "482 153 OFFCURVE", "502 148 OFFCURVE", "530 153 CURVE SMOOTH", "539 155 OFFCURVE", "540 161 OFFCURVE", "532 171 CURVE SMOOTH" ); } ); width = 607; }, { anchors = ( { name = DotAbove; position = "{476, 433}"; }, { name = HamzaAbove; position = "{476, 433}"; }, { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; }, { name = TwoDotsAbove; position = "{421, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "508 203 OFFCURVE", "488 205 OFFCURVE", "471 177 CURVE SMOOTH", "468 172 OFFCURVE", "467 168 OFFCURVE", "470 165 CURVE", "482 153 OFFCURVE", "502 148 OFFCURVE", "530 153 CURVE SMOOTH", "539 155 OFFCURVE", "540 161 OFFCURVE", "532 171 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "635 134 OFFCURVE", "631 88 OFFCURVE", "618 21 CURVE SMOOTH", "605 -45 OFFCURVE", "582 -95 OFFCURVE", "547 -127 CURVE SMOOTH", "471 -196 OFFCURVE", "387 -231 OFFCURVE", "295 -231 CURVE SMOOTH", "172 -231 OFFCURVE", "97 -189 OFFCURVE", "70 -105 CURVE SMOOTH", "57 -65 OFFCURVE", "58 -14 OFFCURVE", "72 45 CURVE SMOOTH", "86 104 OFFCURVE", "108 155 OFFCURVE", "138 198 CURVE SMOOTH", "144 206 OFFCURVE", "151 208 OFFCURVE", "158 204 CURVE SMOOTH", "165 200 OFFCURVE", "165 191 OFFCURVE", "158 178 CURVE SMOOTH", "134 134 OFFCURVE", "121 91 OFFCURVE", "119 47 CURVE SMOOTH", "118 5 OFFCURVE", "132 -31 OFFCURVE", "162 -59 CURVE SMOOTH", "193 -88 OFFCURVE", "242 -102 OFFCURVE", "307 -102 CURVE SMOOTH", "404 -102 OFFCURVE", "481 -80 OFFCURVE", "536 -34 CURVE SMOOTH", "566 -10 OFFCURVE", "583 17 OFFCURVE", "589 47 CURVE", "499 34 OFFCURVE", "443 47 OFFCURVE", "422 87 CURVE SMOOTH", "409 113 OFFCURVE", "414 152 OFFCURVE", "438 205 CURVE SMOOTH", "462 258 OFFCURVE", "483 290 OFFCURVE", "502 300 CURVE SMOOTH", "521 310 OFFCURVE", "539 308 OFFCURVE", "555 295 CURVE SMOOTH", "586 270 OFFCURVE", "610 225 OFFCURVE", "628 161 CURVE" ); } ); width = 607; } ); }, { glyphname = aSen.init.AboveHaa; layers = ( { anchors = ( { name = DigitAbove; position = "{429, 617}"; }, { name = DotAbove; position = "{429, 617}"; }, { name = DotBelow; position = "{464, 39}"; }, { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = TwoDotsAbove; position = "{375, 617}"; }, { name = TwoDotsBelow; position = "{415, 39}"; }, { name = VAbove; position = "{429, 617}"; }, { name = exit; position = "{0, 203}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "580 523 OFFCURVE", "586 524 OFFCURVE", "593 515 CURVE SMOOTH", "600 506 OFFCURVE", "605 488 OFFCURVE", "608 460 CURVE SMOOTH", "613 408 OFFCURVE", "595 361 OFFCURVE", "556 321 CURVE SMOOTH", "548 313 OFFCURVE", "538 310 OFFCURVE", "526 311 CURVE SMOOTH", "482 314 OFFCURVE", "452 332 OFFCURVE", "435 367 CURVE SMOOTH", "432 374 OFFCURVE", "428 373 OFFCURVE", "424 366 CURVE SMOOTH", "395 314 OFFCURVE", "362 287 OFFCURVE", "326 285 CURVE SMOOTH", "301 284 OFFCURVE", "281 290 OFFCURVE", "266 304 CURVE SMOOTH", "251 318 OFFCURVE", "234 342 OFFCURVE", "214 377 CURVE SMOOTH", "209 385 OFFCURVE", "204 389 OFFCURVE", "197 391 CURVE SMOOTH", "190 393 OFFCURVE", "185 391 OFFCURVE", "182 384 CURVE SMOOTH", "148 301 OFFCURVE", "82 231 OFFCURVE", "-14 175 CURVE SMOOTH", "-43 158 OFFCURVE", "-45 176 OFFCURVE", "-19 230 CURVE SMOOTH", "-17 235 OFFCURVE", "-13 239 OFFCURVE", "-8 241 CURVE SMOOTH", "65 266 OFFCURVE", "123 324 OFFCURVE", "168 415 CURVE SMOOTH", "176 430 OFFCURVE", "183 443 OFFCURVE", "190 453 CURVE SMOOTH", "203 472 OFFCURVE", "216 473 OFFCURVE", "228 456 CURVE SMOOTH", "249 423 OFFCURVE", "269 403 OFFCURVE", "287 394 CURVE SMOOTH", "333 371 OFFCURVE", "372 375 OFFCURVE", "405 408 CURVE SMOOTH", "421 425 OFFCURVE", "438 454 OFFCURVE", "458 495 CURVE SMOOTH", "462 503 OFFCURVE", "468 506 OFFCURVE", "474 502 CURVE SMOOTH", "480 498 OFFCURVE", "481 493 OFFCURVE", "478 486 CURVE SMOOTH", "470 467 OFFCURVE", "466 454 OFFCURVE", "467 449 CURVE SMOOTH", "474 415 OFFCURVE", "507 399 OFFCURVE", "567 399 CURVE SMOOTH", "571 399 OFFCURVE", "574 401 OFFCURVE", "575 407 CURVE SMOOTH", "576 413 OFFCURVE", "569 422 OFFCURVE", "555 435 CURVE SMOOTH", "552 438 OFFCURVE", "551 444 OFFCURVE", "554 451 CURVE SMOOTH", "576 513 LINE SMOOTH" ); } ); width = 671; }, { anchors = ( { name = DigitAbove; position = "{429, 617}"; }, { name = DotAbove; position = "{429, 617}"; }, { name = DotBelow; position = "{464, 39}"; }, { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = TwoDotsAbove; position = "{375, 617}"; }, { name = TwoDotsBelow; position = "{415, 39}"; }, { name = VAbove; position = "{429, 617}"; }, { name = exit; position = "{0, 203}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "570 540 OFFCURVE", "580 543 OFFCURVE", "592 526 CURVE SMOOTH", "604 509 OFFCURVE", "610 489 OFFCURVE", "612 466 CURVE SMOOTH", "616 404 OFFCURVE", "598 353 OFFCURVE", "557 311 CURVE", "545 299 OFFCURVE", "531 294 OFFCURVE", "515 296 CURVE SMOOTH", "479 300 OFFCURVE", "451 317 OFFCURVE", "430 347 CURVE", "399 298 OFFCURVE", "364 273 OFFCURVE", "326 271 CURVE SMOOTH", "277 269 OFFCURVE", "237 302 OFFCURVE", "206 370 CURVE", "197 389 OFFCURVE", "189 390 OFFCURVE", "182 373 CURVE SMOOTH", "144 283 OFFCURVE", "81 214 OFFCURVE", "-7 169 CURVE SMOOTH", "-22 162 OFFCURVE", "-33 160 OFFCURVE", "-40 164 CURVE SMOOTH", "-55 171 OFFCURVE", "-55 187 OFFCURVE", "-43 212 CURVE SMOOTH", "-41 215 OFFCURVE", "-38 222 OFFCURVE", "-33 233 CURVE SMOOTH", "-28 244 OFFCURVE", "-21 251 OFFCURVE", "-13 254 CURVE SMOOTH", "60 278 OFFCURVE", "118 334 OFFCURVE", "160 422 CURVE", "174 449 OFFCURVE", "185 466 OFFCURVE", "195 475 CURVE SMOOTH", "209 488 OFFCURVE", "222 484 OFFCURVE", "233 464 CURVE", "266 415 OFFCURVE", "300 391 OFFCURVE", "336 391 CURVE SMOOTH", "384 391 OFFCURVE", "423 427 OFFCURVE", "455 501 CURVE SMOOTH", "460 512 OFFCURVE", "467 516 OFFCURVE", "476 512 CURVE SMOOTH", "485 508 OFFCURVE", "486 499 OFFCURVE", "480 485 CURVE SMOOTH", "474 471 OFFCURVE", "472 462 OFFCURVE", "472 457 CURVE", "475 427 OFFCURVE", "504 413 OFFCURVE", "560 414 CURVE", "555 421 OFFCURVE", "550 426 OFFCURVE", "544 431 CURVE SMOOTH", "538 436 OFFCURVE", "537 446 OFFCURVE", "542 460 CURVE SMOOTH", "562 518 LINE SMOOTH" ); } ); width = 671; } ); }, { glyphname = aMem.init.MemHaaInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{283, 801}"; }, { name = TashkilBelow; position = "{400, -327}"; }, { name = exit; position = "{0, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "205 336 OFFCURVE", "103 302 OFFCURVE", "13 242 CURVE SMOOTH", "-1 233 OFFCURVE", "-12 231 OFFCURVE", "-19 237 CURVE SMOOTH", "-34 249 OFFCURVE", "-23 269 OFFCURVE", "12 295 CURVE SMOOTH", "76 343 OFFCURVE", "155 377 OFFCURVE", "250 398 CURVE", "231 426 LINE SMOOTH", "224 436 OFFCURVE", "223 445 OFFCURVE", "227 453 CURVE SMOOTH", "248 494 OFFCURVE", "263 521 OFFCURVE", "274 532 CURVE SMOOTH", "282 541 OFFCURVE", "291 544 OFFCURVE", "299 539 CURVE SMOOTH", "349 512 OFFCURVE", "384 488 OFFCURVE", "405 467 CURVE SMOOTH", "412 460 OFFCURVE", "413 451 OFFCURVE", "409 438 CURVE SMOOTH", "404 423 OFFCURVE", "388 396 OFFCURVE", "359 358 CURVE SMOOTH", "353 350 OFFCURVE", "339 345 OFFCURVE", "319 344 CURVE SMOOTH" ); } ); width = 550; }, { anchors = ( { name = TashkilAbove; position = "{283, 801}"; }, { name = TashkilBelow; position = "{400, -327}"; }, { name = exit; position = "{0, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "208 321 OFFCURVE", "109 288 OFFCURVE", "21 230 CURVE", "1 217 OFFCURVE", "-16 216 OFFCURVE", "-28 226 CURVE SMOOTH", "-30 228 OFFCURVE", "-32 230 OFFCURVE", "-34 232 CURVE SMOOTH", "-36 235 OFFCURVE", "-38 239 OFFCURVE", "-39 242 CURVE SMOOTH", "-44 259 OFFCURVE", "-33 278 OFFCURVE", "-8 298 CURVE SMOOTH", "-5 301 OFFCURVE", "-1 304 OFFCURVE", "3 307 CURVE SMOOTH", "64 352 OFFCURVE", "138 386 OFFCURVE", "226 408 CURVE", "219 418 LINE", "209 433 OFFCURVE", "208 447 OFFCURVE", "214 460 CURVE SMOOTH", "235 502 OFFCURVE", "251 529 OFFCURVE", "263 542 CURVE SMOOTH", "276 556 OFFCURVE", "290 560 OFFCURVE", "305 553 CURVE SMOOTH", "306 552 LINE SMOOTH", "357 525 OFFCURVE", "394 500 OFFCURVE", "416 478 CURVE SMOOTH", "427 467 OFFCURVE", "429 451 OFFCURVE", "423 433 CURVE SMOOTH", "417 416 OFFCURVE", "400 389 OFFCURVE", "371 350 CURVE SMOOTH", "362 338 OFFCURVE", "344 331 OFFCURVE", "320 329 CURVE SMOOTH" ); } ); width = 550; } ); }, { glyphname = aBaa.init.BaaNonIsol; layers = ( { anchors = ( { name = DigitAbove; position = "{100, 508}"; }, { name = DigitBelow; position = "{104, -161}"; }, { name = DotAbove; position = "{100, 508}"; }, { name = DotBelow; position = "{104, -161}"; }, { name = DotBelowAlt; position = "{104, -366}"; }, { name = HamzaAbove; position = "{100, 508}"; }, { name = HamzaBelow; position = "{104, -161}"; }, { name = RingBelow; position = "{80, 191}"; }, { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; }, { name = TwoDotsAbove; position = "{45, 508}"; }, { name = TwoDotsBelow; position = "{49, -112}"; }, { name = TwoDotsBelowAlt; position = "{49, -366}"; }, { name = VAbove; position = "{100, 508}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; transform = "{1, 0, 0, 1, -10, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = DigitAbove; position = "{100, 508}"; }, { name = DigitBelow; position = "{104, -161}"; }, { name = DotAbove; position = "{100, 508}"; }, { name = DotBelow; position = "{104, -161}"; }, { name = DotBelowAlt; position = "{104, -366}"; }, { name = HamzaAbove; position = "{100, 508}"; }, { name = HamzaBelow; position = "{104, -161}"; }, { name = RingBelow; position = "{80, 191}"; }, { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; }, { name = TwoDotsAbove; position = "{45, 508}"; }, { name = TwoDotsBelow; position = "{49, -112}"; }, { name = TwoDotsBelowAlt; position = "{49, -366}"; }, { name = VAbove; position = "{100, 508}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; transform = "{1, 0, 0, 1, -10, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = aNon.fina.BaaNonIsol; layers = ( { anchors = ( { name = DotAbove; position = "{322, 443}"; }, { name = DotBelow; position = "{266, -308}"; }, { name = HamzaAbove; position = "{322, 443}"; }, { name = RingBelow; position = "{266, -161}"; }, { name = TaaAbove; position = "{322, 391}"; }, { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; }, { name = TwoDotsAbove; position = "{268, 443}"; }, { name = TwoDotsBelow; position = "{212, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "571 40 OFFCURVE", "553 -23 OFFCURVE", "522 -74 CURVE SMOOTH", "499 -110 OFFCURVE", "465 -142 OFFCURVE", "419 -168 CURVE SMOOTH", "372 -195 OFFCURVE", "319 -208 OFFCURVE", "258 -207 CURVE SMOOTH", "129 -206 OFFCURVE", "65 -148 OFFCURVE", "65 -33 CURVE SMOOTH", "65 -8 OFFCURVE", "74 28 OFFCURVE", "91 76 CURVE SMOOTH", "105 117 OFFCURVE", "120 151 OFFCURVE", "135 179 CURVE SMOOTH", "137 183 OFFCURVE", "141 185 OFFCURVE", "145 185 CURVE SMOOTH", "149 185 OFFCURVE", "151 183 OFFCURVE", "153 180 CURVE SMOOTH", "155 177 OFFCURVE", "155 173 OFFCURVE", "153 168 CURVE SMOOTH", "123 104 OFFCURVE", "107 61 OFFCURVE", "107 37 CURVE SMOOTH", "106 -50 OFFCURVE", "161 -96 OFFCURVE", "270 -98 CURVE SMOOTH", "391 -101 OFFCURVE", "476 -65 OFFCURVE", "525 9 CURVE SMOOTH", "528 13 OFFCURVE", "529 17 OFFCURVE", "530 22 CURVE SMOOTH", "538 77 OFFCURVE", "527 137 OFFCURVE", "497 200 CURVE SMOOTH", "493 207 OFFCURVE", "493 215 OFFCURVE", "496 222 CURVE SMOOTH", "526 286 LINE SMOOTH", "529 293 OFFCURVE", "533 295 OFFCURVE", "537 290 CURVE SMOOTH", "567 251 OFFCURVE", "580 192 OFFCURVE", "576 116 CURVE SMOOTH" ); } ); width = 562; }, { anchors = ( { name = DotAbove; position = "{322, 443}"; }, { name = DotBelow; position = "{266, -308}"; }, { name = HamzaAbove; position = "{322, 443}"; }, { name = RingBelow; position = "{266, -161}"; }, { name = TaaAbove; position = "{322, 391}"; }, { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; }, { name = TwoDotsAbove; position = "{268, 443}"; }, { name = TwoDotsBelow; position = "{212, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "575 258 OFFCURVE", "587 197 OFFCURVE", "582 115 CURVE SMOOTH", "577 33 OFFCURVE", "560 -33 OFFCURVE", "530 -82 CURVE", "507 -120 OFFCURVE", "472 -153 OFFCURVE", "424 -181 CURVE SMOOTH", "376 -209 OFFCURVE", "321 -223 OFFCURVE", "258 -222 CURVE SMOOTH", "163 -221 OFFCURVE", "100 -186 OFFCURVE", "70 -117 CURVE SMOOTH", "49 -68 OFFCURVE", "56 4 OFFCURVE", "92 98 CURVE SMOOTH", "108 137 OFFCURVE", "122 166 OFFCURVE", "132 184 CURVE SMOOTH", "139 196 OFFCURVE", "146 199 OFFCURVE", "155 194 CURVE SMOOTH", "164 189 OFFCURVE", "164 178 OFFCURVE", "156 162 CURVE SMOOTH", "126 99 OFFCURVE", "111 57 OFFCURVE", "112 37 CURVE SMOOTH", "115 -43 OFFCURVE", "167 -83 OFFCURVE", "270 -83 CURVE SMOOTH", "399 -83 OFFCURVE", "483 -49 OFFCURVE", "522 20 CURVE SMOOTH", "523 22 OFFCURVE", "525 25 OFFCURVE", "525 27 CURVE SMOOTH", "529 68 OFFCURVE", "515 123 OFFCURVE", "483 193 CURVE SMOOTH", "477 205 OFFCURVE", "478 217 OFFCURVE", "483 228 CURVE SMOOTH", "513 292 LINE SMOOTH", "524 315 OFFCURVE", "535 318 OFFCURVE", "548 299 CURVE SMOOTH" ); } ); width = 562; } ); }, { glyphname = aKaf.medi.KafMemFina; layers = ( { anchors = ( { name = Dash; position = "{312, 830}"; }, { name = DotAbove; position = "{-73, 780}"; }, { name = DotBelow; position = "{317, -98}"; }, { name = RingBelow; position = "{293, 732}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{-127, 780}"; }, { name = TwoDotsBelow; position = "{259, -98}"; }, { name = exit; position = "{0, 106}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "583 751 LINE SMOOTH", "579 744 OFFCURVE", "575 739 OFFCURVE", "569 738 CURVE SMOOTH", "433 715 OFFCURVE", "302 689 OFFCURVE", "176 660 CURVE SMOOTH", "50 631 OFFCURVE", "-43 604 OFFCURVE", "-101 580 CURVE", "-108 572 OFFCURVE", "-103 563 OFFCURVE", "-89 552 CURVE SMOOTH", "-6 490 OFFCURVE", "80 418 OFFCURVE", "170 336 CURVE", "342 176 LINE", "407 121 OFFCURVE", "449 92 OFFCURVE", "468 90 CURVE", "493 86 OFFCURVE", "497 62 OFFCURVE", "483 15 CURVE SMOOTH", "480 5 OFFCURVE", "475 0 OFFCURVE", "468 0 CURVE SMOOTH", "425 -1 OFFCURVE", "363 43 OFFCURVE", "281 132 CURVE SMOOTH", "199 221 OFFCURVE", "140 276 OFFCURVE", "105 299 CURVE", "121 250 OFFCURVE", "127 214 OFFCURVE", "122 192 CURVE SMOOTH", "117 170 OFFCURVE", "98 142 OFFCURVE", "64 109 CURVE SMOOTH", "40 86 OFFCURVE", "13 77 OFFCURVE", "-17 83 CURVE SMOOTH", "-47 89 OFFCURVE", "-62 103 OFFCURVE", "-60 125 CURVE SMOOTH", "-59 132 OFFCURVE", "-55 136 OFFCURVE", "-46 137 CURVE SMOOTH", "8 144 OFFCURVE", "58 165 OFFCURVE", "103 197 CURVE", "87 250 OFFCURVE", "50 306 OFFCURVE", "-8 365 CURVE", "-140 498 LINE", "-154 514 OFFCURVE", "-159 525 OFFCURVE", "-156 533 CURVE", "-137 576 OFFCURVE", "-116 610 OFFCURVE", "-93 635 CURVE", "-82 646 OFFCURVE", "-65 657 OFFCURVE", "-45 666 CURVE SMOOTH", "84 725 OFFCURVE", "300 779 OFFCURVE", "605 830 CURVE SMOOTH", "616 832 OFFCURVE", "619 827 OFFCURVE", "613 815 CURVE SMOOTH" ); } ); width = 467; }, { anchors = ( { name = Dash; position = "{312, 830}"; }, { name = DotAbove; position = "{-73, 780}"; }, { name = DotBelow; position = "{317, -98}"; }, { name = RingBelow; position = "{293, 732}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{-127, 780}"; }, { name = TwoDotsBelow; position = "{259, -98}"; }, { name = exit; position = "{0, 106}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "596 745 LINE", "590 733 OFFCURVE", "581 726 OFFCURVE", "571 724 CURVE SMOOTH", "435 701 OFFCURVE", "306 674 OFFCURVE", "184 646 CURVE SMOOTH", "62 618 OFFCURVE", "-29 593 OFFCURVE", "-87 570 CURVE", "-85 568 OFFCURVE", "-82 566 OFFCURVE", "-80 564 CURVE SMOOTH", "4 502 OFFCURVE", "90 430 OFFCURVE", "180 347 CURVE", "352 186 LINE", "351 185 OFFCURVE", "381 165 OFFCURVE", "440 125 CURVE SMOOTH", "470 105 LINE", "506 99 OFFCURVE", "514 67 OFFCURVE", "497 10 CURVE", "492 -6 OFFCURVE", "482 -15 OFFCURVE", "468 -15 CURVE SMOOTH", "421 -16 OFFCURVE", "355 30 OFFCURVE", "270 122 CURVE SMOOTH", "212 185 OFFCURVE", "166 230 OFFCURVE", "132 260 CURVE", "139 230 OFFCURVE", "139 204 OFFCURVE", "134 183 CURVE SMOOTH", "129 162 OFFCURVE", "109 133 OFFCURVE", "74 99 CURVE SMOOTH", "46 72 OFFCURVE", "17 62 OFFCURVE", "-16 68 CURVE SMOOTH", "-57 76 OFFCURVE", "-77 96 OFFCURVE", "-75 127 CURVE", "-73 141 OFFCURVE", "-64 149 OFFCURVE", "-48 152 CURVE SMOOTH", "0 159 OFFCURVE", "44 176 OFFCURVE", "85 203 CURVE", "68 251 OFFCURVE", "34 301 OFFCURVE", "-18 354 CURVE", "-150 488 LINE", "-168 508 OFFCURVE", "-174 525 OFFCURVE", "-169 539 CURVE", "-149 584 OFFCURVE", "-127 619 OFFCURVE", "-103 645 CURVE", "-90 658 OFFCURVE", "-73 669 OFFCURVE", "-52 679 CURVE", "78 738 OFFCURVE", "297 794 OFFCURVE", "603 845 CURVE SMOOTH", "610 846 OFFCURVE", "615 845 OFFCURVE", "619 843 CURVE SMOOTH", "632 837 OFFCURVE", "634 826 OFFCURVE", "626 809 CURVE SMOOTH" ); } ); width = 467; } ); }, { glyphname = aMem.fina.KafMemFina; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; }, { name = entry; position = "{226, 106}"; } ); components = ( { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 16, -67}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; }, { name = entry; position = "{226, 106}"; } ); components = ( { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 16, -67}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = aBaa.init.BaaSenInit; layers = ( { anchors = ( { name = DigitAbove; position = "{59, 684}"; }, { name = DigitBelow; position = "{145, -122}"; }, { name = DotAbove; position = "{59, 684}"; }, { name = DotBelow; position = "{145, -122}"; }, { name = DotBelowAlt; position = "{145, -366}"; }, { name = HamzaAbove; position = "{59, 684}"; }, { name = HamzaBelow; position = "{145, -122}"; }, { name = RingBelow; position = "{88, 112}"; }, { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; }, { name = TwoDotsAbove; position = "{4, 684}"; }, { name = TwoDotsBelow; position = "{96, -122}"; }, { name = TwoDotsBelowAlt; position = "{96, -366}"; }, { name = VAbove; position = "{59, 684}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "147 362 OFFCURVE", "170 242 OFFCURVE", "156 136 CURVE", "154 121 OFFCURVE", "150 104 OFFCURVE", "143 88 CURVE SMOOTH", "136 72 OFFCURVE", "126 64 OFFCURVE", "115 64 CURVE SMOOTH", "81 64 OFFCURVE", "43 93 OFFCURVE", "0 152 CURVE SMOOTH", "-6 159 OFFCURVE", "-10 171 OFFCURVE", "-12 186 CURVE SMOOTH", "-14 201 OFFCURVE", "-14 215 OFFCURVE", "-13 228 CURVE SMOOTH", "-12 241 OFFCURVE", "-9 248 OFFCURVE", "-3 248 CURVE SMOOTH", "0 248 OFFCURVE", "3 244 OFFCURVE", "6 238 CURVE SMOOTH", "27 191 OFFCURVE", "66 159 OFFCURVE", "122 141 CURVE SMOOTH", "127 140 OFFCURVE", "128 143 OFFCURVE", "128 151 CURVE SMOOTH", "128 214 OFFCURVE", "105 293 OFFCURVE", "58 386 CURVE SMOOTH", "56 390 OFFCURVE", "56 403 OFFCURVE", "59 426 CURVE SMOOTH", "62 449 OFFCURVE", "68 474 OFFCURVE", "75 498 CURVE SMOOTH", "76 502 OFFCURVE", "78 503 OFFCURVE", "81 503 CURVE SMOOTH", "84 503 OFFCURVE", "86 501 OFFCURVE", "88 497 CURVE SMOOTH" ); } ); width = 219; }, { anchors = ( { name = DigitAbove; position = "{59, 684}"; }, { name = DigitBelow; position = "{145, -122}"; }, { name = DotAbove; position = "{59, 684}"; }, { name = DotBelow; position = "{145, -122}"; }, { name = DotBelowAlt; position = "{145, -366}"; }, { name = HamzaAbove; position = "{59, 684}"; }, { name = HamzaBelow; position = "{145, -122}"; }, { name = RingBelow; position = "{88, 112}"; }, { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; }, { name = TwoDotsAbove; position = "{4, 684}"; }, { name = TwoDotsBelow; position = "{96, -122}"; }, { name = TwoDotsBelowAlt; position = "{96, -366}"; }, { name = VAbove; position = "{59, 684}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "157 371 OFFCURVE", "179 248 OFFCURVE", "166 134 CURVE SMOOTH", "164 117 OFFCURVE", "158 99 OFFCURVE", "149 79 CURVE SMOOTH", "140 59 OFFCURVE", "127 49 OFFCURVE", "110 49 CURVE", "78 50 OFFCURVE", "39 82 OFFCURVE", "-7 144 CURVE SMOOTH", "-22 165 OFFCURVE", "-27 195 OFFCURVE", "-22 235 CURVE SMOOTH", "-20 251 OFFCURVE", "-14 259 OFFCURVE", "-3 259 CURVE SMOOTH", "4 259 OFFCURVE", "10 255 OFFCURVE", "14 245 CURVE SMOOTH", "32 205 OFFCURVE", "69 175 OFFCURVE", "124 155 CURVE", "122 205 OFFCURVE", "95 280 OFFCURVE", "44 379 CURVE SMOOTH", "40 387 OFFCURVE", "39 398 OFFCURVE", "42 409 CURVE SMOOTH", "61 501 LINE SMOOTH", "70 544 OFFCURVE", "83 545 OFFCURVE", "101 503 CURVE SMOOTH" ); } ); width = 219; } ); }, { glyphname = aSen.medi.BaaSenInit; layers = ( { anchors = ( { name = DigitAbove; position = "{308, 410}"; }, { name = DotAbove; position = "{308, 410}"; }, { name = DotBelow; position = "{308, -146}"; }, { name = HamzaAbove; position = "{308, 410}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; }, { name = TwoDotsAbove; position = "{254, 410}"; }, { name = TwoDotsBelow; position = "{259, -98}"; }, { name = VAbove; position = "{308, 410}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "507 170 OFFCURVE", "502 151 OFFCURVE", "492 152 CURVE", "489 157 OFFCURVE", "486 156 OFFCURVE", "484 150 CURVE SMOOTH", "463 98 OFFCURVE", "443 63 OFFCURVE", "425 43 CURVE", "416 33 OFFCURVE", "400 31 OFFCURVE", "377 37 CURVE SMOOTH", "354 43 OFFCURVE", "325 57 OFFCURVE", "290 81 CURVE", "256 39 OFFCURVE", "222 19 OFFCURVE", "188 20 CURVE SMOOTH", "154 21 OFFCURVE", "127 39 OFFCURVE", "108 74 CURVE SMOOTH", "107 77 OFFCURVE", "105 77 OFFCURVE", "103 74 CURVE SMOOTH", "67 25 OFFCURVE", "33 0 OFFCURVE", "0 0 CURVE SMOOTH", "-3 0 OFFCURVE", "-6 3 OFFCURVE", "-10 10 CURVE SMOOTH", "-36 61 OFFCURVE", "-33 88 OFFCURVE", "0 90 CURVE SMOOTH", "59 94 OFFCURVE", "104 131 OFFCURVE", "136 199 CURVE SMOOTH", "138 203 OFFCURVE", "141 206 OFFCURVE", "145 206 CURVE SMOOTH", "149 206 OFFCURVE", "152 205 OFFCURVE", "154 203 CURVE SMOOTH", "156 201 OFFCURVE", "157 197 OFFCURVE", "156 194 CURVE SMOOTH", "148 171 OFFCURVE", "144 158 OFFCURVE", "145 155 CURVE SMOOTH", "147 144 OFFCURVE", "155 135 OFFCURVE", "169 127 CURVE SMOOTH", "183 119 OFFCURVE", "199 115 OFFCURVE", "215 115 CURVE SMOOTH", "266 116 OFFCURVE", "307 151 OFFCURVE", "337 218 CURVE SMOOTH", "341 228 OFFCURVE", "346 231 OFFCURVE", "352 227 CURVE SMOOTH", "358 223 OFFCURVE", "360 218 OFFCURVE", "358 211 CURVE SMOOTH", "348 180 OFFCURVE", "345 165 OFFCURVE", "350 162 CURVE SMOOTH", "383 146 OFFCURVE", "410 136 OFFCURVE", "431 134 CURVE SMOOTH", "440 133 OFFCURVE", "447 138 OFFCURVE", "452 150 CURVE SMOOTH", "453 153 OFFCURVE", "463 182 OFFCURVE", "481 238 CURVE", "496 241 OFFCURVE", "504 230 OFFCURVE", "505 207 CURVE SMOOTH" ); } ); width = 492; }, { anchors = ( { name = DigitAbove; position = "{308, 410}"; }, { name = DotAbove; position = "{308, 410}"; }, { name = DotBelow; position = "{308, -146}"; }, { name = HamzaAbove; position = "{308, 410}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; }, { name = TwoDotsAbove; position = "{254, 410}"; }, { name = TwoDotsBelow; position = "{259, -98}"; }, { name = VAbove; position = "{308, 410}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "355 187 OFFCURVE", "353 173 OFFCURVE", "357 171 CURVE SMOOTH", "411 146 OFFCURVE", "442 142 OFFCURVE", "448 159 CURVE SMOOTH", "448 159 OFFCURVE", "457 189 OFFCURVE", "477 250 CURVE", "480 251 OFFCURVE", "483 253 OFFCURVE", "484 253 CURVE SMOOTH", "500 254 OFFCURVE", "508 239 OFFCURVE", "510 208 CURVE SMOOTH", "512 177 OFFCURVE", "508 159 OFFCURVE", "500 151 CURVE SMOOTH", "492 143 OFFCURVE", "487 139 OFFCURVE", "487 138 CURVE SMOOTH", "466 88 OFFCURVE", "447 53 OFFCURVE", "429 33 CURVE", "405 8 OFFCURVE", "357 19 OFFCURVE", "286 65 CURVE", "252 26 OFFCURVE", "218 6 OFFCURVE", "183 6 CURVE SMOOTH", "148 6 OFFCURVE", "121 22 OFFCURVE", "100 57 CURVE", "62 13 OFFCURVE", "29 -12 OFFCURVE", "0 -15 CURVE", "-9 -15 OFFCURVE", "-16 -8 OFFCURVE", "-23 3 CURVE", "-49 55 OFFCURVE", "-49 87 OFFCURVE", "-20 100 CURVE SMOOTH", "-14 103 OFFCURVE", "-8 104 OFFCURVE", "-1 105 CURVE SMOOTH", "61 110 OFFCURVE", "106 144 OFFCURVE", "133 206 CURVE SMOOTH", "137 214 OFFCURVE", "143 217 OFFCURVE", "152 214 CURVE SMOOTH", "161 211 OFFCURVE", "163 205 OFFCURVE", "160 195 CURVE SMOOTH", "157 185 OFFCURVE", "153 174 OFFCURVE", "149 164 CURVE", "157 141 OFFCURVE", "179 129 OFFCURVE", "214 130 CURVE SMOOTH", "263 131 OFFCURVE", "302 163 OFFCURVE", "333 224 CURVE SMOOTH", "339 236 OFFCURVE", "346 239 OFFCURVE", "355 235 CURVE SMOOTH", "364 231 OFFCURVE", "367 224 OFFCURVE", "363 212 CURVE SMOOTH" ); } ); width = 492; } ); }, { glyphname = aBaa.medi.BaaRaaFina; layers = ( { anchors = ( { name = DigitAbove; position = "{137, 488}"; }, { name = DigitBelow; position = "{132, -186}"; }, { name = DotAbove; position = "{137, 488}"; }, { name = DotBelow; position = "{132, -186}"; }, { name = HamzaAbove; position = "{137, 488}"; }, { name = HamzaBelow; position = "{132, -186}"; }, { name = RingBelow; position = "{127, 195}"; }, { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; }, { name = TwoDotsAbove; position = "{88, 488}"; }, { name = TwoDotsBelow; position = "{78, -137}"; }, { name = VAbove; position = "{137, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "174 308 OFFCURVE", "178 303 OFFCURVE", "179 293 CURVE SMOOTH", "180 283 OFFCURVE", "184 256 OFFCURVE", "189 212 CURVE SMOOTH", "194 168 OFFCURVE", "201 139 OFFCURVE", "211 122 CURVE SMOOTH", "221 105 OFFCURVE", "236 94 OFFCURVE", "258 90 CURVE SMOOTH", "280 86 OFFCURVE", "288 73 OFFCURVE", "283 52 CURVE SMOOTH", "275 17 OFFCURVE", "267 0 OFFCURVE", "259 0 CURVE SMOOTH", "217 0 OFFCURVE", "188 20 OFFCURVE", "174 60 CURVE SMOOTH", "167 81 OFFCURVE", "161 108 OFFCURVE", "158 143 CURVE SMOOTH", "155 178 OFFCURVE", "153 198 OFFCURVE", "153 201 CURVE SMOOTH", "153 204 OFFCURVE", "151 203 OFFCURVE", "149 198 CURVE SMOOTH", "127 143 OFFCURVE", "85 115 OFFCURVE", "24 113 CURVE SMOOTH", "-3 112 OFFCURVE", "-19 125 OFFCURVE", "-24 152 CURVE SMOOTH", "-28 175 OFFCURVE", "-26 191 OFFCURVE", "-18 201 CURVE SMOOTH", "-10 211 OFFCURVE", "-1 213 OFFCURVE", "6 208 CURVE SMOOTH", "13 203 OFFCURVE", "19 200 OFFCURVE", "23 200 CURVE SMOOTH", "65 196 OFFCURVE", "95 203 OFFCURVE", "114 220 CURVE", "128 231 OFFCURVE", "141 258 OFFCURVE", "155 300 CURVE SMOOTH", "157 307 OFFCURVE", "162 310 OFFCURVE", "168 309 CURVE SMOOTH" ); } ); width = 258; }, { anchors = ( { name = DigitAbove; position = "{137, 488}"; }, { name = DigitBelow; position = "{132, -186}"; }, { name = DotAbove; position = "{137, 488}"; }, { name = DotBelow; position = "{132, -186}"; }, { name = HamzaAbove; position = "{137, 488}"; }, { name = HamzaBelow; position = "{132, -186}"; }, { name = RingBelow; position = "{127, 195}"; }, { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; }, { name = TwoDotsAbove; position = "{88, 488}"; }, { name = TwoDotsBelow; position = "{78, -137}"; }, { name = VAbove; position = "{137, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "190 286 OFFCURVE", "193 257 OFFCURVE", "198 215 CURVE SMOOTH", "203 173 OFFCURVE", "210 145 OFFCURVE", "220 131 CURVE SMOOTH", "230 117 OFFCURVE", "245 108 OFFCURVE", "264 104 CURVE SMOOTH", "283 100 OFFCURVE", "294 90 OFFCURVE", "298 73 CURVE SMOOTH", "300 65 OFFCURVE", "298 53 OFFCURVE", "294 35 CURVE SMOOTH", "286 2 OFFCURVE", "275 -15 OFFCURVE", "259 -15 CURVE SMOOTH", "185 -15 OFFCURVE", "147 49 OFFCURVE", "147 176 CURVE", "121 124 OFFCURVE", "80 98 OFFCURVE", "24 99 CURVE SMOOTH", "-11 99 OFFCURVE", "-32 115 OFFCURVE", "-39 149 CURVE", "-44 177 OFFCURVE", "-40 197 OFFCURVE", "-30 208 CURVE", "-14 226 OFFCURVE", "1 230 OFFCURVE", "15 220 CURVE SMOOTH", "19 217 OFFCURVE", "22 215 OFFCURVE", "24 214 CURVE", "62 211 OFFCURVE", "89 216 OFFCURVE", "104 228 CURVE SMOOTH", "119 240 OFFCURVE", "133 265 OFFCURVE", "146 304 CURVE SMOOTH", "151 319 OFFCURVE", "158 325 OFFCURVE", "169 323 CURVE SMOOTH", "180 321 OFFCURVE", "186 314 OFFCURVE", "188 300 CURVE SMOOTH" ); } ); width = 258; } ); }, { glyphname = aRaa.fina.BaaRaaFina; layers = ( { anchors = ( { name = DotAbove; position = "{319, 458}"; }, { name = DotAlt; position = "{203, -11}"; }, { name = DotBelow; position = "{269, -332}"; }, { name = HamzaAbove; position = "{319, 458}"; }, { name = RingBelow; position = "{261, -144}"; }, { name = Stroke; position = "{391, -13}"; }, { name = TaaAbove; position = "{319, 361}"; }, { name = TashkilAbove; position = "{319, 801}"; }, { name = TashkilBelow; position = "{376, -327}"; }, { name = TwoDotsAbove; position = "{265, 458}"; }, { name = VAbove; position = "{319, 458}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "66 -145 OFFCURVE", "64 -143 OFFCURVE", "63 -139 CURVE SMOOTH", "62 -135 OFFCURVE", "64 -133 OFFCURVE", "66 -131 CURVE SMOOTH", "68 -129 OFFCURVE", "71 -129 OFFCURVE", "76 -130 CURVE SMOOTH", "141 -149 OFFCURVE", "198 -148 OFFCURVE", "247 -129 CURVE SMOOTH", "333 -95 OFFCURVE", "395 -44 OFFCURVE", "434 26 CURVE SMOOTH", "435 29 OFFCURVE", "436 30 OFFCURVE", "436 31 CURVE SMOOTH", "436 56 OFFCURVE", "419 89 OFFCURVE", "385 131 CURVE SMOOTH", "384 133 OFFCURVE", "383 135 OFFCURVE", "384 137 CURVE SMOOTH", "413 239 LINE SMOOTH", "416 250 OFFCURVE", "424 242 OFFCURVE", "440 216 CURVE SMOOTH", "458 187 OFFCURVE", "470 151 OFFCURVE", "475 109 CURVE SMOOTH", "478 89 OFFCURVE", "475 58 OFFCURVE", "466 15 CURVE SMOOTH", "457 -28 OFFCURVE", "431 -73 OFFCURVE", "389 -121 CURVE SMOOTH", "347 -169 OFFCURVE", "308 -195 OFFCURVE", "270 -199 CURVE SMOOTH", "203 -206 OFFCURVE", "136 -189 OFFCURVE", "71 -148 CURVE SMOOTH" ); } ); width = 438; }, { anchors = ( { name = DotAbove; position = "{319, 458}"; }, { name = DotAlt; position = "{203, -11}"; }, { name = DotBelow; position = "{269, -332}"; }, { name = HamzaAbove; position = "{319, 458}"; }, { name = RingBelow; position = "{261, -144}"; }, { name = Stroke; position = "{391, -13}"; }, { name = TaaAbove; position = "{319, 361}"; }, { name = TashkilAbove; position = "{319, 801}"; }, { name = TashkilBelow; position = "{376, -327}"; }, { name = TwoDotsAbove; position = "{265, 458}"; }, { name = VAbove; position = "{319, 458}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "56 -146 OFFCURVE", "52 -138 OFFCURVE", "55 -129 CURVE SMOOTH", "58 -120 OFFCURVE", "67 -118 OFFCURVE", "80 -121 CURVE SMOOTH", "144 -134 OFFCURVE", "197 -133 OFFCURVE", "241 -116 CURVE SMOOTH", "328 -83 OFFCURVE", "390 -33 OFFCURVE", "426 33 CURVE", "425 45 OFFCURVE", "408 74 OFFCURVE", "374 122 CURVE SMOOTH", "369 128 OFFCURVE", "368 134 OFFCURVE", "370 141 CURVE SMOOTH", "398 243 LINE SMOOTH", "409 282 OFFCURVE", "427 277 OFFCURVE", "450 228 CURVE", "481 160 OFFCURVE", "488 88 OFFCURVE", "471 11 CURVE SMOOTH", "461 -34 OFFCURVE", "436 -82 OFFCURVE", "395 -132 CURVE SMOOTH", "354 -182 OFFCURVE", "312 -209 OFFCURVE", "271 -214 CURVE SMOOTH", "201 -222 OFFCURVE", "133 -201 OFFCURVE", "66 -153 CURVE SMOOTH" ); } ); width = 438; } ); }, { glyphname = aKaf.medi.KafRaaFina; layers = ( { anchors = ( { name = Dash; position = "{208, 771}"; }, { name = DotAbove; position = "{-103, 771}"; }, { name = DotBelow; position = "{190, -29}"; }, { name = RingBelow; position = "{198, 659}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-156, 771}"; }, { name = TwoDotsBelow; position = "{161, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "471 720 LINE SMOOTH", "469 715 OFFCURVE", "465 711 OFFCURVE", "458 709 CURVE SMOOTH", "156 635 OFFCURVE", "-24 579 OFFCURVE", "-79 538 CURVE", "-53 520 OFFCURVE", "-19 490 OFFCURVE", "23 450 CURVE SMOOTH", "65 410 OFFCURVE", "125 348 OFFCURVE", "201 264 CURVE SMOOTH", "277 180 OFFCURVE", "315 139 OFFCURVE", "316 138 CURVE SMOOTH", "340 114 OFFCURVE", "364 98 OFFCURVE", "385 91 CURVE SMOOTH", "406 84 OFFCURVE", "411 60 OFFCURVE", "401 18 CURVE SMOOTH", "398 6 OFFCURVE", "394 0 OFFCURVE", "387 0 CURVE SMOOTH", "356 0 OFFCURVE", "322 21 OFFCURVE", "286 64 CURVE SMOOTH", "192 175 OFFCURVE", "139 237 OFFCURVE", "124 249 CURVE", "138 135 OFFCURVE", "128 59 OFFCURVE", "95 24 CURVE SMOOTH", "80 8 OFFCURVE", "50 0 OFFCURVE", "5 0 CURVE SMOOTH", "-4 0 OFFCURVE", "-13 18 OFFCURVE", "-21 53 CURVE SMOOTH", "-29 88 OFFCURVE", "-27 110 OFFCURVE", "-15 117 CURVE SMOOTH", "-12 119 OFFCURVE", "-8 119 OFFCURVE", "-3 117 CURVE SMOOTH", "37 103 OFFCURVE", "73 108 OFFCURVE", "105 131 CURVE", "104 172 OFFCURVE", "80 224 OFFCURVE", "34 288 CURVE SMOOTH", "-12 352 OFFCURVE", "-67 411 OFFCURVE", "-129 465 CURVE", "-132 497 OFFCURVE", "-132 519 OFFCURVE", "-129 531 CURVE SMOOTH", "-126 543 OFFCURVE", "-115 564 OFFCURVE", "-96 592 CURVE SMOOTH", "-86 605 LINE", "-77 627 OFFCURVE", "0 662 OFFCURVE", "146 710 CURVE SMOOTH", "248 743 OFFCURVE", "359 771 OFFCURVE", "480 794 CURVE SMOOTH", "492 796 OFFCURVE", "496 791 OFFCURVE", "491 778 CURVE SMOOTH" ); } ); width = 386; }, { anchors = ( { name = Dash; position = "{208, 771}"; }, { name = DotAbove; position = "{-103, 771}"; }, { name = DotBelow; position = "{190, -29}"; }, { name = RingBelow; position = "{198, 659}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-156, 771}"; }, { name = TwoDotsBelow; position = "{161, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "485 715 LINE SMOOTH", "481 705 OFFCURVE", "473 698 OFFCURVE", "461 695 CURVE SMOOTH", "189 628 OFFCURVE", "17 576 OFFCURVE", "-53 537 CURVE", "3 493 OFFCURVE", "91 406 OFFCURVE", "211 274 CURVE SMOOTH", "284 194 OFFCURVE", "323 152 OFFCURVE", "327 148 CURVE SMOOTH", "349 126 OFFCURVE", "370 112 OFFCURVE", "390 105 CURVE", "420 94 OFFCURVE", "428 64 OFFCURVE", "416 14 CURVE", "411 -5 OFFCURVE", "401 -14 OFFCURVE", "387 -15 CURVE", "349 -15 OFFCURVE", "301 24 OFFCURVE", "242 99 CURVE", "201 151 OFFCURVE", "166 189 OFFCURVE", "138 215 CURVE", "153 62 OFFCURVE", "108 -15 OFFCURVE", "5 -15 CURVE SMOOTH", "-10 -15 OFFCURVE", "-20 -3 OFFCURVE", "-27 21 CURVE SMOOTH", "-45 81 OFFCURVE", "-44 117 OFFCURVE", "-23 129 CURVE SMOOTH", "-16 133 OFFCURVE", "-7 134 OFFCURVE", "2 131 CURVE SMOOTH", "37 120 OFFCURVE", "68 122 OFFCURVE", "95 138 CURVE", "91 175 OFFCURVE", "69 223 OFFCURVE", "27 282 CURVE SMOOTH", "-15 341 OFFCURVE", "-69 397 OFFCURVE", "-133 453 CURVE", "-136 490 OFFCURVE", "-136 516 OFFCURVE", "-133 530 CURVE", "-126 554 OFFCURVE", "-114 578 OFFCURVE", "-98 601 CURVE SMOOTH", "-75 635 OFFCURVE", "-37 660 OFFCURVE", "14 680 CURVE SMOOTH", "177 741 OFFCURVE", "331 785 OFFCURVE", "477 809 CURVE SMOOTH", "506 814 OFFCURVE", "516 803 OFFCURVE", "508 779 CURVE SMOOTH" ); } ); width = 386; } ); }, { glyphname = aRaa.fina.KafRaaFina; layers = ( { anchors = ( { name = DotAbove; position = "{244, 244}"; }, { name = DotAlt; position = "{205, -55}"; }, { name = DotBelow; position = "{370, -332}"; }, { name = HamzaAbove; position = "{244, 244}"; }, { name = RingBelow; position = "{219, -215}"; }, { name = Stroke; position = "{391, -71}"; }, { name = TaaAbove; position = "{146, 195}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{356, -327}"; }, { name = TwoDotsAbove; position = "{195, 244}"; }, { name = VAbove; position = "{195, 195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "392 132 OFFCURVE", "395 130 OFFCURVE", "399 127 CURVE SMOOTH", "403 124 OFFCURVE", "410 121 OFFCURVE", "420 117 CURVE SMOOTH", "443 108 OFFCURVE", "448 76 OFFCURVE", "434 23 CURVE", "431 9 OFFCURVE", "429 2 OFFCURVE", "428 0 CURVE", "425 -34 OFFCURVE", "415 -68 OFFCURVE", "399 -101 CURVE SMOOTH", "370 -164 OFFCURVE", "330 -212 OFFCURVE", "280 -246 CURVE SMOOTH", "253 -264 OFFCURVE", "233 -273 OFFCURVE", "219 -271 CURVE SMOOTH", "184 -267 OFFCURVE", "134 -246 OFFCURVE", "70 -208 CURVE SMOOTH", "65 -205 OFFCURVE", "62 -202 OFFCURVE", "63 -198 CURVE SMOOTH", "64 -194 OFFCURVE", "67 -191 OFFCURVE", "72 -191 CURVE", "144 -202 LINE", "153 -203 OFFCURVE", "169 -203 OFFCURVE", "190 -201 CURVE SMOOTH", "211 -199 OFFCURVE", "246 -182 OFFCURVE", "292 -150 CURVE SMOOTH", "338 -118 OFFCURVE", "369 -82 OFFCURVE", "387 -42 CURVE", "390 -24 OFFCURVE", "383 -3 OFFCURVE", "366 19 CURVE SMOOTH", "360 26 OFFCURVE", "358 33 OFFCURVE", "360 39 CURVE SMOOTH", "382 129 LINE SMOOTH", "382 130 OFFCURVE", "384 131 OFFCURVE", "388 132 CURVE SMOOTH" ); } ); width = 422; }, { anchors = ( { name = DotAbove; position = "{244, 244}"; }, { name = DotAlt; position = "{205, -55}"; }, { name = DotBelow; position = "{370, -332}"; }, { name = HamzaAbove; position = "{244, 244}"; }, { name = RingBelow; position = "{219, -215}"; }, { name = Stroke; position = "{391, -71}"; }, { name = TaaAbove; position = "{146, 195}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{356, -327}"; }, { name = TwoDotsAbove; position = "{195, 244}"; }, { name = VAbove; position = "{195, 195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "392 146 OFFCURVE", "404 141 OFFCURVE", "425 130 CURVE SMOOTH", "446 119 OFFCURVE", "450 75 OFFCURVE", "438 -3 CURVE SMOOTH", "432 -38 OFFCURVE", "422 -73 OFFCURVE", "408 -107 CURVE", "380 -173 OFFCURVE", "339 -223 OFFCURVE", "288 -258 CURVE SMOOTH", "258 -279 OFFCURVE", "234 -288 OFFCURVE", "217 -286 CURVE", "175 -279 OFFCURVE", "125 -255 OFFCURVE", "65 -214 CURVE SMOOTH", "56 -207 OFFCURVE", "52 -201 OFFCURVE", "54 -193 CURVE SMOOTH", "56 -185 OFFCURVE", "63 -182 OFFCURVE", "74 -184 CURVE SMOOTH", "115 -191 OFFCURVE", "150 -193 OFFCURVE", "179 -188 CURVE SMOOTH", "208 -183 OFFCURVE", "244 -166 OFFCURVE", "288 -136 CURVE SMOOTH", "332 -106 OFFCURVE", "362 -74 OFFCURVE", "378 -38 CURVE", "379 -28 OFFCURVE", "373 -14 OFFCURVE", "361 2 CURVE SMOOTH", "349 18 OFFCURVE", "343 31 OFFCURVE", "346 42 CURVE SMOOTH", "368 133 LINE SMOOTH", "370 142 OFFCURVE", "377 146 OFFCURVE", "388 146 CURVE SMOOTH" ); } ); width = 422; } ); }, { glyphname = aLam.init.LamHehInit; layers = ( { anchors = ( { name = DotAbove; position = "{-34, 801}"; }, { name = Stroke; position = "{-36, 506}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; }, { name = TwoDotsAbove; position = "{-93, 801}"; }, { name = TwoDotsBelow; position = "{0, -73}"; }, { name = VAbove; position = "{-34, 752}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-59 664 OFFCURVE", "-50 680 OFFCURVE", "-41 694 CURVE SMOOTH", "-39 697 OFFCURVE", "-35 698 OFFCURVE", "-32 697 CURVE SMOOTH", "-29 696 OFFCURVE", "-27 693 OFFCURVE", "-27 690 CURVE SMOOTH", "-23 661 OFFCURVE", "-10 634 OFFCURVE", "11 609 CURVE SMOOTH", "16 603 OFFCURVE", "15 597 OFFCURVE", "10 590 CURVE", "-15 564 LINE SMOOTH", "-19 560 OFFCURVE", "-21 557 OFFCURVE", "-21 555 CURVE", "-13 430 OFFCURVE", "-3 344 OFFCURVE", "9 299 CURVE SMOOTH", "11 291 OFFCURVE", "16 286 OFFCURVE", "23 283 CURVE SMOOTH", "49 272 OFFCURVE", "59 255 OFFCURVE", "54 234 CURVE SMOOTH", "50 218 OFFCURVE", "42 209 OFFCURVE", "28 206 CURVE SMOOTH", "14 203 OFFCURVE", "2 207 OFFCURVE", "-10 219 CURVE SMOOTH", "-28 237 OFFCURVE", "-40 280 OFFCURVE", "-45 345 CURVE SMOOTH", "-53 442 OFFCURVE", "-58 504 OFFCURVE", "-60 533 CURVE SMOOTH", "-61 562 OFFCURVE", "-62 583 OFFCURVE", "-64 595 CURVE SMOOTH", "-69 626 OFFCURVE", "-70 642 OFFCURVE", "-68 647 CURVE SMOOTH" ); } ); width = 225; }, { anchors = ( { name = DotAbove; position = "{-34, 801}"; }, { name = Stroke; position = "{-36, 506}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; }, { name = TwoDotsAbove; position = "{-93, 801}"; }, { name = TwoDotsBelow; position = "{0, -73}"; }, { name = VAbove; position = "{-34, 752}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-68 441 OFFCURVE", "-72 503 OFFCURVE", "-74 532 CURVE SMOOTH", "-76 561 OFFCURVE", "-78 585 OFFCURVE", "-81 605 CURVE SMOOTH", "-84 625 OFFCURVE", "-84 639 OFFCURVE", "-83 647 CURVE SMOOTH", "-82 655 OFFCURVE", "-72 674 OFFCURVE", "-53 703 CURVE", "-46 712 OFFCURVE", "-38 715 OFFCURVE", "-29 711 CURVE SMOOTH", "-20 707 OFFCURVE", "-14 702 OFFCURVE", "-12 693 CURVE SMOOTH", "-8 666 OFFCURVE", "3 641 OFFCURVE", "22 619 CURVE", "31 607 OFFCURVE", "31 594 OFFCURVE", "21 581 CURVE", "-5 554 LINE SMOOTH", "-6 553 OFFCURVE", "-7 553 OFFCURVE", "-7 552 CURVE", "4 387 OFFCURVE", "17 302 OFFCURVE", "29 296 CURVE", "62 282 OFFCURVE", "74 260 OFFCURVE", "68 231 CURVE SMOOTH", "63 210 OFFCURVE", "52 197 OFFCURVE", "32 193 CURVE SMOOTH", "12 189 OFFCURVE", "-6 194 OFFCURVE", "-21 209 CURVE", "-41 230 OFFCURVE", "-54 275 OFFCURVE", "-60 344 CURVE SMOOTH" ); } ); width = 225; } ); }, { glyphname = aHeh.medi.LamHehInit; layers = ( { anchors = ( { name = HamzaAbove; position = "{39, 352}"; }, { name = TashkilAbove; position = "{117, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "51 128 OFFCURVE", "53 155 OFFCURVE", "60 183 CURVE SMOOTH", "67 211 OFFCURVE", "85 243 OFFCURVE", "116 277 CURVE SMOOTH", "147 311 OFFCURVE", "174 334 OFFCURVE", "197 346 CURVE SMOOTH", "220 358 OFFCURVE", "238 342 OFFCURVE", "249 299 CURVE SMOOTH", "251 292 OFFCURVE", "256 287 OFFCURVE", "263 283 CURVE SMOOTH", "325 253 OFFCURVE", "367 225 OFFCURVE", "389 202 CURVE SMOOTH", "396 195 OFFCURVE", "400 183 OFFCURVE", "402 165 CURVE SMOOTH", "404 147 OFFCURVE", "402 126 OFFCURVE", "395 102 CURVE SMOOTH", "388 78 OFFCURVE", "378 60 OFFCURVE", "364 46 CURVE SMOOTH", "350 32 OFFCURVE", "314 27 OFFCURVE", "257 29 CURVE SMOOTH", "200 31 OFFCURVE", "152 39 OFFCURVE", "112 51 CURVE", "77 28 OFFCURVE", "40 11 OFFCURVE", "0 0 CURVE SMOOTH", "-7 -2 OFFCURVE", "-13 4 OFFCURVE", "-17 17 CURVE SMOOTH", "-31 64 OFFCURVE", "-25 88 OFFCURVE", "-1 90 CURVE SMOOTH", "23 92 OFFCURVE", "42 97 OFFCURVE", "55 104 CURVE" ); }, { closed = 1; nodes = ( "156 260 OFFCURVE", "142 252 OFFCURVE", "123 236 CURVE SMOOTH", "104 220 OFFCURVE", "89 200 OFFCURVE", "77 177 CURVE SMOOTH", "76 175 OFFCURVE", "76 172 OFFCURVE", "76 170 CURVE SMOOTH", "81 150 OFFCURVE", "102 136 OFFCURVE", "140 128 CURVE", "172 141 OFFCURVE", "190 155 OFFCURVE", "198 166 CURVE SMOOTH", "206 177 OFFCURVE", "206 195 OFFCURVE", "199 221 CURVE SMOOTH", "192 247 OFFCURVE", "181 260 OFFCURVE", "166 260 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "234 176 OFFCURVE", "219 146 OFFCURVE", "195 118 CURVE", "232 111 OFFCURVE", "279 108 OFFCURVE", "337 109 CURVE SMOOTH", "345 109 OFFCURVE", "351 112 OFFCURVE", "354 118 CURVE SMOOTH", "357 124 OFFCURVE", "357 128 OFFCURVE", "354 132 CURVE SMOOTH", "334 156 OFFCURVE", "296 183 OFFCURVE", "239 211 CURVE" ); } ); width = 240; }, { anchors = ( { name = HamzaAbove; position = "{39, 352}"; }, { name = TashkilAbove; position = "{117, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "37 136 OFFCURVE", "40 162 OFFCURVE", "47 190 CURVE SMOOTH", "54 218 OFFCURVE", "76 253 OFFCURVE", "112 293 CURVE SMOOTH", "148 333 OFFCURVE", "178 357 OFFCURVE", "204 364 CURVE SMOOTH", "231 371 OFFCURVE", "251 351 OFFCURVE", "263 303 CURVE", "264 300 OFFCURVE", "266 298 OFFCURVE", "269 296 CURVE SMOOTH", "333 265 OFFCURVE", "377 237 OFFCURVE", "400 212 CURVE", "409 202 OFFCURVE", "414 187 OFFCURVE", "416 167 CURVE SMOOTH", "418 147 OFFCURVE", "416 124 OFFCURVE", "409 98 CURVE SMOOTH", "402 72 OFFCURVE", "389 51 OFFCURVE", "373 35 CURVE SMOOTH", "357 19 OFFCURVE", "319 11 OFFCURVE", "261 14 CURVE SMOOTH", "203 17 OFFCURVE", "154 24 OFFCURVE", "114 35 CURVE", "80 13 OFFCURVE", "43 -3 OFFCURVE", "4 -14 CURVE", "-13 -18 OFFCURVE", "-25 -9 OFFCURVE", "-31 13 CURVE SMOOTH", "-45 59 OFFCURVE", "-41 88 OFFCURVE", "-19 100 CURVE SMOOTH", "-14 103 OFFCURVE", "-5 104 OFFCURVE", "6 105 CURVE SMOOTH", "17 106 OFFCURVE", "28 109 OFFCURVE", "39 113 CURVE" ); }, { closed = 1; nodes = ( "164 155 OFFCURVE", "181 165 OFFCURVE", "186 173 CURVE SMOOTH", "191 181 OFFCURVE", "191 196 OFFCURVE", "185 216 CURVE SMOOTH", "179 236 OFFCURVE", "173 245 OFFCURVE", "166 245 CURVE SMOOTH", "159 245 OFFCURVE", "148 238 OFFCURVE", "132 224 CURVE SMOOTH", "116 210 OFFCURVE", "102 193 OFFCURVE", "91 172 CURVE", "96 160 OFFCURVE", "111 151 OFFCURVE", "138 144 CURVE" ); }, { closed = 1; nodes = ( "243 168 OFFCURVE", "235 147 OFFCURVE", "222 128 CURVE", "254 124 OFFCURVE", "282 123 OFFCURVE", "305 123 CURVE SMOOTH", "328 123 OFFCURVE", "340 124 OFFCURVE", "341 124 CURVE", "324 144 OFFCURVE", "293 167 OFFCURVE", "249 190 CURVE" ); } ); width = 240; } ); }, { glyphname = aMem.init.MemHaaMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-23 468 OFFCURVE", "-127 437 OFFCURVE", "-226 377 CURVE SMOOTH", "-262 356 OFFCURVE", "-276 363 OFFCURVE", "-269 399 CURVE SMOOTH", "-268 402 OFFCURVE", "-266 404 OFFCURVE", "-264 406 CURVE SMOOTH", "-195 455 OFFCURVE", "-102 494 OFFCURVE", "16 525 CURVE", "-3 553 LINE SMOOTH", "-9 562 OFFCURVE", "-10 572 OFFCURVE", "-6 581 CURVE SMOOTH", "12 619 OFFCURVE", "27 645 OFFCURVE", "41 660 CURVE SMOOTH", "49 669 OFFCURVE", "58 672 OFFCURVE", "66 667 CURVE SMOOTH", "116 640 OFFCURVE", "151 616 OFFCURVE", "172 595 CURVE SMOOTH", "179 588 OFFCURVE", "180 578 OFFCURVE", "176 565 CURVE SMOOTH", "170 547 OFFCURVE", "154 521 OFFCURVE", "126 486 CURVE SMOOTH", "119 477 OFFCURVE", "106 472 OFFCURVE", "86 471 CURVE SMOOTH" ); } ); width = 319; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-20 454 OFFCURVE", "-122 422 OFFCURVE", "-219 364 CURVE SMOOTH", "-238 353 OFFCURVE", "-252 349 OFFCURVE", "-263 351 CURVE SMOOTH", "-282 355 OFFCURVE", "-289 373 OFFCURVE", "-283 403 CURVE", "-281 409 OFFCURVE", "-278 414 OFFCURVE", "-273 418 CURVE SMOOTH", "-207 465 OFFCURVE", "-118 504 OFFCURVE", "-8 534 CURVE", "-15 545 LINE", "-24 559 OFFCURVE", "-25 573 OFFCURVE", "-19 587 CURVE SMOOTH", "-1 626 OFFCURVE", "15 654 OFFCURVE", "30 670 CURVE SMOOTH", "41 682 OFFCURVE", "54 686 OFFCURVE", "67 682 CURVE SMOOTH", "69 681 OFFCURVE", "71 680 OFFCURVE", "73 679 CURVE SMOOTH", "124 652 OFFCURVE", "161 627 OFFCURVE", "183 605 CURVE SMOOTH", "194 594 OFFCURVE", "196 579 OFFCURVE", "190 561 CURVE SMOOTH", "183 542 OFFCURVE", "166 513 OFFCURVE", "138 477 CURVE SMOOTH", "128 464 OFFCURVE", "111 458 OFFCURVE", "87 457 CURVE SMOOTH" ); } ); width = 319; } ); }, { glyphname = aHaa.medi.MemHaaMemInit; layers = ( { anchors = ( { name = DigitBelow; position = "{263, 0}"; }, { name = DotAbove; position = "{15, 632}"; }, { name = DotBelow; position = "{263, 0}"; }, { name = HamzaAbove; position = "{15, 632}"; }, { name = HamzaBelow; position = "{263, 0}"; }, { name = TaaAbove; position = "{15, 632}"; }, { name = TaaBelow; position = "{263, 196}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; }, { name = TwoDotsAbove; position = "{-34, 632}"; }, { name = TwoDotsBelow; position = "{208, 0}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = DigitBelow; position = "{263, 0}"; }, { name = DotAbove; position = "{15, 632}"; }, { name = DotBelow; position = "{263, 0}"; }, { name = HamzaAbove; position = "{15, 632}"; }, { name = HamzaBelow; position = "{263, 0}"; }, { name = TaaAbove; position = "{15, 632}"; }, { name = TaaBelow; position = "{263, 196}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; }, { name = TwoDotsAbove; position = "{-34, 632}"; }, { name = TwoDotsBelow; position = "{208, 0}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = aBaa.init.BaaMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{64, 591}"; }, { name = DigitBelow; position = "{143, -171}"; }, { name = DotAbove; position = "{64, 591}"; }, { name = DotBelow; position = "{143, -171}"; }, { name = DotBelowAlt; position = "{143, -366}"; }, { name = HamzaAbove; position = "{64, 591}"; }, { name = HamzaBelow; position = "{143, -98}"; }, { name = RingBelow; position = "{90, 415}"; }, { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; }, { name = TwoDotsAbove; position = "{10, 591}"; }, { name = TwoDotsBelow; position = "{89, -146}"; }, { name = TwoDotsBelowAlt; position = "{89, -366}"; }, { name = VAbove; position = "{64, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-33 222 OFFCURVE", "-39 209 OFFCURVE", "-55 202 CURVE SMOOTH", "-70 195 OFFCURVE", "-78 203 OFFCURVE", "-79 223 CURVE SMOOTH", "-80 253 OFFCURVE", "-76 280 OFFCURVE", "-67 306 CURVE SMOOTH", "-31 408 OFFCURVE", "21 465 OFFCURVE", "91 475 CURVE SMOOTH", "125 480 OFFCURVE", "156 469 OFFCURVE", "182 442 CURVE SMOOTH", "190 433 OFFCURVE", "193 425 OFFCURVE", "191 418 CURVE SMOOTH", "183 388 OFFCURVE", "174 366 OFFCURVE", "164 350 CURVE SMOOTH", "160 344 OFFCURVE", "155 344 OFFCURVE", "149 349 CURVE SMOOTH", "109 384 OFFCURVE", "72 392 OFFCURVE", "37 372 CURVE SMOOTH", "-7 348 OFFCURVE", "-32 323 OFFCURVE", "-38 298 CURVE SMOOTH", "-43 278 OFFCURVE", "-43 260 OFFCURVE", "-38 241 CURVE SMOOTH" ); } ); width = 265; }, { anchors = ( { name = DigitAbove; position = "{64, 591}"; }, { name = DigitBelow; position = "{143, -171}"; }, { name = DotAbove; position = "{64, 591}"; }, { name = DotBelow; position = "{143, -171}"; }, { name = DotBelowAlt; position = "{143, -366}"; }, { name = HamzaAbove; position = "{64, 591}"; }, { name = HamzaBelow; position = "{143, -98}"; }, { name = RingBelow; position = "{90, 415}"; }, { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; }, { name = TwoDotsAbove; position = "{10, 591}"; }, { name = TwoDotsBelow; position = "{89, -146}"; }, { name = TwoDotsBelowAlt; position = "{89, -366}"; }, { name = VAbove; position = "{64, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "4 337 OFFCURVE", "-18 316 OFFCURVE", "-23 297 CURVE SMOOTH", "-28 278 OFFCURVE", "-28 258 OFFCURVE", "-22 236 CURVE SMOOTH", "-16 214 OFFCURVE", "-25 199 OFFCURVE", "-49 189 CURVE", "-77 178 OFFCURVE", "-92 192 OFFCURVE", "-94 233 CURVE SMOOTH", "-95 257 OFFCURVE", "-91 283 OFFCURVE", "-81 311 CURVE SMOOTH", "-43 419 OFFCURVE", "14 478 OFFCURVE", "89 490 CURVE SMOOTH", "128 496 OFFCURVE", "162 483 OFFCURVE", "192 453 CURVE", "204 440 OFFCURVE", "209 427 OFFCURVE", "206 415 CURVE SMOOTH", "192 366 OFFCURVE", "177 337 OFFCURVE", "161 331 CURVE SMOOTH", "155 329 OFFCURVE", "148 331 OFFCURVE", "140 338 CURVE SMOOTH", "105 368 OFFCURVE", "73 375 OFFCURVE", "44 359 CURVE" ); } ); width = 265; } ); }, { glyphname = aMem.medi.BaaMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = aSen.init.SenHaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{416, 617}"; }, { name = DotAbove; position = "{416, 617}"; }, { name = DotBelow; position = "{440, -49}"; }, { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = TwoDotsAbove; position = "{362, 568}"; }, { name = TwoDotsBelow; position = "{392, -49}"; }, { name = VAbove; position = "{416, 617}"; }, { name = exit; position = "{0, 223}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "567 461 OFFCURVE", "570 462 OFFCURVE", "573 458 CURVE SMOOTH", "576 454 OFFCURVE", "580 446 OFFCURVE", "581 433 CURVE SMOOTH", "584 400 OFFCURVE", "578 369 OFFCURVE", "564 339 CURVE SMOOTH", "550 309 OFFCURVE", "538 290 OFFCURVE", "529 281 CURVE SMOOTH", "520 272 OFFCURVE", "507 268 OFFCURVE", "491 270 CURVE SMOOTH", "456 274 OFFCURVE", "430 288 OFFCURVE", "416 315 CURVE SMOOTH", "414 318 OFFCURVE", "412 319 OFFCURVE", "409 315 CURVE SMOOTH", "366 270 OFFCURVE", "325 253 OFFCURVE", "288 263 CURVE SMOOTH", "263 270 OFFCURVE", "240 295 OFFCURVE", "220 336 CURVE SMOOTH", "213 350 OFFCURVE", "209 357 OFFCURVE", "209 358 CURVE SMOOTH", "209 359 OFFCURVE", "207 360 OFFCURVE", "206 360 CURVE SMOOTH", "205 360 OFFCURVE", "204 359 OFFCURVE", "203 358 CURVE SMOOTH", "161 305 OFFCURVE", "117 266 OFFCURVE", "72 241 CURVE SMOOTH", "-5 197 OFFCURVE", "-35 195 OFFCURVE", "-16 235 CURVE", "-14 241 OFFCURVE", "4 252 OFFCURVE", "36 268 CURVE SMOOTH", "68 284 OFFCURVE", "90 297 OFFCURVE", "101 305 CURVE SMOOTH", "126 324 OFFCURVE", "163 362 OFFCURVE", "212 420 CURVE SMOOTH", "223 433 OFFCURVE", "232 434 OFFCURVE", "239 420 CURVE SMOOTH", "246 406 OFFCURVE", "251 397 OFFCURVE", "254 390 CURVE SMOOTH", "269 363 OFFCURVE", "294 348 OFFCURVE", "329 345 CURVE SMOOTH", "383 340 OFFCURVE", "422 369 OFFCURVE", "445 432 CURVE SMOOTH", "447 436 OFFCURVE", "450 438 OFFCURVE", "454 438 CURVE SMOOTH", "458 438 OFFCURVE", "461 437 OFFCURVE", "464 434 CURVE SMOOTH", "467 431 OFFCURVE", "466 424 OFFCURVE", "463 416 CURVE SMOOTH", "452 389 OFFCURVE", "458 370 OFFCURVE", "480 360 CURVE SMOOTH", "495 353 OFFCURVE", "511 349 OFFCURVE", "528 350 CURVE SMOOTH", "531 350 OFFCURVE", "533 354 OFFCURVE", "533 362 CURVE SMOOTH", "533 370 OFFCURVE", "532 379 OFFCURVE", "528 389 CURVE SMOOTH", "524 399 OFFCURVE", "524 406 OFFCURVE", "527 410 CURVE SMOOTH", "564 458 LINE SMOOTH" ); } ); width = 644; }, { anchors = ( { name = DigitAbove; position = "{416, 617}"; }, { name = DotAbove; position = "{416, 617}"; }, { name = DotBelow; position = "{440, -49}"; }, { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = TwoDotsAbove; position = "{362, 568}"; }, { name = TwoDotsBelow; position = "{392, -49}"; }, { name = VAbove; position = "{416, 617}"; }, { name = exit; position = "{0, 223}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "445 447 OFFCURVE", "452 449 OFFCURVE", "462 446 CURVE SMOOTH", "472 443 OFFCURVE", "474 432 OFFCURVE", "468 415 CURVE SMOOTH", "462 398 OFFCURVE", "464 386 OFFCURVE", "472 380 CURVE SMOOTH", "486 370 OFFCURVE", "502 365 OFFCURVE", "519 365 CURVE", "519 371 OFFCURVE", "517 379 OFFCURVE", "512 390 CURVE SMOOTH", "507 401 OFFCURVE", "508 410 OFFCURVE", "515 418 CURVE SMOOTH", "553 468 LINE SMOOTH", "565 484 OFFCURVE", "574 483 OFFCURVE", "580 464 CURVE", "589 421 OFFCURVE", "586 382 OFFCURVE", "572 346 CURVE SMOOTH", "558 310 OFFCURVE", "544 285 OFFCURVE", "531 272 CURVE SMOOTH", "518 259 OFFCURVE", "502 253 OFFCURVE", "484 255 CURVE SMOOTH", "452 259 OFFCURVE", "427 274 OFFCURVE", "407 300 CURVE", "367 257 OFFCURVE", "326 240 OFFCURVE", "284 249 CURVE SMOOTH", "251 256 OFFCURVE", "225 288 OFFCURVE", "204 346 CURVE", "134 270 OFFCURVE", "66 222 OFFCURVE", "0 203 CURVE SMOOTH", "-12 200 OFFCURVE", "-22 201 OFFCURVE", "-30 207 CURVE SMOOTH", "-38 213 OFFCURVE", "-37 224 OFFCURVE", "-29 241 CURVE SMOOTH", "-24 251 OFFCURVE", "-7 264 OFFCURVE", "26 280 CURVE SMOOTH", "91 312 OFFCURVE", "153 362 OFFCURVE", "211 430 CURVE SMOOTH", "226 447 OFFCURVE", "239 445 OFFCURVE", "249 424 CURVE SMOOTH", "269 383 OFFCURVE", "295 361 OFFCURVE", "330 359 CURVE", "381 355 OFFCURVE", "418 382 OFFCURVE", "441 438 CURVE SMOOTH" ); } ); width = 644; } ); }, { glyphname = aKaf.init.KafRaaIsol; layers = ( { anchors = ( { name = Dash; position = "{212, 796}"; }, { name = DotAbove; position = "{-98, 801}"; }, { name = DotBelow; position = "{195, 0}"; }, { name = RingBelow; position = "{203, 698}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; }, { name = TwoDotsAbove; position = "{-151, 801}"; }, { name = TwoDotsBelow; position = "{195, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "497 755 LINE SMOOTH", "496 750 OFFCURVE", "491 746 OFFCURVE", "483 744 CURVE SMOOTH", "299 695 OFFCURVE", "118 633 OFFCURVE", "-62 557 CURVE", "89 411 OFFCURVE", "156 272 OFFCURVE", "138 141 CURVE SMOOTH", "129 74 OFFCURVE", "92 35 OFFCURVE", "28 26 CURVE SMOOTH", "17 24 OFFCURVE", "5 39 OFFCURVE", "-8 70 CURVE SMOOTH", "-29 119 OFFCURVE", "-29 141 OFFCURVE", "-8 136 CURVE SMOOTH", "25 128 OFFCURVE", "62 135 OFFCURVE", "105 157 CURVE", "124 203 OFFCURVE", "77 284 OFFCURVE", "-39 400 CURVE SMOOTH", "-45 406 OFFCURVE", "-50 406 OFFCURVE", "-56 401 CURVE SMOOTH", "-65 394 LINE SMOOTH", "-72 388 OFFCURVE", "-79 389 OFFCURVE", "-85 396 CURVE SMOOTH", "-116 430 OFFCURVE", "-134 451 OFFCURVE", "-139 458 CURVE SMOOTH", "-144 465 OFFCURVE", "-145 472 OFFCURVE", "-143 482 CURVE SMOOTH", "-123 570 OFFCURVE", "-85 629 OFFCURVE", "-29 656 CURVE SMOOTH", "122 731 OFFCURVE", "299 790 OFFCURVE", "501 836 CURVE SMOOTH", "508 838 OFFCURVE", "512 834 OFFCURVE", "510 826 CURVE SMOOTH" ); } ); width = 573; }, { anchors = ( { name = Dash; position = "{212, 796}"; }, { name = DotAbove; position = "{-98, 801}"; }, { name = DotBelow; position = "{195, 0}"; }, { name = RingBelow; position = "{203, 698}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; }, { name = TwoDotsAbove; position = "{-151, 801}"; }, { name = TwoDotsBelow; position = "{195, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "511 752 LINE", "508 741 OFFCURVE", "500 734 OFFCURVE", "487 730 CURVE", "310 682 OFFCURVE", "136 623 OFFCURVE", "-36 552 CURVE", "108 408 OFFCURVE", "170 270 OFFCURVE", "152 139 CURVE SMOOTH", "142 65 OFFCURVE", "101 22 OFFCURVE", "30 11 CURVE SMOOTH", "14 9 OFFCURVE", "0 20 OFFCURVE", "-13 46 CURVE SMOOTH", "-39 98 OFFCURVE", "-45 131 OFFCURVE", "-30 145 CURVE", "-23 151 OFFCURVE", "-14 152 OFFCURVE", "-4 150 CURVE SMOOTH", "24 144 OFFCURVE", "57 150 OFFCURVE", "94 168 CURVE", "101 197 OFFCURVE", "78 243 OFFCURVE", "26 307 CURVE SMOOTH", "5 333 OFFCURVE", "-19 359 OFFCURVE", "-48 388 CURVE", "-67 373 OFFCURVE", "-84 373 OFFCURVE", "-96 387 CURVE SMOOTH", "-127 421 OFFCURVE", "-145 442 OFFCURVE", "-152 451 CURVE SMOOTH", "-159 460 OFFCURVE", "-160 472 OFFCURVE", "-157 486 CURVE SMOOTH", "-136 579 OFFCURVE", "-96 640 OFFCURVE", "-36 669 CURVE SMOOTH", "116 744 OFFCURVE", "295 804 OFFCURVE", "498 850 CURVE", "516 853 OFFCURVE", "525 846 OFFCURVE", "525 828 CURVE SMOOTH", "525 826 OFFCURVE", "524 824 OFFCURVE", "524 823 CURVE SMOOTH" ); } ); width = 573; } ); }, { glyphname = aRaa.fina.KafRaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{244, 269}"; }, { name = DotAlt; position = "{216, -43}"; }, { name = DotBelow; position = "{385, -325}"; }, { name = HamzaAbove; position = "{244, 269}"; }, { name = RingBelow; position = "{241, -197}"; }, { name = Stroke; position = "{417, -47}"; }, { name = TaaAbove; position = "{146, 220}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; }, { name = TwoDotsAbove; position = "{195, 269}"; }, { name = VAbove; position = "{195, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "403 147 OFFCURVE", "415 129 OFFCURVE", "428 103 CURVE SMOOTH", "441 77 OFFCURVE", "447 48 OFFCURVE", "445 17 CURVE SMOOTH", "443 -14 OFFCURVE", "436 -49 OFFCURVE", "422 -87 CURVE SMOOTH", "408 -125 OFFCURVE", "388 -161 OFFCURVE", "360 -195 CURVE SMOOTH", "332 -229 OFFCURVE", "303 -249 OFFCURVE", "270 -255 CURVE SMOOTH", "256 -258 OFFCURVE", "244 -258 OFFCURVE", "234 -256 CURVE SMOOTH", "192 -249 OFFCURVE", "138 -233 OFFCURVE", "70 -205 CURVE SMOOTH", "66 -204 OFFCURVE", "64 -201 OFFCURVE", "63 -198 CURVE SMOOTH", "62 -195 OFFCURVE", "63 -191 OFFCURVE", "66 -188 CURVE SMOOTH", "69 -185 OFFCURVE", "73 -185 OFFCURVE", "78 -185 CURVE SMOOTH", "147 -191 OFFCURVE", "195 -191 OFFCURVE", "223 -184 CURVE SMOOTH", "251 -177 OFFCURVE", "285 -158 OFFCURVE", "327 -125 CURVE SMOOTH", "369 -92 OFFCURVE", "395 -62 OFFCURVE", "407 -34 CURVE", "412 -14 OFFCURVE", "410 4 OFFCURVE", "400 23 CURVE SMOOTH", "390 42 OFFCURVE", "378 56 OFFCURVE", "364 65 CURVE SMOOTH", "362 66 OFFCURVE", "362 72 OFFCURVE", "364 81 CURVE SMOOTH", "379 151 LINE SMOOTH", "380 155 OFFCURVE", "382 156 OFFCURVE", "385 157 CURVE SMOOTH", "388 158 OFFCURVE", "390 157 OFFCURVE", "391 155 CURVE" ); } ); width = 417; }, { anchors = ( { name = DotAbove; position = "{244, 269}"; }, { name = DotAlt; position = "{216, -43}"; }, { name = DotBelow; position = "{385, -325}"; }, { name = HamzaAbove; position = "{244, 269}"; }, { name = RingBelow; position = "{241, -197}"; }, { name = Stroke; position = "{417, -47}"; }, { name = TaaAbove; position = "{146, 220}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; }, { name = TwoDotsAbove; position = "{195, 269}"; }, { name = VAbove; position = "{195, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "417 144 OFFCURVE", "429 126 OFFCURVE", "438 108 CURVE SMOOTH", "465 55 OFFCURVE", "462 -12 OFFCURVE", "431 -92 CURVE SMOOTH", "392 -193 OFFCURVE", "339 -252 OFFCURVE", "272 -269 CURVE SMOOTH", "257 -272 OFFCURVE", "236 -271 OFFCURVE", "209 -265 CURVE SMOOTH", "188 -260 OFFCURVE", "142 -243 OFFCURVE", "69 -212 CURVE SMOOTH", "59 -208 OFFCURVE", "55 -200 OFFCURVE", "58 -190 CURVE SMOOTH", "61 -180 OFFCURVE", "68 -176 OFFCURVE", "79 -177 CURVE SMOOTH", "138 -183 OFFCURVE", "183 -181 OFFCURVE", "213 -173 CURVE SMOOTH", "243 -165 OFFCURVE", "279 -145 OFFCURVE", "320 -114 CURVE SMOOTH", "361 -83 OFFCURVE", "387 -54 OFFCURVE", "398 -29 CURVE", "402 -13 OFFCURVE", "398 3 OFFCURVE", "388 18 CURVE SMOOTH", "378 33 OFFCURVE", "368 44 OFFCURVE", "359 51 CURVE SMOOTH", "350 58 OFFCURVE", "347 68 OFFCURVE", "350 84 CURVE SMOOTH", "365 154 LINE SMOOTH", "371 181 OFFCURVE", "383 185 OFFCURVE", "402 165 CURVE" ); } ); width = 417; } ); }, { glyphname = aAyn.init.AynHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{209, 750}"; }, { name = DotBelow; position = "{449, 293}"; }, { name = HamzaAbove; position = "{209, 750}"; }, { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = TwoDotsAbove; position = "{155, 750}"; }, { name = exit; position = "{0, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "480 446 OFFCURVE", "470 425 OFFCURVE", "446 387 CURVE SMOOTH", "442 381 OFFCURVE", "437 377 OFFCURVE", "430 375 CURVE SMOOTH", "250 326 OFFCURVE", "145 295 OFFCURVE", "114 284 CURVE", "-7 230 LINE", "-19 228 OFFCURVE", "-27 231 OFFCURVE", "-29 238 CURVE SMOOTH", "-30 240 OFFCURVE", "-28 243 OFFCURVE", "-24 247 CURVE SMOOTH", "1 277 OFFCURVE", "58 310 OFFCURVE", "148 347 CURVE", "124 366 OFFCURVE", "107 384 OFFCURVE", "97 401 CURVE SMOOTH", "87 418 OFFCURVE", "88 442 OFFCURVE", "100 474 CURVE SMOOTH", "112 506 OFFCURVE", "136 537 OFFCURVE", "172 568 CURVE SMOOTH", "208 599 OFFCURVE", "242 614 OFFCURVE", "273 611 CURVE SMOOTH", "318 607 OFFCURVE", "354 585 OFFCURVE", "382 544 CURVE SMOOTH", "386 539 OFFCURVE", "386 535 OFFCURVE", "384 532 CURVE SMOOTH", "382 529 OFFCURVE", "378 527 OFFCURVE", "373 529 CURVE SMOOTH", "333 542 OFFCURVE", "299 549 OFFCURVE", "272 548 CURVE SMOOTH", "211 546 OFFCURVE", "167 526 OFFCURVE", "141 485 CURVE", "171 438 OFFCURVE", "208 412 OFFCURVE", "253 408 CURVE SMOOTH", "315 402 OFFCURVE", "387 418 OFFCURVE", "466 454 CURVE SMOOTH", "470 456 OFFCURVE", "472 455 OFFCURVE", "475 452 CURVE SMOOTH" ); } ); width = 545; }, { anchors = ( { name = DotAbove; position = "{209, 750}"; }, { name = DotBelow; position = "{449, 293}"; }, { name = HamzaAbove; position = "{209, 750}"; }, { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = TwoDotsAbove; position = "{155, 750}"; }, { name = exit; position = "{0, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "469 471 OFFCURVE", "478 470 OFFCURVE", "487 461 CURVE SMOOTH", "496 452 OFFCURVE", "493 435 OFFCURVE", "479 411 CURVE SMOOTH", "478 410 OFFCURVE", "472 399 OFFCURVE", "459 379 CURVE SMOOTH", "453 370 OFFCURVE", "445 364 OFFCURVE", "434 361 CURVE SMOOTH", "256 312 OFFCURVE", "151 282 OFFCURVE", "120 271 CURVE", "-3 216 LINE", "-25 213 OFFCURVE", "-38 218 OFFCURVE", "-43 233 CURVE SMOOTH", "-45 240 OFFCURVE", "-43 249 OFFCURVE", "-35 257 CURVE", "-10 286 OFFCURVE", "42 317 OFFCURVE", "121 351 CURVE", "105 365 OFFCURVE", "93 379 OFFCURVE", "85 393 CURVE SMOOTH", "73 415 OFFCURVE", "73 443 OFFCURVE", "86 478 CURVE SMOOTH", "99 513 OFFCURVE", "125 547 OFFCURVE", "164 580 CURVE SMOOTH", "203 613 OFFCURVE", "240 628 OFFCURVE", "274 625 CURVE SMOOTH", "323 621 OFFCURVE", "363 597 OFFCURVE", "394 553 CURVE", "401 542 OFFCURVE", "401 532 OFFCURVE", "395 523 CURVE SMOOTH", "389 514 OFFCURVE", "379 511 OFFCURVE", "368 515 CURVE SMOOTH", "330 528 OFFCURVE", "299 535 OFFCURVE", "273 534 CURVE SMOOTH", "221 532 OFFCURVE", "183 516 OFFCURVE", "159 485 CURVE", "186 447 OFFCURVE", "218 426 OFFCURVE", "255 423 CURVE SMOOTH", "315 418 OFFCURVE", "383 432 OFFCURVE", "460 467 CURVE SMOOTH" ); } ); width = 545; } ); }, { glyphname = aKaf.medi.KafYaaFina; layers = ( { anchors = ( { name = Dash; position = "{286, 776}"; }, { name = DotAbove; position = "{-66, 726}"; }, { name = DotBelow; position = "{361, -98}"; }, { name = RingBelow; position = "{225, 630}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{-120, 726}"; }, { name = TwoDotsBelow; position = "{308, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "549 714 LINE SMOOTH", "545 700 OFFCURVE", "536 691 OFFCURVE", "520 687 CURVE SMOOTH", "174 604 OFFCURVE", "-43 534 OFFCURVE", "-128 476 CURVE SMOOTH", "-130 474 OFFCURVE", "-129 472 OFFCURVE", "-125 470 CURVE SMOOTH", "-10 406 OFFCURVE", "109 326 OFFCURVE", "231 231 CURVE SMOOTH", "332 153 OFFCURVE", "418 106 OFFCURVE", "488 90 CURVE SMOOTH", "511 85 OFFCURVE", "521 71 OFFCURVE", "515 49 CURVE SMOOTH", "506 16 OFFCURVE", "497 0 OFFCURVE", "488 0 CURVE SMOOTH", "460 0 OFFCURVE", "418 19 OFFCURVE", "359 57 CURVE", "301 93 OFFCURVE", "250 130 OFFCURVE", "206 166 CURVE SMOOTH", "195 175 OFFCURVE", "161 198 OFFCURVE", "107 236 CURVE", "127 177 OFFCURVE", "135 133 OFFCURVE", "132 106 CURVE SMOOTH", "124 33 OFFCURVE", "70 -17 OFFCURVE", "-30 -44 CURVE SMOOTH", "-37 -46 OFFCURVE", "-40 -42 OFFCURVE", "-38 -31 CURVE SMOOTH", "-30 21 LINE SMOOTH", "-29 26 OFFCURVE", "-26 29 OFFCURVE", "-20 31 CURVE", "61 61 OFFCURVE", "106 88 OFFCURVE", "115 111 CURVE", "94 178 OFFCURVE", "7 265 OFFCURVE", "-143 370 CURVE SMOOTH", "-153 377 OFFCURVE", "-158 380 OFFCURVE", "-158 381 CURVE SMOOTH", "-163 388 OFFCURVE", "-166 403 OFFCURVE", "-169 424 CURVE SMOOTH", "-172 445 OFFCURVE", "-172 463 OFFCURVE", "-168 477 CURVE", "-164 491 OFFCURVE", "-152 509 OFFCURVE", "-133 534 CURVE SMOOTH", "-115 557 OFFCURVE", "-99 573 OFFCURVE", "-85 581 CURVE SMOOTH", "4 636 OFFCURVE", "215 705 OFFCURVE", "548 786 CURVE SMOOTH", "562 789 OFFCURVE", "567 785 OFFCURVE", "564 772 CURVE SMOOTH" ); } ); width = 488; }, { anchors = ( { name = Dash; position = "{286, 776}"; }, { name = DotAbove; position = "{-66, 726}"; }, { name = DotBelow; position = "{361, -98}"; }, { name = RingBelow; position = "{225, 630}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{-120, 726}"; }, { name = TwoDotsBelow; position = "{308, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "564 711 LINE SMOOTH", "559 691 OFFCURVE", "545 678 OFFCURVE", "523 673 CURVE SMOOTH", "200 596 OFFCURVE", "-9 530 OFFCURVE", "-103 475 CURVE", "8 412 OFFCURVE", "119 338 OFFCURVE", "227 254 CURVE SMOOTH", "335 170 OFFCURVE", "423 120 OFFCURVE", "491 105 CURVE SMOOTH", "512 100 OFFCURVE", "526 89 OFFCURVE", "530 71 CURVE SMOOTH", "532 63 OFFCURVE", "530 50 OFFCURVE", "525 32 CURVE SMOOTH", "517 1 OFFCURVE", "504 -15 OFFCURVE", "488 -15 CURVE", "457 -15 OFFCURVE", "412 5 OFFCURVE", "351 44 CURVE", "292 81 OFFCURVE", "240 117 OFFCURVE", "196 154 CURVE SMOOTH", "187 161 OFFCURVE", "167 177 OFFCURVE", "134 200 CURVE", "144 164 OFFCURVE", "148 139 OFFCURVE", "148 127 CURVE SMOOTH", "148 115 OFFCURVE", "147 108 OFFCURVE", "147 105 CURVE SMOOTH", "138 25 OFFCURVE", "80 -30 OFFCURVE", "-26 -59 CURVE SMOOTH", "-30 -60 OFFCURVE", "-33 -59 OFFCURVE", "-36 -59 CURVE SMOOTH", "-50 -57 OFFCURVE", "-56 -48 OFFCURVE", "-53 -29 CURVE SMOOTH", "-45 23 LINE SMOOTH", "-43 34 OFFCURVE", "-36 41 OFFCURVE", "-25 45 CURVE SMOOTH", "44 71 OFFCURVE", "85 93 OFFCURVE", "99 112 CURVE", "75 176 OFFCURVE", "-8 258 OFFCURVE", "-151 358 CURVE SMOOTH", "-162 366 OFFCURVE", "-168 371 OFFCURVE", "-170 373 CURVE SMOOTH", "-176 383 OFFCURVE", "-181 399 OFFCURVE", "-184 422 CURVE SMOOTH", "-187 445 OFFCURVE", "-186 465 OFFCURVE", "-181 481 CURVE SMOOTH", "-176 497 OFFCURVE", "-165 517 OFFCURVE", "-145 542 CURVE SMOOTH", "-125 567 OFFCURVE", "-108 585 OFFCURVE", "-93 594 CURVE SMOOTH", "-2 650 OFFCURVE", "211 718 OFFCURVE", "545 800 CURVE SMOOTH", "552 801 OFFCURVE", "558 802 OFFCURVE", "563 801 CURVE SMOOTH", "578 797 OFFCURVE", "583 786 OFFCURVE", "579 768 CURVE" ); } ); width = 488; } ); }, { glyphname = aYaa.fina.KafYaaFina; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = DigitAbove; position = "{243, 251}"; }, { name = DigitBelow; position = "{361, -460}"; }, { name = DotAbove; position = "{243, 251}"; }, { name = DotBelow; position = "{361, -460}"; }, { name = HamzaAbove; position = "{145, 251}"; }, { name = HamzaBelow; position = "{361, -460}"; }, { name = RingBelow; position = "{298, -262}"; }, { name = Tail; position = "{124, 84}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; }, { name = TwoDotsAbove; position = "{189, 251}"; }, { name = TwoDotsBelow; position = "{307, -460}"; }, { name = VAbove; position = "{194, 251}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "585 30 OFFCURVE", "662 5 OFFCURVE", "680 -42 CURVE SMOOTH", "684 -51 OFFCURVE", "680 -71 OFFCURVE", "667 -103 CURVE SMOOTH", "654 -135 OFFCURVE", "641 -156 OFFCURVE", "628 -167 CURVE SMOOTH", "582 -206 OFFCURVE", "530 -240 OFFCURVE", "470 -267 CURVE SMOOTH", "410 -294 OFFCURVE", "352 -309 OFFCURVE", "298 -313 CURVE SMOOTH", "209 -320 OFFCURVE", "145 -298 OFFCURVE", "107 -247 CURVE SMOOTH", "53 -174 OFFCURVE", "46 -85 OFFCURVE", "85 20 CURVE SMOOTH", "96 50 OFFCURVE", "108 74 OFFCURVE", "119 92 CURVE SMOOTH", "123 98 OFFCURVE", "128 100 OFFCURVE", "134 96 CURVE SMOOTH", "140 92 OFFCURVE", "139 84 OFFCURVE", "132 72 CURVE SMOOTH", "125 60 OFFCURVE", "118 45 OFFCURVE", "112 25 CURVE SMOOTH", "88 -56 OFFCURVE", "101 -118 OFFCURVE", "152 -163 CURVE SMOOTH", "203 -209 OFFCURVE", "274 -223 OFFCURVE", "364 -206 CURVE SMOOTH", "436 -192 OFFCURVE", "512 -162 OFFCURVE", "590 -113 CURVE SMOOTH", "615 -97 OFFCURVE", "630 -87 OFFCURVE", "635 -82 CURVE", "608 -61 OFFCURVE", "543 -48 OFFCURVE", "442 -44 CURVE SMOOTH", "435 -44 OFFCURVE", "432 -40 OFFCURVE", "433 -31 CURVE SMOOTH", "441 21 LINE SMOOTH", "442 28 OFFCURVE", "445 31 OFFCURVE", "451 31 CURVE SMOOTH" ); } ); width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = DigitAbove; position = "{243, 251}"; }, { name = DigitBelow; position = "{361, -460}"; }, { name = DotAbove; position = "{243, 251}"; }, { name = DotBelow; position = "{361, -460}"; }, { name = HamzaAbove; position = "{145, 251}"; }, { name = HamzaBelow; position = "{361, -460}"; }, { name = RingBelow; position = "{298, -262}"; }, { name = Tail; position = "{124, 84}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; }, { name = TwoDotsAbove; position = "{189, 251}"; }, { name = TwoDotsBelow; position = "{307, -460}"; }, { name = VAbove; position = "{194, 251}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "591 44 OFFCURVE", "672 18 OFFCURVE", "693 -35 CURVE SMOOTH", "698 -49 OFFCURVE", "694 -74 OFFCURVE", "680 -108 CURVE SMOOTH", "666 -142 OFFCURVE", "653 -166 OFFCURVE", "638 -179 CURVE SMOOTH", "591 -219 OFFCURVE", "536 -253 OFFCURVE", "475 -280 CURVE SMOOTH", "414 -307 OFFCURVE", "355 -324 OFFCURVE", "299 -328 CURVE", "204 -335 OFFCURVE", "137 -310 OFFCURVE", "96 -255 CURVE", "38 -178 OFFCURVE", "30 -85 OFFCURVE", "71 25 CURVE SMOOTH", "83 56 OFFCURVE", "95 81 OFFCURVE", "107 100 CURVE SMOOTH", "113 109 OFFCURVE", "120 113 OFFCURVE", "127 112 CURVE SMOOTH", "134 111 OFFCURVE", "139 110 OFFCURVE", "142 108 CURVE SMOOTH", "155 99 OFFCURVE", "156 85 OFFCURVE", "144 65 CURVE SMOOTH", "137 54 OFFCURVE", "131 39 OFFCURVE", "126 21 CURVE SMOOTH", "104 -54 OFFCURVE", "116 -112 OFFCURVE", "163 -153 CURVE SMOOTH", "210 -194 OFFCURVE", "275 -208 OFFCURVE", "358 -192 CURVE SMOOTH", "441 -176 OFFCURVE", "524 -141 OFFCURVE", "608 -84 CURVE", "575 -71 OFFCURVE", "520 -62 OFFCURVE", "441 -59 CURVE", "424 -57 OFFCURVE", "417 -48 OFFCURVE", "419 -29 CURVE", "427 22 LINE", "429 37 OFFCURVE", "437 45 OFFCURVE", "451 45 CURVE SMOOTH" ); } ); width = 471; } ); }, { glyphname = aLam.init.LamMemHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{-19, 858}"; }, { name = Stroke; position = "{0, 584}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; }, { name = TwoDotsAbove; position = "{-77, 858}"; }, { name = TwoDotsBelow; position = "{122, -15}"; }, { name = VAbove; position = "{-19, 810}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-27 753 OFFCURVE", "-25 754 OFFCURVE", "-20 754 CURVE SMOOTH", "-15 754 OFFCURVE", "-12 752 OFFCURVE", "-11 748 CURVE SMOOTH", "2 716 OFFCURVE", "18 692 OFFCURVE", "36 675 CURVE SMOOTH", "43 669 OFFCURVE", "44 664 OFFCURVE", "41 658 CURVE SMOOTH", "38 652 OFFCURVE", "33 645 OFFCURVE", "26 635 CURVE SMOOTH", "19 625 OFFCURVE", "15 620 OFFCURVE", "15 618 CURVE SMOOTH", "15 616 OFFCURVE", "19 585 OFFCURVE", "26 525 CURVE SMOOTH", "33 465 OFFCURVE", "40 429 OFFCURVE", "46 419 CURVE SMOOTH", "52 409 OFFCURVE", "57 405 OFFCURVE", "62 404 CURVE SMOOTH", "71 403 OFFCURVE", "70 395 OFFCURVE", "59 379 CURVE SMOOTH", "48 363 OFFCURVE", "36 357 OFFCURVE", "24 361 CURVE SMOOTH", "12 365 OFFCURVE", "4 381 OFFCURVE", "2 409 CURVE SMOOTH", "1 419 OFFCURVE", "-5 455 OFFCURVE", "-15 518 CURVE SMOOTH", "-30 612 OFFCURVE", "-40 664 OFFCURVE", "-44 675 CURVE SMOOTH", "-48 686 OFFCURVE", "-49 696 OFFCURVE", "-46 704 CURVE SMOOTH", "-29 749 LINE SMOOTH" ); } ); width = 279; }, { anchors = ( { name = DotAbove; position = "{-19, 858}"; }, { name = Stroke; position = "{0, 584}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; }, { name = TwoDotsAbove; position = "{-77, 858}"; }, { name = TwoDotsBelow; position = "{122, -15}"; }, { name = VAbove; position = "{-19, 810}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-39 765 OFFCURVE", "-31 770 OFFCURVE", "-20 769 CURVE SMOOTH", "-9 768 OFFCURVE", "-1 762 OFFCURVE", "3 753 CURVE SMOOTH", "15 724 OFFCURVE", "28 703 OFFCURVE", "42 689 CURVE SMOOTH", "56 675 OFFCURVE", "60 663 OFFCURVE", "53 651 CURVE SMOOTH", "49 645 OFFCURVE", "45 637 OFFCURVE", "40 630 CURVE SMOOTH", "35 623 OFFCURVE", "32 618 OFFCURVE", "30 615 CURVE", "31 604 OFFCURVE", "35 573 OFFCURVE", "41 522 CURVE SMOOTH", "47 471 OFFCURVE", "53 439 OFFCURVE", "58 427 CURVE", "61 423 OFFCURVE", "63 420 OFFCURVE", "65 418 CURVE", "69 417 OFFCURVE", "72 417 OFFCURVE", "74 415 CURVE SMOOTH", "87 406 OFFCURVE", "86 391 OFFCURVE", "71 370 CURVE SMOOTH", "56 349 OFFCURVE", "39 342 OFFCURVE", "20 347 CURVE", "1 353 OFFCURVE", "-10 374 OFFCURVE", "-13 408 CURVE SMOOTH", "-14 418 OFFCURVE", "-20 461 OFFCURVE", "-33 538 CURVE SMOOTH", "-46 615 OFFCURVE", "-54 660 OFFCURVE", "-59 673 CURVE SMOOTH", "-64 686 OFFCURVE", "-64 698 OFFCURVE", "-60 709 CURVE SMOOTH", "-43 754 LINE SMOOTH" ); } ); width = 279; } ); }, { glyphname = aMem.medi.LamMemHaaInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{200, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "394 398 OFFCURVE", "420 385 OFFCURVE", "447 365 CURVE SMOOTH", "451 362 OFFCURVE", "453 358 OFFCURVE", "452 352 CURVE SMOOTH", "449 319 OFFCURVE", "443 290 OFFCURVE", "434 265 CURVE SMOOTH", "432 260 OFFCURVE", "430 259 OFFCURVE", "427 261 CURVE SMOOTH", "373 301 OFFCURVE", "323 322 OFFCURVE", "277 325 CURVE SMOOTH", "222 328 OFFCURVE", "137 295 OFFCURVE", "22 226 CURVE", "-11 221 OFFCURVE", "-19 232 OFFCURVE", "-2 261 CURVE", "177 369 OFFCURVE", "300 417 OFFCURVE", "368 403 CURVE SMOOTH" ); } ); width = 297; }, { anchors = ( { name = TashkilAbove; position = "{200, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "399 411 OFFCURVE", "427 398 OFFCURVE", "456 377 CURVE", "464 370 OFFCURVE", "468 362 OFFCURVE", "467 351 CURVE SMOOTH", "464 317 OFFCURVE", "457 286 OFFCURVE", "448 260 CURVE SMOOTH", "446 254 OFFCURVE", "441 249 OFFCURVE", "435 247 CURVE SMOOTH", "429 245 OFFCURVE", "423 246 OFFCURVE", "418 250 CURVE SMOOTH", "366 288 OFFCURVE", "317 308 OFFCURVE", "269 311 CURVE SMOOTH", "221 314 OFFCURVE", "140 280 OFFCURVE", "27 212 CURVE", "10 209 OFFCURVE", "-4 209 OFFCURVE", "-12 214 CURVE SMOOTH", "-29 224 OFFCURVE", "-29 244 OFFCURVE", "-13 272 CURVE", "171 384 OFFCURVE", "300 432 OFFCURVE", "371 417 CURVE SMOOTH" ); } ); width = 297; } ); }, { glyphname = aHaa.medi.LamMemHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{309, -98}"; }, { name = DotAbove; position = "{124, 488}"; }, { name = DotBelow; position = "{309, -98}"; }, { name = HamzaAbove; position = "{124, 488}"; }, { name = HamzaBelow; position = "{309, -98}"; }, { name = TaaAbove; position = "{124, 488}"; }, { name = TaaBelow; position = "{309, 98}"; }, { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; }, { name = TwoDotsAbove; position = "{69, 488}"; }, { name = TwoDotsBelow; position = "{255, -98}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = DigitBelow; position = "{309, -98}"; }, { name = DotAbove; position = "{124, 488}"; }, { name = DotBelow; position = "{309, -98}"; }, { name = HamzaAbove; position = "{124, 488}"; }, { name = HamzaBelow; position = "{309, -98}"; }, { name = TaaAbove; position = "{124, 488}"; }, { name = TaaBelow; position = "{309, 98}"; }, { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; }, { name = TwoDotsAbove; position = "{69, 488}"; }, { name = TwoDotsBelow; position = "{255, -98}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = aLam.medi.LamAlfFina; layers = ( { anchors = ( { name = DotAbove; position = "{85, 820}"; }, { name = Stroke; position = "{91, 545}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{29, 781}"; }, { name = TwoDotsBelow; position = "{0, -73}"; }, { name = VAbove; position = "{85, 781}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "95 675 LINE SMOOTH", "106 692 OFFCURVE", "113 689 OFFCURVE", "115 664 CURVE SMOOTH", "133 421 OFFCURVE", "150 267 OFFCURVE", "167 202 CURVE SMOOTH", "184 137 OFFCURVE", "210 99 OFFCURVE", "245 90 CURVE SMOOTH", "264 85 OFFCURVE", "271 63 OFFCURVE", "265 21 CURVE SMOOTH", "263 7 OFFCURVE", "256 0 OFFCURVE", "245 0 CURVE SMOOTH", "188 0 OFFCURVE", "149 35 OFFCURVE", "130 104 CURVE SMOOTH", "119 143 OFFCURVE", "110 200 OFFCURVE", "102 275 CURVE SMOOTH", "94 350 OFFCURVE", "88 391 OFFCURVE", "87 396 CURVE SMOOTH", "86 401 OFFCURVE", "84 403 OFFCURVE", "83 404 CURVE SMOOTH", "81 405 OFFCURVE", "79 389 OFFCURVE", "76 358 CURVE SMOOTH", "59 206 OFFCURVE", "18 96 OFFCURVE", "-48 27 CURVE SMOOTH", "-77 -3 OFFCURVE", "-110 -22 OFFCURVE", "-146 -31 CURVE SMOOTH", "-226 -50 OFFCURVE", "-280 -59 OFFCURVE", "-305 -56 CURVE SMOOTH", "-309 -56 OFFCURVE", "-310 -53 OFFCURVE", "-310 -49 CURVE SMOOTH", "-310 -45 OFFCURVE", "-308 -43 OFFCURVE", "-304 -41 CURVE SMOOTH", "-260 -25 OFFCURVE", "-205 5 OFFCURVE", "-136 47 CURVE SMOOTH", "-67 89 OFFCURVE", "-23 129 OFFCURVE", "-4 166 CURVE SMOOTH", "21 216 OFFCURVE", "39 285 OFFCURVE", "49 372 CURVE SMOOTH", "59 459 OFFCURVE", "63 523 OFFCURVE", "62 562 CURVE SMOOTH", "61 601 OFFCURVE", "62 626 OFFCURVE", "68 634 CURVE SMOOTH" ); } ); width = 245; }, { anchors = ( { name = DotAbove; position = "{85, 820}"; }, { name = Stroke; position = "{91, 545}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{29, 781}"; }, { name = TwoDotsBelow; position = "{0, -73}"; }, { name = VAbove; position = "{85, 781}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "98 697 LINE SMOOTH", "113 717 OFFCURVE", "122 707 OFFCURVE", "124 668 CURVE SMOOTH", "138 441 OFFCURVE", "154 291 OFFCURVE", "172 221 CURVE SMOOTH", "190 151 OFFCURVE", "216 111 OFFCURVE", "249 104 CURVE", "277 97 OFFCURVE", "287 69 OFFCURVE", "280 19 CURVE SMOOTH", "277 -3 OFFCURVE", "265 -15 OFFCURVE", "245 -15 CURVE SMOOTH", "184 -15 OFFCURVE", "142 24 OFFCURVE", "121 100 CURVE SMOOTH", "110 140 OFFCURVE", "101 191 OFFCURVE", "95 251 CURVE SMOOTH", "89 311 OFFCURVE", "86 346 OFFCURVE", "85 356 CURVE", "69 210 OFFCURVE", "28 97 OFFCURVE", "-38 17 CURVE SMOOTH", "-66 -16 OFFCURVE", "-101 -37 OFFCURVE", "-143 -45 CURVE SMOOTH", "-199 -56 OFFCURVE", "-254 -63 OFFCURVE", "-308 -65 CURVE SMOOTH", "-320 -65 OFFCURVE", "-326 -61 OFFCURVE", "-327 -53 CURVE SMOOTH", "-328 -45 OFFCURVE", "-325 -39 OFFCURVE", "-317 -36 CURVE SMOOTH", "-157 21 OFFCURVE", "-54 91 OFFCURVE", "-8 173 CURVE", "17 222 OFFCURVE", "34 289 OFFCURVE", "44 375 CURVE SMOOTH", "54 461 OFFCURVE", "58 527 OFFCURVE", "57 573 CURVE SMOOTH", "56 619 OFFCURVE", "59 647 OFFCURVE", "66 656 CURVE SMOOTH" ); } ); width = 245; } ); }, { glyphname = aAlf.fina.LamAlfFina; layers = ( { anchors = ( { name = DigitAbove; position = "{39, 562}"; }, { name = HamzaAbove; position = "{136, 732}"; }, { name = HamzaBelow; position = "{108, -114}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "462 165 OFFCURVE", "461 145 OFFCURVE", "453 138 CURVE SMOOTH", "445 131 OFFCURVE", "440 136 OFFCURVE", "436 153 CURVE", "410 249 OFFCURVE", "344 330 OFFCURVE", "238 395 CURVE SMOOTH", "228 401 OFFCURVE", "222 401 OFFCURVE", "219 395 CURVE SMOOTH", "209 375 LINE SMOOTH", "206 370 OFFCURVE", "203 367 OFFCURVE", "198 366 CURVE SMOOTH", "193 365 OFFCURVE", "185 369 OFFCURVE", "172 377 CURVE SMOOTH", "85 437 LINE", "72 446 OFFCURVE", "65 457 OFFCURVE", "65 468 CURVE SMOOTH", "63 574 LINE SMOOTH", "63 581 OFFCURVE", "68 587 OFFCURVE", "76 591 CURVE SMOOTH", "84 595 OFFCURVE", "93 595 OFFCURVE", "101 591 CURVE SMOOTH", "318 475 OFFCURVE", "436 344 OFFCURVE", "457 198 CURVE SMOOTH" ); } ); width = 446; }, { anchors = ( { name = DigitAbove; position = "{39, 562}"; }, { name = HamzaAbove; position = "{136, 732}"; }, { name = HamzaBelow; position = "{108, -114}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "467 159 OFFCURVE", "463 136 OFFCURVE", "453 133 CURVE SMOOTH", "444 130 OFFCURVE", "436 139 OFFCURVE", "430 160 CURVE SMOOTH", "400 255 OFFCURVE", "335 333 OFFCURVE", "234 393 CURVE", "223 369 LINE SMOOTH", "212 347 OFFCURVE", "192 346 OFFCURVE", "164 365 CURVE SMOOTH", "77 425 LINE SMOOTH", "60 436 OFFCURVE", "51 450 OFFCURVE", "51 467 CURVE SMOOTH", "49 574 LINE SMOOTH", "49 589 OFFCURVE", "53 600 OFFCURVE", "64 606 CURVE SMOOTH", "75 612 OFFCURVE", "88 611 OFFCURVE", "103 604 CURVE SMOOTH", "325 489 OFFCURVE", "444 354 OFFCURVE", "462 200 CURVE SMOOTH" ); } ); width = 446; } ); }, { glyphname = aLam.medi.LamMemMedi; layers = ( { anchors = ( { name = DotAbove; position = "{-37, 683}"; }, { name = Stroke; position = "{111, 555}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = TwoDotsAbove; position = "{-95, 683}"; }, { name = TwoDotsBelow; position = "{122, -73}"; }, { name = VAbove; position = "{-37, 634}"; }, { name = exit; position = "{0, 83}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "109 687 OFFCURVE", "113 689 OFFCURVE", "116 688 CURVE SMOOTH", "119 687 OFFCURVE", "121 684 OFFCURVE", "122 680 CURVE SMOOTH", "128 638 OFFCURVE", "137 553 OFFCURVE", "150 424 CURVE SMOOTH", "163 295 OFFCURVE", "176 210 OFFCURVE", "188 172 CURVE SMOOTH", "200 134 OFFCURVE", "215 106 OFFCURVE", "233 90 CURVE SMOOTH", "246 78 OFFCURVE", "250 61 OFFCURVE", "247 36 CURVE SMOOTH", "244 11 OFFCURVE", "239 -1 OFFCURVE", "233 0 CURVE", "206 8 OFFCURVE", "184 26 OFFCURVE", "168 54 CURVE SMOOTH", "152 82 OFFCURVE", "141 112 OFFCURVE", "136 146 CURVE", "133 125 OFFCURVE", "124 106 OFFCURVE", "109 88 CURVE SMOOTH", "94 70 OFFCURVE", "76 59 OFFCURVE", "55 53 CURVE SMOOTH", "23 44 OFFCURVE", "-6 53 OFFCURVE", "-32 79 CURVE SMOOTH", "-50 97 OFFCURVE", "-56 112 OFFCURVE", "-52 122 CURVE SMOOTH", "-48 132 OFFCURVE", "-37 136 OFFCURVE", "-21 133 CURVE SMOOTH", "8 127 OFFCURVE", "37 128 OFFCURVE", "65 135 CURVE SMOOTH", "93 142 OFFCURVE", "112 155 OFFCURVE", "120 173 CURVE", "125 185 OFFCURVE", "119 259 OFFCURVE", "102 396 CURVE SMOOTH", "85 533 OFFCURVE", "76 605 OFFCURVE", "75 610 CURVE SMOOTH", "74 615 OFFCURVE", "76 622 OFFCURVE", "81 631 CURVE SMOOTH", "107 683 LINE SMOOTH" ); } ); width = 232; }, { anchors = ( { name = DotAbove; position = "{-37, 683}"; }, { name = Stroke; position = "{111, 555}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = TwoDotsAbove; position = "{-95, 683}"; }, { name = TwoDotsBelow; position = "{122, -73}"; }, { name = VAbove; position = "{-37, 634}"; }, { name = exit; position = "{0, 83}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "100 701 OFFCURVE", "109 705 OFFCURVE", "120 702 CURVE", "129 699 OFFCURVE", "135 692 OFFCURVE", "137 682 CURVE", "143 640 OFFCURVE", "152 555 OFFCURVE", "165 426 CURVE SMOOTH", "178 297 OFFCURVE", "190 215 OFFCURVE", "202 178 CURVE SMOOTH", "214 141 OFFCURVE", "227 115 OFFCURVE", "243 100 CURVE SMOOTH", "259 85 OFFCURVE", "265 66 OFFCURVE", "262 41 CURVE SMOOTH", "259 16 OFFCURVE", "255 -1 OFFCURVE", "250 -8 CURVE SMOOTH", "245 -15 OFFCURVE", "237 -17 OFFCURVE", "228 -14 CURVE SMOOTH", "184 0 OFFCURVE", "153 37 OFFCURVE", "133 96 CURVE", "114 66 OFFCURVE", "88 47 OFFCURVE", "54 38 CURVE SMOOTH", "20 29 OFFCURVE", "-12 39 OFFCURVE", "-42 69 CURVE SMOOTH", "-65 92 OFFCURVE", "-72 111 OFFCURVE", "-65 128 CURVE SMOOTH", "-58 145 OFFCURVE", "-42 152 OFFCURVE", "-16 147 CURVE SMOOTH", "10 142 OFFCURVE", "34 143 OFFCURVE", "59 149 CURVE SMOOTH", "84 155 OFFCURVE", "99 165 OFFCURVE", "106 178 CURVE", "109 197 OFFCURVE", "103 271 OFFCURVE", "87 400 CURVE SMOOTH", "71 529 OFFCURVE", "63 598 OFFCURVE", "61 607 CURVE SMOOTH", "59 616 OFFCURVE", "62 626 OFFCURVE", "68 638 CURVE SMOOTH", "94 690 LINE SMOOTH" ); } ); width = 232; } ); }, { glyphname = aMem.medi.LamMemMedi; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "198 143 OFFCURVE", "207 136 OFFCURVE", "218 132 CURVE SMOOTH", "229 128 OFFCURVE", "241 119 OFFCURVE", "256 103 CURVE SMOOTH", "285 71 OFFCURVE", "300 42 OFFCURVE", "303 15 CURVE SMOOTH", "306 -12 OFFCURVE", "306 -36 OFFCURVE", "303 -56 CURVE SMOOTH", "300 -72 OFFCURVE", "291 -78 OFFCURVE", "277 -75 CURVE SMOOTH", "245 -69 OFFCURVE", "217 -53 OFFCURVE", "191 -25 CURVE SMOOTH", "165 3 OFFCURVE", "150 33 OFFCURVE", "145 66 CURVE SMOOTH", "143 77 OFFCURVE", "141 83 OFFCURVE", "138 86 CURVE SMOOTH", "135 89 OFFCURVE", "132 91 OFFCURVE", "127 91 CURVE SMOOTH", "122 91 OFFCURVE", "114 84 OFFCURVE", "101 71 CURVE SMOOTH", "60 30 OFFCURVE", "26 6 OFFCURVE", "0 0 CURVE SMOOTH", "-7 -2 OFFCURVE", "-11 3 OFFCURVE", "-15 14 CURVE SMOOTH", "-21 34 OFFCURVE", "-21 56 OFFCURVE", "-13 77 CURVE SMOOTH", "-10 85 OFFCURVE", "-6 89 OFFCURVE", "0 90 CURVE SMOOTH", "14 92 OFFCURVE", "34 101 OFFCURVE", "61 115 CURVE SMOOTH", "88 129 OFFCURVE", "108 144 OFFCURVE", "122 162 CURVE SMOOTH", "141 185 OFFCURVE", "157 190 OFFCURVE", "170 175 CURVE", "190 152 LINE SMOOTH" ); } ); width = 236; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "207 154 OFFCURVE", "216 149 OFFCURVE", "226 145 CURVE SMOOTH", "236 141 OFFCURVE", "251 129 OFFCURVE", "267 112 CURVE", "298 78 OFFCURVE", "315 46 OFFCURVE", "318 17 CURVE SMOOTH", "321 -12 OFFCURVE", "321 -35 OFFCURVE", "318 -54 CURVE SMOOTH", "314 -82 OFFCURVE", "299 -94 OFFCURVE", "275 -90 CURVE SMOOTH", "240 -84 OFFCURVE", "208 -65 OFFCURVE", "180 -35 CURVE SMOOTH", "152 -5 OFFCURVE", "135 28 OFFCURVE", "130 64 CURVE SMOOTH", "129 69 OFFCURVE", "129 72 OFFCURVE", "128 75 CURVE", "124 72 OFFCURVE", "118 68 OFFCURVE", "111 61 CURVE SMOOTH", "68 18 OFFCURVE", "31 -7 OFFCURVE", "3 -14 CURVE SMOOTH", "-12 -18 OFFCURVE", "-22 -10 OFFCURVE", "-29 10 CURVE", "-36 34 OFFCURVE", "-35 58 OFFCURVE", "-26 82 CURVE", "-21 95 OFFCURVE", "-13 103 OFFCURVE", "-1 105 CURVE SMOOTH", "11 107 OFFCURVE", "29 115 OFFCURVE", "54 128 CURVE SMOOTH", "79 141 OFFCURVE", "98 155 OFFCURVE", "111 171 CURVE", "137 203 OFFCURVE", "160 207 OFFCURVE", "181 184 CURVE", "201 161 LINE SMOOTH" ); } ); width = 236; } ); }, { glyphname = "lam-ar.init.Lellah"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 495}"; }, { name = TashkilBelow; position = "{49, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "80 242 LINE SMOOTH", "87 207 OFFCURVE", "92 183 OFFCURVE", "93 169 CURVE SMOOTH", "94 155 OFFCURVE", "94 140 OFFCURVE", "92 121 CURVE SMOOTH", "84 41 OFFCURVE", "60 1 OFFCURVE", "22 1 CURVE SMOOTH", "1 1 OFFCURVE", "-16 15 OFFCURVE", "-29 43 CURVE SMOOTH", "-42 71 OFFCURVE", "-43 91 OFFCURVE", "-32 103 CURVE SMOOTH", "-21 115 OFFCURVE", "-9 120 OFFCURVE", "7 116 CURVE SMOOTH", "23 112 OFFCURVE", "37 113 OFFCURVE", "48 118 CURVE", "47 134 OFFCURVE", "38 177 OFFCURVE", "22 245 CURVE SMOOTH", "6 313 OFFCURVE", "-6 370 OFFCURVE", "-14 415 CURVE SMOOTH", "-17 433 OFFCURVE", "-8 457 OFFCURVE", "13 487 CURVE SMOOTH", "20 498 OFFCURVE", "25 494 OFFCURVE", "29 477 CURVE SMOOTH" ); } ); width = 155; }, { anchors = ( { name = TashkilAbove; position = "{44, 495}"; }, { name = TashkilBelow; position = "{49, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "94 245 LINE", "101 209 OFFCURVE", "106 185 OFFCURVE", "107 170 CURVE SMOOTH", "108 155 OFFCURVE", "108 138 OFFCURVE", "106 119 CURVE SMOOTH", "97 31 OFFCURVE", "69 -14 OFFCURVE", "22 -14 CURVE", "-6 -13 OFFCURVE", "-27 4 OFFCURVE", "-42 37 CURVE", "-57 70 OFFCURVE", "-57 96 OFFCURVE", "-43 113 CURVE SMOOTH", "-29 130 OFFCURVE", "-10 135 OFFCURVE", "11 130 CURVE SMOOTH", "19 128 OFFCURVE", "26 128 OFFCURVE", "32 129 CURVE", "29 150 OFFCURVE", "21 191 OFFCURVE", "6 252 CURVE SMOOTH", "-9 313 OFFCURVE", "-21 367 OFFCURVE", "-29 413 CURVE", "-32 435 OFFCURVE", "-22 462 OFFCURVE", "1 495 CURVE", "6 502 OFFCURVE", "12 506 OFFCURVE", "17 507 CURVE", "31 509 OFFCURVE", "40 500 OFFCURVE", "44 480 CURVE SMOOTH" ); } ); width = 155; } ); }, { glyphname = "lam-ar.medi.Lellah"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 586}"; }, { name = TashkilBelow; position = "{68, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "256 113 OFFCURVE", "264 103 OFFCURVE", "268 84 CURVE SMOOTH", "272 65 OFFCURVE", "272 47 OFFCURVE", "268 29 CURVE SMOOTH", "264 11 OFFCURVE", "259 1 OFFCURVE", "253 1 CURVE SMOOTH", "225 0 OFFCURVE", "201 9 OFFCURVE", "182 26 CURVE SMOOTH", "163 43 OFFCURVE", "145 69 OFFCURVE", "127 103 CURVE", "107 56 OFFCURVE", "90 27 OFFCURVE", "74 18 CURVE SMOOTH", "58 9 OFFCURVE", "37 3 OFFCURVE", "11 2 CURVE SMOOTH", "-4 1 OFFCURVE", "-16 10 OFFCURVE", "-24 28 CURVE SMOOTH", "-32 46 OFFCURVE", "-34 63 OFFCURVE", "-29 80 CURVE SMOOTH", "-24 97 OFFCURVE", "-11 106 OFFCURVE", "10 106 CURVE SMOOTH", "58 106 OFFCURVE", "89 122 OFFCURVE", "104 156 CURVE SMOOTH", "104 156 OFFCURVE", "102 171 OFFCURVE", "97 200 CURVE SMOOTH", "75 313 LINE SMOOTH", "66 360 OFFCURVE", "60 391 OFFCURVE", "58 408 CURVE SMOOTH", "56 425 OFFCURVE", "57 437 OFFCURVE", "62 444 CURVE", "91 490 LINE SMOOTH", "98 500 OFFCURVE", "103 496 OFFCURVE", "107 478 CURVE SMOOTH", "109 470 OFFCURVE", "113 445 OFFCURVE", "119 405 CURVE SMOOTH", "140 270 OFFCURVE", "158 189 OFFCURVE", "175 161 CURVE SMOOTH", "192 133 OFFCURVE", "215 119 OFFCURVE", "244 115 CURVE SMOOTH" ); } ); width = 230; }, { anchors = ( { name = TashkilAbove; position = "{73, 586}"; }, { name = TashkilBelow; position = "{68, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "265 126 OFFCURVE", "276 113 OFFCURVE", "281 90 CURVE SMOOTH", "286 67 OFFCURVE", "286 47 OFFCURVE", "282 27 CURVE SMOOTH", "278 7 OFFCURVE", "274 -5 OFFCURVE", "269 -8 CURVE SMOOTH", "264 -11 OFFCURVE", "258 -14 OFFCURVE", "254 -14 CURVE SMOOTH", "222 -15 OFFCURVE", "196 -6 OFFCURVE", "178 11 CURVE SMOOTH", "160 28 OFFCURVE", "143 47 OFFCURVE", "129 70 CURVE", "113 36 OFFCURVE", "96 14 OFFCURVE", "79 4 CURVE SMOOTH", "62 -6 OFFCURVE", "39 -12 OFFCURVE", "11 -13 CURVE", "-11 -14 OFFCURVE", "-26 -2 OFFCURVE", "-36 20 CURVE SMOOTH", "-46 42 OFFCURVE", "-49 65 OFFCURVE", "-42 87 CURVE SMOOTH", "-35 109 OFFCURVE", "-18 121 OFFCURVE", "10 121 CURVE SMOOTH", "50 121 OFFCURVE", "76 133 OFFCURVE", "89 158 CURVE", "88 165 OFFCURVE", "85 179 OFFCURVE", "82 198 CURVE SMOOTH", "61 311 LINE SMOOTH", "52 358 OFFCURVE", "46 390 OFFCURVE", "43 409 CURVE SMOOTH", "40 428 OFFCURVE", "42 442 OFFCURVE", "49 452 CURVE SMOOTH", "79 498 LINE", "83 504 OFFCURVE", "88 507 OFFCURVE", "93 509 CURVE SMOOTH", "107 513 OFFCURVE", "116 504 OFFCURVE", "121 483 CURVE SMOOTH", "122 477 OFFCURVE", "127 451 OFFCURVE", "134 407 CURVE SMOOTH", "154 274 OFFCURVE", "172 196 OFFCURVE", "187 171 CURVE SMOOTH", "202 146 OFFCURVE", "222 132 OFFCURVE", "246 129 CURVE" ); } ); width = 230; } ); }, { glyphname = "heh-ar.fina.Lellah"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 415}"; }, { name = TashkilBelow; position = "{186, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "370 106 OFFCURVE", "377 97 OFFCURVE", "381 80 CURVE SMOOTH", "385 63 OFFCURVE", "385 45 OFFCURVE", "381 28 CURVE SMOOTH", "377 11 OFFCURVE", "371 2 OFFCURVE", "362 1 CURVE SMOOTH", "304 -5 OFFCURVE", "269 27 OFFCURVE", "256 96 CURVE SMOOTH", "255 99 OFFCURVE", "255 101 OFFCURVE", "255 102 CURVE", "233 69 OFFCURVE", "217 52 OFFCURVE", "205 50 CURVE SMOOTH", "146 39 OFFCURVE", "101 45 OFFCURVE", "71 66 CURVE SMOOTH", "60 74 OFFCURVE", "57 86 OFFCURVE", "63 103 CURVE SMOOTH", "75 142 OFFCURVE", "98 175 OFFCURVE", "131 202 CURVE SMOOTH", "164 229 OFFCURVE", "200 248 OFFCURVE", "238 257 CURVE", "236 306 LINE SMOOTH", "236 312 OFFCURVE", "242 327 OFFCURVE", "253 350 CURVE SMOOTH", "265 373 OFFCURVE", "271 387 OFFCURVE", "273 390 CURVE SMOOTH", "280 401 OFFCURVE", "285 396 OFFCURVE", "286 377 CURVE SMOOTH", "286 369 OFFCURVE", "287 345 OFFCURVE", "288 304 CURVE SMOOTH", "289 263 OFFCURVE", "291 225 OFFCURVE", "295 188 CURVE SMOOTH", "299 151 OFFCURVE", "310 127 OFFCURVE", "327 115 CURVE SMOOTH", "335 109 OFFCURVE", "347 106 OFFCURVE", "361 106 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "227 206 OFFCURVE", "208 199 OFFCURVE", "184 187 CURVE SMOOTH", "160 175 OFFCURVE", "145 163 OFFCURVE", "138 150 CURVE", "149 142 OFFCURVE", "172 139 OFFCURVE", "208 140 CURVE SMOOTH", "225 141 OFFCURVE", "238 145 OFFCURVE", "246 154 CURVE", "245 161 OFFCURVE", "242 180 OFFCURVE", "240 209 CURVE" ); } ); width = 352; }, { anchors = ( { name = TashkilAbove; position = "{88, 415}"; }, { name = TashkilBelow; position = "{186, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "378 120 OFFCURVE", "389 109 OFFCURVE", "394 87 CURVE SMOOTH", "399 65 OFFCURVE", "400 44 OFFCURVE", "395 22 CURVE SMOOTH", "390 0 OFFCURVE", "380 -11 OFFCURVE", "363 -13 CURVE SMOOTH", "305 -19 OFFCURVE", "267 8 OFFCURVE", "248 67 CURVE", "233 48 OFFCURVE", "219 37 OFFCURVE", "207 35 CURVE", "144 24 OFFCURVE", "96 30 OFFCURVE", "63 54 CURVE SMOOTH", "47 66 OFFCURVE", "42 84 OFFCURVE", "50 108 CURVE SMOOTH", "63 149 OFFCURVE", "86 183 OFFCURVE", "119 211 CURVE SMOOTH", "152 239 OFFCURVE", "187 257 OFFCURVE", "223 268 CURVE", "222 305 LINE SMOOTH", "222 314 OFFCURVE", "227 330 OFFCURVE", "239 355 CURVE SMOOTH", "251 380 OFFCURVE", "260 395 OFFCURVE", "265 403 CURVE SMOOTH", "270 411 OFFCURVE", "277 413 OFFCURVE", "285 410 CURVE SMOOTH", "293 407 OFFCURVE", "298 404 OFFCURVE", "299 398 CURVE SMOOTH", "300 392 OFFCURVE", "300 388 OFFCURVE", "300 387 CURVE SMOOTH", "300 386 OFFCURVE", "300 383 OFFCURVE", "300 381 CURVE SMOOTH", "300 379 OFFCURVE", "301 376 OFFCURVE", "301 372 CURVE SMOOTH", "301 368 OFFCURVE", "301 344 OFFCURVE", "302 304 CURVE SMOOTH", "303 264 OFFCURVE", "306 227 OFFCURVE", "310 193 CURVE SMOOTH", "314 159 OFFCURVE", "322 136 OFFCURVE", "335 127 CURVE", "341 123 OFFCURVE", "350 121 OFFCURVE", "361 121 CURVE" ); }, { closed = 1; nodes = ( "199 180 OFFCURVE", "178 169 OFFCURVE", "163 157 CURVE", "175 155 OFFCURVE", "187 154 OFFCURVE", "201 155 CURVE SMOOTH", "215 156 OFFCURVE", "225 157 OFFCURVE", "230 160 CURVE", "229 167 OFFCURVE", "228 177 OFFCURVE", "227 190 CURVE" ); } ); width = 352; } ); }, { glyphname = aBaa.init.BaaBaaHaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{95, 615}"; }, { name = DigitBelow; position = "{46, -49}"; }, { name = DotAbove; position = "{95, 615}"; }, { name = DotBelow; position = "{46, -49}"; }, { name = DotBelowAlt; position = "{46, -366}"; }, { name = HamzaAbove; position = "{95, 615}"; }, { name = HamzaBelow; position = "{46, -49}"; }, { name = RingBelow; position = "{63, 342}"; }, { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; }, { name = TwoDotsAbove; position = "{46, 615}"; }, { name = TwoDotsBelow; position = "{46, 0}"; }, { name = TwoDotsBelowAlt; position = "{46, -366}"; }, { name = VAbove; position = "{95, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-12 276 OFFCURVE", "-18 283 OFFCURVE", "-20 298 CURVE SMOOTH", "-22 313 OFFCURVE", "-20 328 OFFCURVE", "-13 342 CURVE SMOOTH", "-6 356 OFFCURVE", "4 363 OFFCURVE", "17 364 CURVE SMOOTH", "49 366 OFFCURVE", "68 391 OFFCURVE", "75 437 CURVE SMOOTH", "76 443 OFFCURVE", "78 447 OFFCURVE", "82 449 CURVE SMOOTH", "86 451 OFFCURVE", "89 451 OFFCURVE", "92 448 CURVE SMOOTH", "98 443 OFFCURVE", "99 426 OFFCURVE", "94 396 CURVE SMOOTH", "80 318 OFFCURVE", "48 277 OFFCURVE", "-2 276 CURVE SMOOTH" ); } ); width = 161; }, { anchors = ( { name = DigitAbove; position = "{95, 615}"; }, { name = DigitBelow; position = "{46, -49}"; }, { name = DotAbove; position = "{95, 615}"; }, { name = DotBelow; position = "{46, -49}"; }, { name = DotBelowAlt; position = "{46, -366}"; }, { name = HamzaAbove; position = "{95, 615}"; }, { name = HamzaBelow; position = "{46, -49}"; }, { name = RingBelow; position = "{63, 342}"; }, { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; }, { name = TwoDotsAbove; position = "{46, 615}"; }, { name = TwoDotsBelow; position = "{46, 0}"; }, { name = TwoDotsBelowAlt; position = "{46, -366}"; }, { name = VAbove; position = "{95, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-2 261 OFFCURVE", "-11 263 OFFCURVE", "-19 267 CURVE SMOOTH", "-27 271 OFFCURVE", "-32 281 OFFCURVE", "-35 298 CURVE SMOOTH", "-38 315 OFFCURVE", "-34 332 OFFCURVE", "-25 350 CURVE SMOOTH", "-16 368 OFFCURVE", "-3 377 OFFCURVE", "16 379 CURVE SMOOTH", "40 381 OFFCURVE", "55 401 OFFCURVE", "61 439 CURVE SMOOTH", "63 450 OFFCURVE", "67 458 OFFCURVE", "76 462 CURVE SMOOTH", "85 466 OFFCURVE", "94 466 OFFCURVE", "103 458 CURVE SMOOTH", "112 450 OFFCURVE", "115 428 OFFCURVE", "109 393 CURVE", "95 312 OFFCURVE", "61 268 OFFCURVE", "8 262 CURVE SMOOTH" ); } ); width = 161; } ); }, { glyphname = aBaa.medi.BaaBaaHaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{257, 599}"; }, { name = DigitBelow; position = "{341, -200}"; }, { name = DotAbove; position = "{257, 599}"; }, { name = DotBelow; position = "{341, -200}"; }, { name = HamzaAbove; position = "{257, 599}"; }, { name = HamzaBelow; position = "{341, -200}"; }, { name = RingBelow; position = "{322, 405}"; }, { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; }, { name = TwoDotsAbove; position = "{203, 599}"; }, { name = TwoDotsBelow; position = "{287, -146}"; }, { name = VAbove; position = "{257, 599}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "346 481 OFFCURVE", "374 474 OFFCURVE", "394 426 CURVE SMOOTH", "408 393 OFFCURVE", "425 374 OFFCURVE", "445 369 CURVE SMOOTH", "456 366 OFFCURVE", "463 365 OFFCURVE", "468 365 CURVE SMOOTH", "483 366 OFFCURVE", "483 344 OFFCURVE", "467 300 CURVE SMOOTH", "462 285 OFFCURVE", "456 277 OFFCURVE", "449 277 CURVE SMOOTH", "406 274 OFFCURVE", "372 303 OFFCURVE", "346 364 CURVE SMOOTH", "334 393 OFFCURVE", "302 386 OFFCURVE", "251 345 CURVE SMOOTH", "215 316 OFFCURVE", "180 293 OFFCURVE", "145 277 CURVE SMOOTH", "53 234 OFFCURVE", "-1 214 OFFCURVE", "-16 216 CURVE SMOOTH", "-42 220 OFFCURVE", "-43 234 OFFCURVE", "-21 258 CURVE SMOOTH", "-2 278 OFFCURVE", "11 290 OFFCURVE", "18 292 CURVE SMOOTH", "80 311 OFFCURVE", "121 324 OFFCURVE", "141 332 CURVE SMOOTH", "183 350 OFFCURVE", "218 371 OFFCURVE", "246 393 CURVE SMOOTH", "277 417 OFFCURVE", "298 435 OFFCURVE", "312 448 CURVE SMOOTH" ); } ); width = 451; }, { anchors = ( { name = DigitAbove; position = "{257, 599}"; }, { name = DigitBelow; position = "{341, -200}"; }, { name = DotAbove; position = "{257, 599}"; }, { name = DotBelow; position = "{341, -200}"; }, { name = HamzaAbove; position = "{257, 599}"; }, { name = HamzaBelow; position = "{341, -200}"; }, { name = RingBelow; position = "{322, 405}"; }, { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; }, { name = TwoDotsAbove; position = "{203, 599}"; }, { name = TwoDotsBelow; position = "{287, -146}"; }, { name = VAbove; position = "{257, 599}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "192 371 OFFCURVE", "247 407 OFFCURVE", "299 456 CURVE SMOOTH", "339 493 OFFCURVE", "372 492 OFFCURVE", "398 451 CURVE SMOOTH", "402 445 OFFCURVE", "405 438 OFFCURVE", "408 431 CURVE SMOOTH", "420 403 OFFCURVE", "433 387 OFFCURVE", "448 383 CURVE SMOOTH", "457 381 OFFCURVE", "464 380 OFFCURVE", "468 380 CURVE SMOOTH", "494 379 OFFCURVE", "501 359 OFFCURVE", "489 319 CURVE SMOOTH", "487 313 OFFCURVE", "484 305 OFFCURVE", "481 295 CURVE SMOOTH", "473 274 OFFCURVE", "463 264 OFFCURVE", "450 263 CURVE", "400 261 OFFCURVE", "361 293 OFFCURVE", "333 359 CURVE SMOOTH", "332 361 OFFCURVE", "331 363 OFFCURVE", "330 364 CURVE SMOOTH", "322 375 OFFCURVE", "298 364 OFFCURVE", "261 334 CURVE SMOOTH", "207 290 OFFCURVE", "131 249 OFFCURVE", "36 213 CURVE SMOOTH", "-2 199 OFFCURVE", "-28 199 OFFCURVE", "-43 212 CURVE", "-58 226 OFFCURVE", "-54 243 OFFCURVE", "-34 265 CURVE SMOOTH", "-14 287 OFFCURVE", "-2 299 OFFCURVE", "3 301 CURVE SMOOTH", "8 303 OFFCURVE", "27 310 OFFCURVE", "58 319 CURVE SMOOTH", "89 328 OFFCURVE", "115 338 OFFCURVE", "135 346 CURVE" ); } ); width = 451; } ); }, { glyphname = aHaa.medi.BaaBaaHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{169, -98}"; }, { name = DotAbove; position = "{76, 488}"; }, { name = DotBelow; position = "{169, -98}"; }, { name = HamzaAbove; position = "{76, 488}"; }, { name = HamzaBelow; position = "{169, -98}"; }, { name = TaaAbove; position = "{76, 488}"; }, { name = TaaBelow; position = "{169, 98}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; }, { name = TwoDotsAbove; position = "{22, 488}"; }, { name = TwoDotsBelow; position = "{115, -98}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = DigitBelow; position = "{169, -98}"; }, { name = DotAbove; position = "{76, 488}"; }, { name = DotBelow; position = "{169, -98}"; }, { name = HamzaAbove; position = "{76, 488}"; }, { name = HamzaBelow; position = "{169, -98}"; }, { name = TaaAbove; position = "{76, 488}"; }, { name = TaaBelow; position = "{169, 98}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; }, { name = TwoDotsAbove; position = "{22, 488}"; }, { name = TwoDotsBelow; position = "{115, -98}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = aBaa.medi.SenBaaMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{-51, 610}"; }, { name = DigitBelow; position = "{233, -107}"; }, { name = DotAbove; position = "{-51, 610}"; }, { name = DotBelow; position = "{233, -107}"; }, { name = HamzaAbove; position = "{-51, 610}"; }, { name = HamzaBelow; position = "{233, -107}"; }, { name = RingBelow; position = "{43, 347}"; }, { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; }, { name = TwoDotsAbove; position = "{-105, 610}"; }, { name = TwoDotsBelow; position = "{179, -107}"; }, { name = VAbove; position = "{-51, 610}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-41 219 OFFCURVE", "-46 204 OFFCURVE", "-57 199 CURVE SMOOTH", "-71 193 OFFCURVE", "-78 203 OFFCURVE", "-77 229 CURVE SMOOTH", "-76 264 OFFCURVE", "-69 293 OFFCURVE", "-57 314 CURVE SMOOTH", "-20 381 OFFCURVE", "22 413 OFFCURVE", "67 409 CURVE SMOOTH", "81 408 OFFCURVE", "90 401 OFFCURVE", "97 389 CURVE SMOOTH", "134 320 OFFCURVE", "181 288 OFFCURVE", "235 294 CURVE SMOOTH", "250 296 OFFCURVE", "257 288 OFFCURVE", "258 271 CURVE SMOOTH", "259 248 OFFCURVE", "253 228 OFFCURVE", "239 213 CURVE SMOOTH", "232 206 OFFCURVE", "224 202 OFFCURVE", "216 202 CURVE SMOOTH", "180 204 OFFCURVE", "149 215 OFFCURVE", "122 236 CURVE SMOOTH", "104 250 OFFCURVE", "82 274 OFFCURVE", "55 308 CURVE SMOOTH", "44 322 OFFCURVE", "24 318 OFFCURVE", "-3 297 CURVE SMOOTH", "-27 278 OFFCURVE", "-41 261 OFFCURVE", "-41 244 CURVE SMOOTH" ); } ); width = 217; }, { anchors = ( { name = DigitAbove; position = "{-51, 610}"; }, { name = DigitBelow; position = "{233, -107}"; }, { name = DotAbove; position = "{-51, 610}"; }, { name = DotBelow; position = "{233, -107}"; }, { name = HamzaAbove; position = "{-51, 610}"; }, { name = HamzaBelow; position = "{233, -107}"; }, { name = RingBelow; position = "{43, 347}"; }, { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; }, { name = TwoDotsAbove; position = "{-105, 610}"; }, { name = TwoDotsBelow; position = "{179, -107}"; }, { name = VAbove; position = "{-51, 610}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-26 213 OFFCURVE", "-34 193 OFFCURVE", "-51 185 CURVE SMOOTH", "-56 183 OFFCURVE", "-61 182 OFFCURVE", "-65 182 CURVE SMOOTH", "-84 183 OFFCURVE", "-92 201 OFFCURVE", "-91 235 CURVE SMOOTH", "-90 269 OFFCURVE", "-82 298 OFFCURVE", "-69 321 CURVE SMOOTH", "-28 394 OFFCURVE", "17 428 OFFCURVE", "68 424 CURVE", "87 422 OFFCURVE", "101 412 OFFCURVE", "110 396 CURVE SMOOTH", "145 333 OFFCURVE", "185 304 OFFCURVE", "233 309 CURVE SMOOTH", "250 311 OFFCURVE", "262 304 OFFCURVE", "269 289 CURVE SMOOTH", "271 284 OFFCURVE", "273 278 OFFCURVE", "273 272 CURVE SMOOTH", "274 244 OFFCURVE", "266 221 OFFCURVE", "249 203 CURVE", "239 192 OFFCURVE", "228 188 OFFCURVE", "216 188 CURVE SMOOTH", "176 190 OFFCURVE", "142 202 OFFCURVE", "113 225 CURVE SMOOTH", "94 240 OFFCURVE", "71 264 OFFCURVE", "43 298 CURVE SMOOTH", "38 305 OFFCURVE", "25 301 OFFCURVE", "5 285 CURVE SMOOTH", "-15 269 OFFCURVE", "-26 256 OFFCURVE", "-26 244 CURVE SMOOTH" ); } ); width = 217; } ); }, { glyphname = aMem.medi.SenBaaMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{143, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{143, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = aBaa.init.BaaBaaIsol; layers = ( { anchors = ( { name = DigitAbove; position = "{148, 403}"; }, { name = DigitBelow; position = "{112, -176}"; }, { name = DotAbove; position = "{148, 403}"; }, { name = DotBelow; position = "{112, -176}"; }, { name = DotBelowAlt; position = "{144, -471}"; }, { name = HamzaAbove; position = "{132, 403}"; }, { name = HamzaBelow; position = "{112, -176}"; }, { name = RingBelow; position = "{107, 39}"; }, { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; }, { name = TwoDotsAbove; position = "{89, 403}"; }, { name = TwoDotsBelow; position = "{63, -176}"; }, { name = TwoDotsBelowAlt; position = "{58, -514}"; }, { name = VAbove; position = "{132, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-42 64 OFFCURVE", "-46 83 OFFCURVE", "-36 109 CURVE SMOOTH", "-21 135 OFFCURVE", "-9 144 OFFCURVE", "1 136 CURVE SMOOTH", "50 99 OFFCURVE", "101 80 OFFCURVE", "151 81 CURVE SMOOTH", "153 81 OFFCURVE", "154 82 OFFCURVE", "154 85 CURVE SMOOTH", "154 88 OFFCURVE", "149 96 OFFCURVE", "139 108 CURVE SMOOTH", "137 111 OFFCURVE", "136 114 OFFCURVE", "137 118 CURVE SMOOTH", "161 187 LINE SMOOTH", "162 191 OFFCURVE", "164 193 OFFCURVE", "167 193 CURVE SMOOTH", "170 193 OFFCURVE", "172 191 OFFCURVE", "173 188 CURVE SMOOTH", "185 158 OFFCURVE", "189 129 OFFCURVE", "185 99 CURVE SMOOTH", "180 60 OFFCURVE", "170 33 OFFCURVE", "155 20 CURVE SMOOTH", "145 11 OFFCURVE", "136 5 OFFCURVE", "128 4 CURVE SMOOTH", "85 -3 OFFCURVE", "35 13 OFFCURVE", "-24 52 CURVE SMOOTH" ); } ); width = 247; }, { anchors = ( { name = DigitAbove; position = "{148, 403}"; }, { name = DigitBelow; position = "{112, -176}"; }, { name = DotAbove; position = "{148, 403}"; }, { name = DotBelow; position = "{112, -176}"; }, { name = DotBelowAlt; position = "{144, -471}"; }, { name = HamzaAbove; position = "{132, 403}"; }, { name = HamzaBelow; position = "{112, -176}"; }, { name = RingBelow; position = "{107, 39}"; }, { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; }, { name = TwoDotsAbove; position = "{89, 403}"; }, { name = TwoDotsBelow; position = "{63, -176}"; }, { name = TwoDotsBelowAlt; position = "{58, -514}"; }, { name = VAbove; position = "{132, 403}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-56 57 OFFCURVE", "-62 83 OFFCURVE", "-49 116 CURVE", "-29 152 OFFCURVE", "-9 162 OFFCURVE", "10 148 CURVE SMOOTH", "49 118 OFFCURVE", "90 101 OFFCURVE", "133 97 CURVE", "133 102 OFFCURVE", "129 109 OFFCURVE", "121 119 CURVE SMOOTH", "113 129 OFFCURVE", "111 138 OFFCURVE", "114 147 CURVE SMOOTH", "137 216 LINE SMOOTH", "149 252 OFFCURVE", "162 252 OFFCURVE", "177 218 CURVE", "191 181 OFFCURVE", "196 141 OFFCURVE", "192 96 CURVE SMOOTH", "186 32 OFFCURVE", "164 -3 OFFCURVE", "125 -10 CURVE", "77 -17 OFFCURVE", "25 -1 OFFCURVE", "-32 40 CURVE SMOOTH" ); } ); width = 247; } ); }, { glyphname = aBaa.fina.BaaBaaIsol; layers = ( { anchors = ( { name = DigitBelow; position = "{415, -205}"; }, { name = DotAbove; position = "{423, 425}"; }, { name = DotBelow; position = "{415, -205}"; }, { name = HamzaAbove; position = "{423, 425}"; }, { name = HamzaBelow; position = "{415, -205}"; }, { name = RingBelow; position = "{381, -10}"; }, { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; }, { name = TwoDotsAbove; position = "{369, 425}"; }, { name = TwoDotsBelow; position = "{361, -156}"; }, { name = VAbove; position = "{423, 425}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "781 130 OFFCURVE", "782 129 OFFCURVE", "785 127 CURVE SMOOTH", "799 117 OFFCURVE", "800 96 OFFCURVE", "788 65 CURVE SMOOTH", "780 44 OFFCURVE", "771 37 OFFCURVE", "763 42 CURVE SMOOTH", "758 45 OFFCURVE", "755 45 OFFCURVE", "753 43 CURVE SMOOTH", "654 -26 OFFCURVE", "513 -59 OFFCURVE", "329 -57 CURVE SMOOTH", "172 -55 OFFCURVE", "83 -13 OFFCURVE", "63 69 CURVE SMOOTH", "55 103 OFFCURVE", "56 137 OFFCURVE", "66 171 CURVE SMOOTH", "76 204 OFFCURVE", "90 229 OFFCURVE", "109 250 CURVE SMOOTH", "112 253 OFFCURVE", "116 255 OFFCURVE", "120 254 CURVE SMOOTH", "124 253 OFFCURVE", "127 250 OFFCURVE", "128 247 CURVE SMOOTH", "129 244 OFFCURVE", "128 240 OFFCURVE", "125 235 CURVE SMOOTH", "103 207 OFFCURVE", "93 180 OFFCURVE", "97 153 CURVE SMOOTH", "108 77 OFFCURVE", "202 40 OFFCURVE", "381 39 CURVE SMOOTH", "468 39 OFFCURVE", "554 49 OFFCURVE", "636 71 CURVE SMOOTH", "679 82 OFFCURVE", "708 93 OFFCURVE", "723 105 CURVE SMOOTH", "737 116 OFFCURVE", "747 137 OFFCURVE", "756 167 CURVE SMOOTH", "758 173 OFFCURVE", "761 175 OFFCURVE", "766 177 CURVE SMOOTH", "771 179 OFFCURVE", "776 178 OFFCURVE", "780 174 CURVE SMOOTH", "784 170 OFFCURVE", "785 164 OFFCURVE", "784 156 CURVE", "778 132 LINE" ); } ); width = 772; }, { anchors = ( { name = DigitBelow; position = "{415, -205}"; }, { name = DotAbove; position = "{423, 425}"; }, { name = DotBelow; position = "{415, -205}"; }, { name = HamzaAbove; position = "{423, 425}"; }, { name = HamzaBelow; position = "{415, -205}"; }, { name = RingBelow; position = "{381, -10}"; }, { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; }, { name = TwoDotsAbove; position = "{369, 425}"; }, { name = TwoDotsBelow; position = "{361, -156}"; }, { name = VAbove; position = "{423, 425}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "816 125 OFFCURVE", "819 95 OFFCURVE", "798 51 CURVE", "786 29 OFFCURVE", "770 22 OFFCURVE", "749 32 CURVE", "642 -37 OFFCURVE", "502 -72 OFFCURVE", "329 -72 CURVE", "171 -72 OFFCURVE", "81 -26 OFFCURVE", "59 65 CURVE SMOOTH", "50 102 OFFCURVE", "51 139 OFFCURVE", "62 174 CURVE SMOOTH", "73 209 OFFCURVE", "87 236 OFFCURVE", "106 256 CURVE SMOOTH", "114 265 OFFCURVE", "123 266 OFFCURVE", "132 259 CURVE SMOOTH", "141 252 OFFCURVE", "139 240 OFFCURVE", "128 226 CURVE SMOOTH", "110 203 OFFCURVE", "102 179 OFFCURVE", "104 155 CURVE SMOOTH", "109 87 OFFCURVE", "201 53 OFFCURVE", "381 53 CURVE SMOOTH", "464 53 OFFCURVE", "548 64 OFFCURVE", "632 85 CURVE SMOOTH", "679 97 OFFCURVE", "708 107 OFFCURVE", "718 116 CURVE SMOOTH", "728 125 OFFCURVE", "738 143 OFFCURVE", "747 170 CURVE SMOOTH", "753 187 OFFCURVE", "763 193 OFFCURVE", "778 188 CURVE SMOOTH", "793 183 OFFCURVE", "797 168 OFFCURVE", "788 143 CURVE" ); } ); width = 772; } ); }, { glyphname = aBaa.init.BaaBaaMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{91, 625}"; }, { name = DigitBelow; position = "{86, -39}"; }, { name = DotAbove; position = "{91, 625}"; }, { name = DotBelow; position = "{86, -39}"; }, { name = DotBelowAlt; position = "{86, -366}"; }, { name = HamzaAbove; position = "{91, 625}"; }, { name = HamzaBelow; position = "{86, -39}"; }, { name = RingBelow; position = "{49, 293}"; }, { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; }, { name = TwoDotsAbove; position = "{37, 625}"; }, { name = TwoDotsBelow; position = "{32, -39}"; }, { name = TwoDotsBelowAlt; position = "{32, -366}"; }, { name = VAbove; position = "{91, 625}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-23 263 OFFCURVE", "-22 277 OFFCURVE", "-16 300 CURVE SMOOTH", "-10 323 OFFCURVE", "-1 334 OFFCURVE", "13 334 CURVE SMOOTH", "27 334 OFFCURVE", "39 341 OFFCURVE", "50 354 CURVE SMOOTH", "61 367 OFFCURVE", "71 383 OFFCURVE", "78 403 CURVE SMOOTH", "81 412 OFFCURVE", "85 415 OFFCURVE", "92 412 CURVE SMOOTH", "99 409 OFFCURVE", "101 404 OFFCURVE", "99 396 CURVE SMOOTH", "88 346 OFFCURVE", "76 310 OFFCURVE", "63 290 CURVE SMOOTH", "43 258 OFFCURVE", "19 244 OFFCURVE", "-10 246 CURVE SMOOTH", "-17 247 OFFCURVE", "-21 249 OFFCURVE", "-22 256 CURVE SMOOTH" ); } ); width = 162; }, { anchors = ( { name = DigitAbove; position = "{91, 625}"; }, { name = DigitBelow; position = "{86, -39}"; }, { name = DotAbove; position = "{91, 625}"; }, { name = DotBelow; position = "{86, -39}"; }, { name = DotBelowAlt; position = "{86, -366}"; }, { name = HamzaAbove; position = "{91, 625}"; }, { name = HamzaBelow; position = "{86, -39}"; }, { name = RingBelow; position = "{49, 293}"; }, { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; }, { name = TwoDotsAbove; position = "{37, 625}"; }, { name = TwoDotsBelow; position = "{32, -39}"; }, { name = TwoDotsBelowAlt; position = "{32, -366}"; }, { name = VAbove; position = "{91, 625}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-12 227 OFFCURVE", "-29 232 OFFCURVE", "-35 248 CURVE SMOOTH", "-39 258 OFFCURVE", "-36 276 OFFCURVE", "-29 305 CURVE SMOOTH", "-22 334 OFFCURVE", "-8 349 OFFCURVE", "13 349 CURVE SMOOTH", "22 349 OFFCURVE", "32 354 OFFCURVE", "41 365 CURVE SMOOTH", "50 376 OFFCURVE", "57 388 OFFCURVE", "62 402 CURVE SMOOTH", "70 424 OFFCURVE", "80 432 OFFCURVE", "95 426 CURVE SMOOTH", "110 420 OFFCURVE", "116 410 OFFCURVE", "113 393 CURVE", "92 297 OFFCURVE", "60 244 OFFCURVE", "15 233 CURVE SMOOTH" ); } ); width = 162; } ); }, { glyphname = aBaa.medi.BaaBaaMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{-31, 551}"; }, { name = DigitBelow; position = "{37, -181}"; }, { name = DotAbove; position = "{-31, 551}"; }, { name = DotBelow; position = "{37, -181}"; }, { name = HamzaAbove; position = "{-31, 551}"; }, { name = HamzaBelow; position = "{37, -181}"; }, { name = RingBelow; position = "{45, 361}"; }, { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; }, { name = TwoDotsAbove; position = "{-85, 551}"; }, { name = TwoDotsBelow; position = "{-17, -142}"; }, { name = VAbove; position = "{-31, 551}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "205 334 OFFCURVE", "208 321 OFFCURVE", "202 294 CURVE SMOOTH", "196 268 OFFCURVE", "189 253 OFFCURVE", "181 248 CURVE SMOOTH", "178 247 OFFCURVE", "175 246 OFFCURVE", "172 246 CURVE SMOOTH", "142 247 OFFCURVE", "106 274 OFFCURVE", "65 327 CURVE SMOOTH", "58 335 OFFCURVE", "48 338 OFFCURVE", "32 334 CURVE SMOOTH", "2 327 OFFCURVE", "-25 310 OFFCURVE", "-47 284 CURVE SMOOTH", "-60 269 OFFCURVE", "-68 264 OFFCURVE", "-70 270 CURVE SMOOTH", "-71 272 OFFCURVE", "-70 274 OFFCURVE", "-69 278 CURVE SMOOTH", "-60 309 OFFCURVE", "-46 335 OFFCURVE", "-26 358 CURVE SMOOTH", "9 398 OFFCURVE", "41 418 OFFCURVE", "70 418 CURVE SMOOTH", "86 418 OFFCURVE", "100 409 OFFCURVE", "111 390 CURVE", "135 353 OFFCURVE", "163 334 OFFCURVE", "195 334 CURVE SMOOTH" ); } ); width = 182; }, { anchors = ( { name = DigitAbove; position = "{-31, 551}"; }, { name = DigitBelow; position = "{37, -181}"; }, { name = DotAbove; position = "{-31, 551}"; }, { name = DotBelow; position = "{37, -181}"; }, { name = HamzaAbove; position = "{-31, 551}"; }, { name = HamzaBelow; position = "{37, -181}"; }, { name = RingBelow; position = "{45, 361}"; }, { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; }, { name = TwoDotsAbove; position = "{-85, 551}"; }, { name = TwoDotsBelow; position = "{-17, -142}"; }, { name = VAbove; position = "{-31, 551}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "217 349 OFFCURVE", "225 331 OFFCURVE", "217 296 CURVE SMOOTH", "209 261 OFFCURVE", "200 241 OFFCURVE", "188 235 CURVE SMOOTH", "183 233 OFFCURVE", "178 232 OFFCURVE", "173 231 CURVE", "138 233 OFFCURVE", "98 262 OFFCURVE", "54 318 CURVE SMOOTH", "51 321 OFFCURVE", "45 322 OFFCURVE", "35 320 CURVE SMOOTH", "8 313 OFFCURVE", "-15 299 OFFCURVE", "-34 277 CURVE SMOOTH", "-53 255 OFFCURVE", "-66 248 OFFCURVE", "-75 255 CURVE SMOOTH", "-84 262 OFFCURVE", "-86 271 OFFCURVE", "-83 282 CURVE SMOOTH", "-73 315 OFFCURVE", "-58 344 OFFCURVE", "-37 368 CURVE", "1 411 OFFCURVE", "36 433 OFFCURVE", "70 433 CURVE", "92 433 OFFCURVE", "110 420 OFFCURVE", "124 397 CURVE", "145 365 OFFCURVE", "169 349 OFFCURVE", "195 349 CURVE SMOOTH" ); } ); width = 182; } ); }, { glyphname = aMem.medi.BaaBaaMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = aKaf.medi.KafBaaMedi; layers = ( { anchors = ( { name = Dash; position = "{84, 703}"; }, { name = DotAbove; position = "{215, 811}"; }, { name = DotBelow; position = "{132, -54}"; }, { name = RingBelow; position = "{98, 595}"; }, { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; }, { name = TwoDotsAbove; position = "{59, 884}"; }, { name = TwoDotsBelow; position = "{132, -54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "346 646 LINE SMOOTH", "344 639 OFFCURVE", "338 635 OFFCURVE", "327 631 CURVE", "52 526 OFFCURVE", "-134 444 OFFCURVE", "-228 387 CURVE SMOOTH", "-234 383 OFFCURVE", "-233 381 OFFCURVE", "-227 380 CURVE SMOOTH", "-125 360 OFFCURVE", "-22 319 OFFCURVE", "84 257 CURVE SMOOTH", "90 254 OFFCURVE", "135 225 OFFCURVE", "220 172 CURVE SMOOTH", "305 119 OFFCURVE", "368 91 OFFCURVE", "411 90 CURVE SMOOTH", "431 90 OFFCURVE", "439 72 OFFCURVE", "433 36 CURVE SMOOTH", "429 12 OFFCURVE", "422 0 OFFCURVE", "411 0 CURVE SMOOTH", "360 0 OFFCURVE", "294 30 OFFCURVE", "213 90 CURVE SMOOTH", "188 108 OFFCURVE", "146 136 OFFCURVE", "88 173 CURVE SMOOTH", "83 176 OFFCURVE", "83 175 OFFCURVE", "86 170 CURVE SMOOTH", "118 109 OFFCURVE", "121 64 OFFCURVE", "95 33 CURVE SMOOTH", "75 10 OFFCURVE", "43 5 OFFCURVE", "1 18 CURVE SMOOTH", "-11 22 OFFCURVE", "-19 34 OFFCURVE", "-25 55 CURVE SMOOTH", "-35 89 OFFCURVE", "-27 101 OFFCURVE", "0 94 CURVE SMOOTH", "21 88 OFFCURVE", "48 88 OFFCURVE", "79 92 CURVE SMOOTH", "82 92 OFFCURVE", "82 94 OFFCURVE", "81 97 CURVE SMOOTH", "76 117 OFFCURVE", "67 133 OFFCURVE", "53 149 CURVE SMOOTH", "7 203 OFFCURVE", "-92 254 OFFCURVE", "-244 303 CURVE SMOOTH", "-252 306 OFFCURVE", "-257 310 OFFCURVE", "-260 316 CURVE SMOOTH", "-266 329 OFFCURVE", "-269 349 OFFCURVE", "-269 375 CURVE SMOOTH", "-269 401 OFFCURVE", "-263 421 OFFCURVE", "-252 435 CURVE SMOOTH", "-229 466 OFFCURVE", "-152 513 OFFCURVE", "-21 577 CURVE SMOOTH", "110 641 OFFCURVE", "230 693 OFFCURVE", "339 732 CURVE SMOOTH", "364 741 OFFCURVE", "374 735 OFFCURVE", "367 714 CURVE SMOOTH" ); } ); width = 411; }, { anchors = ( { name = Dash; position = "{84, 703}"; }, { name = DotAbove; position = "{215, 811}"; }, { name = DotBelow; position = "{132, -54}"; }, { name = RingBelow; position = "{98, 595}"; }, { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; }, { name = TwoDotsAbove; position = "{59, 884}"; }, { name = TwoDotsBelow; position = "{132, -54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "351 642 LINE SMOOTH", "348 631 OFFCURVE", "338 623 OFFCURVE", "322 617 CURVE SMOOTH", "115 541 OFFCURVE", "-57 464 OFFCURVE", "-196 388 CURVE", "-101 366 OFFCURVE", "-5 327 OFFCURVE", "92 270 CURVE SMOOTH", "98 266 OFFCURVE", "143 238 OFFCURVE", "226 185 CURVE SMOOTH", "309 133 OFFCURVE", "371 106 OFFCURVE", "412 105 CURVE SMOOTH", "443 104 OFFCURVE", "454 80 OFFCURVE", "447 34 CURVE", "442 2 OFFCURVE", "430 -15 OFFCURVE", "411 -15 CURVE SMOOTH", "359 -15 OFFCURVE", "290 16 OFFCURVE", "204 78 CURVE SMOOTH", "145 121 OFFCURVE", "145 121 OFFCURVE", "102 152 CURVE", "129 94 OFFCURVE", "130 51 OFFCURVE", "106 23 CURVE SMOOTH", "81 -5 OFFCURVE", "45 -12 OFFCURVE", "-3 3 CURVE", "-20 9 OFFCURVE", "-32 25 OFFCURVE", "-39 50 CURVE SMOOTH", "-46 75 OFFCURVE", "-46 93 OFFCURVE", "-36 102 CURVE SMOOTH", "-26 111 OFFCURVE", "-10 112 OFFCURVE", "11 106 CURVE SMOOTH", "32 100 OFFCURVE", "55 98 OFFCURVE", "78 100 CURVE", "53 164 OFFCURVE", "-57 227 OFFCURVE", "-249 289 CURVE", "-261 293 OFFCURVE", "-269 300 OFFCURVE", "-274 310 CURVE", "-280 325 OFFCURVE", "-283 347 OFFCURVE", "-283 376 CURVE SMOOTH", "-283 409 OFFCURVE", "-277 431 OFFCURVE", "-264 443 CURVE SMOOTH", "-186 519 OFFCURVE", "10 621 OFFCURVE", "324 746 CURVE SMOOTH", "337 751 OFFCURVE", "349 753 OFFCURVE", "357 750 CURVE SMOOTH", "373 745 OFFCURVE", "379 731 OFFCURVE", "372 710 CURVE SMOOTH" ); } ); width = 411; } ); }, { glyphname = aBaa.medi.KafBaaMedi; layers = ( { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = DigitBelow; position = "{103, -171}"; }, { name = DotAbove; position = "{24, 664}"; }, { name = DotBelow; position = "{103, -171}"; }, { name = HamzaAbove; position = "{73, 635}"; }, { name = HamzaBelow; position = "{151, -98}"; }, { name = RingBelow; position = "{88, 73}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; }, { name = TwoDotsAbove; position = "{24, 664}"; }, { name = TwoDotsBelow; position = "{45, -122}"; }, { name = VAbove; position = "{39, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "127 110 OFFCURVE", "153 99 OFFCURVE", "179 94 CURVE SMOOTH", "205 89 OFFCURVE", "211 68 OFFCURVE", "197 32 CURVE SMOOTH", "192 20 OFFCURVE", "188 16 OFFCURVE", "181 18 CURVE SMOOTH", "141 30 OFFCURVE", "110 49 OFFCURVE", "89 75 CURVE", "60 29 OFFCURVE", "30 4 OFFCURVE", "0 0 CURVE SMOOTH", "-6 -1 OFFCURVE", "-11 6 OFFCURVE", "-14 22 CURVE SMOOTH", "-24 67 OFFCURVE", "-19 89 OFFCURVE", "0 90 CURVE SMOOTH", "37 91 OFFCURVE", "64 103 OFFCURVE", "83 126 CURVE SMOOTH", "85 128 OFFCURVE", "88 130 OFFCURVE", "92 130 CURVE SMOOTH", "96 130 OFFCURVE", "99 130 OFFCURVE", "102 128 CURVE SMOOTH" ); } ); width = 179; }, { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = DigitBelow; position = "{103, -171}"; }, { name = DotAbove; position = "{24, 664}"; }, { name = DotBelow; position = "{103, -171}"; }, { name = HamzaAbove; position = "{73, 635}"; }, { name = HamzaBelow; position = "{151, -98}"; }, { name = RingBelow; position = "{88, 73}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; }, { name = TwoDotsAbove; position = "{24, 664}"; }, { name = TwoDotsBelow; position = "{45, -122}"; }, { name = VAbove; position = "{39, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "136 124 OFFCURVE", "159 113 OFFCURVE", "182 108 CURVE SMOOTH", "219 100 OFFCURVE", "229 73 OFFCURVE", "211 27 CURVE", "203 7 OFFCURVE", "191 0 OFFCURVE", "176 4 CURVE", "141 15 OFFCURVE", "113 30 OFFCURVE", "91 51 CURVE", "62 11 OFFCURVE", "33 -11 OFFCURVE", "2 -15 CURVE SMOOTH", "-12 -17 OFFCURVE", "-22 -7 OFFCURVE", "-27 13 CURVE SMOOTH", "-41 73 OFFCURVE", "-32 103 OFFCURVE", "0 105 CURVE", "33 106 OFFCURVE", "56 116 OFFCURVE", "72 136 CURVE", "76 141 OFFCURVE", "82 143 OFFCURVE", "90 144 CURVE SMOOTH", "98 145 OFFCURVE", "105 144 OFFCURVE", "110 141 CURVE SMOOTH" ); } ); width = 179; } ); }, { glyphname = aBaa.medi.BaaNonFina; layers = ( { anchors = ( { name = DigitAbove; position = "{83, 432}"; }, { name = DigitBelow; position = "{78, -186}"; }, { name = DotAbove; position = "{83, 432}"; }, { name = DotBelow; position = "{78, -186}"; }, { name = HamzaAbove; position = "{83, 432}"; }, { name = HamzaBelow; position = "{78, -186}"; }, { name = RingBelow; position = "{88, 196}"; }, { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; }, { name = TwoDotsAbove; position = "{28, 432}"; }, { name = TwoDotsBelow; position = "{23, -137}"; }, { name = VAbove; position = "{83, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "188 4 OFFCURVE", "168 18 OFFCURVE", "155 41 CURVE SMOOTH", "142 64 OFFCURVE", "130 117 OFFCURVE", "117 202 CURVE SMOOTH", "116 206 OFFCURVE", "115 207 OFFCURVE", "113 203 CURVE SMOOTH", "92 163 OFFCURVE", "62 140 OFFCURVE", "24 135 CURVE SMOOTH", "1 132 OFFCURVE", "-13 145 OFFCURVE", "-18 174 CURVE", "-23 207 OFFCURVE", "-14 221 OFFCURVE", "8 217 CURVE SMOOTH", "59 208 OFFCURVE", "98 232 OFFCURVE", "124 290 CURVE SMOOTH", "128 299 OFFCURVE", "133 303 OFFCURVE", "139 302 CURVE SMOOTH", "145 301 OFFCURVE", "149 297 OFFCURVE", "150 287 CURVE SMOOTH", "158 200 OFFCURVE", "167 146 OFFCURVE", "177 125 CURVE SMOOTH", "187 104 OFFCURVE", "200 93 OFFCURVE", "218 90 CURVE SMOOTH", "236 87 OFFCURVE", "243 71 OFFCURVE", "239 42 CURVE SMOOTH", "235 13 OFFCURVE", "227 -1 OFFCURVE", "218 0 CURVE SMOOTH" ); } ); width = 218; }, { anchors = ( { name = DigitAbove; position = "{83, 432}"; }, { name = DigitBelow; position = "{78, -186}"; }, { name = DotAbove; position = "{83, 432}"; }, { name = DotBelow; position = "{78, -186}"; }, { name = HamzaAbove; position = "{83, 432}"; }, { name = HamzaBelow; position = "{78, -186}"; }, { name = RingBelow; position = "{88, 196}"; }, { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; }, { name = TwoDotsAbove; position = "{28, 432}"; }, { name = TwoDotsBelow; position = "{23, -137}"; }, { name = VAbove; position = "{83, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "182 -10 OFFCURVE", "157 6 OFFCURVE", "144 30 CURVE SMOOTH", "131 54 OFFCURVE", "118 100 OFFCURVE", "107 168 CURVE", "85 141 OFFCURVE", "58 125 OFFCURVE", "26 120 CURVE", "1 117 OFFCURVE", "-16 128 OFFCURVE", "-26 152 CURVE SMOOTH", "-33 169 OFFCURVE", "-36 186 OFFCURVE", "-33 202 CURVE SMOOTH", "-30 218 OFFCURVE", "-20 228 OFFCURVE", "-6 231 CURVE SMOOTH", "0 232 OFFCURVE", "5 233 OFFCURVE", "11 232 CURVE SMOOTH", "55 224 OFFCURVE", "87 245 OFFCURVE", "110 296 CURVE SMOOTH", "117 311 OFFCURVE", "127 317 OFFCURVE", "141 316 CURVE SMOOTH", "155 315 OFFCURVE", "162 306 OFFCURVE", "164 288 CURVE SMOOTH", "172 203 OFFCURVE", "182 151 OFFCURVE", "190 134 CURVE SMOOTH", "198 117 OFFCURVE", "209 107 OFFCURVE", "221 105 CURVE SMOOTH", "248 101 OFFCURVE", "258 79 OFFCURVE", "253 40 CURVE SMOOTH", "249 11 OFFCURVE", "242 -6 OFFCURVE", "232 -12 CURVE SMOOTH", "227 -14 OFFCURVE", "222 -16 OFFCURVE", "216 -15 CURVE SMOOTH" ); } ); width = 218; } ); }, { glyphname = aNon.fina.BaaNonFina; layers = ( { anchors = ( { name = DotAbove; position = "{311, 417}"; }, { name = DotBelow; position = "{274, -351}"; }, { name = HamzaAbove; position = "{311, 342}"; }, { name = RingBelow; position = "{274, -155}"; }, { name = TaaAbove; position = "{311, 293}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; }, { name = TwoDotsAbove; position = "{256, 417}"; }, { name = TwoDotsBelow; position = "{220, -351}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "552 210 OFFCURVE", "562 172 OFFCURVE", "564 120 CURVE SMOOTH", "566 68 OFFCURVE", "560 19 OFFCURVE", "544 -27 CURVE SMOOTH", "528 -73 OFFCURVE", "496 -113 OFFCURVE", "449 -147 CURVE SMOOTH", "402 -181 OFFCURVE", "342 -199 OFFCURVE", "266 -201 CURVE SMOOTH", "153 -204 OFFCURVE", "85 -169 OFFCURVE", "63 -98 CURVE SMOOTH", "50 -54 OFFCURVE", "50 -8 OFFCURVE", "64 41 CURVE SMOOTH", "78 90 OFFCURVE", "98 134 OFFCURVE", "124 176 CURVE SMOOTH", "127 180 OFFCURVE", "129 182 OFFCURVE", "133 182 CURVE SMOOTH", "137 182 OFFCURVE", "140 180 OFFCURVE", "141 177 CURVE SMOOTH", "142 174 OFFCURVE", "142 170 OFFCURVE", "140 165 CURVE SMOOTH", "92 77 OFFCURVE", "78 13 OFFCURVE", "98 -28 CURVE SMOOTH", "125 -86 OFFCURVE", "183 -113 OFFCURVE", "271 -108 CURVE SMOOTH", "335 -104 OFFCURVE", "390 -90 OFFCURVE", "436 -67 CURVE SMOOTH", "482 -44 OFFCURVE", "511 -19 OFFCURVE", "526 9 CURVE SMOOTH", "527 11 OFFCURVE", "528 16 OFFCURVE", "530 24 CURVE SMOOTH", "532 32 OFFCURVE", "528 54 OFFCURVE", "521 90 CURVE SMOOTH", "514 126 OFFCURVE", "504 155 OFFCURVE", "491 177 CURVE SMOOTH", "490 179 OFFCURVE", "489 183 OFFCURVE", "491 190 CURVE SMOOTH", "508 253 LINE SMOOTH", "510 260 OFFCURVE", "513 262 OFFCURVE", "517 259 CURVE SMOOTH", "521 256 OFFCURVE", "528 248 OFFCURVE", "536 235 CURVE SMOOTH" ); } ); width = 542; }, { anchors = ( { name = DotAbove; position = "{311, 417}"; }, { name = DotBelow; position = "{274, -351}"; }, { name = HamzaAbove; position = "{311, 342}"; }, { name = RingBelow; position = "{274, -155}"; }, { name = TaaAbove; position = "{311, 293}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; }, { name = TwoDotsAbove; position = "{256, 417}"; }, { name = TwoDotsBelow; position = "{220, -351}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "574 87 OFFCURVE", "572 53 OFFCURVE", "566 27 CURVE SMOOTH", "560 1 OFFCURVE", "555 -18 OFFCURVE", "550 -31 CURVE SMOOTH", "532 -80 OFFCURVE", "501 -123 OFFCURVE", "454 -160 CURVE SMOOTH", "407 -197 OFFCURVE", "344 -216 OFFCURVE", "266 -216 CURVE SMOOTH", "148 -216 OFFCURVE", "78 -177 OFFCURVE", "56 -100 CURVE SMOOTH", "34 -23 OFFCURVE", "55 70 OFFCURVE", "119 177 CURVE SMOOTH", "126 188 OFFCURVE", "133 191 OFFCURVE", "141 186 CURVE SMOOTH", "149 181 OFFCURVE", "150 171 OFFCURVE", "143 158 CURVE SMOOTH", "97 73 OFFCURVE", "83 13 OFFCURVE", "101 -22 CURVE SMOOTH", "126 -71 OFFCURVE", "183 -94 OFFCURVE", "270 -93 CURVE SMOOTH", "325 -92 OFFCURVE", "377 -79 OFFCURVE", "428 -54 CURVE SMOOTH", "479 -29 OFFCURVE", "509 -6 OFFCURVE", "520 15 CURVE", "528 45 OFFCURVE", "514 97 OFFCURVE", "478 171 CURVE SMOOTH", "475 177 OFFCURVE", "474 185 OFFCURVE", "477 194 CURVE SMOOTH", "494 257 LINE SMOOTH", "500 278 OFFCURVE", "508 283 OFFCURVE", "520 273 CURVE SMOOTH", "550 247 OFFCURVE", "567 200 OFFCURVE", "571 132 CURVE SMOOTH" ); } ); width = 542; } ); }, { glyphname = aHaa.init.HaaRaaIsol; layers = ( { anchors = ( { name = DigitBelow; position = "{288, -98}"; }, { name = DotAbove; position = "{346, 474}"; }, { name = DotBelow; position = "{288, -98}"; }, { name = HamzaAbove; position = "{346, 474}"; }, { name = HamzaBelow; position = "{288, -98}"; }, { name = TaaAbove; position = "{346, 474}"; }, { name = TaaBelow; position = "{288, 98}"; }, { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; }, { name = TwoDotsAbove; position = "{292, 474}"; }, { name = TwoDotsBelow; position = "{239, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "509 133 OFFCURVE", "499 109 OFFCURVE", "483 88 CURVE SMOOTH", "480 84 OFFCURVE", "476 83 OFFCURVE", "471 85 CURVE SMOOTH", "451 92 OFFCURVE", "419 100 OFFCURVE", "375 107 CURVE SMOOTH", "296 120 OFFCURVE", "178 101 OFFCURVE", "20 52 CURVE", "14 49 OFFCURVE", "5 57 OFFCURVE", "-4 75 CURVE SMOOTH", "-13 93 OFFCURVE", "-17 103 OFFCURVE", "-16 106 CURVE SMOOTH", "-15 109 OFFCURVE", "-13 111 OFFCURVE", "-10 112 CURVE SMOOTH", "73 135 OFFCURVE", "139 150 OFFCURVE", "188 156 CURVE SMOOTH", "195 157 OFFCURVE", "196 159 OFFCURVE", "190 164 CURVE SMOOTH", "154 190 OFFCURVE", "121 205 OFFCURVE", "91 206 CURVE SMOOTH", "61 207 OFFCURVE", "19 200 OFFCURVE", "-35 185 CURVE SMOOTH", "-37 184 OFFCURVE", "-39 184 OFFCURVE", "-40 185 CURVE SMOOTH", "-41 186 OFFCURVE", "-42 187 OFFCURVE", "-41 190 CURVE SMOOTH", "-26 230 OFFCURVE", "-11 257 OFFCURVE", "3 270 CURVE SMOOTH", "17 283 OFFCURVE", "38 292 OFFCURVE", "69 298 CURVE SMOOTH", "100 304 OFFCURVE", "139 292 OFFCURVE", "188 263 CURVE SMOOTH", "221 243 OFFCURVE", "259 225 OFFCURVE", "300 210 CURVE", "376 183 OFFCURVE", "444 169 OFFCURVE", "505 169 CURVE SMOOTH", "514 169 OFFCURVE", "518 166 OFFCURVE", "516 159 CURVE SMOOTH" ); } ); width = 579; }, { anchors = ( { name = DigitBelow; position = "{288, -98}"; }, { name = DotAbove; position = "{346, 474}"; }, { name = DotBelow; position = "{288, -98}"; }, { name = HamzaAbove; position = "{346, 474}"; }, { name = HamzaBelow; position = "{288, -98}"; }, { name = TaaAbove; position = "{346, 474}"; }, { name = TaaBelow; position = "{288, 98}"; }, { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; }, { name = TwoDotsAbove; position = "{292, 474}"; }, { name = TwoDotsBelow; position = "{239, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-38 238 OFFCURVE", "-22 267 OFFCURVE", "-7 281 CURVE SMOOTH", "8 295 OFFCURVE", "33 306 OFFCURVE", "67 312 CURVE SMOOTH", "101 318 OFFCURVE", "143 306 OFFCURVE", "195 275 CURVE SMOOTH", "228 256 OFFCURVE", "272 236 OFFCURVE", "328 216 CURVE SMOOTH", "384 196 OFFCURVE", "442 185 OFFCURVE", "505 184 CURVE SMOOTH", "528 183 OFFCURVE", "537 174 OFFCURVE", "530 156 CURVE SMOOTH", "519 125 OFFCURVE", "508 99 OFFCURVE", "495 79 CURVE SMOOTH", "489 69 OFFCURVE", "477 67 OFFCURVE", "461 73 CURVE SMOOTH", "445 79 OFFCURVE", "416 85 OFFCURVE", "373 92 CURVE SMOOTH", "305 103 OFFCURVE", "189 85 OFFCURVE", "25 38 CURVE SMOOTH", "15 35 OFFCURVE", "7 36 OFFCURVE", "2 41 CURVE SMOOTH", "-3 46 OFFCURVE", "-13 61 OFFCURVE", "-27 86 CURVE", "-38 105 OFFCURVE", "-34 118 OFFCURVE", "-14 124 CURVE SMOOTH", "48 145 OFFCURVE", "113 159 OFFCURVE", "180 167 CURVE", "156 182 OFFCURVE", "125 190 OFFCURVE", "87 191 CURVE SMOOTH", "69 192 OFFCURVE", "30 184 OFFCURVE", "-31 170 CURVE SMOOTH", "-55 164 OFFCURVE", "-62 174 OFFCURVE", "-54 196 CURVE" ); } ); width = 579; } ); }, { glyphname = aRaa.fina.HaaRaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{343, 358}"; }, { name = DotAlt; position = "{216, -33}"; }, { name = DotBelow; position = "{259, -332}"; }, { name = HamzaAbove; position = "{342, 358}"; }, { name = RingBelow; position = "{241, -173}"; }, { name = Stroke; position = "{430, -37}"; }, { name = TaaAbove; position = "{342, 261}"; }, { name = TashkilAbove; position = "{343, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{289, 358}"; }, { name = VAbove; position = "{342, 358}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "434 114 OFFCURVE", "439 115 OFFCURVE", "448 108 CURVE SMOOTH", "457 101 OFFCURVE", "464 92 OFFCURVE", "469 81 CURVE SMOOTH", "474 70 OFFCURVE", "475 58 OFFCURVE", "473 46 CURVE SMOOTH", "460 -29 OFFCURVE", "432 -92 OFFCURVE", "389 -143 CURVE SMOOTH", "346 -194 OFFCURVE", "295 -223 OFFCURVE", "234 -230 CURVE SMOOTH", "223 -231 OFFCURVE", "199 -222 OFFCURVE", "165 -203 CURVE SMOOTH", "131 -184 OFFCURVE", "98 -161 OFFCURVE", "65 -137 CURVE SMOOTH", "61 -134 OFFCURVE", "60 -131 OFFCURVE", "63 -126 CURVE SMOOTH", "66 -121 OFFCURVE", "70 -121 OFFCURVE", "74 -123 CURVE SMOOTH", "123 -150 OFFCURVE", "162 -165 OFFCURVE", "194 -167 CURVE SMOOTH", "213 -168 OFFCURVE", "241 -159 OFFCURVE", "279 -140 CURVE SMOOTH", "317 -121 OFFCURVE", "349 -101 OFFCURVE", "375 -77 CURVE SMOOTH", "401 -53 OFFCURVE", "425 -21 OFFCURVE", "446 17 CURVE SMOOTH", "452 28 OFFCURVE", "440 42 OFFCURVE", "411 58 CURVE SMOOTH", "407 60 OFFCURVE", "406 62 OFFCURVE", "408 66 CURVE SMOOTH", "430 107 LINE SMOOTH" ); } ); width = 445; }, { anchors = ( { name = DotAbove; position = "{343, 358}"; }, { name = DotAlt; position = "{216, -33}"; }, { name = DotBelow; position = "{259, -332}"; }, { name = HamzaAbove; position = "{342, 358}"; }, { name = RingBelow; position = "{241, -173}"; }, { name = Stroke; position = "{430, -37}"; }, { name = TaaAbove; position = "{342, 261}"; }, { name = TashkilAbove; position = "{343, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{289, 358}"; }, { name = VAbove; position = "{342, 358}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "424 127 OFFCURVE", "434 131 OFFCURVE", "448 125 CURVE", "457 118 OFFCURVE", "466 106 OFFCURVE", "473 90 CURVE SMOOTH", "480 74 OFFCURVE", "483 59 OFFCURVE", "480 44 CURVE SMOOTH", "463 -43 OFFCURVE", "437 -108 OFFCURVE", "400 -153 CURVE", "354 -207 OFFCURVE", "300 -238 OFFCURVE", "236 -245 CURVE SMOOTH", "205 -249 OFFCURVE", "145 -214 OFFCURVE", "56 -142 CURVE SMOOTH", "49 -136 OFFCURVE", "48 -128 OFFCURVE", "54 -119 CURVE SMOOTH", "60 -110 OFFCURVE", "69 -110 OFFCURVE", "81 -118 CURVE SMOOTH", "111 -139 OFFCURVE", "149 -150 OFFCURVE", "195 -152 CURVE SMOOTH", "212 -153 OFFCURVE", "238 -144 OFFCURVE", "274 -126 CURVE SMOOTH", "310 -108 OFFCURVE", "341 -89 OFFCURVE", "368 -66 CURVE SMOOTH", "395 -43 OFFCURVE", "418 -13 OFFCURVE", "438 23 CURVE", "437 26 OFFCURVE", "427 32 OFFCURVE", "407 43 CURVE SMOOTH", "393 51 OFFCURVE", "389 61 OFFCURVE", "396 73 CURVE SMOOTH", "417 114 LINE SMOOTH" ); } ); width = 445; } ); }, { glyphname = aHeh.init.HehHaaInit; layers = ( { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{449, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "201 614 OFFCURVE", "210 634 OFFCURVE", "218 640 CURVE SMOOTH", "226 646 OFFCURVE", "235 648 OFFCURVE", "245 648 CURVE SMOOTH", "266 648 OFFCURVE", "306 621 OFFCURVE", "367 567 CURVE SMOOTH", "428 513 OFFCURVE", "461 470 OFFCURVE", "465 439 CURVE SMOOTH", "472 383 OFFCURVE", "468 343 OFFCURVE", "452 319 CURVE SMOOTH", "442 303 OFFCURVE", "426 298 OFFCURVE", "407 302 CURVE SMOOTH", "369 310 OFFCURVE", "316 323 OFFCURVE", "250 341 CURVE", "240 335 OFFCURVE", "164 298 OFFCURVE", "21 229 CURVE SMOOTH", "-40 200 OFFCURVE", "-55 204 OFFCURVE", "-24 241 CURVE", "-14 259 OFFCURVE", "-3 272 OFFCURVE", "11 279 CURVE SMOOTH", "25 286 OFFCURVE", "52 300 OFFCURVE", "94 319 CURVE SMOOTH", "136 338 OFFCURVE", "169 354 OFFCURVE", "193 367 CURVE", "170 377 OFFCURVE", "161 398 OFFCURVE", "167 428 CURVE SMOOTH", "171 449 OFFCURVE", "179 471 OFFCURVE", "190 495 CURVE SMOOTH", "201 519 OFFCURVE", "214 540 OFFCURVE", "232 555 CURVE", "230 563 OFFCURVE", "218 567 OFFCURVE", "196 568 CURVE", "191 571 OFFCURVE", "189 576 OFFCURVE", "190 580 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "232 501 OFFCURVE", "213 492 OFFCURVE", "199 472 CURVE", "198 456 OFFCURVE", "202 445 OFFCURVE", "212 438 CURVE SMOOTH", "222 431 OFFCURVE", "241 424 OFFCURVE", "272 416 CURVE", "296 428 OFFCURVE", "309 438 OFFCURVE", "308 445 CURVE", "300 483 OFFCURVE", "282 503 OFFCURVE", "255 502 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "332 496 OFFCURVE", "330 493 OFFCURVE", "330 484 CURVE SMOOTH", "329 450 OFFCURVE", "323 424 OFFCURVE", "312 405 CURVE", "381 386 OFFCURVE", "420 376 OFFCURVE", "429 375 CURVE SMOOTH", "435 374 OFFCURVE", "437 379 OFFCURVE", "434 387 CURVE SMOOTH", "424 417 OFFCURVE", "391 452 OFFCURVE", "335 494 CURVE SMOOTH" ); } ); width = 592; }, { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{449, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "350 296 OFFCURVE", "298 309 OFFCURVE", "246 327 CURVE", "224 315 OFFCURVE", "175 292 OFFCURVE", "100 256 CURVE SMOOTH", "25 220 OFFCURVE", "-17 201 OFFCURVE", "-26 198 CURVE SMOOTH", "-35 195 OFFCURVE", "-42 196 OFFCURVE", "-47 200 CURVE SMOOTH", "-55 207 OFFCURVE", "-53 221 OFFCURVE", "-41 242 CURVE SMOOTH", "-29 263 OFFCURVE", "-14 279 OFFCURVE", "2 287 CURVE SMOOTH", "18 295 OFFCURVE", "45 308 OFFCURVE", "84 326 CURVE SMOOTH", "123 344 OFFCURVE", "153 359 OFFCURVE", "174 369 CURVE", "160 385 OFFCURVE", "155 405 OFFCURVE", "161 428 CURVE SMOOTH", "173 479 OFFCURVE", "189 520 OFFCURVE", "209 552 CURVE", "205 553 OFFCURVE", "198 553 OFFCURVE", "191 554 CURVE", "177 562 OFFCURVE", "173 572 OFFCURVE", "176 584 CURVE", "188 621 OFFCURVE", "198 643 OFFCURVE", "209 651 CURVE SMOOTH", "220 659 OFFCURVE", "232 663 OFFCURVE", "245 663 CURVE SMOOTH", "270 663 OFFCURVE", "312 635 OFFCURVE", "372 578 CURVE SMOOTH", "432 521 OFFCURVE", "465 476 OFFCURVE", "470 441 CURVE", "478 382 OFFCURVE", "473 339 OFFCURVE", "455 311 CURVE SMOOTH", "443 292 OFFCURVE", "426 285 OFFCURVE", "404 288 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "297 471 OFFCURVE", "283 486 OFFCURVE", "262 491 CURVE SMOOTH", "241 496 OFFCURVE", "221 489 OFFCURVE", "204 470 CURVE", "205 463 OFFCURVE", "212 455 OFFCURVE", "227 447 CURVE SMOOTH", "242 439 OFFCURVE", "258 434 OFFCURVE", "277 430 CURVE", "295 436 OFFCURVE", "304 440 OFFCURVE", "304 444 CURVE" ); }, { closed = 1; nodes = ( "334 458 OFFCURVE", "328 437 OFFCURVE", "316 416 CURVE", "356 402 OFFCURVE", "392 393 OFFCURVE", "425 388 CURVE", "416 410 OFFCURVE", "385 441 OFFCURVE", "334 479 CURVE" ); } ); width = 592; } ); }, { glyphname = aLam.init.LamRaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{67, 876}"; }, { name = Stroke; position = "{91, 584}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; }, { name = TwoDotsAbove; position = "{9, 876}"; }, { name = TwoDotsBelow; position = "{78, 0}"; }, { name = VAbove; position = "{67, 827}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "72 773 OFFCURVE", "75 771 OFFCURVE", "77 765 CURVE SMOOTH", "79 759 OFFCURVE", "86 749 OFFCURVE", "99 734 CURVE SMOOTH", "112 719 OFFCURVE", "124 706 OFFCURVE", "136 697 CURVE SMOOTH", "143 691 OFFCURVE", "143 682 OFFCURVE", "135 669 CURVE SMOOTH", "109 630 LINE", "112 598 OFFCURVE", "122 534 OFFCURVE", "136 436 CURVE SMOOTH", "150 338 OFFCURVE", "156 270 OFFCURVE", "153 232 CURVE SMOOTH", "148 152 OFFCURVE", "118 104 OFFCURVE", "62 88 CURVE SMOOTH", "46 83 OFFCURVE", "32 82 OFFCURVE", "20 83 CURVE SMOOTH", "2 85 OFFCURVE", "-12 101 OFFCURVE", "-21 134 CURVE SMOOTH", "-30 167 OFFCURVE", "-31 191 OFFCURVE", "-25 209 CURVE SMOOTH", "-24 213 OFFCURVE", "-22 215 OFFCURVE", "-19 215 CURVE SMOOTH", "-16 215 OFFCURVE", "-13 214 OFFCURVE", "-11 211 CURVE", "4 198 OFFCURVE", "25 191 OFFCURVE", "52 192 CURVE SMOOTH", "79 193 OFFCURVE", "100 199 OFFCURVE", "117 212 CURVE", "119 233 OFFCURVE", "107 326 OFFCURVE", "80 490 CURVE SMOOTH", "60 611 LINE", "57 632 OFFCURVE", "53 652 OFFCURVE", "48 670 CURVE SMOOTH", "43 688 OFFCURVE", "41 701 OFFCURVE", "40 707 CURVE SMOOTH", "39 713 OFFCURVE", "39 719 OFFCURVE", "42 725 CURVE SMOOTH", "62 768 LINE SMOOTH", "64 771 OFFCURVE", "66 773 OFFCURVE", "69 773 CURVE SMOOTH" ); } ); width = 216; }, { anchors = ( { name = DotAbove; position = "{67, 876}"; }, { name = Stroke; position = "{91, 584}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; }, { name = TwoDotsAbove; position = "{9, 876}"; }, { name = TwoDotsBelow; position = "{78, 0}"; }, { name = VAbove; position = "{67, 827}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "53 782 OFFCURVE", "60 787 OFFCURVE", "70 787 CURVE SMOOTH", "80 787 OFFCURVE", "87 782 OFFCURVE", "91 769 CURVE SMOOTH", "93 765 OFFCURVE", "99 755 OFFCURVE", "111 742 CURVE SMOOTH", "123 729 OFFCURVE", "132 719 OFFCURVE", "140 713 CURVE SMOOTH", "148 707 OFFCURVE", "153 700 OFFCURVE", "156 693 CURVE SMOOTH", "159 686 OFFCURVE", "156 676 OFFCURVE", "148 662 CURVE", "124 626 LINE", "128 592 OFFCURVE", "137 528 OFFCURVE", "151 432 CURVE SMOOTH", "165 336 OFFCURVE", "171 270 OFFCURVE", "168 231 CURVE SMOOTH", "163 144 OFFCURVE", "129 92 OFFCURVE", "66 74 CURVE SMOOTH", "48 69 OFFCURVE", "32 67 OFFCURVE", "18 68 CURVE", "-7 71 OFFCURVE", "-24 91 OFFCURVE", "-34 128 CURVE SMOOTH", "-44 165 OFFCURVE", "-46 194 OFFCURVE", "-39 214 CURVE SMOOTH", "-36 224 OFFCURVE", "-30 229 OFFCURVE", "-21 229 CURVE SMOOTH", "-12 229 OFFCURVE", "-5 227 OFFCURVE", "0 221 CURVE", "13 211 OFFCURVE", "30 206 OFFCURVE", "51 207 CURVE SMOOTH", "72 208 OFFCURVE", "89 212 OFFCURVE", "103 220 CURVE", "102 251 OFFCURVE", "89 341 OFFCURVE", "65 488 CURVE SMOOTH", "45 609 LINE", "42 630 OFFCURVE", "38 649 OFFCURVE", "34 667 CURVE SMOOTH", "30 685 OFFCURVE", "27 698 OFFCURVE", "25 706 CURVE SMOOTH", "23 714 OFFCURVE", "24 722 OFFCURVE", "28 731 CURVE SMOOTH", "48 774 LINE" ); } ); width = 216; } ); }, { glyphname = aRaa.fina.LamRaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{328, 462}"; }, { name = DotAlt; position = "{216, 6}"; }, { name = DotBelow; position = "{254, -327}"; }, { name = HamzaAbove; position = "{328, 461}"; }, { name = RingBelow; position = "{231, -139}"; }, { name = Stroke; position = "{420, 0}"; }, { name = TaaAbove; position = "{328, 363}"; }, { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; }, { name = TwoDotsAbove; position = "{273, 462}"; }, { name = VAbove; position = "{328, 461}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "439 197 OFFCURVE", "447 177 OFFCURVE", "452 150 CURVE SMOOTH", "457 123 OFFCURVE", "458 96 OFFCURVE", "456 69 CURVE SMOOTH", "454 42 OFFCURVE", "444 8 OFFCURVE", "426 -35 CURVE SMOOTH", "401 -95 OFFCURVE", "362 -141 OFFCURVE", "311 -172 CURVE SMOOTH", "285 -188 OFFCURVE", "256 -197 OFFCURVE", "226 -199 CURVE SMOOTH", "196 -201 OFFCURVE", "143 -179 OFFCURVE", "69 -132 CURVE SMOOTH", "64 -129 OFFCURVE", "62 -125 OFFCURVE", "63 -120 CURVE SMOOTH", "64 -115 OFFCURVE", "68 -114 OFFCURVE", "75 -116 CURVE SMOOTH", "169 -148 OFFCURVE", "256 -130 OFFCURVE", "335 -64 CURVE SMOOTH", "373 -32 OFFCURVE", "403 6 OFFCURVE", "425 52 CURVE SMOOTH", "428 58 OFFCURVE", "429 66 OFFCURVE", "427 77 CURVE SMOOTH", "425 88 OFFCURVE", "413 104 OFFCURVE", "391 125 CURVE SMOOTH", "388 128 OFFCURVE", "388 132 OFFCURVE", "390 138 CURVE SMOOTH", "414 209 LINE SMOOTH", "415 213 OFFCURVE", "417 215 OFFCURVE", "420 215 CURVE SMOOTH", "423 215 OFFCURVE", "426 214 OFFCURVE", "428 211 CURVE" ); } ); width = 437; }, { anchors = ( { name = DotAbove; position = "{328, 462}"; }, { name = DotAlt; position = "{216, 6}"; }, { name = DotBelow; position = "{254, -327}"; }, { name = HamzaAbove; position = "{328, 461}"; }, { name = RingBelow; position = "{231, -139}"; }, { name = Stroke; position = "{420, 0}"; }, { name = TaaAbove; position = "{328, 363}"; }, { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; }, { name = TwoDotsAbove; position = "{273, 462}"; }, { name = VAbove; position = "{328, 461}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "445 210 OFFCURVE", "451 187 OFFCURVE", "457 150 CURVE SMOOTH", "463 113 OFFCURVE", "463 77 OFFCURVE", "456 41 CURVE SMOOTH", "449 5 OFFCURVE", "443 -22 OFFCURVE", "435 -41 CURVE", "405 -108 OFFCURVE", "366 -156 OFFCURVE", "319 -185 CURVE SMOOTH", "290 -203 OFFCURVE", "261 -212 OFFCURVE", "229 -212 CURVE SMOOTH", "197 -212 OFFCURVE", "142 -189 OFFCURVE", "66 -140 CURVE SMOOTH", "53 -132 OFFCURVE", "49 -123 OFFCURVE", "53 -115 CURVE SMOOTH", "58 -104 OFFCURVE", "67 -101 OFFCURVE", "80 -107 CURVE SMOOTH", "163 -137 OFFCURVE", "245 -119 OFFCURVE", "326 -53 CURVE SMOOTH", "370 -18 OFFCURVE", "400 19 OFFCURVE", "417 58 CURVE SMOOTH", "418 60 OFFCURVE", "418 66 OFFCURVE", "417 75 CURVE SMOOTH", "417 79 OFFCURVE", "404 92 OFFCURVE", "381 114 CURVE SMOOTH", "374 121 OFFCURVE", "372 131 OFFCURVE", "376 143 CURVE SMOOTH", "400 213 LINE SMOOTH", "411 247 OFFCURVE", "424 249 OFFCURVE", "440 220 CURVE SMOOTH" ); } ); width = 439; } ); }, { glyphname = aSad.init.SadHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{426, 689}"; }, { name = DotBelow; position = "{586, 0}"; }, { name = HamzaAbove; position = "{426, 689}"; }, { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; }, { name = TwoDotsAbove; position = "{372, 689}"; }, { name = TwoDotsBelow; position = "{537, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "304 246 LINE SMOOTH", "300 242 OFFCURVE", "296 241 OFFCURVE", "291 244 CURVE SMOOTH", "286 247 OFFCURVE", "287 254 OFFCURVE", "293 263 CURVE SMOOTH", "299 272 OFFCURVE", "308 283 OFFCURVE", "319 297 CURVE", "306 305 OFFCURVE", "294 316 OFFCURVE", "281 329 CURVE SMOOTH", "268 342 OFFCURVE", "258 356 OFFCURVE", "251 370 CURVE SMOOTH", "249 374 OFFCURVE", "247 373 OFFCURVE", "243 369 CURVE SMOOTH", "224 346 OFFCURVE", "202 323 OFFCURVE", "175 300 CURVE SMOOTH", "148 277 OFFCURVE", "100 251 OFFCURVE", "31 222 CURVE SMOOTH", "-37 193 OFFCURVE", "-57 198 OFFCURVE", "-27 237 CURVE SMOOTH", "-15 252 OFFCURVE", "-4 261 OFFCURVE", "8 264 CURVE SMOOTH", "66 280 OFFCURVE", "114 303 OFFCURVE", "153 332 CURVE SMOOTH", "192 361 OFFCURVE", "222 393 OFFCURVE", "242 428 CURVE SMOOTH", "252 445 OFFCURVE", "265 443 OFFCURVE", "279 423 CURVE SMOOTH", "299 396 OFFCURVE", "329 373 OFFCURVE", "371 355 CURVE", "394 384 OFFCURVE", "425 415 OFFCURVE", "464 447 CURVE SMOOTH", "540 510 OFFCURVE", "600 541 OFFCURVE", "647 542 CURVE SMOOTH", "667 542 OFFCURVE", "689 530 OFFCURVE", "715 506 CURVE SMOOTH", "740 483 OFFCURVE", "750 460 OFFCURVE", "745 438 CURVE", "737 409 OFFCURVE", "722 381 OFFCURVE", "701 358 CURVE SMOOTH", "663 317 OFFCURVE", "609 290 OFFCURVE", "539 276 CURVE SMOOTH", "469 262 OFFCURVE", "403 264 OFFCURVE", "340 282 CURVE" ); }, { closed = 1; nodes = ( "448 342 OFFCURVE", "503 347 OFFCURVE", "565 361 CURVE SMOOTH", "627 375 OFFCURVE", "664 392 OFFCURVE", "678 412 CURVE", "646 446 OFFCURVE", "615 462 OFFCURVE", "585 460 CURVE SMOOTH", "538 458 OFFCURVE", "477 421 OFFCURVE", "401 347 CURVE" ); } ); width = 808; }, { anchors = ( { name = DotAbove; position = "{426, 689}"; }, { name = DotBelow; position = "{586, 0}"; }, { name = HamzaAbove; position = "{426, 689}"; }, { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; }, { name = TwoDotsAbove; position = "{372, 689}"; }, { name = TwoDotsBelow; position = "{537, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "285 300 OFFCURVE", "266 324 OFFCURVE", "246 360 CURVE", "195 292 OFFCURVE", "126 242 OFFCURVE", "37 208 CURVE SMOOTH", "3 195 OFFCURVE", "-18 189 OFFCURVE", "-26 188 CURVE SMOOTH", "-34 187 OFFCURVE", "-41 189 OFFCURVE", "-47 193 CURVE SMOOTH", "-60 203 OFFCURVE", "-58 219 OFFCURVE", "-42 240 CURVE SMOOTH", "-26 261 OFFCURVE", "-11 274 OFFCURVE", "4 278 CURVE SMOOTH", "123 311 OFFCURVE", "201 364 OFFCURVE", "239 436 CURVE SMOOTH", "242 442 OFFCURVE", "250 445 OFFCURVE", "261 448 CURVE SMOOTH", "267 450 OFFCURVE", "277 442 OFFCURVE", "291 424 CURVE SMOOTH", "305 406 OFFCURVE", "333 389 OFFCURVE", "376 371 CURVE", "393 394 OFFCURVE", "431 431 OFFCURVE", "488 481 CURVE SMOOTH", "545 531 OFFCURVE", "598 557 OFFCURVE", "647 557 CURVE SMOOTH", "671 557 OFFCURVE", "696 544 OFFCURVE", "722 517 CURVE SMOOTH", "748 490 OFFCURVE", "757 461 OFFCURVE", "749 432 CURVE SMOOTH", "741 403 OFFCURVE", "726 375 OFFCURVE", "702 349 CURVE SMOOTH", "662 305 OFFCURVE", "605 277 OFFCURVE", "534 264 CURVE SMOOTH", "463 251 OFFCURVE", "395 254 OFFCURVE", "333 271 CURVE", "306 242 LINE", "299 236 OFFCURVE", "293 235 OFFCURVE", "287 241 CURVE SMOOTH", "281 247 OFFCURVE", "281 254 OFFCURVE", "287 263 CURVE SMOOTH", "293 272 OFFCURVE", "299 281 OFFCURVE", "306 289 CURVE" ); }, { closed = 1; nodes = ( "459 359 OFFCURVE", "506 365 OFFCURVE", "561 376 CURVE SMOOTH", "616 387 OFFCURVE", "652 400 OFFCURVE", "669 413 CURVE", "607 472 OFFCURVE", "525 453 OFFCURVE", "422 359 CURVE" ); } ); width = 808; } ); }, { glyphname = aHaa.medi.SadHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{234, -127}"; }, { name = DotAbove; position = "{88, 488}"; }, { name = DotBelow; position = "{234, -127}"; }, { name = HamzaAbove; position = "{88, 488}"; }, { name = HamzaBelow; position = "{234, -127}"; }, { name = TaaAbove; position = "{88, 488}"; }, { name = TaaBelow; position = "{234, 68}"; }, { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = TwoDotsAbove; position = "{39, 488}"; }, { name = TwoDotsBelow; position = "{180, -127}"; }, { name = entry; position = "{55, 235}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "230 225 OFFCURVE", "303 208 OFFCURVE", "385 197 CURVE SMOOTH", "467 186 OFFCURVE", "532 183 OFFCURVE", "578 188 CURVE SMOOTH", "585 189 OFFCURVE", "588 187 OFFCURVE", "590 182 CURVE SMOOTH", "592 177 OFFCURVE", "591 171 OFFCURVE", "589 167 CURVE SMOOTH", "559 114 LINE SMOOTH", "556 108 OFFCURVE", "550 105 OFFCURVE", "542 106 CURVE SMOOTH", "432 112 OFFCURVE", "333 101 OFFCURVE", "243 74 CURVE SMOOTH", "236 72 OFFCURVE", "200 60 OFFCURVE", "135 36 CURVE SMOOTH", "70 12 OFFCURVE", "24 0 OFFCURVE", "0 0 CURVE SMOOTH", "-8 0 OFFCURVE", "-15 12 OFFCURVE", "-20 34 CURVE SMOOTH", "-27 71 OFFCURVE", "-20 89 OFFCURVE", "1 90 CURVE SMOOTH", "22 91 OFFCURVE", "66 100 OFFCURVE", "130 116 CURVE SMOOTH", "194 132 OFFCURVE", "228 141 OFFCURVE", "231 142 CURVE SMOOTH", "234 143 OFFCURVE", "235 144 OFFCURVE", "236 144 CURVE SMOOTH", "241 146 OFFCURVE", "242 148 OFFCURVE", "237 150 CURVE SMOOTH", "208 164 OFFCURVE", "171 174 OFFCURVE", "129 181 CURVE SMOOTH", "87 188 OFFCURVE", "48 190 OFFCURVE", "13 188 CURVE SMOOTH", "7 188 OFFCURVE", "5 190 OFFCURVE", "6 195 CURVE SMOOTH", "10 209 OFFCURVE", "18 222 OFFCURVE", "29 237 CURVE SMOOTH", "40 252 OFFCURVE", "51 261 OFFCURVE", "63 264 CURVE SMOOTH", "90 271 OFFCURVE", "125 266 OFFCURVE", "167 250 CURVE SMOOTH" ); } ); width = 55; }, { anchors = ( { name = DigitBelow; position = "{234, -127}"; }, { name = DotAbove; position = "{88, 488}"; }, { name = DotBelow; position = "{234, -127}"; }, { name = HamzaAbove; position = "{88, 488}"; }, { name = HamzaBelow; position = "{234, -127}"; }, { name = TaaAbove; position = "{88, 488}"; }, { name = TaaBelow; position = "{234, 68}"; }, { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = TwoDotsAbove; position = "{39, 488}"; }, { name = TwoDotsBelow; position = "{180, -127}"; }, { name = entry; position = "{55, 235}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "10 245 OFFCURVE", "31 271 OFFCURVE", "57 278 CURVE SMOOTH", "83 285 OFFCURVE", "123 278 OFFCURVE", "178 257 CURVE SMOOTH", "233 236 OFFCURVE", "298 221 OFFCURVE", "372 210 CURVE SMOOTH", "446 199 OFFCURVE", "514 197 OFFCURVE", "576 203 CURVE SMOOTH", "609 206 OFFCURVE", "619 197 OFFCURVE", "608 176 CURVE SMOOTH", "568 100 LINE SMOOTH", "564 93 OFFCURVE", "556 90 OFFCURVE", "541 91 CURVE SMOOTH", "421 97 OFFCURVE", "323 88 OFFCURVE", "247 65 CURVE SMOOTH", "240 63 OFFCURVE", "204 50 OFFCURVE", "138 24 CURVE SMOOTH", "72 -2 OFFCURVE", "26 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-16 -15 OFFCURVE", "-28 2 OFFCURVE", "-35 36 CURVE SMOOTH", "-42 70 OFFCURVE", "-35 91 OFFCURVE", "-16 101 CURVE SMOOTH", "-11 104 OFFCURVE", "8 106 OFFCURVE", "42 108 CURVE SMOOTH", "76 110 OFFCURVE", "141 123 OFFCURVE", "239 148 CURVE", "178 169 OFFCURVE", "104 177 OFFCURVE", "14 173 CURVE SMOOTH", "-8 172 OFFCURVE", "-15 182 OFFCURVE", "-8 201 CURVE SMOOTH" ); } ); width = 55; } ); }, { glyphname = aBaa.medi.BaaYaaFina; layers = ( { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = DigitBelow; position = "{195, -391}"; }, { name = DotAbove; position = "{98, 391}"; }, { name = DotBelow; position = "{195, -391}"; }, { name = HamzaAbove; position = "{98, 391}"; }, { name = HamzaBelow; position = "{195, -391}"; }, { name = RingBelow; position = "{156, 137}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; }, { name = TwoDotsAbove; position = "{49, 391}"; }, { name = TwoDotsBelow; position = "{195, -391}"; }, { name = VAbove; position = "{98, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "328 86 OFFCURVE", "336 75 OFFCURVE", "331 56 CURVE SMOOTH", "322 18 OFFCURVE", "314 -1 OFFCURVE", "308 0 CURVE SMOOTH", "289 1 OFFCURVE", "271 6 OFFCURVE", "254 14 CURVE SMOOTH", "237 22 OFFCURVE", "219 39 OFFCURVE", "202 64 CURVE SMOOTH", "185 89 OFFCURVE", "168 103 OFFCURVE", "153 104 CURVE SMOOTH", "138 105 OFFCURVE", "114 96 OFFCURVE", "80 77 CURVE SMOOTH", "46 58 OFFCURVE", "28 42 OFFCURVE", "24 30 CURVE SMOOTH", "13 -9 OFFCURVE", "-1 -37 OFFCURVE", "-18 -53 CURVE SMOOTH", "-25 -59 OFFCURVE", "-28 -60 OFFCURVE", "-28 -54 CURVE SMOOTH", "-31 -27 OFFCURVE", "-20 6 OFFCURVE", "4 45 CURVE SMOOTH", "28 84 OFFCURVE", "58 118 OFFCURVE", "93 146 CURVE SMOOTH", "128 174 OFFCURVE", "158 189 OFFCURVE", "183 190 CURVE SMOOTH", "199 191 OFFCURVE", "216 175 OFFCURVE", "234 144 CURVE SMOOTH", "252 113 OFFCURVE", "277 95 OFFCURVE", "308 90 CURVE SMOOTH" ); } ); width = 307; }, { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = DigitBelow; position = "{195, -391}"; }, { name = DotAbove; position = "{98, 391}"; }, { name = DotBelow; position = "{195, -391}"; }, { name = HamzaAbove; position = "{98, 391}"; }, { name = HamzaBelow; position = "{195, -391}"; }, { name = RingBelow; position = "{156, 137}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; }, { name = TwoDotsAbove; position = "{49, 391}"; }, { name = TwoDotsBelow; position = "{195, -391}"; }, { name = VAbove; position = "{98, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "263 125 OFFCURVE", "282 109 OFFCURVE", "305 105 CURVE SMOOTH", "338 99 OFFCURVE", "352 82 OFFCURVE", "345 54 CURVE SMOOTH", "338 26 OFFCURVE", "334 12 OFFCURVE", "334 11 CURVE SMOOTH", "327 -7 OFFCURVE", "319 -16 OFFCURVE", "307 -15 CURVE SMOOTH", "259 -12 OFFCURVE", "222 11 OFFCURVE", "193 52 CURVE SMOOTH", "176 76 OFFCURVE", "161 88 OFFCURVE", "147 89 CURVE SMOOTH", "133 90 OFFCURVE", "111 82 OFFCURVE", "81 65 CURVE SMOOTH", "51 48 OFFCURVE", "34 35 OFFCURVE", "31 26 CURVE", "18 -16 OFFCURVE", "5 -46 OFFCURVE", "-8 -64 CURVE", "-14 -69 OFFCURVE", "-18 -72 OFFCURVE", "-23 -73 CURVE SMOOTH", "-30 -74 OFFCURVE", "-36 -68 OFFCURVE", "-37 -54 CURVE SMOOTH", "-39 -27 OFFCURVE", "-26 8 OFFCURVE", "0 52 CURVE SMOOTH", "26 95 OFFCURVE", "56 131 OFFCURVE", "92 160 CURVE SMOOTH", "128 189 OFFCURVE", "157 204 OFFCURVE", "180 204 CURVE SMOOTH", "203 204 OFFCURVE", "226 187 OFFCURVE", "247 152 CURVE SMOOTH" ); } ); width = 307; } ); }, { glyphname = aYaa.fina.BaaYaaFina; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 270}"; }, { name = DigitBelow; position = "{368, -484}"; }, { name = DotAbove; position = "{271, 270}"; }, { name = DotBelow; position = "{368, -484}"; }, { name = HamzaAbove; position = "{173, 270}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = RingBelow; position = "{346, -288}"; }, { name = Tail; position = "{155, 102}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; }, { name = TwoDotsAbove; position = "{217, 270}"; }, { name = TwoDotsBelow; position = "{313, -484}"; }, { name = VAbove; position = "{222, 270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "410 -88 OFFCURVE", "396 -75 OFFCURVE", "394 -57 CURVE SMOOTH", "392 -39 OFFCURVE", "404 -14 OFFCURVE", "429 21 CURVE SMOOTH", "448 48 OFFCURVE", "454 51 OFFCURVE", "447 30 CURVE SMOOTH", "441 12 OFFCURVE", "450 -4 OFFCURVE", "472 -17 CURVE SMOOTH", "494 -30 OFFCURVE", "520 -38 OFFCURVE", "551 -42 CURVE SMOOTH", "618 -50 OFFCURVE", "660 -57 OFFCURVE", "676 -63 CURVE SMOOTH", "692 -69 OFFCURVE", "703 -79 OFFCURVE", "710 -95 CURVE SMOOTH", "717 -111 OFFCURVE", "718 -127 OFFCURVE", "716 -144 CURVE SMOOTH", "714 -161 OFFCURVE", "708 -176 OFFCURVE", "700 -188 CURVE SMOOTH", "684 -211 OFFCURVE", "642 -239 OFFCURVE", "574 -271 CURVE SMOOTH", "506 -303 OFFCURVE", "432 -323 OFFCURVE", "349 -332 CURVE SMOOTH", "204 -348 OFFCURVE", "113 -307 OFFCURVE", "75 -209 CURVE SMOOTH", "62 -174 OFFCURVE", "61 -128 OFFCURVE", "72 -69 CURVE SMOOTH", "83 -10 OFFCURVE", "108 49 OFFCURVE", "146 109 CURVE SMOOTH", "149 113 OFFCURVE", "152 115 OFFCURVE", "157 115 CURVE SMOOTH", "162 115 OFFCURVE", "165 113 OFFCURVE", "167 109 CURVE SMOOTH", "169 105 OFFCURVE", "165 96 OFFCURVE", "156 80 CURVE SMOOTH", "117 11 OFFCURVE", "100 -48 OFFCURVE", "107 -99 CURVE SMOOTH", "116 -163 OFFCURVE", "161 -208 OFFCURVE", "240 -233 CURVE SMOOTH", "268 -241 OFFCURVE", "300 -244 OFFCURVE", "336 -241 CURVE SMOOTH", "445 -232 OFFCURVE", "553 -199 OFFCURVE", "662 -144 CURVE SMOOTH", "665 -143 OFFCURVE", "664 -140 OFFCURVE", "659 -135 CURVE SMOOTH", "654 -130 OFFCURVE", "626 -126 OFFCURVE", "573 -120 CURVE SMOOTH", "520 -114 OFFCURVE", "475 -106 OFFCURVE", "436 -95 CURVE SMOOTH" ); } ); width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 270}"; }, { name = DigitBelow; position = "{368, -484}"; }, { name = DotAbove; position = "{271, 270}"; }, { name = DotBelow; position = "{368, -484}"; }, { name = HamzaAbove; position = "{173, 270}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = RingBelow; position = "{346, -288}"; }, { name = Tail; position = "{155, 102}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; }, { name = TwoDotsAbove; position = "{217, 270}"; }, { name = TwoDotsBelow; position = "{313, -484}"; }, { name = VAbove; position = "{222, 270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "374 -88 OFFCURVE", "370 -42 OFFCURVE", "420 29 CURVE SMOOTH", "421 30 OFFCURVE", "424 37 OFFCURVE", "430 47 CURVE SMOOTH", "436 58 OFFCURVE", "443 62 OFFCURVE", "450 59 CURVE SMOOTH", "460 55 OFFCURVE", "462 45 OFFCURVE", "455 31 CURVE SMOOTH", "448 17 OFFCURVE", "456 6 OFFCURVE", "477 -5 CURVE SMOOTH", "498 -16 OFFCURVE", "532 -24 OFFCURVE", "578 -31 CURVE SMOOTH", "624 -38 OFFCURVE", "657 -45 OFFCURVE", "675 -51 CURVE SMOOTH", "693 -57 OFFCURVE", "705 -69 OFFCURVE", "713 -88 CURVE SMOOTH", "721 -107 OFFCURVE", "724 -126 OFFCURVE", "721 -146 CURVE SMOOTH", "718 -166 OFFCURVE", "712 -183 OFFCURVE", "703 -197 CURVE", "685 -222 OFFCURVE", "642 -251 OFFCURVE", "576 -284 CURVE SMOOTH", "510 -317 OFFCURVE", "434 -338 OFFCURVE", "350 -347 CURVE SMOOTH", "197 -364 OFFCURVE", "103 -319 OFFCURVE", "66 -214 CURVE SMOOTH", "54 -180 OFFCURVE", "53 -134 OFFCURVE", "63 -77 CURVE SMOOTH", "73 -18 OFFCURVE", "99 44 OFFCURVE", "140 109 CURVE SMOOTH", "147 121 OFFCURVE", "156 124 OFFCURVE", "167 118 CURVE SMOOTH", "178 112 OFFCURVE", "177 99 OFFCURVE", "164 78 CURVE SMOOTH", "120 6 OFFCURVE", "104 -52 OFFCURVE", "115 -97 CURVE SMOOTH", "137 -191 OFFCURVE", "209 -234 OFFCURVE", "334 -226 CURVE SMOOTH", "431 -220 OFFCURVE", "534 -191 OFFCURVE", "642 -140 CURVE", "627 -137 OFFCURVE", "599 -134 OFFCURVE", "556 -131 CURVE SMOOTH", "502 -127 OFFCURVE", "461 -119 OFFCURVE", "432 -109 CURVE SMOOTH" ); } ); width = 421; } ); }, { glyphname = aBaa.init.BaaSenAltInit; layers = ( { anchors = ( { name = DigitAbove; position = "{59, 616}"; }, { name = DigitBelow; position = "{145, -189}"; }, { name = DotAbove; position = "{59, 616}"; }, { name = DotBelow; position = "{145, -189}"; }, { name = DotBelowAlt; position = "{145, -434}"; }, { name = HamzaAbove; position = "{59, 616}"; }, { name = HamzaBelow; position = "{145, -189}"; }, { name = RingBelow; position = "{88, 44}"; }, { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; }, { name = TwoDotsAbove; position = "{4, 616}"; }, { name = TwoDotsBelow; position = "{96, -189}"; }, { name = TwoDotsBelowAlt; position = "{96, -434}"; }, { name = VAbove; position = "{59, 616}"; } ); components = ( { name = aBaa.init.BaaSenInit; transform = "{1, 0, 0, 1, 0, -67}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = DigitAbove; position = "{59, 616}"; }, { name = DigitBelow; position = "{145, -189}"; }, { name = DotAbove; position = "{59, 616}"; }, { name = DotBelow; position = "{145, -189}"; }, { name = DotBelowAlt; position = "{145, -434}"; }, { name = HamzaAbove; position = "{59, 616}"; }, { name = HamzaBelow; position = "{145, -189}"; }, { name = RingBelow; position = "{88, 44}"; }, { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; }, { name = TwoDotsAbove; position = "{4, 616}"; }, { name = TwoDotsBelow; position = "{96, -189}"; }, { name = TwoDotsBelowAlt; position = "{96, -434}"; }, { name = VAbove; position = "{59, 616}"; } ); components = ( { name = aBaa.init.BaaSenInit; transform = "{1, 0, 0, 1, 0, -67}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = aSen.medi.BaaSenAltInit; layers = ( { anchors = ( { name = DigitAbove; position = "{109, 361}"; }, { name = DotAbove; position = "{109, 361}"; }, { name = DotBelow; position = "{158, -146}"; }, { name = HamzaAbove; position = "{109, 458}"; }, { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{56, 361}"; }, { name = TwoDotsBelow; position = "{109, -98}"; }, { name = VAbove; position = "{109, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "303 163 OFFCURVE", "305 142 OFFCURVE", "299 116 CURVE SMOOTH", "296 103 OFFCURVE", "294 100 OFFCURVE", "292 106 CURVE SMOOTH", "290 112 OFFCURVE", "287 113 OFFCURVE", "285 108 CURVE SMOOTH", "261 54 OFFCURVE", "241 21 OFFCURVE", "225 7 CURVE SMOOTH", "217 -1 OFFCURVE", "208 -5 OFFCURVE", "200 -6 CURVE SMOOTH", "163 -10 OFFCURVE", "127 7 OFFCURVE", "93 47 CURVE", "65 16 OFFCURVE", "34 1 OFFCURVE", "0 0 CURVE SMOOTH", "-11 0 OFFCURVE", "-17 19 OFFCURVE", "-21 57 CURVE SMOOTH", "-23 80 OFFCURVE", "-17 91 OFFCURVE", "0 90 CURVE SMOOTH", "35 87 OFFCURVE", "62 91 OFFCURVE", "81 99 CURVE SMOOTH", "107 111 OFFCURVE", "127 134 OFFCURVE", "139 169 CURVE SMOOTH", "142 179 OFFCURVE", "147 183 OFFCURVE", "153 179 CURVE SMOOTH", "159 175 OFFCURVE", "161 169 OFFCURVE", "157 160 CURVE SMOOTH", "147 135 OFFCURVE", "147 119 OFFCURVE", "155 112 CURVE SMOOTH", "188 86 OFFCURVE", "217 77 OFFCURVE", "241 86 CURVE SMOOTH", "243 87 OFFCURVE", "245 90 OFFCURVE", "247 93 CURVE SMOOTH", "249 96 OFFCURVE", "260 124 OFFCURVE", "280 176 CURVE SMOOTH", "281 179 OFFCURVE", "283 180 OFFCURVE", "286 181 CURVE SMOOTH", "289 182 OFFCURVE", "291 181 OFFCURVE", "293 178 CURVE SMOOTH" ); } ); width = 291; }, { anchors = ( { name = DigitAbove; position = "{109, 361}"; }, { name = DotAbove; position = "{109, 361}"; }, { name = DotBelow; position = "{158, -146}"; }, { name = HamzaAbove; position = "{109, 458}"; }, { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{56, 361}"; }, { name = TwoDotsBelow; position = "{109, -98}"; }, { name = VAbove; position = "{109, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "318 168 OFFCURVE", "320 144 OFFCURVE", "313 113 CURVE", "313 111 LINE", "310 85 OFFCURVE", "303 77 OFFCURVE", "293 88 CURVE SMOOTH", "289 93 OFFCURVE", "287 93 OFFCURVE", "285 88 CURVE", "266 45 OFFCURVE", "249 16 OFFCURVE", "235 2 CURVE SMOOTH", "221 -12 OFFCURVE", "209 -20 OFFCURVE", "201 -21 CURVE SMOOTH", "163 -25 OFFCURVE", "125 -7 OFFCURVE", "87 32 CURVE", "55 -2 OFFCURVE", "26 -18 OFFCURVE", "0 -15 CURVE SMOOTH", "-15 -14 OFFCURVE", "-25 -3 OFFCURVE", "-30 16 CURVE SMOOTH", "-43 65 OFFCURVE", "-38 94 OFFCURVE", "-16 103 CURVE SMOOTH", "-11 105 OFFCURVE", "-5 105 OFFCURVE", "1 105 CURVE SMOOTH", "31 103 OFFCURVE", "58 106 OFFCURVE", "83 115 CURVE SMOOTH", "108 124 OFFCURVE", "124 143 OFFCURVE", "134 174 CURVE SMOOTH", "139 188 OFFCURVE", "146 192 OFFCURVE", "156 187 CURVE SMOOTH", "166 182 OFFCURVE", "169 171 OFFCURVE", "163 157 CURVE SMOOTH", "157 143 OFFCURVE", "155 133 OFFCURVE", "157 128 CURVE", "182 104 OFFCURVE", "210 94 OFFCURVE", "239 99 CURVE", "252 125 OFFCURVE", "262 152 OFFCURVE", "271 181 CURVE SMOOTH", "273 188 OFFCURVE", "278 193 OFFCURVE", "285 195 CURVE SMOOTH", "292 197 OFFCURVE", "299 194 OFFCURVE", "305 187 CURVE" ); } ); width = 291; } ); }, { glyphname = aRaa.fina.PostTooth; layers = ( { anchors = ( { name = DotAbove; position = "{325, 340}"; }, { name = DotAlt; position = "{216, -106}"; }, { name = DotBelow; position = "{398, -368}"; }, { name = HamzaAbove; position = "{325, 340}"; }, { name = RingBelow; position = "{241, -266}"; }, { name = Stroke; position = "{435, -71}"; }, { name = TaaAbove; position = "{325, 242}"; }, { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{376, -327}"; }, { name = TwoDotsAbove; position = "{271, 340}"; }, { name = VAbove; position = "{325, 340}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "678 0 OFFCURVE", "661 4 OFFCURVE", "648 11 CURVE SMOOTH", "635 18 OFFCURVE", "625 30 OFFCURVE", "616 45 CURVE", "558 38 OFFCURVE", "510 27 OFFCURVE", "470 11 CURVE SMOOTH", "460 7 OFFCURVE", "455 -1 OFFCURVE", "455 -12 CURVE", "453 -56 OFFCURVE", "446 -93 OFFCURVE", "433 -123 CURVE SMOOTH", "412 -173 OFFCURVE", "381 -218 OFFCURVE", "343 -258 CURVE SMOOTH", "305 -298 OFFCURVE", "270 -317 OFFCURVE", "240 -317 CURVE SMOOTH", "210 -317 OFFCURVE", "177 -310 OFFCURVE", "141 -296 CURVE SMOOTH", "105 -282 OFFCURVE", "81 -269 OFFCURVE", "68 -259 CURVE SMOOTH", "63 -255 OFFCURVE", "61 -250 OFFCURVE", "63 -245 CURVE SMOOTH", "65 -240 OFFCURVE", "70 -239 OFFCURVE", "77 -242 CURVE SMOOTH", "103 -252 OFFCURVE", "125 -258 OFFCURVE", "144 -259 CURVE SMOOTH", "163 -260 OFFCURVE", "186 -259 OFFCURVE", "214 -255 CURVE SMOOTH", "242 -251 OFFCURVE", "277 -231 OFFCURVE", "322 -195 CURVE SMOOTH", "367 -159 OFFCURVE", "401 -115 OFFCURVE", "423 -65 CURVE SMOOTH", "424 -63 OFFCURVE", "424 -61 OFFCURVE", "423 -59 CURVE SMOOTH", "416 -32 OFFCURVE", "406 -10 OFFCURVE", "393 7 CURVE SMOOTH", "387 14 OFFCURVE", "393 40 OFFCURVE", "411 81 CURVE SMOOTH", "415 89 OFFCURVE", "421 94 OFFCURVE", "430 97 CURVE SMOOTH", "500 119 OFFCURVE", "567 138 OFFCURVE", "632 152 CURVE SMOOTH", "641 154 OFFCURVE", "646 151 OFFCURVE", "648 144 CURVE SMOOTH", "650 130 OFFCURVE", "655 117 OFFCURVE", "662 108 CURVE SMOOTH", "669 99 OFFCURVE", "682 93 OFFCURVE", "701 90 CURVE", "710 88 OFFCURVE", "716 80 OFFCURVE", "719 65 CURVE SMOOTH", "722 50 OFFCURVE", "721 35 OFFCURVE", "717 21 CURVE SMOOTH", "713 7 OFFCURVE", "708 0 OFFCURVE", "701 0 CURVE SMOOTH" ); } ); width = 700; }, { anchors = ( { name = DotAbove; position = "{325, 340}"; }, { name = DotAlt; position = "{216, -106}"; }, { name = DotBelow; position = "{398, -368}"; }, { name = HamzaAbove; position = "{325, 340}"; }, { name = RingBelow; position = "{241, -266}"; }, { name = Stroke; position = "{435, -71}"; }, { name = TaaAbove; position = "{325, 242}"; }, { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{376, -327}"; }, { name = TwoDotsAbove; position = "{271, 340}"; }, { name = VAbove; position = "{325, 340}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "676 -15 OFFCURVE", "657 -10 OFFCURVE", "643 -2 CURVE SMOOTH", "629 6 OFFCURVE", "618 17 OFFCURVE", "609 30 CURVE", "552 23 OFFCURVE", "506 12 OFFCURVE", "471 -3 CURVE", "467 -6 OFFCURVE", "465 -9 OFFCURVE", "465 -12 CURVE SMOOTH", "463 -58 OFFCURVE", "455 -96 OFFCURVE", "442 -128 CURVE", "420 -180 OFFCURVE", "389 -228 OFFCURVE", "350 -270 CURVE SMOOTH", "311 -312 OFFCURVE", "274 -332 OFFCURVE", "239 -332 CURVE SMOOTH", "204 -332 OFFCURVE", "170 -322 OFFCURVE", "136 -306 CURVE SMOOTH", "102 -290 OFFCURVE", "78 -277 OFFCURVE", "66 -268 CURVE SMOOTH", "54 -259 OFFCURVE", "51 -250 OFFCURVE", "55 -240 CURVE SMOOTH", "59 -230 OFFCURVE", "69 -230 OFFCURVE", "84 -237 CURVE SMOOTH", "99 -244 OFFCURVE", "119 -248 OFFCURVE", "140 -247 CURVE SMOOTH", "204 -245 OFFCURVE", "261 -225 OFFCURVE", "310 -188 CURVE SMOOTH", "359 -151 OFFCURVE", "394 -109 OFFCURVE", "415 -61 CURVE", "408 -39 OFFCURVE", "400 -22 OFFCURVE", "389 -10 CURVE SMOOTH", "378 2 OFFCURVE", "375 19 OFFCURVE", "382 41 CURVE SMOOTH", "389 63 OFFCURVE", "394 80 OFFCURVE", "399 90 CURVE SMOOTH", "404 100 OFFCURVE", "412 106 OFFCURVE", "425 111 CURVE", "496 133 OFFCURVE", "564 153 OFFCURVE", "629 167 CURVE", "648 171 OFFCURVE", "660 162 OFFCURVE", "663 142 CURVE SMOOTH", "665 133 OFFCURVE", "668 126 OFFCURVE", "673 119 CURVE SMOOTH", "678 112 OFFCURVE", "688 107 OFFCURVE", "704 104 CURVE", "719 101 OFFCURVE", "728 90 OFFCURVE", "732 71 CURVE SMOOTH", "736 52 OFFCURVE", "735 33 OFFCURVE", "730 14 CURVE SMOOTH", "725 -5 OFFCURVE", "715 -15 OFFCURVE", "701 -15 CURVE" ); } ); width = 700; } ); }, { glyphname = aYaa.fina.PostTooth; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 269}"; }, { name = DigitBelow; position = "{368, -484}"; }, { name = DotAbove; position = "{271, 269}"; }, { name = DotBelow; position = "{368, -484}"; }, { name = HamzaAbove; position = "{173, 269}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = RingBelow; position = "{346, -288}"; }, { name = Tail; position = "{155, 101}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; }, { name = TwoDotsAbove; position = "{217, 269}"; }, { name = TwoDotsBelow; position = "{313, -484}"; }, { name = VAbove; position = "{222, 269}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; transform = "{1, 0, 0, 1, 423, 0}"; }, { name = aYaa.fina.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 269}"; }, { name = DigitBelow; position = "{368, -484}"; }, { name = DotAbove; position = "{271, 269}"; }, { name = DotBelow; position = "{368, -484}"; }, { name = HamzaAbove; position = "{173, 269}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = RingBelow; position = "{346, -288}"; }, { name = Tail; position = "{155, 101}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; }, { name = TwoDotsAbove; position = "{217, 269}"; }, { name = TwoDotsBelow; position = "{313, -484}"; }, { name = VAbove; position = "{222, 269}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; transform = "{1, 0, 0, 1, 423, 0}"; }, { name = aYaa.fina.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = aBaa.init.AboveHaa; layers = ( { anchors = ( { name = DigitAbove; position = "{327, 697}"; }, { name = DigitBelow; position = "{461, 8}"; }, { name = DotAbove; position = "{327, 697}"; }, { name = DotBelow; position = "{461, 8}"; }, { name = HamzaAbove; position = "{327, 697}"; }, { name = HamzaBelow; position = "{349, 8}"; }, { name = RingBelow; position = "{366, 375}"; }, { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = TwoDotsAbove; position = "{272, 697}"; }, { name = TwoDotsBelow; position = "{349, 8}"; }, { name = VAbove; position = "{327, 697}"; }, { name = exit; position = "{0, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-2 234 OFFCURVE", "23 252 OFFCURVE", "56 271 CURVE SMOOTH", "133 315 OFFCURVE", "184 349 OFFCURVE", "210 375 CURVE SMOOTH", "236 401 OFFCURVE", "255 430 OFFCURVE", "267 462 CURVE SMOOTH", "279 494 OFFCURVE", "290 520 OFFCURVE", "300 538 CURVE SMOOTH", "310 556 OFFCURVE", "322 565 OFFCURVE", "337 565 CURVE SMOOTH", "351 565 OFFCURVE", "364 556 OFFCURVE", "376 538 CURVE SMOOTH", "394 510 OFFCURVE", "401 450 OFFCURVE", "397 358 CURVE SMOOTH", "397 349 OFFCURVE", "394 345 OFFCURVE", "387 345 CURVE SMOOTH", "380 345 OFFCURVE", "376 350 OFFCURVE", "375 359 CURVE SMOOTH", "367 433 OFFCURVE", "349 469 OFFCURVE", "324 469 CURVE SMOOTH", "317 469 OFFCURVE", "311 464 OFFCURVE", "305 456 CURVE SMOOTH", "299 448 OFFCURVE", "290 431 OFFCURVE", "277 406 CURVE SMOOTH", "246 342 OFFCURVE", "188 286 OFFCURVE", "101 238 CURVE SMOOTH", "101 238 OFFCURVE", "87 230 OFFCURVE", "61 214 CURVE SMOOTH", "35 198 OFFCURVE", "8 199 OFFCURVE", "-16 216 CURVE" ); } ); width = 543; }, { anchors = ( { name = DigitAbove; position = "{327, 697}"; }, { name = DigitBelow; position = "{461, 8}"; }, { name = DotAbove; position = "{327, 697}"; }, { name = DotBelow; position = "{461, 8}"; }, { name = HamzaAbove; position = "{327, 697}"; }, { name = HamzaBelow; position = "{349, 8}"; }, { name = RingBelow; position = "{366, 375}"; }, { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = TwoDotsAbove; position = "{272, 697}"; }, { name = TwoDotsBelow; position = "{349, 8}"; }, { name = VAbove; position = "{327, 697}"; }, { name = exit; position = "{0, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-11 245 OFFCURVE", "14 264 OFFCURVE", "48 283 CURVE SMOOTH", "124 326 OFFCURVE", "175 360 OFFCURVE", "199 385 CURVE SMOOTH", "223 410 OFFCURVE", "242 438 OFFCURVE", "254 469 CURVE SMOOTH", "266 500 OFFCURVE", "277 527 OFFCURVE", "289 548 CURVE SMOOTH", "301 569 OFFCURVE", "317 579 OFFCURVE", "337 579 CURVE SMOOTH", "357 579 OFFCURVE", "373 568 OFFCURVE", "388 546 CURVE", "408 515 OFFCURVE", "416 451 OFFCURVE", "412 357 CURVE SMOOTH", "412 345 OFFCURVE", "406 338 OFFCURVE", "397 333 CURVE SMOOTH", "393 331 OFFCURVE", "390 330 OFFCURVE", "386 330 CURVE SMOOTH", "371 330 OFFCURVE", "363 340 OFFCURVE", "360 357 CURVE", "354 410 OFFCURVE", "344 442 OFFCURVE", "330 452 CURVE", "325 455 OFFCURVE", "321 453 OFFCURVE", "316 446 CURVE SMOOTH", "311 439 OFFCURVE", "302 424 OFFCURVE", "290 400 CURVE SMOOTH", "257 333 OFFCURVE", "197 275 OFFCURVE", "108 225 CURVE SMOOTH", "105 223 OFFCURVE", "92 215 OFFCURVE", "68 201 CURVE SMOOTH", "36 182 OFFCURVE", "5 183 OFFCURVE", "-24 204 CURVE SMOOTH", "-37 213 LINE", "-27 226 LINE SMOOTH" ); } ); width = 543; } ); }, { glyphname = aBaa.init.BaaHaaInit; layers = ( { anchors = ( { name = DigitAbove; position = "{366, 684}"; }, { name = DigitBelow; position = "{479, -195}"; }, { name = DotAbove; position = "{366, 684}"; }, { name = DotBelow; position = "{479, -195}"; }, { name = DotBelowAlt; position = "{479, -366}"; }, { name = HamzaAbove; position = "{366, 684}"; }, { name = HamzaBelow; position = "{479, -98}"; }, { name = RingBelow; position = "{386, 376}"; }, { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{479, -327}"; }, { name = TwoDotsAbove; position = "{312, 684}"; }, { name = TwoDotsBelow; position = "{430, -98}"; }, { name = TwoDotsBelowAlt; position = "{430, -366}"; }, { name = VAbove; position = "{366, 684}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "429 353 OFFCURVE", "428 349 OFFCURVE", "424 346 CURVE SMOOTH", "420 343 OFFCURVE", "416 343 OFFCURVE", "412 345 CURVE SMOOTH", "408 347 OFFCURVE", "407 351 OFFCURVE", "406 357 CURVE SMOOTH", "399 407 OFFCURVE", "388 439 OFFCURVE", "373 451 CURVE SMOOTH", "363 459 OFFCURVE", "354 458 OFFCURVE", "346 448 CURVE SMOOTH", "269 346 OFFCURVE", "193 277 OFFCURVE", "118 239 CURVE SMOOTH", "91 225 OFFCURVE", "57 221 OFFCURVE", "16 228 CURVE", "-14 234 OFFCURVE", "-24 242 OFFCURVE", "-12 253 CURVE SMOOTH", "-5 260 OFFCURVE", "6 266 OFFCURVE", "21 272 CURVE SMOOTH", "94 300 OFFCURVE", "157 330 OFFCURVE", "210 363 CURVE SMOOTH", "258 393 OFFCURVE", "293 435 OFFCURVE", "315 488 CURVE SMOOTH", "333 530 OFFCURVE", "351 552 OFFCURVE", "368 552 CURVE SMOOTH", "402 553 OFFCURVE", "422 488 OFFCURVE", "429 359 CURVE SMOOTH" ); } ); width = 587; }, { anchors = ( { name = DigitAbove; position = "{371, 684}"; }, { name = DigitBelow; position = "{483, -195}"; }, { name = DotAbove; position = "{371, 684}"; }, { name = DotBelow; position = "{483, -195}"; }, { name = DotBelowAlt; position = "{483, -366}"; }, { name = HamzaAbove; position = "{371, 684}"; }, { name = HamzaBelow; position = "{483, -98}"; }, { name = RingBelow; position = "{391, 376}"; }, { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{371, 801}"; }, { name = TashkilBelow; position = "{483, -327}"; }, { name = TwoDotsAbove; position = "{317, 684}"; }, { name = TwoDotsBelow; position = "{435, -98}"; }, { name = TwoDotsBelowAlt; position = "{435, -366}"; }, { name = VAbove; position = "{371, 684}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "441 343 OFFCURVE", "435 334 OFFCURVE", "424 333 CURVE SMOOTH", "413 332 OFFCURVE", "406 340 OFFCURVE", "403 356 CURVE SMOOTH", "397 394 OFFCURVE", "389 419 OFFCURVE", "378 431 CURVE SMOOTH", "366 444 OFFCURVE", "355 442 OFFCURVE", "344 428 CURVE SMOOTH", "262 318 OFFCURVE", "191 251 OFFCURVE", "129 226 CURVE SMOOTH", "98 213 OFFCURVE", "72 210 OFFCURVE", "49 218 CURVE SMOOTH", "23 227 OFFCURVE", "8 244 OFFCURVE", "4 268 CURVE", "2 280 LINE", "14 284 LINE", "81 308 OFFCURVE", "145 339 OFFCURVE", "207 376 CURVE", "253 405 OFFCURVE", "286 443 OFFCURVE", "306 492 CURVE SMOOTH", "326 541 OFFCURVE", "348 565 OFFCURVE", "372 566 CURVE", "399 567 OFFCURVE", "418 541 OFFCURVE", "428 489 CURVE SMOOTH", "436 448 OFFCURVE", "440 405 OFFCURVE", "441 360 CURVE SMOOTH" ); } ); width = 587; } ); }, { glyphname = aBaa.init.BaaHaaMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{129, 750}"; }, { name = DigitBelow; position = "{214, -115}"; }, { name = DotAbove; position = "{129, 750}"; }, { name = DotBelow; position = "{214, -115}"; }, { name = DotBelowAlt; position = "{214, -366}"; }, { name = HamzaAbove; position = "{214, -115}"; }, { name = HamzaBelow; position = "{214, -115}"; }, { name = RingBelow; position = "{127, 442}"; }, { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; }, { name = TwoDotsAbove; position = "{75, 750}"; }, { name = TwoDotsBelow; position = "{160, -115}"; }, { name = TwoDotsBelowAlt; position = "{160, -366}"; }, { name = VAbove; position = "{214, -115}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "161 619 OFFCURVE", "178 596 OFFCURVE", "178 548 CURVE SMOOTH", "178 508 OFFCURVE", "171 462 OFFCURVE", "157 410 CURVE SMOOTH", "156 407 OFFCURVE", "154 405 OFFCURVE", "150 403 CURVE SMOOTH", "146 401 OFFCURVE", "143 402 OFFCURVE", "139 405 CURVE SMOOTH", "135 408 OFFCURVE", "135 415 OFFCURVE", "137 425 CURVE", "146 486 OFFCURVE", "131 518 OFFCURVE", "91 519 CURVE SMOOTH", "83 519 OFFCURVE", "70 512 OFFCURVE", "51 497 CURVE SMOOTH", "-16 444 OFFCURVE", "-71 410 OFFCURVE", "-115 397 CURVE SMOOTH", "-231 361 OFFCURVE", "-278 366 OFFCURVE", "-257 412 CURVE SMOOTH", "-256 414 OFFCURVE", "-240 420 OFFCURVE", "-209 428 CURVE SMOOTH", "-124 450 OFFCURVE", "-61 474 OFFCURVE", "-19 500 CURVE SMOOTH", "5 515 OFFCURVE", "25 531 OFFCURVE", "42 551 CURVE SMOOTH", "80 595 OFFCURVE", "109 618 OFFCURVE", "127 618 CURVE" ); } ); width = 354; }, { anchors = ( { name = DigitAbove; position = "{129, 750}"; }, { name = DigitBelow; position = "{214, -115}"; }, { name = DotAbove; position = "{129, 750}"; }, { name = DotBelow; position = "{214, -115}"; }, { name = DotBelowAlt; position = "{214, -366}"; }, { name = HamzaAbove; position = "{214, -115}"; }, { name = HamzaBelow; position = "{214, -115}"; }, { name = RingBelow; position = "{127, 442}"; }, { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; }, { name = TwoDotsAbove; position = "{75, 750}"; }, { name = TwoDotsBelow; position = "{160, -115}"; }, { name = TwoDotsBelowAlt; position = "{160, -366}"; }, { name = VAbove; position = "{214, -115}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "160 634 OFFCURVE", "180 617 OFFCURVE", "189 583 CURVE SMOOTH", "192 573 OFFCURVE", "192 561 OFFCURVE", "192 548 CURVE SMOOTH", "192 506 OFFCURVE", "186 459 OFFCURVE", "172 407 CURVE SMOOTH", "170 399 OFFCURVE", "164 393 OFFCURVE", "155 389 CURVE SMOOTH", "146 385 OFFCURVE", "138 387 OFFCURVE", "130 394 CURVE SMOOTH", "122 401 OFFCURVE", "119 412 OFFCURVE", "121 424 CURVE SMOOTH", "130 479 OFFCURVE", "120 505 OFFCURVE", "90 503 CURVE SMOOTH", "85 503 OFFCURVE", "75 497 OFFCURVE", "60 485 CURVE SMOOTH", "-8 431 OFFCURVE", "-65 397 OFFCURVE", "-111 383 CURVE SMOOTH", "-186 360 OFFCURVE", "-234 354 OFFCURVE", "-256 364 CURVE SMOOTH", "-278 374 OFFCURVE", "-283 392 OFFCURVE", "-270 419 CURVE", "-266 427 OFFCURVE", "-256 432 OFFCURVE", "-239 436 CURVE SMOOTH", "-146 458 OFFCURVE", "-74 482 OFFCURVE", "-26 512 CURVE SMOOTH", "-3 526 OFFCURVE", "15 543 OFFCURVE", "31 561 CURVE SMOOTH", "72 608 OFFCURVE", "105 632 OFFCURVE", "127 633 CURVE SMOOTH" ); } ); width = 354; } ); }, { glyphname = aHaa.medi.BaaHaaMemInit; layers = ( { anchors = ( { name = DigitBelow; position = "{149, -82}"; }, { name = DotAbove; position = "{-36, 627}"; }, { name = DotBelow; position = "{149, -82}"; }, { name = HamzaAbove; position = "{-36, 627}"; }, { name = HamzaBelow; position = "{149, -82}"; }, { name = TaaAbove; position = "{-36, 627}"; }, { name = TaaBelow; position = "{149, 114}"; }, { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; }, { name = TwoDotsAbove; position = "{-85, 627}"; }, { name = TwoDotsBelow; position = "{95, -82}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-90 373 OFFCURVE", "-77 399 OFFCURVE", "-66 407 CURVE SMOOTH", "-55 415 OFFCURVE", "-34 417 OFFCURVE", "-4 412 CURVE SMOOTH", "26 407 OFFCURVE", "60 398 OFFCURVE", "99 384 CURVE SMOOTH", "138 370 OFFCURVE", "173 358 OFFCURVE", "204 348 CURVE SMOOTH", "270 327 OFFCURVE", "355 312 OFFCURVE", "459 303 CURVE SMOOTH", "476 302 OFFCURVE", "482 296 OFFCURVE", "475 285 CURVE SMOOTH", "436 220 LINE SMOOTH", "434 216 OFFCURVE", "428 215 OFFCURVE", "419 217 CURVE SMOOTH", "267 241 OFFCURVE", "147 241 OFFCURVE", "59 215 CURVE SMOOTH", "-15 194 OFFCURVE", "-58 196 OFFCURVE", "-72 224 CURVE", "-37 247 OFFCURVE", "29 265 OFFCURVE", "126 276 CURVE", "85 295 OFFCURVE", "48 307 OFFCURVE", "15 314 CURVE SMOOTH", "-18 321 OFFCURVE", "-57 324 OFFCURVE", "-101 321 CURVE SMOOTH", "-106 321 OFFCURVE", "-108 323 OFFCURVE", "-106 328 CURVE SMOOTH" ); } ); width = 209; }, { anchors = ( { name = DigitBelow; position = "{149, -82}"; }, { name = DotAbove; position = "{-36, 627}"; }, { name = DotBelow; position = "{149, -82}"; }, { name = HamzaAbove; position = "{-36, 627}"; }, { name = HamzaBelow; position = "{149, -82}"; }, { name = TaaAbove; position = "{-36, 627}"; }, { name = TaaBelow; position = "{149, 114}"; }, { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; }, { name = TwoDotsAbove; position = "{-85, 627}"; }, { name = TwoDotsBelow; position = "{95, -82}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-103 380 OFFCURVE", "-88 409 OFFCURVE", "-74 419 CURVE SMOOTH", "-48 438 OFFCURVE", "11 431 OFFCURVE", "104 398 CURVE SMOOTH", "143 384 OFFCURVE", "178 372 OFFCURVE", "209 362 CURVE SMOOTH", "274 341 OFFCURVE", "358 327 OFFCURVE", "461 318 CURVE SMOOTH", "487 316 OFFCURVE", "497 305 OFFCURVE", "491 285 CURVE SMOOTH", "490 282 OFFCURVE", "489 280 OFFCURVE", "488 278 CURVE SMOOTH", "448 212 LINE", "442 203 OFFCURVE", "431 199 OFFCURVE", "416 202 CURVE SMOOTH", "266 226 OFFCURVE", "150 226 OFFCURVE", "66 202 CURVE SMOOTH", "-18 178 OFFCURVE", "-67 183 OFFCURVE", "-85 218 CURVE", "-91 229 LINE", "-80 236 LINE SMOOTH", "-50 256 OFFCURVE", "1 272 OFFCURVE", "71 283 CURVE", "50 291 OFFCURVE", "26 297 OFFCURVE", "1 302 CURVE SMOOTH", "-24 307 OFFCURVE", "-58 308 OFFCURVE", "-100 306 CURVE SMOOTH", "-108 305 OFFCURVE", "-115 308 OFFCURVE", "-118 315 CURVE SMOOTH", "-121 322 OFFCURVE", "-121 327 OFFCURVE", "-120 332 CURVE SMOOTH" ); } ); width = 209; } ); }, { glyphname = aHaa.fina.AboveHaaIsol; layers = ( { anchors = ( { name = DigitBelow; position = "{399, -54}"; }, { name = DotAbove; position = "{160, 542}"; }, { name = DotBelow; position = "{399, -176}"; }, { name = HamzaAbove; position = "{160, 542}"; }, { name = HamzaBelow; position = "{399, -44}"; }, { name = TaaAbove; position = "{160, 542}"; }, { name = TaaBelow; position = "{342, 146}"; }, { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; }, { name = TwoDotsAbove; position = "{111, 542}"; }, { name = TwoDotsBelow; position = "{345, -176}"; }, { name = entry; position = "{104, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "379 224 OFFCURVE", "515 226 OFFCURVE", "605 239 CURVE SMOOTH", "612 240 OFFCURVE", "615 237 OFFCURVE", "614 230 CURVE SMOOTH", "608 204 OFFCURVE", "604 187 OFFCURVE", "600 178 CURVE SMOOTH", "596 169 OFFCURVE", "591 164 OFFCURVE", "584 163 CURVE SMOOTH", "421 143 OFFCURVE", "297 92 OFFCURVE", "212 8 CURVE SMOOTH", "158 -45 OFFCURVE", "130 -104 OFFCURVE", "128 -169 CURVE SMOOTH", "124 -278 OFFCURVE", "169 -351 OFFCURVE", "262 -386 CURVE", "342 -416 OFFCURVE", "455 -426 OFFCURVE", "601 -419 CURVE SMOOTH", "652 -416 OFFCURVE", "699 -413 OFFCURVE", "741 -407 CURVE SMOOTH", "748 -406 OFFCURVE", "752 -408 OFFCURVE", "752 -415 CURVE SMOOTH", "752 -422 OFFCURVE", "751 -426 OFFCURVE", "746 -428 CURVE SMOOTH", "668 -462 OFFCURVE", "607 -483 OFFCURVE", "563 -493 CURVE SMOOTH", "519 -503 OFFCURVE", "480 -508 OFFCURVE", "444 -507 CURVE SMOOTH", "310 -503 OFFCURVE", "217 -477 OFFCURVE", "164 -427 CURVE SMOOTH", "111 -377 OFFCURVE", "86 -309 OFFCURVE", "89 -222 CURVE SMOOTH", "93 -119 OFFCURVE", "133 -22 OFFCURVE", "210 70 CURVE", "235 99 OFFCURVE", "268 126 OFFCURVE", "305 149 CURVE", "63 151 LINE", "52 153 OFFCURVE", "52 160 OFFCURVE", "60 173 CURVE SMOOTH", "83 208 OFFCURVE", "97 229 OFFCURVE", "104 236 CURVE", "105 237 OFFCURVE", "136 236 OFFCURVE", "196 233 CURVE SMOOTH" ); } ); width = 104; }, { anchors = ( { name = DigitBelow; position = "{399, -54}"; }, { name = DotAbove; position = "{160, 542}"; }, { name = DotBelow; position = "{399, -176}"; }, { name = HamzaAbove; position = "{160, 542}"; }, { name = HamzaBelow; position = "{399, -44}"; }, { name = TaaAbove; position = "{160, 542}"; }, { name = TaaBelow; position = "{342, 146}"; }, { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; }, { name = TwoDotsAbove; position = "{111, 542}"; }, { name = TwoDotsBelow; position = "{345, -176}"; }, { name = entry; position = "{104, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "381 239 OFFCURVE", "514 240 OFFCURVE", "594 251 CURVE", "614 252 OFFCURVE", "623 245 OFFCURVE", "619 231 CURVE SMOOTH", "602 167 LINE SMOOTH", "599 155 OFFCURVE", "590 148 OFFCURVE", "576 146 CURVE SMOOTH", "426 128 OFFCURVE", "308 79 OFFCURVE", "222 -2 CURVE SMOOTH", "166 -55 OFFCURVE", "137 -111 OFFCURVE", "135 -170 CURVE SMOOTH", "132 -274 OFFCURVE", "176 -341 OFFCURVE", "266 -372 CURVE SMOOTH", "356 -403 OFFCURVE", "514 -412 OFFCURVE", "739 -400 CURVE SMOOTH", "752 -399 OFFCURVE", "760 -405 OFFCURVE", "760 -415 CURVE", "761 -423 OFFCURVE", "757 -429 OFFCURVE", "751 -432 CURVE SMOOTH", "672 -466 OFFCURVE", "611 -489 OFFCURVE", "566 -503 CURVE SMOOTH", "521 -517 OFFCURVE", "480 -523 OFFCURVE", "443 -522 CURVE", "303 -518 OFFCURVE", "206 -489 OFFCURVE", "152 -435 CURVE SMOOTH", "98 -381 OFFCURVE", "75 -310 OFFCURVE", "82 -221 CURVE SMOOTH", "95 -64 OFFCURVE", "153 54 OFFCURVE", "258 135 CURVE", "72 136 LINE SMOOTH", "38 136 OFFCURVE", "31 152 OFFCURVE", "51 181 CURVE SMOOTH", "94 244 LINE SMOOTH", "98 250 OFFCURVE", "132 251 OFFCURVE", "197 248 CURVE SMOOTH" ); } ); width = 104; } ); }, { glyphname = aLam.init.LamHaaHaaInit; layers = ( { anchors = ( { name = DotAbove; position = "{130, 867}"; }, { name = Stroke; position = "{140, 599}"; }, { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; }, { name = TwoDotsAbove; position = "{72, 867}"; }, { name = TwoDotsBelow; position = "{73, -195}"; }, { name = VAbove; position = "{130, 818}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "135 766 OFFCURVE", "137 768 OFFCURVE", "140 767 CURVE SMOOTH", "143 766 OFFCURVE", "144 764 OFFCURVE", "145 761 CURVE SMOOTH", "152 732 OFFCURVE", "167 706 OFFCURVE", "188 682 CURVE SMOOTH", "194 675 OFFCURVE", "193 668 OFFCURVE", "186 659 CURVE SMOOTH", "170 639 OFFCURVE", "162 628 OFFCURVE", "162 626 CURVE SMOOTH", "168 563 OFFCURVE", "167 518 OFFCURVE", "162 490 CURVE SMOOTH", "157 462 OFFCURVE", "152 445 OFFCURVE", "147 437 CURVE SMOOTH", "135 417 OFFCURVE", "94 404 OFFCURVE", "25 399 CURVE SMOOTH", "-56 393 OFFCURVE", "-78 413 OFFCURVE", "-40 457 CURVE SMOOTH", "-32 467 OFFCURVE", "-6 470 OFFCURVE", "37 470 CURVE SMOOTH", "80 470 OFFCURVE", "108 472 OFFCURVE", "125 477 CURVE", "125 518 OFFCURVE", "124 557 OFFCURVE", "120 594 CURVE SMOOTH", "116 631 OFFCURVE", "111 659 OFFCURVE", "106 679 CURVE SMOOTH", "101 699 OFFCURVE", "100 711 OFFCURVE", "103 718 CURVE SMOOTH", "106 725 OFFCURVE", "116 740 OFFCURVE", "133 764 CURVE SMOOTH" ); } ); width = 489; }, { anchors = ( { name = DotAbove; position = "{130, 867}"; }, { name = Stroke; position = "{140, 599}"; }, { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; }, { name = TwoDotsAbove; position = "{72, 867}"; }, { name = TwoDotsBelow; position = "{73, -195}"; }, { name = VAbove; position = "{130, 818}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "127 780 OFFCURVE", "134 783 OFFCURVE", "143 781 CURVE SMOOTH", "152 779 OFFCURVE", "157 774 OFFCURVE", "159 765 CURVE SMOOTH", "166 739 OFFCURVE", "179 714 OFFCURVE", "199 692 CURVE", "210 679 OFFCURVE", "210 666 OFFCURVE", "199 652 CURVE SMOOTH", "188 638 OFFCURVE", "181 629 OFFCURVE", "177 624 CURVE", "182 561 OFFCURVE", "183 515 OFFCURVE", "177 486 CURVE SMOOTH", "171 457 OFFCURVE", "165 438 OFFCURVE", "160 429 CURVE SMOOTH", "145 405 OFFCURVE", "100 390 OFFCURVE", "26 385 CURVE SMOOTH", "-18 382 OFFCURVE", "-46 386 OFFCURVE", "-61 398 CURVE", "-79 414 OFFCURVE", "-76 436 OFFCURVE", "-51 466 CURVE SMOOTH", "-40 479 OFFCURVE", "-14 485 OFFCURVE", "26 485 CURVE SMOOTH", "66 485 OFFCURVE", "94 486 OFFCURVE", "111 489 CURVE", "111 562 OFFCURVE", "104 624 OFFCURVE", "92 676 CURVE SMOOTH", "87 699 OFFCURVE", "86 714 OFFCURVE", "89 723 CURVE SMOOTH", "92 732 OFFCURVE", "103 748 OFFCURVE", "121 773 CURVE SMOOTH" ); } ); width = 489; } ); }, { glyphname = aHaa.medi.1LamHaaHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{494, -137}"; }, { name = DotAbove; position = "{494, 591}"; }, { name = DotBelow; position = "{494, -137}"; }, { name = HamzaAbove; position = "{494, 591}"; }, { name = HamzaBelow; position = "{494, -137}"; }, { name = TaaAbove; position = "{494, 591}"; }, { name = TaaBelow; position = "{494, 59}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = TwoDotsAbove; position = "{439, 591}"; }, { name = TwoDotsBelow; position = "{439, -137}"; }, { name = exit; position = "{0, 231}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "77 461 OFFCURVE", "86 464 OFFCURVE", "97 466 CURVE SMOOTH", "132 473 OFFCURVE", "211 453 OFFCURVE", "334 406 CURVE SMOOTH", "372 392 OFFCURVE", "438 376 OFFCURVE", "531 359 CURVE SMOOTH", "541 357 OFFCURVE", "544 352 OFFCURVE", "539 344 CURVE SMOOTH", "506 287 LINE SMOOTH", "504 283 OFFCURVE", "500 281 OFFCURVE", "496 282 CURVE SMOOTH", "432 297 OFFCURVE", "372 304 OFFCURVE", "318 302 CURVE SMOOTH", "242 299 OFFCURVE", "139 269 OFFCURVE", "9 211 CURVE SMOOTH", "-49 185 OFFCURVE", "-61 198 OFFCURVE", "-28 249 CURVE SMOOTH", "-23 256 OFFCURVE", "1 269 OFFCURVE", "45 289 CURVE SMOOTH", "89 309 OFFCURVE", "130 323 OFFCURVE", "168 334 CURVE SMOOTH", "206 345 OFFCURVE", "231 353 OFFCURVE", "241 357 CURVE", "189 383 OFFCURVE", "125 396 OFFCURVE", "47 394 CURVE SMOOTH", "40 394 OFFCURVE", "38 397 OFFCURVE", "41 404 CURVE SMOOTH", "48 425 OFFCURVE", "59 444 OFFCURVE", "73 457 CURVE SMOOTH" ); } ); width = 112; }, { anchors = ( { name = DigitBelow; position = "{494, -137}"; }, { name = DotAbove; position = "{494, 591}"; }, { name = DotBelow; position = "{494, -137}"; }, { name = HamzaAbove; position = "{494, 591}"; }, { name = HamzaBelow; position = "{494, -137}"; }, { name = TaaAbove; position = "{494, 591}"; }, { name = TaaBelow; position = "{494, 59}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = TwoDotsAbove; position = "{439, 591}"; }, { name = TwoDotsBelow; position = "{439, -137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "70 473 OFFCURVE", "80 478 OFFCURVE", "94 481 CURVE SMOOTH", "132 489 OFFCURVE", "214 468 OFFCURVE", "340 420 CURVE SMOOTH", "377 406 OFFCURVE", "442 390 OFFCURVE", "534 373 CURVE", "552 369 OFFCURVE", "559 359 OFFCURVE", "554 343 CURVE SMOOTH", "553 341 OFFCURVE", "553 338 OFFCURVE", "552 336 CURVE SMOOTH", "519 279 LINE SMOOTH", "513 269 OFFCURVE", "504 266 OFFCURVE", "493 268 CURVE SMOOTH", "430 283 OFFCURVE", "372 289 OFFCURVE", "319 287 CURVE SMOOTH", "244 284 OFFCURVE", "143 255 OFFCURVE", "15 198 CURVE SMOOTH", "-10 187 OFFCURVE", "-27 182 OFFCURVE", "-34 183 CURVE SMOOTH", "-66 188 OFFCURVE", "-70 209 OFFCURVE", "-48 246 CURVE SMOOTH", "-46 249 OFFCURVE", "-42 254 OFFCURVE", "-38 261 CURVE SMOOTH", "-34 268 OFFCURVE", "-23 274 OFFCURVE", "-6 282 CURVE SMOOTH", "11 290 OFFCURVE", "34 300 OFFCURVE", "63 313 CURVE SMOOTH", "92 326 OFFCURVE", "119 336 OFFCURVE", "145 343 CURVE SMOOTH", "171 350 OFFCURVE", "189 356 OFFCURVE", "199 359 CURVE", "156 374 OFFCURVE", "105 380 OFFCURVE", "47 379 CURVE", "38 379 OFFCURVE", "32 383 OFFCURVE", "28 389 CURVE SMOOTH", "24 395 OFFCURVE", "24 401 OFFCURVE", "27 409 CURVE SMOOTH", "35 433 OFFCURVE", "47 452 OFFCURVE", "63 467 CURVE SMOOTH" ); } ); width = 112; } ); }, { glyphname = aHaa.medi.2LamHaaHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{78, -137}"; }, { name = DotAbove; position = "{39, 591}"; }, { name = DotBelow; position = "{78, -137}"; }, { name = HamzaAbove; position = "{39, 591}"; }, { name = HamzaBelow; position = "{78, -137}"; }, { name = TaaAbove; position = "{39, 591}"; }, { name = TaaBelow; position = "{78, 59}"; }, { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; }, { name = TwoDotsAbove; position = "{-15, 591}"; }, { name = TwoDotsBelow; position = "{24, -137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "55 264 OFFCURVE", "92 263 OFFCURVE", "153 246 CURVE SMOOTH", "171 241 OFFCURVE", "204 231 OFFCURVE", "250 217 CURVE SMOOTH", "296 203 OFFCURVE", "340 191 OFFCURVE", "383 181 CURVE SMOOTH", "426 171 OFFCURVE", "476 167 OFFCURVE", "534 167 CURVE SMOOTH", "543 167 OFFCURVE", "546 161 OFFCURVE", "542 151 CURVE SMOOTH", "522 104 OFFCURVE", "504 82 OFFCURVE", "488 84 CURVE SMOOTH", "398 98 OFFCURVE", "325 100 OFFCURVE", "268 90 CURVE SMOOTH", "247 86 OFFCURVE", "201 70 OFFCURVE", "132 42 CURVE SMOOTH", "63 14 OFFCURVE", "18 0 OFFCURVE", "0 0 CURVE SMOOTH", "-9 0 OFFCURVE", "-16 7 OFFCURVE", "-20 19 CURVE SMOOTH", "-35 62 OFFCURVE", "-28 85 OFFCURVE", "0 90 CURVE", "83 103 OFFCURVE", "156 121 OFFCURVE", "218 141 CURVE", "188 154 OFFCURVE", "153 166 OFFCURVE", "112 175 CURVE SMOOTH", "71 184 OFFCURVE", "40 188 OFFCURVE", "19 186 CURVE SMOOTH", "15 186 OFFCURVE", "12 186 OFFCURVE", "10 188 CURVE SMOOTH", "8 190 OFFCURVE", "10 197 OFFCURVE", "16 210 CURVE SMOOTH", "22 223 OFFCURVE", "31 236 OFFCURVE", "41 248 CURVE SMOOTH" ); } ); width = 69; }, { anchors = ( { name = DigitBelow; position = "{78, -137}"; }, { name = DotAbove; position = "{39, 591}"; }, { name = DotBelow; position = "{78, -137}"; }, { name = HamzaAbove; position = "{39, 591}"; }, { name = HamzaBelow; position = "{78, -137}"; }, { name = TaaAbove; position = "{39, 591}"; }, { name = TaaBelow; position = "{78, 59}"; }, { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; }, { name = TwoDotsAbove; position = "{-15, 591}"; }, { name = TwoDotsBelow; position = "{24, -137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "47 278 OFFCURVE", "90 279 OFFCURVE", "157 260 CURVE SMOOTH", "176 255 OFFCURVE", "208 245 OFFCURVE", "254 231 CURVE SMOOTH", "300 217 OFFCURVE", "344 206 OFFCURVE", "386 196 CURVE SMOOTH", "428 186 OFFCURVE", "477 182 OFFCURVE", "534 182 CURVE SMOOTH", "538 182 OFFCURVE", "542 181 OFFCURVE", "545 180 CURVE SMOOTH", "558 175 OFFCURVE", "562 163 OFFCURVE", "555 146 CURVE", "539 107 OFFCURVE", "524 84 OFFCURVE", "510 75 CURVE SMOOTH", "502 71 OFFCURVE", "494 69 OFFCURVE", "486 70 CURVE SMOOTH", "398 84 OFFCURVE", "326 85 OFFCURVE", "271 75 CURVE SMOOTH", "250 71 OFFCURVE", "205 55 OFFCURVE", "135 27 CURVE SMOOTH", "65 -1 OFFCURVE", "21 -15 OFFCURVE", "3 -15 CURVE SMOOTH", "-15 -15 OFFCURVE", "-27 -5 OFFCURVE", "-33 14 CURVE SMOOTH", "-47 55 OFFCURVE", "-43 84 OFFCURVE", "-21 98 CURVE SMOOTH", "-15 101 OFFCURVE", "-9 104 OFFCURVE", "-2 105 CURVE SMOOTH", "63 115 OFFCURVE", "121 127 OFFCURVE", "173 142 CURVE", "107 164 OFFCURVE", "56 174 OFFCURVE", "20 171 CURVE SMOOTH", "12 171 OFFCURVE", "5 173 OFFCURVE", "-2 179 CURVE SMOOTH", "-9 185 OFFCURVE", "-8 196 OFFCURVE", "0 211 CURVE SMOOTH", "2 214 OFFCURVE", "4 219 OFFCURVE", "8 227 CURVE SMOOTH", "12 235 OFFCURVE", "18 244 OFFCURVE", "29 257 CURVE SMOOTH" ); } ); width = 69; } ); }, { glyphname = aAyn.init.Finjani; layers = ( { anchors = ( { name = DotAbove; position = "{112, 505}"; }, { name = DotBelow; position = "{206, -110}"; }, { name = HamzaAbove; position = "{112, 505}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; }, { name = TwoDotsAbove; position = "{57, 505}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "310 103 LINE SMOOTH", "306 95 OFFCURVE", "302 89 OFFCURVE", "297 86 CURVE SMOOTH", "257 57 OFFCURVE", "205 35 OFFCURVE", "142 18 CURVE SMOOTH", "81 1 OFFCURVE", "34 -5 OFFCURVE", "0 0 CURVE SMOOTH", "-17 3 OFFCURVE", "-24 19 OFFCURVE", "-21 48 CURVE SMOOTH", "-18 78 OFFCURVE", "-11 92 OFFCURVE", "0 90 CURVE SMOOTH", "10 89 OFFCURVE", "20 89 OFFCURVE", "29 90 CURVE", "10 114 OFFCURVE", "0 142 OFFCURVE", "-3 173 CURVE SMOOTH", "-9 232 OFFCURVE", "6 279 OFFCURVE", "42 314 CURVE SMOOTH", "81 352 OFFCURVE", "120 376 OFFCURVE", "157 383 CURVE SMOOTH", "194 390 OFFCURVE", "242 368 OFFCURVE", "301 316 CURVE SMOOTH", "309 309 OFFCURVE", "310 301 OFFCURVE", "305 293 CURVE SMOOTH", "300 285 OFFCURVE", "293 283 OFFCURVE", "284 287 CURVE SMOOTH", "222 311 OFFCURVE", "159 312 OFFCURVE", "95 289 CURVE SMOOTH", "68 279 OFFCURVE", "51 267 OFFCURVE", "46 252 CURVE SMOOTH", "41 237 OFFCURVE", "49 212 OFFCURVE", "72 176 CURVE SMOOTH", "96 139 OFFCURVE", "117 118 OFFCURVE", "136 114 CURVE SMOOTH", "179 105 OFFCURVE", "221 115 OFFCURVE", "263 142 CURVE SMOOTH", "292 162 LINE SMOOTH", "314 177 OFFCURVE", "329 181 OFFCURVE", "334 176 CURVE SMOOTH", "338 172 OFFCURVE", "339 167 OFFCURVE", "337 163 CURVE SMOOTH" ); } ); width = 390; }, { anchors = ( { name = DotAbove; position = "{112, 505}"; }, { name = DotBelow; position = "{206, -110}"; }, { name = HamzaAbove; position = "{112, 505}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; }, { name = TwoDotsAbove; position = "{57, 505}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "323 97 LINE SMOOTH", "320 88 OFFCURVE", "314 81 OFFCURVE", "306 75 CURVE SMOOTH", "264 45 OFFCURVE", "210 22 OFFCURVE", "147 4 CURVE SMOOTH", "84 -14 OFFCURVE", "34 -20 OFFCURVE", "-2 -15 CURVE SMOOTH", "-30 -11 OFFCURVE", "-40 15 OFFCURVE", "-34 61 CURVE", "-30 88 OFFCURVE", "-21 103 OFFCURVE", "-6 105 CURVE SMOOTH", "-3 105 OFFCURVE", "-1 105 OFFCURVE", "2 105 CURVE", "-9 126 OFFCURVE", "-16 148 OFFCURVE", "-18 172 CURVE SMOOTH", "-24 232 OFFCURVE", "-5 282 OFFCURVE", "36 324 CURVE SMOOTH", "77 366 OFFCURVE", "118 390 OFFCURVE", "157 395 CURVE SMOOTH", "196 400 OFFCURVE", "246 374 OFFCURVE", "306 317 CURVE SMOOTH", "315 309 OFFCURVE", "316 300 OFFCURVE", "310 290 CURVE SMOOTH", "304 280 OFFCURVE", "293 277 OFFCURVE", "278 283 CURVE SMOOTH", "228 302 OFFCURVE", "169 299 OFFCURVE", "100 275 CURVE SMOOTH", "74 266 OFFCURVE", "59 256 OFFCURVE", "55 246 CURVE SMOOTH", "51 236 OFFCURVE", "60 215 OFFCURVE", "83 182 CURVE SMOOTH", "106 149 OFFCURVE", "125 131 OFFCURVE", "139 128 CURVE SMOOTH", "174 121 OFFCURVE", "212 130 OFFCURVE", "255 154 CURVE SMOOTH", "315 189 LINE SMOOTH", "350 209 OFFCURVE", "360 198 OFFCURVE", "345 157 CURVE SMOOTH" ); } ); width = 390; } ); }, { glyphname = aHaa.init.Finjani; layers = ( { anchors = ( { name = DigitBelow; position = "{293, -140}"; }, { name = DotAbove; position = "{181, 450}"; }, { name = DotBelow; position = "{293, -140}"; }, { name = HamzaAbove; position = "{181, 450}"; }, { name = HamzaBelow; position = "{293, -140}"; }, { name = TaaAbove; position = "{181, 450}"; }, { name = TaaBelow; position = "{293, 55}"; }, { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{126, 450}"; }, { name = TwoDotsBelow; position = "{239, -140}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "339 213 OFFCURVE", "372 201 OFFCURVE", "412 191 CURVE SMOOTH", "452 181 OFFCURVE", "491 175 OFFCURVE", "528 176 CURVE SMOOTH", "534 176 OFFCURVE", "538 175 OFFCURVE", "542 172 CURVE SMOOTH", "546 169 OFFCURVE", "546 165 OFFCURVE", "543 158 CURVE SMOOTH", "531 132 OFFCURVE", "522 113 OFFCURVE", "516 103 CURVE SMOOTH", "510 93 OFFCURVE", "504 87 OFFCURVE", "498 87 CURVE SMOOTH", "462 91 OFFCURVE", "421 90 OFFCURVE", "376 82 CURVE SMOOTH", "331 74 OFFCURVE", "291 65 OFFCURVE", "256 53 CURVE SMOOTH", "157 20 OFFCURVE", "94 2 OFFCURVE", "69 0 CURVE SMOOTH", "44 -2 OFFCURVE", "21 -2 OFFCURVE", "0 0 CURVE", "-2 64 OFFCURVE", "-1 100 OFFCURVE", "3 107 CURVE SMOOTH", "21 143 OFFCURVE", "43 176 OFFCURVE", "67 207 CURVE SMOOTH", "106 256 OFFCURVE", "137 279 OFFCURVE", "161 278 CURVE SMOOTH", "185 277 OFFCURVE", "236 260 OFFCURVE", "312 225 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "206 169 OFFCURVE", "166 181 OFFCURVE", "128 182 CURVE", "107 182 OFFCURVE", "88 173 OFFCURVE", "71 158 CURVE SMOOTH", "54 143 OFFCURVE", "40 121 OFFCURVE", "30 92 CURVE", "61 90 OFFCURVE", "119 100 OFFCURVE", "205 122 CURVE SMOOTH", "248 133 LINE SMOOTH", "251 134 OFFCURVE", "253 135 OFFCURVE", "254 137 CURVE SMOOTH", "255 139 OFFCURVE", "253 142 OFFCURVE", "248 145 CURVE" ); } ); width = 606; }, { anchors = ( { name = DigitBelow; position = "{293, -140}"; }, { name = DotAbove; position = "{181, 450}"; }, { name = DotBelow; position = "{293, -140}"; }, { name = HamzaAbove; position = "{181, 450}"; }, { name = HamzaBelow; position = "{293, -140}"; }, { name = TaaAbove; position = "{181, 450}"; }, { name = TaaBelow; position = "{293, 55}"; }, { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = TwoDotsAbove; position = "{126, 450}"; }, { name = TwoDotsBelow; position = "{239, -140}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "344 226 OFFCURVE", "379 214 OFFCURVE", "424 203 CURVE SMOOTH", "469 192 OFFCURVE", "509 187 OFFCURVE", "545 188 CURVE", "564 187 OFFCURVE", "567 175 OFFCURVE", "556 152 CURVE SMOOTH", "525 92 LINE SMOOTH", "518 78 OFFCURVE", "508 72 OFFCURVE", "496 73 CURVE SMOOTH", "461 77 OFFCURVE", "422 74 OFFCURVE", "378 67 CURVE SMOOTH", "334 60 OFFCURVE", "295 50 OFFCURVE", "261 39 CURVE SMOOTH", "161 5 OFFCURVE", "98 -12 OFFCURVE", "72 -14 CURVE SMOOTH", "46 -16 OFFCURVE", "25 -17 OFFCURVE", "8 -15 CURVE SMOOTH", "-5 -13 LINE", "-5 98 LINE", "1 125 OFFCURVE", "21 165 OFFCURVE", "56 217 CURVE SMOOTH", "91 269 OFFCURVE", "126 295 OFFCURVE", "160 293 CURVE SMOOTH", "186 292 OFFCURVE", "238 273 OFFCURVE", "317 238 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "208 163 OFFCURVE", "171 172 OFFCURVE", "130 172 CURVE SMOOTH", "89 172 OFFCURVE", "58 150 OFFCURVE", "37 107 CURVE", "90 110 OFFCURVE", "159 122 OFFCURVE", "243 146 CURVE" ); } ); width = 606; } ); }, { glyphname = aHaa.medi.Finjani; layers = ( { anchors = ( { name = DigitBelow; position = "{278, -125}"; }, { name = DotAbove; position = "{166, 466}"; }, { name = DotBelow; position = "{278, -125}"; }, { name = HamzaAbove; position = "{166, 466}"; }, { name = HamzaBelow; position = "{278, -125}"; }, { name = TaaAbove; position = "{166, 466}"; }, { name = TaaBelow; position = "{278, 71}"; }, { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; }, { name = TwoDotsAbove; position = "{112, 466}"; }, { name = TwoDotsBelow; position = "{225, -125}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "67 241 OFFCURVE", "90 267 OFFCURVE", "112 279 CURVE SMOOTH", "134 291 OFFCURVE", "155 293 OFFCURVE", "178 285 CURVE SMOOTH", "282 247 OFFCURVE", "362 225 OFFCURVE", "420 219 CURVE SMOOTH", "423 219 OFFCURVE", "456 219 OFFCURVE", "516 219 CURVE SMOOTH", "524 219 OFFCURVE", "526 214 OFFCURVE", "523 205 CURVE SMOOTH", "502 143 LINE SMOOTH", "500 137 OFFCURVE", "494 135 OFFCURVE", "484 135 CURVE SMOOTH", "434 137 OFFCURVE", "396 133 OFFCURVE", "369 125 CURVE", "373 110 OFFCURVE", "379 101 OFFCURVE", "388 97 CURVE SMOOTH", "420 83 OFFCURVE", "469 81 OFFCURVE", "535 90 CURVE SMOOTH", "556 93 OFFCURVE", "561 70 OFFCURVE", "550 22 CURVE SMOOTH", "547 8 OFFCURVE", "542 1 OFFCURVE", "535 0 CURVE SMOOTH", "422 -18 OFFCURVE", "354 -7 OFFCURVE", "331 33 CURVE SMOOTH", "324 44 OFFCURVE", "325 72 OFFCURVE", "334 115 CURVE", "321 110 OFFCURVE", "293 98 OFFCURVE", "250 78 CURVE SMOOTH", "207 58 OFFCURVE", "173 43 OFFCURVE", "146 32 CURVE SMOOTH", "92 11 OFFCURVE", "43 0 OFFCURVE", "0 0 CURVE", "-15 30 OFFCURVE", "-15 62 OFFCURVE", "-3 97 CURVE", "4 130 OFFCURVE", "19 165 OFFCURVE", "43 203 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "172 186 OFFCURVE", "122 195 OFFCURVE", "93 185 CURVE SMOOTH", "64 175 OFFCURVE", "39 146 OFFCURVE", "18 98 CURVE", "21 95 OFFCURVE", "26 93 OFFCURVE", "35 93 CURVE SMOOTH", "86 96 OFFCURVE", "155 117 OFFCURVE", "242 156 CURVE" ); } ); width = 534; }, { anchors = ( { name = DigitBelow; position = "{278, -125}"; }, { name = DotAbove; position = "{166, 466}"; }, { name = DotBelow; position = "{278, -125}"; }, { name = HamzaAbove; position = "{166, 466}"; }, { name = HamzaBelow; position = "{278, -125}"; }, { name = TaaAbove; position = "{166, 466}"; }, { name = TaaBelow; position = "{278, 71}"; }, { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; }, { name = TwoDotsAbove; position = "{112, 466}"; }, { name = TwoDotsBelow; position = "{225, -125}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-1 134 OFFCURVE", "16 171 OFFCURVE", "41 212 CURVE SMOOTH", "87 287 OFFCURVE", "134 316 OFFCURVE", "183 298 CURVE SMOOTH", "295 257 OFFCURVE", "374 236 OFFCURVE", "422 234 CURVE SMOOTH", "428 234 OFFCURVE", "445 233 OFFCURVE", "475 233 CURVE SMOOTH", "505 233 OFFCURVE", "522 233 OFFCURVE", "524 232 CURVE SMOOTH", "538 228 OFFCURVE", "542 218 OFFCURVE", "537 201 CURVE", "516 138 LINE", "511 125 OFFCURVE", "500 119 OFFCURVE", "483 120 CURVE SMOOTH", "444 122 OFFCURVE", "412 120 OFFCURVE", "388 115 CURVE", "390 112 OFFCURVE", "392 111 OFFCURVE", "394 110 CURVE SMOOTH", "424 98 OFFCURVE", "470 96 OFFCURVE", "533 105 CURVE", "568 109 OFFCURVE", "579 81 OFFCURVE", "564 20 CURVE SMOOTH", "559 -1 OFFCURVE", "550 -13 OFFCURVE", "537 -15 CURVE SMOOTH", "414 -31 OFFCURVE", "344 -16 OFFCURVE", "329 30 CURVE SMOOTH", "323 48 OFFCURVE", "321 70 OFFCURVE", "325 96 CURVE", "310 89 OFFCURVE", "284 77 OFFCURVE", "247 60 CURVE SMOOTH", "210 43 OFFCURVE", "178 30 OFFCURVE", "151 19 CURVE SMOOTH", "95 -3 OFFCURVE", "44 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-9 -15 LINE", "-24 24 OFFCURVE", "-24 63 OFFCURVE", "-8 101 CURVE" ); }, { closed = 1; nodes = ( "129 197 OFFCURVE", "63 179 OFFCURVE", "27 108 CURVE", "83 111 OFFCURVE", "149 129 OFFCURVE", "224 162 CURVE" ); } ); width = 534; } ); }, { glyphname = aSen.init.PreYaa; layers = ( { anchors = ( { name = DigitAbove; position = "{108, 425}"; }, { name = DotAbove; position = "{108, 425}"; }, { name = DotBelow; position = "{157, -98}"; }, { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{54, 425}"; }, { name = TwoDotsBelow; position = "{108, -98}"; }, { name = VAbove; position = "{108, 425}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "256 267 OFFCURVE", "259 269 OFFCURVE", "263 265 CURVE SMOOTH", "287 241 OFFCURVE", "293 199 OFFCURVE", "281 139 CURVE SMOOTH", "276 116 OFFCURVE", "268 94 OFFCURVE", "256 74 CURVE SMOOTH", "244 54 OFFCURVE", "234 44 OFFCURVE", "226 43 CURVE SMOOTH", "180 39 OFFCURVE", "139 55 OFFCURVE", "102 93 CURVE", "70 31 OFFCURVE", "36 0 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-10 7 OFFCURVE", "-13 21 CURVE SMOOTH", "-22 66 OFFCURVE", "-17 88 OFFCURVE", "0 90 CURVE SMOOTH", "37 94 OFFCURVE", "66 106 OFFCURVE", "87 127 CURVE SMOOTH", "108 148 OFFCURVE", "125 185 OFFCURVE", "138 236 CURVE SMOOTH", "140 243 OFFCURVE", "143 246 OFFCURVE", "150 245 CURVE SMOOTH", "157 244 OFFCURVE", "159 239 OFFCURVE", "157 232 CURVE SMOOTH", "150 202 OFFCURVE", "148 183 OFFCURVE", "150 175 CURVE SMOOTH", "152 167 OFFCURVE", "162 158 OFFCURVE", "180 148 CURVE SMOOTH", "198 138 OFFCURVE", "220 132 OFFCURVE", "244 131 CURVE SMOOTH", "246 131 OFFCURVE", "246 134 OFFCURVE", "244 140 CURVE SMOOTH", "242 146 OFFCURVE", "236 155 OFFCURVE", "226 168 CURVE SMOOTH", "224 170 OFFCURVE", "224 173 OFFCURVE", "225 177 CURVE SMOOTH", "254 261 LINE SMOOTH" ); } ); width = 344; }, { anchors = ( { name = DigitAbove; position = "{108, 425}"; }, { name = DotAbove; position = "{108, 425}"; }, { name = DotBelow; position = "{157, -98}"; }, { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{54, 425}"; }, { name = TwoDotsBelow; position = "{108, -98}"; }, { name = VAbove; position = "{108, 425}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "247 289 OFFCURVE", "259 292 OFFCURVE", "273 275 CURVE SMOOTH", "297 248 OFFCURVE", "302 201 OFFCURVE", "289 136 CURVE SMOOTH", "284 111 OFFCURVE", "275 88 OFFCURVE", "261 65 CURVE SMOOTH", "247 42 OFFCURVE", "233 29 OFFCURVE", "220 28 CURVE SMOOTH", "180 24 OFFCURVE", "139 39 OFFCURVE", "99 74 CURVE", "70 15 OFFCURVE", "37 -15 OFFCURVE", "0 -15 CURVE", "-14 -15 OFFCURVE", "-23 -3 OFFCURVE", "-27 18 CURVE SMOOTH", "-38 73 OFFCURVE", "-29 102 OFFCURVE", "-1 105 CURVE", "30 108 OFFCURVE", "57 120 OFFCURVE", "81 140 CURVE SMOOTH", "105 160 OFFCURVE", "122 193 OFFCURVE", "133 240 CURVE SMOOTH", "136 251 OFFCURVE", "142 255 OFFCURVE", "152 253 CURVE SMOOTH", "162 251 OFFCURVE", "165 245 OFFCURVE", "162 234 CURVE SMOOTH", "156 207 OFFCURVE", "153 190 OFFCURVE", "154 184 CURVE", "157 177 OFFCURVE", "167 169 OFFCURVE", "182 161 CURVE SMOOTH", "197 153 OFFCURVE", "213 148 OFFCURVE", "232 144 CURVE", "230 151 OFFCURVE", "227 157 OFFCURVE", "220 163 CURVE SMOOTH", "213 169 OFFCURVE", "211 177 OFFCURVE", "214 185 CURVE SMOOTH", "240 266 LINE SMOOTH" ); } ); width = 344; } ); }, { glyphname = aSen.medi.PreYaa; layers = ( { anchors = ( { name = DigitAbove; position = "{110, 379}"; }, { name = DotAbove; position = "{110, 379}"; }, { name = DotBelow; position = "{146, -146}"; }, { name = HamzaAbove; position = "{110, 379}"; }, { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; }, { name = TwoDotsAbove; position = "{56, 379}"; }, { name = TwoDotsBelow; position = "{98, -127}"; }, { name = VAbove; position = "{110, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "50 90 OFFCURVE", "85 101 OFFCURVE", "104 122 CURVE", "115 135 OFFCURVE", "125 156 OFFCURVE", "134 183 CURVE SMOOTH", "137 191 OFFCURVE", "140 196 OFFCURVE", "146 198 CURVE SMOOTH", "152 200 OFFCURVE", "156 199 OFFCURVE", "160 194 CURVE SMOOTH", "164 189 OFFCURVE", "165 182 OFFCURVE", "162 174 CURVE SMOOTH", "154 152 OFFCURVE", "151 137 OFFCURVE", "152 129 CURVE SMOOTH", "154 114 OFFCURVE", "165 103 OFFCURVE", "188 98 CURVE SMOOTH", "211 93 OFFCURVE", "227 95 OFFCURVE", "238 106 CURVE SMOOTH", "251 119 OFFCURVE", "262 147 OFFCURVE", "272 189 CURVE SMOOTH", "273 195 OFFCURVE", "278 197 OFFCURVE", "285 197 CURVE SMOOTH", "292 197 OFFCURVE", "297 195 OFFCURVE", "299 189 CURVE SMOOTH", "322 127 OFFCURVE", "349 94 OFFCURVE", "381 90 CURVE SMOOTH", "389 89 OFFCURVE", "394 79 OFFCURVE", "398 58 CURVE SMOOTH", "401 43 OFFCURVE", "400 29 OFFCURVE", "396 17 CURVE SMOOTH", "393 6 OFFCURVE", "388 0 OFFCURVE", "381 0 CURVE SMOOTH", "335 0 OFFCURVE", "300 33 OFFCURVE", "275 99 CURVE SMOOTH", "273 104 OFFCURVE", "272 104 OFFCURVE", "270 99 CURVE SMOOTH", "258 59 OFFCURVE", "246 31 OFFCURVE", "235 16 CURVE SMOOTH", "224 1 OFFCURVE", "211 -6 OFFCURVE", "196 -7 CURVE SMOOTH", "149 -9 OFFCURVE", "114 9 OFFCURVE", "90 46 CURVE", "59 16 OFFCURVE", "29 1 OFFCURVE", "0 0 CURVE SMOOTH", "-8 0 OFFCURVE", "-14 7 OFFCURVE", "-19 22 CURVE SMOOTH", "-33 67 OFFCURVE", "-26 90 OFFCURVE", "0 90 CURVE SMOOTH" ); } ); width = 380; }, { anchors = ( { name = DigitAbove; position = "{110, 379}"; }, { name = DotAbove; position = "{110, 379}"; }, { name = DotBelow; position = "{146, -146}"; }, { name = HamzaAbove; position = "{110, 379}"; }, { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; }, { name = TwoDotsAbove; position = "{56, 379}"; }, { name = TwoDotsBelow; position = "{98, -127}"; }, { name = VAbove; position = "{110, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "53 105 OFFCURVE", "88 114 OFFCURVE", "103 132 CURVE SMOOTH", "113 143 OFFCURVE", "121 162 OFFCURVE", "129 187 CURVE SMOOTH", "135 205 OFFCURVE", "143 212 OFFCURVE", "156 208 CURVE SMOOTH", "169 204 OFFCURVE", "173 193 OFFCURVE", "167 176 CURVE SMOOTH", "161 159 OFFCURVE", "158 146 OFFCURVE", "159 139 CURVE SMOOTH", "160 132 OFFCURVE", "172 125 OFFCURVE", "193 118 CURVE SMOOTH", "214 111 OFFCURVE", "228 110 OFFCURVE", "235 117 CURVE", "248 131 OFFCURVE", "259 155 OFFCURVE", "266 192 CURVE SMOOTH", "268 203 OFFCURVE", "274 209 OFFCURVE", "284 209 CURVE SMOOTH", "294 209 OFFCURVE", "301 204 OFFCURVE", "305 194 CURVE SMOOTH", "326 138 OFFCURVE", "352 108 OFFCURVE", "383 105 CURVE", "398 103 OFFCURVE", "408 88 OFFCURVE", "413 60 CURVE SMOOTH", "416 42 OFFCURVE", "415 27 OFFCURVE", "411 14 CURVE SMOOTH", "405 -5 OFFCURVE", "395 -15 OFFCURVE", "381 -15 CURVE SMOOTH", "335 -14 OFFCURVE", "299 17 OFFCURVE", "274 78 CURVE", "260 14 OFFCURVE", "235 -19 OFFCURVE", "197 -21 CURVE", "151 -23 OFFCURVE", "114 -8 OFFCURVE", "87 24 CURVE", "58 -1 OFFCURVE", "29 -14 OFFCURVE", "0 -15 CURVE", "-15 -15 OFFCURVE", "-25 -6 OFFCURVE", "-31 14 CURVE SMOOTH", "-37 34 OFFCURVE", "-40 51 OFFCURVE", "-40 67 CURVE SMOOTH", "-40 83 OFFCURVE", "-33 94 OFFCURVE", "-18 101 CURVE SMOOTH", "-12 104 OFFCURVE", "-7 105 OFFCURVE", "0 105 CURVE SMOOTH" ); } ); width = 380; } ); }, { glyphname = aSad.init.PreYaa; layers = ( { anchors = ( { name = DotAbove; position = "{146, 488}"; }, { name = DotBelow; position = "{244, -146}"; }, { name = HamzaAbove; position = "{146, 488}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; }, { name = TwoDotsAbove; position = "{92, 488}"; }, { name = TwoDotsBelow; position = "{195, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "299 330 OFFCURVE", "328 340 OFFCURVE", "357 341 CURVE SMOOTH", "386 342 OFFCURVE", "416 327 OFFCURVE", "448 296 CURVE SMOOTH", "464 281 OFFCURVE", "471 264 OFFCURVE", "469 245 CURVE SMOOTH", "467 226 OFFCURVE", "459 200 OFFCURVE", "445 168 CURVE SMOOTH", "431 136 OFFCURVE", "420 116 OFFCURVE", "413 110 CURVE SMOOTH", "341 44 OFFCURVE", "221 6 OFFCURVE", "50 -2 CURVE", "48 -6 OFFCURVE", "44 -14 OFFCURVE", "40 -27 CURVE SMOOTH", "36 -40 OFFCURVE", "32 -49 OFFCURVE", "29 -56 CURVE SMOOTH", "26 -63 OFFCURVE", "21 -66 OFFCURVE", "14 -63 CURVE SMOOTH", "3 -59 OFFCURVE", "3 -37 OFFCURVE", "15 0 CURVE", "13 0 OFFCURVE", "8 0 OFFCURVE", "0 0 CURVE SMOOTH", "-10 0 OFFCURVE", "-17 8 OFFCURVE", "-22 23 CURVE SMOOTH", "-36 69 OFFCURVE", "-29 91 OFFCURVE", "0 90 CURVE SMOOTH", "25 89 OFFCURVE", "45 90 OFFCURVE", "60 93 CURVE", "129 187 OFFCURVE", "199 260 OFFCURVE", "272 311 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "350 224 OFFCURVE", "309 236 OFFCURVE", "276 228 CURVE", "223 215 OFFCURVE", "166 170 OFFCURVE", "105 94 CURVE", "251 115 OFFCURVE", "349 145 OFFCURVE", "400 184 CURVE SMOOTH", "404 187 OFFCURVE", "404 190 OFFCURVE", "399 193 CURVE" ); } ); width = 533; }, { anchors = ( { name = DotAbove; position = "{146, 488}"; }, { name = DotBelow; position = "{244, -146}"; }, { name = HamzaAbove; position = "{146, 488}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; }, { name = TwoDotsAbove; position = "{92, 488}"; }, { name = TwoDotsBelow; position = "{195, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "180 270 OFFCURVE", "277 353 OFFCURVE", "354 355 CURVE SMOOTH", "384 356 OFFCURVE", "416 340 OFFCURVE", "451 307 CURVE", "470 288 OFFCURVE", "479 268 OFFCURVE", "476 246 CURVE SMOOTH", "473 224 OFFCURVE", "463 196 OFFCURVE", "448 162 CURVE SMOOTH", "433 128 OFFCURVE", "421 107 OFFCURVE", "413 100 CURVE SMOOTH", "340 33 OFFCURVE", "219 -6 OFFCURVE", "50 -16 CURVE", "43 -40 OFFCURVE", "37 -56 OFFCURVE", "32 -64 CURVE", "24 -72 OFFCURVE", "16 -74 OFFCURVE", "7 -69 CURVE SMOOTH", "-2 -64 OFFCURVE", "-3 -46 OFFCURVE", "5 -14 CURVE", "-17 -11 OFFCURVE", "-30 -1 OFFCURVE", "-36 18 CURVE SMOOTH", "-54 77 OFFCURVE", "-41 106 OFFCURVE", "4 105 CURVE SMOOTH", "30 105 OFFCURVE", "51 105 OFFCURVE", "66 107 CURVE" ); }, { closed = 1; nodes = ( "346 212 OFFCURVE", "309 220 OFFCURVE", "279 213 CURVE SMOOTH", "224 200 OFFCURVE", "173 167 OFFCURVE", "126 113 CURVE", "258 132 OFFCURVE", "346 157 OFFCURVE", "390 188 CURVE" ); } ); width = 533; } ); }, { glyphname = aSad.medi.PreYaa; layers = ( { anchors = ( { name = DotAbove; position = "{134, 479}"; }, { name = DotBelow; position = "{244, -171}"; }, { name = HamzaAbove; position = "{134, 479}"; }, { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; }, { name = TwoDotsAbove; position = "{80, 479}"; }, { name = TwoDotsBelow; position = "{195, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "221 5 OFFCURVE", "138 -4 OFFCURVE", "36 -1 CURVE", "34 -5 OFFCURVE", "30 -13 OFFCURVE", "26 -26 CURVE SMOOTH", "22 -39 OFFCURVE", "18 -48 OFFCURVE", "15 -55 CURVE SMOOTH", "12 -62 OFFCURVE", "7 -64 OFFCURVE", "1 -62 CURVE SMOOTH", "-5 -60 OFFCURVE", "-8 -54 OFFCURVE", "-8 -45 CURVE SMOOTH", "-8 -36 OFFCURVE", "-7 -26 OFFCURVE", "-4 -16 CURVE SMOOTH", "-1 -6 OFFCURVE", "0 0 OFFCURVE", "0 0 CURVE SMOOTH", "-14 6 OFFCURVE", "-23 16 OFFCURVE", "-27 31 CURVE SMOOTH", "-31 46 OFFCURVE", "-31 60 OFFCURVE", "-26 73 CURVE SMOOTH", "-21 86 OFFCURVE", "-12 92 OFFCURVE", "0 90 CURVE SMOOTH", "20 87 OFFCURVE", "33 87 OFFCURVE", "41 88 CURVE", "113 182 OFFCURVE", "186 253 OFFCURVE", "260 300 CURVE SMOOTH", "293 321 OFFCURVE", "319 331 OFFCURVE", "340 329 CURVE SMOOTH", "372 326 OFFCURVE", "404 312 OFFCURVE", "437 285 CURVE SMOOTH", "453 272 OFFCURVE", "461 255 OFFCURVE", "459 235 CURVE SMOOTH", "457 215 OFFCURVE", "449 189 OFFCURVE", "435 157 CURVE SMOOTH", "421 125 OFFCURVE", "408 105 OFFCURVE", "399 96 CURVE", "440 89 OFFCURVE", "476 87 OFFCURVE", "510 90 CURVE SMOOTH", "519 91 OFFCURVE", "525 86 OFFCURVE", "529 73 CURVE SMOOTH", "536 50 OFFCURVE", "534 30 OFFCURVE", "523 12 CURVE SMOOTH", "518 5 OFFCURVE", "514 0 OFFCURVE", "510 0 CURVE SMOOTH", "437 -6 OFFCURVE", "362 3 OFFCURVE", "285 26 CURVE" ); }, { closed = 1; nodes = ( "370 194 OFFCURVE", "349 204 OFFCURVE", "324 212 CURVE SMOOTH", "299 220 OFFCURVE", "280 221 OFFCURVE", "265 216 CURVE SMOOTH", "200 195 OFFCURVE", "139 152 OFFCURVE", "82 84 CURVE", "134 86 OFFCURVE", "193 96 OFFCURVE", "259 115 CURVE SMOOTH", "325 134 OFFCURVE", "369 153 OFFCURVE", "389 172 CURVE SMOOTH", "393 176 OFFCURVE", "392 179 OFFCURVE", "388 182 CURVE SMOOTH" ); } ); width = 510; }, { anchors = ( { name = DotAbove; position = "{134, 479}"; }, { name = DotBelow; position = "{244, -171}"; }, { name = HamzaAbove; position = "{134, 479}"; }, { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; }, { name = TwoDotsAbove; position = "{80, 479}"; }, { name = TwoDotsBelow; position = "{195, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-19 1 OFFCURVE", "-29 14 OFFCURVE", "-37 30 CURVE SMOOTH", "-45 46 OFFCURVE", "-46 60 OFFCURVE", "-42 71 CURVE SMOOTH", "-38 82 OFFCURVE", "-32 90 OFFCURVE", "-26 97 CURVE SMOOTH", "-20 104 OFFCURVE", "-8 107 OFFCURVE", "10 105 CURVE SMOOTH", "28 103 OFFCURVE", "41 102 OFFCURVE", "48 102 CURVE", "111 189 OFFCURVE", "179 259 OFFCURVE", "252 312 CURVE SMOOTH", "285 336 OFFCURVE", "315 346 OFFCURVE", "344 343 CURVE SMOOTH", "373 340 OFFCURVE", "405 325 OFFCURVE", "439 296 CURVE SMOOTH", "459 279 OFFCURVE", "468 259 OFFCURVE", "466 236 CURVE SMOOTH", "464 213 OFFCURVE", "458 188 OFFCURVE", "446 162 CURVE SMOOTH", "434 136 OFFCURVE", "425 118 OFFCURVE", "418 107 CURVE", "448 103 OFFCURVE", "473 102 OFFCURVE", "490 103 CURVE SMOOTH", "507 104 OFFCURVE", "517 105 OFFCURVE", "521 104 CURVE SMOOTH", "531 100 OFFCURVE", "538 91 OFFCURVE", "543 77 CURVE", "551 50 OFFCURVE", "549 25 OFFCURVE", "536 4 CURVE", "529 -7 OFFCURVE", "520 -14 OFFCURVE", "511 -15 CURVE SMOOTH", "438 -21 OFFCURVE", "362 -12 OFFCURVE", "285 11 CURVE", "222 -9 OFFCURVE", "139 -18 OFFCURVE", "36 -16 CURVE", "26 -43 OFFCURVE", "21 -56 OFFCURVE", "21 -57 CURVE SMOOTH", "16 -67 OFFCURVE", "9 -71 OFFCURVE", "0 -69 CURVE", "-14 -64 OFFCURVE", "-16 -43 OFFCURVE", "-7 -7 CURVE" ); }, { closed = 1; nodes = ( "340 202 OFFCURVE", "302 210 OFFCURVE", "270 202 CURVE SMOOTH", "203 185 OFFCURVE", "146 151 OFFCURVE", "101 100 CURVE", "143 104 OFFCURVE", "196 114 OFFCURVE", "259 130 CURVE SMOOTH", "322 146 OFFCURVE", "364 162 OFFCURVE", "386 177 CURVE" ); } ); width = 510; } ); }, { glyphname = aBaa.init.High; layers = ( { anchors = ( { name = DigitAbove; position = "{46, 439}"; }, { name = DigitBelow; position = "{107, -171}"; }, { name = DotAbove; position = "{46, 439}"; }, { name = DotBelow; position = "{107, -171}"; }, { name = DotBelowAlt; position = "{107, -366}"; }, { name = HamzaAbove; position = "{71, 391}"; }, { name = HamzaBelow; position = "{107, -171}"; }, { name = RingBelow; position = "{59, 59}"; }, { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{20, 391}"; }, { name = TwoDotsBelow; position = "{83, -122}"; }, { name = TwoDotsBelowAlt; position = "{83, -366}"; }, { name = VAbove; position = "{71, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "52 260 OFFCURVE", "56 262 OFFCURVE", "62 255 CURVE SMOOTH", "72 243 OFFCURVE", "79 220 OFFCURVE", "84 188 CURVE SMOOTH", "89 156 OFFCURVE", "88 128 OFFCURVE", "83 104 CURVE SMOOTH", "70 42 OFFCURVE", "43 7 OFFCURVE", "0 0 CURVE SMOOTH", "-8 -1 OFFCURVE", "-13 14 OFFCURVE", "-13 45 CURVE SMOOTH", "-13 76 OFFCURVE", "-8 91 OFFCURVE", "0 90 CURVE", "15 88 OFFCURVE", "32 89 OFFCURVE", "53 93 CURVE", "48 121 OFFCURVE", "42 141 OFFCURVE", "35 152 CURVE SMOOTH", "28 163 OFFCURVE", "26 172 OFFCURVE", "27 177 CURVE SMOOTH", "49 250 LINE SMOOTH" ); } ); width = 147; }, { anchors = ( { name = DigitAbove; position = "{46, 439}"; }, { name = DigitBelow; position = "{107, -171}"; }, { name = DotAbove; position = "{46, 439}"; }, { name = DotBelow; position = "{107, -171}"; }, { name = DotBelowAlt; position = "{107, -366}"; }, { name = HamzaAbove; position = "{71, 391}"; }, { name = HamzaBelow; position = "{107, -171}"; }, { name = RingBelow; position = "{59, 59}"; }, { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{20, 391}"; }, { name = TwoDotsBelow; position = "{83, -122}"; }, { name = TwoDotsBelowAlt; position = "{83, -366}"; }, { name = VAbove; position = "{71, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "37 261 OFFCURVE", "40 266 OFFCURVE", "43 269 CURVE SMOOTH", "53 278 OFFCURVE", "62 276 OFFCURVE", "73 264 CURVE", "85 249 OFFCURVE", "93 225 OFFCURVE", "98 191 CURVE SMOOTH", "103 157 OFFCURVE", "104 132 OFFCURVE", "101 115 CURVE SMOOTH", "98 98 OFFCURVE", "95 87 OFFCURVE", "93 80 CURVE SMOOTH", "77 25 OFFCURVE", "46 -6 OFFCURVE", "2 -14 CURVE SMOOTH", "-8 -16 OFFCURVE", "-15 -14 OFFCURVE", "-18 -8 CURVE SMOOTH", "-23 2 OFFCURVE", "-25 11 OFFCURVE", "-26 19 CURVE SMOOTH", "-30 79 OFFCURVE", "-21 108 OFFCURVE", "2 105 CURVE SMOOTH", "12 104 OFFCURVE", "23 104 OFFCURVE", "35 105 CURVE", "31 124 OFFCURVE", "26 139 OFFCURVE", "20 150 CURVE SMOOTH", "14 161 OFFCURVE", "11 172 OFFCURVE", "13 181 CURVE", "35 255 LINE SMOOTH" ); } ); width = 147; } ); }, { glyphname = "dotabove-ar"; layers = ( { anchors = ( { name = MarkDotAbove; position = "{-24, 195}"; }, { name = TashkilAboveDot; position = "{-24, 195}"; }, { name = _DotAbove; position = "{0, 68}"; }, { name = _DotHmaza; position = "{0, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-14 130 OFFCURVE", "-12 130 OFFCURVE", "-8 129 CURVE SMOOTH", "18 120 OFFCURVE", "42 106 OFFCURVE", "63 87 CURVE SMOOTH", "66 84 OFFCURVE", "66 82 OFFCURVE", "64 79 CURVE SMOOTH", "17 3 LINE SMOOTH", "15 0 OFFCURVE", "12 0 OFFCURVE", "7 4 CURVE SMOOTH", "2 8 OFFCURVE", "-21 23 OFFCURVE", "-63 48 CURVE SMOOTH", "-66 50 OFFCURVE", "-67 52 OFFCURVE", "-65 54 CURVE SMOOTH", "-16 127 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = MarkDotAbove; position = "{-24, 195}"; }, { name = TashkilAboveDot; position = "{-24, 195}"; }, { name = _DotAbove; position = "{0, 68}"; }, { name = _DotHmaza; position = "{0, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-18 137 OFFCURVE", "-12 138 OFFCURVE", "-5 136 CURVE", "22 126 OFFCURVE", "47 112 OFFCURVE", "68 93 CURVE", "74 87 OFFCURVE", "75 82 OFFCURVE", "71 75 CURVE", "23 -1 LINE", "18 -8 OFFCURVE", "12 -8 OFFCURVE", "5 -3 CURVE SMOOTH", "-2 2 OFFCURVE", "-26 17 OFFCURVE", "-67 42 CURVE SMOOTH", "-74 46 OFFCURVE", "-76 52 OFFCURVE", "-71 59 CURVE SMOOTH", "-22 131 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "twodotshorizontalabove-ar"; layers = ( { anchors = ( { name = MarkDotAbove; position = "{-10, 220}"; }, { name = TashkilAboveDot; position = "{-10, 220}"; }, { name = _DotHmaza; position = "{0, 0}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "36 152 OFFCURVE", "38 152 OFFCURVE", "42 151 CURVE SMOOTH", "68 142 OFFCURVE", "92 129 OFFCURVE", "113 110 CURVE SMOOTH", "116 107 OFFCURVE", "116 104 OFFCURVE", "114 101 CURVE SMOOTH", "66 25 LINE SMOOTH", "64 22 OFFCURVE", "62 23 OFFCURVE", "57 27 CURVE SMOOTH", "53 31 OFFCURVE", "34 42 OFFCURVE", "0 62 CURVE", "-38 3 LINE SMOOTH", "-40 0 OFFCURVE", "-43 0 OFFCURVE", "-48 4 CURVE SMOOTH", "-53 8 OFFCURVE", "-76 23 OFFCURVE", "-118 48 CURVE SMOOTH", "-121 50 OFFCURVE", "-121 52 OFFCURVE", "-119 54 CURVE SMOOTH", "-70 127 LINE SMOOTH", "-68 130 OFFCURVE", "-66 130 OFFCURVE", "-62 129 CURVE SMOOTH", "-40 122 OFFCURVE", "-20 110 OFFCURVE", "-2 96 CURVE", "34 149 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = MarkDotAbove; position = "{-10, 220}"; }, { name = TashkilAboveDot; position = "{-10, 220}"; }, { name = _DotHmaza; position = "{0, 0}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "31 159 OFFCURVE", "37 160 OFFCURVE", "44 158 CURVE", "71 148 OFFCURVE", "97 134 OFFCURVE", "118 115 CURVE", "124 109 OFFCURVE", "125 104 OFFCURVE", "121 97 CURVE", "73 21 LINE", "68 14 OFFCURVE", "61 14 OFFCURVE", "55 19 CURVE SMOOTH", "49 24 OFFCURVE", "31 35 OFFCURVE", "2 53 CURVE", "-31 -1 LINE", "-36 -8 OFFCURVE", "-42 -8 OFFCURVE", "-49 -3 CURVE SMOOTH", "-56 2 OFFCURVE", "-81 17 OFFCURVE", "-122 42 CURVE SMOOTH", "-129 46 OFFCURVE", "-130 52 OFFCURVE", "-125 59 CURVE SMOOTH", "-77 131 LINE SMOOTH", "-73 137 OFFCURVE", "-67 138 OFFCURVE", "-60 136 CURVE", "-40 129 OFFCURVE", "-21 119 OFFCURVE", "-4 107 CURVE", "27 153 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "threedotsupabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{-58, 321}"; }, { name = _DotHmaza; position = "{0, 0}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-37 256 OFFCURVE", "-35 256 OFFCURVE", "-31 255 CURVE SMOOTH", "-5 246 OFFCURVE", "19 233 OFFCURVE", "40 214 CURVE SMOOTH", "43 211 OFFCURVE", "44 208 OFFCURVE", "42 205 CURVE SMOOTH", "-6 129 LINE SMOOTH", "-8 126 OFFCURVE", "-11 127 OFFCURVE", "-16 131 CURVE SMOOTH", "-21 135 OFFCURVE", "-44 150 OFFCURVE", "-86 175 CURVE SMOOTH", "-89 177 OFFCURVE", "-90 179 OFFCURVE", "-88 181 CURVE SMOOTH", "-39 253 LINE SMOOTH" ); }, { closed = 1; nodes = ( "32 152 OFFCURVE", "34 152 OFFCURVE", "38 151 CURVE SMOOTH", "64 142 OFFCURVE", "88 129 OFFCURVE", "109 110 CURVE SMOOTH", "112 107 OFFCURVE", "112 104 OFFCURVE", "110 101 CURVE SMOOTH", "62 25 LINE SMOOTH", "60 22 OFFCURVE", "58 23 OFFCURVE", "53 27 CURVE SMOOTH", "49 30 OFFCURVE", "32 40 OFFCURVE", "3 58 CURVE", "-32 2 LINE SMOOTH", "-34 -1 OFFCURVE", "-37 0 OFFCURVE", "-42 4 CURVE SMOOTH", "-47 8 OFFCURVE", "-70 23 OFFCURVE", "-112 48 CURVE SMOOTH", "-115 50 OFFCURVE", "-115 52 OFFCURVE", "-113 54 CURVE SMOOTH", "-64 126 LINE SMOOTH", "-62 129 OFFCURVE", "-60 129 OFFCURVE", "-56 128 CURVE SMOOTH", "-37 121 OFFCURVE", "-19 113 OFFCURVE", "-3 101 CURVE", "30 149 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{-58, 321}"; }, { name = _DotHmaza; position = "{0, 0}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-43 271 OFFCURVE", "-37 272 OFFCURVE", "-30 270 CURVE", "-3 260 OFFCURVE", "22 246 OFFCURVE", "43 227 CURVE", "49 221 OFFCURVE", "50 216 OFFCURVE", "46 209 CURVE", "-2 133 LINE", "-7 126 OFFCURVE", "-13 126 OFFCURVE", "-20 131 CURVE SMOOTH", "-27 136 OFFCURVE", "-51 151 OFFCURVE", "-92 176 CURVE SMOOTH", "-99 180 OFFCURVE", "-101 185 OFFCURVE", "-96 192 CURVE SMOOTH", "-47 265 LINE SMOOTH" ); }, { closed = 1; nodes = ( "27 159 OFFCURVE", "34 160 OFFCURVE", "41 158 CURVE", "68 148 OFFCURVE", "93 134 OFFCURVE", "114 115 CURVE", "120 109 OFFCURVE", "121 104 OFFCURVE", "117 97 CURVE", "69 21 LINE SMOOTH", "64 14 OFFCURVE", "58 13 OFFCURVE", "52 18 CURVE SMOOTH", "46 23 OFFCURVE", "30 33 OFFCURVE", "6 48 CURVE", "-25 -1 LINE", "-30 -8 OFFCURVE", "-36 -9 OFFCURVE", "-43 -4 CURVE SMOOTH", "-50 1 OFFCURVE", "-75 17 OFFCURVE", "-116 42 CURVE SMOOTH", "-123 46 OFFCURVE", "-124 51 OFFCURVE", "-119 58 CURVE SMOOTH", "-71 130 LINE", "-63 141 OFFCURVE", "-41 135 OFFCURVE", "-5 111 CURVE", "23 153 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "dotbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{15, -68}"; }, { name = _DotBelow; position = "{0, 68}"; } ); components = ( { name = "dotabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{15, -68}"; }, { name = _DotBelow; position = "{0, 68}"; } ); components = ( { name = "dotabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "twodotshorizontalbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{10, -93}"; }, { name = _MarkDotBelow; position = "{0, 128}"; }, { name = _TwoDotsBelow; position = "{-54, 68}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{10, -93}"; }, { name = _MarkDotBelow; position = "{0, 128}"; }, { name = _TwoDotsBelow; position = "{-54, 68}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "threedotsupbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -196}"; }, { name = _TwoDotsBelow; position = "{-54, 68}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -196}"; }, { name = _TwoDotsBelow; position = "{-54, 68}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = aKaf.isol.alt; layers = ( { anchors = ( { name = TashkilAbove; position = "{541, 801}"; }, { name = TashkilBelow; position = "{1373, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "469 74 OFFCURVE", "712 75 OFFCURVE", "991 95 CURVE SMOOTH", "1125 105 OFFCURVE", "1382 130 OFFCURVE", "1763 170 CURVE SMOOTH", "1770 171 OFFCURVE", "1771 175 OFFCURVE", "1767 182 CURVE SMOOTH", "1743 227 OFFCURVE", "1711 251 OFFCURVE", "1672 255 CURVE SMOOTH", "1615 261 OFFCURVE", "1519 257 OFFCURVE", "1383 244 CURVE SMOOTH", "1247 231 OFFCURVE", "1096 219 OFFCURVE", "932 207 CURVE SMOOTH", "768 195 OFFCURVE", "617 195 OFFCURVE", "479 207 CURVE SMOOTH", "405 213 OFFCURVE", "362 229 OFFCURVE", "349 257 CURVE SMOOTH", "344 267 OFFCURVE", "345 277 OFFCURVE", "350 287 CURVE SMOOTH", "368 324 OFFCURVE", "387 354 OFFCURVE", "408 376 CURVE SMOOTH", "518 487 OFFCURVE", "671 571 OFFCURVE", "869 628 CURVE", "880 631 OFFCURVE", "885 628 OFFCURVE", "883 620 CURVE SMOOTH", "869 548 LINE", "867 542 OFFCURVE", "862 538 OFFCURVE", "855 536 CURVE SMOOTH", "765 511 OFFCURVE", "681 479 OFFCURVE", "602 441 CURVE SMOOTH", "523 403 OFFCURVE", "462 364 OFFCURVE", "419 324 CURVE SMOOTH", "415 320 OFFCURVE", "414 317 OFFCURVE", "417 315 CURVE SMOOTH", "452 291 OFFCURVE", "569 279 OFFCURVE", "769 280 CURVE SMOOTH", "905 281 OFFCURVE", "1072 290 OFFCURVE", "1267 310 CURVE SMOOTH", "1462 330 OFFCURVE", "1599 339 OFFCURVE", "1678 338 CURVE SMOOTH", "1723 337 OFFCURVE", "1760 324 OFFCURVE", "1789 298 CURVE SMOOTH", "1818 272 OFFCURVE", "1833 238 OFFCURVE", "1836 198 CURVE", "1837 186 OFFCURVE", "1827 163 OFFCURVE", "1804 129 CURVE SMOOTH", "1781 95 OFFCURVE", "1762 79 OFFCURVE", "1745 78 CURVE", "1697 74 OFFCURVE", "1560 62 OFFCURVE", "1335 42 CURVE SMOOTH", "1110 21 OFFCURVE", "984 10 OFFCURVE", "957 8 CURVE SMOOTH", "559 -18 OFFCURVE", "294 -16 OFFCURVE", "162 14 CURVE SMOOTH", "145 18 OFFCURVE", "127 29 OFFCURVE", "107 47 CURVE SMOOTH", "87 65 OFFCURVE", "74 85 OFFCURVE", "66 107 CURVE SMOOTH", "60 122 OFFCURVE", "63 128 OFFCURVE", "74 125 CURVE SMOOTH", "131 108 OFFCURVE", "194 97 OFFCURVE", "262 91 CURVE SMOOTH" ); } ); width = 1899; }, { anchors = ( { name = TashkilAbove; position = "{541, 801}"; }, { name = TashkilBelow; position = "{1373, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "469 88 OFFCURVE", "712 90 OFFCURVE", "990 110 CURVE SMOOTH", "1123 120 OFFCURVE", "1377 144 OFFCURVE", "1750 183 CURVE", "1729 218 OFFCURVE", "1702 237 OFFCURVE", "1671 240 CURVE SMOOTH", "1615 246 OFFCURVE", "1519 242 OFFCURVE", "1383 229 CURVE SMOOTH", "1247 216 OFFCURVE", "1098 204 OFFCURVE", "933 192 CURVE SMOOTH", "768 180 OFFCURVE", "616 180 OFFCURVE", "478 192 CURVE", "399 198 OFFCURVE", "352 218 OFFCURVE", "336 251 CURVE", "330 265 OFFCURVE", "329 279 OFFCURVE", "336 293 CURVE SMOOTH", "354 332 OFFCURVE", "375 363 OFFCURVE", "397 386 CURVE", "509 499 OFFCURVE", "665 584 OFFCURVE", "865 642 CURVE", "884 647 OFFCURVE", "895 642 OFFCURVE", "898 625 CURVE SMOOTH", "898 622 OFFCURVE", "898 619 OFFCURVE", "898 617 CURVE SMOOTH", "883 545 LINE", "880 533 OFFCURVE", "872 526 OFFCURVE", "859 522 CURVE SMOOTH", "770 497 OFFCURVE", "689 466 OFFCURVE", "613 430 CURVE SMOOTH", "537 394 OFFCURVE", "478 357 OFFCURVE", "437 321 CURVE", "483 302 OFFCURVE", "584 293 OFFCURVE", "740 294 CURVE SMOOTH", "896 295 OFFCURVE", "1071 305 OFFCURVE", "1266 325 CURVE SMOOTH", "1461 345 OFFCURVE", "1599 354 OFFCURVE", "1678 353 CURVE", "1727 352 OFFCURVE", "1767 337 OFFCURVE", "1798 309 CURVE", "1829 280 OFFCURVE", "1848 244 OFFCURVE", "1851 200 CURVE SMOOTH", "1852 184 OFFCURVE", "1841 158 OFFCURVE", "1816 121 CURVE SMOOTH", "1791 84 OFFCURVE", "1768 65 OFFCURVE", "1746 63 CURVE SMOOTH", "1697 59 OFFCURVE", "1560 46 OFFCURVE", "1336 27 CURVE", "1111 6 OFFCURVE", "985 -5 OFFCURVE", "958 -7 CURVE SMOOTH", "558 -33 OFFCURVE", "292 -31 OFFCURVE", "159 -1 CURVE SMOOTH", "139 4 OFFCURVE", "118 16 OFFCURVE", "97 36 CURVE SMOOTH", "76 56 OFFCURVE", "61 78 OFFCURVE", "52 102 CURVE SMOOTH", "49 112 OFFCURVE", "48 120 OFFCURVE", "49 126 CURVE SMOOTH", "53 139 OFFCURVE", "62 143 OFFCURVE", "78 139 CURVE", "135 122 OFFCURVE", "197 110 OFFCURVE", "263 105 CURVE SMOOTH" ); } ); width = 1899; } ); }, { glyphname = aKaf.medi.alt; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{1093, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "208 78 OFFCURVE", "449 86 OFFCURVE", "722 112 CURVE SMOOTH", "976 136 OFFCURVE", "1232 167 OFFCURVE", "1492 204 CURVE SMOOTH", "1499 205 OFFCURVE", "1500 209 OFFCURVE", "1496 216 CURVE SMOOTH", "1471 260 OFFCURVE", "1438 284 OFFCURVE", "1399 287 CURVE SMOOTH", "1342 292 OFFCURVE", "1246 286 OFFCURVE", "1111 270 CURVE SMOOTH", "976 254 OFFCURVE", "826 238 OFFCURVE", "663 222 CURVE SMOOTH", "503 207 OFFCURVE", "351 203 OFFCURVE", "208 211 CURVE SMOOTH", "134 215 OFFCURVE", "91 232 OFFCURVE", "77 259 CURVE SMOOTH", "72 269 OFFCURVE", "72 279 OFFCURVE", "77 289 CURVE SMOOTH", "94 327 OFFCURVE", "111 357 OFFCURVE", "132 379 CURVE SMOOTH", "239 493 OFFCURVE", "391 580 OFFCURVE", "588 642 CURVE", "599 645 OFFCURVE", "605 642 OFFCURVE", "603 633 CURVE SMOOTH", "589 562 LINE", "587 556 OFFCURVE", "584 551 OFFCURVE", "577 549 CURVE SMOOTH", "488 522 OFFCURVE", "404 489 OFFCURVE", "326 449 CURVE SMOOTH", "253 412 OFFCURVE", "193 372 OFFCURVE", "145 328 CURVE SMOOTH", "141 324 OFFCURVE", "141 320 OFFCURVE", "144 318 CURVE SMOOTH", "179 294 OFFCURVE", "296 285 OFFCURVE", "496 291 CURVE SMOOTH", "633 295 OFFCURVE", "798 309 OFFCURVE", "993 333 CURVE SMOOTH", "1192 357 OFFCURVE", "1328 370 OFFCURVE", "1403 371 CURVE SMOOTH", "1448 371 OFFCURVE", "1486 359 OFFCURVE", "1515 333 CURVE SMOOTH", "1544 307 OFFCURVE", "1560 274 OFFCURVE", "1564 234 CURVE", "1566 218 OFFCURVE", "1552 189 OFFCURVE", "1522 148 CURVE", "1513 114 OFFCURVE", "1527 96 OFFCURVE", "1563 93 CURVE SMOOTH", "1577 92 OFFCURVE", "1597 91 OFFCURVE", "1621 90 CURVE SMOOTH", "1634 90 OFFCURVE", "1641 82 OFFCURVE", "1644 67 CURVE SMOOTH", "1647 52 OFFCURVE", "1646 37 OFFCURVE", "1641 22 CURVE SMOOTH", "1636 7 OFFCURVE", "1629 0 OFFCURVE", "1621 0 CURVE SMOOTH", "1572 0 OFFCURVE", "1539 2 OFFCURVE", "1521 6 CURVE SMOOTH", "1471 18 OFFCURVE", "1456 53 OFFCURVE", "1477 111 CURVE", "1229 78 OFFCURVE", "966 48 OFFCURVE", "690 23 CURVE SMOOTH", "414 -3 OFFCURVE", "184 -10 OFFCURVE", "0 0 CURVE SMOOTH", "-12 1 OFFCURVE", "-21 9 OFFCURVE", "-27 24 CURVE SMOOTH", "-33 39 OFFCURVE", "-33 54 OFFCURVE", "-27 69 CURVE SMOOTH", "-21 84 OFFCURVE", "-12 91 OFFCURVE", "0 90 CURVE SMOOTH" ); } ); width = 1621; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{1093, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "209 93 OFFCURVE", "443 100 OFFCURVE", "704 125 CURVE SMOOTH", "965 150 OFFCURVE", "1223 181 OFFCURVE", "1479 217 CURVE", "1457 251 OFFCURVE", "1430 270 OFFCURVE", "1398 273 CURVE SMOOTH", "1341 277 OFFCURVE", "1246 271 OFFCURVE", "1111 255 CURVE SMOOTH", "976 239 OFFCURVE", "828 223 OFFCURVE", "666 208 CURVE SMOOTH", "504 193 OFFCURVE", "351 189 OFFCURVE", "207 197 CURVE SMOOTH", "128 202 OFFCURVE", "81 220 OFFCURVE", "64 252 CURVE", "57 266 OFFCURVE", "56 280 OFFCURVE", "63 295 CURVE SMOOTH", "80 334 OFFCURVE", "101 366 OFFCURVE", "122 389 CURVE", "231 505 OFFCURVE", "385 594 OFFCURVE", "584 656 CURVE", "603 661 OFFCURVE", "614 656 OFFCURVE", "617 639 CURVE SMOOTH", "617 636 OFFCURVE", "617 633 OFFCURVE", "617 631 CURVE SMOOTH", "604 559 LINE", "601 548 OFFCURVE", "593 539 OFFCURVE", "581 535 CURVE", "493 508 OFFCURVE", "412 476 OFFCURVE", "340 439 CURVE SMOOTH", "268 402 OFFCURVE", "209 365 OFFCURVE", "164 325 CURVE", "210 308 OFFCURVE", "311 301 OFFCURVE", "467 305 CURVE SMOOTH", "623 309 OFFCURVE", "798 324 OFFCURVE", "995 348 CURVE SMOOTH", "1192 372 OFFCURVE", "1328 384 OFFCURVE", "1403 385 CURVE SMOOTH", "1452 385 OFFCURVE", "1492 372 OFFCURVE", "1524 344 CURVE", "1556 316 OFFCURVE", "1574 279 OFFCURVE", "1579 235 CURVE SMOOTH", "1581 215 OFFCURVE", "1567 185 OFFCURVE", "1536 142 CURVE", "1533 126 OFFCURVE", "1535 116 OFFCURVE", "1545 112 CURVE SMOOTH", "1555 108 OFFCURVE", "1580 106 OFFCURVE", "1621 105 CURVE SMOOTH", "1641 104 OFFCURVE", "1654 93 OFFCURVE", "1658 70 CURVE SMOOTH", "1661 52 OFFCURVE", "1660 34 OFFCURVE", "1653 15 CURVE SMOOTH", "1646 -4 OFFCURVE", "1636 -15 OFFCURVE", "1621 -15 CURVE", "1570 -15 OFFCURVE", "1536 -12 OFFCURVE", "1517 -8 CURVE SMOOTH", "1481 1 OFFCURVE", "1460 20 OFFCURVE", "1454 51 CURVE SMOOTH", "1452 64 OFFCURVE", "1453 79 OFFCURVE", "1456 94 CURVE", "1214 62 OFFCURVE", "957 33 OFFCURVE", "685 8 CURVE SMOOTH", "413 -17 OFFCURVE", "184 -25 OFFCURVE", "-1 -15 CURVE", "-20 -14 OFFCURVE", "-32 -3 OFFCURVE", "-40 17 CURVE SMOOTH", "-52 49 OFFCURVE", "-48 74 OFFCURVE", "-27 94 CURVE SMOOTH", "-19 102 OFFCURVE", "-10 106 OFFCURVE", "1 105 CURVE SMOOTH" ); } ); width = 1621; } ); }, { glyphname = "miniKeheh-ar"; layers = ( { anchors = ( { name = DotHmaza; position = "{49, 332}"; }, { name = _HamzaAbove; position = "{0, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "89 271 OFFCURVE", "91 269 OFFCURVE", "92 267 CURVE SMOOTH", "93 265 OFFCURVE", "93 263 OFFCURVE", "92 260 CURVE SMOOTH", "71 207 LINE SMOOTH", "68 199 OFFCURVE", "64 194 OFFCURVE", "60 193 CURVE SMOOTH", "41 189 OFFCURVE", "29 182 OFFCURVE", "21 172 CURVE SMOOTH", "17 167 OFFCURVE", "21 162 OFFCURVE", "35 156 CURVE SMOOTH", "49 150 OFFCURVE", "66 147 OFFCURVE", "86 144 CURVE SMOOTH", "132 137 OFFCURVE", "131 101 OFFCURVE", "84 35 CURVE SMOOTH", "69 15 OFFCURVE", "55 4 OFFCURVE", "42 0 CURVE SMOOTH", "29 -4 OFFCURVE", "6 -4 OFFCURVE", "-28 -1 CURVE SMOOTH", "-62 2 OFFCURVE", "-88 9 OFFCURVE", "-108 16 CURVE SMOOTH", "-115 19 OFFCURVE", "-119 23 OFFCURVE", "-119 29 CURVE SMOOTH", "-119 35 OFFCURVE", "-116 38 OFFCURVE", "-109 38 CURVE SMOOTH", "-92 39 OFFCURVE", "-70 40 OFFCURVE", "-42 41 CURVE SMOOTH", "12 42 OFFCURVE", "45 46 OFFCURVE", "56 52 CURVE SMOOTH", "59 54 OFFCURVE", "59 56 OFFCURVE", "58 59 CURVE SMOOTH", "57 62 OFFCURVE", "54 63 OFFCURVE", "50 64 CURVE", "21 71 LINE SMOOTH", "5 75 OFFCURVE", "-8 81 OFFCURVE", "-17 91 CURVE SMOOTH", "-26 101 OFFCURVE", "-29 112 OFFCURVE", "-26 123 CURVE SMOOTH", "-6 207 OFFCURVE", "31 256 OFFCURVE", "86 271 CURVE" ); } ); width = 0; }, { anchors = ( { name = DotHmaza; position = "{49, 332}"; }, { name = _HamzaAbove; position = "{0, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "90 278 OFFCURVE", "94 276 OFFCURVE", "97 271 CURVE SMOOTH", "100 266 OFFCURVE", "101 262 OFFCURVE", "99 257 CURVE SMOOTH", "78 204 LINE SMOOTH", "73 193 OFFCURVE", "68 188 OFFCURVE", "62 186 CURVE SMOOTH", "46 182 OFFCURVE", "34 176 OFFCURVE", "27 168 CURVE", "37 161 OFFCURVE", "53 156 OFFCURVE", "73 153 CURVE SMOOTH", "93 150 OFFCURVE", "106 147 OFFCURVE", "113 142 CURVE SMOOTH", "138 124 OFFCURVE", "130 87 OFFCURVE", "90 31 CURVE", "74 10 OFFCURVE", "58 -3 OFFCURVE", "44 -7 CURVE SMOOTH", "30 -11 OFFCURVE", "5 -11 OFFCURVE", "-29 -8 CURVE SMOOTH", "-63 -5 OFFCURVE", "-90 1 OFFCURVE", "-111 9 CURVE", "-121 13 OFFCURVE", "-126 18 OFFCURVE", "-126 25 CURVE SMOOTH", "-126 32 OFFCURVE", "-125 37 OFFCURVE", "-122 40 CURVE SMOOTH", "-119 43 OFFCURVE", "-112 45 OFFCURVE", "-101 46 CURVE SMOOTH", "-90 47 OFFCURVE", "-65 47 OFFCURVE", "-28 48 CURVE SMOOTH", "9 49 OFFCURVE", "34 52 OFFCURVE", "48 57 CURVE", "20 63 LINE SMOOTH", "2 67 OFFCURVE", "-12 76 OFFCURVE", "-22 87 CURVE SMOOTH", "-32 98 OFFCURVE", "-37 111 OFFCURVE", "-34 125 CURVE", "-13 211 OFFCURVE", "26 261 OFFCURVE", "84 277 CURVE" ); } ); width = 0; } ); }, { glyphname = dash.kaf; layers = ( { anchors = ( { name = RingDash; position = "{-154, 122}"; }, { name = _Dash; position = "{-426, -21}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-301 115 OFFCURVE", "-142 171 OFFCURVE", "91 233 CURVE SMOOTH", "104 236 OFFCURVE", "112 236 OFFCURVE", "114 232 CURVE SMOOTH", "116 228 OFFCURVE", "116 224 OFFCURVE", "114 219 CURVE SMOOTH", "92 169 LINE SMOOTH", "90 165 OFFCURVE", "86 162 OFFCURVE", "79 160 CURVE SMOOTH", "-90 113 OFFCURVE", "-252 57 OFFCURVE", "-408 -10 CURVE SMOOTH", "-428 -18 OFFCURVE", "-436 -15 OFFCURVE", "-431 0 CURVE SMOOTH", "-429 7 OFFCURVE", "-414 30 OFFCURVE", "-387 66 CURVE" ); } ); width = 0; }, { anchors = ( { name = RingDash; position = "{-154, 122}"; }, { name = _Dash; position = "{-426, -21}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-309 128 OFFCURVE", "-147 185 OFFCURVE", "87 248 CURVE SMOOTH", "107 253 OFFCURVE", "119 250 OFFCURVE", "125 241 CURVE SMOOTH", "131 232 OFFCURVE", "132 222 OFFCURVE", "128 213 CURVE SMOOTH", "106 163 LINE", "102 155 OFFCURVE", "93 149 OFFCURVE", "82 146 CURVE SMOOTH", "-86 100 OFFCURVE", "-247 43 OFFCURVE", "-402 -24 CURVE SMOOTH", "-426 -34 OFFCURVE", "-441 -30 OFFCURVE", "-446 -14 CURVE", "-447 -9 OFFCURVE", "-446 -2 OFFCURVE", "-444 6 CURVE SMOOTH", "-442 14 OFFCURVE", "-426 38 OFFCURVE", "-397 77 CURVE" ); } ); width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = aKaf.fina.alt; layers = ( { anchors = ( { name = TashkilAbove; position = "{539, 801}"; }, { name = TashkilBelow; position = "{1371, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "470 74 OFFCURVE", "713 75 OFFCURVE", "991 95 CURVE SMOOTH", "1125 105 OFFCURVE", "1382 130 OFFCURVE", "1763 170 CURVE SMOOTH", "1770 171 OFFCURVE", "1771 175 OFFCURVE", "1767 182 CURVE SMOOTH", "1743 227 OFFCURVE", "1711 251 OFFCURVE", "1672 255 CURVE SMOOTH", "1615 261 OFFCURVE", "1518 257 OFFCURVE", "1383 244 CURVE SMOOTH", "1248 231 OFFCURVE", "1099 219 OFFCURVE", "935 207 CURVE SMOOTH", "771 195 OFFCURVE", "619 196 OFFCURVE", "479 207 CURVE SMOOTH", "405 213 OFFCURVE", "362 230 OFFCURVE", "349 257 CURVE SMOOTH", "344 267 OFFCURVE", "345 277 OFFCURVE", "350 287 CURVE SMOOTH", "368 324 OFFCURVE", "387 354 OFFCURVE", "408 376 CURVE SMOOTH", "518 487 OFFCURVE", "671 571 OFFCURVE", "869 628 CURVE", "880 631 OFFCURVE", "885 628 OFFCURVE", "883 620 CURVE SMOOTH", "869 548 LINE", "867 542 OFFCURVE", "862 538 OFFCURVE", "855 536 CURVE SMOOTH", "765 511 OFFCURVE", "681 479 OFFCURVE", "602 441 CURVE SMOOTH", "523 403 OFFCURVE", "462 364 OFFCURVE", "419 324 CURVE SMOOTH", "415 320 OFFCURVE", "414 317 OFFCURVE", "417 315 CURVE SMOOTH", "452 291 OFFCURVE", "569 279 OFFCURVE", "769 280 CURVE SMOOTH", "905 281 OFFCURVE", "1072 290 OFFCURVE", "1267 310 CURVE SMOOTH", "1462 330 OFFCURVE", "1599 339 OFFCURVE", "1678 338 CURVE SMOOTH", "1723 337 OFFCURVE", "1760 324 OFFCURVE", "1789 298 CURVE SMOOTH", "1818 272 OFFCURVE", "1833 238 OFFCURVE", "1836 198 CURVE", "1837 187 OFFCURVE", "1829 166 OFFCURVE", "1809 137 CURVE", "1805 111 OFFCURVE", "1818 97 OFFCURVE", "1851 93 CURVE SMOOTH", "1856 93 OFFCURVE", "1874 92 OFFCURVE", "1907 90 CURVE SMOOTH", "1920 90 OFFCURVE", "1928 82 OFFCURVE", "1931 67 CURVE SMOOTH", "1934 52 OFFCURVE", "1933 37 OFFCURVE", "1927 22 CURVE SMOOTH", "1921 7 OFFCURVE", "1915 0 OFFCURVE", "1907 0 CURVE SMOOTH", "1856 0 OFFCURVE", "1823 2 OFFCURVE", "1809 6 CURVE SMOOTH", "1767 19 OFFCURVE", "1750 44 OFFCURVE", "1757 81 CURVE", "1757 81 LINE", "1753 79 OFFCURVE", "1739 77 OFFCURVE", "1716 75 CURVE SMOOTH", "1338 42 LINE SMOOTH", "1111 21 OFFCURVE", "984 10 OFFCURVE", "957 8 CURVE SMOOTH", "559 -18 OFFCURVE", "294 -16 OFFCURVE", "162 14 CURVE SMOOTH", "145 18 OFFCURVE", "127 29 OFFCURVE", "107 47 CURVE SMOOTH", "87 65 OFFCURVE", "74 85 OFFCURVE", "66 107 CURVE SMOOTH", "60 122 OFFCURVE", "63 128 OFFCURVE", "74 125 CURVE SMOOTH", "133 108 OFFCURVE", "196 97 OFFCURVE", "262 91 CURVE SMOOTH" ); } ); width = 1906; }, { anchors = ( { name = TashkilAbove; position = "{539, 801}"; }, { name = TashkilBelow; position = "{1371, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "470 88 OFFCURVE", "713 90 OFFCURVE", "990 110 CURVE SMOOTH", "1123 120 OFFCURVE", "1377 144 OFFCURVE", "1750 183 CURVE", "1729 218 OFFCURVE", "1702 237 OFFCURVE", "1671 240 CURVE SMOOTH", "1614 246 OFFCURVE", "1518 242 OFFCURVE", "1383 229 CURVE SMOOTH", "1248 216 OFFCURVE", "1099 204 OFFCURVE", "935 192 CURVE SMOOTH", "771 180 OFFCURVE", "619 181 OFFCURVE", "478 192 CURVE SMOOTH", "399 199 OFFCURVE", "352 219 OFFCURVE", "336 251 CURVE", "330 265 OFFCURVE", "329 279 OFFCURVE", "336 293 CURVE SMOOTH", "354 332 OFFCURVE", "375 363 OFFCURVE", "397 386 CURVE", "509 499 OFFCURVE", "665 584 OFFCURVE", "865 642 CURVE", "884 647 OFFCURVE", "895 642 OFFCURVE", "898 625 CURVE SMOOTH", "898 622 OFFCURVE", "898 619 OFFCURVE", "898 617 CURVE SMOOTH", "883 545 LINE", "880 533 OFFCURVE", "872 526 OFFCURVE", "859 522 CURVE SMOOTH", "770 497 OFFCURVE", "689 466 OFFCURVE", "613 430 CURVE SMOOTH", "537 394 OFFCURVE", "478 357 OFFCURVE", "437 321 CURVE", "483 302 OFFCURVE", "584 293 OFFCURVE", "740 294 CURVE SMOOTH", "896 295 OFFCURVE", "1071 305 OFFCURVE", "1266 325 CURVE SMOOTH", "1461 345 OFFCURVE", "1599 354 OFFCURVE", "1678 353 CURVE", "1727 352 OFFCURVE", "1767 337 OFFCURVE", "1798 309 CURVE", "1829 280 OFFCURVE", "1848 244 OFFCURVE", "1851 200 CURVE SMOOTH", "1852 186 OFFCURVE", "1843 163 OFFCURVE", "1823 132 CURVE", "1822 122 OFFCURVE", "1825 115 OFFCURVE", "1833 112 CURVE SMOOTH", "1841 109 OFFCURVE", "1865 107 OFFCURVE", "1907 105 CURVE", "1927 104 OFFCURVE", "1939 94 OFFCURVE", "1944 74 CURVE SMOOTH", "1949 54 OFFCURVE", "1948 34 OFFCURVE", "1940 15 CURVE SMOOTH", "1932 -4 OFFCURVE", "1921 -15 OFFCURVE", "1907 -15 CURVE", "1854 -15 OFFCURVE", "1819 -13 OFFCURVE", "1804 -8 CURVE SMOOTH", "1763 5 OFFCURVE", "1742 28 OFFCURVE", "1741 63 CURVE", "1734 62 OFFCURVE", "1726 62 OFFCURVE", "1717 61 CURVE SMOOTH", "1340 28 LINE", "1113 7 OFFCURVE", "986 -5 OFFCURVE", "958 -7 CURVE SMOOTH", "559 -33 OFFCURVE", "293 -31 OFFCURVE", "159 -1 CURVE SMOOTH", "139 4 OFFCURVE", "118 16 OFFCURVE", "97 36 CURVE SMOOTH", "76 56 OFFCURVE", "61 78 OFFCURVE", "52 102 CURVE SMOOTH", "49 112 OFFCURVE", "48 120 OFFCURVE", "49 126 CURVE SMOOTH", "53 139 OFFCURVE", "62 143 OFFCURVE", "78 139 CURVE SMOOTH", "136 122 OFFCURVE", "198 110 OFFCURVE", "263 105 CURVE SMOOTH" ); } ); width = 1906; } ); }, { glyphname = "threedotsdownabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{-24, 317}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "36 -3 OFFCURVE", "34 -3 OFFCURVE", "30 -2 CURVE SMOOTH", "4 7 OFFCURVE", "-20 20 OFFCURVE", "-41 39 CURVE SMOOTH", "-44 42 OFFCURVE", "-44 45 OFFCURVE", "-42 48 CURVE SMOOTH", "5 124 LINE SMOOTH", "7 127 OFFCURVE", "10 126 OFFCURVE", "15 122 CURVE SMOOTH", "20 118 OFFCURVE", "43 103 OFFCURVE", "85 78 CURVE SMOOTH", "88 76 OFFCURVE", "89 74 OFFCURVE", "87 72 CURVE SMOOTH", "38 0 LINE SMOOTH" ); }, { closed = 1; nodes = ( "-33 101 OFFCURVE", "-35 101 OFFCURVE", "-39 102 CURVE SMOOTH", "-65 111 OFFCURVE", "-89 124 OFFCURVE", "-110 143 CURVE SMOOTH", "-113 146 OFFCURVE", "-113 149 OFFCURVE", "-111 152 CURVE SMOOTH", "-63 228 LINE SMOOTH", "-61 231 OFFCURVE", "-59 230 OFFCURVE", "-54 226 CURVE SMOOTH", "-50 223 OFFCURVE", "-33 213 OFFCURVE", "-4 195 CURVE", "31 250 LINE SMOOTH", "33 253 OFFCURVE", "36 253 OFFCURVE", "41 249 CURVE SMOOTH", "46 245 OFFCURVE", "69 230 OFFCURVE", "111 205 CURVE SMOOTH", "114 203 OFFCURVE", "114 201 OFFCURVE", "112 199 CURVE SMOOTH", "63 126 LINE SMOOTH", "61 123 OFFCURVE", "59 124 OFFCURVE", "55 125 CURVE SMOOTH", "36 132 OFFCURVE", "18 140 OFFCURVE", "2 152 CURVE", "-31 104 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{-24, 317}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "42 -16 OFFCURVE", "36 -18 OFFCURVE", "29 -16 CURVE", "2 -6 OFFCURVE", "-23 8 OFFCURVE", "-44 27 CURVE", "-50 32 OFFCURVE", "-51 38 OFFCURVE", "-47 45 CURVE", "0 121 LINE", "5 128 OFFCURVE", "12 128 OFFCURVE", "19 123 CURVE SMOOTH", "26 118 OFFCURVE", "50 103 OFFCURVE", "91 78 CURVE SMOOTH", "98 73 OFFCURVE", "99 69 OFFCURVE", "94 62 CURVE SMOOTH", "46 -11 LINE SMOOTH" ); }, { closed = 1; nodes = ( "-28 95 OFFCURVE", "-34 93 OFFCURVE", "-41 95 CURVE", "-68 105 OFFCURVE", "-93 119 OFFCURVE", "-114 138 CURVE", "-120 143 OFFCURVE", "-121 148 OFFCURVE", "-117 155 CURVE", "-69 231 LINE SMOOTH", "-64 238 OFFCURVE", "-58 239 OFFCURVE", "-52 234 CURVE SMOOTH", "-46 229 OFFCURVE", "-30 219 OFFCURVE", "-6 204 CURVE", "25 254 LINE", "30 261 OFFCURVE", "36 261 OFFCURVE", "43 256 CURVE SMOOTH", "50 251 OFFCURVE", "74 236 OFFCURVE", "115 211 CURVE SMOOTH", "122 206 OFFCURVE", "124 201 OFFCURVE", "119 194 CURVE SMOOTH", "70 122 LINE", "62 111 OFFCURVE", "40 118 OFFCURVE", "4 142 CURVE", "-24 100 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "threedotsdownbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{39, -70}"; }, { name = _TwoDotsBelow; position = "{-56, 190}"; } ); components = ( { name = "threedotsdownabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{39, -70}"; }, { name = _TwoDotsBelow; position = "{-56, 190}"; } ); components = ( { name = "threedotsdownabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "gafsarkashabove-ar"; layers = ( { anchors = ( { name = _Dash; position = "{-75, 23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-282 -27 OFFCURVE", "-283 -24 OFFCURVE", "-276 -12 CURVE SMOOTH", "-269 0 OFFCURVE", "-259 10 OFFCURVE", "-250 19 CURVE SMOOTH", "-241 28 OFFCURVE", "-234 34 OFFCURVE", "-228 37 CURVE SMOOTH", "-116 90 OFFCURVE", "32 143 OFFCURVE", "216 197 CURVE SMOOTH", "220 198 OFFCURVE", "221 198 OFFCURVE", "221 194 CURVE SMOOTH", "221 190 OFFCURVE", "214 180 OFFCURVE", "200 164 CURVE SMOOTH", "186 148 OFFCURVE", "174 138 OFFCURVE", "163 135 CURVE SMOOTH", "43 103 OFFCURVE", "-101 50 OFFCURVE", "-272 -23 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _Dash; position = "{-75, 23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-275 -40 OFFCURVE", "-282 -40 OFFCURVE", "-288 -37 CURVE SMOOTH", "-299 -30 OFFCURVE", "-300 -19 OFFCURVE", "-290 -5 CURVE SMOOTH", "-270 23 OFFCURVE", "-252 42 OFFCURVE", "-234 50 CURVE SMOOTH", "-121 104 OFFCURVE", "27 157 OFFCURVE", "211 211 CURVE SMOOTH", "218 213 OFFCURVE", "225 210 OFFCURVE", "233 203 CURVE SMOOTH", "241 196 OFFCURVE", "236 183 OFFCURVE", "220 164 CURVE SMOOTH", "216 159 OFFCURVE", "212 155 OFFCURVE", "211 154 CURVE SMOOTH", "195 135 OFFCURVE", "181 125 OFFCURVE", "167 121 CURVE SMOOTH", "48 89 OFFCURVE", "-97 37 OFFCURVE", "-267 -36 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = aBaa.medi.High; layers = ( { anchors = ( { name = DigitAbove; position = "{95, 549}"; }, { name = DigitBelow; position = "{135, -171}"; }, { name = DotAbove; position = "{95, 549}"; }, { name = DotBelow; position = "{135, -171}"; }, { name = HamzaAbove; position = "{95, 549}"; }, { name = HamzaBelow; position = "{81, -89}"; }, { name = RingBelow; position = "{122, 117}"; }, { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; }, { name = TwoDotsAbove; position = "{41, 549}"; }, { name = TwoDotsBelow; position = "{81, -146}"; }, { name = VAbove; position = "{95, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "87 314 OFFCURVE", "91 323 OFFCURVE", "98 337 CURVE SMOOTH", "105 351 OFFCURVE", "110 360 OFFCURVE", "113 364 CURVE SMOOTH", "120 371 OFFCURVE", "124 368 OFFCURVE", "127 354 CURVE SMOOTH", "130 340 OFFCURVE", "136 316 OFFCURVE", "143 281 CURVE SMOOTH", "160 203 OFFCURVE", "173 155 OFFCURVE", "182 135 CURVE SMOOTH", "195 108 OFFCURVE", "215 93 OFFCURVE", "244 90 CURVE SMOOTH", "252 89 OFFCURVE", "258 85 OFFCURVE", "262 78 CURVE SMOOTH", "266 71 OFFCURVE", "267 60 OFFCURVE", "264 48 CURVE", "258 15 OFFCURVE", "251 0 OFFCURVE", "244 0 CURVE SMOOTH", "187 1 OFFCURVE", "147 43 OFFCURVE", "125 127 CURVE", "124 130 OFFCURVE", "123 131 OFFCURVE", "122 128 CURVE SMOOTH", "93 48 OFFCURVE", "52 5 OFFCURVE", "0 0 CURVE SMOOTH", "-6 -1 OFFCURVE", "-10 3 OFFCURVE", "-13 12 CURVE SMOOTH", "-16 21 OFFCURVE", "-19 36 OFFCURVE", "-22 57 CURVE SMOOTH", "-25 78 OFFCURVE", "-18 89 OFFCURVE", "0 90 CURVE SMOOTH", "56 92 OFFCURVE", "95 113 OFFCURVE", "117 151 CURVE SMOOTH", "118 153 OFFCURVE", "116 165 OFFCURVE", "111 185 CURVE SMOOTH", "106 205 OFFCURVE", "98 246 OFFCURVE", "88 308 CURVE SMOOTH" ); } ); width = 244; }, { anchors = ( { name = DigitAbove; position = "{95, 549}"; }, { name = DigitBelow; position = "{135, -171}"; }, { name = DotAbove; position = "{95, 549}"; }, { name = DotBelow; position = "{135, -171}"; }, { name = HamzaAbove; position = "{95, 549}"; }, { name = HamzaBelow; position = "{81, -89}"; }, { name = RingBelow; position = "{122, 117}"; }, { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; }, { name = TwoDotsAbove; position = "{41, 549}"; }, { name = TwoDotsBelow; position = "{81, -146}"; }, { name = VAbove; position = "{95, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "73 314 OFFCURVE", "76 327 OFFCURVE", "84 343 CURVE SMOOTH", "92 359 OFFCURVE", "98 369 OFFCURVE", "102 374 CURVE", "106 378 OFFCURVE", "111 381 OFFCURVE", "115 382 CURVE SMOOTH", "129 385 OFFCURVE", "138 377 OFFCURVE", "142 358 CURVE SMOOTH", "145 344 OFFCURVE", "152 309 OFFCURVE", "164 253 CURVE SMOOTH", "176 197 OFFCURVE", "186 159 OFFCURVE", "196 139 CURVE SMOOTH", "206 119 OFFCURVE", "222 108 OFFCURVE", "245 105 CURVE SMOOTH", "258 104 OFFCURVE", "268 97 OFFCURVE", "274 86 CURVE SMOOTH", "280 75 OFFCURVE", "281 58 OFFCURVE", "277 38 CURVE SMOOTH", "273 18 OFFCURVE", "269 5 OFFCURVE", "264 -3 CURVE SMOOTH", "259 -11 OFFCURVE", "253 -15 OFFCURVE", "244 -15 CURVE SMOOTH", "189 -14 OFFCURVE", "148 22 OFFCURVE", "122 90 CURVE", "91 26 OFFCURVE", "51 -10 OFFCURVE", "1 -15 CURVE", "-13 -16 OFFCURVE", "-22 -8 OFFCURVE", "-27 8 CURVE SMOOTH", "-33 28 OFFCURVE", "-36 46 OFFCURVE", "-37 64 CURVE SMOOTH", "-38 82 OFFCURVE", "-31 94 OFFCURVE", "-17 101 CURVE SMOOTH", "-12 103 OFFCURVE", "-7 105 OFFCURVE", "-1 105 CURVE SMOOTH", "48 107 OFFCURVE", "82 124 OFFCURVE", "102 156 CURVE", "101 161 OFFCURVE", "99 172 OFFCURVE", "95 188 CURVE SMOOTH", "91 204 OFFCURVE", "84 243 OFFCURVE", "74 305 CURVE SMOOTH" ); } ); width = 244; } ); }, { glyphname = smalltaa.above; layers = ( { anchors = ( { name = MarkDotAbove; position = "{-20, 366}"; }, { name = TashkilAboveDot; position = "{-20, 366}"; }, { name = _MarkDotAbove; position = "{0, 0}"; }, { name = _TaaAbove; position = "{0, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-28 304 OFFCURVE", "-24 299 OFFCURVE", "-23 289 CURVE SMOOTH", "-10 193 OFFCURVE", "-6 126 OFFCURVE", "-13 87 CURVE", "8 109 OFFCURVE", "28 128 OFFCURVE", "48 143 CURVE SMOOTH", "68 158 OFFCURVE", "85 162 OFFCURVE", "100 156 CURVE SMOOTH", "115 150 OFFCURVE", "127 139 OFFCURVE", "134 121 CURVE SMOOTH", "141 103 OFFCURVE", "132 78 OFFCURVE", "107 47 CURVE SMOOTH", "102 40 OFFCURVE", "81 31 OFFCURVE", "44 20 CURVE SMOOTH", "7 9 OFFCURVE", "-32 2 OFFCURVE", "-72 0 CURVE", "-89 3 OFFCURVE", "-104 9 OFFCURVE", "-115 19 CURVE SMOOTH", "-126 29 OFFCURVE", "-133 36 OFFCURVE", "-135 41 CURVE SMOOTH", "-137 46 OFFCURVE", "-137 49 OFFCURVE", "-133 48 CURVE SMOOTH", "-108 45 OFFCURVE", "-83 45 OFFCURVE", "-57 47 CURVE", "-31 73 LINE", "-29 120 OFFCURVE", "-34 186 OFFCURVE", "-47 269 CURVE SMOOTH", "-47 271 OFFCURVE", "-46 276 OFFCURVE", "-42 285 CURVE SMOOTH", "-38 294 OFFCURVE", "-36 300 OFFCURVE", "-33 301 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "35 105 OFFCURVE", "9 86 OFFCURVE", "-29 50 CURVE", "16 56 OFFCURVE", "60 70 OFFCURVE", "103 91 CURVE", "92 113 OFFCURVE", "73 119 OFFCURVE", "47 110 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = MarkDotAbove; position = "{-20, 366}"; }, { name = TashkilAboveDot; position = "{-20, 366}"; }, { name = _MarkDotAbove; position = "{0, 0}"; }, { name = _TaaAbove; position = "{0, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-25 313 OFFCURVE", "-19 307 OFFCURVE", "-16 290 CURVE SMOOTH", "-5 210 OFFCURVE", "0 149 OFFCURVE", "-3 108 CURVE", "13 124 OFFCURVE", "30 138 OFFCURVE", "49 152 CURVE SMOOTH", "68 166 OFFCURVE", "86 170 OFFCURVE", "103 163 CURVE SMOOTH", "120 156 OFFCURVE", "132 143 OFFCURVE", "140 123 CURVE SMOOTH", "148 103 OFFCURVE", "139 75 OFFCURVE", "113 42 CURVE SMOOTH", "107 34 OFFCURVE", "84 25 OFFCURVE", "46 13 CURVE SMOOTH", "8 1 OFFCURVE", "-32 -5 OFFCURVE", "-72 -7 CURVE SMOOTH", "-73 -7 OFFCURVE", "-73 -7 OFFCURVE", "-74 -7 CURVE SMOOTH", "-93 -4 OFFCURVE", "-109 4 OFFCURVE", "-123 17 CURVE SMOOTH", "-137 30 OFFCURVE", "-144 39 OFFCURVE", "-144 47 CURVE", "-143 53 OFFCURVE", "-139 55 OFFCURVE", "-132 55 CURVE", "-109 53 OFFCURVE", "-85 52 OFFCURVE", "-61 54 CURVE", "-38 77 LINE", "-36 124 OFFCURVE", "-42 188 OFFCURVE", "-55 268 CURVE SMOOTH", "-55 272 OFFCURVE", "-53 278 OFFCURVE", "-49 288 CURVE SMOOTH", "-45 298 OFFCURVE", "-41 305 OFFCURVE", "-36 308 CURVE" ); }, { closed = 1; nodes = ( "40 100 OFFCURVE", "22 85 OFFCURVE", "-5 61 CURVE", "29 68 OFFCURVE", "61 79 OFFCURVE", "93 94 CURVE", "83 107 OFFCURVE", "69 111 OFFCURVE", "50 104 CURVE" ); } ); width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "twodotsverticalabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{-20, 288}"; }, { name = _DotAbove; position = "{0, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-34 223 OFFCURVE", "-31 223 OFFCURVE", "-27 222 CURVE SMOOTH", "-1 213 OFFCURVE", "22 199 OFFCURVE", "43 180 CURVE SMOOTH", "46 177 OFFCURVE", "47 174 OFFCURVE", "45 171 CURVE SMOOTH", "13 121 LINE", "31 113 OFFCURVE", "48 101 OFFCURVE", "63 87 CURVE SMOOTH", "66 84 OFFCURVE", "66 82 OFFCURVE", "64 79 CURVE SMOOTH", "17 3 LINE SMOOTH", "15 0 OFFCURVE", "12 0 OFFCURVE", "7 4 CURVE SMOOTH", "2 8 OFFCURVE", "-21 23 OFFCURVE", "-63 48 CURVE SMOOTH", "-66 50 OFFCURVE", "-67 52 OFFCURVE", "-65 54 CURVE SMOOTH", "-29 108 LINE", "-41 115 OFFCURVE", "-59 126 OFFCURVE", "-83 141 CURVE SMOOTH", "-86 143 OFFCURVE", "-86 145 OFFCURVE", "-84 147 CURVE SMOOTH", "-36 220 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{-20, 288}"; }, { name = _DotAbove; position = "{0, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-38 230 OFFCURVE", "-32 231 OFFCURVE", "-25 229 CURVE", "2 219 OFFCURVE", "27 205 OFFCURVE", "48 186 CURVE", "54 180 OFFCURVE", "55 174 OFFCURVE", "51 167 CURVE", "23 123 LINE", "39 115 OFFCURVE", "54 105 OFFCURVE", "68 93 CURVE", "74 87 OFFCURVE", "75 82 OFFCURVE", "71 75 CURVE", "23 -1 LINE", "18 -8 OFFCURVE", "12 -8 OFFCURVE", "5 -3 CURVE SMOOTH", "-2 2 OFFCURVE", "-26 17 OFFCURVE", "-67 42 CURVE SMOOTH", "-74 46 OFFCURVE", "-76 52 OFFCURVE", "-71 59 CURVE SMOOTH", "-39 106 LINE", "-51 113 OFFCURVE", "-67 123 OFFCURVE", "-87 135 CURVE SMOOTH", "-94 139 OFFCURVE", "-95 144 OFFCURVE", "-90 151 CURVE SMOOTH", "-42 224 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "twodotsverticalbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{20, -161}"; }, { name = _DotBelow; position = "{0, 68}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 20, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{20, -161}"; }, { name = _DotBelow; position = "{0, 68}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 20, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = ring.below; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -195}"; }, { name = _RingBelow; position = "{0, 0}"; }, { name = _RingDash; position = "{0, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "70 -98 OFFCURVE", "69 -112 OFFCURVE", "66 -122 CURVE SMOOTH", "57 -156 OFFCURVE", "32 -172 OFFCURVE", "-10 -170 CURVE SMOOTH", "-50 -169 OFFCURVE", "-67 -145 OFFCURVE", "-63 -100 CURVE SMOOTH", "-58 -55 OFFCURVE", "-45 -24 OFFCURVE", "-24 -8 CURVE SMOOTH", "-3 8 OFFCURVE", "20 7 OFFCURVE", "43 -14 CURVE SMOOTH", "60 -28 OFFCURVE", "69 -51 OFFCURVE", "70 -81 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "41 -66 OFFCURVE", "24 -46 OFFCURVE", "0 -45 CURVE SMOOTH", "-15 -44 OFFCURVE", "-26 -50 OFFCURVE", "-33 -60 CURVE SMOOTH", "-40 -70 OFFCURVE", "-43 -82 OFFCURVE", "-41 -97 CURVE SMOOTH", "-39 -112 OFFCURVE", "-27 -121 OFFCURVE", "-5 -123 CURVE SMOOTH", "17 -125 OFFCURVE", "34 -121 OFFCURVE", "46 -112 CURVE SMOOTH", "49 -110 OFFCURVE", "50 -108 OFFCURVE", "50 -106 CURVE" ); } ); width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -195}"; }, { name = _RingBelow; position = "{0, 0}"; }, { name = _RingDash; position = "{0, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-58 -175 OFFCURVE", "-77 -149 OFFCURVE", "-72 -100 CURVE SMOOTH", "-67 -51 OFFCURVE", "-52 -18 OFFCURVE", "-28 1 CURVE SMOOTH", "-4 20 OFFCURVE", "22 17 OFFCURVE", "50 -7 CURVE SMOOTH", "69 -24 OFFCURVE", "78 -47 OFFCURVE", "79 -76 CURVE SMOOTH", "80 -105 OFFCURVE", "78 -126 OFFCURVE", "72 -137 CURVE SMOOTH", "56 -169 OFFCURVE", "27 -183 OFFCURVE", "-16 -179 CURVE" ); }, { closed = 1; nodes = ( "41 -66 OFFCURVE", "24 -46 OFFCURVE", "0 -45 CURVE SMOOTH", "-15 -44 OFFCURVE", "-26 -50 OFFCURVE", "-33 -60 CURVE SMOOTH", "-40 -70 OFFCURVE", "-43 -82 OFFCURVE", "-41 -97 CURVE SMOOTH", "-39 -112 OFFCURVE", "-27 -121 OFFCURVE", "-5 -123 CURVE SMOOTH", "17 -125 OFFCURVE", "34 -121 OFFCURVE", "46 -112 CURVE SMOOTH", "49 -110 OFFCURVE", "50 -108 OFFCURVE", "50 -106 CURVE" ); } ); width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = aSen.fina.BaaSen; layers = ( { anchors = ( { name = DigitAbove; position = "{778, 367}"; }, { name = DotAbove; position = "{778, 367}"; }, { name = DotBelow; position = "{803, -195}"; }, { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; }, { name = TwoDotsAbove; position = "{724, 367}"; }, { name = TwoDotsBelow; position = "{754, -195}"; }, { name = VAbove; position = "{778, 367}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "943 191 OFFCURVE", "948 196 OFFCURVE", "956 199 CURVE SMOOTH", "964 202 OFFCURVE", "971 197 OFFCURVE", "977 183 CURVE SMOOTH", "1002 127 OFFCURVE", "1030 93 OFFCURVE", "1063 80 CURVE SMOOTH", "1081 73 OFFCURVE", "1088 60 OFFCURVE", "1085 39 CURVE SMOOTH", "1083 20 OFFCURVE", "1076 12 OFFCURVE", "1064 14 CURVE", "1032 19 OFFCURVE", "1001 44 OFFCURVE", "970 90 CURVE", "958 113 LINE", "954 118 OFFCURVE", "951 117 OFFCURVE", "949 112 CURVE SMOOTH", "932 58 OFFCURVE", "920 24 OFFCURVE", "912 8 CURVE SMOOTH", "904 -8 OFFCURVE", "891 -17 OFFCURVE", "875 -17 CURVE SMOOTH", "836 -18 OFFCURVE", "800 -3 OFFCURVE", "767 28 CURVE", "732 -11 OFFCURVE", "684 -27 OFFCURVE", "625 -20 CURVE", "622 -89 OFFCURVE", "614 -142 OFFCURVE", "598 -179 CURVE SMOOTH", "582 -216 OFFCURVE", "561 -244 OFFCURVE", "535 -264 CURVE SMOOTH", "460 -321 OFFCURVE", "375 -350 OFFCURVE", "281 -350 CURVE SMOOTH", "213 -350 OFFCURVE", "158 -329 OFFCURVE", "114 -286 CURVE SMOOTH", "70 -243 OFFCURVE", "55 -186 OFFCURVE", "68 -116 CURVE SMOOTH", "79 -59 OFFCURVE", "101 1 OFFCURVE", "135 63 CURVE SMOOTH", "137 67 OFFCURVE", "140 70 OFFCURVE", "144 70 CURVE SMOOTH", "148 70 OFFCURVE", "152 68 OFFCURVE", "154 65 CURVE SMOOTH", "156 62 OFFCURVE", "156 58 OFFCURVE", "154 54 CURVE SMOOTH", "115 -21 OFFCURVE", "98 -75 OFFCURVE", "104 -110 CURVE SMOOTH", "110 -145 OFFCURVE", "129 -175 OFFCURVE", "164 -201 CURVE SMOOTH", "199 -227 OFFCURVE", "242 -241 OFFCURVE", "293 -243 CURVE SMOOTH", "344 -245 OFFCURVE", "398 -236 OFFCURVE", "454 -215 CURVE SMOOTH", "510 -194 OFFCURVE", "553 -162 OFFCURVE", "582 -119 CURVE", "597 -64 OFFCURVE", "584 -9 OFFCURVE", "545 47 CURVE SMOOTH", "540 54 OFFCURVE", "540 59 OFFCURVE", "542 66 CURVE SMOOTH", "565 149 LINE SMOOTH", "567 154 OFFCURVE", "570 157 OFFCURVE", "573 158 CURVE SMOOTH", "576 159 OFFCURVE", "579 158 OFFCURVE", "581 155 CURVE SMOOTH", "591 140 OFFCURVE", "599 121 OFFCURVE", "606 99 CURVE SMOOTH", "613 77 OFFCURVE", "648 71 OFFCURVE", "711 80 CURVE SMOOTH", "751 86 OFFCURVE", "780 114 OFFCURVE", "799 166 CURVE SMOOTH", "806 186 OFFCURVE", "814 190 OFFCURVE", "824 180 CURVE SMOOTH", "828 176 OFFCURVE", "829 171 OFFCURVE", "828 166 CURVE", "818 137 LINE", "815 125 OFFCURVE", "819 115 OFFCURVE", "828 110 CURVE SMOOTH", "855 95 OFFCURVE", "883 92 OFFCURVE", "909 99 CURVE SMOOTH", "917 101 OFFCURVE", "928 129 OFFCURVE", "941 183 CURVE SMOOTH" ); } ); width = 961; }, { anchors = ( { name = DigitAbove; position = "{778, 367}"; }, { name = DotAbove; position = "{778, 367}"; }, { name = DotBelow; position = "{803, -195}"; }, { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; }, { name = TwoDotsAbove; position = "{724, 367}"; }, { name = TwoDotsBelow; position = "{754, -195}"; }, { name = VAbove; position = "{778, 367}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "627 -154 OFFCURVE", "597 -234 OFFCURVE", "540 -276 CURVE SMOOTH", "460 -335 OFFCURVE", "373 -364 OFFCURVE", "281 -364 CURVE SMOOTH", "213 -364 OFFCURVE", "155 -341 OFFCURVE", "108 -295 CURVE SMOOTH", "61 -249 OFFCURVE", "45 -188 OFFCURVE", "59 -113 CURVE", "68 -62 OFFCURVE", "92 -1 OFFCURVE", "132 70 CURVE SMOOTH", "138 80 OFFCURVE", "145 83 OFFCURVE", "154 78 CURVE SMOOTH", "163 73 OFFCURVE", "164 62 OFFCURVE", "157 47 CURVE SMOOTH", "123 -26 OFFCURVE", "109 -77 OFFCURVE", "116 -108 CURVE SMOOTH", "123 -139 OFFCURVE", "142 -167 OFFCURVE", "174 -190 CURVE SMOOTH", "206 -213 OFFCURVE", "245 -226 OFFCURVE", "294 -228 CURVE SMOOTH", "343 -230 OFFCURVE", "395 -221 OFFCURVE", "451 -201 CURVE SMOOTH", "507 -181 OFFCURVE", "548 -152 OFFCURVE", "575 -113 CURVE", "585 -68 OFFCURVE", "571 -17 OFFCURVE", "533 39 CURVE SMOOTH", "526 49 OFFCURVE", "524 59 OFFCURVE", "527 70 CURVE SMOOTH", "551 154 LINE SMOOTH", "560 187 OFFCURVE", "575 190 OFFCURVE", "593 163 CURVE SMOOTH", "603 149 OFFCURVE", "612 128 OFFCURVE", "620 103 CURVE SMOOTH", "625 89 OFFCURVE", "654 86 OFFCURVE", "709 94 CURVE", "752 100 OFFCURVE", "781 125 OFFCURVE", "795 171 CURVE SMOOTH", "801 189 OFFCURVE", "809 196 OFFCURVE", "820 192 CURVE SMOOTH", "831 188 OFFCURVE", "835 180 OFFCURVE", "832 167 CURVE", "823 138 LINE SMOOTH", "821 133 OFFCURVE", "822 130 OFFCURVE", "825 128 CURVE SMOOTH", "853 111 OFFCURVE", "882 106 OFFCURVE", "910 112 CURVE", "917 122 OFFCURVE", "925 147 OFFCURVE", "935 186 CURVE SMOOTH", "939 201 OFFCURVE", "946 208 OFFCURVE", "957 208 CURVE SMOOTH", "968 208 OFFCURVE", "977 202 OFFCURVE", "984 190 CURVE SMOOTH", "1013 144 OFFCURVE", "1040 115 OFFCURVE", "1067 103 CURVE SMOOTH", "1094 91 OFFCURVE", "1104 69 OFFCURVE", "1099 36 CURVE", "1094 9 OFFCURVE", "1082 -3 OFFCURVE", "1062 0 CURVE", "1019 7 OFFCURVE", "983 35 OFFCURVE", "956 85 CURVE", "943 43 OFFCURVE", "932 13 OFFCURVE", "922 -4 CURVE SMOOTH", "912 -21 OFFCURVE", "897 -30 OFFCURVE", "876 -31 CURVE", "837 -31 OFFCURVE", "801 -19 OFFCURVE", "768 8 CURVE", "733 -24 OFFCURVE", "688 -39 OFFCURVE", "632 -36 CURVE" ); } ); width = 961; } ); }, { glyphname = aMem.fina.PostTooth; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{337, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; transform = "{1, 0, 0, 1, 224, 0}"; }, { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 56, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 565; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{337, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; transform = "{1, 0, 0, 1, 224, 0}"; }, { name = aMem.fina.KafMemIsol; transform = "{1, 0, 0, 1, 56, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 565; } ); }, { glyphname = "kashida-ar.LamKaf.1"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "148 94 OFFCURVE", "157 87 OFFCURVE", "155 69 CURVE SMOOTH", "149 26 OFFCURVE", "140 4 OFFCURVE", "127 0 CURVE", "85 -6 OFFCURVE", "43 -6 OFFCURVE", "0 0 CURVE SMOOTH", "-14 2 OFFCURVE", "-23 24 OFFCURVE", "-29 67 CURVE", "-32 85 OFFCURVE", "-22 92 OFFCURVE", "0 90 CURVE SMOOTH", "50 85 OFFCURVE", "93 85 OFFCURVE", "127 90 CURVE SMOOTH" ); } ); width = 126; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "50 100 OFFCURVE", "85 99 OFFCURVE", "105 102 CURVE SMOOTH", "125 105 OFFCURVE", "138 106 OFFCURVE", "145 105 CURVE SMOOTH", "152 104 OFFCURVE", "157 101 OFFCURVE", "163 95 CURVE SMOOTH", "169 89 OFFCURVE", "170 79 OFFCURVE", "169 67 CURVE SMOOTH", "164 29 OFFCURVE", "157 7 OFFCURVE", "149 -1 CURVE SMOOTH", "141 -9 OFFCURVE", "135 -14 OFFCURVE", "129 -15 CURVE SMOOTH", "86 -21 OFFCURVE", "42 -21 OFFCURVE", "-2 -15 CURVE SMOOTH", "-20 -12 OFFCURVE", "-32 5 OFFCURVE", "-38 35 CURVE SMOOTH", "-44 65 OFFCURVE", "-44 85 OFFCURVE", "-36 94 CURVE SMOOTH", "-28 103 OFFCURVE", "-17 107 OFFCURVE", "1 105 CURVE SMOOTH" ); } ); width = 126; } ); }, { glyphname = dot.alt1; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{15, -68}"; }, { name = _DotAlt; position = "{0, 68}"; } ); components = ( { name = "dotabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{15, -68}"; }, { name = _DotAlt; position = "{0, 68}"; } ); components = ( { name = "dotabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "gafsarkashabove-ar.alt2"; layers = ( { anchors = ( { name = _Dash; position = "{-47, 35}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-233 -64 OFFCURVE", "-235 -61 OFFCURVE", "-229 -48 CURVE SMOOTH", "-223 -35 OFFCURVE", "-215 -24 OFFCURVE", "-207 -14 CURVE SMOOTH", "-199 -4 OFFCURVE", "-192 3 OFFCURVE", "-186 6 CURVE SMOOTH", "-81 71 OFFCURVE", "61 140 OFFCURVE", "238 213 CURVE SMOOTH", "242 215 OFFCURVE", "244 214 OFFCURVE", "244 210 CURVE SMOOTH", "244 206 OFFCURVE", "238 196 OFFCURVE", "226 178 CURVE SMOOTH", "214 160 OFFCURVE", "202 149 OFFCURVE", "192 145 CURVE SMOOTH", "76 100 OFFCURVE", "-62 32 OFFCURVE", "-224 -59 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _Dash; position = "{-47, 35}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-224 -75 OFFCURVE", "-231 -76 OFFCURVE", "-237 -74 CURVE SMOOTH", "-250 -69 OFFCURVE", "-252 -58 OFFCURVE", "-244 -43 CURVE SMOOTH", "-228 -13 OFFCURVE", "-210 7 OFFCURVE", "-193 18 CURVE SMOOTH", "-87 84 OFFCURVE", "55 153 OFFCURVE", "232 226 CURVE SMOOTH", "239 229 OFFCURVE", "246 228 OFFCURVE", "254 221 CURVE SMOOTH", "262 214 OFFCURVE", "259 200 OFFCURVE", "245 180 CURVE SMOOTH", "242 175 OFFCURVE", "239 172 OFFCURVE", "238 170 CURVE SMOOTH", "224 150 OFFCURVE", "210 136 OFFCURVE", "197 131 CURVE", "82 86 OFFCURVE", "-56 20 OFFCURVE", "-217 -71 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "gafsarkashabove-ar.alt1"; layers = ( { anchors = ( { name = _Dash; position = "{-55, 45}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-262 -2 OFFCURVE", "-263 1 OFFCURVE", "-255 12 CURVE SMOOTH", "-247 23 OFFCURVE", "-237 33 OFFCURVE", "-227 41 CURVE SMOOTH", "-217 49 OFFCURVE", "-209 54 OFFCURVE", "-203 56 CURVE SMOOTH", "-87 100 OFFCURVE", "65 141 OFFCURVE", "253 179 CURVE SMOOTH", "257 180 OFFCURVE", "259 179 OFFCURVE", "258 175 CURVE SMOOTH", "257 171 OFFCURVE", "249 162 OFFCURVE", "234 147 CURVE SMOOTH", "219 132 OFFCURVE", "206 123 OFFCURVE", "195 121 CURVE SMOOTH", "73 100 OFFCURVE", "-76 60 OFFCURVE", "-252 1 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _Dash; position = "{-55, 45}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "256 195 OFFCURVE", "262 193 OFFCURVE", "266 187 CURVE SMOOTH", "270 181 OFFCURVE", "273 176 OFFCURVE", "272 170 CURVE SMOOTH", "271 164 OFFCURVE", "266 158 OFFCURVE", "258 150 CURVE SMOOTH", "250 142 OFFCURVE", "245 137 OFFCURVE", "244 136 CURVE SMOOTH", "227 119 OFFCURVE", "211 110 OFFCURVE", "197 107 CURVE SMOOTH", "75 86 OFFCURVE", "-73 45 OFFCURVE", "-248 -13 CURVE SMOOTH", "-257 -16 OFFCURVE", "-264 -15 OFFCURVE", "-269 -11 CURVE SMOOTH", "-279 -3 OFFCURVE", "-279 7 OFFCURVE", "-268 20 CURVE SMOOTH", "-245 47 OFFCURVE", "-225 64 OFFCURVE", "-207 70 CURVE", "-90 114 OFFCURVE", "62 155 OFFCURVE", "248 193 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = aBaa.init.Wide; layers = ( { anchors = ( { name = DigitAbove; position = "{115, 500}"; }, { name = DigitBelow; position = "{203, -171}"; }, { name = DotAbove; position = "{115, 500}"; }, { name = DotBelow; position = "{203, -171}"; }, { name = DotBelowAlt; position = "{162, -366}"; }, { name = HamzaAbove; position = "{115, 500}"; }, { name = HamzaBelow; position = "{203, -171}"; }, { name = RingBelow; position = "{201, 54}"; }, { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; }, { name = TwoDotsAbove; position = "{83, 500}"; }, { name = TwoDotsBelow; position = "{164, -171}"; }, { name = TwoDotsBelowAlt; position = "{108, -366}"; }, { name = VAbove; position = "{115, 500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "183 260 LINE SMOOTH", "189 272 OFFCURVE", "195 272 OFFCURVE", "202 260 CURVE SMOOTH", "218 233 OFFCURVE", "225 190 OFFCURVE", "223 132 CURVE SMOOTH", "222 104 OFFCURVE", "214 79 OFFCURVE", "198 58 CURVE SMOOTH", "165 14 OFFCURVE", "99 -6 OFFCURVE", "0 0 CURVE SMOOTH", "-12 1 OFFCURVE", "-21 23 OFFCURVE", "-27 67 CURVE", "-30 86 OFFCURVE", "-21 94 OFFCURVE", "0 90 CURVE SMOOTH", "21 86 OFFCURVE", "45 85 OFFCURVE", "74 88 CURVE SMOOTH", "102 91 OFFCURVE", "139 100 OFFCURVE", "184 117 CURVE", "177 140 OFFCURVE", "169 159 OFFCURVE", "158 173 CURVE SMOOTH", "152 180 OFFCURVE", "151 189 OFFCURVE", "155 198 CURVE SMOOTH" ); } ); width = 285; }, { anchors = ( { name = DigitAbove; position = "{115, 500}"; }, { name = DigitBelow; position = "{203, -171}"; }, { name = DotAbove; position = "{115, 500}"; }, { name = DotBelow; position = "{203, -171}"; }, { name = DotBelowAlt; position = "{162, -366}"; }, { name = HamzaAbove; position = "{115, 500}"; }, { name = HamzaBelow; position = "{203, -171}"; }, { name = RingBelow; position = "{201, 54}"; }, { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; }, { name = TwoDotsAbove; position = "{83, 500}"; }, { name = TwoDotsBelow; position = "{164, -171}"; }, { name = TwoDotsBelowAlt; position = "{108, -366}"; }, { name = VAbove; position = "{115, 500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "170 266 LINE SMOOTH", "173 273 OFFCURVE", "177 277 OFFCURVE", "181 280 CURVE SMOOTH", "193 288 OFFCURVE", "204 284 OFFCURVE", "214 268 CURVE SMOOTH", "232 238 OFFCURVE", "240 192 OFFCURVE", "238 131 CURVE SMOOTH", "237 100 OFFCURVE", "228 72 OFFCURVE", "210 49 CURVE SMOOTH", "174 1 OFFCURVE", "103 -21 OFFCURVE", "-1 -15 CURVE SMOOTH", "-18 -14 OFFCURVE", "-29 1 OFFCURVE", "-35 28 CURVE SMOOTH", "-41 55 OFFCURVE", "-43 73 OFFCURVE", "-42 80 CURVE SMOOTH", "-38 101 OFFCURVE", "-24 109 OFFCURVE", "-2 105 CURVE SMOOTH", "45 96 OFFCURVE", "101 103 OFFCURVE", "166 126 CURVE", "160 142 OFFCURVE", "153 155 OFFCURVE", "145 166 CURVE SMOOTH", "137 177 OFFCURVE", "135 190 OFFCURVE", "141 204 CURVE" ); } ); width = 285; } ); }, { glyphname = aHaa.medi.HaaHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{177, -137}"; }, { name = DotAbove; position = "{40, 591}"; }, { name = DotBelow; position = "{177, -137}"; }, { name = HamzaAbove; position = "{40, 591}"; }, { name = HamzaBelow; position = "{177, -137}"; }, { name = TaaAbove; position = "{40, 591}"; }, { name = TaaBelow; position = "{79, 59}"; }, { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; }, { name = TwoDotsAbove; position = "{-14, 591}"; }, { name = TwoDotsBelow; position = "{123, -137}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = DigitBelow; position = "{177, -137}"; }, { name = DotAbove; position = "{40, 591}"; }, { name = DotBelow; position = "{177, -137}"; }, { name = HamzaAbove; position = "{40, 591}"; }, { name = HamzaBelow; position = "{177, -137}"; }, { name = TaaAbove; position = "{40, 591}"; }, { name = TaaBelow; position = "{79, 59}"; }, { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; }, { name = TwoDotsAbove; position = "{-14, 591}"; }, { name = TwoDotsBelow; position = "{123, -137}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = aHaa.medi.AynHaaInit; layers = ( { anchors = ( { name = DigitBelow; position = "{215, -127}"; }, { name = DotAbove; position = "{44, 488}"; }, { name = DotBelow; position = "{215, -127}"; }, { name = HamzaAbove; position = "{29, 488}"; }, { name = HamzaBelow; position = "{215, -127}"; }, { name = TaaAbove; position = "{44, 488}"; }, { name = TaaBelow; position = "{215, 68}"; }, { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; }, { name = TwoDotsAbove; position = "{-20, 488}"; }, { name = TwoDotsBelow; position = "{161, -127}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = DigitBelow; position = "{215, -127}"; }, { name = DotAbove; position = "{44, 488}"; }, { name = DotBelow; position = "{215, -127}"; }, { name = HamzaAbove; position = "{29, 488}"; }, { name = HamzaBelow; position = "{215, -127}"; }, { name = TaaAbove; position = "{44, 488}"; }, { name = TaaBelow; position = "{215, 68}"; }, { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; }, { name = TwoDotsAbove; position = "{-20, 488}"; }, { name = TwoDotsBelow; position = "{161, -127}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = aMem.medi.LamMemInitTatweel; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 801}"; }, { name = TashkilBelow; position = "{54, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "179 5 OFFCURVE", "84 -12 OFFCURVE", "0 0 CURVE SMOOTH", "-14 2 OFFCURVE", "-23 24 OFFCURVE", "-29 67 CURVE", "-32 86 OFFCURVE", "-22 93 OFFCURVE", "0 90 CURVE SMOOTH", "97 75 OFFCURVE", "186 88 OFFCURVE", "266 127 CURVE", "255 168 OFFCURVE", "255 189 OFFCURVE", "268 192 CURVE", "286 196 OFFCURVE", "296 190 OFFCURVE", "300 172 CURVE", "301 165 OFFCURVE", "307 158 OFFCURVE", "319 151 CURVE SMOOTH", "331 144 OFFCURVE", "348 134 OFFCURVE", "371 123 CURVE SMOOTH", "394 112 OFFCURVE", "407 105 OFFCURVE", "413 100 CURVE SMOOTH", "419 95 OFFCURVE", "421 90 OFFCURVE", "420 85 CURVE SMOOTH", "414 41 OFFCURVE", "408 10 OFFCURVE", "401 -9 CURVE SMOOTH", "400 -12 OFFCURVE", "397 -14 OFFCURVE", "391 -14 CURVE SMOOTH", "385 -14 OFFCURVE", "381 -14 OFFCURVE", "378 -11 CURVE SMOOTH", "342 25 OFFCURVE", "311 46 OFFCURVE", "284 53 CURVE" ); } ); width = 283; }, { anchors = ( { name = TashkilAbove; position = "{54, 801}"; }, { name = TashkilBelow; position = "{54, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "238 177 OFFCURVE", "244 201 OFFCURVE", "264 206 CURVE SMOOTH", "284 211 OFFCURVE", "299 205 OFFCURVE", "309 190 CURVE SMOOTH", "312 184 OFFCURVE", "314 180 OFFCURVE", "315 176 CURVE SMOOTH", "316 169 OFFCURVE", "333 157 OFFCURVE", "365 142 CURVE SMOOTH", "397 127 OFFCURVE", "417 116 OFFCURVE", "425 109 CURVE SMOOTH", "433 102 OFFCURVE", "436 94 OFFCURVE", "435 84 CURVE SMOOTH", "429 39 OFFCURVE", "422 6 OFFCURVE", "414 -14 CURVE", "410 -23 OFFCURVE", "404 -28 OFFCURVE", "393 -29 CURVE SMOOTH", "382 -30 OFFCURVE", "374 -28 OFFCURVE", "368 -22 CURVE SMOOTH", "336 10 OFFCURVE", "308 30 OFFCURVE", "285 38 CURVE", "179 -9 OFFCURVE", "84 -27 OFFCURVE", "-2 -15 CURVE SMOOTH", "-20 -12 OFFCURVE", "-32 5 OFFCURVE", "-38 36 CURVE SMOOTH", "-44 67 OFFCURVE", "-44 86 OFFCURVE", "-36 95 CURVE SMOOTH", "-28 104 OFFCURVE", "-16 108 OFFCURVE", "2 105 CURVE SMOOTH", "92 91 OFFCURVE", "174 101 OFFCURVE", "248 135 CURVE" ); } ); width = 283; } ); }, { glyphname = aHeh.init.AboveHaa; layers = ( { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 187}"; } ); components = ( { name = aHeh.init.HehHaaInit; transform = "{1, 0, 0, 1, 39, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 187}"; } ); components = ( { name = aHeh.init.HehHaaInit; transform = "{1, 0, 0, 1, 39, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = aHaa.init.AboveHaa; layers = ( { anchors = ( { name = DigitBelow; position = "{619, -59}"; }, { name = DotAbove; position = "{619, 654}"; }, { name = DotBelow; position = "{619, -59}"; }, { name = HamzaAbove; position = "{619, 654}"; }, { name = HamzaBelow; position = "{619, -59}"; }, { name = TaaAbove; position = "{619, 654}"; }, { name = TaaBelow; position = "{619, 137}"; }, { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = TwoDotsAbove; position = "{570, 654}"; }, { name = TwoDotsBelow; position = "{570, -59}"; }, { name = exit; position = "{0, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "166 537 OFFCURVE", "197 568 OFFCURVE", "246 572 CURVE SMOOTH", "272 574 OFFCURVE", "314 558 OFFCURVE", "371 525 CURVE SMOOTH", "453 478 OFFCURVE", "545 451 OFFCURVE", "649 443 CURVE SMOOTH", "664 442 OFFCURVE", "669 434 OFFCURVE", "662 419 CURVE SMOOTH", "643 377 LINE SMOOTH", "638 367 OFFCURVE", "630 362 OFFCURVE", "620 364 CURVE SMOOTH", "573 374 OFFCURVE", "518 378 OFFCURVE", "452 375 CURVE SMOOTH", "371 372 OFFCURVE", "271 343 OFFCURVE", "154 288 CURVE SMOOTH", "89 257 OFFCURVE", "39 221 OFFCURVE", "3 179 CURVE SMOOTH", "-42 179 LINE", "-33 200 OFFCURVE", "-22 220 OFFCURVE", "-11 239 CURVE", "87 317 OFFCURVE", "217 380 OFFCURVE", "378 427 CURVE SMOOTH", "384 429 OFFCURVE", "385 431 OFFCURVE", "379 434 CURVE SMOOTH", "321 463 OFFCURVE", "278 481 OFFCURVE", "249 487 CURVE SMOOTH", "223 492 OFFCURVE", "196 489 OFFCURVE", "167 476 CURVE SMOOTH", "157 472 OFFCURVE", "153 473 OFFCURVE", "154 480 CURVE SMOOTH" ); } ); width = 731; }, { anchors = ( { name = DigitBelow; position = "{619, -59}"; }, { name = DotAbove; position = "{619, 654}"; }, { name = DotBelow; position = "{619, -59}"; }, { name = HamzaAbove; position = "{619, 654}"; }, { name = HamzaBelow; position = "{619, -59}"; }, { name = TaaAbove; position = "{619, 654}"; }, { name = TaaBelow; position = "{619, 137}"; }, { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = TwoDotsAbove; position = "{570, 654}"; }, { name = TwoDotsBelow; position = "{570, -59}"; }, { name = exit; position = "{0, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "153 547 OFFCURVE", "188 581 OFFCURVE", "244 586 CURVE", "273 588 OFFCURVE", "318 572 OFFCURVE", "378 538 CURVE", "458 493 OFFCURVE", "549 466 OFFCURVE", "651 458 CURVE SMOOTH", "663 457 OFFCURVE", "671 452 OFFCURVE", "676 444 CURVE SMOOTH", "681 436 OFFCURVE", "681 426 OFFCURVE", "675 413 CURVE SMOOTH", "656 371 LINE", "648 354 OFFCURVE", "635 347 OFFCURVE", "617 350 CURVE", "571 360 OFFCURVE", "513 363 OFFCURVE", "441 360 CURVE SMOOTH", "369 357 OFFCURVE", "276 329 OFFCURVE", "161 275 CURVE SMOOTH", "98 245 OFFCURVE", "47 209 OFFCURVE", "10 165 CURVE", "-64 165 LINE", "-55 185 LINE SMOOTH", "-45 207 OFFCURVE", "-35 229 OFFCURVE", "-23 249 CURVE", "73 325 OFFCURVE", "197 387 OFFCURVE", "348 433 CURVE", "304 454 OFFCURVE", "270 467 OFFCURVE", "247 472 CURVE SMOOTH", "224 477 OFFCURVE", "199 473 OFFCURVE", "173 462 CURVE SMOOTH", "166 459 OFFCURVE", "160 458 OFFCURVE", "155 459 CURVE SMOOTH", "142 461 OFFCURVE", "137 469 OFFCURVE", "139 483 CURVE" ); } ); width = 731; } ); }, { glyphname = aAyn.init.AboveHaa; layers = ( { anchors = ( { name = DotAbove; position = "{209, 725}"; }, { name = DotBelow; position = "{513, 312}"; }, { name = HamzaAbove; position = "{209, 725}"; }, { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = TwoDotsAbove; position = "{155, 725}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AynHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = DotAbove; position = "{209, 725}"; }, { name = DotBelow; position = "{513, 312}"; }, { name = HamzaAbove; position = "{209, 725}"; }, { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = TwoDotsAbove; position = "{155, 725}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AynHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = aHaa.fina.AboveHaaIsol2; layers = ( { anchors = ( { name = DigitBelow; position = "{399, -54}"; }, { name = DotAbove; position = "{516, 386}"; }, { name = DotBelow; position = "{399, -176}"; }, { name = HamzaAbove; position = "{516, 386}"; }, { name = HamzaBelow; position = "{399, -44}"; }, { name = TaaAbove; position = "{516, 386}"; }, { name = TaaBelow; position = "{342, 146}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; }, { name = TwoDotsAbove; position = "{467, 386}"; }, { name = TwoDotsBelow; position = "{345, -176}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = DigitBelow; position = "{399, -54}"; }, { name = DotAbove; position = "{516, 386}"; }, { name = DotBelow; position = "{399, -176}"; }, { name = HamzaAbove; position = "{516, 386}"; }, { name = HamzaBelow; position = "{399, -44}"; }, { name = TaaAbove; position = "{516, 386}"; }, { name = TaaBelow; position = "{342, 146}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; }, { name = TwoDotsAbove; position = "{467, 386}"; }, { name = TwoDotsBelow; position = "{345, -176}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = aMem.init.AboveHaa; layers = ( { anchors = ( { name = TashkilAbove; position = "{361, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 201}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "204 319 OFFCURVE", "108 275 OFFCURVE", "40 214 CURVE SMOOTH", "28 203 OFFCURVE", "18 200 OFFCURVE", "9 205 CURVE SMOOTH", "-8 215 OFFCURVE", "0 235 OFFCURVE", "32 266 CURVE SMOOTH", "89 320 OFFCURVE", "164 363 OFFCURVE", "257 396 CURVE", "238 424 LINE SMOOTH", "232 433 OFFCURVE", "231 443 OFFCURVE", "235 452 CURVE SMOOTH", "253 490 OFFCURVE", "268 516 OFFCURVE", "282 531 CURVE SMOOTH", "290 540 OFFCURVE", "299 543 OFFCURVE", "307 538 CURVE SMOOTH", "357 511 OFFCURVE", "393 487 OFFCURVE", "414 466 CURVE SMOOTH", "421 459 OFFCURVE", "421 450 OFFCURVE", "417 437 CURVE SMOOTH", "411 419 OFFCURVE", "395 394 OFFCURVE", "368 360 CURVE SMOOTH", "364 355 OFFCURVE", "350 350 OFFCURVE", "328 345 CURVE SMOOTH" ); } ); width = 560; }, { anchors = ( { name = TashkilAbove; position = "{361, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 201}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "209 305 OFFCURVE", "115 262 OFFCURVE", "49 203 CURVE SMOOTH", "28 184 OFFCURVE", "10 182 OFFCURVE", "-6 198 CURVE", "-23 217 OFFCURVE", "-14 243 OFFCURVE", "22 277 CURVE SMOOTH", "77 329 OFFCURVE", "149 372 OFFCURVE", "235 404 CURVE", "226 416 LINE", "217 430 OFFCURVE", "216 444 OFFCURVE", "222 458 CURVE SMOOTH", "240 497 OFFCURVE", "256 525 OFFCURVE", "270 540 CURVE SMOOTH", "284 555 OFFCURVE", "299 559 OFFCURVE", "314 551 CURVE SMOOTH", "365 524 OFFCURVE", "402 498 OFFCURVE", "424 476 CURVE SMOOTH", "435 465 OFFCURVE", "436 450 OFFCURVE", "430 431 CURVE SMOOTH", "424 412 OFFCURVE", "407 386 OFFCURVE", "379 351 CURVE SMOOTH", "373 343 OFFCURVE", "357 336 OFFCURVE", "331 331 CURVE SMOOTH" ); } ); width = 560; } ); }, { glyphname = aKaf.init.AboveHaa; layers = ( { anchors = ( { name = Dash; position = "{301, 847}"; }, { name = DotAbove; position = "{-16, 802}"; }, { name = DotBelow; position = "{-195, 74}"; }, { name = RingBelow; position = "{283, 732}"; }, { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; }, { name = TwoDotsAbove; position = "{-69, 802}"; }, { name = TwoDotsBelow; position = "{-195, 74}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "591 769 LINE SMOOTH", "587 759 OFFCURVE", "577 752 OFFCURVE", "561 749 CURVE SMOOTH", "290 709 OFFCURVE", "108 665 OFFCURVE", "17 618 CURVE SMOOTH", "5 612 OFFCURVE", "3 606 OFFCURVE", "10 599 CURVE SMOOTH", "64 548 OFFCURVE", "102 508 OFFCURVE", "123 480 CURVE SMOOTH", "164 423 OFFCURVE", "179 366 OFFCURVE", "167 307 CURVE", "145 227 OFFCURVE", "87 188 OFFCURVE", "-5 192 CURVE SMOOTH", "-47 194 OFFCURVE", "-56 210 OFFCURVE", "-31 240 CURVE SMOOTH", "-22 251 OFFCURVE", "-16 257 OFFCURVE", "-13 259 CURVE SMOOTH", "-4 263 OFFCURVE", "5 266 OFFCURVE", "13 268 CURVE SMOOTH", "81 282 OFFCURVE", "125 296 OFFCURVE", "145 313 CURVE", "135 349 OFFCURVE", "95 403 OFFCURVE", "25 473 CURVE SMOOTH", "22 476 OFFCURVE", "19 478 OFFCURVE", "15 477 CURVE", "-3 465 LINE SMOOTH", "-8 462 OFFCURVE", "-14 466 OFFCURVE", "-21 475 CURVE SMOOTH", "-71 534 LINE SMOOTH", "-77 541 OFFCURVE", "-79 552 OFFCURVE", "-76 566 CURVE", "-70 600 OFFCURVE", "-56 630 OFFCURVE", "-35 657 CURVE", "60 726 OFFCURVE", "269 787 OFFCURVE", "593 839 CURVE SMOOTH", "613 842 OFFCURVE", "618 834 OFFCURVE", "610 814 CURVE SMOOTH" ); } ); width = 673; }, { anchors = ( { name = Dash; position = "{301, 847}"; }, { name = DotAbove; position = "{-16, 802}"; }, { name = DotBelow; position = "{-195, 74}"; }, { name = RingBelow; position = "{283, 732}"; }, { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; }, { name = TwoDotsAbove; position = "{-69, 802}"; }, { name = TwoDotsBelow; position = "{-195, 74}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "605 763 LINE SMOOTH", "598 748 OFFCURVE", "584 739 OFFCURVE", "563 735 CURVE", "294 695 OFFCURVE", "114 651 OFFCURVE", "24 605 CURVE", "77 555 OFFCURVE", "113 517 OFFCURVE", "134 489 CURVE", "178 429 OFFCURVE", "194 367 OFFCURVE", "181 304 CURVE", "156 216 OFFCURVE", "94 174 OFFCURVE", "-5 178 CURVE SMOOTH", "-33 179 OFFCURVE", "-51 186 OFFCURVE", "-57 200 CURVE SMOOTH", "-63 214 OFFCURVE", "-59 229 OFFCURVE", "-46 245 CURVE SMOOTH", "-33 261 OFFCURVE", "-23 271 OFFCURVE", "-15 274 CURVE SMOOTH", "-7 277 OFFCURVE", "1 280 OFFCURVE", "10 282 CURVE SMOOTH", "67 293 OFFCURVE", "106 306 OFFCURVE", "127 319 CURVE", "113 353 OFFCURVE", "77 400 OFFCURVE", "17 460 CURVE", "5 453 LINE", "-7 446 OFFCURVE", "-20 450 OFFCURVE", "-33 465 CURVE SMOOTH", "-82 525 LINE SMOOTH", "-91 536 OFFCURVE", "-94 551 OFFCURVE", "-90 569 CURVE SMOOTH", "-83 605 OFFCURVE", "-68 638 OFFCURVE", "-45 668 CURVE", "53 739 OFFCURVE", "264 800 OFFCURVE", "590 853 CURVE SMOOTH", "600 854 OFFCURVE", "608 854 OFFCURVE", "614 852 CURVE SMOOTH", "630 845 OFFCURVE", "633 830 OFFCURVE", "624 808 CURVE SMOOTH" ); } ); width = 673; } ); }, { glyphname = "fourdotsabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{-29, 342}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-83 247 OFFCURVE", "-81 247 OFFCURVE", "-77 246 CURVE SMOOTH", "-55 239 OFFCURVE", "-35 227 OFFCURVE", "-17 213 CURVE", "20 267 LINE SMOOTH", "22 270 OFFCURVE", "24 270 OFFCURVE", "28 269 CURVE SMOOTH", "54 260 OFFCURVE", "78 246 OFFCURVE", "99 227 CURVE SMOOTH", "102 224 OFFCURVE", "102 221 OFFCURVE", "100 218 CURVE SMOOTH", "55 146 LINE", "76 137 OFFCURVE", "95 126 OFFCURVE", "113 110 CURVE SMOOTH", "116 107 OFFCURVE", "116 104 OFFCURVE", "114 101 CURVE SMOOTH", "66 25 LINE SMOOTH", "64 22 OFFCURVE", "62 23 OFFCURVE", "57 27 CURVE SMOOTH", "53 31 OFFCURVE", "34 42 OFFCURVE", "0 62 CURVE", "-38 3 LINE SMOOTH", "-40 0 OFFCURVE", "-43 0 OFFCURVE", "-48 4 CURVE SMOOTH", "-53 8 OFFCURVE", "-76 23 OFFCURVE", "-118 48 CURVE SMOOTH", "-121 50 OFFCURVE", "-121 52 OFFCURVE", "-119 54 CURVE SMOOTH", "-71 126 LINE", "-82 133 OFFCURVE", "-102 146 OFFCURVE", "-133 165 CURVE SMOOTH", "-136 167 OFFCURVE", "-136 169 OFFCURVE", "-134 171 CURVE SMOOTH", "-85 244 LINE SMOOTH" ); }, { closed = 1; nodes = ( "34 149 LINE SMOOTH", "34 150 LINE", "25 156 OFFCURVE", "8 166 OFFCURVE", "-15 180 CURVE", "-50 124 LINE", "-33 117 OFFCURVE", "-17 107 OFFCURVE", "-2 96 CURVE" ); } ); width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{-29, 342}"; }, { name = _TwoDotsAbove; position = "{-54, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "17 277 OFFCURVE", "23 277 OFFCURVE", "30 275 CURVE", "57 265 OFFCURVE", "82 251 OFFCURVE", "103 232 CURVE", "109 226 OFFCURVE", "110 221 OFFCURVE", "106 214 CURVE", "65 150 LINE", "84 141 OFFCURVE", "102 129 OFFCURVE", "118 115 CURVE", "124 109 OFFCURVE", "125 104 OFFCURVE", "121 97 CURVE", "73 21 LINE", "68 14 OFFCURVE", "61 14 OFFCURVE", "55 19 CURVE SMOOTH", "49 24 OFFCURVE", "31 35 OFFCURVE", "2 53 CURVE", "-31 -1 LINE", "-36 -8 OFFCURVE", "-42 -8 OFFCURVE", "-49 -3 CURVE SMOOTH", "-56 2 OFFCURVE", "-81 17 OFFCURVE", "-122 42 CURVE SMOOTH", "-129 46 OFFCURVE", "-130 52 OFFCURVE", "-125 59 CURVE SMOOTH", "-81 125 LINE", "-93 133 OFFCURVE", "-111 144 OFFCURVE", "-136 159 CURVE SMOOTH", "-143 163 OFFCURVE", "-145 169 OFFCURVE", "-140 176 CURVE SMOOTH", "-91 248 LINE SMOOTH", "-87 254 OFFCURVE", "-81 255 OFFCURVE", "-74 253 CURVE", "-54 246 OFFCURVE", "-36 236 OFFCURVE", "-19 224 CURVE", "13 271 LINE SMOOTH" ); }, { closed = 1; nodes = ( "-27 121 OFFCURVE", "-15 115 OFFCURVE", "-4 107 CURVE", "23 148 LINE", "14 154 OFFCURVE", "3 161 OFFCURVE", "-12 170 CURVE", "-39 127 LINE" ); } ); width = 0; } ); }, { glyphname = "fourdotsbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -93}"; }, { name = _TwoDotsBelow; position = "{-69, 186}"; } ); components = ( { name = "fourdotsabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -93}"; }, { name = _TwoDotsBelow; position = "{-69, 186}"; } ); components = ( { name = "fourdotsabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "threedotshorizontalabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{0, 244}"; }, { name = _TwoDotsAbove; position = "{0, 93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-93 153 OFFCURVE", "-91 153 OFFCURVE", "-87 151 CURVE SMOOTH", "-69 141 OFFCURVE", "-54 129 OFFCURVE", "-41 114 CURVE", "-2 151 LINE SMOOTH", "0 153 OFFCURVE", "2 153 OFFCURVE", "6 151 CURVE SMOOTH", "24 141 OFFCURVE", "39 129 OFFCURVE", "52 114 CURVE", "90 151 LINE SMOOTH", "92 153 OFFCURVE", "95 153 OFFCURVE", "99 151 CURVE SMOOTH", "123 137 OFFCURVE", "143 119 OFFCURVE", "160 97 CURVE SMOOTH", "162 94 OFFCURVE", "162 90 OFFCURVE", "160 87 CURVE SMOOTH", "98 23 LINE SMOOTH", "95 20 OFFCURVE", "92 21 OFFCURVE", "88 26 CURVE SMOOTH", "85 30 OFFCURVE", "70 43 OFFCURVE", "46 66 CURVE", "5 23 LINE SMOOTH", "2 20 OFFCURVE", "-1 21 OFFCURVE", "-5 26 CURVE SMOOTH", "-8 30 OFFCURVE", "-22 43 OFFCURVE", "-46 66 CURVE", "-88 23 LINE SMOOTH", "-91 20 OFFCURVE", "-94 21 OFFCURVE", "-98 26 CURVE SMOOTH", "-102 31 OFFCURVE", "-122 50 OFFCURVE", "-158 83 CURVE SMOOTH", "-160 85 OFFCURVE", "-160 87 OFFCURVE", "-158 89 CURVE SMOOTH", "-95 151 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{0, 244}"; }, { name = _TwoDotsAbove; position = "{0, 93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "89 162 OFFCURVE", "95 163 OFFCURVE", "102 159 CURVE", "127 144 OFFCURVE", "147 125 OFFCURVE", "165 102 CURVE", "169 95 OFFCURVE", "169 89 OFFCURVE", "164 83 CURVE", "102 19 LINE", "95 13 OFFCURVE", "90 13 OFFCURVE", "85 19 CURVE SMOOTH", "80 25 OFFCURVE", "67 37 OFFCURVE", "46 57 CURVE", "10 19 LINE", "3 13 OFFCURVE", "-2 13 OFFCURVE", "-7 19 CURVE SMOOTH", "-12 25 OFFCURVE", "-25 37 OFFCURVE", "-46 57 CURVE", "-83 19 LINE", "-90 13 OFFCURVE", "-95 14 OFFCURVE", "-101 21 CURVE SMOOTH", "-107 28 OFFCURVE", "-128 46 OFFCURVE", "-163 79 CURVE SMOOTH", "-169 85 OFFCURVE", "-169 90 OFFCURVE", "-163 96 CURVE SMOOTH", "-101 157 LINE SMOOTH", "-96 162 OFFCURVE", "-90 163 OFFCURVE", "-83 159 CURVE", "-67 150 OFFCURVE", "-54 138 OFFCURVE", "-41 125 CURVE", "-8 157 LINE SMOOTH", "-3 162 OFFCURVE", "2 163 OFFCURVE", "9 159 CURVE", "25 150 OFFCURVE", "39 138 OFFCURVE", "52 125 CURVE", "84 157 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "threedotshorizontalbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{20, -93}"; }, { name = _TwoDotsBelow; position = "{0, 93}"; } ); components = ( { name = "threedotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{20, -93}"; }, { name = _TwoDotsBelow; position = "{0, 93}"; } ); components = ( { name = "threedotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = aYaa.tail; layers = ( { anchors = ( { name = _Tail; position = "{66, 90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "64 104 OFFCURVE", "71 107 OFFCURVE", "76 103 CURVE SMOOTH", "81 99 OFFCURVE", "80 92 OFFCURVE", "74 83 CURVE SMOOTH", "19 4 OFFCURVE", "-45 -41 OFFCURVE", "-117 -51 CURVE SMOOTH", "-126 -52 OFFCURVE", "-131 -48 OFFCURVE", "-130 -37 CURVE SMOOTH", "-128 -2 LINE SMOOTH", "-127 10 OFFCURVE", "-124 16 OFFCURVE", "-117 16 CURVE SMOOTH", "-57 18 OFFCURVE", "0 44 OFFCURVE", "55 96 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _Tail; position = "{66, 90}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "62 114 OFFCURVE", "75 118 OFFCURVE", "82 110 CURVE SMOOTH", "89 102 OFFCURVE", "87 90 OFFCURVE", "76 75 CURVE SMOOTH", "18 -5 OFFCURVE", "-45 -52 OFFCURVE", "-115 -65 CURVE SMOOTH", "-136 -69 OFFCURVE", "-146 -62 OFFCURVE", "-145 -45 CURVE SMOOTH", "-142 6 LINE SMOOTH", "-141 22 OFFCURVE", "-133 30 OFFCURVE", "-118 30 CURVE SMOOTH", "-50 32 OFFCURVE", "4 55 OFFCURVE", "45 97 CURVE SMOOTH" ); } ); width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "wavyhamzaabove-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{-24, 718}"; }, { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 0, 920}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{-24, 718}"; }, { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 0, 920}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "vbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelow; position = "{20, -337}"; } ); components = ( { name = "vabove-ar"; transform = "{1, 0, 0, 1, 0, -977}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelow; position = "{20, -337}"; } ); components = ( { name = "vabove-ar"; transform = "{1, 0, 0, 1, 0, -977}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "vinvertedbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelow; position = "{20, -337}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 0, -977}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelow; position = "{20, -337}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 0, -977}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "tahbelow-ar"; layers = ( { anchors = ( { name = MarkDotBelow; position = "{15, 0}"; }, { name = TashkilBelowDot; position = "{15, 0}"; }, { name = _TaaBelow; position = "{-20, 366}"; } ); components = ( { name = smalltaa.above; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = MarkDotBelow; position = "{15, 0}"; }, { name = TashkilBelowDot; position = "{15, 0}"; }, { name = _TaaBelow; position = "{-20, 366}"; } ); components = ( { name = smalltaa.above; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = twostrokes.below; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-8 116 OFFCURVE", "-5 68 OFFCURVE", "-7 17 CURVE SMOOTH", "-7 11 OFFCURVE", "-9 5 OFFCURVE", "-12 0 CURVE SMOOTH", "-38 -42 LINE SMOOTH", "-49 -60 OFFCURVE", "-53 -56 OFFCURVE", "-53 -32 CURVE SMOOTH", "-51 18 OFFCURVE", "-53 63 OFFCURVE", "-57 104 CURVE SMOOTH", "-58 110 OFFCURVE", "-57 114 OFFCURVE", "-54 119 CURVE SMOOTH", "-28 161 LINE SMOOTH", "-21 173 OFFCURVE", "-17 173 OFFCURVE", "-15 160 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "118 116 OFFCURVE", "120 68 OFFCURVE", "118 17 CURVE SMOOTH", "118 11 OFFCURVE", "116 5 OFFCURVE", "113 0 CURVE SMOOTH", "88 -42 LINE SMOOTH", "77 -60 OFFCURVE", "72 -56 OFFCURVE", "72 -32 CURVE SMOOTH", "74 18 OFFCURVE", "72 63 OFFCURVE", "68 104 CURVE SMOOTH", "67 110 OFFCURVE", "69 114 OFFCURVE", "72 119 CURVE SMOOTH", "97 161 LINE SMOOTH", "104 173 OFFCURVE", "109 173 OFFCURVE", "111 160 CURVE SMOOTH" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "7 117 OFFCURVE", "9 68 OFFCURVE", "7 16 CURVE", "6 7 OFFCURVE", "4 0 OFFCURVE", "0 -7 CURVE", "-25 -49 LINE SMOOTH", "-32 -61 OFFCURVE", "-40 -68 OFFCURVE", "-48 -68 CURVE SMOOTH", "-63 -68 OFFCURVE", "-69 -57 OFFCURVE", "-68 -35 CURVE SMOOTH", "-66 11 OFFCURVE", "-67 56 OFFCURVE", "-72 102 CURVE SMOOTH", "-73 111 OFFCURVE", "-71 119 OFFCURVE", "-66 127 CURVE SMOOTH", "-41 169 LINE SMOOTH", "-36 178 OFFCURVE", "-29 183 OFFCURVE", "-23 184 CURVE SMOOTH", "-10 186 OFFCURVE", "-3 179 OFFCURVE", "0 162 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "132 117 OFFCURVE", "135 68 OFFCURVE", "133 16 CURVE", "132 7 OFFCURVE", "130 0 OFFCURVE", "126 -7 CURVE", "100 -49 LINE SMOOTH", "93 -61 OFFCURVE", "86 -68 OFFCURVE", "78 -68 CURVE SMOOTH", "63 -68 OFFCURVE", "56 -57 OFFCURVE", "57 -35 CURVE SMOOTH", "59 11 OFFCURVE", "59 56 OFFCURVE", "54 102 CURVE SMOOTH", "53 111 OFFCURVE", "55 119 OFFCURVE", "60 127 CURVE SMOOTH", "85 169 LINE SMOOTH", "90 178 OFFCURVE", "96 183 OFFCURVE", "102 184 CURVE SMOOTH", "115 186 OFFCURVE", "122 179 OFFCURVE", "125 162 CURVE SMOOTH" ); } ); width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "wasla-ar"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{248, 818}"; }, { name = _HamzaAbove; position = "{239, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "233 760 OFFCURVE", "227 752 OFFCURVE", "222 744 CURVE", "251 739 OFFCURVE", "280 744 OFFCURVE", "310 759 CURVE", "315 782 OFFCURVE", "308 794 OFFCURVE", "289 795 CURVE", "274 795 OFFCURVE", "258 787 OFFCURVE", "240 768 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "225 781 OFFCURVE", "242 804 OFFCURVE", "256 816 CURVE SMOOTH", "274 832 OFFCURVE", "293 841 OFFCURVE", "310 841 CURVE SMOOTH", "336 841 OFFCURVE", "351 830 OFFCURVE", "356 808 CURVE SMOOTH", "360 789 OFFCURVE", "355 768 OFFCURVE", "341 746 CURVE", "303 695 OFFCURVE", "259 671 OFFCURVE", "211 674 CURVE SMOOTH", "189 676 OFFCURVE", "167 683 OFFCURVE", "146 697 CURVE", "138 702 OFFCURVE", "131 701 OFFCURVE", "124 694 CURVE SMOOTH", "115 687 LINE", "109 682 OFFCURVE", "106 680 OFFCURVE", "103 681 CURVE", "99 684 OFFCURVE", "98 688 OFFCURVE", "101 695 CURVE", "129 749 OFFCURVE", "154 770 OFFCURVE", "177 758 CURVE SMOOTH", "184 754 OFFCURVE", "193 751 OFFCURVE", "202 748 CURVE" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{248, 818}"; }, { name = _HamzaAbove; position = "{239, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "233 760 OFFCURVE", "227 752 OFFCURVE", "222 744 CURVE", "251 739 OFFCURVE", "280 744 OFFCURVE", "310 759 CURVE", "315 782 OFFCURVE", "308 794 OFFCURVE", "289 795 CURVE", "274 795 OFFCURVE", "258 787 OFFCURVE", "240 768 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "221 788 OFFCURVE", "239 811 OFFCURVE", "256 825 CURVE SMOOTH", "273 839 OFFCURVE", "291 847 OFFCURVE", "310 848 CURVE", "340 848 OFFCURVE", "357 835 OFFCURVE", "363 810 CURVE", "368 785 OFFCURVE", "363 762 OFFCURVE", "347 741 CURVE SMOOTH", "307 688 OFFCURVE", "261 664 OFFCURVE", "211 667 CURVE", "187 669 OFFCURVE", "165 677 OFFCURVE", "143 691 CURVE", "138 693 OFFCURVE", "132 693 OFFCURVE", "128 689 CURVE SMOOTH", "120 682 LINE", "111 675 OFFCURVE", "104 672 OFFCURVE", "99 675 CURVE", "92 681 OFFCURVE", "89 689 OFFCURVE", "94 699 CURVE", "124 757 OFFCURVE", "153 779 OFFCURVE", "181 765 CURVE SMOOTH", "187 762 OFFCURVE", "193 759 OFFCURVE", "199 757 CURVE" ); } ); width = 0; } ); }, { glyphname = "fathatan-ar.small"; layers = ( { anchors = ( { name = _TashkilTashkilAbove; position = "{0, 952}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "115 1066 OFFCURVE", "121 1064 OFFCURVE", "119 1056 CURVE SMOOTH", "116 1036 LINE SMOOTH", "114 1027 OFFCURVE", "108 1021 OFFCURVE", "97 1018 CURVE SMOOTH", "-74 960 LINE SMOOTH", "-78 959 OFFCURVE", "-81 959 OFFCURVE", "-84 961 CURVE SMOOTH", "-87 963 OFFCURVE", "-88 966 OFFCURVE", "-87 971 CURVE SMOOTH", "-84 986 LINE SMOOTH", "-83 991 OFFCURVE", "-80 994 OFFCURVE", "-73 997 CURVE SMOOTH", "102 1062 LINE SMOOTH" ); }, { closed = 1; nodes = ( "118 1153 OFFCURVE", "124 1151 OFFCURVE", "123 1143 CURVE SMOOTH", "118 1116 LINE SMOOTH", "117 1109 OFFCURVE", "112 1105 OFFCURVE", "103 1101 CURVE SMOOTH", "-73 1032 LINE SMOOTH", "-77 1030 OFFCURVE", "-81 1031 OFFCURVE", "-84 1033 CURVE SMOOTH", "-87 1035 OFFCURVE", "-89 1038 OFFCURVE", "-88 1043 CURVE SMOOTH", "-86 1057 LINE SMOOTH", "-85 1062 OFFCURVE", "-82 1065 OFFCURVE", "-75 1068 CURVE SMOOTH", "105 1148 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _TashkilTashkilAbove; position = "{0, 952}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "107 1069 OFFCURVE", "111 1070 OFFCURVE", "115 1069 CURVE SMOOTH", "122 1068 OFFCURVE", "125 1063 OFFCURVE", "124 1056 CURVE SMOOTH", "124 1055 OFFCURVE", "124 1055 OFFCURVE", "124 1055 CURVE SMOOTH", "121 1035 LINE", "118 1024 OFFCURVE", "111 1017 OFFCURVE", "99 1013 CURVE SMOOTH", "-72 955 LINE", "-78 953 OFFCURVE", "-83 954 OFFCURVE", "-87 957 CURVE", "-92 961 OFFCURVE", "-93 965 OFFCURVE", "-92 972 CURVE SMOOTH", "-89 987 LINE", "-87 993 OFFCURVE", "-82 998 OFFCURVE", "-75 1001 CURVE", "100 1067 LINE", "101 1067 LINE" ); }, { closed = 1; nodes = ( "110 1154 OFFCURVE", "115 1155 OFFCURVE", "119 1155 CURVE SMOOTH", "126 1154 OFFCURVE", "128 1150 OFFCURVE", "127 1143 CURVE SMOOTH", "127 1142 OFFCURVE", "127 1142 OFFCURVE", "127 1142 CURVE SMOOTH", "123 1115 LINE SMOOTH", "121 1106 OFFCURVE", "115 1100 OFFCURVE", "105 1096 CURVE SMOOTH", "-71 1028 LINE SMOOTH", "-77 1026 OFFCURVE", "-82 1026 OFFCURVE", "-87 1029 CURVE", "-92 1032 OFFCURVE", "-94 1036 OFFCURVE", "-93 1043 CURVE SMOOTH", "-91 1058 LINE", "-90 1065 OFFCURVE", "-85 1069 OFFCURVE", "-77 1073 CURVE SMOOTH", "103 1152 LINE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "fatha-ar.small"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{0, 1099}"; }, { name = TashkilTashkilAbove2; position = "{0, 1172}"; }, { name = _MarkAbove; position = "{0, 952}"; }, { name = _TashkilAbove; position = "{0, 952}"; }, { name = _TashkilAboveDot; position = "{0, 952}"; }, { name = _TashkilTashkilAbove; position = "{0, 952}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "105 1103 LINE SMOOTH", "117 1108 OFFCURVE", "122 1105 OFFCURVE", "121 1095 CURVE SMOOTH", "117 1061 LINE SMOOTH", "116 1054 OFFCURVE", "113 1049 OFFCURVE", "108 1047 CURVE SMOOTH", "-68 986 LINE SMOOTH", "-83 981 OFFCURVE", "-89 985 OFFCURVE", "-87 997 CURVE SMOOTH", "-85 1011 LINE SMOOTH", "-84 1017 OFFCURVE", "-82 1020 OFFCURVE", "-75 1023 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{0, 1099}"; }, { name = TashkilTashkilAbove2; position = "{0, 1172}"; }, { name = _MarkAbove; position = "{0, 952}"; }, { name = _TashkilAbove; position = "{0, 952}"; }, { name = _TashkilAboveDot; position = "{0, 952}"; }, { name = _TashkilTashkilAbove; position = "{0, 952}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "104 1107 LINE SMOOTH", "110 1109 OFFCURVE", "114 1110 OFFCURVE", "117 1110 CURVE SMOOTH", "124 1109 OFFCURVE", "127 1104 OFFCURVE", "126 1095 CURVE SMOOTH", "122 1060 LINE", "120 1052 OFFCURVE", "116 1046 OFFCURVE", "110 1043 CURVE", "109 1043 LINE", "-66 981 LINE SMOOTH", "-72 979 OFFCURVE", "-77 979 OFFCURVE", "-81 979 CURVE SMOOTH", "-90 981 OFFCURVE", "-93 987 OFFCURVE", "-92 998 CURVE", "-90 1011 LINE SMOOTH", "-89 1018 OFFCURVE", "-85 1024 OFFCURVE", "-77 1027 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "opendammatan-ar.small"; layers = ( { anchors = ( { name = _TashkilTashkilAbove; position = "{220, 854}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "224 1092 OFFCURVE", "231 1090 OFFCURVE", "237 1083 CURVE SMOOTH", "242 1076 OFFCURVE", "244 1066 OFFCURVE", "244 1054 CURVE SMOOTH", "244 1042 OFFCURVE", "240 1023 OFFCURVE", "229 998 CURVE", "238 992 OFFCURVE", "245 988 OFFCURVE", "249 986 CURVE SMOOTH", "253 984 OFFCURVE", "253 979 OFFCURVE", "250 973 CURVE SMOOTH", "241 953 LINE SMOOTH", "238 947 OFFCURVE", "227 950 OFFCURVE", "208 961 CURVE", "178 922 OFFCURVE", "151 896 OFFCURVE", "127 883 CURVE SMOOTH", "116 877 OFFCURVE", "109 876 OFFCURVE", "106 881 CURVE SMOOTH", "103 886 OFFCURVE", "108 892 OFFCURVE", "122 902 CURVE SMOOTH", "148 920 OFFCURVE", "171 944 OFFCURVE", "192 972 CURVE", "159 988 OFFCURVE", "149 1008 OFFCURVE", "161 1034 CURVE SMOOTH", "175 1065 OFFCURVE", "194 1084 OFFCURVE", "216 1090 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "206 1044 OFFCURVE", "200 1045 OFFCURVE", "190 1041 CURVE SMOOTH", "180 1037 OFFCURVE", "177 1032 OFFCURVE", "180 1029 CURVE SMOOTH", "185 1023 OFFCURVE", "195 1015 OFFCURVE", "211 1007 CURVE", "215 1019 OFFCURVE", "214 1030 OFFCURVE", "210 1037 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "345 1094 OFFCURVE", "352 1092 OFFCURVE", "358 1085 CURVE SMOOTH", "363 1078 OFFCURVE", "365 1068 OFFCURVE", "365 1056 CURVE SMOOTH", "365 1044 OFFCURVE", "361 1025 OFFCURVE", "350 1000 CURVE", "359 994 OFFCURVE", "366 990 OFFCURVE", "370 988 CURVE SMOOTH", "374 986 OFFCURVE", "375 981 OFFCURVE", "372 975 CURVE SMOOTH", "362 955 LINE SMOOTH", "359 949 OFFCURVE", "349 952 OFFCURVE", "330 963 CURVE", "300 924 OFFCURVE", "273 898 OFFCURVE", "249 885 CURVE SMOOTH", "238 879 OFFCURVE", "230 878 OFFCURVE", "227 883 CURVE SMOOTH", "224 888 OFFCURVE", "229 894 OFFCURVE", "243 904 CURVE SMOOTH", "269 922 OFFCURVE", "292 946 OFFCURVE", "313 974 CURVE", "280 990 OFFCURVE", "270 1010 OFFCURVE", "282 1036 CURVE SMOOTH", "296 1067 OFFCURVE", "315 1086 OFFCURVE", "337 1092 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "328 1046 OFFCURVE", "321 1047 OFFCURVE", "311 1043 CURVE SMOOTH", "301 1039 OFFCURVE", "298 1034 OFFCURVE", "301 1031 CURVE SMOOTH", "306 1025 OFFCURVE", "316 1017 OFFCURVE", "332 1009 CURVE", "336 1021 OFFCURVE", "336 1032 OFFCURVE", "332 1039 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _TashkilTashkilAbove; position = "{220, 854}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "225 1098 OFFCURVE", "234 1095 OFFCURVE", "241 1086 CURVE SMOOTH", "241 1086 LINE SMOOTH", "246 1078 OFFCURVE", "248 1068 OFFCURVE", "249 1055 CURVE SMOOTH", "249 1042 OFFCURVE", "244 1024 OFFCURVE", "235 1000 CURVE", "243 995 OFFCURVE", "248 992 OFFCURVE", "251 990 CURVE SMOOTH", "258 986 OFFCURVE", "259 980 OFFCURVE", "255 971 CURVE SMOOTH", "245 951 LINE", "240 943 OFFCURVE", "229 945 OFFCURVE", "210 955 CURVE", "181 918 OFFCURVE", "154 891 OFFCURVE", "130 878 CURVE", "116 871 OFFCURVE", "107 871 OFFCURVE", "102 878 CURVE", "97 885 OFFCURVE", "103 895 OFFCURVE", "119 906 CURVE SMOOTH", "143 923 OFFCURVE", "165 945 OFFCURVE", "185 970 CURVE", "154 988 OFFCURVE", "144 1010 OFFCURVE", "156 1036 CURVE SMOOTH", "171 1069 OFFCURVE", "190 1088 OFFCURVE", "214 1095 CURVE" ); }, { closed = 1; nodes = ( "203 1038 OFFCURVE", "198 1039 OFFCURVE", "192 1036 CURVE SMOOTH", "188 1034 OFFCURVE", "186 1033 OFFCURVE", "184 1032 CURVE", "189 1027 OFFCURVE", "197 1022 OFFCURVE", "208 1015 CURVE", "210 1023 OFFCURVE", "209 1029 OFFCURVE", "206 1034 CURVE" ); }, { closed = 1; nodes = ( "346 1100 OFFCURVE", "355 1097 OFFCURVE", "362 1088 CURVE", "367 1080 OFFCURVE", "370 1070 OFFCURVE", "370 1057 CURVE SMOOTH", "370 1044 OFFCURVE", "365 1026 OFFCURVE", "356 1002 CURVE", "364 997 OFFCURVE", "370 994 OFFCURVE", "373 992 CURVE SMOOTH", "380 988 OFFCURVE", "380 982 OFFCURVE", "376 973 CURVE SMOOTH", "366 953 LINE", "361 945 OFFCURVE", "350 947 OFFCURVE", "331 957 CURVE", "302 920 OFFCURVE", "275 893 OFFCURVE", "251 880 CURVE", "237 873 OFFCURVE", "228 873 OFFCURVE", "223 880 CURVE", "218 887 OFFCURVE", "224 897 OFFCURVE", "240 908 CURVE SMOOTH", "264 925 OFFCURVE", "286 947 OFFCURVE", "306 972 CURVE", "275 990 OFFCURVE", "265 1012 OFFCURVE", "277 1038 CURVE SMOOTH", "292 1071 OFFCURVE", "311 1090 OFFCURVE", "335 1097 CURVE" ); }, { closed = 1; nodes = ( "324 1040 OFFCURVE", "319 1041 OFFCURVE", "313 1038 CURVE SMOOTH", "309 1036 OFFCURVE", "307 1035 OFFCURVE", "305 1034 CURVE", "310 1029 OFFCURVE", "318 1024 OFFCURVE", "329 1017 CURVE", "331 1025 OFFCURVE", "330 1031 OFFCURVE", "327 1036 CURVE" ); } ); width = 0; } ); }, { glyphname = "damma-ar.small"; layers = ( { anchors = ( { name = TashkilTashkilAbove2; position = "{-39, 1147}"; }, { name = _MarkAbove; position = "{0, 913}"; }, { name = _TashkilAbove; position = "{0, 913}"; }, { name = _TashkilTashkilAbove; position = "{0, 913}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "53 1195 OFFCURVE", "62 1192 OFFCURVE", "69 1183 CURVE SMOOTH", "75 1175 OFFCURVE", "78 1162 OFFCURVE", "79 1147 CURVE SMOOTH", "80 1132 OFFCURVE", "73 1109 OFFCURVE", "59 1077 CURVE", "71 1070 OFFCURVE", "79 1065 OFFCURVE", "84 1062 CURVE SMOOTH", "89 1059 OFFCURVE", "90 1053 OFFCURVE", "86 1045 CURVE SMOOTH", "74 1021 LINE SMOOTH", "70 1014 OFFCURVE", "57 1016 OFFCURVE", "34 1030 CURVE", "-3 981 OFFCURVE", "-38 950 OFFCURVE", "-68 933 CURVE SMOOTH", "-82 926 OFFCURVE", "-91 924 OFFCURVE", "-95 930 CURVE SMOOTH", "-99 936 OFFCURVE", "-92 945 OFFCURVE", "-75 957 CURVE SMOOTH", "-42 980 OFFCURVE", "-13 1009 OFFCURVE", "13 1044 CURVE", "-28 1064 OFFCURVE", "-41 1090 OFFCURVE", "-26 1122 CURVE SMOOTH", "-8 1161 OFFCURVE", "15 1184 OFFCURVE", "43 1192 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "31 1134 OFFCURVE", "23 1136 OFFCURVE", "11 1130 CURVE SMOOTH", "-1 1124 OFFCURVE", "-5 1120 OFFCURVE", "-2 1116 CURVE SMOOTH", "5 1108 OFFCURVE", "17 1098 OFFCURVE", "37 1088 CURVE", "42 1103 OFFCURVE", "41 1116 OFFCURVE", "36 1125 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove2; position = "{-39, 1147}"; }, { name = _MarkAbove; position = "{0, 913}"; }, { name = _TashkilAbove; position = "{0, 913}"; }, { name = _TashkilTashkilAbove; position = "{0, 913}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "55 1200 OFFCURVE", "65 1197 OFFCURVE", "73 1186 CURVE", "80 1177 OFFCURVE", "82 1163 OFFCURVE", "83 1147 CURVE SMOOTH", "83 1131 OFFCURVE", "77 1109 OFFCURVE", "65 1079 CURVE", "75 1073 OFFCURVE", "82 1069 OFFCURVE", "87 1066 CURVE SMOOTH", "94 1061 OFFCURVE", "96 1053 OFFCURVE", "91 1043 CURVE SMOOTH", "79 1019 LINE", "74 1009 OFFCURVE", "59 1011 OFFCURVE", "35 1024 CURVE", "-2 977 OFFCURVE", "-35 945 OFFCURVE", "-65 928 CURVE", "-81 920 OFFCURVE", "-93 919 OFFCURVE", "-99 927 CURVE", "-104 936 OFFCURVE", "-97 947 OFFCURVE", "-78 961 CURVE SMOOTH", "-47 983 OFFCURVE", "-20 1010 OFFCURVE", "5 1042 CURVE", "-34 1063 OFFCURVE", "-46 1091 OFFCURVE", "-31 1124 CURVE", "-12 1164 OFFCURVE", "13 1189 OFFCURVE", "42 1197 CURVE" ); }, { closed = 1; nodes = ( "28 1129 OFFCURVE", "22 1129 OFFCURVE", "13 1125 CURVE SMOOTH", "7 1122 OFFCURVE", "3 1121 OFFCURVE", "1 1119 CURVE", "7 1112 OFFCURVE", "18 1105 OFFCURVE", "34 1096 CURVE", "36 1107 OFFCURVE", "36 1116 OFFCURVE", "32 1123 CURVE" ); } ); width = 0; } ); }, { glyphname = "sukun-ar.small2"; layers = ( { anchors = ( { name = _MarkAbove; position = "{-24, 1077}"; }, { name = _TashkilAbove; position = "{-24, 1077}"; }, { name = _TashkilTashkilAbove; position = "{-24, 1077}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-74 1215 OFFCURVE", "-66 1225 OFFCURVE", "-59 1231 CURVE SMOOTH", "-42 1245 OFFCURVE", "-23 1243 OFFCURVE", "-3 1223 CURVE SMOOTH", "17 1203 OFFCURVE", "25 1176 OFFCURVE", "20 1141 CURVE SMOOTH", "17 1124 OFFCURVE", "8 1108 OFFCURVE", "-6 1094 CURVE SMOOTH", "-20 1080 OFFCURVE", "-37 1074 OFFCURVE", "-58 1074 CURVE SMOOTH", "-79 1074 OFFCURVE", "-93 1083 OFFCURVE", "-101 1099 CURVE SMOOTH", "-109 1115 OFFCURVE", "-111 1132 OFFCURVE", "-105 1150 CURVE SMOOTH", "-99 1168 OFFCURVE", "-92 1185 OFFCURVE", "-83 1200 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "-68 1183 OFFCURVE", "-75 1181 OFFCURVE", "-78 1175 CURVE SMOOTH", "-87 1160 OFFCURVE", "-85 1148 OFFCURVE", "-72 1141 CURVE SMOOTH", "-59 1134 OFFCURVE", "-43 1133 OFFCURVE", "-22 1139 CURVE SMOOTH", "-15 1141 OFFCURVE", "-14 1146 OFFCURVE", "-18 1154 CURVE SMOOTH", "-26 1171 OFFCURVE", "-39 1180 OFFCURVE", "-59 1182 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _MarkAbove; position = "{-24, 1077}"; }, { name = _TashkilAbove; position = "{-24, 1077}"; }, { name = _TashkilTashkilAbove; position = "{-24, 1077}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-78 1219 OFFCURVE", "-69 1229 OFFCURVE", "-62 1235 CURVE SMOOTH", "-43 1250 OFFCURVE", "-22 1248 OFFCURVE", "0 1227 CURVE", "21 1206 OFFCURVE", "29 1177 OFFCURVE", "24 1140 CURVE", "21 1121 OFFCURVE", "13 1105 OFFCURVE", "-2 1090 CURVE", "-18 1075 OFFCURVE", "-37 1068 OFFCURVE", "-59 1069 CURVE", "-81 1070 OFFCURVE", "-96 1080 OFFCURVE", "-105 1097 CURVE", "-113 1114 OFFCURVE", "-116 1132 OFFCURVE", "-110 1151 CURVE SMOOTH", "-104 1170 OFFCURVE", "-96 1187 OFFCURVE", "-87 1203 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "-66 1177 OFFCURVE", "-71 1176 OFFCURVE", "-73 1172 CURVE SMOOTH", "-80 1160 OFFCURVE", "-79 1151 OFFCURVE", "-70 1145 CURVE", "-58 1138 OFFCURVE", "-43 1138 OFFCURVE", "-24 1144 CURVE SMOOTH", "-21 1145 OFFCURVE", "-20 1145 OFFCURVE", "-21 1148 CURVE SMOOTH", "-21 1149 OFFCURVE", "-21 1151 OFFCURVE", "-22 1152 CURVE SMOOTH", "-29 1167 OFFCURVE", "-42 1175 OFFCURVE", "-59 1177 CURVE" ); } ); width = 0; } ); }, { glyphname = "kasra-ar.small2"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{-83, -269}"; }, { name = _TashkilBelow; position = "{0, -271}"; }, { name = _TashkilTashkilBelow; position = "{0, -271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "127 -231 OFFCURVE", "132 -232 OFFCURVE", "131 -241 CURVE SMOOTH", "126 -284 LINE SMOOTH", "125 -290 OFFCURVE", "123 -295 OFFCURVE", "117 -298 CURVE SMOOTH", "-93 -395 LINE SMOOTH", "-103 -400 OFFCURVE", "-107 -396 OFFCURVE", "-108 -386 CURVE SMOOTH", "-111 -356 LINE SMOOTH", "-111 -351 OFFCURVE", "-108 -347 OFFCURVE", "-101 -344 CURVE SMOOTH", "31 -278 OFFCURVE", "103 -242 OFFCURVE", "114 -237 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{-83, -269}"; }, { name = _TashkilBelow; position = "{0, -271}"; }, { name = _TashkilTashkilBelow; position = "{0, -271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "119 -229 OFFCURVE", "124 -228 OFFCURVE", "128 -229 CURVE", "134 -230 OFFCURVE", "137 -235 OFFCURVE", "136 -242 CURVE SMOOTH", "131 -285 LINE SMOOTH", "130 -293 OFFCURVE", "126 -299 OFFCURVE", "119 -303 CURVE", "119 -303 LINE", "-91 -399 LINE SMOOTH", "-94 -400 OFFCURVE", "-97 -401 OFFCURVE", "-99 -401 CURVE SMOOTH", "-107 -402 OFFCURVE", "-112 -398 OFFCURVE", "-113 -389 CURVE SMOOTH", "-113 -388 OFFCURVE", "-113 -387 OFFCURVE", "-113 -386 CURVE SMOOTH", "-116 -357 LINE", "-116 -350 OFFCURVE", "-111 -344 OFFCURVE", "-103 -340 CURVE SMOOTH", "29 -274 OFFCURVE", "101 -237 OFFCURVE", "112 -232 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = damma.mark; layers = ( { anchors = ( { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 3, -500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "damma-ar.small"; transform = "{1, 0, 0, 1, 3, -500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = hamzadamma.mark; layers = ( { anchors = ( { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "hamzaabove-ar"; transform = "{1, 0, 0, 1, 21, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 66, 1545}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "hamzaabove-ar"; transform = "{1, 0, 0, 1, 21, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 66, 1545}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = aAlf.dagger; layers = ( { anchors = ( { name = _HamzaAbove; position = "{0, 513}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -153, -456}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _HamzaAbove; position = "{0, 513}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -153, -456}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = dot.1; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "47 34 OFFCURVE", "42 23 OFFCURVE", "33 14 CURVE SMOOTH", "24 5 OFFCURVE", "13 0 OFFCURVE", "0 0 CURVE SMOOTH", "-13 0 OFFCURVE", "-24 5 OFFCURVE", "-33 14 CURVE SMOOTH", "-42 23 OFFCURVE", "-47 34 OFFCURVE", "-47 47 CURVE SMOOTH", "-47 60 OFFCURVE", "-42 72 OFFCURVE", "-33 81 CURVE SMOOTH", "-24 90 OFFCURVE", "-13 95 OFFCURVE", "0 95 CURVE SMOOTH", "13 95 OFFCURVE", "24 90 OFFCURVE", "33 81 CURVE SMOOTH", "42 72 OFFCURVE", "47 60 OFFCURVE", "47 47 CURVE SMOOTH" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "56 79 OFFCURVE", "62 64 OFFCURVE", "62 47 CURVE SMOOTH", "62 30 OFFCURVE", "56 15 OFFCURVE", "44 3 CURVE", "32 -9 OFFCURVE", "17 -14 OFFCURVE", "0 -14 CURVE SMOOTH", "-17 -14 OFFCURVE", "-32 -9 OFFCURVE", "-44 3 CURVE", "-56 15 OFFCURVE", "-62 31 OFFCURVE", "-62 48 CURVE SMOOTH", "-62 65 OFFCURVE", "-56 79 OFFCURVE", "-44 91 CURVE", "-32 103 OFFCURVE", "-17 109 OFFCURVE", "0 109 CURVE SMOOTH", "17 109 OFFCURVE", "32 103 OFFCURVE", "44 91 CURVE" ); } ); width = 0; } ); }, { glyphname = dot.2; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "103 59 OFFCURVE", "108 71 OFFCURVE", "119 81 CURVE SMOOTH", "130 91 OFFCURVE", "142 97 OFFCURVE", "157 97 CURVE SMOOTH", "172 97 OFFCURVE", "185 91 OFFCURVE", "195 81 CURVE SMOOTH", "205 71 OFFCURVE", "210 59 OFFCURVE", "210 44 CURVE SMOOTH", "210 29 OFFCURVE", "205 17 OFFCURVE", "195 6 CURVE SMOOTH", "185 -5 OFFCURVE", "172 -11 OFFCURVE", "157 -11 CURVE SMOOTH", "142 -11 OFFCURVE", "130 -5 OFFCURVE", "119 6 CURVE SMOOTH", "108 17 OFFCURVE", "103 29 OFFCURVE", "103 44 CURVE SMOOTH" ); } ); width = 317; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "85 84 OFFCURVE", "92 101 OFFCURVE", "106 115 CURVE SMOOTH", "120 129 OFFCURVE", "138 136 OFFCURVE", "158 136 CURVE SMOOTH", "178 136 OFFCURVE", "196 129 OFFCURVE", "210 114 CURVE SMOOTH", "224 99 OFFCURVE", "231 82 OFFCURVE", "231 62 CURVE SMOOTH", "231 42 OFFCURVE", "224 25 OFFCURVE", "210 11 CURVE SMOOTH", "196 -3 OFFCURVE", "179 -11 OFFCURVE", "159 -11 CURVE SMOOTH", "138 -11 OFFCURVE", "121 -4 OFFCURVE", "107 11 CURVE SMOOTH", "93 26 OFFCURVE", "85 43 OFFCURVE", "85 64 CURVE SMOOTH" ); } ); width = 317; } ); }, { glyphname = dash.kaf_gaf; layers = ( { anchors = ( { name = RingDash; position = "{-154, 122}"; }, { name = _Dash; position = "{-426, -21}"; } ); components = ( { name = dash.kaf; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, -91, 157}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = RingDash; position = "{-154, 122}"; }, { name = _Dash; position = "{-426, -21}"; } ); components = ( { name = dash.kaf; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, -91, 157}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "dotbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{15, -68}"; }, { name = _DotBelowAlt; position = "{0, 68}"; } ); components = ( { name = "dotabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{15, -68}"; }, { name = _DotBelowAlt; position = "{0, 68}"; } ); components = ( { name = "dotabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "twodotshorizontalbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{10, -93}"; }, { name = _MarkDotBelow; position = "{0, 128}"; }, { name = _TwoDotsBelowAlt; position = "{-54, 68}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{10, -93}"; }, { name = _MarkDotBelow; position = "{0, 128}"; }, { name = _TwoDotsBelowAlt; position = "{-54, 68}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "threedotsupbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -196}"; }, { name = _TwoDotsBelowAlt; position = "{-54, 68}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -196}"; }, { name = _TwoDotsBelowAlt; position = "{-54, 68}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "threedotsdownbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{39, -70}"; }, { name = _TwoDotsBelowAlt; position = "{-56, 190}"; } ); components = ( { name = "threedotsdownabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{39, -70}"; }, { name = _TwoDotsBelowAlt; position = "{-56, 190}"; } ); components = ( { name = "threedotsdownabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "twodotsverticalbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{20, -161}"; }, { name = _DotBelowAlt; position = "{0, 68}"; } ); components = ( { name = "twodotsverticalbelow-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{20, -161}"; }, { name = _DotBelowAlt; position = "{0, 68}"; } ); components = ( { name = "twodotsverticalbelow-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "fourdotsbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -93}"; }, { name = _TwoDotsBelowAlt; position = "{-69, 186}"; } ); components = ( { name = "fourdotsabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -93}"; }, { name = _TwoDotsBelowAlt; position = "{-69, 186}"; } ); components = ( { name = "fourdotsabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "threedotshorizontalbelow-ar.l"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{20, -93}"; }, { name = _TwoDotsBelowAlt; position = "{0, 93}"; } ); components = ( { name = "threedotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{20, -93}"; }, { name = _TwoDotsBelowAlt; position = "{0, 93}"; } ); components = ( { name = "threedotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "vinvertedbelow-ar.low"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelowAlt; position = "{20, -337}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 0, -977}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelowAlt; position = "{20, -337}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 0, -977}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "stroke-ar"; layers = ( { anchors = ( { name = _Stroke; position = "{0, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-111 0 LINE SMOOTH", "-118 0 OFFCURVE", "-120 3 OFFCURVE", "-116 10 CURVE SMOOTH", "-103 32 LINE SMOOTH", "-99 38 OFFCURVE", "-93 42 OFFCURVE", "-83 42 CURVE SMOOTH", "111 42 LINE SMOOTH", "118 42 OFFCURVE", "120 39 OFFCURVE", "116 32 CURVE SMOOTH", "103 9 LINE SMOOTH", "99 3 OFFCURVE", "93 0 OFFCURVE", "83 0 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _Stroke; position = "{0, 21}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "144 76 LINE", "107 -15 LINE", "-144 -15 LINE", "-107 76 LINE" ); } ); width = 0; } ); }, { glyphname = "twoabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{0, 464}"; }, { name = _DigitAbove; position = "{0, 171}"; } ); components = ( { name = "twoFarsi-ar"; transform = "{0.5, 0, 0, 0.5, -128, 109}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{0, 464}"; }, { name = _DigitAbove; position = "{0, 171}"; } ); components = ( { name = "twoFarsi-ar"; transform = "{0.5, 0, 0, 0.5, -128, 109}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "threeabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{29, 464}"; }, { name = _DigitAbove; position = "{0, 171}"; } ); components = ( { name = "threeFarsi-ar"; transform = "{0.5, 0, 0, 0.5, -128, 112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{29, 464}"; }, { name = _DigitAbove; position = "{0, 171}"; } ); components = ( { name = "threeFarsi-ar"; transform = "{0.5, 0, 0, 0.5, -128, 112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "fourabove-ar"; layers = ( { anchors = ( { name = TashkilAboveDot; position = "{0, 464}"; }, { name = _DigitAbove; position = "{0, 171}"; } ); components = ( { name = "fourFarsi-ar.urd"; transform = "{0.5, 0, 0, 0.5, -127, 112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilAboveDot; position = "{0, 464}"; }, { name = _DigitAbove; position = "{0, 171}"; } ); components = ( { name = "fourFarsi-ar.urd"; transform = "{0.5, 0, 0, 0.5, -127, 112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "fourbelow-ar"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, 44}"; }, { name = _DigitBelow; position = "{0, 342}"; } ); components = ( { name = "fourFarsi-ar.urd"; transform = "{0.5, 0, 0, 0.5, -127, 112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, 44}"; }, { name = _DigitBelow; position = "{0, 342}"; } ); components = ( { name = "fourFarsi-ar.urd"; transform = "{0.5, 0, 0, 0.5, -127, 112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "fourFarsi-ar.urd"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "227 -89 OFFCURVE", "222 -92 OFFCURVE", "214 -92 CURVE SMOOTH", "206 -92 OFFCURVE", "202 -88 OFFCURVE", "201 -79 CURVE SMOOTH", "195 13 OFFCURVE", "167 127 OFFCURVE", "118 260 CURVE SMOOTH", "96 324 OFFCURVE", "94 389 OFFCURVE", "114 454 CURVE SMOOTH", "133 516 OFFCURVE", "169 548 OFFCURVE", "222 550 CURVE SMOOTH", "281 553 OFFCURVE", "329 513 OFFCURVE", "365 431 CURVE", "392 504 OFFCURVE", "426 557 OFFCURVE", "467 593 CURVE SMOOTH", "473 598 OFFCURVE", "477 600 OFFCURVE", "481 599 CURVE SMOOTH", "486 597 OFFCURVE", "487 594 OFFCURVE", "486 588 CURVE SMOOTH", "463 503 LINE SMOOTH", "461 496 OFFCURVE", "458 490 OFFCURVE", "455 486 CURVE SMOOTH", "408 429 OFFCURVE", "374 372 OFFCURVE", "353 315 CURVE SMOOTH", "350 310 OFFCURVE", "347 308 OFFCURVE", "344 309 CURVE SMOOTH", "339 310 OFFCURVE", "336 313 OFFCURVE", "334 319 CURVE SMOOTH", "300 403 OFFCURVE", "258 446 OFFCURVE", "206 447 CURVE SMOOTH", "187 447 OFFCURVE", "168 439 OFFCURVE", "152 421 CURVE SMOOTH", "149 417 OFFCURVE", "155 394 OFFCURVE", "171 354 CURVE SMOOTH", "240 177 OFFCURVE", "260 32 OFFCURVE", "229 -83 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "235 -95 OFFCURVE", "227 -101 OFFCURVE", "216 -101 CURVE SMOOTH", "202 -101 OFFCURVE", "194 -95 OFFCURVE", "193 -80 CURVE SMOOTH", "188 -1 OFFCURVE", "160 110 OFFCURVE", "109 255 CURVE SMOOTH", "86 322 OFFCURVE", "84 388 OFFCURVE", "103 452 CURVE SMOOTH", "125 525 OFFCURVE", "164 561 OFFCURVE", "221 564 CURVE SMOOTH", "278 567 OFFCURVE", "325 529 OFFCURVE", "365 452 CURVE", "395 524 OFFCURVE", "425 572 OFFCURVE", "454 595 CURVE", "494 627 OFFCURVE", "509 621 OFFCURVE", "497 575 CURVE SMOOTH", "477 500 LINE SMOOTH", "474 489 OFFCURVE", "471 481 OFFCURVE", "467 477 CURVE", "418 432 OFFCURVE", "382 377 OFFCURVE", "359 312 CURVE SMOOTH", "356 304 OFFCURVE", "351 300 OFFCURVE", "345 300 CURVE SMOOTH", "339 300 OFFCURVE", "334 304 OFFCURVE", "330 314 CURVE SMOOTH", "298 392 OFFCURVE", "256 432 OFFCURVE", "205 435 CURVE", "190 435 OFFCURVE", "176 429 OFFCURVE", "164 417 CURVE", "167 404 OFFCURVE", "173 385 OFFCURVE", "182 360 CURVE SMOOTH", "250 182 OFFCURVE", "269 35 OFFCURVE", "238 -82 CURVE SMOOTH" ); } ); width = 585; } ); }, { glyphname = "sixFarsi-ar.urd"; layers = ( { components = ( { name = "six-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { components = ( { name = "six-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "sevenFarsi-ar.urd"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "178 90 OFFCURVE", "236 253 OFFCURVE", "278 441 CURVE SMOOTH", "280 453 OFFCURVE", "285 463 OFFCURVE", "291 469 CURVE SMOOTH", "359 537 LINE SMOOTH", "365 543 OFFCURVE", "370 545 OFFCURVE", "374 541 CURVE SMOOTH", "377 538 OFFCURVE", "377 530 OFFCURVE", "375 519 CURVE SMOOTH", "333 309 OFFCURVE", "264 135 OFFCURVE", "169 -4 CURVE", "269 11 OFFCURVE", "370 6 OFFCURVE", "471 -17 CURVE SMOOTH", "489 -21 OFFCURVE", "489 -29 OFFCURVE", "471 -39 CURVE SMOOTH", "382 -90 LINE SMOOTH", "378 -92 OFFCURVE", "372 -92 OFFCURVE", "364 -90 CURVE SMOOTH", "289 -70 OFFCURVE", "206 -63 OFFCURVE", "116 -68 CURVE SMOOTH", "101 -69 OFFCURVE", "97 -63 OFFCURVE", "104 -50 CURVE SMOOTH" ); } ); width = 585; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "173 112 OFFCURVE", "228 274 OFFCURVE", "264 444 CURVE SMOOTH", "267 460 OFFCURVE", "272 472 OFFCURVE", "280 479 CURVE SMOOTH", "347 542 LINE SMOOTH", "385 577 OFFCURVE", "398 567 OFFCURVE", "387 511 CURVE SMOOTH", "349 316 OFFCURVE", "282 149 OFFCURVE", "189 9 CURVE", "297 19 OFFCURVE", "393 15 OFFCURVE", "475 -3 CURVE", "515 -14 OFFCURVE", "516 -30 OFFCURVE", "478 -52 CURVE SMOOTH", "389 -103 LINE SMOOTH", "382 -107 OFFCURVE", "372 -107 OFFCURVE", "361 -104 CURVE SMOOTH", "292 -85 OFFCURVE", "213 -79 OFFCURVE", "125 -83 CURVE SMOOTH", "95 -84 OFFCURVE", "86 -71 OFFCURVE", "99 -43 CURVE SMOOTH" ); } ); width = 585; } ); }, { glyphname = aKaf.init.KafLam; layers = ( { anchors = ( { name = Dash; position = "{211, 738}"; }, { name = DotAbove; position = "{16, 674}"; }, { name = DotBelow; position = "{111, -156}"; }, { name = RingBelow; position = "{244, 622}"; }, { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; }, { name = TwoDotsAbove; position = "{-38, 674}"; }, { name = TwoDotsBelow; position = "{57, -156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "51 365 OFFCURVE", "125 327 OFFCURVE", "164 280 CURVE SMOOTH", "197 240 OFFCURVE", "213 201 OFFCURVE", "213 164 CURVE SMOOTH", "213 34 OFFCURVE", "141 -24 OFFCURVE", "0 -11 CURVE SMOOTH", "-10 -10 OFFCURVE", "-17 -2 OFFCURVE", "-22 11 CURVE SMOOTH", "-29 29 OFFCURVE", "-30 45 OFFCURVE", "-25 60 CURVE SMOOTH", "-18 84 OFFCURVE", "-9 96 OFFCURVE", "0 94 CURVE SMOOTH", "70 83 OFFCURVE", "132 100 OFFCURVE", "183 147 CURVE SMOOTH", "187 150 OFFCURVE", "188 153 OFFCURVE", "186 156 CURVE SMOOTH", "140 227 OFFCURVE", "53 280 OFFCURVE", "-74 314 CURVE SMOOTH", "-88 317 OFFCURVE", "-95 334 OFFCURVE", "-95 365 CURVE SMOOTH", "-95 390 OFFCURVE", "-92 410 OFFCURVE", "-85 426 CURVE SMOOTH", "-62 479 OFFCURVE", "18 545 OFFCURVE", "156 624 CURVE SMOOTH", "266 687 OFFCURVE", "371 738 OFFCURVE", "470 778 CURVE SMOOTH", "489 785 OFFCURVE", "496 780 OFFCURVE", "492 762 CURVE SMOOTH", "477 699 LINE SMOOTH", "475 690 OFFCURVE", "469 683 OFFCURVE", "461 680 CURVE SMOOTH", "387 653 OFFCURVE", "290 607 OFFCURVE", "170 541 CURVE SMOOTH", "50 475 OFFCURVE", "-26 426 OFFCURVE", "-56 395 CURVE" ); } ); width = 587; }, { anchors = ( { name = Dash; position = "{211, 738}"; }, { name = DotAbove; position = "{16, 674}"; }, { name = DotBelow; position = "{111, -156}"; }, { name = RingBelow; position = "{244, 622}"; }, { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; }, { name = TwoDotsAbove; position = "{-38, 674}"; }, { name = TwoDotsBelow; position = "{57, -156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "66 372 OFFCURVE", "136 335 OFFCURVE", "170 291 CURVE SMOOTH", "202 249 OFFCURVE", "218 206 OFFCURVE", "218 164 CURVE SMOOTH", "217 60 OFFCURVE", "181 -1 OFFCURVE", "110 -19 CURVE SMOOTH", "80 -26 OFFCURVE", "43 -28 OFFCURVE", "-1 -25 CURVE", "-18 -23 OFFCURVE", "-30 -12 OFFCURVE", "-37 8 CURVE SMOOTH", "-44 28 OFFCURVE", "-45 48 OFFCURVE", "-38 69 CURVE SMOOTH", "-29 98 OFFCURVE", "-16 111 OFFCURVE", "2 108 CURVE", "66 99 OFFCURVE", "126 115 OFFCURVE", "179 155 CURVE", "134 216 OFFCURVE", "49 267 OFFCURVE", "-78 305 CURVE SMOOTH", "-92 309 OFFCURVE", "-100 327 OFFCURVE", "-100 361 CURVE SMOOTH", "-100 389 OFFCURVE", "-98 410 OFFCURVE", "-92 423 CURVE SMOOTH", "-66 486 OFFCURVE", "14 557 OFFCURVE", "148 636 CURVE SMOOTH", "284 716 OFFCURVE", "385 769 OFFCURVE", "450 792 CURVE SMOOTH", "485 805 OFFCURVE", "499 794 OFFCURVE", "491 759 CURVE SMOOTH", "477 695 LINE SMOOTH", "473 681 OFFCURVE", "465 672 OFFCURVE", "452 667 CURVE SMOOTH", "370 633 OFFCURVE", "276 587 OFFCURVE", "172 531 CURVE SMOOTH", "68 475 OFFCURVE", "-4 431 OFFCURVE", "-41 401 CURVE" ); } ); width = 587; } ); }, { glyphname = aKaf.fina.KafKafFina; layers = ( { anchors = ( { name = Dash; position = "{719, 732}"; }, { name = DotAbove; position = "{693, 830}"; }, { name = DotBelow; position = "{366, -98}"; }, { name = HamzaAbove; position = "{357, 332}"; }, { name = RingBelow; position = "{376, 44}"; }, { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; }, { name = TwoDotsAbove; position = "{605, 830}"; }, { name = TwoDotsBelow; position = "{312, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "854 86 OFFCURVE", "865 72 OFFCURVE", "862 54 CURVE SMOOTH", "859 33 OFFCURVE", "855 16 OFFCURVE", "849 4 CURVE SMOOTH", "843 -7 OFFCURVE", "836 -12 OFFCURVE", "826 -10 CURVE SMOOTH", "770 2 OFFCURVE", "733 64 OFFCURVE", "715 175 CURVE SMOOTH", "714 179 OFFCURVE", "712 177 OFFCURVE", "709 171 CURVE SMOOTH", "688 126 OFFCURVE", "661 93 OFFCURVE", "628 71 CURVE SMOOTH", "565 29 OFFCURVE", "470 2 OFFCURVE", "344 -10 CURVE SMOOTH", "241 -19 OFFCURVE", "164 1 OFFCURVE", "111 50 CURVE SMOOTH", "58 99 OFFCURVE", "49 172 OFFCURVE", "83 268 CURVE SMOOTH", "95 302 OFFCURVE", "106 327 OFFCURVE", "117 345 CURVE SMOOTH", "119 349 OFFCURVE", "122 350 OFFCURVE", "125 350 CURVE SMOOTH", "128 350 OFFCURVE", "131 348 OFFCURVE", "133 345 CURVE SMOOTH", "135 342 OFFCURVE", "135 340 OFFCURVE", "134 337 CURVE SMOOTH", "120 310 OFFCURVE", "111 283 OFFCURVE", "107 257 CURVE SMOOTH", "102 226 OFFCURVE", "108 199 OFFCURVE", "125 174 CURVE SMOOTH", "157 126 OFFCURVE", "222 100 OFFCURVE", "318 97 CURVE SMOOTH", "414 94 OFFCURVE", "497 106 OFFCURVE", "566 131 CURVE SMOOTH", "635 156 OFFCURVE", "682 190 OFFCURVE", "705 232 CURVE", "683 484 OFFCURVE", "675 623 OFFCURVE", "681 646 CURVE SMOOTH", "702 728 LINE SMOOTH", "703 733 OFFCURVE", "707 735 OFFCURVE", "713 735 CURVE SMOOTH", "719 735 OFFCURVE", "723 732 OFFCURVE", "723 725 CURVE SMOOTH", "737 500 OFFCURVE", "746 356 OFFCURVE", "752 293 CURVE SMOOTH", "765 174 OFFCURVE", "791 108 OFFCURVE", "830 94 CURVE SMOOTH" ); } ); width = 829; }, { anchors = ( { name = Dash; position = "{719, 732}"; }, { name = DotAbove; position = "{693, 830}"; }, { name = DotBelow; position = "{366, -98}"; }, { name = HamzaAbove; position = "{357, 332}"; }, { name = RingBelow; position = "{376, 44}"; }, { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; }, { name = TwoDotsAbove; position = "{605, 830}"; }, { name = TwoDotsBelow; position = "{312, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "668 486 OFFCURVE", "659 624 OFFCURVE", "666 650 CURVE SMOOTH", "688 731 LINE SMOOTH", "691 743 OFFCURVE", "699 750 OFFCURVE", "711 750 CURVE SMOOTH", "723 750 OFFCURVE", "731 745 OFFCURVE", "735 735 CURVE SMOOTH", "736 732 OFFCURVE", "741 674 OFFCURVE", "748 560 CURVE SMOOTH", "755 446 OFFCURVE", "761 358 OFFCURVE", "767 295 CURVE", "779 182 OFFCURVE", "801 120 OFFCURVE", "834 108 CURVE", "865 97 OFFCURVE", "880 79 OFFCURVE", "877 55 CURVE SMOOTH", "874 31 OFFCURVE", "869 11 OFFCURVE", "861 -5 CURVE SMOOTH", "853 -21 OFFCURVE", "840 -27 OFFCURVE", "823 -24 CURVE", "767 -11 OFFCURVE", "728 42 OFFCURVE", "707 136 CURVE", "687 103 OFFCURVE", "664 77 OFFCURVE", "636 59 CURVE SMOOTH", "570 16 OFFCURVE", "473 -12 OFFCURVE", "345 -24 CURVE", "238 -34 OFFCURVE", "157 -12 OFFCURVE", "100 41 CURVE SMOOTH", "43 94 OFFCURVE", "33 171 OFFCURVE", "69 273 CURVE SMOOTH", "81 308 OFFCURVE", "93 335 OFFCURVE", "105 353 CURVE", "111 361 OFFCURVE", "118 364 OFFCURVE", "126 364 CURVE SMOOTH", "134 364 OFFCURVE", "140 360 OFFCURVE", "145 353 CURVE SMOOTH", "150 346 OFFCURVE", "151 338 OFFCURVE", "147 330 CURVE SMOOTH", "116 268 OFFCURVE", "113 219 OFFCURVE", "138 182 CURVE", "168 138 OFFCURVE", "229 115 OFFCURVE", "321 112 CURVE SMOOTH", "413 109 OFFCURVE", "493 120 OFFCURVE", "560 144 CURVE SMOOTH", "627 168 OFFCURVE", "670 199 OFFCURVE", "690 236 CURVE" ); } ); width = 829; } ); }, { glyphname = aLam.medi.KafLam; layers = ( { anchors = ( { name = DotAbove; position = "{54, 806}"; }, { name = Stroke; position = "{72, 599}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; }, { name = TwoDotsAbove; position = "{-5, 806}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{54, 757}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "85 51 OFFCURVE", "52 0 OFFCURVE", "0 0 CURVE SMOOTH", "-9 0 OFFCURVE", "-16 6 OFFCURVE", "-23 17 CURVE SMOOTH", "-52 66 OFFCURVE", "-45 90 OFFCURVE", "0 90 CURVE SMOOTH", "30 90 OFFCURVE", "53 105 OFFCURVE", "70 133 CURVE SMOOTH", "70 133 OFFCURVE", "64 212 OFFCURVE", "52 371 CURVE SMOOTH", "41 513 OFFCURVE", "36 594 OFFCURVE", "36 613 CURVE SMOOTH", "36 627 OFFCURVE", "38 638 OFFCURVE", "42 647 CURVE SMOOTH", "62 691 LINE SMOOTH", "66 699 OFFCURVE", "70 702 OFFCURVE", "75 698 CURVE SMOOTH", "79 695 OFFCURVE", "81 690 OFFCURVE", "82 684 CURVE SMOOTH", "106 419 LINE SMOOTH", "114 303 OFFCURVE", "124 223 OFFCURVE", "134 178 CURVE SMOOTH", "145 130 OFFCURVE", "165 102 OFFCURVE", "192 94 CURVE SMOOTH", "207 90 OFFCURVE", "216 73 OFFCURVE", "220 44 CURVE SMOOTH", "225 3 OFFCURVE", "215 -15 OFFCURVE", "192 -11 CURVE SMOOTH", "143 -2 OFFCURVE", "112 53 OFFCURVE", "99 154 CURVE" ); } ); width = 191; }, { anchors = ( { name = DotAbove; position = "{54, 806}"; }, { name = Stroke; position = "{72, 599}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; }, { name = TwoDotsAbove; position = "{-5, 806}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{54, 757}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "78 18 OFFCURVE", "46 -15 OFFCURVE", "0 -15 CURVE", "-14 -15 OFFCURVE", "-27 -5 OFFCURVE", "-38 14 CURVE SMOOTH", "-49 33 OFFCURVE", "-55 49 OFFCURVE", "-55 63 CURVE SMOOTH", "-55 91 OFFCURVE", "-37 105 OFFCURVE", "0 105 CURVE", "23 106 OFFCURVE", "41 117 OFFCURVE", "55 137 CURVE", "54 156 OFFCURVE", "48 235 OFFCURVE", "37 374 CURVE SMOOTH", "26 513 OFFCURVE", "21 592 OFFCURVE", "21 610 CURVE SMOOTH", "21 628 OFFCURVE", "24 643 OFFCURVE", "29 654 CURVE SMOOTH", "49 697 LINE SMOOTH", "58 716 OFFCURVE", "70 719 OFFCURVE", "87 706 CURVE SMOOTH", "92 702 OFFCURVE", "96 695 OFFCURVE", "97 685 CURVE SMOOTH", "121 420 LINE", "129 305 OFFCURVE", "138 226 OFFCURVE", "148 183 CURVE SMOOTH", "158 140 OFFCURVE", "175 115 OFFCURVE", "196 108 CURVE SMOOTH", "217 101 OFFCURVE", "230 81 OFFCURVE", "234 46 CURVE SMOOTH", "236 31 OFFCURVE", "235 16 OFFCURVE", "233 2 CURVE SMOOTH", "231 -12 OFFCURVE", "222 -20 OFFCURVE", "208 -24 CURVE SMOOTH", "202 -26 OFFCURVE", "196 -26 OFFCURVE", "190 -25 CURVE SMOOTH", "148 -17 OFFCURVE", "116 19 OFFCURVE", "98 81 CURVE" ); } ); width = 191; } ); }, { glyphname = aLam.medi.KafLamMemMedi; layers = ( { anchors = ( { name = Dash; position = "{208, 771}"; }, { name = DotAbove; position = "{6, 697}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = RingBelow; position = "{240, 656}"; }, { name = Stroke; position = "{155, 564}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-53, 697}"; }, { name = TwoDotsBelow; position = "{146, -117}"; }, { name = VAbove; position = "{6, 648}"; }, { name = exit; position = "{42, 83}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "287 90 OFFCURVE", "296 73 OFFCURVE", "300 44 CURVE SMOOTH", "305 4 OFFCURVE", "295 -15 OFFCURVE", "273 -11 CURVE SMOOTH", "218 -3 OFFCURVE", "185 66 OFFCURVE", "175 194 CURVE", "153 142 OFFCURVE", "115 106 OFFCURVE", "62 86 CURVE SMOOTH", "23 71 OFFCURVE", "-12 80 OFFCURVE", "-42 114 CURVE SMOOTH", "-61 135 OFFCURVE", "-68 152 OFFCURVE", "-64 169 CURVE SMOOTH", "-62 178 OFFCURVE", "-55 184 OFFCURVE", "-44 184 CURVE SMOOTH", "-43 184 OFFCURVE", "-33 179 OFFCURVE", "-14 170 CURVE SMOOTH", "5 161 OFFCURVE", "21 158 OFFCURVE", "33 159 CURVE SMOOTH", "95 165 OFFCURVE", "132 186 OFFCURVE", "143 222 CURVE SMOOTH", "146 231 OFFCURVE", "141 294 OFFCURVE", "131 411 CURVE SMOOTH", "121 528 OFFCURVE", "116 595 OFFCURVE", "116 613 CURVE SMOOTH", "116 629 OFFCURVE", "118 640 OFFCURVE", "122 647 CURVE SMOOTH", "143 691 LINE SMOOTH", "147 698 OFFCURVE", "151 701 OFFCURVE", "155 698 CURVE SMOOTH", "159 695 OFFCURVE", "161 690 OFFCURVE", "162 684 CURVE SMOOTH", "186 419 LINE SMOOTH", "194 311 OFFCURVE", "203 230 OFFCURVE", "215 178 CURVE SMOOTH", "226 130 OFFCURVE", "246 102 OFFCURVE", "273 94 CURVE SMOOTH" ); } ); width = 272; }, { anchors = ( { name = Dash; position = "{208, 771}"; }, { name = DotAbove; position = "{6, 697}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = RingBelow; position = "{240, 656}"; }, { name = Stroke; position = "{155, 564}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-53, 697}"; }, { name = TwoDotsBelow; position = "{146, -117}"; }, { name = VAbove; position = "{6, 648}"; }, { name = exit; position = "{42, 83}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "209 312 OFFCURVE", "217 235 OFFCURVE", "228 188 CURVE SMOOTH", "239 141 OFFCURVE", "255 115 OFFCURVE", "276 108 CURVE SMOOTH", "297 101 OFFCURVE", "309 79 OFFCURVE", "314 42 CURVE SMOOTH", "319 5 OFFCURVE", "310 -17 OFFCURVE", "289 -24 CURVE SMOOTH", "283 -26 OFFCURVE", "277 -26 OFFCURVE", "271 -25 CURVE SMOOTH", "216 -16 OFFCURVE", "181 42 OFFCURVE", "166 147 CURVE", "142 113 OFFCURVE", "108 87 OFFCURVE", "65 71 CURVE SMOOTH", "22 55 OFFCURVE", "-18 66 OFFCURVE", "-53 104 CURVE SMOOTH", "-75 129 OFFCURVE", "-83 151 OFFCURVE", "-78 173 CURVE SMOOTH", "-74 190 OFFCURVE", "-63 198 OFFCURVE", "-44 198 CURVE SMOOTH", "-39 198 OFFCURVE", "-28 194 OFFCURVE", "-11 185 CURVE SMOOTH", "6 176 OFFCURVE", "19 172 OFFCURVE", "31 173 CURVE SMOOTH", "86 178 OFFCURVE", "118 196 OFFCURVE", "128 226 CURVE", "130 239 OFFCURVE", "126 303 OFFCURVE", "116 416 CURVE SMOOTH", "106 529 OFFCURVE", "102 594 OFFCURVE", "102 612 CURVE SMOOTH", "102 630 OFFCURVE", "105 645 OFFCURVE", "109 654 CURVE SMOOTH", "130 697 LINE SMOOTH", "134 706 OFFCURVE", "139 710 OFFCURVE", "146 712 CURVE SMOOTH", "153 714 OFFCURVE", "159 712 OFFCURVE", "165 707 CURVE SMOOTH", "171 702 OFFCURVE", "176 695 OFFCURVE", "177 685 CURVE SMOOTH", "201 420 LINE" ); } ); width = 272; } ); }, { glyphname = aKaf.medi.KafLam; layers = ( { anchors = ( { name = Dash; position = "{226, 771}"; }, { name = DotAbove; position = "{31, 708}"; }, { name = DotBelow; position = "{311, -98}"; }, { name = RingBelow; position = "{258, 656}"; }, { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; }, { name = TwoDotsAbove; position = "{-23, 708}"; }, { name = TwoDotsBelow; position = "{257, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "77 79 OFFCURVE", "145 97 OFFCURVE", "204 150 CURVE", "182 233 OFFCURVE", "92 299 OFFCURVE", "-65 348 CURVE SMOOTH", "-74 351 OFFCURVE", "-79 364 OFFCURVE", "-79 387 CURVE SMOOTH", "-79 410 OFFCURVE", "-77 426 OFFCURVE", "-74 435 CURVE SMOOTH", "-49 504 OFFCURVE", "32 578 OFFCURVE", "170 657 CURVE SMOOTH", "280 720 OFFCURVE", "386 771 OFFCURVE", "485 811 CURVE SMOOTH", "504 818 OFFCURVE", "510 813 OFFCURVE", "506 795 CURVE SMOOTH", "492 732 LINE SMOOTH", "490 723 OFFCURVE", "484 716 OFFCURVE", "476 713 CURVE SMOOTH", "402 686 OFFCURVE", "306 641 OFFCURVE", "188 576 CURVE SMOOTH", "70 511 OFFCURVE", "-4 464 OFFCURVE", "-34 433 CURVE", "74 393 OFFCURVE", "172 338 OFFCURVE", "259 271 CURVE SMOOTH", "313 229 OFFCURVE", "346 203 OFFCURVE", "358 192 CURVE SMOOTH", "429 129 OFFCURVE", "486 95 OFFCURVE", "529 90 CURVE SMOOTH", "553 87 OFFCURVE", "558 64 OFFCURVE", "544 19 CURVE SMOOTH", "540 6 OFFCURVE", "536 0 OFFCURVE", "529 0 CURVE", "485 0 OFFCURVE", "415 47 OFFCURVE", "320 139 CURVE", "289 170 OFFCURVE", "257 197 OFFCURVE", "224 221 CURVE", "226 200 OFFCURVE", "225 175 OFFCURVE", "222 146 CURVE", "208 59 OFFCURVE", "157 9 OFFCURVE", "68 -8 CURVE SMOOTH", "44 -13 OFFCURVE", "21 -14 OFFCURVE", "1 -11 CURVE SMOOTH", "-19 -8 OFFCURVE", "-27 12 OFFCURVE", "-24 47 CURVE SMOOTH", "-21 81 OFFCURVE", "-13 97 OFFCURVE", "0 94 CURVE SMOOTH" ); } ); width = 529; }, { anchors = ( { name = Dash; position = "{226, 771}"; }, { name = DotAbove; position = "{31, 708}"; }, { name = DotBelow; position = "{311, -98}"; }, { name = RingBelow; position = "{258, 656}"; }, { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; }, { name = TwoDotsAbove; position = "{-23, 708}"; }, { name = TwoDotsBelow; position = "{257, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "76 95 OFFCURVE", "139 111 OFFCURVE", "193 156 CURVE", "172 221 OFFCURVE", "87 280 OFFCURVE", "-60 333 CURVE SMOOTH", "-93 345 OFFCURVE", "-99 383 OFFCURVE", "-78 445 CURVE", "-50 519 OFFCURVE", "28 594 OFFCURVE", "158 670 CURVE SMOOTH", "285 744 OFFCURVE", "388 796 OFFCURVE", "465 825 CURVE SMOOTH", "500 838 OFFCURVE", "514 827 OFFCURVE", "506 792 CURVE SMOOTH", "491 729 LINE SMOOTH", "488 714 OFFCURVE", "479 705 OFFCURVE", "466 700 CURVE SMOOTH", "393 673 OFFCURVE", "303 630 OFFCURVE", "195 570 CURVE SMOOTH", "87 510 OFFCURVE", "16 465 OFFCURVE", "-21 435 CURVE", "84 402 OFFCURVE", "180 351 OFFCURVE", "268 283 CURVE SMOOTH", "322 241 OFFCURVE", "355 215 OFFCURVE", "368 203 CURVE SMOOTH", "437 142 OFFCURVE", "490 109 OFFCURVE", "530 105 CURVE", "566 100 OFFCURVE", "576 70 OFFCURVE", "559 14 CURVE", "552 -5 OFFCURVE", "542 -15 OFFCURVE", "528 -15 CURVE SMOOTH", "481 -15 OFFCURVE", "409 33 OFFCURVE", "310 128 CURVE SMOOTH", "281 156 OFFCURVE", "256 178 OFFCURVE", "235 195 CURVE", "232 62 OFFCURVE", "171 -11 OFFCURVE", "52 -25 CURVE SMOOTH", "33 -27 OFFCURVE", "16 -27 OFFCURVE", "0 -25 CURVE SMOOTH", "-30 -21 OFFCURVE", "-43 2 OFFCURVE", "-39 45 CURVE SMOOTH", "-35 88 OFFCURVE", "-23 109 OFFCURVE", "-3 109 CURVE", "3 108 LINE" ); } ); width = 529; } ); }, { glyphname = aLam.medi.KafLamHehIsol; layers = ( { anchors = ( { name = DotAbove; position = "{5, 766}"; }, { name = Stroke; position = "{16, 522}"; }, { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; }, { name = TwoDotsAbove; position = "{-53, 766}"; }, { name = TwoDotsBelow; position = "{81, -135}"; }, { name = VAbove; position = "{5, 717}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "68 -39 OFFCURVE", "47 -89 OFFCURVE", "7 -96 CURVE SMOOTH", "-16 -100 OFFCURVE", "-27 -89 OFFCURVE", "-26 -63 CURVE SMOOTH", "-25 -49 OFFCURVE", "-24 -35 OFFCURVE", "-21 -21 CURVE SMOOTH", "-15 5 OFFCURVE", "-6 18 OFFCURVE", "5 17 CURVE SMOOTH", "22 15 OFFCURVE", "32 16 OFFCURVE", "36 22 CURVE SMOOTH", "49 38 OFFCURVE", "51 71 OFFCURVE", "43 121 CURVE SMOOTH", "18 282 OFFCURVE", "-4 428 OFFCURVE", "-22 560 CURVE", "-26 578 OFFCURVE", "-26 593 OFFCURVE", "-21 604 CURVE SMOOTH", "0 656 LINE", "13 676 OFFCURVE", "20 677 OFFCURVE", "22 661 CURVE SMOOTH", "56 382 OFFCURVE", "84 207 OFFCURVE", "108 137 CURVE SMOOTH", "115 117 OFFCURVE", "130 103 OFFCURVE", "151 94 CURVE SMOOTH", "168 87 OFFCURVE", "177 67 OFFCURVE", "179 34 CURVE SMOOTH", "181 2 OFFCURVE", "171 -13 OFFCURVE", "151 -11 CURVE SMOOTH", "122 -8 OFFCURVE", "95 13 OFFCURVE", "70 52 CURVE" ); } ); width = 150; }, { anchors = ( { name = DotAbove; position = "{5, 766}"; }, { name = Stroke; position = "{16, 522}"; }, { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; }, { name = TwoDotsAbove; position = "{-53, 766}"; }, { name = TwoDotsBelow; position = "{81, -135}"; }, { name = VAbove; position = "{5, 717}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "75 -62 OFFCURVE", "51 -102 OFFCURVE", "10 -110 CURVE", "-16 -114 OFFCURVE", "-33 -105 OFFCURVE", "-39 -82 CURVE SMOOTH", "-43 -68 OFFCURVE", "-41 -47 OFFCURVE", "-35 -20 CURVE SMOOTH", "-27 16 OFFCURVE", "-13 33 OFFCURVE", "7 31 CURVE SMOOTH", "16 30 OFFCURVE", "21 31 OFFCURVE", "25 32 CURVE", "35 45 OFFCURVE", "36 74 OFFCURVE", "29 118 CURVE SMOOTH", "4 279 OFFCURVE", "-18 425 OFFCURVE", "-36 557 CURVE", "-41 578 OFFCURVE", "-41 596 OFFCURVE", "-35 609 CURVE SMOOTH", "-13 663 LINE", "-6 674 OFFCURVE", "0 681 OFFCURVE", "4 683 CURVE SMOOTH", "8 685 OFFCURVE", "11 686 OFFCURVE", "14 686 CURVE SMOOTH", "27 688 OFFCURVE", "35 680 OFFCURVE", "37 662 CURVE SMOOTH", "70 384 OFFCURVE", "99 211 OFFCURVE", "122 142 CURVE", "128 126 OFFCURVE", "140 114 OFFCURVE", "157 107 CURVE SMOOTH", "179 97 OFFCURVE", "191 75 OFFCURVE", "193 40 CURVE SMOOTH", "195 5 OFFCURVE", "187 -16 OFFCURVE", "168 -23 CURVE SMOOTH", "162 -25 OFFCURVE", "156 -26 OFFCURVE", "150 -25 CURVE SMOOTH", "126 -22 OFFCURVE", "104 -10 OFFCURVE", "83 12 CURVE" ); } ); width = 150; } ); }, { glyphname = aLam.medi.KafLamYaa; layers = ( { anchors = ( { name = DotAbove; position = "{62, 853}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{3, 853}"; }, { name = TwoDotsBelow; position = "{122, -337}"; }, { name = VAbove; position = "{62, 804}"; }, { name = exit; position = "{0, -71}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "208 89 OFFCURVE", "219 78 OFFCURVE", "224 60 CURVE SMOOTH", "229 42 OFFCURVE", "226 25 OFFCURVE", "219 10 CURVE SMOOTH", "212 -5 OFFCURVE", "202 -12 OFFCURVE", "189 -10 CURVE SMOOTH", "135 -3 OFFCURVE", "101 43 OFFCURVE", "86 128 CURVE", "73 2 OFFCURVE", "35 -76 OFFCURVE", "-28 -108 CURVE", "-22 -65 LINE", "20 -41 OFFCURVE", "49 25 OFFCURVE", "67 133 CURVE SMOOTH", "69 164 OFFCURVE", "66 262 OFFCURVE", "55 426 CURVE SMOOTH", "44 590 OFFCURVE", "39 675 OFFCURVE", "39 683 CURVE SMOOTH", "39 691 OFFCURVE", "40 699 OFFCURVE", "44 706 CURVE SMOOTH", "65 742 LINE SMOOTH", "73 756 OFFCURVE", "79 756 OFFCURVE", "80 742 CURVE SMOOTH", "102 435 LINE SMOOTH", "118 219 OFFCURVE", "147 105 OFFCURVE", "190 94 CURVE SMOOTH" ); } ); width = 190; }, { anchors = ( { name = DotAbove; position = "{62, 853}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{3, 853}"; }, { name = TwoDotsBelow; position = "{122, -337}"; }, { name = VAbove; position = "{62, 804}"; }, { name = exit; position = "{0, -71}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "217 102 OFFCURVE", "231 88 OFFCURVE", "237 65 CURVE SMOOTH", "243 42 OFFCURVE", "240 21 OFFCURVE", "231 1 CURVE SMOOTH", "222 -19 OFFCURVE", "208 -27 OFFCURVE", "188 -25 CURVE", "144 -19 OFFCURVE", "111 9 OFFCURVE", "90 58 CURVE", "70 -34 OFFCURVE", "33 -93 OFFCURVE", "-22 -121 CURVE SMOOTH", "-47 -134 LINE", "-36 -56 LINE", "-30 -53 LINE", "8 -31 OFFCURVE", "36 32 OFFCURVE", "53 135 CURVE", "55 167 OFFCURVE", "50 263 OFFCURVE", "40 426 CURVE SMOOTH", "30 589 OFFCURVE", "24 675 OFFCURVE", "24 685 CURVE SMOOTH", "24 695 OFFCURVE", "26 704 OFFCURVE", "32 713 CURVE SMOOTH", "53 750 LINE SMOOTH", "63 767 OFFCURVE", "72 773 OFFCURVE", "81 768 CURVE SMOOTH", "90 763 OFFCURVE", "94 758 OFFCURVE", "94 752 CURVE SMOOTH", "94 746 OFFCURVE", "94 743 OFFCURVE", "94 743 CURVE SMOOTH", "117 436 LINE SMOOTH", "128 287 OFFCURVE", "146 187 OFFCURVE", "171 135 CURVE SMOOTH", "179 119 OFFCURVE", "187 110 OFFCURVE", "194 108 CURVE SMOOTH" ); } ); width = 190; } ); }, { glyphname = aLam.medi.KafLamAlf; layers = ( { anchors = ( { name = DotAbove; position = "{109, 853}"; }, { name = Stroke; position = "{116, 585}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; }, { name = TwoDotsAbove; position = "{53, 814}"; }, { name = TwoDotsBelow; position = "{0, -77}"; }, { name = VAbove; position = "{-28, 674}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "243 51 OFFCURVE", "245 34 OFFCURVE", "244 16 CURVE SMOOTH", "243 -4 OFFCURVE", "234 -13 OFFCURVE", "217 -11 CURVE SMOOTH", "187 -7 OFFCURVE", "163 8 OFFCURVE", "143 33 CURVE SMOOTH", "119 63 OFFCURVE", "104 145 OFFCURVE", "101 279 CURVE SMOOTH", "100 318 OFFCURVE", "99 339 OFFCURVE", "99 343 CURVE SMOOTH", "99 347 OFFCURVE", "97 348 OFFCURVE", "95 348 CURVE SMOOTH", "93 348 OFFCURVE", "91 347 OFFCURVE", "91 345 CURVE SMOOTH", "80 301 OFFCURVE", "67 257 OFFCURVE", "52 212 CURVE SMOOTH", "37 167 OFFCURVE", "13 119 OFFCURVE", "-20 68 CURVE SMOOTH", "-53 17 OFFCURVE", "-105 -16 OFFCURVE", "-176 -30 CURVE SMOOTH", "-207 -36 OFFCURVE", "-255 -40 OFFCURVE", "-321 -44 CURVE SMOOTH", "-328 -44 OFFCURVE", "-331 -43 OFFCURVE", "-332 -39 CURVE SMOOTH", "-333 -35 OFFCURVE", "-331 -31 OFFCURVE", "-326 -29 CURVE SMOOTH", "-168 26 OFFCURVE", "-56 98 OFFCURVE", "12 186 CURVE SMOOTH", "30 209 OFFCURVE", "47 268 OFFCURVE", "64 366 CURVE SMOOTH", "80 460 OFFCURVE", "88 549 OFFCURVE", "88 634 CURVE SMOOTH", "88 644 OFFCURVE", "89 652 OFFCURVE", "92 657 CURVE SMOOTH", "118 707 LINE SMOOTH", "132 735 OFFCURVE", "139 730 OFFCURVE", "139 695 CURVE SMOOTH", "140 460 OFFCURVE", "142 309 OFFCURVE", "145 241 CURVE SMOOTH", "147 192 OFFCURVE", "158 154 OFFCURVE", "177 126 CURVE SMOOTH", "188 109 OFFCURVE", "201 99 OFFCURVE", "216 94 CURVE SMOOTH", "226 90 OFFCURVE", "233 81 OFFCURVE", "238 67 CURVE SMOOTH" ); } ); width = 216; }, { anchors = ( { name = DotAbove; position = "{109, 853}"; }, { name = Stroke; position = "{116, 585}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; }, { name = TwoDotsAbove; position = "{53, 814}"; }, { name = TwoDotsBelow; position = "{0, -77}"; }, { name = VAbove; position = "{-28, 674}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "199 121 OFFCURVE", "210 112 OFFCURVE", "223 107 CURVE SMOOTH", "236 102 OFFCURVE", "246 90 OFFCURVE", "252 72 CURVE SMOOTH", "258 54 OFFCURVE", "260 36 OFFCURVE", "259 16 CURVE SMOOTH", "258 -4 OFFCURVE", "250 -17 OFFCURVE", "236 -23 CURVE SMOOTH", "230 -26 OFFCURVE", "223 -26 OFFCURVE", "215 -25 CURVE SMOOTH", "181 -20 OFFCURVE", "152 -3 OFFCURVE", "128 27 CURVE SMOOTH", "104 57 OFFCURVE", "91 138 OFFCURVE", "87 272 CURVE", "81 250 OFFCURVE", "73 228 OFFCURVE", "66 207 CURVE SMOOTH", "50 161 OFFCURVE", "26 111 OFFCURVE", "-9 58 CURVE SMOOTH", "-44 5 OFFCURVE", "-98 -29 OFFCURVE", "-173 -44 CURVE SMOOTH", "-205 -50 OFFCURVE", "-255 -55 OFFCURVE", "-321 -59 CURVE SMOOTH", "-336 -60 OFFCURVE", "-343 -54 OFFCURVE", "-346 -42 CURVE SMOOTH", "-349 -30 OFFCURVE", "-344 -21 OFFCURVE", "-331 -16 CURVE", "-176 39 OFFCURVE", "-65 109 OFFCURVE", "1 194 CURVE", "17 216 OFFCURVE", "33 274 OFFCURVE", "49 368 CURVE SMOOTH", "65 462 OFFCURVE", "74 550 OFFCURVE", "74 634 CURVE SMOOTH", "74 646 OFFCURVE", "75 656 OFFCURVE", "79 663 CURVE SMOOTH", "105 713 LINE SMOOTH", "111 724 OFFCURVE", "115 731 OFFCURVE", "118 734 CURVE SMOOTH", "121 737 OFFCURVE", "126 739 OFFCURVE", "131 739 CURVE SMOOTH", "143 739 OFFCURVE", "151 732 OFFCURVE", "153 718 CURVE SMOOTH", "153 715 OFFCURVE", "154 653 OFFCURVE", "154 529 CURVE SMOOTH", "154 405 OFFCURVE", "156 315 OFFCURVE", "159 258 CURVE SMOOTH", "162 201 OFFCURVE", "172 161 OFFCURVE", "189 135 CURVE" ); } ); width = 216; } ); }, { glyphname = aLam.fina.KafLam; layers = ( { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{481, 494}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "544 -132 OFFCURVE", "527 -234 OFFCURVE", "472 -276 CURVE SMOOTH", "401 -330 OFFCURVE", "331 -359 OFFCURVE", "265 -360 CURVE SMOOTH", "199 -361 OFFCURVE", "147 -343 OFFCURVE", "109 -306 CURVE SMOOTH", "71 -269 OFFCURVE", "57 -219 OFFCURVE", "66 -154 CURVE SMOOTH", "75 -89 OFFCURVE", "103 -24 OFFCURVE", "153 42 CURVE SMOOTH", "156 46 OFFCURVE", "160 48 OFFCURVE", "165 48 CURVE SMOOTH", "170 48 OFFCURVE", "172 46 OFFCURVE", "174 42 CURVE SMOOTH", "176 38 OFFCURVE", "175 33 OFFCURVE", "171 27 CURVE SMOOTH", "115 -54 OFFCURVE", "98 -121 OFFCURVE", "120 -172 CURVE SMOOTH", "146 -232 OFFCURVE", "206 -259 OFFCURVE", "299 -253 CURVE SMOOTH", "376 -248 OFFCURVE", "444 -217 OFFCURVE", "505 -157 CURVE", "457 523 LINE SMOOTH", "455 545 OFFCURVE", "455 562 OFFCURVE", "458 573 CURVE SMOOTH", "477 633 LINE SMOOTH", "486 645 OFFCURVE", "493 638 OFFCURVE", "497 613 CURVE SMOOTH", "523 348 LINE SMOOTH", "537 190 OFFCURVE", "563 106 OFFCURVE", "602 94 CURVE SMOOTH", "625 83 OFFCURVE", "633 69 OFFCURVE", "628 51 CURVE SMOOTH", "616 9 OFFCURVE", "608 -12 OFFCURVE", "603 -11 CURVE SMOOTH", "563 -3 OFFCURVE", "534 28 OFFCURVE", "516 83 CURVE", "523 31 LINE" ); } ); width = 602; }, { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{481, 494}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "557 -146 OFFCURVE", "537 -245 OFFCURVE", "481 -288 CURVE", "407 -344 OFFCURVE", "335 -373 OFFCURVE", "265 -374 CURVE SMOOTH", "195 -375 OFFCURVE", "140 -356 OFFCURVE", "99 -316 CURVE SMOOTH", "58 -276 OFFCURVE", "42 -221 OFFCURVE", "51 -153 CURVE SMOOTH", "60 -85 OFFCURVE", "91 -17 OFFCURVE", "142 51 CURVE SMOOTH", "148 59 OFFCURVE", "156 62 OFFCURVE", "166 62 CURVE SMOOTH", "176 62 OFFCURVE", "183 57 OFFCURVE", "187 48 CURVE SMOOTH", "191 39 OFFCURVE", "190 29 OFFCURVE", "183 19 CURVE", "130 -58 OFFCURVE", "114 -120 OFFCURVE", "134 -166 CURVE", "158 -219 OFFCURVE", "212 -244 OFFCURVE", "298 -239 CURVE", "369 -235 OFFCURVE", "433 -205 OFFCURVE", "490 -151 CURVE", "442 522 LINE SMOOTH", "440 546 OFFCURVE", "441 564 OFFCURVE", "444 577 CURVE", "463 640 LINE", "469 648 OFFCURVE", "475 652 OFFCURVE", "481 653 CURVE SMOOTH", "495 655 OFFCURVE", "505 646 OFFCURVE", "509 625 CURVE SMOOTH", "509 623 OFFCURVE", "510 620 OFFCURVE", "511 615 CURVE SMOOTH", "538 349 LINE", "551 204 OFFCURVE", "573 123 OFFCURVE", "608 107 CURVE SMOOTH", "632 96 OFFCURVE", "644 81 OFFCURVE", "644 61 CURVE SMOOTH", "644 56 OFFCURVE", "644 52 OFFCURVE", "643 48 CURVE SMOOTH", "642 44 OFFCURVE", "638 33 OFFCURVE", "634 16 CURVE SMOOTH", "626 -14 OFFCURVE", "615 -28 OFFCURVE", "600 -25 CURVE", "577 -20 OFFCURVE", "557 -9 OFFCURVE", "540 9 CURVE" ); } ); width = 602; } ); }, { glyphname = aAlf.fina.KafAlf; layers = ( { anchors = ( { name = DigitAbove; position = "{-12, 644}"; }, { name = HamzaAbove; position = "{62, 766}"; }, { name = HamzaBelow; position = "{171, -39}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "211 90 OFFCURVE", "225 69 OFFCURVE", "229 32 CURVE SMOOTH", "233 1 OFFCURVE", "218 -14 OFFCURVE", "188 -11 CURVE SMOOTH", "158 -8 OFFCURVE", "132 4 OFFCURVE", "111 27 CURVE SMOOTH", "75 64 OFFCURVE", "58 150 OFFCURVE", "60 284 CURVE SMOOTH", "61 358 OFFCURVE", "59 427 OFFCURVE", "52 489 CURVE SMOOTH", "43 572 OFFCURVE", "35 625 OFFCURVE", "30 647 CURVE SMOOTH", "24 671 OFFCURVE", "24 686 OFFCURVE", "27 691 CURVE SMOOTH", "56 737 LINE SMOOTH", "62 746 OFFCURVE", "66 746 OFFCURVE", "69 735 CURVE SMOOTH", "87 669 OFFCURVE", "97 548 OFFCURVE", "98 372 CURVE SMOOTH", "99 246 OFFCURVE", "107 170 OFFCURVE", "120 143 CURVE SMOOTH", "133 116 OFFCURVE", "155 100 OFFCURVE", "188 94 CURVE SMOOTH" ); } ); width = 187; }, { anchors = ( { name = DigitAbove; position = "{-12, 644}"; }, { name = HamzaAbove; position = "{62, 766}"; }, { name = HamzaBelow; position = "{171, -39}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "101 672 OFFCURVE", "111 563 OFFCURVE", "112 414 CURVE SMOOTH", "113 265 OFFCURVE", "120 178 OFFCURVE", "131 153 CURVE SMOOTH", "142 128 OFFCURVE", "163 112 OFFCURVE", "192 107 CURVE SMOOTH", "221 102 OFFCURVE", "238 77 OFFCURVE", "243 33 CURVE SMOOTH", "246 2 OFFCURVE", "236 -17 OFFCURVE", "211 -24 CURVE SMOOTH", "204 -26 OFFCURVE", "196 -26 OFFCURVE", "187 -25 CURVE SMOOTH", "153 -22 OFFCURVE", "125 -8 OFFCURVE", "101 17 CURVE", "62 57 OFFCURVE", "43 146 OFFCURVE", "45 284 CURVE SMOOTH", "46 358 OFFCURVE", "43 431 OFFCURVE", "35 503 CURVE SMOOTH", "27 575 OFFCURVE", "21 623 OFFCURVE", "16 645 CURVE SMOOTH", "11 667 OFFCURVE", "9 680 OFFCURVE", "10 686 CURVE SMOOTH", "11 692 OFFCURVE", "12 696 OFFCURVE", "14 699 CURVE SMOOTH", "43 745 LINE SMOOTH", "47 752 OFFCURVE", "52 756 OFFCURVE", "57 758 CURVE SMOOTH", "70 762 OFFCURVE", "78 755 OFFCURVE", "83 739 CURVE" ); } ); width = 187; } ); }, { glyphname = aKaf.init.KafMemAlf; layers = ( { anchors = ( { name = Dash; position = "{247, 742}"; }, { name = DotAbove; position = "{6, 679}"; }, { name = DotBelow; position = "{293, -73}"; }, { name = RingBelow; position = "{222, 601}"; }, { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; }, { name = TwoDotsAbove; position = "{-48, 679}"; }, { name = TwoDotsBelow; position = "{293, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-4 -40 OFFCURVE", "-14 -28 OFFCURVE", "-16 1 CURVE SMOOTH", "-18 30 OFFCURVE", "-5 58 OFFCURVE", "24 86 CURVE SMOOTH", "41 103 OFFCURVE", "77 114 OFFCURVE", "133 119 CURVE SMOOTH", "189 124 OFFCURVE", "225 129 OFFCURVE", "241 134 CURVE SMOOTH", "249 137 OFFCURVE", "251 143 OFFCURVE", "244 153 CURVE SMOOTH", "199 218 OFFCURVE", "92 273 OFFCURVE", "-75 318 CURVE SMOOTH", "-91 322 OFFCURVE", "-99 343 OFFCURVE", "-99 379 CURVE SMOOTH", "-99 408 OFFCURVE", "-94 433 OFFCURVE", "-83 456 CURVE SMOOTH", "-73 476 OFFCURVE", "-39 506 OFFCURVE", "20 546 CURVE SMOOTH", "76 584 OFFCURVE", "243 665 OFFCURVE", "520 786 CURVE SMOOTH", "538 794 OFFCURVE", "544 789 OFFCURVE", "540 772 CURVE SMOOTH", "524 710 LINE SMOOTH", "520 696 OFFCURVE", "513 688 OFFCURVE", "502 684 CURVE SMOOTH", "366 633 OFFCURVE", "244 582 OFFCURVE", "137 531 CURVE SMOOTH", "30 480 OFFCURVE", "-37 443 OFFCURVE", "-63 419 CURVE SMOOTH", "-67 415 OFFCURVE", "-67 412 OFFCURVE", "-62 411 CURVE SMOOTH", "51 375 OFFCURVE", "133 340 OFFCURVE", "183 305 CURVE SMOOTH", "236 268 OFFCURVE", "267 233 OFFCURVE", "276 201 CURVE SMOOTH", "285 169 OFFCURVE", "284 137 OFFCURVE", "275 106 CURVE SMOOTH", "270 90 OFFCURVE", "256 75 OFFCURVE", "232 62 CURVE SMOOTH", "212 52 OFFCURVE", "163 45 OFFCURVE", "82 40 CURVE SMOOTH", "59 39 OFFCURVE", "42 37 OFFCURVE", "33 33 CURVE SMOOTH", "12 25 OFFCURVE", "6 12 OFFCURVE", "18 -4 CURVE SMOOTH", "30 -20 OFFCURVE", "28 -30 OFFCURVE", "13 -35 CURVE SMOOTH" ); } ); width = 585; }, { anchors = ( { name = Dash; position = "{247, 742}"; }, { name = DotAbove; position = "{6, 679}"; }, { name = DotBelow; position = "{293, -73}"; }, { name = RingBelow; position = "{222, 601}"; }, { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; }, { name = TwoDotsAbove; position = "{-48, 679}"; }, { name = TwoDotsBelow; position = "{293, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "31 -9 OFFCURVE", "34 -21 OFFCURVE", "33 -32 CURVE SMOOTH", "32 -43 OFFCURVE", "24 -48 OFFCURVE", "10 -50 CURVE SMOOTH", "-10 -52 OFFCURVE", "-21 -36 OFFCURVE", "-24 -1 CURVE SMOOTH", "-27 37 OFFCURVE", "-15 69 OFFCURVE", "14 97 CURVE SMOOTH", "36 118 OFFCURVE", "69 130 OFFCURVE", "113 133 CURVE SMOOTH", "189 138 OFFCURVE", "232 142 OFFCURVE", "241 146 CURVE", "195 212 OFFCURVE", "90 265 OFFCURVE", "-73 304 CURVE", "-89 310 OFFCURVE", "-100 329 OFFCURVE", "-104 361 CURVE", "-116 436 OFFCURVE", "-77 501 OFFCURVE", "11 558 CURVE SMOOTH", "123 630 OFFCURVE", "285 710 OFFCURVE", "499 799 CURVE SMOOTH", "535 814 OFFCURVE", "549 804 OFFCURVE", "540 769 CURVE SMOOTH", "524 707 LINE SMOOTH", "519 688 OFFCURVE", "509 676 OFFCURVE", "492 670 CURVE SMOOTH", "356 619 OFFCURVE", "239 570 OFFCURVE", "141 524 CURVE SMOOTH", "43 478 OFFCURVE", "-22 442 OFFCURVE", "-54 419 CURVE", "59 387 OFFCURVE", "143 352 OFFCURVE", "197 312 CURVE SMOOTH", "274 256 OFFCURVE", "299 186 OFFCURVE", "274 102 CURVE SMOOTH", "260 57 OFFCURVE", "197 31 OFFCURVE", "83 25 CURVE SMOOTH", "47 23 OFFCURVE", "25 19 OFFCURVE", "18 12 CURVE", "18 10 OFFCURVE", "19 8 OFFCURVE", "21 5 CURVE SMOOTH" ); } ); width = 585; } ); }, { glyphname = aKaf.medi.KafMemAlf; layers = ( { anchors = ( { name = Dash; position = "{247, 742}"; }, { name = DotAbove; position = "{6, 679}"; }, { name = DotBelow; position = "{320, 0}"; }, { name = RingBelow; position = "{222, 601}"; }, { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{-48, 679}"; }, { name = TwoDotsBelow; position = "{266, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "86 411 OFFCURVE", "192 364 OFFCURVE", "276 296 CURVE SMOOTH", "322 259 OFFCURVE", "354 231 OFFCURVE", "372 213 CURVE SMOOTH", "453 132 OFFCURVE", "511 90 OFFCURVE", "548 90 CURVE SMOOTH", "585 90 OFFCURVE", "591 65 OFFCURVE", "566 16 CURVE SMOOTH", "561 6 OFFCURVE", "555 0 OFFCURVE", "549 0 CURVE SMOOTH", "500 0 OFFCURVE", "446 33 OFFCURVE", "384 99 CURVE SMOOTH", "307 182 OFFCURVE", "255 232 OFFCURVE", "231 248 CURVE", "238 199 OFFCURVE", "238 163 OFFCURVE", "228 138 CURVE SMOOTH", "209 89 OFFCURVE", "161 64 OFFCURVE", "86 65 CURVE SMOOTH", "51 65 OFFCURVE", "27 60 OFFCURVE", "15 50 CURVE SMOOTH", "12 48 OFFCURVE", "11 45 OFFCURVE", "12 40 CURVE SMOOTH", "15 20 OFFCURVE", "11 9 OFFCURVE", "0 6 CURVE SMOOTH", "-11 3 OFFCURVE", "-15 11 OFFCURVE", "-12 30 CURVE SMOOTH", "-10 45 OFFCURVE", "-5 61 OFFCURVE", "3 76 CURVE SMOOTH", "30 128 OFFCURVE", "93 154 OFFCURVE", "193 154 CURVE SMOOTH", "206 154 OFFCURVE", "212 159 OFFCURVE", "212 168 CURVE", "212 188 OFFCURVE", "202 210 OFFCURVE", "180 234 CURVE SMOOTH", "134 283 OFFCURVE", "49 321 OFFCURVE", "-75 346 CURVE SMOOTH", "-88 349 OFFCURVE", "-93 366 OFFCURVE", "-93 399 CURVE SMOOTH", "-93 421 OFFCURVE", "-90 440 OFFCURVE", "-83 456 CURVE SMOOTH", "-75 476 OFFCURVE", "-40 507 OFFCURVE", "21 549 CURVE SMOOTH", "75 586 OFFCURVE", "242 665 OFFCURVE", "520 786 CURVE SMOOTH", "538 794 OFFCURVE", "544 789 OFFCURVE", "540 772 CURVE SMOOTH", "524 710 LINE SMOOTH", "520 696 OFFCURVE", "513 688 OFFCURVE", "502 684 CURVE SMOOTH", "371 635 OFFCURVE", "250 584 OFFCURVE", "137 531 CURVE SMOOTH", "46 488 OFFCURVE", "-14 456 OFFCURVE", "-44 434 CURVE" ); } ); width = 549; }, { anchors = ( { name = Dash; position = "{247, 742}"; }, { name = DotAbove; position = "{6, 679}"; }, { name = DotBelow; position = "{320, 0}"; }, { name = RingBelow; position = "{222, 601}"; }, { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{-48, 679}"; }, { name = TwoDotsBelow; position = "{266, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "108 412 OFFCURVE", "211 369 OFFCURVE", "286 307 CURVE SMOOTH", "337 265 OFFCURVE", "370 237 OFFCURVE", "383 223 CURVE SMOOTH", "459 145 OFFCURVE", "515 105 OFFCURVE", "552 104 CURVE SMOOTH", "601 103 OFFCURVE", "611 71 OFFCURVE", "580 9 CURVE", "572 -7 OFFCURVE", "561 -15 OFFCURVE", "549 -15 CURVE SMOOTH", "492 -15 OFFCURVE", "418 39 OFFCURVE", "325 147 CURVE SMOOTH", "301 174 OFFCURVE", "275 200 OFFCURVE", "245 222 CURVE", "253 110 OFFCURVE", "202 54 OFFCURVE", "94 55 CURVE SMOOTH", "59 55 OFFCURVE", "35 51 OFFCURVE", "22 41 CURVE", "26 11 OFFCURVE", "20 -5 OFFCURVE", "3 -8 CURVE SMOOTH", "-1 -9 OFFCURVE", "-5 -9 OFFCURVE", "-8 -9 CURVE SMOOTH", "-25 -6 OFFCURVE", "-31 6 OFFCURVE", "-27 27 CURVE SMOOTH", "-12 118 OFFCURVE", "65 164 OFFCURVE", "203 164 CURVE SMOOTH", "205 164 OFFCURVE", "207 165 OFFCURVE", "208 165 CURVE", "201 236 OFFCURVE", "111 292 OFFCURVE", "-63 332 CURVE SMOOTH", "-81 336 OFFCURVE", "-93 351 OFFCURVE", "-98 378 CURVE SMOOTH", "-111 442 OFFCURVE", "-75 503 OFFCURVE", "11 558 CURVE SMOOTH", "119 628 OFFCURVE", "282 708 OFFCURVE", "499 799 CURVE SMOOTH", "535 814 OFFCURVE", "549 804 OFFCURVE", "540 769 CURVE SMOOTH", "524 707 LINE SMOOTH", "519 688 OFFCURVE", "509 676 OFFCURVE", "492 670 CURVE SMOOTH", "278 591 OFFCURVE", "108 512 OFFCURVE", "-21 436 CURVE" ); } ); width = 549; } ); }, { glyphname = aMem.medi.KafMemAlf; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-2 41 OFFCURVE", "7 41 OFFCURVE", "14 36 CURVE SMOOTH", "21 32 OFFCURVE", "24 31 OFFCURVE", "25 34 CURVE SMOOTH", "32 55 OFFCURVE", "38 56 OFFCURVE", "44 40 CURVE SMOOTH", "62 -7 OFFCURVE", "106 -36 OFFCURVE", "173 -48 CURVE SMOOTH", "181 -49 OFFCURVE", "184 -56 OFFCURVE", "184 -67 CURVE SMOOTH", "183 -145 LINE SMOOTH", "183 -157 OFFCURVE", "179 -161 OFFCURVE", "173 -160 CURVE SMOOTH", "86 -140 OFFCURVE", "21 -101 OFFCURVE", "-24 -42 CURVE SMOOTH", "-32 -28 OFFCURVE", "-35 -12 OFFCURVE", "-31 6 CURVE SMOOTH", "-28 22 OFFCURVE", "-22 33 OFFCURVE", "-12 37 CURVE SMOOTH" ); } ); width = 37; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-48 21 OFFCURVE", "-39 40 OFFCURVE", "-19 49 CURVE SMOOTH", "-6 55 OFFCURVE", "7 55 OFFCURVE", "17 51 CURVE", "21 58 OFFCURVE", "24 62 OFFCURVE", "29 64 CURVE SMOOTH", "42 69 OFFCURVE", "51 63 OFFCURVE", "58 45 CURVE SMOOTH", "75 3 OFFCURVE", "114 -23 OFFCURVE", "175 -34 CURVE", "191 -37 OFFCURVE", "199 -48 OFFCURVE", "199 -67 CURVE SMOOTH", "197 -145 LINE SMOOTH", "196 -157 OFFCURVE", "194 -166 OFFCURVE", "188 -170 CURVE SMOOTH", "182 -174 OFFCURVE", "176 -175 OFFCURVE", "170 -174 CURVE SMOOTH", "79 -153 OFFCURVE", "10 -112 OFFCURVE", "-37 -50 CURVE", "-44 -38 OFFCURVE", "-47 -25 OFFCURVE", "-47 -11 CURVE SMOOTH" ); } ); width = 37; } ); }, { glyphname = aLam.medi.KafMemLam; layers = ( { anchors = ( { name = DotAbove; position = "{59, 854}"; }, { name = Stroke; position = "{62, 599}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; }, { name = TwoDotsAbove; position = "{0, 854}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{59, 806}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "123 216 OFFCURVE", "159 68 OFFCURVE", "204 36 CURVE SMOOTH", "217 27 OFFCURVE", "218 7 OFFCURVE", "206 -23 CURVE SMOOTH", "193 -55 OFFCURVE", "180 -62 OFFCURVE", "166 -42 CURVE SMOOTH", "135 3 OFFCURVE", "112 62 OFFCURVE", "98 138 CURVE", "73 46 OFFCURVE", "40 0 OFFCURVE", "0 0 CURVE SMOOTH", "-7 0 OFFCURVE", "-13 7 OFFCURVE", "-18 20 CURVE SMOOTH", "-36 67 OFFCURVE", "-29 89 OFFCURVE", "0 90 CURVE SMOOTH", "41 91 OFFCURVE", "65 112 OFFCURVE", "72 152 CURVE SMOOTH", "72 154 OFFCURVE", "65 238 OFFCURVE", "51 405 CURVE SMOOTH", "38 551 OFFCURVE", "31 636 OFFCURVE", "30 661 CURVE SMOOTH", "29 674 OFFCURVE", "30 683 OFFCURVE", "32 687 CURVE SMOOTH", "58 743 LINE SMOOTH", "66 761 OFFCURVE", "72 759 OFFCURVE", "74 736 CURVE SMOOTH", "98 481 LINE SMOOTH" ); } ); width = 189; }, { anchors = ( { name = DotAbove; position = "{59, 854}"; }, { name = Stroke; position = "{62, 599}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; }, { name = TwoDotsAbove; position = "{0, 854}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{59, 806}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "138 222 OFFCURVE", "172 78 OFFCURVE", "215 47 CURVE SMOOTH", "224 40 OFFCURVE", "229 30 OFFCURVE", "229 15 CURVE SMOOTH", "229 0 OFFCURVE", "226 -14 OFFCURVE", "219 -30 CURVE SMOOTH", "208 -54 OFFCURVE", "195 -67 OFFCURVE", "181 -68 CURVE", "171 -68 OFFCURVE", "161 -61 OFFCURVE", "153 -50 CURVE SMOOTH", "129 -14 OFFCURVE", "110 30 OFFCURVE", "96 83 CURVE", "71 18 OFFCURVE", "38 -15 OFFCURVE", "0 -15 CURVE", "-13 -15 OFFCURVE", "-24 -5 OFFCURVE", "-31 14 CURVE SMOOTH", "-38 33 OFFCURVE", "-42 50 OFFCURVE", "-42 66 CURVE SMOOTH", "-42 82 OFFCURVE", "-35 94 OFFCURVE", "-19 101 CURVE SMOOTH", "-13 104 OFFCURVE", "-7 105 OFFCURVE", "0 105 CURVE SMOOTH", "33 106 OFFCURVE", "51 122 OFFCURVE", "57 153 CURVE", "56 167 OFFCURVE", "50 248 OFFCURVE", "37 398 CURVE SMOOTH", "24 548 OFFCURVE", "17 633 OFFCURVE", "16 653 CURVE SMOOTH", "15 673 OFFCURVE", "16 687 OFFCURVE", "19 694 CURVE SMOOTH", "45 749 LINE SMOOTH", "53 765 OFFCURVE", "62 772 OFFCURVE", "72 769 CURVE SMOOTH", "82 766 OFFCURVE", "87 757 OFFCURVE", "88 740 CURVE SMOOTH", "88 738 OFFCURVE", "88 737 OFFCURVE", "88 737 CURVE SMOOTH", "113 482 LINE SMOOTH" ); } ); width = 189; } ); }, { glyphname = aLam.fina.KafMemLam; layers = ( { anchors = ( { name = DotAbove; position = "{269, 586}"; }, { name = Stroke; position = "{460, 509}"; }, { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{276, -488}"; }, { name = VAbove; position = "{308, 625}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "648 23 OFFCURVE", "652 8 OFFCURVE", "650 -9 CURVE SMOOTH", "648 -24 OFFCURVE", "644 -34 OFFCURVE", "637 -40 CURVE SMOOTH", "620 -52 OFFCURVE", "607 -53 OFFCURVE", "598 -42 CURVE SMOOTH", "578 -17 OFFCURVE", "566 16 OFFCURVE", "559 57 CURVE", "566 7 OFFCURVE", "569 -52 OFFCURVE", "567 -121 CURVE SMOOTH", "565 -190 OFFCURVE", "557 -235 OFFCURVE", "543 -256 CURVE SMOOTH", "517 -295 OFFCURVE", "479 -324 OFFCURVE", "428 -343 CURVE SMOOTH", "377 -362 OFFCURVE", "323 -370 OFFCURVE", "265 -365 CURVE SMOOTH", "173 -357 OFFCURVE", "119 -304 OFFCURVE", "107 -208 CURVE SMOOTH", "102 -173 OFFCURVE", "109 -130 OFFCURVE", "126 -78 CURVE SMOOTH", "143 -26 OFFCURVE", "164 20 OFFCURVE", "189 61 CURVE SMOOTH", "192 65 OFFCURVE", "195 67 OFFCURVE", "199 67 CURVE SMOOTH", "203 67 OFFCURVE", "205 66 OFFCURVE", "207 63 CURVE SMOOTH", "209 60 OFFCURVE", "209 56 OFFCURVE", "207 53 CURVE SMOOTH", "182 8 OFFCURVE", "165 -38 OFFCURVE", "157 -86 CURVE SMOOTH", "141 -186 OFFCURVE", "178 -245 OFFCURVE", "268 -264 CURVE SMOOTH", "315 -274 OFFCURVE", "367 -268 OFFCURVE", "422 -247 CURVE SMOOTH", "477 -226 OFFCURVE", "516 -200 OFFCURVE", "539 -170 CURVE", "468 576 LINE SMOOTH", "466 597 OFFCURVE", "466 610 OFFCURVE", "468 616 CURVE SMOOTH", "475 639 OFFCURVE", "485 663 OFFCURVE", "498 687 CURVE SMOOTH", "507 704 OFFCURVE", "512 702 OFFCURVE", "514 681 CURVE SMOOTH", "539 417 LINE SMOOTH", "558 219 OFFCURVE", "591 92 OFFCURVE", "637 36 CURVE SMOOTH" ); } ); width = 622; }, { anchors = ( { name = DotAbove; position = "{269, 586}"; }, { name = Stroke; position = "{460, 509}"; }, { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{276, -488}"; }, { name = VAbove; position = "{308, 625}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "662 28 OFFCURVE", "667 10 OFFCURVE", "665 -10 CURVE SMOOTH", "663 -30 OFFCURVE", "656 -44 OFFCURVE", "645 -52 CURVE SMOOTH", "619 -71 OFFCURVE", "599 -68 OFFCURVE", "582 -45 CURVE", "585 -160 OFFCURVE", "577 -232 OFFCURVE", "556 -264 CURVE SMOOTH", "528 -305 OFFCURVE", "487 -337 OFFCURVE", "434 -357 CURVE SMOOTH", "381 -377 OFFCURVE", "323 -384 OFFCURVE", "263 -379 CURVE SMOOTH", "163 -370 OFFCURVE", "107 -314 OFFCURVE", "93 -210 CURVE SMOOTH", "88 -172 OFFCURVE", "95 -127 OFFCURVE", "112 -74 CURVE SMOOTH", "129 -21 OFFCURVE", "151 27 OFFCURVE", "177 69 CURVE SMOOTH", "182 78 OFFCURVE", "190 82 OFFCURVE", "199 82 CURVE SMOOTH", "208 82 OFFCURVE", "214 78 OFFCURVE", "219 71 CURVE", "224 63 OFFCURVE", "225 54 OFFCURVE", "220 46 CURVE SMOOTH", "196 3 OFFCURVE", "180 -43 OFFCURVE", "172 -89 CURVE SMOOTH", "161 -160 OFFCURVE", "177 -207 OFFCURVE", "221 -232 CURVE", "275 -262 OFFCURVE", "340 -262 OFFCURVE", "416 -233 CURVE SMOOTH", "466 -214 OFFCURVE", "502 -192 OFFCURVE", "524 -166 CURVE", "454 575 LINE SMOOTH", "452 598 OFFCURVE", "452 613 OFFCURVE", "454 620 CURVE SMOOTH", "461 644 OFFCURVE", "469 665 OFFCURVE", "478 682 CURVE SMOOTH", "487 699 OFFCURVE", "493 708 OFFCURVE", "497 710 CURVE SMOOTH", "500 711 OFFCURVE", "503 712 OFFCURVE", "506 712 CURVE SMOOTH", "520 713 OFFCURVE", "528 704 OFFCURVE", "529 684 CURVE SMOOTH", "529 683 OFFCURVE", "529 682 OFFCURVE", "529 682 CURVE SMOOTH", "554 419 LINE SMOOTH", "573 224 OFFCURVE", "604 99 OFFCURVE", "648 45 CURVE SMOOTH" ); } ); width = 622; } ); }, { glyphname = aAlf.fina.KafMemAlf; layers = ( { anchors = ( { name = DigitAbove; position = "{-15, 653}"; }, { name = HamzaAbove; position = "{59, 775}"; }, { name = HamzaBelow; position = "{127, -119}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "114 207 OFFCURVE", "140 92 OFFCURVE", "192 33 CURVE SMOOTH", "206 18 OFFCURVE", "211 -3 OFFCURVE", "207 -31 CURVE SMOOTH", "203 -59 OFFCURVE", "195 -72 OFFCURVE", "181 -71 CURVE SMOOTH", "171 -70 OFFCURVE", "160 -60 OFFCURVE", "148 -42 CURVE SMOOTH", "117 4 OFFCURVE", "96 64 OFFCURVE", "85 138 CURVE SMOOTH", "74 212 OFFCURVE", "69 297 OFFCURVE", "69 391 CURVE SMOOTH", "69 481 OFFCURVE", "60 575 OFFCURVE", "42 674 CURVE SMOOTH", "40 685 OFFCURVE", "40 692 OFFCURVE", "42 695 CURVE SMOOTH", "74 743 LINE SMOOTH", "82 756 OFFCURVE", "87 753 OFFCURVE", "89 737 CURVE", "102 640 OFFCURVE", "110 552 OFFCURVE", "112 471 CURVE SMOOTH", "115 380 LINE SMOOTH" ); } ); width = 172; }, { anchors = ( { name = DigitAbove; position = "{-15, 653}"; }, { name = HamzaAbove; position = "{59, 775}"; }, { name = HamzaBelow; position = "{127, -119}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "128 211 OFFCURVE", "153 98 OFFCURVE", "203 42 CURVE SMOOTH", "219 23 OFFCURVE", "226 -3 OFFCURVE", "221 -37 CURVE SMOOTH", "216 -71 OFFCURVE", "203 -87 OFFCURVE", "180 -85 CURVE", "165 -83 OFFCURVE", "151 -72 OFFCURVE", "136 -50 CURVE SMOOTH", "104 -2 OFFCURVE", "82 60 OFFCURVE", "71 135 CURVE SMOOTH", "60 210 OFFCURVE", "54 295 OFFCURVE", "54 387 CURVE SMOOTH", "54 479 OFFCURVE", "46 573 OFFCURVE", "28 671 CURVE SMOOTH", "25 686 OFFCURVE", "26 697 OFFCURVE", "30 703 CURVE SMOOTH", "62 751 LINE SMOOTH", "68 760 OFFCURVE", "74 765 OFFCURVE", "81 766 CURVE", "95 767 OFFCURVE", "102 758 OFFCURVE", "104 739 CURVE", "117 641 OFFCURVE", "125 552 OFFCURVE", "127 471 CURVE SMOOTH", "129 380 LINE" ); } ); width = 172; } ); }, { glyphname = at.ara; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "116 32 OFFCURVE", "187 -13 OFFCURVE", "284 -8 CURVE SMOOTH", "374 -3 OFFCURVE", "454 30 OFFCURVE", "525 92 CURVE SMOOTH", "532 99 OFFCURVE", "537 103 OFFCURVE", "538 104 CURVE SMOOTH", "565 164 LINE SMOOTH", "567 168 OFFCURVE", "566 172 OFFCURVE", "561 177 CURVE SMOOTH", "556 182 OFFCURVE", "543 177 OFFCURVE", "521 162 CURVE SMOOTH", "491 143 LINE SMOOTH", "432 104 OFFCURVE", "390 91 OFFCURVE", "364 105 CURVE SMOOTH", "311 135 OFFCURVE", "280 188 OFFCURVE", "271 263 CURVE", "319 304 OFFCURVE", "392 310 OFFCURVE", "492 282 CURVE SMOOTH", "501 279 OFFCURVE", "508 282 OFFCURVE", "513 289 CURVE SMOOTH", "518 297 OFFCURVE", "517 305 OFFCURVE", "509 312 CURVE SMOOTH", "420 390 OFFCURVE", "340 392 OFFCURVE", "270 320 CURVE SMOOTH", "198 246 OFFCURVE", "199 161 OFFCURVE", "275 65 CURVE", "255 56 OFFCURVE", "230 56 OFFCURVE", "199 63 CURVE SMOOTH", "180 67 OFFCURVE", "162 79 OFFCURVE", "142 99 CURVE SMOOTH", "121 120 OFFCURVE", "107 146 OFFCURVE", "99 174 CURVE SMOOTH", "91 202 OFFCURVE", "87 230 OFFCURVE", "87 259 CURVE SMOOTH", "87 348 OFFCURVE", "117 419 OFFCURVE", "176 472 CURVE SMOOTH", "216 508 OFFCURVE", "269 525 OFFCURVE", "335 525 CURVE SMOOTH", "374 525 OFFCURVE", "410 518 OFFCURVE", "445 504 CURVE SMOOTH", "508 478 OFFCURVE", "559 434 OFFCURVE", "598 370 CURVE SMOOTH", "637 306 OFFCURVE", "656 238 OFFCURVE", "656 166 CURVE SMOOTH", "656 112 OFFCURVE", "644 64 OFFCURVE", "619 21 CURVE SMOOTH", "594 -22 OFFCURVE", "563 -54 OFFCURVE", "526 -76 CURVE SMOOTH", "501 -90 OFFCURVE", "477 -100 OFFCURVE", "453 -104 CURVE", "453 -108 OFFCURVE", "457 -111 OFFCURVE", "466 -115 CURVE SMOOTH", "475 -119 OFFCURVE", "484 -121 OFFCURVE", "495 -121 CURVE SMOOTH", "506 -121 OFFCURVE", "516 -119 OFFCURVE", "526 -115 CURVE SMOOTH", "574 -96 OFFCURVE", "613 -61 OFFCURVE", "646 -10 CURVE SMOOTH", "679 41 OFFCURVE", "695 103 OFFCURVE", "695 177 CURVE SMOOTH", "695 251 OFFCURVE", "674 322 OFFCURVE", "631 393 CURVE SMOOTH", "588 464 OFFCURVE", "531 514 OFFCURVE", "459 542 CURVE SMOOTH", "420 557 OFFCURVE", "380 564 OFFCURVE", "340 564 CURVE SMOOTH", "229 564 OFFCURVE", "147 523 OFFCURVE", "96 439 CURVE SMOOTH", "64 387 OFFCURVE", "48 332 OFFCURVE", "48 275 CURVE SMOOTH", "48 216 OFFCURVE", "56 167 OFFCURVE", "73 129 CURVE SMOOTH" ); } ); width = 730; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "103 162 OFFCURVE", "88 218 OFFCURVE", "88 283 CURVE SMOOTH", "88 348 OFFCURVE", "106 405 OFFCURVE", "144 453 CURVE SMOOTH", "182 501 OFFCURVE", "242 525 OFFCURVE", "324 525 CURVE SMOOTH", "418 525 OFFCURVE", "500 486 OFFCURVE", "570 409 CURVE SMOOTH", "611 363 OFFCURVE", "640 311 OFFCURVE", "656 251 CURVE SMOOTH", "664 222 OFFCURVE", "668 194 OFFCURVE", "668 166 CURVE SMOOTH", "668 112 OFFCURVE", "655 63 OFFCURVE", "630 21 CURVE SMOOTH", "588 -50 OFFCURVE", "532 -91 OFFCURVE", "461 -102 CURVE", "461 -106 OFFCURVE", "466 -109 OFFCURVE", "475 -114 CURVE SMOOTH", "484 -119 OFFCURVE", "494 -121 OFFCURVE", "505 -121 CURVE SMOOTH", "516 -121 OFFCURVE", "529 -118 OFFCURVE", "544 -112 CURVE SMOOTH", "592 -93 OFFCURVE", "633 -60 OFFCURVE", "666 -11 CURVE SMOOTH", "699 38 OFFCURVE", "715 98 OFFCURVE", "715 171 CURVE SMOOTH", "715 244 OFFCURVE", "690 317 OFFCURVE", "641 389 CURVE SMOOTH", "591 461 OFFCURVE", "527 512 OFFCURVE", "451 541 CURVE SMOOTH", "410 557 OFFCURVE", "367 564 OFFCURVE", "322 564 CURVE SMOOTH", "277 564 OFFCURVE", "236 557 OFFCURVE", "200 542 CURVE SMOOTH", "164 527 OFFCURVE", "134 507 OFFCURVE", "112 481 CURVE SMOOTH", "67 428 OFFCURVE", "45 362 OFFCURVE", "45 283 CURVE SMOOTH", "45 234 OFFCURVE", "55 188 OFFCURVE", "75 143 CURVE SMOOTH", "95 98 OFFCURVE", "121 61 OFFCURVE", "155 34 CURVE SMOOTH", "189 7 OFFCURVE", "224 -7 OFFCURVE", "261 -7 CURVE SMOOTH", "325 -7 OFFCURVE", "378 3 OFFCURVE", "421 24 CURVE SMOOTH", "464 45 OFFCURVE", "503 70 OFFCURVE", "539 100 CURVE SMOOTH", "543 103 OFFCURVE", "545 106 OFFCURVE", "546 109 CURVE SMOOTH", "574 169 LINE SMOOTH", "578 177 OFFCURVE", "577 184 OFFCURVE", "572 190 CURVE", "563 199 OFFCURVE", "552 200 OFFCURVE", "541 193 CURVE SMOOTH", "485 161 LINE SMOOTH", "429 128 OFFCURVE", "391 116 OFFCURVE", "369 124 CURVE", "313 155 OFFCURVE", "280 204 OFFCURVE", "271 273 CURVE", "317 310 OFFCURVE", "388 316 OFFCURVE", "484 290 CURVE SMOOTH", "500 286 OFFCURVE", "511 288 OFFCURVE", "517 298 CURVE SMOOTH", "523 308 OFFCURVE", "519 319 OFFCURVE", "506 330 CURVE SMOOTH", "415 407 OFFCURVE", "333 409 OFFCURVE", "261 335 CURVE SMOOTH", "189 261 OFFCURVE", "188 176 OFFCURVE", "259 80 CURVE", "201 68 OFFCURVE", "160 80 OFFCURVE", "135 116 CURVE SMOOTH" ); } ); width = 749; } ); }, { glyphname = aKaf.init.KafHeh; layers = ( { anchors = ( { name = Dash; position = "{327, 854}"; }, { name = DotAbove; position = "{-15, 788}"; }, { name = DotBelow; position = "{110, -146}"; }, { name = RingBelow; position = "{317, 781}"; }, { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-68, 788}"; }, { name = TwoDotsBelow; position = "{56, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "610 921 OFFCURVE", "616 914 OFFCURVE", "612 897 CURVE SMOOTH", "601 853 LINE SMOOTH", "597 836 OFFCURVE", "591 826 OFFCURVE", "583 823 CURVE SMOOTH", "268 722 OFFCURVE", "68 644 OFFCURVE", "-15 587 CURVE", "57 523 OFFCURVE", "116 446 OFFCURVE", "163 357 CURVE SMOOTH", "218 252 OFFCURVE", "238 163 OFFCURVE", "223 87 CURVE SMOOTH", "215 48 OFFCURVE", "203 22 OFFCURVE", "187 9 CURVE SMOOTH", "124 -42 OFFCURVE", "65 -59 OFFCURVE", "9 -41 CURVE SMOOTH", "-19 -32 OFFCURVE", "-33 -7 OFFCURVE", "-35 31 CURVE SMOOTH", "-37 64 OFFCURVE", "-30 80 OFFCURVE", "-14 83 CURVE SMOOTH", "-8 84 OFFCURVE", "1 81 OFFCURVE", "15 73 CURVE SMOOTH", "64 45 OFFCURVE", "122 59 OFFCURVE", "191 115 CURVE", "173 212 OFFCURVE", "111 321 OFFCURVE", "3 442 CURVE SMOOTH", "0 445 OFFCURVE", "-2 445 OFFCURVE", "-6 441 CURVE", "-17 432 LINE SMOOTH", "-21 428 OFFCURVE", "-24 429 OFFCURVE", "-28 433 CURVE SMOOTH", "-76 487 LINE SMOOTH", "-79 490 OFFCURVE", "-78 506 OFFCURVE", "-76 535 CURVE SMOOTH", "-74 564 OFFCURVE", "-70 586 OFFCURVE", "-64 597 CURVE SMOOTH", "-46 632 OFFCURVE", "-25 657 OFFCURVE", "-2 674 CURVE SMOOTH", "94 743 OFFCURVE", "292 824 OFFCURVE", "594 916 CURVE SMOOTH" ); } ); width = 674; }, { anchors = ( { name = Dash; position = "{327, 854}"; }, { name = DotAbove; position = "{-15, 788}"; }, { name = DotBelow; position = "{110, -146}"; }, { name = RingBelow; position = "{317, 781}"; }, { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-68, 788}"; }, { name = TwoDotsBelow; position = "{56, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "598 932 OFFCURVE", "604 932 OFFCURVE", "610 931 CURVE SMOOTH", "626 927 OFFCURVE", "631 915 OFFCURVE", "626 894 CURVE SMOOTH", "615 849 LINE", "609 827 OFFCURVE", "601 813 OFFCURVE", "588 809 CURVE", "293 715 OFFCURVE", "100 640 OFFCURVE", "9 585 CURVE", "76 522 OFFCURVE", "132 448 OFFCURVE", "176 364 CURVE SMOOTH", "232 256 OFFCURVE", "252 163 OFFCURVE", "237 84 CURVE", "228 42 OFFCURVE", "214 12 OFFCURVE", "196 -3 CURVE SMOOTH", "129 -57 OFFCURVE", "66 -74 OFFCURVE", "5 -55 CURVE", "-29 -43 OFFCURVE", "-47 -16 OFFCURVE", "-49 27 CURVE SMOOTH", "-51 70 OFFCURVE", "-41 94 OFFCURVE", "-17 98 CURVE SMOOTH", "-8 99 OFFCURVE", "6 95 OFFCURVE", "22 86 CURVE SMOOTH", "63 62 OFFCURVE", "114 74 OFFCURVE", "175 121 CURVE", "156 211 OFFCURVE", "98 312 OFFCURVE", "-1 425 CURVE", "-16 412 OFFCURVE", "-29 411 OFFCURVE", "-39 423 CURVE SMOOTH", "-87 477 LINE SMOOTH", "-93 484 OFFCURVE", "-96 494 OFFCURVE", "-94 509 CURVE SMOOTH", "-92 524 OFFCURVE", "-90 541 OFFCURVE", "-89 558 CURVE SMOOTH", "-88 575 OFFCURVE", "-84 590 OFFCURVE", "-77 603 CURVE SMOOTH", "-58 640 OFFCURVE", "-36 668 OFFCURVE", "-11 686 CURVE SMOOTH", "86 756 OFFCURVE", "287 837 OFFCURVE", "590 930 CURVE SMOOTH" ); } ); width = 674; } ); }, { glyphname = aKaf.medi.KafHeh; layers = ( { anchors = ( { name = Dash; position = "{282, 791}"; }, { name = DotAbove; position = "{-62, 726}"; }, { name = DotBelow; position = "{309, -68}"; }, { name = RingBelow; position = "{252, 669}"; }, { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; }, { name = TwoDotsAbove; position = "{-116, 726}"; }, { name = TwoDotsBelow; position = "{255, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "567 815 OFFCURVE", "571 809 OFFCURVE", "569 797 CURVE SMOOTH", "558 728 LINE SMOOTH", "557 723 OFFCURVE", "554 720 OFFCURVE", "549 719 CURVE SMOOTH", "241 647 OFFCURVE", "39 581 OFFCURVE", "-56 523 CURVE", "13 487 OFFCURVE", "103 413 OFFCURVE", "214 300 CURVE SMOOTH", "256 258 OFFCURVE", "304 213 OFFCURVE", "358 165 CURVE SMOOTH", "412 117 OFFCURVE", "447 92 OFFCURVE", "462 90 CURVE SMOOTH", "488 86 OFFCURVE", "493 62 OFFCURVE", "476 18 CURVE SMOOTH", "471 6 OFFCURVE", "467 0 OFFCURVE", "462 0 CURVE SMOOTH", "424 0 OFFCURVE", "341 71 OFFCURVE", "213 214 CURVE SMOOTH", "204 220 OFFCURVE", "201 220 OFFCURVE", "202 213 CURVE SMOOTH", "213 145 OFFCURVE", "216 95 OFFCURVE", "212 63 CURVE", "206 38 OFFCURVE", "196 17 OFFCURVE", "181 0 CURVE SMOOTH", "155 -30 OFFCURVE", "124 -49 OFFCURVE", "88 -55 CURVE SMOOTH", "48 -62 OFFCURVE", "16 -56 OFFCURVE", "-7 -35 CURVE SMOOTH", "-38 -7 OFFCURVE", "-48 19 OFFCURVE", "-36 44 CURVE SMOOTH", "-21 76 OFFCURVE", "-4 86 OFFCURVE", "14 74 CURVE SMOOTH", "39 57 OFFCURVE", "69 52 OFFCURVE", "104 59 CURVE SMOOTH", "139 66 OFFCURVE", "167 83 OFFCURVE", "189 111 CURVE", "181 196 OFFCURVE", "88 310 OFFCURVE", "-89 454 CURVE SMOOTH", "-103 465 OFFCURVE", "-108 482 OFFCURVE", "-104 503 CURVE SMOOTH", "-97 546 OFFCURVE", "-90 572 OFFCURVE", "-82 579 CURVE SMOOTH", "11 659 OFFCURVE", "223 737 OFFCURVE", "554 814 CURVE SMOOTH", "555 814 OFFCURVE", "556 815 OFFCURVE", "557 815 CURVE SMOOTH" ); } ); width = 463; }, { anchors = ( { name = Dash; position = "{282, 791}"; }, { name = DotAbove; position = "{-62, 726}"; }, { name = DotBelow; position = "{309, -68}"; }, { name = RingBelow; position = "{252, 669}"; }, { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; }, { name = TwoDotsAbove; position = "{-116, 726}"; }, { name = TwoDotsBelow; position = "{255, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "570 830 OFFCURVE", "578 823 OFFCURVE", "582 811 CURVE SMOOTH", "583 806 OFFCURVE", "584 800 OFFCURVE", "583 795 CURVE SMOOTH", "573 726 LINE SMOOTH", "571 715 OFFCURVE", "564 708 OFFCURVE", "553 705 CURVE", "269 638 OFFCURVE", "76 578 OFFCURVE", "-26 524 CURVE", "41 484 OFFCURVE", "125 412 OFFCURVE", "225 310 CURVE SMOOTH", "267 268 OFFCURVE", "314 224 OFFCURVE", "366 178 CURVE SMOOTH", "418 132 OFFCURVE", "451 108 OFFCURVE", "465 105 CURVE", "503 98 OFFCURVE", "511 67 OFFCURVE", "490 12 CURVE SMOOTH", "483 -6 OFFCURVE", "473 -15 OFFCURVE", "462 -15 CURVE SMOOTH", "432 -15 OFFCURVE", "384 18 OFFCURVE", "318 82 CURVE SMOOTH", "291 109 OFFCURVE", "259 143 OFFCURVE", "221 184 CURVE", "229 121 OFFCURVE", "231 78 OFFCURVE", "225 54 CURVE SMOOTH", "219 30 OFFCURVE", "208 9 OFFCURVE", "192 -10 CURVE SMOOTH", "163 -42 OFFCURVE", "128 -63 OFFCURVE", "86 -70 CURVE SMOOTH", "44 -77 OFFCURVE", "9 -69 OFFCURVE", "-17 -46 CURVE", "-53 -13 OFFCURVE", "-63 19 OFFCURVE", "-49 50 CURVE SMOOTH", "-46 56 OFFCURVE", "-41 64 OFFCURVE", "-36 72 CURVE SMOOTH", "-31 80 OFFCURVE", "-23 86 OFFCURVE", "-12 90 CURVE SMOOTH", "-1 94 OFFCURVE", "10 93 OFFCURVE", "22 86 CURVE", "44 72 OFFCURVE", "70 67 OFFCURVE", "100 73 CURVE SMOOTH", "130 79 OFFCURVE", "155 93 OFFCURVE", "174 115 CURVE", "161 196 OFFCURVE", "71 305 OFFCURVE", "-98 443 CURVE", "-116 458 OFFCURVE", "-123 479 OFFCURVE", "-119 505 CURVE SMOOTH", "-113 545 OFFCURVE", "-107 569 OFFCURVE", "-102 576 CURVE SMOOTH", "-97 583 OFFCURVE", "-93 588 OFFCURVE", "-91 590 CURVE SMOOTH", "4 671 OFFCURVE", "218 751 OFFCURVE", "550 829 CURVE SMOOTH", "553 830 OFFCURVE", "555 830 OFFCURVE", "557 830 CURVE SMOOTH" ); } ); width = 463; } ); }, { glyphname = aHeh.fina.KafHeh; layers = ( { anchors = ( { name = DotAbove; position = "{83, 425}"; }, { name = HamzaAbove; position = "{83, 425}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{29, 425}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "366 62 OFFCURVE", "369 41 OFFCURVE", "362 10 CURVE SMOOTH", "353 -28 OFFCURVE", "342 -43 OFFCURVE", "330 -35 CURVE SMOOTH", "295 -12 OFFCURVE", "269 45 OFFCURVE", "253 136 CURVE", "239 81 OFFCURVE", "223 52 OFFCURVE", "204 48 CURVE SMOOTH", "185 44 OFFCURVE", "160 44 OFFCURVE", "131 46 CURVE SMOOTH", "102 48 OFFCURVE", "85 52 OFFCURVE", "79 57 CURVE SMOOTH", "64 71 OFFCURVE", "58 85 OFFCURVE", "63 100 CURVE SMOOTH", "83 152 OFFCURVE", "98 183 OFFCURVE", "109 194 CURVE SMOOTH", "139 224 OFFCURVE", "177 250 OFFCURVE", "225 271 CURVE", "220 310 LINE SMOOTH", "218 322 OFFCURVE", "219 331 OFFCURVE", "222 337 CURVE SMOOTH", "243 382 LINE SMOOTH", "249 394 OFFCURVE", "254 390 OFFCURVE", "259 369 CURVE SMOOTH", "275 262 OFFCURVE", "288 189 OFFCURVE", "301 152 CURVE SMOOTH", "314 115 OFFCURVE", "330 89 OFFCURVE", "351 73 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "177 203 OFFCURVE", "139 179 OFFCURVE", "121 146 CURVE", "129 139 OFFCURVE", "143 134 OFFCURVE", "164 132 CURVE SMOOTH", "185 130 OFFCURVE", "207 132 OFFCURVE", "230 140 CURVE SMOOTH", "246 145 OFFCURVE", "250 163 OFFCURVE", "242 194 CURVE SMOOTH", "238 208 OFFCURVE", "236 217 OFFCURVE", "236 220 CURVE" ); } ); width = 336; }, { anchors = ( { name = DotAbove; position = "{83, 425}"; }, { name = HamzaAbove; position = "{83, 425}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{29, 425}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "176 203 OFFCURVE", "140 179 OFFCURVE", "121 146 CURVE", "129 139 OFFCURVE", "143 134 OFFCURVE", "163 131 CURVE SMOOTH", "183 128 OFFCURVE", "204 132 OFFCURVE", "226 140 CURVE SMOOTH", "239 145 OFFCURVE", "242 161 OFFCURVE", "237 188 CURVE SMOOTH", "234 202 OFFCURVE", "232 213 OFFCURVE", "231 220 CURVE" ); }, { closed = 1; nodes = ( "286 273 OFFCURVE", "299 205 OFFCURVE", "310 167 CURVE SMOOTH", "321 129 OFFCURVE", "337 102 OFFCURVE", "358 86 CURVE SMOOTH", "379 70 OFFCURVE", "385 43 OFFCURVE", "376 7 CURVE SMOOTH", "371 -13 OFFCURVE", "366 -27 OFFCURVE", "360 -36 CURVE", "349 -53 OFFCURVE", "336 -56 OFFCURVE", "322 -47 CURVE SMOOTH", "292 -28 OFFCURVE", "269 22 OFFCURVE", "253 104 CURVE", "237 55 OFFCURVE", "220 29 OFFCURVE", "204 24 CURVE SMOOTH", "188 19 OFFCURVE", "164 18 OFFCURVE", "133 21 CURVE SMOOTH", "98 24 OFFCURVE", "77 30 OFFCURVE", "69 37 CURVE SMOOTH", "49 56 OFFCURVE", "43 75 OFFCURVE", "50 95 CURVE SMOOTH", "77 161 OFFCURVE", "93 198 OFFCURVE", "99 205 CURVE SMOOTH", "126 235 OFFCURVE", "165 260 OFFCURVE", "215 280 CURVE", "212 308 LINE SMOOTH", "210 324 OFFCURVE", "211 336 OFFCURVE", "215 344 CURVE SMOOTH", "235 389 LINE SMOOTH", "254 430 OFFCURVE", "266 424 OFFCURVE", "273 372 CURVE SMOOTH" ); } ); width = 336; } ); }, { glyphname = aDal.fina.KafDal; layers = ( { anchors = ( { name = DotAbove; position = "{196, 525}"; }, { name = DotBelow; position = "{231, -161}"; }, { name = HamzaAbove; position = "{142, 525}"; }, { name = HamzaBelow; position = "{193, -161}"; }, { name = RingBelow; position = "{184, 29}"; }, { name = TaaAbove; position = "{145, 488}"; }, { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; }, { name = TwoDotsAbove; position = "{142, 525}"; }, { name = TwoDotsBelow; position = "{139, -161}"; }, { name = VAbove; position = "{145, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "362 -9 OFFCURVE", "341 41 OFFCURVE", "325 121 CURVE SMOOTH", "323 132 OFFCURVE", "319 130 OFFCURVE", "314 115 CURVE SMOOTH", "306 92 OFFCURVE", "296 70 OFFCURVE", "285 49 CURVE SMOOTH", "266 16 OFFCURVE", "234 -3 OFFCURVE", "187 -9 CURVE SMOOTH", "141 -15 OFFCURVE", "109 -14 OFFCURVE", "91 -7 CURVE SMOOTH", "68 1 OFFCURVE", "59 32 OFFCURVE", "65 87 CURVE SMOOTH", "66 96 OFFCURVE", "69 101 OFFCURVE", "75 102 CURVE SMOOTH", "81 103 OFFCURVE", "85 101 OFFCURVE", "87 97 CURVE SMOOTH", "93 85 OFFCURVE", "105 79 OFFCURVE", "124 78 CURVE SMOOTH", "143 77 OFFCURVE", "167 78 OFFCURVE", "197 82 CURVE SMOOTH", "264 91 OFFCURVE", "301 115 OFFCURVE", "307 152 CURVE SMOOTH", "306 165 OFFCURVE", "304 188 OFFCURVE", "299 221 CURVE SMOOTH", "294 254 OFFCURVE", "290 281 OFFCURVE", "285 303 CURVE SMOOTH", "280 326 OFFCURVE", "279 341 OFFCURVE", "282 348 CURVE SMOOTH", "303 394 LINE SMOOTH", "305 398 OFFCURVE", "308 399 OFFCURVE", "312 399 CURVE SMOOTH", "317 399 OFFCURVE", "319 396 OFFCURVE", "320 391 CURVE SMOOTH", "327 344 OFFCURVE", "339 279 OFFCURVE", "356 197 CURVE SMOOTH", "370 131 OFFCURVE", "390 89 OFFCURVE", "418 73 CURVE SMOOTH", "429 67 OFFCURVE", "434 54 OFFCURVE", "434 35 CURVE SMOOTH", "434 10 OFFCURVE", "428 -10 OFFCURVE", "417 -25 CURVE SMOOTH", "410 -35 OFFCURVE", "401 -36 OFFCURVE", "390 -29 CURVE SMOOTH" ); } ); width = 403; }, { anchors = ( { name = DotAbove; position = "{198, 525}"; }, { name = DotBelow; position = "{233, -161}"; }, { name = HamzaAbove; position = "{144, 525}"; }, { name = HamzaBelow; position = "{195, -161}"; }, { name = RingBelow; position = "{186, 29}"; }, { name = TaaAbove; position = "{146, 488}"; }, { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; }, { name = TwoDotsAbove; position = "{144, 525}"; }, { name = TwoDotsBelow; position = "{141, -161}"; }, { name = VAbove; position = "{146, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "357 -21 OFFCURVE", "335 25 OFFCURVE", "321 98 CURVE", "312 72 OFFCURVE", "302 51 OFFCURVE", "291 35 CURVE", "267 2 OFFCURVE", "233 -17 OFFCURVE", "190 -23 CURVE SMOOTH", "147 -29 OFFCURVE", "117 -29 OFFCURVE", "98 -22 CURVE SMOOTH", "69 -12 OFFCURVE", "57 25 OFFCURVE", "62 89 CURVE SMOOTH", "63 104 OFFCURVE", "68 112 OFFCURVE", "75 114 CURVE SMOOTH", "82 116 OFFCURVE", "88 112 OFFCURVE", "94 101 CURVE SMOOTH", "100 90 OFFCURVE", "134 89 OFFCURVE", "196 97 CURVE SMOOTH", "258 105 OFFCURVE", "293 124 OFFCURVE", "299 153 CURVE", "300 165 OFFCURVE", "292 225 OFFCURVE", "276 333 CURVE", "274 346 OFFCURVE", "276 358 OFFCURVE", "282 369 CURVE SMOOTH", "304 412 LINE SMOOTH", "319 442 OFFCURVE", "330 435 OFFCURVE", "336 393 CURVE", "358 214 OFFCURVE", "389 112 OFFCURVE", "428 86 CURVE SMOOTH", "444 76 OFFCURVE", "450 57 OFFCURVE", "450 31 CURVE SMOOTH", "450 5 OFFCURVE", "443 -16 OFFCURVE", "430 -34 CURVE SMOOTH", "417 -52 OFFCURVE", "402 -55 OFFCURVE", "384 -42 CURVE SMOOTH" ); } ); width = 405; } ); }, { glyphname = aLam.init.LamHeh; layers = ( { anchors = ( { name = DotAbove; position = "{-37, 793}"; }, { name = Stroke; position = "{0, 500}"; }, { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; }, { name = TwoDotsAbove; position = "{-95, 793}"; }, { name = TwoDotsBelow; position = "{0, -162}"; }, { name = VAbove; position = "{-37, 744}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-40 687 OFFCURVE", "-36 690 OFFCURVE", "-31 690 CURVE SMOOTH", "-26 690 OFFCURVE", "-23 687 OFFCURVE", "-20 681 CURVE SMOOTH", "-9 652 OFFCURVE", "6 630 OFFCURVE", "26 614 CURVE SMOOTH", "34 607 OFFCURVE", "35 598 OFFCURVE", "28 587 CURVE SMOOTH", "21 576 OFFCURVE", "14 565 OFFCURVE", "7 555 CURVE", "5 554 OFFCURVE", "14 506 OFFCURVE", "34 412 CURVE SMOOTH", "54 318 OFFCURVE", "68 247 OFFCURVE", "73 199 CURVE SMOOTH", "78 151 OFFCURVE", "79 103 OFFCURVE", "77 54 CURVE SMOOTH", "72 -40 OFFCURVE", "50 -89 OFFCURVE", "8 -95 CURVE SMOOTH", "-12 -98 OFFCURVE", "-25 -90 OFFCURVE", "-30 -71 CURVE SMOOTH", "-35 -52 OFFCURVE", "-34 -33 OFFCURVE", "-26 -12 CURVE SMOOTH", "-18 9 OFFCURVE", "-8 19 OFFCURVE", "4 17 CURVE SMOOTH", "22 15 OFFCURVE", "33 14 OFFCURVE", "39 17 CURVE", "47 32 OFFCURVE", "47 67 OFFCURVE", "39 123 CURVE SMOOTH", "31 179 OFFCURVE", "13 270 OFFCURVE", "-12 398 CURVE SMOOTH", "-37 526 OFFCURVE", "-52 595 OFFCURVE", "-55 606 CURVE SMOOTH", "-58 617 OFFCURVE", "-57 630 OFFCURVE", "-52 645 CURVE SMOOTH", "-47 660 OFFCURVE", "-44 671 OFFCURVE", "-42 679 CURVE SMOOTH" ); } ); width = 141; }, { anchors = ( { name = DotAbove; position = "{-37, 793}"; }, { name = Stroke; position = "{0, 500}"; }, { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; }, { name = TwoDotsAbove; position = "{-95, 793}"; }, { name = TwoDotsBelow; position = "{0, -162}"; }, { name = VAbove; position = "{-37, 744}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-52 698 OFFCURVE", "-44 706 OFFCURVE", "-32 705 CURVE SMOOTH", "-20 704 OFFCURVE", "-11 698 OFFCURVE", "-6 686 CURVE", "4 660 OFFCURVE", "19 639 OFFCURVE", "36 625 CURVE", "50 613 OFFCURVE", "51 598 OFFCURVE", "40 580 CURVE SMOOTH", "34 570 OFFCURVE", "28 559 OFFCURVE", "22 550 CURVE", "24 534 OFFCURVE", "34 484 OFFCURVE", "52 400 CURVE SMOOTH", "70 316 OFFCURVE", "82 248 OFFCURVE", "87 200 CURVE SMOOTH", "92 152 OFFCURVE", "94 103 OFFCURVE", "92 54 CURVE SMOOTH", "87 -48 OFFCURVE", "59 -103 OFFCURVE", "10 -110 CURVE SMOOTH", "-18 -114 OFFCURVE", "-35 -103 OFFCURVE", "-42 -78 CURVE SMOOTH", "-53 -40 OFFCURVE", "-48 -9 OFFCURVE", "-27 17 CURVE SMOOTH", "-19 26 OFFCURVE", "-13 31 OFFCURVE", "-7 31 CURVE SMOOTH", "-1 31 OFFCURVE", "5 31 OFFCURVE", "11 30 CURVE SMOOTH", "17 29 OFFCURVE", "23 30 OFFCURVE", "28 30 CURVE", "32 47 OFFCURVE", "30 80 OFFCURVE", "23 130 CURVE SMOOTH", "16 180 OFFCURVE", "-1 268 OFFCURVE", "-26 395 CURVE SMOOTH", "-51 522 OFFCURVE", "-66 592 OFFCURVE", "-70 604 CURVE SMOOTH", "-74 616 OFFCURVE", "-72 630 OFFCURVE", "-67 647 CURVE SMOOTH", "-62 664 OFFCURVE", "-58 676 OFFCURVE", "-56 683 CURVE SMOOTH" ); } ); width = 141; } ); }, { glyphname = aLam.medi.LamHeh; layers = ( { anchors = ( { name = DotAbove; position = "{-3, 806}"; }, { name = Stroke; position = "{10, 545}"; }, { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{31, -327}"; }, { name = TwoDotsAbove; position = "{-62, 806}"; }, { name = TwoDotsBelow; position = "{80, -171}"; }, { name = VAbove; position = "{-3, 757}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-15 5 OFFCURVE", "-6 18 OFFCURVE", "5 17 CURVE SMOOTH", "21 15 OFFCURVE", "31 16 OFFCURVE", "36 22 CURVE SMOOTH", "49 37 OFFCURVE", "51 74 OFFCURVE", "42 133 CURVE SMOOTH", "1 396 OFFCURVE", "-23 549 OFFCURVE", "-29 593 CURVE SMOOTH", "-32 614 OFFCURVE", "-32 628 OFFCURVE", "-29 636 CURVE SMOOTH", "-7 688 LINE SMOOTH", "5 708 OFFCURVE", "13 709 OFFCURVE", "15 693 CURVE SMOOTH", "54 384 OFFCURVE", "83 210 OFFCURVE", "101 170 CURVE SMOOTH", "124 117 OFFCURVE", "153 90 OFFCURVE", "188 90 CURVE SMOOTH", "200 90 OFFCURVE", "207 81 OFFCURVE", "212 63 CURVE SMOOTH", "216 48 OFFCURVE", "215 34 OFFCURVE", "209 20 CURVE SMOOTH", "203 7 OFFCURVE", "196 0 OFFCURVE", "188 0 CURVE SMOOTH", "140 0 OFFCURVE", "100 28 OFFCURVE", "70 86 CURVE", "73 -28 OFFCURVE", "52 -88 OFFCURVE", "7 -96 CURVE SMOOTH", "-16 -100 OFFCURVE", "-27 -89 OFFCURVE", "-26 -63 CURVE SMOOTH", "-25 -49 OFFCURVE", "-24 -35 OFFCURVE", "-21 -21 CURVE SMOOTH" ); } ); width = 187; }, { anchors = ( { name = DotAbove; position = "{-3, 806}"; }, { name = Stroke; position = "{10, 545}"; }, { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{31, -327}"; }, { name = TwoDotsAbove; position = "{-62, 806}"; }, { name = TwoDotsBelow; position = "{80, -171}"; }, { name = VAbove; position = "{-3, 757}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-38 3 OFFCURVE", "-21 34 OFFCURVE", "7 31 CURVE SMOOTH", "16 30 OFFCURVE", "22 31 OFFCURVE", "25 32 CURVE", "35 45 OFFCURVE", "37 78 OFFCURVE", "28 131 CURVE SMOOTH", "-13 394 OFFCURVE", "-37 541 OFFCURVE", "-42 575 CURVE SMOOTH", "-47 609 OFFCURVE", "-46 631 OFFCURVE", "-42 641 CURVE SMOOTH", "-20 695 LINE", "-13 706 OFFCURVE", "-8 713 OFFCURVE", "-4 715 CURVE SMOOTH", "15 725 OFFCURVE", "27 718 OFFCURVE", "30 695 CURVE", "69 388 OFFCURVE", "98 213 OFFCURVE", "117 170 CURVE SMOOTH", "136 127 OFFCURVE", "160 105 OFFCURVE", "188 105 CURVE", "207 104 OFFCURVE", "219 93 OFFCURVE", "225 72 CURVE SMOOTH", "231 51 OFFCURVE", "229 31 OFFCURVE", "221 13 CURVE SMOOTH", "213 -5 OFFCURVE", "202 -15 OFFCURVE", "188 -15 CURVE", "148 -15 OFFCURVE", "114 3 OFFCURVE", "85 37 CURVE", "81 -53 OFFCURVE", "56 -102 OFFCURVE", "10 -110 CURVE SMOOTH", "-16 -115 OFFCURVE", "-33 -106 OFFCURVE", "-39 -82 CURVE SMOOTH", "-40 -76 OFFCURVE", "-41 -70 OFFCURVE", "-41 -63 CURVE SMOOTH" ); } ); width = 187; } ); }, { glyphname = aHeh.fina.LamHeh; layers = ( { anchors = ( { name = DotAbove; position = "{82, 402}"; }, { name = HamzaAbove; position = "{82, 402}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{27, 402}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "335 51 OFFCURVE", "366 22 OFFCURVE", "409 17 CURVE SMOOTH", "421 16 OFFCURVE", "429 5 OFFCURVE", "432 -13 CURVE SMOOTH", "435 -31 OFFCURVE", "435 -50 OFFCURVE", "430 -68 CURVE SMOOTH", "425 -86 OFFCURVE", "419 -95 OFFCURVE", "412 -96 CURVE SMOOTH", "389 -98 OFFCURVE", "368 -92 OFFCURVE", "349 -78 CURVE SMOOTH", "309 -47 OFFCURVE", "278 15 OFFCURVE", "257 109 CURVE", "245 52 OFFCURVE", "229 21 OFFCURVE", "209 17 CURVE SMOOTH", "189 13 OFFCURVE", "164 12 OFFCURVE", "134 13 CURVE SMOOTH", "104 14 OFFCURVE", "86 17 OFFCURVE", "80 23 CURVE SMOOTH", "64 37 OFFCURVE", "58 52 OFFCURVE", "63 67 CURVE SMOOTH", "81 119 OFFCURVE", "95 151 OFFCURVE", "104 161 CURVE SMOOTH", "130 192 OFFCURVE", "171 220 OFFCURVE", "224 245 CURVE", "218 285 LINE SMOOTH", "216 298 OFFCURVE", "215 307 OFFCURVE", "218 313 CURVE SMOOTH", "238 360 LINE SMOOTH", "244 374 OFFCURVE", "249 369 OFFCURVE", "255 346 CURVE SMOOTH", "270 253 OFFCURVE", "291 172 OFFCURVE", "315 106 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "215 188 OFFCURVE", "194 180 OFFCURVE", "171 166 CURVE SMOOTH", "148 152 OFFCURVE", "130 135 OFFCURVE", "120 114 CURVE", "148 96 OFFCURVE", "186 95 OFFCURVE", "233 111 CURVE SMOOTH", "241 114 OFFCURVE", "245 124 OFFCURVE", "245 140 CURVE SMOOTH", "234 193 LINE" ); } ); width = 404; }, { anchors = ( { name = DotAbove; position = "{82, 402}"; }, { name = HamzaAbove; position = "{82, 402}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{27, 402}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "215 188 OFFCURVE", "194 180 OFFCURVE", "171 166 CURVE SMOOTH", "148 152 OFFCURVE", "130 135 OFFCURVE", "120 114 CURVE", "148 96 OFFCURVE", "186 95 OFFCURVE", "233 111 CURVE SMOOTH", "241 114 OFFCURVE", "245 124 OFFCURVE", "245 140 CURVE", "234 193 LINE" ); }, { closed = 1; nodes = ( "346 67 OFFCURVE", "375 35 OFFCURVE", "411 31 CURVE SMOOTH", "430 29 OFFCURVE", "441 16 OFFCURVE", "445 -7 CURVE SMOOTH", "449 -30 OFFCURVE", "449 -53 OFFCURVE", "443 -76 CURVE SMOOTH", "437 -99 OFFCURVE", "427 -110 OFFCURVE", "413 -110 CURVE SMOOTH", "337 -110 OFFCURVE", "286 -51 OFFCURVE", "261 68 CURVE", "249 43 OFFCURVE", "238 24 OFFCURVE", "230 11 CURVE SMOOTH", "221 -4 OFFCURVE", "208 -13 OFFCURVE", "190 -14 CURVE SMOOTH", "125 -20 OFFCURVE", "84 -14 OFFCURVE", "66 1 CURVE SMOOTH", "46 18 OFFCURVE", "41 39 OFFCURVE", "50 62 CURVE SMOOTH", "71 121 OFFCURVE", "86 157 OFFCURVE", "93 170 CURVE", "125 206 OFFCURVE", "166 238 OFFCURVE", "215 263 CURVE", "210 292 LINE SMOOTH", "207 310 OFFCURVE", "208 322 OFFCURVE", "212 329 CURVE SMOOTH", "238 375 LINE SMOOTH", "251 399 OFFCURVE", "262 390 OFFCURVE", "270 349 CURVE SMOOTH", "294 233 OFFCURVE", "312 159 OFFCURVE", "323 127 CURVE" ); } ); width = 404; } ); }, { glyphname = aDal.fina.LamDal; layers = ( { anchors = ( { name = DotAbove; position = "{289, 524}"; }, { name = DotBelow; position = "{240, -159}"; }, { name = HamzaAbove; position = "{289, 524}"; }, { name = HamzaBelow; position = "{240, -159}"; }, { name = RingBelow; position = "{204, 2}"; }, { name = TaaAbove; position = "{240, 500}"; }, { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; }, { name = TwoDotsAbove; position = "{235, 524}"; }, { name = TwoDotsBelow; position = "{187, -159}"; }, { name = VAbove; position = "{240, 500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "466 -96 OFFCURVE", "444 -89 OFFCURVE", "430 -77 CURVE SMOOTH", "399 -50 OFFCURVE", "371 2 OFFCURVE", "347 78 CURVE", "330 29 OFFCURVE", "313 -2 OFFCURVE", "296 -14 CURVE SMOOTH", "248 -47 OFFCURVE", "184 -60 OFFCURVE", "104 -53 CURVE SMOOTH", "80 -51 OFFCURVE", "66 -36 OFFCURVE", "62 -9 CURVE SMOOTH", "58 18 OFFCURVE", "63 50 OFFCURVE", "77 86 CURVE SMOOTH", "79 91 OFFCURVE", "82 94 OFFCURVE", "87 95 CURVE SMOOTH", "93 96 OFFCURVE", "97 93 OFFCURVE", "99 87 CURVE SMOOTH", "114 52 OFFCURVE", "150 38 OFFCURVE", "206 46 CURVE SMOOTH", "287 58 OFFCURVE", "329 87 OFFCURVE", "334 133 CURVE SMOOTH", "293 329 LINE SMOOTH", "290 342 OFFCURVE", "291 352 OFFCURVE", "295 359 CURVE SMOOTH", "312 389 LINE SMOOTH", "320 403 OFFCURVE", "326 400 OFFCURVE", "330 380 CURVE SMOOTH", "357 241 OFFCURVE", "383 144 OFFCURVE", "406 90 CURVE SMOOTH", "425 45 OFFCURVE", "454 22 OFFCURVE", "493 17 CURVE SMOOTH", "504 16 OFFCURVE", "512 5 OFFCURVE", "515 -13 CURVE SMOOTH", "518 -31 OFFCURVE", "518 -49 OFFCURVE", "513 -67 CURVE SMOOTH", "508 -86 OFFCURVE", "502 -96 OFFCURVE", "495 -96 CURVE SMOOTH" ); } ); width = 488; }, { anchors = ( { name = DotAbove; position = "{289, 524}"; }, { name = DotBelow; position = "{240, -159}"; }, { name = HamzaAbove; position = "{289, 524}"; }, { name = HamzaBelow; position = "{240, -159}"; }, { name = RingBelow; position = "{204, 2}"; }, { name = TaaAbove; position = "{240, 500}"; }, { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; }, { name = TwoDotsAbove; position = "{235, 524}"; }, { name = TwoDotsBelow; position = "{187, -159}"; }, { name = VAbove; position = "{240, 500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "467 -110 OFFCURVE", "441 -101 OFFCURVE", "419 -82 CURVE SMOOTH", "397 -63 OFFCURVE", "374 -20 OFFCURVE", "351 49 CURVE", "333 9 OFFCURVE", "318 -16 OFFCURVE", "305 -26 CURVE SMOOTH", "265 -57 OFFCURVE", "200 -70 OFFCURVE", "111 -67 CURVE SMOOTH", "80 -66 OFFCURVE", "62 -47 OFFCURVE", "56 -11 CURVE", "52 18 OFFCURVE", "57 51 OFFCURVE", "71 91 CURVE SMOOTH", "74 98 OFFCURVE", "79 103 OFFCURVE", "86 104 CURVE SMOOTH", "93 105 OFFCURVE", "99 102 OFFCURVE", "103 93 CURVE SMOOTH", "116 65 OFFCURVE", "150 54 OFFCURVE", "204 61 CURVE", "280 72 OFFCURVE", "320 95 OFFCURVE", "325 132 CURVE", "284 326 LINE SMOOTH", "281 343 OFFCURVE", "282 356 OFFCURVE", "288 366 CURVE SMOOTH", "304 396 LINE", "323 430 OFFCURVE", "337 426 OFFCURVE", "344 385 CURVE SMOOTH", "369 250 OFFCURVE", "394 153 OFFCURVE", "419 96 CURVE SMOOTH", "436 57 OFFCURVE", "462 35 OFFCURVE", "495 31 CURVE", "513 28 OFFCURVE", "524 16 OFFCURVE", "528 -7 CURVE SMOOTH", "532 -30 OFFCURVE", "532 -52 OFFCURVE", "526 -75 CURVE SMOOTH", "520 -98 OFFCURVE", "510 -110 OFFCURVE", "495 -110 CURVE" ); } ); width = 488; } ); }, { glyphname = aKaf.medi.KafMemMedi; layers = ( { anchors = ( { name = Dash; position = "{285, 850}"; }, { name = DotAbove; position = "{-108, 792}"; }, { name = DotBelow; position = "{220, 0}"; }, { name = RingBelow; position = "{278, 757}"; }, { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{-162, 792}"; }, { name = TwoDotsBelow; position = "{166, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "585 856 OFFCURVE", "589 850 OFFCURVE", "582 837 CURVE SMOOTH", "546 770 LINE SMOOTH", "544 765 OFFCURVE", "536 762 OFFCURVE", "524 760 CURVE SMOOTH", "240 706 OFFCURVE", "35 652 OFFCURVE", "-92 600 CURVE SMOOTH", "-111 592 OFFCURVE", "-117 586 OFFCURVE", "-111 582 CURVE", "14 523 OFFCURVE", "129 442 OFFCURVE", "234 340 CURVE SMOOTH", "406 173 OFFCURVE", "516 90 OFFCURVE", "565 90 CURVE SMOOTH", "593 90 OFFCURVE", "599 67 OFFCURVE", "584 21 CURVE SMOOTH", "579 7 OFFCURVE", "573 0 OFFCURVE", "565 0 CURVE SMOOTH", "506 0 OFFCURVE", "385 94 OFFCURVE", "201 283 CURVE SMOOTH", "166 319 OFFCURVE", "132 347 OFFCURVE", "100 366 CURVE", "107 343 OFFCURVE", "110 320 OFFCURVE", "111 296 CURVE SMOOTH", "113 247 OFFCURVE", "97 212 OFFCURVE", "65 190 CURVE SMOOTH", "44 175 OFFCURVE", "14 175 OFFCURVE", "-25 189 CURVE SMOOTH", "-58 201 OFFCURVE", "-70 214 OFFCURVE", "-62 226 CURVE SMOOTH", "-57 232 OFFCURVE", "-42 236 OFFCURVE", "-16 238 CURVE SMOOTH", "35 242 OFFCURVE", "68 253 OFFCURVE", "84 270 CURVE", "75 322 OFFCURVE", "-4 406 OFFCURVE", "-154 523 CURVE SMOOTH", "-156 525 OFFCURVE", "-158 534 OFFCURVE", "-159 548 CURVE SMOOTH", "-160 562 OFFCURVE", "-157 580 OFFCURVE", "-150 601 CURVE SMOOTH", "-143 622 OFFCURVE", "-134 637 OFFCURVE", "-126 646 CURVE SMOOTH", "-67 707 OFFCURVE", "165 777 OFFCURVE", "571 856 CURVE SMOOTH" ); } ); width = 564; }, { anchors = ( { name = Dash; position = "{285, 850}"; }, { name = DotAbove; position = "{-108, 792}"; }, { name = DotBelow; position = "{220, 0}"; }, { name = RingBelow; position = "{278, 757}"; }, { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; }, { name = TwoDotsAbove; position = "{-162, 792}"; }, { name = TwoDotsBelow; position = "{166, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "578 871 OFFCURVE", "584 869 OFFCURVE", "588 867 CURVE SMOOTH", "602 860 OFFCURVE", "603 848 OFFCURVE", "594 830 CURVE SMOOTH", "559 763 LINE SMOOTH", "554 754 OFFCURVE", "544 748 OFFCURVE", "527 745 CURVE SMOOTH", "245 691 OFFCURVE", "40 639 OFFCURVE", "-86 587 CURVE", "113 448 LINE", "189 395 OFFCURVE", "232 362 OFFCURVE", "244 351 CURVE SMOOTH", "372 227 OFFCURVE", "466 149 OFFCURVE", "527 117 CURVE SMOOTH", "543 109 OFFCURVE", "556 105 OFFCURVE", "563 105 CURVE SMOOTH", "605 105 OFFCURVE", "616 75 OFFCURVE", "598 17 CURVE", "591 -4 OFFCURVE", "580 -15 OFFCURVE", "565 -15 CURVE", "502 -15 OFFCURVE", "384 73 OFFCURVE", "212 250 CURVE SMOOTH", "174 289 OFFCURVE", "144 318 OFFCURVE", "122 334 CURVE", "133 260 OFFCURVE", "117 208 OFFCURVE", "73 178 CURVE SMOOTH", "47 161 OFFCURVE", "12 160 OFFCURVE", "-31 176 CURVE SMOOTH", "-44 181 OFFCURVE", "-56 187 OFFCURVE", "-66 194 CURVE SMOOTH", "-76 201 OFFCURVE", "-80 210 OFFCURVE", "-79 222 CURVE", "-76 240 OFFCURVE", "-55 250 OFFCURVE", "-15 253 CURVE SMOOTH", "25 256 OFFCURVE", "52 264 OFFCURVE", "68 275 CURVE", "52 325 OFFCURVE", "-25 404 OFFCURVE", "-164 512 CURVE", "-170 517 OFFCURVE", "-173 524 OFFCURVE", "-173 532 CURVE SMOOTH", "-173 540 OFFCURVE", "-173 549 OFFCURVE", "-174 558 CURVE SMOOTH", "-175 567 OFFCURVE", "-172 583 OFFCURVE", "-164 606 CURVE SMOOTH", "-156 629 OFFCURVE", "-147 646 OFFCURVE", "-137 656 CURVE SMOOTH", "-76 719 OFFCURVE", "159 791 OFFCURVE", "569 871 CURVE", "571 871 LINE SMOOTH" ); } ); width = 564; } ); }, { glyphname = aKaf.init.KafMemInit; layers = ( { anchors = ( { name = Dash; position = "{184, 815}"; }, { name = DotAbove; position = "{-94, 767}"; }, { name = DotBelow; position = "{171, 146}"; }, { name = RingBelow; position = "{190, 723}"; }, { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-147, 767}"; }, { name = TwoDotsBelow; position = "{171, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "483 812 OFFCURVE", "487 805 OFFCURVE", "476 788 CURVE SMOOTH", "439 732 LINE SMOOTH", "437 728 OFFCURVE", "430 725 OFFCURVE", "416 723 CURVE SMOOTH", "156 678 OFFCURVE", "-14 635 OFFCURVE", "-92 594 CURVE SMOOTH", "-95 593 OFFCURVE", "-94 591 OFFCURVE", "-89 587 CURVE SMOOTH", "20 494 OFFCURVE", "84 403 OFFCURVE", "104 314 CURVE SMOOTH", "111 282 OFFCURVE", "106 248 OFFCURVE", "87 212 CURVE SMOOTH", "81 200 OFFCURVE", "71 190 OFFCURVE", "57 184 CURVE SMOOTH", "43 178 OFFCURVE", "16 182 OFFCURVE", "-25 196 CURVE SMOOTH", "-62 209 OFFCURVE", "-75 220 OFFCURVE", "-64 227 CURVE SMOOTH", "-53 234 OFFCURVE", "-31 237 OFFCURVE", "3 235 CURVE SMOOTH", "37 233 OFFCURVE", "61 234 OFFCURVE", "74 238 CURVE SMOOTH", "78 239 OFFCURVE", "80 243 OFFCURVE", "80 248 CURVE SMOOTH", "79 274 OFFCURVE", "64 305 OFFCURVE", "37 343 CURVE SMOOTH", "10 381 OFFCURVE", "-19 412 OFFCURVE", "-53 439 CURVE SMOOTH", "-58 443 OFFCURVE", "-66 438 OFFCURVE", "-77 425 CURVE SMOOTH", "-81 420 OFFCURVE", "-85 420 OFFCURVE", "-91 425 CURVE SMOOTH", "-137 464 OFFCURVE", "-160 489 OFFCURVE", "-160 501 CURVE SMOOTH", "-160 513 OFFCURVE", "-155 532 OFFCURVE", "-147 559 CURVE SMOOTH", "-139 586 OFFCURVE", "-127 607 OFFCURVE", "-113 622 CURVE SMOOTH", "-82 655 OFFCURVE", "-43 680 OFFCURVE", "6 698 CURVE SMOOTH", "145 748 OFFCURVE", "299 786 OFFCURVE", "467 810 CURVE SMOOTH" ); } ); width = 541; }, { anchors = ( { name = Dash; position = "{184, 815}"; }, { name = DotAbove; position = "{-94, 767}"; }, { name = DotBelow; position = "{171, 146}"; }, { name = RingBelow; position = "{190, 723}"; }, { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-147, 767}"; }, { name = TwoDotsBelow; position = "{171, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "474 825 OFFCURVE", "482 824 OFFCURVE", "487 821 CURVE SMOOTH", "500 813 OFFCURVE", "500 799 OFFCURVE", "488 780 CURVE SMOOTH", "452 724 LINE SMOOTH", "447 717 OFFCURVE", "437 712 OFFCURVE", "421 709 CURVE SMOOTH", "420 709 OFFCURVE", "418 709 OFFCURVE", "418 709 CURVE SMOOTH", "176 667 OFFCURVE", "14 627 OFFCURVE", "-69 589 CURVE", "36 497 OFFCURVE", "99 406 OFFCURVE", "119 317 CURVE", "127 281 OFFCURVE", "120 244 OFFCURVE", "100 205 CURVE SMOOTH", "92 190 OFFCURVE", "80 179 OFFCURVE", "63 171 CURVE SMOOTH", "46 163 OFFCURVE", "20 165 OFFCURVE", "-14 177 CURVE SMOOTH", "-48 189 OFFCURVE", "-68 197 OFFCURVE", "-72 201 CURVE SMOOTH", "-87 216 OFFCURVE", "-86 229 OFFCURVE", "-72 238 CURVE SMOOTH", "-58 247 OFFCURVE", "-35 252 OFFCURVE", "-3 250 CURVE SMOOTH", "29 248 OFFCURVE", "52 249 OFFCURVE", "65 251 CURVE", "62 274 OFFCURVE", "48 302 OFFCURVE", "24 336 CURVE SMOOTH", "0 370 OFFCURVE", "-28 399 OFFCURVE", "-58 424 CURVE", "-60 422 OFFCURVE", "-63 418 OFFCURVE", "-67 414 CURVE SMOOTH", "-71 410 OFFCURVE", "-76 407 OFFCURVE", "-82 407 CURVE SMOOTH", "-88 407 OFFCURVE", "-95 409 OFFCURVE", "-101 414 CURVE SMOOTH", "-135 443 OFFCURVE", "-156 463 OFFCURVE", "-163 474 CURVE SMOOTH", "-170 485 OFFCURVE", "-174 495 OFFCURVE", "-174 506 CURVE SMOOTH", "-174 517 OFFCURVE", "-170 537 OFFCURVE", "-161 565 CURVE SMOOTH", "-152 593 OFFCURVE", "-139 616 OFFCURVE", "-124 632 CURVE SMOOTH", "-92 667 OFFCURVE", "-50 693 OFFCURVE", "1 712 CURVE SMOOTH", "141 763 OFFCURVE", "296 800 OFFCURVE", "465 824 CURVE SMOOTH" ); } ); width = 541; } ); }, { glyphname = aAyn.init.AynMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{166, 718}"; }, { name = DotBelow; position = "{311, 98}"; }, { name = HamzaAbove; position = "{166, 718}"; }, { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; }, { name = TwoDotsAbove; position = "{112, 718}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-54 237 OFFCURVE", "-22 252 OFFCURVE", "30 271 CURVE SMOOTH", "65 283 OFFCURVE", "89 292 OFFCURVE", "102 298 CURVE", "72 318 OFFCURVE", "52 339 OFFCURVE", "43 360 CURVE SMOOTH", "34 381 OFFCURVE", "35 407 OFFCURVE", "48 439 CURVE SMOOTH", "61 471 OFFCURVE", "86 503 OFFCURVE", "122 534 CURVE SMOOTH", "200 602 OFFCURVE", "272 594 OFFCURVE", "337 510 CURVE SMOOTH", "342 504 OFFCURVE", "342 500 OFFCURVE", "337 496 CURVE SMOOTH", "333 492 OFFCURVE", "329 491 OFFCURVE", "324 493 CURVE SMOOTH", "249 517 OFFCURVE", "171 504 OFFCURVE", "88 452 CURVE SMOOTH", "83 449 OFFCURVE", "82 445 OFFCURVE", "85 440 CURVE SMOOTH", "119 394 OFFCURVE", "164 366 OFFCURVE", "220 357 CURVE SMOOTH", "252 352 OFFCURVE", "313 372 OFFCURVE", "402 416 CURVE SMOOTH", "411 421 OFFCURVE", "419 419 OFFCURVE", "425 413 CURVE SMOOTH", "431 407 OFFCURVE", "431 402 OFFCURVE", "427 395 CURVE SMOOTH", "396 346 LINE SMOOTH", "391 339 OFFCURVE", "387 335 OFFCURVE", "382 333 CURVE SMOOTH", "354 322 OFFCURVE", "296 301 OFFCURVE", "205 271 CURVE SMOOTH", "-25 192 LINE SMOOTH", "-50 182 OFFCURVE", "-67 182 OFFCURVE", "-74 192 CURVE SMOOTH", "-81 203 OFFCURVE", "-80 215 OFFCURVE", "-68 225 CURVE SMOOTH" ); } ); width = 490; }, { anchors = ( { name = DotAbove; position = "{166, 718}"; }, { name = DotBelow; position = "{311, 98}"; }, { name = HamzaAbove; position = "{166, 718}"; }, { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; }, { name = TwoDotsAbove; position = "{112, 718}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-52 166 OFFCURVE", "-74 167 OFFCURVE", "-85 183 CURVE SMOOTH", "-96 199 OFFCURVE", "-95 214 OFFCURVE", "-83 229 CURVE SMOOTH", "-71 244 OFFCURVE", "-35 262 OFFCURVE", "25 284 CURVE SMOOTH", "44 291 OFFCURVE", "60 297 OFFCURVE", "72 302 CURVE", "51 319 OFFCURVE", "36 338 OFFCURVE", "27 359 CURVE SMOOTH", "18 380 OFFCURVE", "21 411 OFFCURVE", "37 449 CURVE SMOOTH", "53 487 OFFCURVE", "81 522 OFFCURVE", "125 556 CURVE SMOOTH", "186 603 OFFCURVE", "244 607 OFFCURVE", "299 568 CURVE SMOOTH", "316 556 OFFCURVE", "332 539 OFFCURVE", "348 519 CURVE SMOOTH", "358 507 OFFCURVE", "358 496 OFFCURVE", "347 485 CURVE", "338 478 OFFCURVE", "329 476 OFFCURVE", "319 479 CURVE SMOOTH", "250 501 OFFCURVE", "178 489 OFFCURVE", "101 443 CURVE", "133 404 OFFCURVE", "174 379 OFFCURVE", "223 371 CURVE SMOOTH", "252 366 OFFCURVE", "309 386 OFFCURVE", "395 429 CURVE SMOOTH", "410 437 OFFCURVE", "422 436 OFFCURVE", "431 427 CURVE SMOOTH", "445 413 OFFCURVE", "448 400 OFFCURVE", "440 387 CURVE SMOOTH", "409 338 LINE SMOOTH", "402 328 OFFCURVE", "396 322 OFFCURVE", "388 319 CURVE SMOOTH", "360 308 OFFCURVE", "300 287 OFFCURVE", "209 257 CURVE", "-20 179 LINE" ); } ); width = 490; } ); }, { glyphname = aFaa.init.FaaMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{2, 707}"; }, { name = DotBelow; position = "{127, -24}"; }, { name = HamzaAbove; position = "{2, 707}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; }, { name = TwoDotsAbove; position = "{-52, 707}"; }, { name = TwoDotsBelow; position = "{78, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "33 556 OFFCURVE", "58 534 OFFCURVE", "80 489 CURVE SMOOTH", "114 421 OFFCURVE", "124 351 OFFCURVE", "112 280 CURVE SMOOTH", "107 253 OFFCURVE", "91 228 OFFCURVE", "63 205 CURVE SMOOTH", "50 195 OFFCURVE", "24 192 OFFCURVE", "-16 198 CURVE SMOOTH", "-61 203 OFFCURVE", "-77 213 OFFCURVE", "-67 225 CURVE SMOOTH", "-60 234 OFFCURVE", "-38 240 OFFCURVE", "-2 244 CURVE SMOOTH", "35 247 OFFCURVE", "63 260 OFFCURVE", "83 281 CURVE SMOOTH", "85 283 OFFCURVE", "86 286 OFFCURVE", "86 290 CURVE SMOOTH", "82 331 OFFCURVE", "71 352 OFFCURVE", "52 355 CURVE", "32 306 OFFCURVE", "1 287 OFFCURVE", "-42 299 CURVE SMOOTH", "-91 313 OFFCURVE", "-106 361 OFFCURVE", "-88 444 CURVE SMOOTH", "-67 515 OFFCURVE", "-36 552 OFFCURVE", "6 554 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "4 439 OFFCURVE", "-8 447 OFFCURVE", "-21 447 CURVE SMOOTH", "-34 447 OFFCURVE", "-45 441 OFFCURVE", "-54 428 CURVE SMOOTH", "-58 423 OFFCURVE", "-57 419 OFFCURVE", "-52 414 CURVE SMOOTH", "-33 397 OFFCURVE", "-11 395 OFFCURVE", "13 410 CURVE SMOOTH", "18 413 OFFCURVE", "18 416 OFFCURVE", "15 421 CURVE SMOOTH" ); } ); width = 175; }, { anchors = ( { name = DotAbove; position = "{2, 707}"; }, { name = DotBelow; position = "{127, -24}"; }, { name = HamzaAbove; position = "{2, 707}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; }, { name = TwoDotsAbove; position = "{-52, 707}"; }, { name = TwoDotsBelow; position = "{78, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "4 453 OFFCURVE", "-8 461 OFFCURVE", "-21 461 CURVE SMOOTH", "-34 461 OFFCURVE", "-45 455 OFFCURVE", "-54 442 CURVE SMOOTH", "-58 437 OFFCURVE", "-57 432 OFFCURVE", "-52 427 CURVE SMOOTH", "-33 410 OFFCURVE", "-11 408 OFFCURVE", "13 423 CURVE SMOOTH", "18 426 OFFCURVE", "18 430 OFFCURVE", "15 435 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "39 585 OFFCURVE", "68 560 OFFCURVE", "93 509 CURVE SMOOTH", "125 444 OFFCURVE", "133 366 OFFCURVE", "117 277 CURVE SMOOTH", "110 239 OFFCURVE", "96 212 OFFCURVE", "73 194 CURVE SMOOTH", "57 181 OFFCURVE", "26 177 OFFCURVE", "-19 183 CURVE SMOOTH", "-64 189 OFFCURVE", "-86 201 OFFCURVE", "-85 218 CURVE SMOOTH", "-84 238 OFFCURVE", "-56 250 OFFCURVE", "-3 255 CURVE SMOOTH", "33 258 OFFCURVE", "61 270 OFFCURVE", "80 290 CURVE", "78 312 OFFCURVE", "71 331 OFFCURVE", "59 348 CURVE", "36 301 OFFCURVE", "0 285 OFFCURVE", "-46 298 CURVE SMOOTH", "-100 314 OFFCURVE", "-115 368 OFFCURVE", "-92 461 CURVE SMOOTH", "-72 540 OFFCURVE", "-40 581 OFFCURVE", "5 583 CURVE SMOOTH" ); } ); width = 175; } ); }, { glyphname = aHaa.init.HaaMemInit; layers = ( { anchors = ( { name = DigitBelow; position = "{333, -10}"; }, { name = DotAbove; position = "{387, 563}"; }, { name = DotBelow; position = "{333, -10}"; }, { name = HamzaAbove; position = "{387, 563}"; }, { name = HamzaBelow; position = "{333, -10}"; }, { name = TaaAbove; position = "{387, 563}"; }, { name = TaaBelow; position = "{333, 186}"; }, { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; }, { name = TwoDotsAbove; position = "{333, 563}"; }, { name = TwoDotsBelow; position = "{278, -10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "80 416 OFFCURVE", "102 410 OFFCURVE", "123 398 CURVE SMOOTH", "145 386 OFFCURVE", "168 372 OFFCURVE", "192 355 CURVE SMOOTH", "261 308 OFFCURVE", "345 276 OFFCURVE", "444 258 CURVE SMOOTH", "450 257 OFFCURVE", "452 254 OFFCURVE", "451 249 CURVE SMOOTH", "448 233 OFFCURVE", "439 214 OFFCURVE", "424 190 CURVE SMOOTH", "421 185 OFFCURVE", "416 183 OFFCURVE", "410 185 CURVE SMOOTH", "334 209 OFFCURVE", "269 224 OFFCURVE", "218 229 CURVE SMOOTH", "164 235 OFFCURVE", "114 233 OFFCURVE", "69 223 CURVE SMOOTH", "18 212 OFFCURVE", "-22 209 OFFCURVE", "-53 215 CURVE SMOOTH", "-67 218 OFFCURVE", "-71 221 OFFCURVE", "-65 226 CURVE SMOOTH", "-24 259 OFFCURVE", "48 275 OFFCURVE", "153 277 CURVE", "91 331 OFFCURVE", "21 349 OFFCURVE", "-55 333 CURVE SMOOTH", "-60 332 OFFCURVE", "-61 334 OFFCURVE", "-62 338 CURVE SMOOTH", "-63 342 OFFCURVE", "-62 346 OFFCURVE", "-59 349 CURVE SMOOTH", "-24 394 OFFCURVE", "15 416 OFFCURVE", "58 416 CURVE SMOOTH" ); } ); width = 514; }, { anchors = ( { name = DigitBelow; position = "{333, -10}"; }, { name = DotAbove; position = "{387, 563}"; }, { name = DotBelow; position = "{333, -10}"; }, { name = HamzaAbove; position = "{387, 563}"; }, { name = HamzaBelow; position = "{333, -10}"; }, { name = TaaAbove; position = "{387, 563}"; }, { name = TaaBelow; position = "{333, 186}"; }, { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; }, { name = TwoDotsAbove; position = "{333, 563}"; }, { name = TwoDotsBelow; position = "{278, -10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "82 431 OFFCURVE", "106 424 OFFCURVE", "129 412 CURVE SMOOTH", "152 400 OFFCURVE", "176 385 OFFCURVE", "200 368 CURVE", "267 322 OFFCURVE", "350 290 OFFCURVE", "447 273 CURVE SMOOTH", "456 271 OFFCURVE", "461 267 OFFCURVE", "463 261 CURVE SMOOTH", "465 255 OFFCURVE", "465 247 OFFCURVE", "463 236 CURVE SMOOTH", "461 225 OFFCURVE", "452 207 OFFCURVE", "436 182 CURVE", "428 171 OFFCURVE", "418 167 OFFCURVE", "405 171 CURVE SMOOTH", "330 195 OFFCURVE", "266 210 OFFCURVE", "215 215 CURVE SMOOTH", "164 220 OFFCURVE", "114 217 OFFCURVE", "66 207 CURVE SMOOTH", "18 197 OFFCURVE", "-23 194 OFFCURVE", "-56 201 CURVE SMOOTH", "-67 203 OFFCURVE", "-75 207 OFFCURVE", "-81 214 CURVE SMOOTH", "-87 221 OFFCURVE", "-85 228 OFFCURVE", "-75 237 CURVE", "-37 267 OFFCURVE", "25 285 OFFCURVE", "111 290 CURVE", "61 321 OFFCURVE", "6 331 OFFCURVE", "-52 319 CURVE SMOOTH", "-61 317 OFFCURVE", "-66 319 OFFCURVE", "-70 324 CURVE SMOOTH", "-79 336 OFFCURVE", "-79 348 OFFCURVE", "-70 359 CURVE SMOOTH", "-31 407 OFFCURVE", "11 431 OFFCURVE", "58 431 CURVE SMOOTH" ); } ); width = 514; } ); }, { glyphname = aHeh.init.HehMemInit; layers = ( { anchors = ( { name = HamzaAbove; position = "{188, 695}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "172 573 OFFCURVE", "190 567 OFFCURVE", "215 552 CURVE SMOOTH", "286 511 OFFCURVE", "335 465 OFFCURVE", "364 414 CURVE SMOOTH", "383 380 OFFCURVE", "391 350 OFFCURVE", "388 323 CURVE SMOOTH", "383 279 OFFCURVE", "371 250 OFFCURVE", "351 235 CURVE SMOOTH", "345 230 OFFCURVE", "339 229 OFFCURVE", "333 229 CURVE SMOOTH", "290 229 OFFCURVE", "233 236 OFFCURVE", "163 251 CURVE", "126 218 OFFCURVE", "85 196 OFFCURVE", "39 183 CURVE SMOOTH", "17 177 OFFCURVE", "-4 184 OFFCURVE", "-26 205 CURVE SMOOTH", "-41 219 OFFCURVE", "-46 228 OFFCURVE", "-39 233 CURVE SMOOTH", "-35 236 OFFCURVE", "-31 236 OFFCURVE", "-27 236 CURVE SMOOTH", "38 233 OFFCURVE", "85 243 OFFCURVE", "115 266 CURVE", "111 267 OFFCURVE", "102 272 OFFCURVE", "89 279 CURVE SMOOTH", "66 292 OFFCURVE", "63 322 OFFCURVE", "80 369 CURVE SMOOTH", "97 416 OFFCURVE", "120 447 OFFCURVE", "148 464 CURVE", "135 475 OFFCURVE", "121 476 OFFCURVE", "106 468 CURVE SMOOTH", "102 466 OFFCURVE", "99 467 OFFCURVE", "96 470 CURVE SMOOTH", "88 478 OFFCURVE", "93 500 OFFCURVE", "112 536 CURVE SMOOTH", "125 561 OFFCURVE", "142 573 OFFCURVE", "161 573 CURVE" ); }, { closed = 1; nodes = ( "203 415 OFFCURVE", "184 434 OFFCURVE", "160 432 CURVE SMOOTH", "141 430 OFFCURVE", "122 411 OFFCURVE", "102 375 CURVE SMOOTH", "98 368 OFFCURVE", "100 360 OFFCURVE", "107 353 CURVE SMOOTH", "114 346 OFFCURVE", "140 337 OFFCURVE", "186 328 CURVE", "202 342 OFFCURVE", "212 351 OFFCURVE", "216 357 CURVE SMOOTH", "220 363 OFFCURVE", "221 369 OFFCURVE", "218 374 CURVE" ); }, { closed = 1; nodes = ( "248 387 OFFCURVE", "241 355 OFFCURVE", "222 321 CURVE", "293 308 OFFCURVE", "337 303 OFFCURVE", "354 306 CURVE SMOOTH", "360 307 OFFCURVE", "360 312 OFFCURVE", "354 320 CURVE", "331 359 OFFCURVE", "294 392 OFFCURVE", "244 419 CURVE" ); } ); width = 451; }, { anchors = ( { name = HamzaAbove; position = "{188, 695}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "178 588 OFFCURVE", "198 580 OFFCURVE", "223 564 CURVE SMOOTH", "291 521 OFFCURVE", "340 474 OFFCURVE", "370 421 CURVE SMOOTH", "390 385 OFFCURVE", "399 351 OFFCURVE", "396 321 CURVE SMOOTH", "391 272 OFFCURVE", "376 241 OFFCURVE", "353 224 CURVE SMOOTH", "344 218 OFFCURVE", "334 214 OFFCURVE", "325 214 CURVE", "284 214 OFFCURVE", "230 222 OFFCURVE", "162 236 CURVE", "124 203 OFFCURVE", "82 181 OFFCURVE", "38 169 CURVE SMOOTH", "11 162 OFFCURVE", "-15 170 OFFCURVE", "-38 194 CURVE SMOOTH", "-61 218 OFFCURVE", "-65 235 OFFCURVE", "-47 245 CURVE SMOOTH", "-43 247 OFFCURVE", "-34 248 OFFCURVE", "-21 247 CURVE SMOOTH", "25 245 OFFCURVE", "62 250 OFFCURVE", "89 261 CURVE", "55 276 OFFCURVE", "51 314 OFFCURVE", "76 374 CURVE SMOOTH", "91 410 OFFCURVE", "107 438 OFFCURVE", "125 457 CURVE", "119 457 OFFCURVE", "116 457 OFFCURVE", "113 456 CURVE SMOOTH", "99 450 OFFCURVE", "88 452 OFFCURVE", "79 463 CURVE SMOOTH", "70 474 OFFCURVE", "77 501 OFFCURVE", "99 543 CURVE", "115 573 OFFCURVE", "136 588 OFFCURVE", "161 588 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "195 350 OFFCURVE", "206 358 OFFCURVE", "215 367 CURVE", "202 402 OFFCURVE", "184 418 OFFCURVE", "161 417 CURVE SMOOTH", "138 416 OFFCURVE", "120 400 OFFCURVE", "105 368 CURVE SMOOTH", "105 367 OFFCURVE", "108 365 OFFCURVE", "115 361 CURVE SMOOTH", "122 357 OFFCURVE", "145 351 OFFCURVE", "182 343 CURVE" ); }, { closed = 1; nodes = ( "249 374 OFFCURVE", "243 354 OFFCURVE", "234 333 CURVE", "281 324 OFFCURVE", "318 317 OFFCURVE", "347 314 CURVE", "333 342 OFFCURVE", "301 369 OFFCURVE", "250 395 CURVE" ); } ); width = 451; } ); }, { glyphname = aMem.medi.KafMemMedi; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "182 192 OFFCURVE", "154 192 OFFCURVE", "138 168 CURVE", "183 142 OFFCURVE", "224 128 OFFCURVE", "262 125 CURVE", "256 140 OFFCURVE", "242 154 OFFCURVE", "220 168 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "118 197 OFFCURVE", "132 215 OFFCURVE", "148 227 CURVE SMOOTH", "154 231 OFFCURVE", "166 233 OFFCURVE", "183 235 CURVE SMOOTH", "220 240 OFFCURVE", "250 227 OFFCURVE", "273 198 CURVE SMOOTH", "301 163 OFFCURVE", "313 134 OFFCURVE", "308 112 CURVE SMOOTH", "302 84 OFFCURVE", "292 62 OFFCURVE", "279 45 CURVE SMOOTH", "276 41 OFFCURVE", "273 39 OFFCURVE", "271 39 CURVE SMOOTH", "208 43 OFFCURVE", "149 63 OFFCURVE", "94 99 CURVE", "64 33 OFFCURVE", "33 0 OFFCURVE", "0 0 CURVE SMOOTH", "-9 0 OFFCURVE", "-16 7 OFFCURVE", "-20 22 CURVE SMOOTH", "-33 68 OFFCURVE", "-27 90 OFFCURVE", "0 90 CURVE SMOOTH", "36 90 OFFCURVE", "63 101 OFFCURVE", "82 122 CURVE SMOOTH", "87 134 OFFCURVE", "95 152 OFFCURVE", "107 175 CURVE SMOOTH" ); } ); width = 216; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "182 192 OFFCURVE", "154 192 OFFCURVE", "138 168 CURVE", "183 142 OFFCURVE", "224 128 OFFCURVE", "262 125 CURVE", "256 140 OFFCURVE", "242 154 OFFCURVE", "220 168 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "213 23 OFFCURVE", "154 42 OFFCURVE", "95 78 CURVE", "67 16 OFFCURVE", "35 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-17 -15 OFFCURVE", "-28 -3 OFFCURVE", "-34 18 CURVE SMOOTH", "-46 63 OFFCURVE", "-42 91 OFFCURVE", "-19 101 CURVE SMOOTH", "-13 104 OFFCURVE", "-7 105 OFFCURVE", "0 105 CURVE SMOOTH", "30 105 OFFCURVE", "53 114 OFFCURVE", "69 130 CURVE", "91 183 OFFCURVE", "116 219 OFFCURVE", "140 238 CURVE", "148 244 OFFCURVE", "161 248 OFFCURVE", "181 250 CURVE SMOOTH", "224 255 OFFCURVE", "259 241 OFFCURVE", "285 208 CURVE SMOOTH", "316 169 OFFCURVE", "328 134 OFFCURVE", "322 106 CURVE SMOOTH", "316 78 OFFCURVE", "307 57 OFFCURVE", "295 42 CURVE SMOOTH", "283 27 OFFCURVE", "276 19 OFFCURVE", "271 19 CURVE SMOOTH" ); } ); width = 216; } ); }, { glyphname = aSen.init.SenMemInit; layers = ( { anchors = ( { name = DigitAbove; position = "{249, 588}"; }, { name = DotAbove; position = "{249, 588}"; }, { name = DotBelow; position = "{299, 49}"; }, { name = HamzaAbove; position = "{249, 588}"; }, { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; }, { name = TwoDotsAbove; position = "{200, 539}"; }, { name = TwoDotsBelow; position = "{250, 49}"; }, { name = VAbove; position = "{249, 588}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-56 261 OFFCURVE", "-61 257 OFFCURVE", "-63 258 CURVE SMOOTH", "-71 261 OFFCURVE", "-74 268 OFFCURVE", "-70 278 CURVE SMOOTH", "-41 354 OFFCURVE", "3 393 OFFCURVE", "61 396 CURVE SMOOTH", "78 397 OFFCURVE", "94 383 OFFCURVE", "109 355 CURVE SMOOTH", "123 328 OFFCURVE", "143 315 OFFCURVE", "167 314 CURVE SMOOTH", "210 312 OFFCURVE", "256 349 OFFCURVE", "303 425 CURVE SMOOTH", "309 434 OFFCURVE", "314 436 OFFCURVE", "320 430 CURVE SMOOTH", "326 424 OFFCURVE", "326 415 OFFCURVE", "320 403 CURVE SMOOTH", "314 391 OFFCURVE", "311 384 OFFCURVE", "311 382 CURVE SMOOTH", "311 372 OFFCURVE", "317 364 OFFCURVE", "327 360 CURVE SMOOTH", "364 345 OFFCURVE", "391 341 OFFCURVE", "411 347 CURVE SMOOTH", "417 349 OFFCURVE", "412 360 OFFCURVE", "394 381 CURVE SMOOTH", "392 383 OFFCURVE", "392 385 OFFCURVE", "393 387 CURVE SMOOTH", "429 446 LINE SMOOTH", "431 448 OFFCURVE", "433 448 OFFCURVE", "435 445 CURVE SMOOTH", "456 420 OFFCURVE", "458 380 OFFCURVE", "442 323 CURVE SMOOTH", "434 293 OFFCURVE", "424 273 OFFCURVE", "414 262 CURVE SMOOTH", "404 251 OFFCURVE", "389 247 OFFCURVE", "369 250 CURVE SMOOTH", "324 257 OFFCURVE", "290 269 OFFCURVE", "266 286 CURVE SMOOTH", "264 288 OFFCURVE", "262 287 OFFCURVE", "260 285 CURVE SMOOTH", "226 237 OFFCURVE", "185 215 OFFCURVE", "136 220 CURVE SMOOTH", "109 223 OFFCURVE", "86 243 OFFCURVE", "66 280 CURVE SMOOTH", "59 292 OFFCURVE", "50 300 OFFCURVE", "37 303 CURVE SMOOTH", "6 309 OFFCURVE", "-20 302 OFFCURVE", "-41 282 CURVE SMOOTH", "-46 277 OFFCURVE", "-48 273 OFFCURVE", "-48 270 CURVE SMOOTH" ); } ); width = 525; }, { anchors = ( { name = DigitAbove; position = "{249, 588}"; }, { name = DotAbove; position = "{249, 588}"; }, { name = DotBelow; position = "{299, 49}"; }, { name = HamzaAbove; position = "{249, 588}"; }, { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; }, { name = TwoDotsAbove; position = "{200, 539}"; }, { name = TwoDotsBelow; position = "{250, 49}"; }, { name = VAbove; position = "{249, 588}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-58 244 OFFCURVE", "-66 241 OFFCURVE", "-74 246 CURVE SMOOTH", "-82 251 OFFCURVE", "-83 264 OFFCURVE", "-76 284 CURVE", "-44 366 OFFCURVE", "2 408 OFFCURVE", "60 411 CURVE SMOOTH", "83 412 OFFCURVE", "104 396 OFFCURVE", "122 362 CURVE SMOOTH", "134 340 OFFCURVE", "149 329 OFFCURVE", "168 329 CURVE SMOOTH", "213 328 OFFCURVE", "257 362 OFFCURVE", "301 433 CURVE SMOOTH", "306 441 OFFCURVE", "314 442 OFFCURVE", "323 436 CURVE SMOOTH", "332 430 OFFCURVE", "332 418 OFFCURVE", "323 401 CURVE SMOOTH", "319 394 OFFCURVE", "317 390 OFFCURVE", "317 387 CURVE SMOOTH", "316 384 OFFCURVE", "318 381 OFFCURVE", "322 379 CURVE SMOOTH", "349 363 OFFCURVE", "378 354 OFFCURVE", "409 353 CURVE", "402 362 OFFCURVE", "395 370 OFFCURVE", "388 376 CURVE SMOOTH", "381 382 OFFCURVE", "380 390 OFFCURVE", "385 399 CURVE SMOOTH", "417 454 LINE SMOOTH", "425 467 OFFCURVE", "432 468 OFFCURVE", "441 455 CURVE SMOOTH", "464 421 OFFCURVE", "468 376 OFFCURVE", "452 319 CURVE SMOOTH", "443 287 OFFCURVE", "432 265 OFFCURVE", "419 251 CURVE SMOOTH", "406 237 OFFCURVE", "388 232 OFFCURVE", "367 235 CURVE", "325 242 OFFCURVE", "289 254 OFFCURVE", "260 272 CURVE", "222 226 OFFCURVE", "180 204 OFFCURVE", "134 206 CURVE", "103 210 OFFCURVE", "76 231 OFFCURVE", "53 273 CURVE SMOOTH", "48 281 OFFCURVE", "42 287 OFFCURVE", "34 289 CURVE", "-5 295 OFFCURVE", "-32 283 OFFCURVE", "-50 256 CURVE SMOOTH" ); } ); width = 525; } ); }, { glyphname = aSad.init.SadMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{251, 700}"; }, { name = DotBelow; position = "{387, 49}"; }, { name = HamzaAbove; position = "{251, 700}"; }, { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; }, { name = TwoDotsAbove; position = "{197, 700}"; }, { name = TwoDotsBelow; position = "{338, 49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-50 257 OFFCURVE", "-56 250 OFFCURVE", "-62 250 CURVE SMOOTH", "-72 250 OFFCURVE", "-75 258 OFFCURVE", "-70 273 CURVE SMOOTH", "-45 365 OFFCURVE", "2 413 OFFCURVE", "69 416 CURVE SMOOTH", "75 416 OFFCURVE", "79 412 OFFCURVE", "81 404 CURVE SMOOTH", "88 378 OFFCURVE", "102 361 OFFCURVE", "120 352 CURVE SMOOTH", "138 343 OFFCURVE", "163 338 OFFCURVE", "197 335 CURVE", "306 479 OFFCURVE", "393 551 OFFCURVE", "456 552 CURVE SMOOTH", "481 552 OFFCURVE", "506 541 OFFCURVE", "531 520 CURVE SMOOTH", "556 499 OFFCURVE", "572 478 OFFCURVE", "576 458 CURVE SMOOTH", "580 438 OFFCURVE", "575 413 OFFCURVE", "559 381 CURVE SMOOTH", "543 349 OFFCURVE", "525 321 OFFCURVE", "503 298 CURVE SMOOTH", "481 275 OFFCURVE", "437 258 OFFCURVE", "370 248 CURVE SMOOTH", "303 238 OFFCURVE", "233 237 OFFCURVE", "160 245 CURVE", "153 235 OFFCURVE", "141 222 OFFCURVE", "125 204 CURVE SMOOTH", "120 198 OFFCURVE", "115 198 OFFCURVE", "112 202 CURVE SMOOTH", "109 206 OFFCURVE", "109 211 OFFCURVE", "113 217 CURVE SMOOTH", "135 250 LINE", "106 254 OFFCURVE", "81 270 OFFCURVE", "63 297 CURVE SMOOTH", "54 310 OFFCURVE", "50 317 OFFCURVE", "48 319 CURVE SMOOTH", "41 327 OFFCURVE", "26 326 OFFCURVE", "5 314 CURVE SMOOTH", "-22 300 OFFCURVE", "-37 285 OFFCURVE", "-43 271 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "358 458 OFFCURVE", "295 416 OFFCURVE", "227 333 CURVE", "302 330 OFFCURVE", "366 335 OFFCURVE", "422 348 CURVE SMOOTH", "478 361 OFFCURVE", "511 374 OFFCURVE", "523 389 CURVE", "490 435 OFFCURVE", "455 458 OFFCURVE", "415 458 CURVE SMOOTH" ); } ); width = 650; }, { anchors = ( { name = DotAbove; position = "{251, 700}"; }, { name = DotBelow; position = "{387, 49}"; }, { name = HamzaAbove; position = "{251, 700}"; }, { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; }, { name = TwoDotsAbove; position = "{197, 700}"; }, { name = TwoDotsBelow; position = "{338, 49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "300 488 OFFCURVE", "384 560 OFFCURVE", "456 567 CURVE SMOOTH", "480 570 OFFCURVE", "509 557 OFFCURVE", "541 531 CURVE SMOOTH", "589 491 OFFCURVE", "597 439 OFFCURVE", "565 375 CURVE SMOOTH", "548 341 OFFCURVE", "529 312 OFFCURVE", "505 287 CURVE SMOOTH", "481 262 OFFCURVE", "435 245 OFFCURVE", "366 234 CURVE SMOOTH", "297 223 OFFCURVE", "228 222 OFFCURVE", "156 229 CURVE", "140 210 OFFCURVE", "131 201 OFFCURVE", "130 199 CURVE SMOOTH", "122 191 OFFCURVE", "115 191 OFFCURVE", "109 197 CURVE SMOOTH", "103 203 OFFCURVE", "105 213 OFFCURVE", "113 225 CURVE SMOOTH", "123 240 LINE", "91 244 OFFCURVE", "67 261 OFFCURVE", "52 289 CURVE SMOOTH", "45 302 OFFCURVE", "40 309 OFFCURVE", "37 310 CURVE", "32 311 OFFCURVE", "19 306 OFFCURVE", "-1 297 CURVE SMOOTH", "-21 288 OFFCURVE", "-35 275 OFFCURVE", "-42 260 CURVE SMOOTH", "-49 245 OFFCURVE", "-58 240 OFFCURVE", "-68 244 CURVE SMOOTH", "-78 248 OFFCURVE", "-79 258 OFFCURVE", "-74 277 CURVE SMOOTH", "-46 377 OFFCURVE", "0 428 OFFCURVE", "64 430 CURVE SMOOTH", "77 430 OFFCURVE", "85 423 OFFCURVE", "90 408 CURVE SMOOTH", "97 386 OFFCURVE", "111 370 OFFCURVE", "132 362 CURVE SMOOTH", "148 355 OFFCURVE", "172 352 OFFCURVE", "205 351 CURVE" ); }, { closed = 1; nodes = ( "359 443 OFFCURVE", "302 411 OFFCURVE", "245 347 CURVE", "306 346 OFFCURVE", "362 351 OFFCURVE", "415 361 CURVE SMOOTH", "468 371 OFFCURVE", "502 382 OFFCURVE", "518 392 CURVE", "490 427 OFFCURVE", "456 444 OFFCURVE", "415 444 CURVE SMOOTH" ); } ); width = 650; } ); }, { glyphname = aMem.init.MemMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{158, 801}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "36 334 OFFCURVE", "-16 314 OFFCURVE", "-42 279 CURVE SMOOTH", "-57 253 LINE SMOOTH", "-77 221 OFFCURVE", "-82 224 OFFCURVE", "-73 262 CURVE SMOOTH", "-65 296 OFFCURVE", "-49 327 OFFCURVE", "-24 356 CURVE SMOOTH", "-8 374 OFFCURVE", "9 389 OFFCURVE", "29 399 CURVE", "10 427 LINE SMOOTH", "4 436 OFFCURVE", "3 446 OFFCURVE", "7 455 CURVE SMOOTH", "24 492 OFFCURVE", "40 518 OFFCURVE", "54 534 CURVE SMOOTH", "61 542 OFFCURVE", "69 544 OFFCURVE", "79 541 CURVE SMOOTH", "128 525 OFFCURVE", "168 501 OFFCURVE", "199 470 CURVE SMOOTH", "206 463 OFFCURVE", "207 452 OFFCURVE", "203 438 CURVE SMOOTH", "202 436 OFFCURVE", "189 410 OFFCURVE", "164 361 CURVE SMOOTH", "157 346 OFFCURVE", "139 339 OFFCURVE", "114 338 CURVE SMOOTH" ); } ); width = 280; }, { anchors = ( { name = TashkilAbove; position = "{158, 801}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "43 319 OFFCURVE", "-6 302 OFFCURVE", "-30 271 CURVE", "-45 245 LINE SMOOTH", "-46 244 OFFCURVE", "-49 238 OFFCURVE", "-54 228 CURVE SMOOTH", "-59 218 OFFCURVE", "-68 214 OFFCURVE", "-79 216 CURVE SMOOTH", "-94 219 OFFCURVE", "-97 234 OFFCURVE", "-90 258 CURVE SMOOTH", "-89 262 OFFCURVE", "-87 264 OFFCURVE", "-87 265 CURVE SMOOTH", "-78 301 OFFCURVE", "-61 335 OFFCURVE", "-35 366 CURVE SMOOTH", "-22 381 OFFCURVE", "-8 394 OFFCURVE", "8 404 CURVE", "-2 419 LINE", "-11 433 OFFCURVE", "-12 447 OFFCURVE", "-6 461 CURVE SMOOTH", "12 499 OFFCURVE", "27 525 OFFCURVE", "40 540 CURVE SMOOTH", "53 555 OFFCURVE", "68 559 OFFCURVE", "84 554 CURVE SMOOTH", "135 537 OFFCURVE", "176 512 OFFCURVE", "209 480 CURVE", "220 469 OFFCURVE", "223 453 OFFCURVE", "217 433 CURVE", "216 430 OFFCURVE", "202 405 OFFCURVE", "177 355 CURVE", "167 335 OFFCURVE", "146 324 OFFCURVE", "115 323 CURVE SMOOTH" ); } ); width = 280; } ); }, { glyphname = aMem.medi.SenMemInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = aKaf.init.KafYaaIsol; layers = ( { anchors = ( { name = Dash; position = "{146, 889}"; }, { name = DotAbove; position = "{-118, 792}"; }, { name = DotBelow; position = "{195, -146}"; }, { name = RingBelow; position = "{137, 767}"; }, { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{-172, 792}"; }, { name = TwoDotsBelow; position = "{195, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "438 942 OFFCURVE", "444 937 OFFCURVE", "442 922 CURVE SMOOTH", "434 853 LINE SMOOTH", "433 846 OFFCURVE", "429 841 OFFCURVE", "420 838 CURVE SMOOTH", "185 752 OFFCURVE", "6 671 OFFCURVE", "-115 595 CURVE SMOOTH", "-121 591 OFFCURVE", "-120 587 OFFCURVE", "-113 582 CURVE SMOOTH", "-54 539 OFFCURVE", "-11 504 OFFCURVE", "16 479 CURVE SMOOTH", "102 399 OFFCURVE", "139 313 OFFCURVE", "129 219 CURVE SMOOTH", "126 194 OFFCURVE", "116 172 OFFCURVE", "97 155 CURVE SMOOTH", "60 121 OFFCURVE", "13 97 OFFCURVE", "-44 83 CURVE SMOOTH", "-46 82 OFFCURVE", "-47 84 OFFCURVE", "-48 86 CURVE SMOOTH", "-48 88 OFFCURVE", "-49 89 OFFCURVE", "-48 91 CURVE SMOOTH", "-24 145 LINE", "4 155 OFFCURVE", "45 174 OFFCURVE", "99 201 CURVE SMOOTH", "101 202 OFFCURVE", "102 204 OFFCURVE", "102 207 CURVE SMOOTH", "96 291 OFFCURVE", "38 369 OFFCURVE", "-72 439 CURVE SMOOTH", "-76 441 OFFCURVE", "-78 441 OFFCURVE", "-79 438 CURVE SMOOTH", "-97 400 LINE SMOOTH", "-98 397 OFFCURVE", "-101 397 OFFCURVE", "-104 399 CURVE SMOOTH", "-128 415 OFFCURVE", "-145 428 OFFCURVE", "-157 439 CURVE SMOOTH", "-169 450 OFFCURVE", "-178 462 OFFCURVE", "-183 475 CURVE SMOOTH", "-192 498 OFFCURVE", "-190 529 OFFCURVE", "-178 569 CURVE SMOOTH", "-166 609 OFFCURVE", "-152 635 OFFCURVE", "-138 647 CURVE SMOOTH", "-39 731 OFFCURVE", "148 828 OFFCURVE", "425 937 CURVE SMOOTH" ); } ); width = 505; }, { anchors = ( { name = Dash; position = "{146, 889}"; }, { name = DotAbove; position = "{-118, 792}"; }, { name = DotBelow; position = "{195, -146}"; }, { name = RingBelow; position = "{137, 767}"; }, { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = TwoDotsAbove; position = "{-172, 792}"; }, { name = TwoDotsBelow; position = "{195, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "426 953 OFFCURVE", "432 953 OFFCURVE", "436 953 CURVE SMOOTH", "452 952 OFFCURVE", "458 941 OFFCURVE", "456 920 CURVE SMOOTH", "449 851 LINE SMOOTH", "447 838 OFFCURVE", "439 829 OFFCURVE", "425 824 CURVE SMOOTH", "197 741 OFFCURVE", "22 662 OFFCURVE", "-98 588 CURVE", "-42 547 OFFCURVE", "0 514 OFFCURVE", "26 490 CURVE SMOOTH", "115 407 OFFCURVE", "153 316 OFFCURVE", "143 217 CURVE SMOOTH", "140 188 OFFCURVE", "128 163 OFFCURVE", "107 144 CURVE SMOOTH", "68 109 OFFCURVE", "19 84 OFFCURVE", "-40 69 CURVE SMOOTH", "-47 67 OFFCURVE", "-53 69 OFFCURVE", "-58 75 CURVE SMOOTH", "-63 81 OFFCURVE", "-65 89 OFFCURVE", "-62 97 CURVE", "-35 157 LINE", "-5 168 OFFCURVE", "36 186 OFFCURVE", "87 211 CURVE", "79 286 OFFCURVE", "26 357 OFFCURVE", "-71 421 CURVE", "-83 394 LINE SMOOTH", "-87 386 OFFCURVE", "-94 383 OFFCURVE", "-104 385 CURVE SMOOTH", "-107 386 OFFCURVE", "-116 390 OFFCURVE", "-129 399 CURVE SMOOTH", "-165 423 OFFCURVE", "-187 446 OFFCURVE", "-197 471 CURVE SMOOTH", "-207 496 OFFCURVE", "-205 530 OFFCURVE", "-192 573 CURVE SMOOTH", "-179 616 OFFCURVE", "-163 644 OFFCURVE", "-147 658 CURVE SMOOTH", "-47 744 OFFCURVE", "142 841 OFFCURVE", "420 951 CURVE SMOOTH" ); } ); width = 505; } ); }, { glyphname = aBaa.init.BaaYaaIsol; layers = ( { anchors = ( { name = DigitAbove; position = "{60, 635}"; }, { name = DigitBelow; position = "{167, -288}"; }, { name = DotAbove; position = "{60, 635}"; }, { name = DotBelow; position = "{167, -288}"; }, { name = DotBelowAlt; position = "{167, -366}"; }, { name = HamzaAbove; position = "{60, 635}"; }, { name = HamzaBelow; position = "{167, -288}"; }, { name = RingBelow; position = "{171, 244}"; }, { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; }, { name = TwoDotsAbove; position = "{-13, 635}"; }, { name = TwoDotsBelow; position = "{113, -215}"; }, { name = TwoDotsBelowAlt; position = "{113, -366}"; }, { name = VAbove; position = "{60, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "70 480 OFFCURVE", "76 483 OFFCURVE", "83 476 CURVE SMOOTH", "98 462 OFFCURVE", "112 440 OFFCURVE", "126 409 CURVE SMOOTH", "140 378 OFFCURVE", "151 347 OFFCURVE", "156 315 CURVE SMOOTH", "161 283 OFFCURVE", "159 250 OFFCURVE", "150 217 CURVE SMOOTH", "141 184 OFFCURVE", "127 156 OFFCURVE", "107 134 CURVE SMOOTH", "68 90 OFFCURVE", "16 67 OFFCURVE", "-48 65 CURVE SMOOTH", "-55 65 OFFCURVE", "-56 67 OFFCURVE", "-52 74 CURVE", "-24 131 LINE SMOOTH", "-23 132 OFFCURVE", "-16 134 OFFCURVE", "0 137 CURVE SMOOTH", "53 148 OFFCURVE", "95 171 OFFCURVE", "126 206 CURVE", "128 241 OFFCURVE", "121 272 OFFCURVE", "103 301 CURVE SMOOTH", "85 330 OFFCURVE", "66 353 OFFCURVE", "45 370 CURVE SMOOTH", "39 375 OFFCURVE", "38 382 OFFCURVE", "41 392 CURVE SMOOTH", "66 468 LINE SMOOTH" ); } ); width = 258; }, { anchors = ( { name = DigitAbove; position = "{60, 635}"; }, { name = DigitBelow; position = "{167, -288}"; }, { name = DotAbove; position = "{60, 635}"; }, { name = DotBelow; position = "{167, -288}"; }, { name = DotBelowAlt; position = "{167, -366}"; }, { name = HamzaAbove; position = "{60, 635}"; }, { name = HamzaBelow; position = "{167, -288}"; }, { name = RingBelow; position = "{171, 244}"; }, { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; }, { name = TwoDotsAbove; position = "{-13, 635}"; }, { name = TwoDotsBelow; position = "{113, -215}"; }, { name = TwoDotsBelowAlt; position = "{113, -366}"; }, { name = VAbove; position = "{60, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "59 494 OFFCURVE", "72 499 OFFCURVE", "88 490 CURVE", "104 480 OFFCURVE", "120 457 OFFCURVE", "137 421 CURVE SMOOTH", "175 340 OFFCURVE", "183 266 OFFCURVE", "160 198 CURVE SMOOTH", "150 169 OFFCURVE", "136 145 OFFCURVE", "118 125 CURVE SMOOTH", "76 78 OFFCURVE", "21 53 OFFCURVE", "-47 50 CURVE SMOOTH", "-51 50 OFFCURVE", "-56 51 OFFCURVE", "-59 52 CURVE SMOOTH", "-70 57 OFFCURVE", "-72 67 OFFCURVE", "-65 81 CURVE SMOOTH", "-36 140 LINE", "-31 145 OFFCURVE", "-24 148 OFFCURVE", "-17 149 CURVE SMOOTH", "36 156 OFFCURVE", "79 178 OFFCURVE", "112 212 CURVE", "113 242 OFFCURVE", "105 270 OFFCURVE", "89 296 CURVE SMOOTH", "73 322 OFFCURVE", "56 343 OFFCURVE", "36 358 CURVE", "25 368 OFFCURVE", "22 380 OFFCURVE", "27 396 CURVE SMOOTH", "52 473 LINE" ); } ); width = 258; } ); }, { glyphname = aHaa.init.HaaYaaIsol; layers = ( { anchors = ( { name = DigitBelow; position = "{371, 0}"; }, { name = DotAbove; position = "{380, 571}"; }, { name = DotBelow; position = "{371, 0}"; }, { name = HamzaAbove; position = "{380, 571}"; }, { name = HamzaBelow; position = "{371, 0}"; }, { name = TaaAbove; position = "{380, 571}"; }, { name = TaaBelow; position = "{368, 195}"; }, { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; }, { name = TwoDotsAbove; position = "{327, 571}"; }, { name = TwoDotsBelow; position = "{322, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "91 216 OFFCURVE", "175 244 OFFCURVE", "254 255 CURVE SMOOTH", "256 255 OFFCURVE", "255 257 OFFCURVE", "250 260 CURVE SMOOTH", "219 280 OFFCURVE", "190 294 OFFCURVE", "160 303 CURVE SMOOTH", "130 312 OFFCURVE", "92 309 OFFCURVE", "46 292 CURVE SMOOTH", "42 290 OFFCURVE", "39 291 OFFCURVE", "38 294 CURVE SMOOTH", "37 297 OFFCURVE", "37 300 OFFCURVE", "39 305 CURVE SMOOTH", "58 352 OFFCURVE", "89 382 OFFCURVE", "133 392 CURVE SMOOTH", "164 399 OFFCURVE", "206 385 OFFCURVE", "259 350 CURVE", "329 304 OFFCURVE", "423 276 OFFCURVE", "541 266 CURVE SMOOTH", "554 265 OFFCURVE", "558 260 OFFCURVE", "553 252 CURVE SMOOTH", "517 192 LINE SMOOTH", "515 189 OFFCURVE", "512 188 OFFCURVE", "507 189 CURVE SMOOTH", "347 225 OFFCURVE", "190 209 OFFCURVE", "33 138 CURVE SMOOTH", "-13 117 OFFCURVE", "-34 112 OFFCURVE", "-31 120 CURVE", "-26 132 OFFCURVE", "-20 144 OFFCURVE", "-15 154 CURVE SMOOTH", "-10 164 OFFCURVE", "-4 170 OFFCURVE", "2 173 CURVE SMOOTH" ); } ); width = 616; }, { anchors = ( { name = DigitBelow; position = "{371, 0}"; }, { name = DotAbove; position = "{380, 571}"; }, { name = DotBelow; position = "{371, 0}"; }, { name = HamzaAbove; position = "{380, 571}"; }, { name = HamzaBelow; position = "{371, 0}"; }, { name = TaaAbove; position = "{380, 571}"; }, { name = TaaBelow; position = "{368, 195}"; }, { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; }, { name = TwoDotsAbove; position = "{327, 571}"; }, { name = TwoDotsBelow; position = "{322, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "73 224 OFFCURVE", "146 250 OFFCURVE", "216 264 CURVE", "195 275 OFFCURVE", "173 284 OFFCURVE", "150 291 CURVE SMOOTH", "127 298 OFFCURVE", "94 294 OFFCURVE", "52 278 CURVE SMOOTH", "44 275 OFFCURVE", "37 275 OFFCURVE", "33 279 CURVE SMOOTH", "23 287 OFFCURVE", "21 297 OFFCURVE", "25 310 CURVE", "46 362 OFFCURVE", "80 394 OFFCURVE", "129 406 CURVE", "165 414 OFFCURVE", "214 398 OFFCURVE", "276 357 CURVE SMOOTH", "338 316 OFFCURVE", "427 290 OFFCURVE", "542 280 CURVE", "564 277 OFFCURVE", "572 268 OFFCURVE", "568 251 CURVE SMOOTH", "567 249 OFFCURVE", "567 246 OFFCURVE", "566 244 CURVE SMOOTH", "530 184 LINE", "525 176 OFFCURVE", "515 173 OFFCURVE", "504 175 CURVE", "346 211 OFFCURVE", "187 192 OFFCURVE", "27 119 CURVE SMOOTH", "-4 105 OFFCURVE", "-24 100 OFFCURVE", "-32 102 CURVE SMOOTH", "-46 106 OFFCURVE", "-49 114 OFFCURVE", "-44 126 CURVE SMOOTH", "-39 138 OFFCURVE", "-33 150 OFFCURVE", "-27 162 CURVE SMOOTH", "-21 174 OFFCURVE", "-13 183 OFFCURVE", "-4 187 CURVE SMOOTH" ); } ); width = 616; } ); }, { glyphname = aMem.init.MemYaaIsol; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "120 287 LINE SMOOTH", "112 293 OFFCURVE", "110 302 OFFCURVE", "115 314 CURVE SMOOTH", "131 354 OFFCURVE", "146 384 OFFCURVE", "161 403 CURVE SMOOTH", "167 410 OFFCURVE", "176 413 OFFCURVE", "186 411 CURVE SMOOTH", "217 406 OFFCURVE", "246 393 OFFCURVE", "273 372 CURVE SMOOTH", "308 345 OFFCURVE", "325 322 OFFCURVE", "323 301 CURVE SMOOTH", "319 265 OFFCURVE", "309 240 OFFCURVE", "292 227 CURVE SMOOTH", "286 222 OFFCURVE", "268 217 OFFCURVE", "239 213 CURVE SMOOTH", "163 203 OFFCURVE", "104 181 OFFCURVE", "59 148 CURVE SMOOTH", "10 111 OFFCURVE", "-18 107 OFFCURVE", "-24 134 CURVE", "-15 153 OFFCURVE", "-7 164 OFFCURVE", "-1 170 CURVE SMOOTH", "42 211 OFFCURVE", "90 243 OFFCURVE", "146 267 CURVE" ); } ); width = 386; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "111 275 LINE SMOOTH", "97 286 OFFCURVE", "93 300 OFFCURVE", "101 319 CURVE SMOOTH", "117 360 OFFCURVE", "134 392 OFFCURVE", "150 412 CURVE SMOOTH", "160 424 OFFCURVE", "172 429 OFFCURVE", "188 426 CURVE SMOOTH", "222 420 OFFCURVE", "253 405 OFFCURVE", "282 383 CURVE SMOOTH", "321 353 OFFCURVE", "339 325 OFFCURVE", "337 299 CURVE", "333 258 OFFCURVE", "321 231 OFFCURVE", "301 215 CURVE SMOOTH", "293 209 OFFCURVE", "281 204 OFFCURVE", "266 202 CURVE SMOOTH", "251 200 OFFCURVE", "242 199 OFFCURVE", "241 199 CURVE SMOOTH", "168 189 OFFCURVE", "108 167 OFFCURVE", "61 132 CURVE SMOOTH", "14 97 OFFCURVE", "-17 92 OFFCURVE", "-33 117 CURVE SMOOTH", "-36 121 OFFCURVE", "-37 128 OFFCURVE", "-39 136 CURVE", "-28 159 OFFCURVE", "-19 174 OFFCURVE", "-12 181 CURVE SMOOTH", "26 217 OFFCURVE", "70 247 OFFCURVE", "118 270 CURVE" ); } ); width = 386; } ); }, { glyphname = aFaa.init.FaaYaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{0, 698}"; }, { name = DotBelow; position = "{146, -220}"; }, { name = HamzaAbove; position = "{0, 698}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; }, { name = TwoDotsAbove; position = "{-55, 698}"; }, { name = TwoDotsBelow; position = "{98, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "149 388 OFFCURVE", "166 332 OFFCURVE", "165 272 CURVE SMOOTH", "165 245 OFFCURVE", "161 220 OFFCURVE", "155 197 CURVE SMOOTH", "132 112 OFFCURVE", "66 69 OFFCURVE", "-42 69 CURVE SMOOTH", "-49 69 OFFCURVE", "-50 73 OFFCURVE", "-48 80 CURVE SMOOTH", "-44 95 OFFCURVE", "-36 113 OFFCURVE", "-24 135 CURVE SMOOTH", "-22 139 OFFCURVE", "-19 141 OFFCURVE", "-14 142 CURVE SMOOTH", "66 154 OFFCURVE", "117 176 OFFCURVE", "138 209 CURVE SMOOTH", "145 220 OFFCURVE", "144 235 OFFCURVE", "134 254 CURVE SMOOTH", "125 272 OFFCURVE", "115 282 OFFCURVE", "106 287 CURVE", "92 259 OFFCURVE", "77 241 OFFCURVE", "62 233 CURVE SMOOTH", "24 213 OFFCURVE", "-6 220 OFFCURVE", "-29 254 CURVE SMOOTH", "-48 282 OFFCURVE", "-48 319 OFFCURVE", "-30 364 CURVE SMOOTH", "-2 434 OFFCURVE", "29 470 OFFCURVE", "64 471 CURVE SMOOTH", "81 472 OFFCURVE", "98 460 OFFCURVE", "114 437 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "9 372 OFFCURVE", "1 365 OFFCURVE", "-8 354 CURVE SMOOTH", "-12 348 OFFCURVE", "-10 343 OFFCURVE", "-2 337 CURVE SMOOTH", "18 322 OFFCURVE", "38 325 OFFCURVE", "58 343 CURVE", "61 346 OFFCURVE", "61 348 OFFCURVE", "58 351 CURVE SMOOTH", "41 365 OFFCURVE", "27 372 OFFCURVE", "18 372 CURVE SMOOTH" ); } ); width = 237; }, { anchors = ( { name = DotAbove; position = "{0, 698}"; }, { name = DotBelow; position = "{146, -220}"; }, { name = HamzaAbove; position = "{0, 698}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; }, { name = TwoDotsAbove; position = "{-55, 698}"; }, { name = TwoDotsBelow; position = "{98, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "9 381 OFFCURVE", "1 375 OFFCURVE", "-8 364 CURVE SMOOTH", "-12 358 OFFCURVE", "-10 353 OFFCURVE", "-2 347 CURVE SMOOTH", "18 332 OFFCURVE", "38 335 OFFCURVE", "58 353 CURVE", "61 356 OFFCURVE", "61 358 OFFCURVE", "58 361 CURVE SMOOTH", "41 375 OFFCURVE", "27 381 OFFCURVE", "18 381 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "175 381 OFFCURVE", "186 293 OFFCURVE", "159 192 CURVE SMOOTH", "135 101 OFFCURVE", "67 55 OFFCURVE", "-42 55 CURVE", "-72 57 OFFCURVE", "-71 86 OFFCURVE", "-37 143 CURVE SMOOTH", "-32 151 OFFCURVE", "-25 155 OFFCURVE", "-16 156 CURVE SMOOTH", "68 168 OFFCURVE", "119 189 OFFCURVE", "136 217 CURVE SMOOTH", "143 228 OFFCURVE", "133 248 OFFCURVE", "110 279 CURVE", "98 256 OFFCURVE", "85 239 OFFCURVE", "69 230 CURVE SMOOTH", "27 206 OFFCURVE", "-7 214 OFFCURVE", "-33 255 CURVE SMOOTH", "-53 287 OFFCURVE", "-54 329 OFFCURVE", "-33 379 CURVE SMOOTH", "-2 455 OFFCURVE", "30 494 OFFCURVE", "64 495 CURVE SMOOTH", "87 496 OFFCURVE", "108 483 OFFCURVE", "126 455 CURVE" ); } ); width = 237; } ); }, { glyphname = aAyn.init.AynYaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{257, 681}"; }, { name = DotBelow; position = "{439, 98}"; }, { name = HamzaAbove; position = "{257, 681}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = TwoDotsAbove; position = "{202, 681}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "504 309 OFFCURVE", "501 304 OFFCURVE", "498 303 CURVE SMOOTH", "450 283 OFFCURVE", "376 253 OFFCURVE", "274 215 CURVE SMOOTH", "172 177 OFFCURVE", "104 150 OFFCURVE", "68 133 CURVE SMOOTH", "5 104 OFFCURVE", "-26 101 OFFCURVE", "-27 122 CURVE", "-27 143 OFFCURVE", "-18 159 OFFCURVE", "0 169 CURVE SMOOTH", "43 194 OFFCURVE", "104 221 OFFCURVE", "185 253 CURVE", "139 299 OFFCURVE", "119 336 OFFCURVE", "125 361 CURVE SMOOTH", "133 397 OFFCURVE", "157 435 OFFCURVE", "199 476 CURVE SMOOTH", "241 517 OFFCURVE", "277 538 OFFCURVE", "307 543 CURVE SMOOTH", "324 546 OFFCURVE", "348 540 OFFCURVE", "380 524 CURVE SMOOTH", "412 508 OFFCURVE", "436 492 OFFCURVE", "452 475 CURVE SMOOTH", "456 471 OFFCURVE", "456 467 OFFCURVE", "454 464 CURVE SMOOTH", "452 461 OFFCURVE", "449 459 OFFCURVE", "444 461 CURVE SMOOTH", "341 489 OFFCURVE", "256 470 OFFCURVE", "188 403 CURVE SMOOTH", "186 400 OFFCURVE", "186 396 OFFCURVE", "190 390 CURVE SMOOTH", "213 353 OFFCURVE", "257 329 OFFCURVE", "321 317 CURVE SMOOTH", "349 312 OFFCURVE", "403 331 OFFCURVE", "484 373 CURVE SMOOTH", "524 394 OFFCURVE", "540 395 OFFCURVE", "533 376 CURVE", "508 319 LINE SMOOTH" ); } ); width = 596; }, { anchors = ( { name = DotAbove; position = "{257, 681}"; }, { name = DotBelow; position = "{439, 98}"; }, { name = HamzaAbove; position = "{257, 681}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = TwoDotsAbove; position = "{202, 681}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "516 301 OFFCURVE", "510 292 OFFCURVE", "503 289 CURVE SMOOTH", "455 269 OFFCURVE", "380 239 OFFCURVE", "279 201 CURVE SMOOTH", "178 163 OFFCURVE", "109 135 OFFCURVE", "73 119 CURVE SMOOTH", "37 103 OFFCURVE", "12 94 OFFCURVE", "-3 94 CURVE SMOOTH", "-18 94 OFFCURVE", "-29 97 OFFCURVE", "-35 104 CURVE", "-39 109 OFFCURVE", "-42 115 OFFCURVE", "-42 122 CURVE", "-42 149 OFFCURVE", "-30 169 OFFCURVE", "-8 182 CURVE SMOOTH", "32 205 OFFCURVE", "87 230 OFFCURVE", "159 259 CURVE", "120 301 OFFCURVE", "104 336 OFFCURVE", "110 364 CURVE", "119 403 OFFCURVE", "145 443 OFFCURVE", "189 486 CURVE SMOOTH", "233 529 OFFCURVE", "271 553 OFFCURVE", "304 558 CURVE", "325 561 OFFCURVE", "352 554 OFFCURVE", "386 537 CURVE SMOOTH", "420 520 OFFCURVE", "445 503 OFFCURVE", "462 485 CURVE SMOOTH", "470 476 OFFCURVE", "473 467 OFFCURVE", "467 457 CURVE SMOOTH", "461 447 OFFCURVE", "451 444 OFFCURVE", "439 447 CURVE SMOOTH", "344 473 OFFCURVE", "266 456 OFFCURVE", "203 397 CURVE", "225 364 OFFCURVE", "265 343 OFFCURVE", "323 332 CURVE", "348 328 OFFCURVE", "400 346 OFFCURVE", "478 386 CURVE SMOOTH", "500 398 OFFCURVE", "514 404 OFFCURVE", "521 404 CURVE SMOOTH", "528 404 OFFCURVE", "533 404 OFFCURVE", "537 403 CURVE SMOOTH", "550 398 OFFCURVE", "552 387 OFFCURVE", "546 371 CURVE", "522 314 LINE SMOOTH" ); } ); width = 596; } ); }, { glyphname = aLam.init.LamYaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{-6, 814}"; }, { name = Stroke; position = "{8, 530}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; }, { name = TwoDotsAbove; position = "{-65, 814}"; }, { name = TwoDotsBelow; position = "{49, -200}"; }, { name = VAbove; position = "{-6, 766}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "77 138 OFFCURVE", "58 100 OFFCURVE", "23 86 CURVE SMOOTH", "2 78 OFFCURVE", "-22 74 OFFCURVE", "-50 71 CURVE", "-52 83 OFFCURVE", "-51 94 OFFCURVE", "-47 104 CURVE SMOOTH", "-43 114 OFFCURVE", "-36 120 OFFCURVE", "-28 125 CURVE", "-25 127 OFFCURVE", "-13 133 OFFCURVE", "7 141 CURVE SMOOTH", "27 149 OFFCURVE", "39 155 OFFCURVE", "43 157 CURVE SMOOTH", "47 159 OFFCURVE", "49 163 OFFCURVE", "48 169 CURVE SMOOTH", "39 239 OFFCURVE", "26 319 OFFCURVE", "9 408 CURVE SMOOTH", "-8 497 OFFCURVE", "-18 555 OFFCURVE", "-22 582 CURVE", "-35 637 LINE SMOOTH", "-37 645 OFFCURVE", "-38 652 OFFCURVE", "-36 656 CURVE SMOOTH", "-27 681 OFFCURVE", "-22 696 OFFCURVE", "-20 702 CURVE SMOOTH", "-18 708 OFFCURVE", "-15 711 OFFCURVE", "-10 711 CURVE SMOOTH", "-5 711 OFFCURVE", "-2 708 OFFCURVE", "1 701 CURVE SMOOTH", "13 672 OFFCURVE", "28 648 OFFCURVE", "48 630 CURVE SMOOTH", "55 624 OFFCURVE", "55 616 OFFCURVE", "48 607 CURVE", "27 576 LINE", "28 571 OFFCURVE", "38 515 OFFCURVE", "56 409 CURVE SMOOTH", "74 303 OFFCURVE", "83 233 OFFCURVE", "81 200 CURVE SMOOTH" ); } ); width = 242; }, { anchors = ( { name = DotAbove; position = "{-6, 814}"; }, { name = Stroke; position = "{8, 530}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; }, { name = TwoDotsAbove; position = "{-65, 814}"; }, { name = TwoDotsBelow; position = "{49, -200}"; }, { name = VAbove; position = "{-6, 766}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "80 363 OFFCURVE", "99 244 OFFCURVE", "97 216 CURVE SMOOTH", "95 188 OFFCURVE", "92 168 OFFCURVE", "89 154 CURVE SMOOTH", "79 112 OFFCURVE", "59 85 OFFCURVE", "28 73 CURVE", "6 65 OFFCURVE", "-20 59 OFFCURVE", "-49 56 CURVE SMOOTH", "-63 55 LINE", "-65 69 LINE SMOOTH", "-67 83 OFFCURVE", "-65 96 OFFCURVE", "-60 109 CURVE SMOOTH", "-55 122 OFFCURVE", "-48 130 OFFCURVE", "-40 135 CURVE SMOOTH", "-32 140 OFFCURVE", "-20 146 OFFCURVE", "-2 153 CURVE SMOOTH", "16 160 OFFCURVE", "27 165 OFFCURVE", "33 168 CURVE", "24 238 OFFCURVE", "11 318 OFFCURVE", "-6 406 CURVE SMOOTH", "-23 494 OFFCURVE", "-33 552 OFFCURVE", "-37 579 CURVE", "-49 634 LINE SMOOTH", "-51 645 OFFCURVE", "-52 654 OFFCURVE", "-49 661 CURVE SMOOTH", "-40 685 OFFCURVE", "-36 702 OFFCURVE", "-33 711 CURVE SMOOTH", "-30 720 OFFCURVE", "-23 725 OFFCURVE", "-11 725 CURVE SMOOTH", "1 725 OFFCURVE", "10 720 OFFCURVE", "15 707 CURVE SMOOTH", "26 680 OFFCURVE", "40 657 OFFCURVE", "58 641 CURVE", "71 629 OFFCURVE", "72 615 OFFCURVE", "60 599 CURVE", "43 573 LINE" ); } ); width = 242; } ); }, { glyphname = aHeh.init.HehYaaIsol; layers = ( { anchors = ( { name = HamzaAbove; position = "{271, 677}"; }, { name = TashkilAbove; position = "{270, 801}"; }, { name = TashkilBelow; position = "{314, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "324 383 OFFCURVE", "322 383 OFFCURVE", "322 380 CURVE SMOOTH", "322 350 OFFCURVE", "315 322 OFFCURVE", "300 296 CURVE", "369 273 OFFCURVE", "411 265 OFFCURVE", "425 272 CURVE SMOOTH", "430 275 OFFCURVE", "431 278 OFFCURVE", "430 281 CURVE SMOOTH", "420 306 OFFCURVE", "385 339 OFFCURVE", "326 381 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "274 320 OFFCURVE", "284 329 OFFCURVE", "284 336 CURVE", "281 371 OFFCURVE", "270 390 OFFCURVE", "252 394 CURVE SMOOTH", "225 400 OFFCURVE", "201 388 OFFCURVE", "178 359 CURVE SMOOTH", "171 351 OFFCURVE", "173 343 OFFCURVE", "185 335 CURVE SMOOTH", "197 327 OFFCURVE", "220 318 OFFCURVE", "255 308 CURVE" ); }, { closed = 1; nodes = ( "-24 131 OFFCURVE", "-23 134 OFFCURVE", "-23 135 CURVE SMOOTH", "-17 156 OFFCURVE", "-6 174 OFFCURVE", "12 188 CURVE SMOOTH", "31 203 OFFCURVE", "65 219 OFFCURVE", "113 238 CURVE SMOOTH", "131 245 OFFCURVE", "146 252 OFFCURVE", "158 259 CURVE", "134 276 OFFCURVE", "126 298 OFFCURVE", "135 327 CURVE SMOOTH", "149 370 OFFCURVE", "174 407 OFFCURVE", "209 438 CURVE", "204 447 OFFCURVE", "197 453 OFFCURVE", "187 454 CURVE SMOOTH", "179 455 OFFCURVE", "176 459 OFFCURVE", "178 466 CURVE SMOOTH", "194 526 OFFCURVE", "216 556 OFFCURVE", "244 555 CURVE SMOOTH", "272 554 OFFCURVE", "317 523 OFFCURVE", "378 465 CURVE SMOOTH", "439 407 OFFCURVE", "473 360 OFFCURVE", "479 325 CURVE SMOOTH", "486 281 OFFCURVE", "476 243 OFFCURVE", "448 209 CURVE SMOOTH", "434 192 OFFCURVE", "417 185 OFFCURVE", "396 187 CURVE SMOOTH", "347 192 OFFCURVE", "293 204 OFFCURVE", "235 226 CURVE", "181 191 OFFCURVE", "116 163 OFFCURVE", "42 142 CURVE SMOOTH", "36 140 OFFCURVE", "32 138 OFFCURVE", "31 135 CURVE SMOOTH", "30 133 OFFCURVE", "30 132 OFFCURVE", "30 130 CURVE", "-26 127 LINE" ); } ); width = 552; }, { anchors = ( { name = HamzaAbove; position = "{271, 677}"; }, { name = TashkilAbove; position = "{270, 801}"; }, { name = TashkilBelow; position = "{314, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "181 536 OFFCURVE", "206 569 OFFCURVE", "240 569 CURVE SMOOTH", "274 569 OFFCURVE", "321 538 OFFCURVE", "383 477 CURVE SMOOTH", "445 416 OFFCURVE", "478 366 OFFCURVE", "485 328 CURVE", "493 280 OFFCURVE", "482 237 OFFCURVE", "451 200 CURVE SMOOTH", "435 181 OFFCURVE", "416 172 OFFCURVE", "394 174 CURVE SMOOTH", "344 179 OFFCURVE", "289 192 OFFCURVE", "230 214 CURVE", "168 179 OFFCURVE", "107 154 OFFCURVE", "45 140 CURVE", "42 139 OFFCURVE", "40 136 OFFCURVE", "40 131 CURVE", "13 130 OFFCURVE", "-14 129 OFFCURVE", "-41 128 CURVE", "-29 164 OFFCURVE", "3 194 OFFCURVE", "54 218 CURVE SMOOTH", "79 230 OFFCURVE", "112 244 OFFCURVE", "152 260 CURVE", "124 273 OFFCURVE", "116 297 OFFCURVE", "127 330 CURVE SMOOTH", "140 368 OFFCURVE", "163 403 OFFCURVE", "196 435 CURVE", "194 436 OFFCURVE", "190 437 OFFCURVE", "184 438 CURVE SMOOTH", "174 440 OFFCURVE", "168 445 OFFCURVE", "166 452 CURVE SMOOTH", "164 459 OFFCURVE", "163 465 OFFCURVE", "164 470 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "187 341 OFFCURVE", "212 329 OFFCURVE", "257 319 CURVE", "266 322 OFFCURVE", "274 328 OFFCURVE", "279 337 CURVE", "276 363 OFFCURVE", "267 378 OFFCURVE", "250 384 CURVE", "223 388 OFFCURVE", "200 378 OFFCURVE", "180 355 CURVE" ); }, { closed = 1; nodes = ( "324 337 OFFCURVE", "318 319 OFFCURVE", "311 304 CURVE", "366 284 OFFCURVE", "403 276 OFFCURVE", "421 279 CURVE", "414 299 OFFCURVE", "384 325 OFFCURVE", "328 358 CURVE" ); } ); width = 552; } ); }, { glyphname = aYaa.fina.KafYaaIsol; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = DigitAbove; position = "{229, 356}"; }, { name = DigitBelow; position = "{355, -361}"; }, { name = DotAbove; position = "{229, 356}"; }, { name = DotBelow; position = "{355, -361}"; }, { name = HamzaAbove; position = "{132, 356}"; }, { name = HamzaBelow; position = "{355, -361}"; }, { name = RingBelow; position = "{293, -167}"; }, { name = Tail; position = "{146, 210}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; }, { name = TwoDotsAbove; position = "{176, 356}"; }, { name = TwoDotsBelow; position = "{301, -361}"; }, { name = VAbove; position = "{181, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "490 134 OFFCURVE", "531 134 OFFCURVE", "574 129 CURVE SMOOTH", "617 124 OFFCURVE", "647 113 OFFCURVE", "665 96 CURVE SMOOTH", "675 87 OFFCURVE", "679 72 OFFCURVE", "676 51 CURVE SMOOTH", "670 8 OFFCURVE", "662 -21 OFFCURVE", "650 -37 CURVE SMOOTH", "638 -53 OFFCURVE", "620 -70 OFFCURVE", "596 -88 CURVE SMOOTH", "479 -176 OFFCURVE", "362 -218 OFFCURVE", "247 -215 CURVE", "197 -213 OFFCURVE", "156 -199 OFFCURVE", "123 -172 CURVE SMOOTH", "90 -145 OFFCURVE", "70 -111 OFFCURVE", "62 -70 CURVE SMOOTH", "54 -29 OFFCURVE", "57 19 OFFCURVE", "72 76 CURVE SMOOTH", "87 133 OFFCURVE", "110 180 OFFCURVE", "140 219 CURVE SMOOTH", "146 226 OFFCURVE", "150 228 OFFCURVE", "155 222 CURVE SMOOTH", "160 216 OFFCURVE", "160 211 OFFCURVE", "156 204 CURVE SMOOTH", "115 142 OFFCURVE", "96 87 OFFCURVE", "99 39 CURVE SMOOTH", "105 -67 OFFCURVE", "165 -120 OFFCURVE", "281 -120 CURVE SMOOTH", "397 -120 OFFCURVE", "512 -71 OFFCURVE", "627 28 CURVE SMOOTH", "629 30 OFFCURVE", "628 33 OFFCURVE", "626 35 CURVE SMOOTH", "605 57 OFFCURVE", "541 68 OFFCURVE", "432 69 CURVE SMOOTH", "427 69 OFFCURVE", "425 72 OFFCURVE", "428 77 CURVE SMOOTH", "451 130 LINE" ); } ); width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = DigitAbove; position = "{229, 356}"; }, { name = DigitBelow; position = "{355, -361}"; }, { name = DotAbove; position = "{229, 356}"; }, { name = DotBelow; position = "{355, -361}"; }, { name = HamzaAbove; position = "{132, 356}"; }, { name = HamzaBelow; position = "{355, -361}"; }, { name = RingBelow; position = "{293, -167}"; }, { name = Tail; position = "{146, 210}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; }, { name = TwoDotsAbove; position = "{176, 356}"; }, { name = TwoDotsBelow; position = "{301, -361}"; }, { name = VAbove; position = "{181, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "486 149 OFFCURVE", "531 148 OFFCURVE", "574 143 CURVE SMOOTH", "617 138 OFFCURVE", "649 126 OFFCURVE", "670 107 CURVE", "683 94 OFFCURVE", "688 75 OFFCURVE", "685 49 CURVE", "679 4 OFFCURVE", "670 -28 OFFCURVE", "656 -46 CURVE SMOOTH", "642 -64 OFFCURVE", "624 -82 OFFCURVE", "600 -100 CURVE SMOOTH", "476 -195 OFFCURVE", "358 -237 OFFCURVE", "247 -229 CURVE SMOOTH", "77 -217 OFFCURVE", "18 -114 OFFCURVE", "68 80 CURVE SMOOTH", "82 134 OFFCURVE", "105 181 OFFCURVE", "136 221 CURVE SMOOTH", "145 232 OFFCURVE", "153 235 OFFCURVE", "161 228 CURVE SMOOTH", "169 221 OFFCURVE", "168 210 OFFCURVE", "158 196 CURVE SMOOTH", "119 137 OFFCURVE", "102 85 OFFCURVE", "104 40 CURVE SMOOTH", "109 -56 OFFCURVE", "168 -103 OFFCURVE", "282 -104 CURVE SMOOTH", "396 -105 OFFCURVE", "508 -60 OFFCURVE", "617 31 CURVE", "588 47 OFFCURVE", "527 54 OFFCURVE", "432 54 CURVE SMOOTH", "423 54 OFFCURVE", "417 58 OFFCURVE", "415 65 CURVE SMOOTH", "413 72 OFFCURVE", "413 79 OFFCURVE", "415 83 CURVE SMOOTH", "441 144 LINE" ); } ); width = 476; } ); }, { glyphname = aKaf.init.KafMemIsol; layers = ( { anchors = ( { name = Dash; position = "{211, 879}"; }, { name = DotAbove; position = "{-121, 842}"; }, { name = DotBelow; position = "{273, 325}"; }, { name = RingBelow; position = "{234, 774}"; }, { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; }, { name = TwoDotsAbove; position = "{-175, 842}"; }, { name = TwoDotsBelow; position = "{273, 325}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "498 792 LINE SMOOTH", "496 784 OFFCURVE", "489 779 OFFCURVE", "481 778 CURVE SMOOTH", "238 738 OFFCURVE", "80 706 OFFCURVE", "8 682 CURVE SMOOTH", "-30 670 OFFCURVE", "-55 657 OFFCURVE", "-69 644 CURVE", "72 500 OFFCURVE", "133 377 OFFCURVE", "116 277 CURVE SMOOTH", "111 250 OFFCURVE", "97 223 OFFCURVE", "74 194 CURVE SMOOTH", "62 179 OFFCURVE", "38 167 OFFCURVE", "4 160 CURVE SMOOTH", "-41 150 OFFCURVE", "-62 159 OFFCURVE", "-59 185 CURVE SMOOTH", "-58 194 OFFCURVE", "-52 200 OFFCURVE", "-44 203 CURVE SMOOTH", "28 230 OFFCURVE", "72 253 OFFCURVE", "88 272 CURVE", "87 334 OFFCURVE", "46 405 OFFCURVE", "-37 484 CURVE SMOOTH", "-41 488 OFFCURVE", "-46 488 OFFCURVE", "-52 486 CURVE SMOOTH", "-83 476 LINE SMOOTH", "-88 474 OFFCURVE", "-92 476 OFFCURVE", "-97 483 CURVE SMOOTH", "-154 565 LINE SMOOTH", "-158 571 OFFCURVE", "-158 579 OFFCURVE", "-155 590 CURVE SMOOTH", "-142 635 OFFCURVE", "-123 671 OFFCURVE", "-97 697 CURVE SMOOTH", "-85 709 OFFCURVE", "-64 722 OFFCURVE", "-36 737 CURVE SMOOTH", "49 783 OFFCURVE", "228 829 OFFCURVE", "502 874 CURVE SMOOTH", "516 877 OFFCURVE", "522 870 OFFCURVE", "517 855 CURVE SMOOTH" ); } ); width = 580; }, { anchors = ( { name = Dash; position = "{211, 879}"; }, { name = DotAbove; position = "{-121, 842}"; }, { name = DotBelow; position = "{273, 325}"; }, { name = RingBelow; position = "{234, 774}"; }, { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; }, { name = TwoDotsAbove; position = "{-175, 842}"; }, { name = TwoDotsBelow; position = "{273, 325}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "512 788 LINE SMOOTH", "508 774 OFFCURVE", "499 766 OFFCURVE", "484 764 CURVE SMOOTH", "242 724 OFFCURVE", "85 692 OFFCURVE", "13 668 CURVE SMOOTH", "-13 659 OFFCURVE", "-33 651 OFFCURVE", "-47 642 CURVE", "89 500 OFFCURVE", "148 377 OFFCURVE", "131 275 CURVE", "125 246 OFFCURVE", "110 215 OFFCURVE", "85 185 CURVE SMOOTH", "70 167 OFFCURVE", "44 154 OFFCURVE", "7 146 CURVE SMOOTH", "-11 142 OFFCURVE", "-27 140 OFFCURVE", "-42 142 CURVE SMOOTH", "-57 144 OFFCURVE", "-67 153 OFFCURVE", "-72 168 CURVE SMOOTH", "-74 174 OFFCURVE", "-74 182 OFFCURVE", "-72 193 CURVE SMOOTH", "-70 204 OFFCURVE", "-63 212 OFFCURVE", "-50 217 CURVE", "14 241 OFFCURVE", "56 262 OFFCURVE", "74 278 CURVE", "70 335 OFFCURVE", "30 400 OFFCURVE", "-46 473 CURVE SMOOTH", "-47 473 LINE SMOOTH", "-78 462 LINE", "-90 458 OFFCURVE", "-100 463 OFFCURVE", "-109 475 CURVE", "-166 556 LINE SMOOTH", "-173 566 OFFCURVE", "-173 579 OFFCURVE", "-169 594 CURVE SMOOTH", "-155 642 OFFCURVE", "-134 680 OFFCURVE", "-107 707 CURVE", "-93 720 OFFCURVE", "-72 735 OFFCURVE", "-43 750 CURVE", "43 797 OFFCURVE", "224 843 OFFCURVE", "499 888 CURVE SMOOTH", "505 889 OFFCURVE", "511 889 OFFCURVE", "516 888 CURVE SMOOTH", "532 884 OFFCURVE", "537 871 OFFCURVE", "531 851 CURVE SMOOTH" ); } ); width = 580; } ); }, { glyphname = aLam.init.LamMemIsol; layers = ( { anchors = ( { name = DotAbove; position = "{15, 876}"; }, { name = Stroke; position = "{38, 562}"; }, { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{132, 0}"; }, { name = TwoDotsAbove; position = "{-44, 876}"; }, { name = TwoDotsBelow; position = "{34, -124}"; }, { name = VAbove; position = "{15, 827}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "11 771 OFFCURVE", "16 771 OFFCURVE", "20 761 CURVE SMOOTH", "29 738 OFFCURVE", "48 714 OFFCURVE", "78 692 CURVE SMOOTH", "86 686 OFFCURVE", "87 679 OFFCURVE", "83 672 CURVE SMOOTH", "79 665 OFFCURVE", "74 656 OFFCURVE", "67 645 CURVE SMOOTH", "60 634 OFFCURVE", "55 627 OFFCURVE", "52 622 CURVE", "78 398 LINE SMOOTH", "82 357 OFFCURVE", "81 312 OFFCURVE", "73 264 CURVE SMOOTH", "71 247 OFFCURVE", "66 229 OFFCURVE", "58 210 CURVE SMOOTH", "43 178 LINE SMOOTH", "34 157 OFFCURVE", "16 151 OFFCURVE", "-14 159 CURVE SMOOTH", "-35 165 OFFCURVE", "-48 173 OFFCURVE", "-53 185 CURVE SMOOTH", "-57 197 OFFCURVE", "-48 205 OFFCURVE", "-24 211 CURVE SMOOTH", "11 219 OFFCURVE", "35 233 OFFCURVE", "48 252 CURVE", "47 290 OFFCURVE", "43 332 OFFCURVE", "38 376 CURVE SMOOTH", "33 420 OFFCURVE", "25 475 OFFCURVE", "14 542 CURVE SMOOTH", "3 609 OFFCURVE", "-4 649 OFFCURVE", "-8 662 CURVE SMOOTH", "-16 692 OFFCURVE", "-19 710 OFFCURVE", "-16 716 CURVE SMOOTH", "6 761 LINE SMOOTH" ); } ); width = 238; }, { anchors = ( { name = DotAbove; position = "{15, 876}"; }, { name = Stroke; position = "{38, 562}"; }, { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{132, 0}"; }, { name = TwoDotsAbove; position = "{-44, 876}"; }, { name = TwoDotsBelow; position = "{34, -124}"; }, { name = VAbove; position = "{15, 827}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-3 775 OFFCURVE", "1 780 OFFCURVE", "5 782 CURVE SMOOTH", "17 788 OFFCURVE", "27 782 OFFCURVE", "34 766 CURVE SMOOTH", "43 745 OFFCURVE", "60 725 OFFCURVE", "87 704 CURVE", "101 693 OFFCURVE", "104 679 OFFCURVE", "95 663 CURVE SMOOTH", "91 656 OFFCURVE", "86 648 OFFCURVE", "80 639 CURVE SMOOTH", "74 630 OFFCURVE", "70 622 OFFCURVE", "67 618 CURVE", "93 400 LINE", "101 324 OFFCURVE", "93 259 OFFCURVE", "71 205 CURVE", "57 172 LINE SMOOTH", "45 143 OFFCURVE", "20 135 OFFCURVE", "-18 145 CURVE", "-44 152 OFFCURVE", "-60 164 OFFCURVE", "-67 180 CURVE", "-74 202 OFFCURVE", "-61 217 OFFCURVE", "-27 225 CURVE SMOOTH", "1 232 OFFCURVE", "21 243 OFFCURVE", "33 257 CURVE", "30 328 OFFCURVE", "21 409 OFFCURVE", "6 501 CURVE SMOOTH", "-9 593 OFFCURVE", "-20 650 OFFCURVE", "-26 673 CURVE SMOOTH", "-32 696 OFFCURVE", "-33 712 OFFCURVE", "-29 722 CURVE", "-7 768 LINE" ); } ); width = 238; } ); }, { glyphname = aBaa.init.BaaMemIsol; layers = ( { anchors = ( { name = DigitAbove; position = "{218, 552}"; }, { name = DigitBelow; position = "{294, -169}"; }, { name = DotAbove; position = "{218, 552}"; }, { name = DotBelow; position = "{294, -169}"; }, { name = DotBelowAlt; position = "{294, -366}"; }, { name = HamzaAbove; position = "{218, 552}"; }, { name = HamzaBelow; position = "{294, -169}"; }, { name = RingBelow; position = "{264, 269}"; }, { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; }, { name = TwoDotsAbove; position = "{164, 552}"; }, { name = TwoDotsBelow; position = "{240, -121}"; }, { name = TwoDotsBelowAlt; position = "{240, -366}"; }, { name = VAbove; position = "{218, 552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "321 261 OFFCURVE", "310 246 OFFCURVE", "299 231 CURVE SMOOTH", "279 205 OFFCURVE", "266 203 OFFCURVE", "260 224 CURVE SMOOTH", "254 245 OFFCURVE", "239 257 OFFCURVE", "214 260 CURVE SMOOTH", "170 264 OFFCURVE", "101 239 OFFCURVE", "7 184 CURVE SMOOTH", "-21 168 OFFCURVE", "-39 170 OFFCURVE", "-50 188 CURVE SMOOTH", "-54 195 OFFCURVE", "-55 198 OFFCURVE", "-52 201 CURVE SMOOTH", "-41 212 OFFCURVE", "-15 231 OFFCURVE", "26 257 CURVE SMOOTH", "124 319 OFFCURVE", "200 351 OFFCURVE", "254 350 CURVE SMOOTH", "277 350 OFFCURVE", "299 343 OFFCURVE", "317 329 CURVE SMOOTH", "335 315 OFFCURVE", "339 297 OFFCURVE", "328 275 CURVE SMOOTH" ); } ); width = 391; }, { anchors = ( { name = DigitAbove; position = "{218, 552}"; }, { name = DigitBelow; position = "{294, -169}"; }, { name = DotAbove; position = "{218, 552}"; }, { name = DotBelow; position = "{294, -169}"; }, { name = DotBelowAlt; position = "{294, -366}"; }, { name = HamzaAbove; position = "{218, 552}"; }, { name = HamzaBelow; position = "{294, -169}"; }, { name = RingBelow; position = "{264, 269}"; }, { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; }, { name = TwoDotsAbove; position = "{164, 552}"; }, { name = TwoDotsBelow; position = "{240, -121}"; }, { name = TwoDotsBelowAlt; position = "{240, -366}"; }, { name = VAbove; position = "{218, 552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "342 267 OFFCURVE", "332 251 OFFCURVE", "317 231 CURVE SMOOTH", "302 211 OFFCURVE", "290 200 OFFCURVE", "283 198 CURVE SMOOTH", "264 192 OFFCURVE", "252 200 OFFCURVE", "246 220 CURVE", "242 235 OFFCURVE", "230 243 OFFCURVE", "212 245 CURVE", "171 249 OFFCURVE", "106 224 OFFCURVE", "15 171 CURVE SMOOTH", "-21 150 OFFCURVE", "-47 154 OFFCURVE", "-63 180 CURVE", "-70 193 OFFCURVE", "-70 203 OFFCURVE", "-63 211 CURVE SMOOTH", "-51 223 OFFCURVE", "-24 244 OFFCURVE", "18 270 CURVE SMOOTH", "118 334 OFFCURVE", "197 366 OFFCURVE", "254 365 CURVE SMOOTH", "281 365 OFFCURVE", "304 357 OFFCURVE", "325 341 CURVE SMOOTH", "346 325 OFFCURVE", "353 306 OFFCURVE", "346 282 CURVE SMOOTH" ); } ); width = 391; } ); }, { glyphname = aMem.fina.KafMemIsol; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "134 170 OFFCURVE", "145 194 OFFCURVE", "153 200 CURVE SMOOTH", "161 206 OFFCURVE", "186 202 OFFCURVE", "230 186 CURVE SMOOTH", "274 170 OFFCURVE", "315 148 OFFCURVE", "355 118 CURVE SMOOTH", "367 109 OFFCURVE", "370 97 OFFCURVE", "365 82 CURVE SMOOTH", "355 51 OFFCURVE", "348 34 OFFCURVE", "347 31 CURVE SMOOTH", "342 19 OFFCURVE", "336 13 OFFCURVE", "328 14 CURVE SMOOTH", "257 23 OFFCURVE", "193 20 OFFCURVE", "138 5 CURVE SMOOTH", "104 -4 OFFCURVE", "80 -17 OFFCURVE", "65 -33 CURVE", "64 -37 OFFCURVE", "66 -59 OFFCURVE", "73 -99 CURVE SMOOTH", "95 -241 LINE SMOOTH", "104 -296 OFFCURVE", "110 -337 OFFCURVE", "112 -362 CURVE SMOOTH", "116 -419 OFFCURVE", "112 -464 OFFCURVE", "101 -499 CURVE SMOOTH", "98 -507 OFFCURVE", "94 -511 OFFCURVE", "87 -510 CURVE SMOOTH", "78 -509 OFFCURVE", "75 -500 OFFCURVE", "77 -483 CURVE SMOOTH", "81 -442 OFFCURVE", "68 -342 OFFCURVE", "37 -184 CURVE", "27 -126 OFFCURVE", "28 -77 OFFCURVE", "40 -38 CURVE SMOOTH", "52 1 OFFCURVE", "66 31 OFFCURVE", "84 51 CURVE SMOOTH", "102 71 OFFCURVE", "126 87 OFFCURVE", "153 100 CURVE", "151 101 OFFCURVE", "147 102 OFFCURVE", "141 104 CURVE SMOOTH", "135 106 OFFCURVE", "129 108 OFFCURVE", "123 111 CURVE SMOOTH", "117 114 OFFCURVE", "116 120 OFFCURVE", "119 128 CURVE SMOOTH" ); } ); width = 203; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "103 104 OFFCURVE", "99 116 OFFCURVE", "105 134 CURVE SMOOTH", "119 173 OFFCURVE", "128 195 OFFCURVE", "133 201 CURVE SMOOTH", "138 207 OFFCURVE", "142 210 OFFCURVE", "144 212 CURVE SMOOTH", "155 221 OFFCURVE", "174 220 OFFCURVE", "203 211 CURVE SMOOTH", "264 191 OFFCURVE", "317 164 OFFCURVE", "364 129 CURVE SMOOTH", "381 116 OFFCURVE", "385 99 OFFCURVE", "378 77 CURVE SMOOTH", "368 47 OFFCURVE", "362 30 OFFCURVE", "361 26 CURVE SMOOTH", "353 7 OFFCURVE", "342 -2 OFFCURVE", "326 -1 CURVE", "260 7 OFFCURVE", "199 5 OFFCURVE", "142 -9 CURVE SMOOTH", "106 -18 OFFCURVE", "82 -28 OFFCURVE", "72 -39 CURVE", "73 -49 OFFCURVE", "80 -101 OFFCURVE", "96 -195 CURVE SMOOTH", "112 -289 OFFCURVE", "121 -344 OFFCURVE", "122 -361 CURVE SMOOTH", "125 -407 OFFCURVE", "119 -454 OFFCURVE", "107 -503 CURVE SMOOTH", "103 -517 OFFCURVE", "96 -523 OFFCURVE", "85 -521 CURVE SMOOTH", "74 -519 OFFCURVE", "71 -502 OFFCURVE", "73 -472 CURVE SMOOTH", "75 -442 OFFCURVE", "60 -347 OFFCURVE", "28 -187 CURVE SMOOTH", "18 -134 OFFCURVE", "19 -84 OFFCURVE", "32 -38 CURVE SMOOTH", "45 8 OFFCURVE", "59 39 OFFCURVE", "73 56 CURVE SMOOTH", "87 73 OFFCURVE", "101 86 OFFCURVE", "118 97 CURVE" ); } ); width = 203; } ); }, { glyphname = aMem.medi.MemAlfFina; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = exit; position = "{0, -102}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "8 -9 OFFCURVE", "19 20 OFFCURVE", "37 47 CURVE SMOOTH", "55 74 OFFCURVE", "78 88 OFFCURVE", "105 90 CURVE", "122 91 OFFCURVE", "131 71 OFFCURVE", "131 31 CURVE SMOOTH", "131 12 OFFCURVE", "122 2 OFFCURVE", "105 0 CURVE SMOOTH", "64 -4 OFFCURVE", "41 -21 OFFCURVE", "35 -50 CURVE SMOOTH", "35 -52 OFFCURVE", "36 -55 OFFCURVE", "38 -58 CURVE", "61 -84 OFFCURVE", "98 -105 OFFCURVE", "152 -121 CURVE SMOOTH", "163 -124 OFFCURVE", "168 -131 OFFCURVE", "167 -140 CURVE SMOOTH", "155 -223 LINE SMOOTH", "152 -242 OFFCURVE", "122 -236 OFFCURVE", "65 -206 CURVE SMOOTH", "8 -176 OFFCURVE", "-31 -140 OFFCURVE", "-52 -100 CURVE", "-63 -79 OFFCURVE", "-61 -62 OFFCURVE", "-46 -50 CURVE SMOOTH", "-31 -38 OFFCURVE", "-16 -36 OFFCURVE", "2 -46 CURVE", "4 -49 OFFCURVE", "5 -46 OFFCURVE", "6 -38 CURVE SMOOTH" ); } ); width = 105; }, { anchors = ( { name = TashkilAbove; position = "{54, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = exit; position = "{0, -102}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-3 2 OFFCURVE", "9 31 OFFCURVE", "28 59 CURVE SMOOTH", "47 87 OFFCURVE", "73 102 OFFCURVE", "105 104 CURVE", "132 105 OFFCURVE", "146 80 OFFCURVE", "146 31 CURVE SMOOTH", "146 10 OFFCURVE", "138 -4 OFFCURVE", "122 -11 CURVE SMOOTH", "117 -13 OFFCURVE", "112 -14 OFFCURVE", "107 -15 CURVE SMOOTH", "75 -19 OFFCURVE", "56 -30 OFFCURVE", "50 -50 CURVE", "72 -73 OFFCURVE", "107 -92 OFFCURVE", "156 -107 CURVE SMOOTH", "167 -111 OFFCURVE", "175 -116 OFFCURVE", "179 -124 CURVE", "182 -130 OFFCURVE", "182 -136 OFFCURVE", "181 -142 CURVE SMOOTH", "170 -225 LINE", "165 -253 OFFCURVE", "140 -257 OFFCURVE", "96 -238 CURVE SMOOTH", "16 -203 OFFCURVE", "-37 -159 OFFCURVE", "-65 -107 CURVE", "-79 -79 OFFCURVE", "-75 -57 OFFCURVE", "-55 -39 CURVE", "-40 -27 OFFCURVE", "-24 -22 OFFCURVE", "-7 -26 CURVE" ); } ); width = 105; } ); }, { glyphname = aBaa.medi.BaaMemAlfFina; layers = ( { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = DigitBelow; position = "{142, -293}"; }, { name = DotAbove; position = "{98, 391}"; }, { name = DotBelow; position = "{142, -293}"; }, { name = HamzaAbove; position = "{98, 391}"; }, { name = HamzaBelow; position = "{142, -293}"; }, { name = RingBelow; position = "{89, 122}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; }, { name = TwoDotsAbove; position = "{44, 391}"; }, { name = TwoDotsBelow; position = "{88, -293}"; }, { name = VAbove; position = "{98, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-42 38 OFFCURVE", "-41 53 OFFCURVE", "-31 79 CURVE SMOOTH", "-4 144 OFFCURVE", "50 177 OFFCURVE", "131 177 CURVE SMOOTH", "144 177 OFFCURVE", "157 167 OFFCURVE", "169 146 CURVE SMOOTH", "188 111 OFFCURVE", "211 93 OFFCURVE", "236 91 CURVE SMOOTH", "253 90 OFFCURVE", "260 72 OFFCURVE", "260 39 CURVE SMOOTH", "260 13 OFFCURVE", "252 0 OFFCURVE", "236 0 CURVE SMOOTH", "194 0 OFFCURVE", "157 25 OFFCURVE", "125 76 CURVE SMOOTH", "113 94 OFFCURVE", "81 93 OFFCURVE", "28 74 CURVE SMOOTH", "4 65 OFFCURVE", "-13 53 OFFCURVE", "-24 38 CURVE SMOOTH", "-28 31 OFFCURVE", "-31 29 OFFCURVE", "-35 32 CURVE SMOOTH" ); } ); width = 235; }, { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = DigitBelow; position = "{142, -293}"; }, { name = DotAbove; position = "{98, 391}"; }, { name = DotBelow; position = "{142, -293}"; }, { name = HamzaAbove; position = "{98, 391}"; }, { name = HamzaBelow; position = "{142, -293}"; }, { name = RingBelow; position = "{89, 122}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; }, { name = TwoDotsAbove; position = "{44, 391}"; }, { name = TwoDotsBelow; position = "{88, -293}"; }, { name = VAbove; position = "{98, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-14 156 OFFCURVE", "44 192 OFFCURVE", "131 192 CURVE SMOOTH", "150 192 OFFCURVE", "167 178 OFFCURVE", "183 150 CURVE SMOOTH", "199 122 OFFCURVE", "217 107 OFFCURVE", "237 105 CURVE", "263 103 OFFCURVE", "275 83 OFFCURVE", "275 44 CURVE SMOOTH", "275 5 OFFCURVE", "262 -15 OFFCURVE", "236 -15 CURVE", "188 -15 OFFCURVE", "147 13 OFFCURVE", "112 68 CURVE SMOOTH", "105 79 OFFCURVE", "78 76 OFFCURVE", "33 60 CURVE SMOOTH", "13 52 OFFCURVE", "-3 42 OFFCURVE", "-12 30 CURVE", "-21 15 OFFCURVE", "-32 13 OFFCURVE", "-45 22 CURVE SMOOTH", "-58 31 OFFCURVE", "-57 52 OFFCURVE", "-44 85 CURVE" ); } ); width = 235; } ); }, { glyphname = aMem.medi.BaaMemAlfFina; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{10, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "74 -88 OFFCURVE", "106 -107 OFFCURVE", "152 -121 CURVE SMOOTH", "163 -124 OFFCURVE", "168 -131 OFFCURVE", "167 -140 CURVE SMOOTH", "155 -223 LINE SMOOTH", "152 -242 OFFCURVE", "122 -236 OFFCURVE", "65 -206 CURVE SMOOTH", "8 -176 OFFCURVE", "-31 -140 OFFCURVE", "-52 -100 CURVE SMOOTH", "-63 -79 OFFCURVE", "-61 -62 OFFCURVE", "-46 -50 CURVE SMOOTH", "-31 -38 OFFCURVE", "-16 -36 OFFCURVE", "2 -46 CURVE", "0 -40 OFFCURVE", "-1 -27 OFFCURVE", "0 -7 CURVE SMOOTH", "2 23 OFFCURVE", "8 51 OFFCURVE", "18 77 CURVE", "21 86 OFFCURVE", "22 83 OFFCURVE", "23 70 CURVE SMOOTH", "23 51 OFFCURVE", "24 41 OFFCURVE", "24 38 CURVE SMOOTH", "28 -10 OFFCURVE", "38 -43 OFFCURVE", "55 -64 CURVE SMOOTH" ); } ); width = 48; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{10, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "167 -111 OFFCURVE", "175 -116 OFFCURVE", "179 -124 CURVE", "182 -130 OFFCURVE", "182 -136 OFFCURVE", "181 -142 CURVE SMOOTH", "170 -225 LINE", "165 -253 OFFCURVE", "140 -257 OFFCURVE", "96 -238 CURVE SMOOTH", "16 -203 OFFCURVE", "-37 -159 OFFCURVE", "-65 -107 CURVE", "-79 -79 OFFCURVE", "-75 -57 OFFCURVE", "-55 -39 CURVE", "-42 -29 OFFCURVE", "-30 -24 OFFCURVE", "-15 -25 CURVE", "-15 13 OFFCURVE", "-8 48 OFFCURVE", "4 81 CURVE SMOOTH", "4 81 OFFCURVE", "4 82 OFFCURVE", "4 83 CURVE SMOOTH", "5 90 OFFCURVE", "9 94 OFFCURVE", "17 96 CURVE SMOOTH", "25 98 OFFCURVE", "31 97 OFFCURVE", "34 93 CURVE SMOOTH", "37 89 OFFCURVE", "39 82 OFFCURVE", "38 72 CURVE", "38 71 LINE", "39 9 OFFCURVE", "48 -33 OFFCURVE", "66 -55 CURVE SMOOTH", "84 -77 OFFCURVE", "113 -94 OFFCURVE", "156 -107 CURVE SMOOTH" ); } ); width = 48; } ); }, { glyphname = aMem.medi.AlfPostTooth; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aMem.medi.BaaMemAlfFina; }, { name = aBaa.medi.BaaMemAlfFina; transform = "{1, 0, 0, 1, 49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aMem.medi.BaaMemAlfFina; }, { name = aBaa.medi.BaaMemAlfFina; transform = "{1, 0, 0, 1, 49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); }, { glyphname = aAlf.fina.MemAlfFina; layers = ( { anchors = ( { name = DigitAbove; position = "{-24, 610}"; }, { name = HamzaAbove; position = "{49, 732}"; }, { name = HamzaBelow; position = "{132, -188}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = entry; position = "{194, -102}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "126 -74 OFFCURVE", "121 -57 OFFCURVE", "117 -34 CURVE SMOOTH", "113 -11 OFFCURVE", "107 65 OFFCURVE", "98 193 CURVE SMOOTH", "82 413 OFFCURVE", "64 561 OFFCURVE", "42 637 CURVE SMOOTH", "40 644 OFFCURVE", "40 651 OFFCURVE", "42 655 CURVE SMOOTH", "69 704 LINE SMOOTH", "74 712 OFFCURVE", "77 711 OFFCURVE", "80 702 CURVE SMOOTH", "95 660 OFFCURVE", "109 573 OFFCURVE", "121 442 CURVE SMOOTH", "133 311 OFFCURVE", "142 215 OFFCURVE", "146 152 CURVE SMOOTH", "153 46 OFFCURVE", "170 -21 OFFCURVE", "199 -48 CURVE SMOOTH", "228 -75 OFFCURVE", "235 -98 OFFCURVE", "219 -115 CURVE SMOOTH", "192 -143 OFFCURVE", "163 -133 OFFCURVE", "132 -83 CURVE SMOOTH" ); } ); width = 194; }, { anchors = ( { name = DigitAbove; position = "{-24, 610}"; }, { name = HamzaAbove; position = "{49, 732}"; }, { name = HamzaBelow; position = "{132, -188}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = entry; position = "{194, -102}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "123 -96 OFFCURVE", "120 -91 OFFCURVE", "116 -84 CURVE SMOOTH", "112 -77 OFFCURVE", "107 -60 OFFCURVE", "103 -36 CURVE SMOOTH", "99 -12 OFFCURVE", "90 86 OFFCURVE", "78 260 CURVE SMOOTH", "66 434 OFFCURVE", "48 558 OFFCURVE", "27 633 CURVE SMOOTH", "24 644 OFFCURVE", "25 654 OFFCURVE", "29 662 CURVE SMOOTH", "56 711 LINE", "60 717 OFFCURVE", "65 721 OFFCURVE", "69 723 CURVE SMOOTH", "81 727 OFFCURVE", "89 722 OFFCURVE", "94 707 CURVE SMOOTH", "109 663 OFFCURVE", "124 575 OFFCURVE", "136 444 CURVE SMOOTH", "148 313 OFFCURVE", "156 216 OFFCURVE", "160 153 CURVE SMOOTH", "167 51 OFFCURVE", "183 -13 OFFCURVE", "209 -38 CURVE", "245 -72 OFFCURVE", "251 -101 OFFCURVE", "229 -125 CURVE", "195 -160 OFFCURVE", "161 -151 OFFCURVE", "125 -99 CURVE SMOOTH" ); } ); width = 194; } ); }, { glyphname = aBaa.init.BaaHehInit; layers = ( { anchors = ( { name = DigitAbove; position = "{226, 439}"; }, { name = DigitBelow; position = "{250, -195}"; }, { name = DotAbove; position = "{226, 439}"; }, { name = DotBelow; position = "{250, -195}"; }, { name = DotBelowAlt; position = "{250, -366}"; }, { name = HamzaAbove; position = "{226, 439}"; }, { name = HamzaBelow; position = "{250, -117}"; }, { name = RingBelow; position = "{176, 127}"; }, { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; }, { name = TwoDotsAbove; position = "{172, 439}"; }, { name = TwoDotsBelow; position = "{197, -117}"; }, { name = TwoDotsBelowAlt; position = "{197, -366}"; }, { name = VAbove; position = "{226, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "250 93 OFFCURVE", "225 107 OFFCURVE", "190 104 CURVE SMOOTH", "152 100 OFFCURVE", "116 90 OFFCURVE", "82 72 CURVE SMOOTH", "51 56 OFFCURVE", "24 24 OFFCURVE", "0 -24 CURVE SMOOTH", "-7 -36 OFFCURVE", "-13 -40 OFFCURVE", "-19 -35 CURVE SMOOTH", "-25 -30 OFFCURVE", "-26 -24 OFFCURVE", "-21 -15 CURVE SMOOTH", "-10 7 OFFCURVE", "-4 21 OFFCURVE", "0 26 CURVE SMOOTH", "38 87 OFFCURVE", "81 129 OFFCURVE", "128 155 CURVE SMOOTH", "189 188 OFFCURVE", "242 196 OFFCURVE", "287 178 CURVE SMOOTH", "310 169 OFFCURVE", "321 155 OFFCURVE", "322 135 CURVE SMOOTH", "323 109 OFFCURVE", "313 86 OFFCURVE", "292 65 CURVE SMOOTH", "279 53 OFFCURVE", "271 51 OFFCURVE", "265 62 CURVE SMOOTH" ); } ); width = 384; }, { anchors = ( { name = DigitAbove; position = "{226, 439}"; }, { name = DigitBelow; position = "{250, -195}"; }, { name = DotAbove; position = "{226, 439}"; }, { name = DotBelow; position = "{250, -195}"; }, { name = DotBelowAlt; position = "{250, -366}"; }, { name = HamzaAbove; position = "{226, 439}"; }, { name = HamzaBelow; position = "{250, -117}"; }, { name = RingBelow; position = "{176, 127}"; }, { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; }, { name = TwoDotsAbove; position = "{172, 439}"; }, { name = TwoDotsBelow; position = "{197, -117}"; }, { name = TwoDotsBelowAlt; position = "{197, -366}"; }, { name = VAbove; position = "{226, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "239 81 OFFCURVE", "219 92 OFFCURVE", "191 89 CURVE SMOOTH", "152 85 OFFCURVE", "118 75 OFFCURVE", "88 58 CURVE SMOOTH", "58 41 OFFCURVE", "31 12 OFFCURVE", "10 -31 CURVE SMOOTH", "0 -51 OFFCURVE", "-10 -56 OFFCURVE", "-22 -49 CURVE", "-33 -41 OFFCURVE", "-33 -26 OFFCURVE", "-22 -4 CURVE SMOOTH", "17 76 OFFCURVE", "66 133 OFFCURVE", "127 168 CURVE SMOOTH", "188 203 OFFCURVE", "243 211 OFFCURVE", "292 191 CURVE SMOOTH", "321 180 OFFCURVE", "336 160 OFFCURVE", "337 132 CURVE SMOOTH", "338 104 OFFCURVE", "326 77 OFFCURVE", "302 54 CURVE", "285 38 OFFCURVE", "270 36 OFFCURVE", "258 48 CURVE SMOOTH", "255 51 OFFCURVE", "253 53 OFFCURVE", "251 56 CURVE SMOOTH" ); } ); width = 384; } ); }, { glyphname = aBaa.medi.BaaHehMedi; layers = ( { anchors = ( { name = DigitAbove; position = "{173, 439}"; }, { name = DigitBelow; position = "{188, -188}"; }, { name = DotAbove; position = "{173, 439}"; }, { name = DotBelow; position = "{188, -188}"; }, { name = HamzaAbove; position = "{173, 439}"; }, { name = HamzaBelow; position = "{188, -188}"; }, { name = RingBelow; position = "{156, 107}"; }, { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; }, { name = TwoDotsAbove; position = "{119, 439}"; }, { name = TwoDotsBelow; position = "{110, -139}"; }, { name = VAbove; position = "{173, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "10 4 OFFCURVE", "4 -9 OFFCURVE", "-2 -27 CURVE SMOOTH", "-5 -37 OFFCURVE", "-11 -40 OFFCURVE", "-19 -36 CURVE SMOOTH", "-27 -32 OFFCURVE", "-28 -23 OFFCURVE", "-21 -11 CURVE", "11 51 OFFCURVE", "47 97 OFFCURVE", "89 126 CURVE SMOOTH", "131 155 OFFCURVE", "172 167 OFFCURVE", "214 160 CURVE SMOOTH", "227 157 OFFCURVE", "242 146 OFFCURVE", "258 125 CURVE SMOOTH", "274 104 OFFCURVE", "292 92 OFFCURVE", "312 90 CURVE SMOOTH", "320 89 OFFCURVE", "324 81 OFFCURVE", "325 66 CURVE SMOOTH", "326 51 OFFCURVE", "326 36 OFFCURVE", "323 21 CURVE SMOOTH", "320 6 OFFCURVE", "317 -1 OFFCURVE", "312 0 CURVE", "282 2 OFFCURVE", "253 16 OFFCURVE", "223 45 CURVE SMOOTH", "204 64 OFFCURVE", "188 74 OFFCURVE", "178 75 CURVE SMOOTH", "111 82 OFFCURVE", "57 62 OFFCURVE", "17 13 CURVE SMOOTH" ); } ); width = 311; }, { anchors = ( { name = DigitAbove; position = "{173, 439}"; }, { name = DigitBelow; position = "{188, -188}"; }, { name = DotAbove; position = "{173, 439}"; }, { name = DotBelow; position = "{188, -188}"; }, { name = HamzaAbove; position = "{173, 439}"; }, { name = HamzaBelow; position = "{188, -188}"; }, { name = RingBelow; position = "{156, 107}"; }, { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; }, { name = TwoDotsAbove; position = "{119, 439}"; }, { name = TwoDotsBelow; position = "{110, -139}"; }, { name = VAbove; position = "{173, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "22 -5 OFFCURVE", "17 -13 OFFCURVE", "13 -22 CURVE SMOOTH", "9 -31 OFFCURVE", "7 -37 OFFCURVE", "6 -39 CURVE SMOOTH", "0 -49 OFFCURVE", "-8 -54 OFFCURVE", "-17 -52 CURVE", "-39 -49 OFFCURVE", "-42 -32 OFFCURVE", "-24 -4 CURVE", "9 60 OFFCURVE", "45 107 OFFCURVE", "86 138 CURVE SMOOTH", "127 169 OFFCURVE", "171 181 OFFCURVE", "217 174 CURVE", "234 170 OFFCURVE", "251 158 OFFCURVE", "267 138 CURVE SMOOTH", "283 118 OFFCURVE", "299 106 OFFCURVE", "314 104 CURVE SMOOTH", "329 102 OFFCURVE", "337 91 OFFCURVE", "339 72 CURVE SMOOTH", "341 53 OFFCURVE", "340 35 OFFCURVE", "337 19 CURVE SMOOTH", "334 3 OFFCURVE", "330 -7 OFFCURVE", "325 -10 CURVE SMOOTH", "320 -13 OFFCURVE", "315 -15 OFFCURVE", "310 -15 CURVE SMOOTH", "277 -13 OFFCURVE", "244 4 OFFCURVE", "212 35 CURVE SMOOTH", "196 51 OFFCURVE", "184 59 OFFCURVE", "176 61 CURVE", "113 67 OFFCURVE", "63 47 OFFCURVE", "28 3 CURVE SMOOTH" ); } ); width = 311; } ); }, { glyphname = aHeh.medi.BaaHehMedi; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "127 -54 OFFCURVE", "126 -129 OFFCURVE", "154 -214 CURVE SMOOTH", "156 -220 OFFCURVE", "156 -224 OFFCURVE", "154 -227 CURVE SMOOTH", "118 -278 LINE SMOOTH", "113 -285 OFFCURVE", "110 -286 OFFCURVE", "107 -283 CURVE SMOOTH", "49 -213 OFFCURVE", "39 -108 OFFCURVE", "75 32 CURVE", "53 11 OFFCURVE", "27 0 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-11 7 OFFCURVE", "-15 21 CURVE SMOOTH", "-20 36 OFFCURVE", "-21 51 OFFCURVE", "-22 66 CURVE SMOOTH", "-23 81 OFFCURVE", "-16 89 OFFCURVE", "0 90 CURVE SMOOTH", "56 93 OFFCURVE", "106 132 OFFCURVE", "149 206 CURVE SMOOTH", "155 216 OFFCURVE", "162 219 OFFCURVE", "168 215 CURVE SMOOTH", "174 211 OFFCURVE", "175 206 OFFCURVE", "172 200 CURVE SMOOTH", "148 159 OFFCURVE", "127 115 OFFCURVE", "110 68 CURVE SMOOTH", "86 1 OFFCURVE", "79 -49 OFFCURVE", "90 -83 CURVE SMOOTH", "91 -86 OFFCURVE", "91 -86 OFFCURVE", "92 -83 CURVE SMOOTH", "108 -45 OFFCURVE", "126 -9 OFFCURVE", "147 24 CURVE SMOOTH", "155 38 OFFCURVE", "161 43 OFFCURVE", "166 38 CURVE SMOOTH", "171 34 OFFCURVE", "168 24 OFFCURVE", "160 8 CURVE SMOOTH" ); } ); width = 147; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "141 -52 OFFCURVE", "139 -121 OFFCURVE", "167 -209 CURVE SMOOTH", "170 -220 OFFCURVE", "170 -229 OFFCURVE", "166 -235 CURVE SMOOTH", "125 -293 LINE SMOOTH", "116 -305 OFFCURVE", "106 -305 OFFCURVE", "96 -293 CURVE SMOOTH", "40 -227 OFFCURVE", "26 -129 OFFCURVE", "52 -2 CURVE", "9 -23 OFFCURVE", "-18 -20 OFFCURVE", "-27 11 CURVE SMOOTH", "-33 31 OFFCURVE", "-36 49 OFFCURVE", "-37 66 CURVE SMOOTH", "-38 83 OFFCURVE", "-31 94 OFFCURVE", "-17 101 CURVE SMOOTH", "-12 103 OFFCURVE", "-7 104 OFFCURVE", "-1 105 CURVE SMOOTH", "48 108 OFFCURVE", "96 143 OFFCURVE", "142 211 CURVE SMOOTH", "153 228 OFFCURVE", "164 234 OFFCURVE", "176 226 CURVE SMOOTH", "188 218 OFFCURVE", "187 204 OFFCURVE", "175 183 CURVE SMOOTH", "150 139 OFFCURVE", "130 98 OFFCURVE", "115 61 CURVE SMOOTH", "100 24 OFFCURVE", "92 -20 OFFCURVE", "91 -69 CURVE", "109 -25 OFFCURVE", "130 14 OFFCURVE", "155 46 CURVE SMOOTH", "163 57 OFFCURVE", "172 57 OFFCURVE", "180 48 CURVE SMOOTH", "188 39 OFFCURVE", "186 23 OFFCURVE", "173 1 CURVE SMOOTH" ); } ); width = 147; } ); }, { glyphname = aHeh.medi.PostTooth; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; transform = "{1, 0, 0, 1, 147, 0}"; }, { name = aHeh.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; transform = "{1, 0, 0, 1, 147, 0}"; }, { name = aHeh.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 460; } ); }, { glyphname = aLam.medi.KafLamMemFina; layers = ( { anchors = ( { name = DotAbove; position = "{101, 853}"; }, { name = Stroke; position = "{104, 599}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; }, { name = TwoDotsAbove; position = "{42, 853}"; }, { name = TwoDotsBelow; position = "{161, -337}"; }, { name = VAbove; position = "{101, 804}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "113 127 OFFCURVE", "88 82 OFFCURVE", "49 50 CURVE SMOOTH", "30 35 OFFCURVE", "8 33 OFFCURVE", "-19 41 CURVE SMOOTH", "-34 46 OFFCURVE", "-42 51 OFFCURVE", "-41 57 CURVE SMOOTH", "-41 60 OFFCURVE", "-37 62 OFFCURVE", "-31 64 CURVE SMOOTH", "63 90 OFFCURVE", "108 159 OFFCURVE", "104 269 CURVE SMOOTH", "103 285 OFFCURVE", "100 337 OFFCURVE", "94 426 CURVE SMOOTH", "84 590 OFFCURVE", "78 676 OFFCURVE", "78 684 CURVE SMOOTH", "78 692 OFFCURVE", "79 699 OFFCURVE", "83 706 CURVE SMOOTH", "104 742 LINE SMOOTH", "112 756 OFFCURVE", "118 756 OFFCURVE", "119 742 CURVE SMOOTH", "144 435 LINE SMOOTH", "161 226 OFFCURVE", "196 113 OFFCURVE", "249 94 CURVE SMOOTH", "267 87 OFFCURVE", "278 76 OFFCURVE", "282 60 CURVE SMOOTH", "287 42 OFFCURVE", "285 25 OFFCURVE", "278 10 CURVE SMOOTH", "271 -5 OFFCURVE", "261 -11 OFFCURVE", "248 -10 CURVE SMOOTH", "180 -3 OFFCURVE", "138 61 OFFCURVE", "124 183 CURVE" ); } ); width = 249; }, { anchors = ( { name = DotAbove; position = "{101, 853}"; }, { name = Stroke; position = "{104, 599}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; }, { name = TwoDotsAbove; position = "{42, 853}"; }, { name = TwoDotsBelow; position = "{161, -337}"; }, { name = VAbove; position = "{101, 804}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "115 118 OFFCURVE", "93 73 OFFCURVE", "57 41 CURVE SMOOTH", "36 23 OFFCURVE", "11 19 OFFCURVE", "-22 29 CURVE SMOOTH", "-43 35 OFFCURVE", "-53 44 OFFCURVE", "-53 55 CURVE SMOOTH", "-53 65 OFFCURVE", "-47 72 OFFCURVE", "-35 76 CURVE SMOOTH", "43 97 OFFCURVE", "86 147 OFFCURVE", "93 225 CURVE SMOOTH", "94 239 OFFCURVE", "95 254 OFFCURVE", "94 269 CURVE SMOOTH", "93 285 OFFCURVE", "90 337 OFFCURVE", "84 425 CURVE SMOOTH", "74 589 OFFCURVE", "68 675 OFFCURVE", "68 683 CURVE SMOOTH", "68 694 OFFCURVE", "71 703 OFFCURVE", "76 712 CURVE SMOOTH", "103 757 LINE SMOOTH", "117 780 OFFCURVE", "125 776 OFFCURVE", "128 743 CURVE SMOOTH", "153 436 LINE SMOOTH", "170 234 OFFCURVE", "203 123 OFFCURVE", "253 105 CURVE SMOOTH", "275 97 OFFCURVE", "288 82 OFFCURVE", "294 62 CURVE SMOOTH", "299 41 OFFCURVE", "298 22 OFFCURVE", "290 4 CURVE SMOOTH", "280 -17 OFFCURVE", "265 -25 OFFCURVE", "247 -22 CURVE SMOOTH", "176 -12 OFFCURVE", "135 54 OFFCURVE", "125 177 CURVE" ); } ); width = 249; } ); }, { glyphname = aLam.init.LamLamInit; layers = ( { anchors = ( { name = DotAbove; position = "{37, 762}"; }, { name = Stroke; position = "{50, 481}"; }, { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{100, -327}"; }, { name = TwoDotsAbove; position = "{-22, 762}"; }, { name = TwoDotsBelow; position = "{22, -73}"; }, { name = VAbove; position = "{37, 713}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "31 653 LINE SMOOTH", "33 660 OFFCURVE", "37 662 OFFCURVE", "42 662 CURVE SMOOTH", "47 662 OFFCURVE", "50 658 OFFCURVE", "52 651 CURVE SMOOTH", "64 618 OFFCURVE", "77 595 OFFCURVE", "92 580 CURVE SMOOTH", "100 572 OFFCURVE", "94 555 OFFCURVE", "74 532 CURVE SMOOTH", "69 527 OFFCURVE", "67 522 OFFCURVE", "67 516 CURVE SMOOTH", "70 483 OFFCURVE", "74 438 OFFCURVE", "79 382 CURVE SMOOTH", "88 289 LINE SMOOTH", "96 203 OFFCURVE", "98 140 OFFCURVE", "92 101 CURVE SMOOTH", "82 28 OFFCURVE", "51 -12 OFFCURVE", "-1 -20 CURVE SMOOTH", "-12 -22 OFFCURVE", "-20 -6 OFFCURVE", "-25 29 CURVE SMOOTH", "-31 64 OFFCURVE", "-28 87 OFFCURVE", "-16 96 CURVE SMOOTH", "-13 98 OFFCURVE", "-9 100 OFFCURVE", "-4 99 CURVE SMOOTH", "22 94 OFFCURVE", "41 96 OFFCURVE", "53 103 CURVE", "56 137 OFFCURVE", "52 216 OFFCURVE", "39 339 CURVE SMOOTH", "26 462 OFFCURVE", "18 539 OFFCURVE", "15 570 CURVE SMOOTH", "12 610 LINE SMOOTH" ); } ); width = 158; }, { anchors = ( { name = DotAbove; position = "{27, 762}"; }, { name = Stroke; position = "{40, 481}"; }, { name = TashkilAbove; position = "{100, 801}"; }, { name = TashkilBelow; position = "{90, -327}"; }, { name = TwoDotsAbove; position = "{-32, 762}"; }, { name = TwoDotsBelow; position = "{12, -73}"; }, { name = VAbove; position = "{27, 713}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "20 657 LINE SMOOTH", "25 669 OFFCURVE", "33 675 OFFCURVE", "43 674 CURVE", "53 673 OFFCURVE", "60 666 OFFCURVE", "64 655 CURVE SMOOTH", "75 624 OFFCURVE", "88 602 OFFCURVE", "101 588 CURVE SMOOTH", "114 574 OFFCURVE", "108 552 OFFCURVE", "83 524 CURVE SMOOTH", "81 521 OFFCURVE", "80 519 OFFCURVE", "80 516 CURVE SMOOTH", "83 483 OFFCURVE", "86 439 OFFCURVE", "91 383 CURVE SMOOTH", "100 290 LINE SMOOTH", "108 203 OFFCURVE", "110 139 OFFCURVE", "104 99 CURVE SMOOTH", "93 26 OFFCURVE", "64 -17 OFFCURVE", "16 -29 CURVE SMOOTH", "11 -30 OFFCURVE", "5 -31 OFFCURVE", "0 -32 CURVE SMOOTH", "-15 -34 OFFCURVE", "-26 -24 OFFCURVE", "-32 0 CURVE SMOOTH", "-34 7 OFFCURVE", "-35 16 OFFCURVE", "-37 27 CURVE SMOOTH", "-43 68 OFFCURVE", "-39 94 OFFCURVE", "-23 106 CURVE SMOOTH", "-17 111 OFFCURVE", "-10 112 OFFCURVE", "-3 111 CURVE SMOOTH", "16 108 OFFCURVE", "32 107 OFFCURVE", "42 111 CURVE", "44 148 OFFCURVE", "38 224 OFFCURVE", "26 337 CURVE SMOOTH", "13 460 OFFCURVE", "5 537 OFFCURVE", "2 569 CURVE", "0 609 LINE SMOOTH", "0 611 OFFCURVE", "0 613 OFFCURVE", "1 615 CURVE SMOOTH" ); } ); width = 153; } ); }, { glyphname = aLam.medi.LamLamInit; layers = ( { anchors = ( { name = DotAbove; position = "{65, 763}"; }, { name = Stroke; position = "{86, 516}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; }, { name = TwoDotsAbove; position = "{7, 763}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{65, 714}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "120 346 OFFCURVE", "136 224 OFFCURVE", "153 177 CURVE SMOOTH", "170 130 OFFCURVE", "194 103 OFFCURVE", "228 96 CURVE SMOOTH", "262 89 OFFCURVE", "271 61 OFFCURVE", "256 12 CURVE SMOOTH", "250 -6 OFFCURVE", "241 -16 OFFCURVE", "229 -18 CURVE SMOOTH", "205 -23 OFFCURVE", "181 -14 OFFCURVE", "159 7 CURVE SMOOTH", "137 28 OFFCURVE", "117 69 OFFCURVE", "100 129 CURVE", "80 43 OFFCURVE", "47 1 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-12 9 OFFCURVE", "-18 28 CURVE", "-27 64 OFFCURVE", "-21 85 OFFCURVE", "0 90 CURVE SMOOTH", "35 99 OFFCURVE", "57 110 OFFCURVE", "67 125 CURVE SMOOTH", "77 140 OFFCURVE", "83 160 OFFCURVE", "85 185 CURVE", "48 571 LINE SMOOTH", "46 588 OFFCURVE", "48 600 OFFCURVE", "53 608 CURVE SMOOTH", "77 651 LINE SMOOTH", "81 658 OFFCURVE", "85 660 OFFCURVE", "89 659 CURVE SMOOTH", "93 658 OFFCURVE", "95 654 OFFCURVE", "95 649 CURVE SMOOTH", "95 644 OFFCURVE", "99 609 OFFCURVE", "104 545 CURVE SMOOTH" ); } ); width = 221; }, { anchors = ( { name = DotAbove; position = "{65, 763}"; }, { name = Stroke; position = "{86, 516}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; }, { name = TwoDotsAbove; position = "{7, 763}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{65, 714}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "135 349 OFFCURVE", "150 228 OFFCURVE", "166 185 CURVE SMOOTH", "182 142 OFFCURVE", "203 116 OFFCURVE", "231 110 CURVE SMOOTH", "275 100 OFFCURVE", "288 66 OFFCURVE", "270 7 CURVE", "262 -16 OFFCURVE", "250 -28 OFFCURVE", "232 -32 CURVE", "203 -37 OFFCURVE", "175 -28 OFFCURVE", "149 -3 CURVE SMOOTH", "131 14 OFFCURVE", "115 41 OFFCURVE", "101 79 CURVE", "78 17 OFFCURVE", "44 -14 OFFCURVE", "0 -15 CURVE SMOOTH", "-15 -15 OFFCURVE", "-26 -2 OFFCURVE", "-32 24 CURVE SMOOTH", "-43 70 OFFCURVE", "-34 97 OFFCURVE", "-3 105 CURVE SMOOTH", "28 113 OFFCURVE", "47 122 OFFCURVE", "55 134 CURVE SMOOTH", "63 146 OFFCURVE", "68 163 OFFCURVE", "70 185 CURVE", "34 570 LINE SMOOTH", "32 590 OFFCURVE", "34 605 OFFCURVE", "40 615 CURVE SMOOTH", "64 658 LINE", "72 671 OFFCURVE", "83 676 OFFCURVE", "94 673 CURVE", "104 669 OFFCURVE", "108 664 OFFCURVE", "109 655 CURVE SMOOTH", "110 646 OFFCURVE", "114 610 OFFCURVE", "119 546 CURVE SMOOTH" ); } ); width = 221; } ); }, { glyphname = aLam.medi.LamLamAlfIsol; layers = ( { anchors = ( { name = DotAbove; position = "{55, 799}"; }, { name = Stroke; position = "{65, 511}"; }, { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; }, { name = TwoDotsAbove; position = "{-1, 760}"; }, { name = TwoDotsBelow; position = "{10, -73}"; }, { name = VAbove; position = "{55, 757}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "191 111 OFFCURVE", "203 102 OFFCURVE", "217 97 CURVE SMOOTH", "228 94 OFFCURVE", "236 87 OFFCURVE", "240 79 CURVE SMOOTH", "248 63 OFFCURVE", "248 39 OFFCURVE", "240 8 CURVE SMOOTH", "236 -9 OFFCURVE", "229 -18 OFFCURVE", "220 -18 CURVE SMOOTH", "179 -17 OFFCURVE", "146 12 OFFCURVE", "123 68 CURVE SMOOTH", "112 95 OFFCURVE", "93 188 OFFCURVE", "68 347 CURVE", "47 189 OFFCURVE", "1 78 OFFCURVE", "-70 14 CURVE SMOOTH", "-116 -27 OFFCURVE", "-197 -48 OFFCURVE", "-312 -48 CURVE SMOOTH", "-321 -48 OFFCURVE", "-324 -44 OFFCURVE", "-323 -37 CURVE SMOOTH", "-322 -33 OFFCURVE", "-320 -30 OFFCURVE", "-316 -29 CURVE SMOOTH", "-240 -8 OFFCURVE", "-176 20 OFFCURVE", "-125 56 CURVE SMOOTH", "-50 109 OFFCURVE", "-3 168 OFFCURVE", "18 235 CURVE SMOOTH", "43 316 OFFCURVE", "48 429 OFFCURVE", "34 573 CURVE SMOOTH", "32 589 OFFCURVE", "34 602 OFFCURVE", "39 610 CURVE SMOOTH", "63 653 LINE SMOOTH", "67 660 OFFCURVE", "71 662 OFFCURVE", "75 661 CURVE SMOOTH", "79 660 OFFCURVE", "81 655 OFFCURVE", "82 647 CURVE SMOOTH", "108 352 OFFCURVE", "141 179 OFFCURVE", "180 126 CURVE SMOOTH" ); } ); width = 221; }, { anchors = ( { name = DotAbove; position = "{55, 799}"; }, { name = Stroke; position = "{65, 511}"; }, { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; }, { name = TwoDotsAbove; position = "{-1, 760}"; }, { name = TwoDotsBelow; position = "{10, -73}"; }, { name = VAbove; position = "{55, 757}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "192 130 OFFCURVE", "206 116 OFFCURVE", "221 111 CURVE SMOOTH", "236 106 OFFCURVE", "247 98 OFFCURVE", "253 86 CURVE", "262 66 OFFCURVE", "263 38 OFFCURVE", "254 4 CURVE", "247 -20 OFFCURVE", "236 -32 OFFCURVE", "220 -33 CURVE", "172 -31 OFFCURVE", "135 1 OFFCURVE", "109 63 CURVE SMOOTH", "100 86 OFFCURVE", "85 151 OFFCURVE", "67 259 CURVE", "41 143 OFFCURVE", "0 57 OFFCURVE", "-60 3 CURVE", "-109 -41 OFFCURVE", "-193 -62 OFFCURVE", "-312 -62 CURVE SMOOTH", "-323 -62 OFFCURVE", "-330 -60 OFFCURVE", "-333 -53 CURVE SMOOTH", "-336 -46 OFFCURVE", "-338 -38 OFFCURVE", "-337 -31 CURVE SMOOTH", "-336 -24 OFFCURVE", "-330 -18 OFFCURVE", "-320 -15 CURVE", "-245 6 OFFCURVE", "-182 33 OFFCURVE", "-133 68 CURVE SMOOTH", "-61 119 OFFCURVE", "-16 176 OFFCURVE", "4 240 CURVE", "28 320 OFFCURVE", "34 430 OFFCURVE", "20 572 CURVE SMOOTH", "18 591 OFFCURVE", "20 606 OFFCURVE", "26 617 CURVE SMOOTH", "50 660 LINE", "58 673 OFFCURVE", "69 679 OFFCURVE", "80 675 CURVE", "90 671 OFFCURVE", "95 663 OFFCURVE", "96 649 CURVE SMOOTH", "119 388 OFFCURVE", "148 222 OFFCURVE", "181 152 CURVE SMOOTH" ); } ); width = 221; } ); }, { glyphname = aKaf.fina.LamKafIsol; layers = ( { anchors = ( { name = Dash; position = "{705, 658}"; }, { name = DotAbove; position = "{684, 769}"; }, { name = DotBelow; position = "{352, -110}"; }, { name = HamzaAbove; position = "{326, 284}"; }, { name = RingBelow; position = "{361, -2}"; }, { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; }, { name = TwoDotsAbove; position = "{596, 769}"; }, { name = TwoDotsBelow; position = "{298, -110}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "694 668 OFFCURVE", "699 665 OFFCURVE", "703 647 CURVE SMOOTH", "704 641 OFFCURVE", "718 517 OFFCURVE", "745 275 CURVE SMOOTH", "757 166 OFFCURVE", "788 107 OFFCURVE", "839 97 CURVE SMOOTH", "847 95 OFFCURVE", "853 84 OFFCURVE", "859 63 CURVE SMOOTH", "864 44 OFFCURVE", "866 28 OFFCURVE", "865 16 CURVE SMOOTH", "863 -6 OFFCURVE", "856 -17 OFFCURVE", "843 -18 CURVE SMOOTH", "781 -20 OFFCURVE", "738 39 OFFCURVE", "717 157 CURVE SMOOTH", "715 168 OFFCURVE", "713 167 OFFCURVE", "709 156 CURVE SMOOTH", "690 95 OFFCURVE", "667 57 OFFCURVE", "640 40 CURVE SMOOTH", "579 3 OFFCURVE", "504 -24 OFFCURVE", "415 -41 CURVE SMOOTH", "244 -73 OFFCURVE", "132 -51 OFFCURVE", "79 26 CURVE SMOOTH", "64 47 OFFCURVE", "59 82 OFFCURVE", "63 128 CURVE SMOOTH", "68 176 OFFCURVE", "80 219 OFFCURVE", "101 256 CURVE SMOOTH", "104 262 OFFCURVE", "108 265 OFFCURVE", "112 265 CURVE SMOOTH", "116 265 OFFCURVE", "120 263 OFFCURVE", "122 259 CURVE SMOOTH", "124 255 OFFCURVE", "125 251 OFFCURVE", "123 247 CURVE SMOOTH", "87 176 OFFCURVE", "87 127 OFFCURVE", "124 99 CURVE SMOOTH", "169 64 OFFCURVE", "232 48 OFFCURVE", "312 51 CURVE SMOOTH", "469 56 OFFCURVE", "584 86 OFFCURVE", "657 140 CURVE SMOOTH", "683 159 OFFCURVE", "693 192 OFFCURVE", "689 240 CURVE SMOOTH", "677 380 OFFCURVE", "667 493 OFFCURVE", "658 580 CURVE SMOOTH", "657 593 OFFCURVE", "657 601 OFFCURVE", "660 606 CURVE SMOOTH", "687 656 LINE SMOOTH" ); } ); width = 845; }, { anchors = ( { name = Dash; position = "{705, 658}"; }, { name = DotAbove; position = "{684, 769}"; }, { name = DotBelow; position = "{352, -110}"; }, { name = HamzaAbove; position = "{326, 284}"; }, { name = RingBelow; position = "{361, -2}"; }, { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; }, { name = TwoDotsAbove; position = "{596, 769}"; }, { name = TwoDotsBelow; position = "{298, -110}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "681 669 OFFCURVE", "686 674 OFFCURVE", "691 675 CURVE SMOOTH", "703 678 OFFCURVE", "710 670 OFFCURVE", "714 652 CURVE SMOOTH", "714 651 OFFCURVE", "715 650 OFFCURVE", "715 650 CURVE SMOOTH", "716 643 OFFCURVE", "730 519 OFFCURVE", "757 277 CURVE SMOOTH", "769 174 OFFCURVE", "796 118 OFFCURVE", "841 109 CURVE SMOOTH", "854 106 OFFCURVE", "864 95 OFFCURVE", "870 72 CURVE SMOOTH", "870 70 OFFCURVE", "871 69 OFFCURVE", "871 67 CURVE SMOOTH", "877 46 OFFCURVE", "878 29 OFFCURVE", "877 15 CURVE SMOOTH", "874 -14 OFFCURVE", "863 -29 OFFCURVE", "844 -30 CURVE", "780 -31 OFFCURVE", "736 21 OFFCURVE", "711 126 CURVE", "692 78 OFFCURVE", "671 46 OFFCURVE", "646 30 CURVE SMOOTH", "584 -8 OFFCURVE", "507 -36 OFFCURVE", "417 -53 CURVE", "241 -86 OFFCURVE", "125 -62 OFFCURVE", "69 19 CURVE", "53 43 OFFCURVE", "47 80 OFFCURVE", "51 129 CURVE", "56 179 OFFCURVE", "69 223 OFFCURVE", "90 262 CURVE", "96 272 OFFCURVE", "103 277 OFFCURVE", "112 277 CURVE", "121 277 OFFCURVE", "127 273 OFFCURVE", "132 265 CURVE", "136 257 OFFCURVE", "137 249 OFFCURVE", "133 241 CURVE SMOOTH", "100 176 OFFCURVE", "100 132 OFFCURVE", "131 108 CURVE SMOOTH", "174 75 OFFCURVE", "235 61 OFFCURVE", "312 63 CURVE SMOOTH", "467 68 OFFCURVE", "578 97 OFFCURVE", "649 149 CURVE", "671 166 OFFCURVE", "681 196 OFFCURVE", "677 239 CURVE SMOOTH", "665 379 OFFCURVE", "655 491 OFFCURVE", "646 578 CURVE SMOOTH", "645 594 OFFCURVE", "645 605 OFFCURVE", "649 612 CURVE SMOOTH", "676 662 LINE" ); } ); width = 845; } ); }, { glyphname = aLam.fina.LamLamIsol; layers = ( { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{472, 445}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "594 -25 OFFCURVE", "566 -11 OFFCURVE", "535 22 CURVE", "540 -133 OFFCURVE", "516 -235 OFFCURVE", "465 -282 CURVE SMOOTH", "410 -332 OFFCURVE", "340 -357 OFFCURVE", "256 -357 CURVE SMOOTH", "191 -357 OFFCURVE", "140 -338 OFFCURVE", "103 -298 CURVE SMOOTH", "67 -260 OFFCURVE", "53 -208 OFFCURVE", "64 -144 CURVE SMOOTH", "75 -80 OFFCURVE", "107 -15 OFFCURVE", "159 49 CURVE SMOOTH", "162 53 OFFCURVE", "165 55 OFFCURVE", "170 54 CURVE SMOOTH", "175 54 OFFCURVE", "178 51 OFFCURVE", "180 47 CURVE SMOOTH", "182 43 OFFCURVE", "180 38 OFFCURVE", "176 32 CURVE SMOOTH", "117 -49 OFFCURVE", "98 -114 OFFCURVE", "118 -164 CURVE SMOOTH", "142 -225 OFFCURVE", "201 -254 OFFCURVE", "294 -252 CURVE SMOOTH", "368 -250 OFFCURVE", "437 -222 OFFCURVE", "499 -164 CURVE", "446 520 LINE SMOOTH", "444 541 OFFCURVE", "445 557 OFFCURVE", "450 569 CURVE SMOOTH", "468 620 LINE SMOOTH", "479 650 OFFCURVE", "486 645 OFFCURVE", "489 607 CURVE SMOOTH", "514 345 LINE SMOOTH", "528 191 OFFCURVE", "562 109 OFFCURVE", "615 97 CURVE SMOOTH", "645 90 OFFCURVE", "656 70 OFFCURVE", "650 36 CURVE SMOOTH", "644 4 OFFCURVE", "635 -14 OFFCURVE", "620 -18 CURVE SMOOTH" ); } ); width = 620; }, { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{472, 445}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "599 -38 OFFCURVE", "575 -31 OFFCURVE", "550 -12 CURVE", "551 -152 OFFCURVE", "526 -246 OFFCURVE", "475 -293 CURVE", "417 -346 OFFCURVE", "344 -372 OFFCURVE", "256 -372 CURVE", "187 -372 OFFCURVE", "133 -350 OFFCURVE", "93 -308 CURVE SMOOTH", "53 -266 OFFCURVE", "39 -211 OFFCURVE", "50 -143 CURVE SMOOTH", "61 -75 OFFCURVE", "94 -9 OFFCURVE", "147 57 CURVE SMOOTH", "154 65 OFFCURVE", "162 69 OFFCURVE", "172 68 CURVE SMOOTH", "182 67 OFFCURVE", "189 62 OFFCURVE", "193 53 CURVE", "197 43 OFFCURVE", "195 34 OFFCURVE", "188 24 CURVE SMOOTH", "133 -53 OFFCURVE", "114 -114 OFFCURVE", "132 -159 CURVE", "154 -213 OFFCURVE", "208 -240 OFFCURVE", "294 -238 CURVE", "363 -236 OFFCURVE", "425 -210 OFFCURVE", "483 -158 CURVE", "431 518 LINE SMOOTH", "429 541 OFFCURVE", "431 560 OFFCURVE", "436 574 CURVE SMOOTH", "454 625 LINE SMOOTH", "458 637 OFFCURVE", "462 643 OFFCURVE", "465 647 CURVE SMOOTH", "468 651 OFFCURVE", "473 653 OFFCURVE", "479 654 CURVE SMOOTH", "492 655 OFFCURVE", "499 647 OFFCURVE", "502 629 CURVE SMOOTH", "503 626 OFFCURVE", "503 622 OFFCURVE", "503 617 CURVE SMOOTH", "503 612 OFFCURVE", "504 609 OFFCURVE", "504 608 CURVE SMOOTH", "528 347 LINE SMOOTH", "542 201 OFFCURVE", "572 122 OFFCURVE", "618 111 CURVE SMOOTH", "645 105 OFFCURVE", "660 89 OFFCURVE", "665 64 CURVE SMOOTH", "667 55 OFFCURVE", "667 45 OFFCURVE", "665 34 CURVE SMOOTH", "658 -4 OFFCURVE", "644 -26 OFFCURVE", "623 -32 CURVE" ); } ); width = 620; } ); }, { glyphname = "lam-ar.medi.FaLellah"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 635}"; }, { name = TashkilBelow; position = "{49, -146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "237 90 OFFCURVE", "243 83 OFFCURVE", "247 67 CURVE SMOOTH", "251 51 OFFCURVE", "250 36 OFFCURVE", "246 22 CURVE SMOOTH", "242 7 OFFCURVE", "236 0 OFFCURVE", "228 0 CURVE SMOOTH", "167 0 OFFCURVE", "117 21 OFFCURVE", "81 62 CURVE", "69 21 OFFCURVE", "49 1 OFFCURVE", "22 1 CURVE SMOOTH", "1 1 OFFCURVE", "-16 15 OFFCURVE", "-29 43 CURVE SMOOTH", "-42 71 OFFCURVE", "-43 91 OFFCURVE", "-32 103 CURVE SMOOTH", "-21 115 OFFCURVE", "-9 120 OFFCURVE", "7 116 CURVE SMOOTH", "23 112 OFFCURVE", "37 113 OFFCURVE", "48 118 CURVE", "47 134 OFFCURVE", "38 177 OFFCURVE", "22 245 CURVE SMOOTH", "4 322 OFFCURVE", "-8 378 OFFCURVE", "-14 415 CURVE SMOOTH", "-17 434 OFFCURVE", "-8 458 OFFCURVE", "13 487 CURVE SMOOTH", "20 497 OFFCURVE", "25 494 OFFCURVE", "29 477 CURVE SMOOTH", "80 242 LINE SMOOTH", "87 210 OFFCURVE", "94 186 OFFCURVE", "101 169 CURVE SMOOTH", "124 113 OFFCURVE", "167 87 OFFCURVE", "228 90 CURVE SMOOTH" ); } ); width = 227; }, { anchors = ( { name = TashkilAbove; position = "{44, 635}"; }, { name = TashkilBelow; position = "{49, -146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "244 106 OFFCURVE", "255 96 OFFCURVE", "260 75 CURVE SMOOTH", "265 54 OFFCURVE", "264 34 OFFCURVE", "259 15 CURVE SMOOTH", "254 -4 OFFCURVE", "244 -15 OFFCURVE", "228 -15 CURVE", "172 -15 OFFCURVE", "124 2 OFFCURVE", "87 35 CURVE", "72 3 OFFCURVE", "51 -13 OFFCURVE", "23 -13 CURVE SMOOTH", "-5 -13 OFFCURVE", "-27 4 OFFCURVE", "-42 37 CURVE", "-57 70 OFFCURVE", "-57 96 OFFCURVE", "-43 113 CURVE SMOOTH", "-29 130 OFFCURVE", "-10 135 OFFCURVE", "11 130 CURVE SMOOTH", "19 128 OFFCURVE", "26 128 OFFCURVE", "32 129 CURVE", "29 150 OFFCURVE", "20 193 OFFCURVE", "4 259 CURVE SMOOTH", "-12 325 OFFCURVE", "-23 376 OFFCURVE", "-29 413 CURVE SMOOTH", "-33 436 OFFCURVE", "-22 463 OFFCURVE", "1 495 CURVE", "6 501 OFFCURVE", "11 506 OFFCURVE", "16 507 CURVE SMOOTH", "30 510 OFFCURVE", "40 501 OFFCURVE", "44 480 CURVE SMOOTH", "94 245 LINE SMOOTH", "101 214 OFFCURVE", "108 191 OFFCURVE", "114 175 CURVE SMOOTH", "135 126 OFFCURVE", "173 102 OFFCURVE", "227 105 CURVE SMOOTH" ); } ); width = 227; } ); }, { glyphname = aLam.medi.LamLamMedi; layers = ( { anchors = ( { name = DotAbove; position = "{39, 778}"; }, { name = Stroke; position = "{52, 545}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{-20, 778}"; }, { name = TwoDotsBelow; position = "{24, -171}"; }, { name = VAbove; position = "{39, 729}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-2 -58 OFFCURVE", "-16 -37 OFFCURVE", "-24 0 CURVE SMOOTH", "-32 37 OFFCURVE", "-33 60 OFFCURVE", "-24 70 CURVE SMOOTH", "-19 75 OFFCURVE", "-12 74 OFFCURVE", "-4 65 CURVE SMOOTH", "22 38 OFFCURVE", "53 33 OFFCURVE", "88 51 CURVE", "76 128 OFFCURVE", "65 215 OFFCURVE", "54 313 CURVE SMOOTH", "23 593 LINE SMOOTH", "21 614 OFFCURVE", "22 630 OFFCURVE", "28 638 CURVE SMOOTH", "53 677 LINE SMOOTH", "62 691 OFFCURVE", "66 689 OFFCURVE", "67 670 CURVE SMOOTH", "104 364 LINE SMOOTH", "122 213 OFFCURVE", "154 122 OFFCURVE", "199 90 CURVE SMOOTH", "219 76 OFFCURVE", "224 54 OFFCURVE", "215 23 CURVE SMOOTH", "210 7 OFFCURVE", "205 0 OFFCURVE", "199 0 CURVE SMOOTH", "165 0 OFFCURVE", "136 28 OFFCURVE", "111 84 CURVE", "105 -20 OFFCURVE", "74 -69 OFFCURVE", "17 -61 CURVE SMOOTH" ); } ); width = 199; }, { anchors = ( { name = DotAbove; position = "{39, 778}"; }, { name = Stroke; position = "{52, 545}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; }, { name = TwoDotsAbove; position = "{-20, 778}"; }, { name = TwoDotsBelow; position = "{24, -171}"; }, { name = VAbove; position = "{39, 729}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-47 36 OFFCURVE", "-47 66 OFFCURVE", "-35 79 CURVE SMOOTH", "-23 92 OFFCURVE", "-8 91 OFFCURVE", "9 73 CURVE SMOOTH", "26 55 OFFCURVE", "47 51 OFFCURVE", "72 60 CURVE", "61 135 OFFCURVE", "49 219 OFFCURVE", "39 312 CURVE SMOOTH", "8 592 LINE SMOOTH", "6 617 OFFCURVE", "9 635 OFFCURVE", "16 646 CURVE SMOOTH", "40 685 LINE SMOOTH", "51 702 OFFCURVE", "63 706 OFFCURVE", "74 697 CURVE SMOOTH", "79 693 OFFCURVE", "81 688 OFFCURVE", "81 681 CURVE SMOOTH", "81 674 OFFCURVE", "82 671 OFFCURVE", "82 671 CURVE SMOOTH", "119 366 LINE SMOOTH", "137 220 OFFCURVE", "166 132 OFFCURVE", "208 102 CURVE", "234 84 OFFCURVE", "240 57 OFFCURVE", "229 19 CURVE SMOOTH", "224 2 OFFCURVE", "218 -7 OFFCURVE", "213 -10 CURVE SMOOTH", "208 -13 OFFCURVE", "203 -15 OFFCURVE", "199 -15 CURVE SMOOTH", "169 -15 OFFCURVE", "144 2 OFFCURVE", "121 35 CURVE", "110 -31 OFFCURVE", "84 -67 OFFCURVE", "44 -75 CURVE", "1 -83 OFFCURVE", "-25 -60 OFFCURVE", "-37 -9 CURVE SMOOTH" ); } ); width = 199; } ); }, { glyphname = aLam.medi.LamLamAlefFina; layers = ( { anchors = ( { name = DotAbove; position = "{55, 799}"; }, { name = Stroke; position = "{65, 511}"; }, { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; }, { name = TwoDotsAbove; position = "{-1, 760}"; }, { name = TwoDotsBelow; position = "{10, -73}"; }, { name = VAbove; position = "{55, 757}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "181 105 OFFCURVE", "193 85 OFFCURVE", "208 64 CURVE SMOOTH", "208 64 OFFCURVE", "213 58 OFFCURVE", "222 46 CURVE SMOOTH", "238 25 OFFCURVE", "243 -8 OFFCURVE", "238 -53 CURVE SMOOTH", "237 -59 OFFCURVE", "236 -61 OFFCURVE", "232 -61 CURVE SMOOTH", "189 -59 OFFCURVE", "153 -16 OFFCURVE", "123 68 CURVE SMOOTH", "111 103 OFFCURVE", "92 196 OFFCURVE", "68 347 CURVE", "47 189 OFFCURVE", "1 78 OFFCURVE", "-70 14 CURVE SMOOTH", "-116 -27 OFFCURVE", "-197 -48 OFFCURVE", "-312 -48 CURVE SMOOTH", "-321 -48 OFFCURVE", "-324 -44 OFFCURVE", "-323 -37 CURVE SMOOTH", "-322 -33 OFFCURVE", "-320 -30 OFFCURVE", "-316 -29 CURVE SMOOTH", "-240 -8 OFFCURVE", "-176 20 OFFCURVE", "-125 56 CURVE SMOOTH", "-50 109 OFFCURVE", "-3 168 OFFCURVE", "18 235 CURVE SMOOTH", "43 316 OFFCURVE", "48 429 OFFCURVE", "34 573 CURVE SMOOTH", "32 589 OFFCURVE", "34 602 OFFCURVE", "39 610 CURVE SMOOTH", "63 653 LINE SMOOTH", "67 660 OFFCURVE", "71 662 OFFCURVE", "75 661 CURVE SMOOTH", "79 660 OFFCURVE", "81 655 OFFCURVE", "82 647 CURVE SMOOTH", "107 375 OFFCURVE", "137 202 OFFCURVE", "172 126 CURVE SMOOTH" ); } ); width = 210; }, { anchors = ( { name = DotAbove; position = "{55, 799}"; }, { name = Stroke; position = "{75, 511}"; }, { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-24, -327}"; }, { name = TwoDotsAbove; position = "{-1, 760}"; }, { name = TwoDotsBelow; position = "{20, -73}"; }, { name = VAbove; position = "{55, 757}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "194 113 OFFCURVE", "203 98 OFFCURVE", "211 87 CURVE SMOOTH", "219 76 OFFCURVE", "226 65 OFFCURVE", "234 55 CURVE SMOOTH", "252 31 OFFCURVE", "259 -5 OFFCURVE", "253 -54 CURVE SMOOTH", "251 -68 OFFCURVE", "244 -75 OFFCURVE", "232 -75 CURVE", "182 -72 OFFCURVE", "141 -27 OFFCURVE", "109 63 CURVE SMOOTH", "99 92 OFFCURVE", "84 158 OFFCURVE", "67 259 CURVE", "41 143 OFFCURVE", "0 57 OFFCURVE", "-60 3 CURVE", "-109 -41 OFFCURVE", "-193 -62 OFFCURVE", "-312 -62 CURVE SMOOTH", "-323 -62 OFFCURVE", "-330 -60 OFFCURVE", "-333 -53 CURVE SMOOTH", "-336 -46 OFFCURVE", "-338 -38 OFFCURVE", "-337 -31 CURVE SMOOTH", "-336 -24 OFFCURVE", "-330 -18 OFFCURVE", "-320 -15 CURVE", "-245 6 OFFCURVE", "-182 33 OFFCURVE", "-133 68 CURVE SMOOTH", "-61 119 OFFCURVE", "-16 176 OFFCURVE", "4 240 CURVE", "28 320 OFFCURVE", "34 430 OFFCURVE", "20 572 CURVE SMOOTH", "18 591 OFFCURVE", "20 606 OFFCURVE", "26 617 CURVE SMOOTH", "50 660 LINE", "58 673 OFFCURVE", "69 679 OFFCURVE", "80 675 CURVE", "90 671 OFFCURVE", "95 663 OFFCURVE", "96 649 CURVE SMOOTH", "121 379 OFFCURVE", "151 206 OFFCURVE", "185 132 CURVE SMOOTH" ); } ); width = 210; } ); }, { glyphname = aLam.medi.LamLamMedi2; layers = ( { anchors = ( { name = DotAbove; position = "{65, 763}"; }, { name = Stroke; position = "{81, 516}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; }, { name = TwoDotsAbove; position = "{7, 763}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{65, 714}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "119 362 OFFCURVE", "136 230 OFFCURVE", "156 149 CURVE SMOOTH", "164 116 OFFCURVE", "178 88 OFFCURVE", "198 65 CURVE SMOOTH", "202 61 OFFCURVE", "206 55 OFFCURVE", "213 45 CURVE SMOOTH", "227 18 OFFCURVE", "232 -14 OFFCURVE", "229 -50 CURVE SMOOTH", "229 -58 OFFCURVE", "226 -62 OFFCURVE", "219 -61 CURVE", "163 -53 OFFCURVE", "123 11 OFFCURVE", "100 129 CURVE", "80 43 OFFCURVE", "47 0 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-12 9 OFFCURVE", "-18 28 CURVE", "-27 64 OFFCURVE", "-21 85 OFFCURVE", "0 90 CURVE SMOOTH", "35 99 OFFCURVE", "57 110 OFFCURVE", "67 125 CURVE SMOOTH", "77 140 OFFCURVE", "83 160 OFFCURVE", "85 185 CURVE", "48 571 LINE SMOOTH", "46 587 OFFCURVE", "48 600 OFFCURVE", "53 608 CURVE SMOOTH", "77 651 LINE SMOOTH", "81 658 OFFCURVE", "85 660 OFFCURVE", "89 659 CURVE SMOOTH", "94 657 OFFCURVE", "96 654 OFFCURVE", "96 649 CURVE SMOOTH", "96 649 OFFCURVE", "98 614 OFFCURVE", "104 545 CURVE SMOOTH" ); } ); width = 201; }, { anchors = ( { name = DotAbove; position = "{65, 763}"; }, { name = Stroke; position = "{81, 516}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; }, { name = TwoDotsAbove; position = "{7, 763}"; }, { name = TwoDotsBelow; position = "{49, -73}"; }, { name = VAbove; position = "{65, 714}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "128 405 OFFCURVE", "148 239 OFFCURVE", "170 152 CURVE SMOOTH", "178 122 OFFCURVE", "191 97 OFFCURVE", "209 75 CURVE", "237 45 OFFCURVE", "249 3 OFFCURVE", "244 -51 CURVE SMOOTH", "243 -61 OFFCURVE", "240 -67 OFFCURVE", "234 -71 CURVE SMOOTH", "228 -75 OFFCURVE", "223 -76 OFFCURVE", "217 -75 CURVE SMOOTH", "164 -66 OFFCURVE", "124 -17 OFFCURVE", "98 73 CURVE", "75 15 OFFCURVE", "43 -15 OFFCURVE", "0 -15 CURVE SMOOTH", "-15 -15 OFFCURVE", "-26 -2 OFFCURVE", "-32 24 CURVE SMOOTH", "-43 70 OFFCURVE", "-34 97 OFFCURVE", "-3 105 CURVE SMOOTH", "28 113 OFFCURVE", "47 122 OFFCURVE", "55 134 CURVE SMOOTH", "63 146 OFFCURVE", "68 163 OFFCURVE", "70 185 CURVE", "34 570 LINE SMOOTH", "32 589 OFFCURVE", "34 604 OFFCURVE", "40 615 CURVE SMOOTH", "64 658 LINE", "72 671 OFFCURVE", "83 676 OFFCURVE", "94 673 CURVE", "105 669 OFFCURVE", "109 662 OFFCURVE", "110 650 CURVE SMOOTH" ); } ); width = 201; } ); }, { glyphname = aKaf.fina.LamKafFina; layers = ( { anchors = ( { name = Dash; position = "{697, 672}"; }, { name = DotAbove; position = "{693, 796}"; }, { name = DotBelow; position = "{366, -132}"; }, { name = HamzaAbove; position = "{363, 285}"; }, { name = RingBelow; position = "{376, 10}"; }, { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; }, { name = TwoDotsAbove; position = "{605, 796}"; }, { name = TwoDotsBelow; position = "{312, -132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "688 691 OFFCURVE", "696 688 OFFCURVE", "700 649 CURVE SMOOTH", "722 444 OFFCURVE", "740 301 OFFCURVE", "754 220 CURVE SMOOTH", "768 139 OFFCURVE", "787 87 OFFCURVE", "810 65 CURVE", "820 56 OFFCURVE", "828 40 OFFCURVE", "834 19 CURVE SMOOTH", "840 -2 OFFCURVE", "842 -21 OFFCURVE", "841 -38 CURVE SMOOTH", "840 -55 OFFCURVE", "837 -62 OFFCURVE", "830 -61 CURVE SMOOTH", "781 -52 OFFCURVE", "743 15 OFFCURVE", "716 137 CURVE", "676 70 OFFCURVE", "595 18 OFFCURVE", "473 -18 CURVE SMOOTH", "420 -34 OFFCURVE", "368 -41 OFFCURVE", "317 -42 CURVE SMOOTH", "209 -43 OFFCURVE", "131 -10 OFFCURVE", "83 60 CURVE SMOOTH", "60 94 OFFCURVE", "56 137 OFFCURVE", "73 190 CURVE SMOOTH", "83 224 OFFCURVE", "102 260 OFFCURVE", "128 297 CURVE SMOOTH", "135 307 OFFCURVE", "141 310 OFFCURVE", "146 305 CURVE SMOOTH", "151 300 OFFCURVE", "150 295 OFFCURVE", "145 288 CURVE SMOOTH", "100 226 OFFCURVE", "99 173 OFFCURVE", "143 127 CURVE SMOOTH", "193 75 OFFCURVE", "263 52 OFFCURVE", "355 59 CURVE SMOOTH", "481 69 OFFCURVE", "578 94 OFFCURVE", "647 136 CURVE SMOOTH", "684 158 OFFCURVE", "701 185 OFFCURVE", "697 216 CURVE SMOOTH", "685 300 OFFCURVE", "672 421 OFFCURVE", "658 579 CURVE SMOOTH", "657 590 OFFCURVE", "658 597 OFFCURVE", "660 604 CURVE SMOOTH", "678 658 LINE" ); } ); width = 813; }, { anchors = ( { name = Dash; position = "{697, 672}"; }, { name = DotAbove; position = "{693, 796}"; }, { name = DotBelow; position = "{366, -132}"; }, { name = HamzaAbove; position = "{363, 285}"; }, { name = RingBelow; position = "{376, 10}"; }, { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; }, { name = TwoDotsAbove; position = "{605, 796}"; }, { name = TwoDotsBelow; position = "{312, -132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "668 675 OFFCURVE", "672 684 OFFCURVE", "675 688 CURVE SMOOTH", "678 692 OFFCURVE", "682 694 OFFCURVE", "688 695 CURVE SMOOTH", "703 697 OFFCURVE", "712 685 OFFCURVE", "714 659 CURVE SMOOTH", "714 654 OFFCURVE", "720 601 OFFCURVE", "731 498 CURVE SMOOTH", "742 395 OFFCURVE", "754 304 OFFCURVE", "768 225 CURVE SMOOTH", "782 146 OFFCURVE", "799 97 OFFCURVE", "820 76 CURVE", "832 64 OFFCURVE", "842 45 OFFCURVE", "849 20 CURVE SMOOTH", "856 -5 OFFCURVE", "858 -27 OFFCURVE", "855 -45 CURVE SMOOTH", "852 -68 OFFCURVE", "842 -78 OFFCURVE", "827 -75 CURVE SMOOTH", "776 -66 OFFCURVE", "737 -7 OFFCURVE", "709 101 CURVE", "663 44 OFFCURVE", "585 0 OFFCURVE", "477 -32 CURVE SMOOTH", "422 -48 OFFCURVE", "370 -56 OFFCURVE", "318 -57 CURVE SMOOTH", "205 -58 OFFCURVE", "122 -22 OFFCURVE", "71 52 CURVE", "45 90 OFFCURVE", "41 137 OFFCURVE", "59 195 CURVE SMOOTH", "70 230 OFFCURVE", "89 267 OFFCURVE", "116 305 CURVE SMOOTH", "126 319 OFFCURVE", "135 325 OFFCURVE", "144 322 CURVE SMOOTH", "167 313 OFFCURVE", "171 299 OFFCURVE", "156 279 CURVE SMOOTH", "116 224 OFFCURVE", "115 177 OFFCURVE", "153 137 CURVE", "200 88 OFFCURVE", "267 67 OFFCURVE", "354 74 CURVE SMOOTH", "478 84 OFFCURVE", "573 109 OFFCURVE", "640 149 CURVE", "671 168 OFFCURVE", "685 190 OFFCURVE", "682 214 CURVE SMOOTH", "670 298 OFFCURVE", "658 420 OFFCURVE", "644 578 CURVE", "643 591 OFFCURVE", "644 601 OFFCURVE", "646 609 CURVE", "664 662 LINE SMOOTH" ); } ); width = 813; } ); }, { glyphname = aLam.fina.LamLamFina; layers = ( { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{472, 445}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "537 -144 OFFCURVE", "514 -237 OFFCURVE", "465 -282 CURVE SMOOTH", "410 -332 OFFCURVE", "340 -357 OFFCURVE", "256 -357 CURVE SMOOTH", "191 -357 OFFCURVE", "140 -338 OFFCURVE", "103 -298 CURVE SMOOTH", "67 -260 OFFCURVE", "53 -208 OFFCURVE", "64 -144 CURVE SMOOTH", "73 -87 OFFCURVE", "105 -22 OFFCURVE", "159 49 CURVE SMOOTH", "162 53 OFFCURVE", "165 55 OFFCURVE", "170 54 CURVE SMOOTH", "175 54 OFFCURVE", "178 51 OFFCURVE", "180 47 CURVE SMOOTH", "182 43 OFFCURVE", "180 38 OFFCURVE", "176 32 CURVE SMOOTH", "117 -49 OFFCURVE", "98 -114 OFFCURVE", "118 -164 CURVE SMOOTH", "142 -225 OFFCURVE", "201 -254 OFFCURVE", "294 -252 CURVE SMOOTH", "368 -250 OFFCURVE", "437 -222 OFFCURVE", "499 -164 CURVE", "446 520 LINE SMOOTH", "444 541 OFFCURVE", "445 557 OFFCURVE", "450 569 CURVE SMOOTH", "468 620 LINE SMOOTH", "479 650 OFFCURVE", "486 645 OFFCURVE", "489 607 CURVE SMOOTH", "514 345 LINE SMOOTH", "521 270 OFFCURVE", "532 205 OFFCURVE", "547 149 CURVE SMOOTH", "557 110 OFFCURVE", "571 82 OFFCURVE", "588 65 CURVE SMOOTH", "594 59 OFFCURVE", "600 52 OFFCURVE", "604 45 CURVE SMOOTH", "618 20 OFFCURVE", "623 -12 OFFCURVE", "620 -50 CURVE SMOOTH", "619 -58 OFFCURVE", "615 -62 OFFCURVE", "609 -61 CURVE", "580 -56 OFFCURVE", "555 -36 OFFCURVE", "535 -2 CURVE" ); } ); width = 592; }, { anchors = ( { name = DotAbove; position = "{293, 586}"; }, { name = Stroke; position = "{472, 445}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; }, { name = TwoDotsAbove; position = "{195, 488}"; }, { name = TwoDotsBelow; position = "{293, -457}"; }, { name = VAbove; position = "{300, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "547 -167 OFFCURVE", "522 -250 OFFCURVE", "475 -293 CURVE SMOOTH", "417 -346 OFFCURVE", "344 -372 OFFCURVE", "256 -372 CURVE", "187 -372 OFFCURVE", "133 -350 OFFCURVE", "93 -308 CURVE SMOOTH", "53 -266 OFFCURVE", "38 -212 OFFCURVE", "49 -148 CURVE SMOOTH", "60 -84 OFFCURVE", "92 -15 OFFCURVE", "147 58 CURVE SMOOTH", "153 66 OFFCURVE", "162 69 OFFCURVE", "172 68 CURVE SMOOTH", "182 67 OFFCURVE", "189 62 OFFCURVE", "193 53 CURVE", "197 43 OFFCURVE", "195 34 OFFCURVE", "188 24 CURVE SMOOTH", "133 -53 OFFCURVE", "114 -114 OFFCURVE", "132 -159 CURVE", "154 -213 OFFCURVE", "208 -240 OFFCURVE", "294 -238 CURVE", "363 -236 OFFCURVE", "425 -210 OFFCURVE", "483 -158 CURVE", "431 518 LINE SMOOTH", "429 541 OFFCURVE", "431 560 OFFCURVE", "436 574 CURVE SMOOTH", "454 625 LINE SMOOTH", "458 637 OFFCURVE", "462 643 OFFCURVE", "465 647 CURVE SMOOTH", "468 651 OFFCURVE", "473 653 OFFCURVE", "479 654 CURVE SMOOTH", "492 655 OFFCURVE", "499 647 OFFCURVE", "502 629 CURVE SMOOTH", "503 626 OFFCURVE", "503 622 OFFCURVE", "503 617 CURVE SMOOTH", "503 612 OFFCURVE", "504 609 OFFCURVE", "504 608 CURVE SMOOTH", "528 347 LINE SMOOTH", "542 200 OFFCURVE", "566 109 OFFCURVE", "599 75 CURVE SMOOTH", "627 46 OFFCURVE", "639 4 OFFCURVE", "634 -51 CURVE SMOOTH", "633 -61 OFFCURVE", "629 -68 OFFCURVE", "623 -72 CURVE", "618 -75 OFFCURVE", "613 -76 OFFCURVE", "607 -75 CURVE SMOOTH", "586 -71 OFFCURVE", "567 -61 OFFCURVE", "550 -45 CURVE" ); } ); width = 592; } ); }, { glyphname = aLam.medi.LamLamMemInit; layers = ( { anchors = ( { name = DotAbove; position = "{6, 697}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = Stroke; position = "{145, 541}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-53, 697}"; }, { name = TwoDotsBelow; position = "{146, -117}"; }, { name = VAbove; position = "{6, 648}"; }, { name = exit; position = "{42, 83}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "133 124 OFFCURVE", "102 101 OFFCURVE", "62 86 CURVE SMOOTH", "23 71 OFFCURVE", "-12 80 OFFCURVE", "-42 114 CURVE SMOOTH", "-61 135 OFFCURVE", "-68 152 OFFCURVE", "-64 169 CURVE SMOOTH", "-62 178 OFFCURVE", "-55 184 OFFCURVE", "-44 184 CURVE SMOOTH", "-43 184 OFFCURVE", "-33 179 OFFCURVE", "-14 170 CURVE SMOOTH", "5 161 OFFCURVE", "21 158 OFFCURVE", "33 159 CURVE SMOOTH", "110 166 OFFCURVE", "147 187 OFFCURVE", "143 222 CURVE SMOOTH", "142 229 OFFCURVE", "136 292 OFFCURVE", "126 411 CURVE SMOOTH", "120 486 OFFCURVE", "116 541 OFFCURVE", "112 574 CURVE SMOOTH", "111 586 OFFCURVE", "113 597 OFFCURVE", "118 608 CURVE SMOOTH", "139 652 LINE SMOOTH", "143 659 OFFCURVE", "146 662 OFFCURVE", "150 659 CURVE SMOOTH", "154 656 OFFCURVE", "157 651 OFFCURVE", "158 645 CURVE SMOOTH", "180 419 LINE SMOOTH", "188 311 OFFCURVE", "200 230 OFFCURVE", "216 177 CURVE SMOOTH", "230 131 OFFCURVE", "256 104 OFFCURVE", "292 96 CURVE SMOOTH", "326 89 OFFCURVE", "335 61 OFFCURVE", "319 12 CURVE SMOOTH", "313 -6 OFFCURVE", "304 -16 OFFCURVE", "292 -18 CURVE SMOOTH", "269 -22 OFFCURVE", "246 -14 OFFCURVE", "222 7 CURVE SMOOTH", "198 28 OFFCURVE", "175 78 OFFCURVE", "155 157 CURVE" ); } ); width = 285; }, { anchors = ( { name = DotAbove; position = "{6, 697}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = Stroke; position = "{145, 541}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-53, 697}"; }, { name = TwoDotsBelow; position = "{146, -117}"; }, { name = VAbove; position = "{6, 648}"; }, { name = exit; position = "{42, 83}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "127 103 OFFCURVE", "100 84 OFFCURVE", "68 72 CURVE SMOOTH", "23 55 OFFCURVE", "-18 66 OFFCURVE", "-53 104 CURVE SMOOTH", "-75 129 OFFCURVE", "-83 151 OFFCURVE", "-78 173 CURVE SMOOTH", "-74 190 OFFCURVE", "-63 198 OFFCURVE", "-44 198 CURVE SMOOTH", "-39 198 OFFCURVE", "-28 194 OFFCURVE", "-11 185 CURVE SMOOTH", "6 176 OFFCURVE", "20 172 OFFCURVE", "31 173 CURVE SMOOTH", "97 180 OFFCURVE", "130 196 OFFCURVE", "128 221 CURVE SMOOTH", "127 229 OFFCURVE", "123 280 OFFCURVE", "115 377 CURVE SMOOTH", "107 474 OFFCURVE", "101 535 OFFCURVE", "99 559 CURVE SMOOTH", "97 583 OFFCURVE", "98 602 OFFCURVE", "104 615 CURVE SMOOTH", "125 658 LINE SMOOTH", "129 667 OFFCURVE", "135 671 OFFCURVE", "142 673 CURVE SMOOTH", "149 675 OFFCURVE", "155 673 OFFCURVE", "161 668 CURVE SMOOTH", "167 663 OFFCURVE", "171 656 OFFCURVE", "172 646 CURVE SMOOTH", "195 420 LINE", "203 313 OFFCURVE", "214 234 OFFCURVE", "230 182 CURVE", "243 142 OFFCURVE", "264 117 OFFCURVE", "295 110 CURVE SMOOTH", "339 100 OFFCURVE", "352 66 OFFCURVE", "333 7 CURVE SMOOTH", "325 -16 OFFCURVE", "313 -28 OFFCURVE", "295 -32 CURVE", "267 -37 OFFCURVE", "241 -28 OFFCURVE", "215 -6 CURVE SMOOTH", "189 16 OFFCURVE", "168 61 OFFCURVE", "149 126 CURVE" ); } ); width = 285; } ); }, { glyphname = aLam.medi.LamLamHehIsol; layers = ( { anchors = ( { name = DotAbove; position = "{5, 766}"; }, { name = Stroke; position = "{26, 511}"; }, { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; }, { name = TwoDotsAbove; position = "{-53, 766}"; }, { name = TwoDotsBelow; position = "{81, -135}"; }, { name = VAbove; position = "{5, 717}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "68 -39 OFFCURVE", "47 -89 OFFCURVE", "7 -96 CURVE SMOOTH", "-16 -100 OFFCURVE", "-27 -89 OFFCURVE", "-26 -63 CURVE SMOOTH", "-25 -49 OFFCURVE", "-24 -35 OFFCURVE", "-21 -21 CURVE SMOOTH", "-15 5 OFFCURVE", "-6 18 OFFCURVE", "5 17 CURVE SMOOTH", "22 15 OFFCURVE", "32 16 OFFCURVE", "36 22 CURVE SMOOTH", "48 37 OFFCURVE", "50 70 OFFCURVE", "43 121 CURVE SMOOTH", "37 167 OFFCURVE", "21 309 OFFCURVE", "-6 549 CURVE SMOOTH", "-9 579 OFFCURVE", "-8 600 OFFCURVE", "-2 610 CURVE SMOOTH", "23 653 LINE SMOOTH", "31 666 OFFCURVE", "36 665 OFFCURVE", "38 649 CURVE SMOOTH", "68 371 OFFCURVE", "87 214 OFFCURVE", "97 177 CURVE SMOOTH", "109 134 OFFCURVE", "135 107 OFFCURVE", "173 96 CURVE SMOOTH", "206 87 OFFCURVE", "215 59 OFFCURVE", "200 12 CURVE SMOOTH", "194 -6 OFFCURVE", "185 -16 OFFCURVE", "173 -18 CURVE SMOOTH", "149 -23 OFFCURVE", "125 -14 OFFCURVE", "103 7 CURVE SMOOTH", "87 23 OFFCURVE", "76 38 OFFCURVE", "70 52 CURVE" ); } ); width = 172; }, { anchors = ( { name = DotAbove; position = "{5, 766}"; }, { name = Stroke; position = "{26, 511}"; }, { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; }, { name = TwoDotsAbove; position = "{-53, 766}"; }, { name = TwoDotsBelow; position = "{81, -135}"; }, { name = VAbove; position = "{5, 717}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "74 -64 OFFCURVE", "50 -103 OFFCURVE", "10 -110 CURVE", "-16 -114 OFFCURVE", "-33 -105 OFFCURVE", "-39 -82 CURVE SMOOTH", "-43 -68 OFFCURVE", "-41 -47 OFFCURVE", "-35 -20 CURVE SMOOTH", "-27 16 OFFCURVE", "-13 33 OFFCURVE", "7 31 CURVE SMOOTH", "16 30 OFFCURVE", "21 31 OFFCURVE", "25 32 CURVE", "34 45 OFFCURVE", "35 73 OFFCURVE", "29 119 CURVE SMOOTH", "23 165 OFFCURVE", "7 308 OFFCURVE", "-20 548 CURVE SMOOTH", "-23 581 OFFCURVE", "-22 604 OFFCURVE", "-15 617 CURVE SMOOTH", "10 660 LINE SMOOTH", "16 670 OFFCURVE", "22 675 OFFCURVE", "29 676 CURVE", "42 678 OFFCURVE", "50 670 OFFCURVE", "52 651 CURVE SMOOTH", "82 374 OFFCURVE", "102 217 OFFCURVE", "112 180 CURVE SMOOTH", "122 143 OFFCURVE", "144 120 OFFCURVE", "176 111 CURVE SMOOTH", "219 99 OFFCURVE", "232 64 OFFCURVE", "214 7 CURVE", "206 -16 OFFCURVE", "194 -28 OFFCURVE", "176 -32 CURVE", "143 -38 OFFCURVE", "112 -25 OFFCURVE", "82 7 CURVE" ); } ); width = 172; } ); }, { glyphname = aLam.medi.LamLamYaaIsol; layers = ( { anchors = ( { name = DotAbove; position = "{66, 766}"; }, { name = Stroke; position = "{68, 511}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{8, 766}"; }, { name = TwoDotsBelow; position = "{122, -337}"; }, { name = VAbove; position = "{66, 717}"; }, { name = exit; position = "{0, -71}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "73 3 OFFCURVE", "35 -75 OFFCURVE", "-28 -108 CURVE", "-22 -65 LINE", "23 -40 OFFCURVE", "52 26 OFFCURVE", "67 133 CURVE SMOOTH", "74 180 OFFCURVE", "69 277 OFFCURVE", "52 425 CURVE SMOOTH", "44 496 OFFCURVE", "39 551 OFFCURVE", "38 591 CURVE SMOOTH", "38 601 OFFCURVE", "40 610 OFFCURVE", "46 619 CURVE SMOOTH", "70 656 LINE SMOOTH", "78 669 OFFCURVE", "83 669 OFFCURVE", "84 656 CURVE SMOOTH", "102 435 LINE SMOOTH", "111 318 OFFCURVE", "124 232 OFFCURVE", "139 177 CURVE SMOOTH", "151 131 OFFCURVE", "176 104 OFFCURVE", "214 96 CURVE SMOOTH", "248 89 OFFCURVE", "257 61 OFFCURVE", "242 12 CURVE SMOOTH", "236 -6 OFFCURVE", "227 -16 OFFCURVE", "215 -18 CURVE SMOOTH", "191 -23 OFFCURVE", "167 -14 OFFCURVE", "145 7 CURVE SMOOTH", "123 28 OFFCURVE", "103 69 OFFCURVE", "86 129 CURVE" ); } ); width = 214; }, { anchors = ( { name = DotAbove; position = "{66, 766}"; }, { name = Stroke; position = "{68, 511}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{8, 766}"; }, { name = TwoDotsBelow; position = "{122, -337}"; }, { name = VAbove; position = "{66, 717}"; }, { name = exit; position = "{0, -71}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "72 -29 OFFCURVE", "34 -91 OFFCURVE", "-22 -121 CURVE SMOOTH", "-47 -134 LINE", "-36 -56 LINE", "-29 -53 LINE", "12 -30 OFFCURVE", "39 33 OFFCURVE", "53 135 CURVE SMOOTH", "59 181 OFFCURVE", "54 277 OFFCURVE", "37 423 CURVE SMOOTH", "29 494 OFFCURVE", "24 550 OFFCURVE", "23 590 CURVE SMOOTH", "23 603 OFFCURVE", "27 616 OFFCURVE", "34 627 CURVE SMOOTH", "58 664 LINE SMOOTH", "68 680 OFFCURVE", "78 684 OFFCURVE", "89 678 CURVE SMOOTH", "95 675 OFFCURVE", "98 668 OFFCURVE", "99 657 CURVE SMOOTH", "99 657 LINE SMOOTH", "117 436 LINE SMOOTH", "126 320 OFFCURVE", "138 235 OFFCURVE", "153 181 CURVE", "164 141 OFFCURVE", "185 117 OFFCURVE", "217 110 CURVE SMOOTH", "261 100 OFFCURVE", "274 66 OFFCURVE", "256 7 CURVE", "248 -16 OFFCURVE", "236 -28 OFFCURVE", "218 -32 CURVE", "189 -37 OFFCURVE", "160 -28 OFFCURVE", "134 -3 CURVE SMOOTH", "118 12 OFFCURVE", "104 36 OFFCURVE", "91 67 CURVE" ); } ); width = 214; } ); }, { glyphname = aLam.medi.LamLamMemMedi; layers = ( { anchors = ( { name = DotAbove; position = "{6, 697}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = Stroke; position = "{149, 499}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-53, 697}"; }, { name = TwoDotsBelow; position = "{146, -117}"; }, { name = VAbove; position = "{6, 648}"; }, { name = exit; position = "{42, 83}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "228 111 OFFCURVE", "243 83 OFFCURVE", "261 65 CURVE SMOOTH", "267 59 OFFCURVE", "272 52 OFFCURVE", "276 45 CURVE SMOOTH", "290 20 OFFCURVE", "295 -12 OFFCURVE", "292 -50 CURVE SMOOTH", "291 -58 OFFCURVE", "288 -62 OFFCURVE", "282 -61 CURVE", "225 -55 OFFCURVE", "183 18 OFFCURVE", "157 157 CURVE", "136 125 OFFCURVE", "104 102 OFFCURVE", "62 86 CURVE SMOOTH", "23 71 OFFCURVE", "-12 80 OFFCURVE", "-42 114 CURVE SMOOTH", "-61 135 OFFCURVE", "-68 152 OFFCURVE", "-64 169 CURVE SMOOTH", "-62 178 OFFCURVE", "-55 184 OFFCURVE", "-44 184 CURVE SMOOTH", "-43 184 OFFCURVE", "-33 179 OFFCURVE", "-14 170 CURVE SMOOTH", "5 161 OFFCURVE", "21 158 OFFCURVE", "33 159 CURVE SMOOTH", "110 166 OFFCURVE", "147 187 OFFCURVE", "143 222 CURVE SMOOTH", "142 229 OFFCURVE", "136 292 OFFCURVE", "126 411 CURVE SMOOTH", "120 486 OFFCURVE", "116 541 OFFCURVE", "112 574 CURVE SMOOTH", "111 586 OFFCURVE", "113 597 OFFCURVE", "118 608 CURVE SMOOTH", "139 652 LINE SMOOTH", "143 659 OFFCURVE", "146 662 OFFCURVE", "150 659 CURVE SMOOTH", "154 656 OFFCURVE", "157 651 OFFCURVE", "158 645 CURVE SMOOTH", "180 419 LINE SMOOTH", "188 311 OFFCURVE", "201 221 OFFCURVE", "219 149 CURVE SMOOTH" ); } ); width = 264; }, { anchors = ( { name = DotAbove; position = "{6, 697}"; }, { name = DotBelow; position = "{293, -98}"; }, { name = Stroke; position = "{149, 499}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-53, 697}"; }, { name = TwoDotsBelow; position = "{146, -117}"; }, { name = VAbove; position = "{6, 648}"; }, { name = exit; position = "{42, 83}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "242 117 OFFCURVE", "255 91 OFFCURVE", "271 75 CURVE SMOOTH", "299 46 OFFCURVE", "312 4 OFFCURVE", "307 -51 CURVE SMOOTH", "306 -62 OFFCURVE", "302 -68 OFFCURVE", "296 -71 CURVE SMOOTH", "290 -74 OFFCURVE", "284 -75 OFFCURVE", "280 -75 CURVE SMOOTH", "220 -69 OFFCURVE", "177 -2 OFFCURVE", "149 124 CURVE", "127 102 OFFCURVE", "101 84 OFFCURVE", "68 72 CURVE SMOOTH", "23 55 OFFCURVE", "-18 66 OFFCURVE", "-53 104 CURVE SMOOTH", "-75 129 OFFCURVE", "-83 151 OFFCURVE", "-78 173 CURVE SMOOTH", "-74 190 OFFCURVE", "-63 198 OFFCURVE", "-44 198 CURVE SMOOTH", "-39 198 OFFCURVE", "-28 194 OFFCURVE", "-11 185 CURVE SMOOTH", "6 176 OFFCURVE", "20 172 OFFCURVE", "31 173 CURVE SMOOTH", "97 180 OFFCURVE", "130 196 OFFCURVE", "128 221 CURVE SMOOTH", "127 229 OFFCURVE", "123 280 OFFCURVE", "115 377 CURVE SMOOTH", "107 474 OFFCURVE", "101 535 OFFCURVE", "99 559 CURVE SMOOTH", "97 583 OFFCURVE", "98 602 OFFCURVE", "104 615 CURVE SMOOTH", "125 658 LINE SMOOTH", "129 667 OFFCURVE", "135 671 OFFCURVE", "142 673 CURVE SMOOTH", "149 675 OFFCURVE", "155 673 OFFCURVE", "161 668 CURVE SMOOTH", "167 663 OFFCURVE", "171 656 OFFCURVE", "172 646 CURVE SMOOTH", "195 420 LINE", "203 312 OFFCURVE", "216 223 OFFCURVE", "233 152 CURVE SMOOTH" ); } ); width = 264; } ); }, { glyphname = aLam.medi.LamLamHehFina; layers = ( { anchors = ( { name = DotAbove; position = "{5, 766}"; }, { name = Stroke; position = "{31, 511}"; }, { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; }, { name = TwoDotsAbove; position = "{-53, 766}"; }, { name = TwoDotsBelow; position = "{81, -135}"; }, { name = VAbove; position = "{5, 717}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "68 -40 OFFCURVE", "47 -89 OFFCURVE", "7 -96 CURVE SMOOTH", "-16 -100 OFFCURVE", "-27 -89 OFFCURVE", "-26 -63 CURVE SMOOTH", "-25 -49 OFFCURVE", "-24 -35 OFFCURVE", "-21 -21 CURVE SMOOTH", "-15 5 OFFCURVE", "-6 18 OFFCURVE", "5 17 CURVE SMOOTH", "22 15 OFFCURVE", "32 16 OFFCURVE", "36 22 CURVE SMOOTH", "48 37 OFFCURVE", "50 70 OFFCURVE", "43 121 CURVE SMOOTH", "33 197 OFFCURVE", "16 339 OFFCURVE", "-6 549 CURVE SMOOTH", "-9 579 OFFCURVE", "-8 600 OFFCURVE", "-2 610 CURVE SMOOTH", "23 653 LINE SMOOTH", "31 666 OFFCURVE", "36 665 OFFCURVE", "38 649 CURVE SMOOTH", "75 348 OFFCURVE", "97 181 OFFCURVE", "105 149 CURVE SMOOTH", "114 111 OFFCURVE", "128 83 OFFCURVE", "146 65 CURVE SMOOTH", "152 59 OFFCURVE", "158 52 OFFCURVE", "162 45 CURVE SMOOTH", "176 20 OFFCURVE", "181 -12 OFFCURVE", "178 -50 CURVE SMOOTH", "177 -58 OFFCURVE", "173 -62 OFFCURVE", "167 -61 CURVE", "126 -55 OFFCURVE", "93 -18 OFFCURVE", "70 49 CURVE" ); } ); width = 150; }, { anchors = ( { name = DotAbove; position = "{5, 766}"; }, { name = Stroke; position = "{31, 511}"; }, { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; }, { name = TwoDotsAbove; position = "{-53, 766}"; }, { name = TwoDotsBelow; position = "{81, -135}"; }, { name = VAbove; position = "{5, 717}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "70 -69 OFFCURVE", "47 -103 OFFCURVE", "10 -110 CURVE", "-17 -114 OFFCURVE", "-33 -105 OFFCURVE", "-39 -82 CURVE SMOOTH", "-43 -68 OFFCURVE", "-41 -47 OFFCURVE", "-35 -20 CURVE SMOOTH", "-27 16 OFFCURVE", "-13 33 OFFCURVE", "7 31 CURVE SMOOTH", "16 30 OFFCURVE", "21 31 OFFCURVE", "25 32 CURVE", "34 45 OFFCURVE", "35 74 OFFCURVE", "29 119 CURVE SMOOTH", "19 196 OFFCURVE", "2 339 OFFCURVE", "-20 548 CURVE SMOOTH", "-23 581 OFFCURVE", "-22 604 OFFCURVE", "-15 617 CURVE SMOOTH", "10 660 LINE SMOOTH", "16 670 OFFCURVE", "22 675 OFFCURVE", "29 676 CURVE", "42 678 OFFCURVE", "50 670 OFFCURVE", "52 651 CURVE", "89 350 OFFCURVE", "112 183 OFFCURVE", "120 150 CURVE SMOOTH", "128 117 OFFCURVE", "141 91 OFFCURVE", "157 75 CURVE SMOOTH", "185 46 OFFCURVE", "197 4 OFFCURVE", "192 -51 CURVE", "191 -61 OFFCURVE", "188 -68 OFFCURVE", "182 -71 CURVE SMOOTH", "176 -74 OFFCURVE", "170 -76 OFFCURVE", "165 -75 CURVE SMOOTH", "131 -70 OFFCURVE", "103 -48 OFFCURVE", "80 -9 CURVE" ); } ); width = 150; } ); }, { glyphname = aLam.medi.LamLamYaaFina; layers = ( { anchors = ( { name = DotAbove; position = "{66, 766}"; }, { name = Stroke; position = "{70, 511}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{8, 766}"; }, { name = TwoDotsBelow; position = "{122, -337}"; }, { name = VAbove; position = "{66, 717}"; }, { name = exit; position = "{0, -71}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "193 59 OFFCURVE", "198 52 OFFCURVE", "202 45 CURVE SMOOTH", "216 20 OFFCURVE", "221 -12 OFFCURVE", "218 -50 CURVE SMOOTH", "217 -58 OFFCURVE", "214 -62 OFFCURVE", "208 -61 CURVE", "152 -53 OFFCURVE", "112 11 OFFCURVE", "89 129 CURVE", "74 3 OFFCURVE", "35 -75 OFFCURVE", "-28 -108 CURVE", "-22 -65 LINE", "23 -41 OFFCURVE", "52 25 OFFCURVE", "67 133 CURVE SMOOTH", "73 177 OFFCURVE", "69 275 OFFCURVE", "52 425 CURVE SMOOTH", "44 496 OFFCURVE", "39 551 OFFCURVE", "38 591 CURVE SMOOTH", "38 601 OFFCURVE", "40 610 OFFCURVE", "46 619 CURVE SMOOTH", "70 656 LINE SMOOTH", "78 669 OFFCURVE", "83 669 OFFCURVE", "84 656 CURVE SMOOTH", "102 435 LINE SMOOTH", "118 229 OFFCURVE", "147 106 OFFCURVE", "187 65 CURVE SMOOTH" ); } ); width = 190; }, { anchors = ( { name = DotAbove; position = "{66, 766}"; }, { name = Stroke; position = "{70, 511}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = TwoDotsAbove; position = "{8, 766}"; }, { name = TwoDotsBelow; position = "{122, -337}"; }, { name = VAbove; position = "{66, 717}"; }, { name = exit; position = "{0, -71}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "133 234 OFFCURVE", "160 113 OFFCURVE", "199 73 CURVE SMOOTH", "226 45 OFFCURVE", "237 4 OFFCURVE", "232 -51 CURVE SMOOTH", "231 -61 OFFCURVE", "228 -68 OFFCURVE", "222 -71 CURVE SMOOTH", "216 -74 OFFCURVE", "210 -76 OFFCURVE", "205 -75 CURVE SMOOTH", "155 -67 OFFCURVE", "118 -22 OFFCURVE", "92 58 CURVE", "71 -33 OFFCURVE", "33 -92 OFFCURVE", "-22 -121 CURVE SMOOTH", "-47 -134 LINE", "-36 -56 LINE", "-29 -53 LINE", "12 -30 OFFCURVE", "39 33 OFFCURVE", "53 135 CURVE SMOOTH", "59 178 OFFCURVE", "56 255 OFFCURVE", "44 365 CURVE SMOOTH", "32 475 OFFCURVE", "24 550 OFFCURVE", "23 590 CURVE SMOOTH", "23 603 OFFCURVE", "27 615 OFFCURVE", "34 627 CURVE SMOOTH", "58 664 LINE SMOOTH", "68 680 OFFCURVE", "78 684 OFFCURVE", "89 678 CURVE SMOOTH", "95 675 OFFCURVE", "98 668 OFFCURVE", "99 657 CURVE SMOOTH", "99 657 LINE SMOOTH", "117 436 LINE SMOOTH" ); } ); width = 190; } ); }, { glyphname = "alefHamzabelow-ar.fina"; layers = ( { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = "alef-ar.fina"; layers = ( { anchors = ( { name = SeenAbove; position = "{49, 781}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = SeenAbove; position = "{49, 781}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = "alefThreeabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{121, 923}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 508}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{121, 923}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 508}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "alefTwoabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 874}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{91, 874}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "alefHamzaabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 60, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 152, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 289; }, { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 60, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 152, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 289; } ); }, { glyphname = "alefMadda-ar.fina"; layers = ( { components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 159, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 327; }, { components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 159, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 327; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{37, 1050}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 62, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = TashkilAbove; position = "{37, 1050}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 62, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina"; layers = ( { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = "alefWasla-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aAlf.fina; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "ghainDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{308, -186}"; } ); components = ( { name = aAyn.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{308, -186}"; } ); components = ( { name = aAyn.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ghain-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ainThreedotsdownabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ainTwodotsverticalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ainThreedots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 293, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ain-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -24}"; } ); components = ( { name = aAyn.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 493; } ); }, { glyphname = "ghainDotbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 239, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 239, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ghain-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ainThreedotsdownabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 147, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 147, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 147, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 147, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 146, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ainThreedots-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 147, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 147, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ain-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 477; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aAyn.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 477; } ); }, { glyphname = "ghainDotbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 156, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 156, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "ghain-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "ainThreedotsdownabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "ainTwodotsverticalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "ainThreedots-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "ain-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 366; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aAyn.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 366; } ); }, { glyphname = "behThreedotsupabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 439, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 439, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{425, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 415, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{425, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 415, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "tehThreedotsupbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{439, -391}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 439, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{439, -391}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 439, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "beheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{454, -405}"; } ); components = ( { name = aBaa.fina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 454, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{454, -405}"; } ); components = ( { name = aBaa.fina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 454, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "teh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 439, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 439, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "theh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "tteh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 461, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 461, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "tehRing-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 428, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 428, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behVabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 461, -39}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 461, -39}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behThreedotsupbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{439, -391}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 439, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{439, -391}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 439, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behDotless-ar.fina"; layers = ( { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "teheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behVinvertedbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{420, -420}"; } ); components = ( { name = aBaa.fina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 420, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{420, -420}"; } ); components = ( { name = aBaa.fina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 420, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "tehThreedotsdown-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "peh-ar.fina"; layers = ( { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{480, -387}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 441, -366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{480, -387}"; } ); components = ( { name = aBaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 441, -366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "beeh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{459, -400}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 439, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{459, -400}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 439, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "beh-ar.fina"; layers = ( { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 439, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TaaAbove; position = "{461, 327}"; }, { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 439, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "tteheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aBaa.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 461, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "yehFarsiFourbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -469}"; } ); components = ( { name = aBaa.init; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 83, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -469}"; } ); components = ( { name = aBaa.init; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 83, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "beheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{127, -449}"; } ); components = ( { name = aBaa.init; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 127, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{127, -449}"; } ); components = ( { name = aBaa.init; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 127, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiThreeabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 85, 269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 85, 269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonRing-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 59, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 59, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behVabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 85, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 85, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonTahabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{42, 884}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 61, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{42, 884}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 61, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehVabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 85, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 85, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiTwoabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 85, 269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 85, 269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonThreedotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{154, -431}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -361}"; }, { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{154, -431}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -361}"; }, { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehHamzaabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = hamza.above; transform = "{1, 0, 0, 1, 85, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = hamza.above; transform = "{1, 0, 0, 1, 85, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behDotless-ar.init"; layers = ( { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehKashmiri-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yeh-ar.init"; layers = ( { anchors = ( { name = DigitAbove; position = "{85, 439}"; }, { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = DigitAbove; position = "{85, 439}"; }, { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "rnoon-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 85, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 85, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "teheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behVinvertedbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 63, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 63, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "tehThreedotsdown-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "peh-ar.init"; layers = ( { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{154, -431}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{154, -431}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "beeh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{103, -400}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{103, -400}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "beh-ar.init"; layers = ( { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "tteheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behThreedotsupabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noon-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "tehThreedotsupbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{113, -435}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{113, -435}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behThreedotsupbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{113, -435}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{113, -435}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "teh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "highhamzaYeh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 120, 30}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 501; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 120, 30}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 501; } ); }, { glyphname = "yehFarsiVinverted-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 85, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 85, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "theh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "tteh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 85, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 85, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonDotbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonVabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 61, 103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 61, 103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "alefMaksura-ar.init"; layers = ( { anchors = ( { name = AlefAbove; position = "{93, 293}"; }, { name = HamzaBelow; position = "{83, -171}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = AlefAbove; position = "{93, 293}"; }, { name = HamzaBelow; position = "{83, -171}"; }, { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "tehRing-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{154, -431}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{154, -431}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "e-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{103, -400}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{103, -400}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 83, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonghunna-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsi-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonTwodotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{127, -469}"; } ); components = ( { name = aBaa.medi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 127, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{127, -469}"; } ); components = ( { name = aBaa.medi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 127, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "beheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 147, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 147, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 122, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 122, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonRing-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behVabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonTahabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 869}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{78, 869}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehVabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 122, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 122, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonThreedotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -312}"; }, { name = aBaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -312}"; }, { name = aBaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehHamzaabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behDotless-ar.medi"; layers = ( { anchors = ( { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehKashmiri-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yeh-ar.medi"; layers = ( { anchors = ( { name = DigitAbove; position = "{122, 425}"; }, { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = DigitAbove; position = "{122, 425}"; }, { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "rnoon-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "teheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behVinvertedbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{107, -371}"; } ); components = ( { name = aBaa.medi; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 107, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{107, -371}"; } ); components = ( { name = aBaa.medi; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 107, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tehThreedotsdown-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "peh-ar.medi"; layers = ( { anchors = ( { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "beeh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -352}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -352}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "beh-ar.medi"; layers = ( { anchors = ( { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TaaAbove; position = "{122, 327}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tteheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behThreedotsupabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noon-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behThreedotsupbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "teh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiVinverted-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 122, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "theh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tteh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonDotbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonVabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "alefMaksura-ar.medi"; layers = ( { anchors = ( { name = AlefAbove; position = "{137, 479}"; }, { name = HamzaBelow; position = "{132, -93}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = AlefAbove; position = "{137, 479}"; }, { name = HamzaBelow; position = "{127, -171}"; }, { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tehRing-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "e-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -352}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -352}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 127, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonghunna-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsi-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonTwodotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aBaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "dalFourdots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{305, 859}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{305, 859}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalVinvertedabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 334, 122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 334, 122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalRing-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = ring.below; transform = "{1, 0, 0, 1, 205, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = ring.below; transform = "{1, 0, 0, 1, 205, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "ddal-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{315, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 334, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{315, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 334, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalVinvertedbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 225, 215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 225, 215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "thal-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dal-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalTwodotsverticalbelowTah-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{315, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 334, 586}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{315, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 334, 586}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dahal-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalDotbelowTah-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{315, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 334, 586}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{315, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 334, 586}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dalThreedotsdown-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{310, 835}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{310, 835}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "dul-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{276, 838}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{276, 838}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 334, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "ddahal-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{232, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 244, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "fehTwodotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 835, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 835, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "fehThreedotsupbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{835, -362}"; } ); components = ( { name = aFaa.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 835, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{835, -362}"; } ); components = ( { name = aFaa.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 835, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "feh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 684, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 684, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "fehDotless-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "fehDotmovedbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 830, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 830, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "fehDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 684, 420}"; }, { name = "fehDotmovedbelow-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 684, 420}"; }, { name = "fehDotmovedbelow-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "veh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 689, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 689, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "fehThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{876, -358}"; } ); components = ( { name = aFaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 837, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{876, -358}"; } ); components = ( { name = aFaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 837, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "peheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 689, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1005; }, { anchors = ( { name = TashkilAbove; position = "{684, 801}"; }, { name = TashkilBelow; position = "{488, -327}"; } ); components = ( { name = aFaa.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 689, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1005; } ); }, { glyphname = "qafDotless-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "fehThreedotsupbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{152, -362}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{152, -362}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "fehTwodotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "qaf-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "feh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 78, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 78, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "qafThreedotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "fehDotless-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "fehDotmovedbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "fehDotbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 78, 493}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 78, 493}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "veh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "fehThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{193, -358}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{193, -358}"; } ); components = ( { name = aFaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "peheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 113, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "qafDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 78, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 78, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "qafDotless-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "fehThreedotsupbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{186, -362}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 186, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{186, -362}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 186, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "fehTwodotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 186, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 186, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "qaf-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "feh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 237, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 237, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "qafThreedotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "fehDotless-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "fehDotmovedbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 181, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 181, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "fehDotbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 237, 518}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 181, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 237, 518}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 181, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "veh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "fehThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{227, -358}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 188, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{227, -358}"; } ); components = ( { name = aFaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 188, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "peheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 201, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "qafDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 237, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 378; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{161, -327}"; } ); components = ( { name = aFaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 237, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 378; } ); }, { glyphname = "khah-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hah-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahHamzaabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 342, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 342, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "tcheheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 405, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 405, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahThreedotsabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "jeem-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{405, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahTwodotsverticalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "dyeh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{410, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{410, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{386, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 376, -348}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{386, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 376, -348}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahTahbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{376, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{376, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "nyeh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{400, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{400, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 391, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "tchehDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahFourbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 326, -426}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 326, -426}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahThreedotsupbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 391, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 391, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "hahTahabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 342, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -24}"; } ); components = ( { name = aHaa.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 342, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "tcheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 639; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{432, -565}"; } ); components = ( { name = aHaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 393, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 639; } ); }, { glyphname = "khah-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hah-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahHamzaabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = hamza.above; transform = "{1, 0, 0, 1, 298, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = hamza.above; transform = "{1, 0, 0, 1, 298, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "tcheheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 312, -284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 312, -284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahThreedotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "jeem-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 303, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 303, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "dyeh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{342, -442}"; } ); components = ( { name = aHaa.init; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 317, -270}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 332, -398}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{342, -442}"; } ); components = ( { name = aHaa.init; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 317, -270}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 332, -398}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTahbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 317, -270}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 317, -270}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "nyeh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "tchehDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 300, -289}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 298, 396}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 300, -289}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahFourbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -396}"; } ); components = ( { name = aHaa.init; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 298, -440}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -396}"; } ); components = ( { name = aHaa.init; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 298, -440}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahThreedotsupbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 298, -167}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTahabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 298, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 298, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "tcheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 300, -289}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{298, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aHaa.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 300, -289}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "khah-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hah-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahHamzaabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 317, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 317, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "tcheheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 308, -278}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 308, -278}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahThreedotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 323, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 323, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "jeem-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 317, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 317, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 323, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 323, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "dyeh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{337, -436}"; } ); components = ( { name = aHaa.medi; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -264}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 327, -392}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{337, -436}"; } ); components = ( { name = aHaa.medi; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -264}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 327, -392}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahTahbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "nyeh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "tchehDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 396}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 396}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahFourbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -391}"; } ); components = ( { name = aHaa.medi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 293, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -391}"; } ); components = ( { name = aHaa.medi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 293, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "hahTahabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 317, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 317, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "tcheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 610; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 610; } ); }, { glyphname = "heh-ar.fina"; layers = ( { anchors = ( { name = HamzaAbove; position = "{195, 537}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aHeh.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { anchors = ( { name = HamzaAbove; position = "{195, 537}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aHeh.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); }, { glyphname = "hehgoal-ar.fina"; layers = ( { anchors = ( { name = HamzaAbove; position = "{171, 334}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -237}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "430 90 OFFCURVE", "439 83 OFFCURVE", "438 71 CURVE SMOOTH", "435 43 OFFCURVE", "433 27 OFFCURVE", "431 22 CURVE SMOOTH", "426 8 OFFCURVE", "419 1 OFFCURVE", "408 0 CURVE SMOOTH", "369 -2 OFFCURVE", "334 5 OFFCURVE", "303 21 CURVE SMOOTH", "273 36 OFFCURVE", "248 59 OFFCURVE", "225 90 CURVE", "220 96 OFFCURVE", "213 95 OFFCURVE", "205 88 CURVE SMOOTH", "195 80 OFFCURVE", "179 64 OFFCURVE", "157 37 CURVE SMOOTH", "119 -9 OFFCURVE", "96 -36 OFFCURVE", "89 -43 CURVE SMOOTH", "85 -48 OFFCURVE", "81 -49 OFFCURVE", "77 -47 CURVE SMOOTH", "73 -45 OFFCURVE", "73 -40 OFFCURVE", "77 -33 CURVE SMOOTH", "106 17 OFFCURVE", "151 86 OFFCURVE", "212 173 CURVE SMOOTH", "233 203 OFFCURVE", "250 207 OFFCURVE", "265 186 CURVE SMOOTH", "285 158 OFFCURVE", "307 136 OFFCURVE", "332 119 CURVE SMOOTH", "357 102 OFFCURVE", "383 92 OFFCURVE", "409 91 CURVE SMOOTH" ); } ); width = 408; }, { anchors = ( { name = HamzaAbove; position = "{171, 334}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -237}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "432 104 OFFCURVE", "440 102 OFFCURVE", "445 99 CURVE SMOOTH", "457 91 OFFCURVE", "457 68 OFFCURVE", "444 31 CURVE SMOOTH", "434 2 OFFCURVE", "418 -13 OFFCURVE", "395 -14 CURVE SMOOTH", "319 -18 OFFCURVE", "258 11 OFFCURVE", "211 76 CURVE SMOOTH", "208 79 OFFCURVE", "205 80 OFFCURVE", "202 79 CURVE", "195 73 OFFCURVE", "177 53 OFFCURVE", "149 19 CURVE SMOOTH", "121 -15 OFFCURVE", "101 -38 OFFCURVE", "90 -50 CURVE SMOOTH", "79 -62 OFFCURVE", "71 -66 OFFCURVE", "65 -62 CURVE SMOOTH", "59 -58 OFFCURVE", "59 -51 OFFCURVE", "65 -41 CURVE SMOOTH", "95 10 OFFCURVE", "126 59 OFFCURVE", "160 108 CURVE SMOOTH", "194 157 OFFCURVE", "216 187 OFFCURVE", "228 199 CURVE SMOOTH", "248 219 OFFCURVE", "265 218 OFFCURVE", "279 199 CURVE SMOOTH", "299 171 OFFCURVE", "321 149 OFFCURVE", "346 132 CURVE SMOOTH", "371 115 OFFCURVE", "395 106 OFFCURVE", "421 105 CURVE SMOOTH" ); } ); width = 408; } ); }, { glyphname = "tehMarbutagoal-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{92, 801}"; }, { name = TashkilBelow; position = "{141, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 208, 276}"; }, { name = "hehgoal-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 408; }, { anchors = ( { name = TashkilAbove; position = "{92, 801}"; }, { name = TashkilBelow; position = "{141, -327}"; } ); components = ( { name = "hehgoal-ar.fina"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 208, 276}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 408; } ); }, { glyphname = "ae-ar.fina"; layers = ( { anchors = ( { name = HamzaAbove; position = "{195, 537}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aHeh.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { anchors = ( { name = HamzaAbove; position = "{195, 537}"; }, { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aHeh.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); }, { glyphname = "tehMarbuta-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aHeh.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aHeh.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); }, { glyphname = "heh-ar.init"; layers = ( { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); }, { glyphname = "hehgoal-ar.init"; layers = ( { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = HamzaAbove; position = "{180, 532}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); }, { glyphname = "heh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "hehgoal-ar.medi"; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "hehgoal-ar.medi.PostTooth"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "hehgoal-ar.medi.PostTooth"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 460; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 649, 640}"; }, { name = aGaf.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{635, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 649, 640}"; }, { name = aGaf.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kehehThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{503, -386}"; } ); components = ( { name = aGaf.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 457, -347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{503, -386}"; } ); components = ( { name = aGaf.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 457, -347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kehehThreedotsupbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{500, -327}"; } ); components = ( { name = aGaf.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 480, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{500, -327}"; } ); components = ( { name = aGaf.fina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 480, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kaf-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gafRing-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 861, 656}"; }, { name = "gaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 861, 656}"; }, { name = "gaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "gueh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "gaf-ar.fina"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 454, -202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "gaf-ar.fina"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 454, -202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "gafTwodotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "gaf-ar.fina"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 461, -222}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{480, -327}"; } ); components = ( { name = "gaf-ar.fina"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 461, -222}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kafRing-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.fina; }, { name = ring.below; transform = "{1, 0, 0, 1, 861, 655.992}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.fina; }, { name = ring.below; transform = "{1, 0, 0, 1, 861, 655.992}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kafDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "ng-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 910}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{347, 910}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kafThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 359, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 359, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gaf-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 876, 736}"; }, { name = aGaf.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 876, 736}"; }, { name = aGaf.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "keheh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "gafThreedots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{495, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 544, 640}"; }, { name = "gaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{495, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 544, 640}"; }, { name = "gaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kehehThreedotsabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{495, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 544, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{495, 942}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = aGaf.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 544, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kehehDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{636, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 648, 640}"; }, { name = aGaf.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{636, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 648, 640}"; }, { name = aGaf.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "ngoeh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 542, 640}"; }, { name = "gaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1132; }, { anchors = ( { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 542, 640}"; }, { name = "gaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1132; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kehehThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -148}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -148}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kaf-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "gafRing-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 303, 604}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 303, 604}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "gueh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -148}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -148}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "gafTwodotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -148}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -148}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kafRing-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = ring.below; transform = "{1, 0, 0, 1, 303, 604}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = ring.below; transform = "{1, 0, 0, 1, 303, 604}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kafDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "ng-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kafThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "gaf-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 379, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "keheh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "gafThreedots-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 428, 683}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 50, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 428, 683}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 50, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kehehThreedotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kehehDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 138, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "ngoeh-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 628}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 428, 683}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 659; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aKaf.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 628}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 428, 683}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 659; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 373, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 373, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 371, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 371, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kaf-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "gafRing-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = ring.below; transform = "{1, 0, 0, 1, 318, 656}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = ring.below; transform = "{1, 0, 0, 1, 318, 656}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "gueh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 371, -166}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 371, -166}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "gafTwodotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 371, -166}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 371, -166}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kafRing-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = ring.below; transform = "{1, 0, 0, 1, 318, 656}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = ring.below; transform = "{1, 0, 0, 1, 318, 656}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kafDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "ng-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kafThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 373, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 373, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "gaf-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 333, 736}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "keheh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "gafThreedots-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 50, 640}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 386, 760}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 50, 640}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 386, 760}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kehehThreedotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "kehehDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 105, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "ngoeh-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 640}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 386, 760}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 588; }, { anchors = ( { name = TashkilAbove; position = "{273, 801}"; }, { name = TashkilBelow; position = "{297, -327}"; } ); components = ( { name = aKaf.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 640}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 386, 760}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 588; } ); }, { glyphname = "lamVabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "lamThreedotsabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "lam-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "lamThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "lamDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "lamBar-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 491, 424}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 486, 424}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "lamVabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 985}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 301}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{39, 985}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 301}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "lamThreedotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-23, 1018}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 35, 746}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{-23, 1018}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 35, 746}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "lam-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "lamThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 95, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 95, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "lamDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{15, 892}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 746}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{15, 892}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 746}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "lamBar-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 59, 502}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{39, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.init; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 59, 502}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "lamVabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 967}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{63, 967}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); }, { glyphname = "lamThreedotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{1, 1000}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 728}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{1, 1000}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 728}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); }, { glyphname = "lam-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); }, { glyphname = "lamThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); }, { glyphname = "lamDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 874}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 728}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{39, 874}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 728}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); }, { glyphname = "lamBar-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 82, 508}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aLam.medi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 82, 508}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 197; } ); }, { glyphname = "meemDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aMem.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 251, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aMem.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 251, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "meem-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aMem.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aMem.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "meemDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aMem.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 327, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { anchors = ( { name = TashkilAbove; position = "{231, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aMem.fina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 327, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "meemDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 233, 376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 389; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 233, 376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 389; } ); }, { glyphname = "meem-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 389; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 389; } ); }, { glyphname = "meemDotbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 239, -132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 389; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.init; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 239, -132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 389; } ); }, { glyphname = "meemDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aMem.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 217, 308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aMem.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 217, 308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "meem-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aMem.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aMem.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "meemDotbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aMem.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 227, -259}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aMem.medi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 227, -259}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "noon-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonTwodotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{277, -598}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{277, -598}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonghunna-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonRing-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 267, -291}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 267, -291}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "rnoon-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 332, 195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 332, 195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonTahabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 308, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 308, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{282, -574}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 267, -554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{282, -574}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 267, -554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonVabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 308, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 308, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "noonThreedotsabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 615; }, { anchors = ( { name = TashkilAbove; position = "{332, 801}"; }, { name = TashkilBelow; position = "{317, -391}"; } ); components = ( { name = aNon.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 615; } ); }, { glyphname = "qafThreedotsabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 469, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 469, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "qafDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 469, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 469, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "qaf-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 469, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 469, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "qafDotless-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aQaf.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "rreh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 174, 300}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 174, 300}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehv-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 174, -66}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 174, -66}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehRing-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 100, -233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 100, -233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{225, -438}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 210, -419}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{225, -438}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 210, -419}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehVbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{206, -14}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 191, -14}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{206, -14}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 191, -14}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{225, -438}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 210, -419}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -150}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{225, -438}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 210, -419}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -150}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehTwodots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "jeh-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehFourdots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehStroke-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 252, -129}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 252, -129}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehVinvertedabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 174, -66}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 174, -66}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "zain-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 175, 329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 175, 329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{145, 866}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 165, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{145, 866}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 174, 329}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 165, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "reh-ar.fina"; layers = ( { anchors = ( { name = TaaAbove; position = "{320, 300}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TaaAbove; position = "{320, 300}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 175, 329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 175, 329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "rehHamzaabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 175, -66}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 343; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aRaa.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 175, -66}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 343; } ); }, { glyphname = "sadTwodotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 835, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 835, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); }, { glyphname = "dadDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 822, 433}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 830, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 822, 433}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 830, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); }, { glyphname = "dad-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 822, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 822, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); }, { glyphname = "sadThreedots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 822, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 822, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); }, { glyphname = "sad-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1181; }, { anchors = ( { name = TashkilAbove; position = "{820, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1181; } ); }, { glyphname = "sadTwodotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "dadDotbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "dad-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "sadThreedots-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 310, 368}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "sad-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "sadTwodotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); }, { glyphname = "dadDotbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 348, 414}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 348, 414}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); }, { glyphname = "dad-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 348, 414}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 348, 414}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); }, { glyphname = "sadThreedots-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 348, 414}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 348, 414}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); }, { glyphname = "sad-ar.medi"; layers = ( { anchors = ( { name = SeenAbove; position = "{361, 391}"; }, { name = SeenBelow; position = "{361, -195}"; }, { name = TashkilAbove; position = "{361, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 722; }, { anchors = ( { name = SeenAbove; position = "{361, 391}"; }, { name = SeenBelow; position = "{361, -195}"; }, { name = TashkilAbove; position = "{361, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aSad.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 722; } ); }, { glyphname = "sheenDotbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenTwodotsverticalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seen-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenVinvertedabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 779, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 779, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenFourabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 779, 195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 779, 195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "sheen-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{750, 835}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 769, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{750, 835}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 769, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenFourdotsabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenDotbelowDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 781, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "seenThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "sheenThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1079; }, { anchors = ( { name = TashkilAbove; position = "{732, 801}"; }, { name = TashkilBelow; position = "{312, -391}"; } ); components = ( { name = aSen.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 779, 298}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 789, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1079; } ); }, { glyphname = "sheenDotbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seen-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenVinvertedabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 317, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 317, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenFourabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 317, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 317, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheen-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{288, 908}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 308, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{288, 908}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 308, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenFourdotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenDotbelowDotabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheenThreedotsbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 317, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheenDotbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 269, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 269, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenTwodotsverticalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seen-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenVinvertedabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 291, -84}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 291, -84}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenFourabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 291, 208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 291, 208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheen-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 848}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 281, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{261, 848}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 281, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenFourdotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenDotbelowDotabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 269, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aSen.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 269, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{315, -358}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 276, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{315, -358}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 276, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheenThreedotsbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{315, -358}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 276, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{315, -358}"; } ); components = ( { name = aSen.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 291, 311}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 276, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "zah-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aTaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 576, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 751; }, { anchors = ( { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aTaa.fina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 576, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 751; } ); }, { glyphname = "tah-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aTaa.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 751; }, { anchors = ( { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aTaa.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 751; } ); }, { glyphname = "tahThreedots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aTaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 577, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 751; }, { anchors = ( { name = TashkilAbove; position = "{488, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aTaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 577, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 751; } ); }, { glyphname = "zah-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aTaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 374, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 567; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aTaa.init; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 374, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 567; } ); }, { glyphname = "tah-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aTaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 567; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aTaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 567; } ); }, { glyphname = "tahThreedots-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aTaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 372, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 567; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aTaa.init; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 372, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 567; } ); }, { glyphname = "zah-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aTaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 551; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aTaa.medi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 342, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 551; } ); }, { glyphname = "tah-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aTaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 551; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aTaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 551; } ); }, { glyphname = "tahThreedots-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aTaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 342, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 551; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aTaa.medi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 342, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 551; } ); }, { glyphname = "ve-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 197, 309}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 197, 309}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "wawHamzaabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 197, -86}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 197, -86}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "wawTwodots-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 197, 309}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 197, 309}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "wawDotabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 197, 309}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 197, 309}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "wawTwoabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 197, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 197, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "oe-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 239, -116}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 239, -116}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "u-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 491, 1432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 491, 1432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "wawring-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "kirghizoe-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 258, -125}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 258, -125}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "yu-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = aAlf.dagger; transform = "{1, 0, 0, 1, 197, -135}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = aAlf.dagger; transform = "{1, 0, 0, 1, 197, -135}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "kirghizyu-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 239, -116}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 239, -116}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "wawThreeAbove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 197, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 197, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "waw-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{244, 317}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 345; }, { anchors = ( { name = AlefAbove; position = "{244, 317}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aWaw.fina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 345; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{366, -785}"; } ); components = ( { name = aYaa.fina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 366, -829}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{366, -785}"; } ); components = ( { name = aYaa.fina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 366, -829}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehThreedotsbelow-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{407, -698}"; } ); components = ( { name = aYaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 368, -677}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{407, -698}"; } ); components = ( { name = aYaa.fina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 368, -677}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 259, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 259, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 259, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 259, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehFarsiVinverted-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 210, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 210, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 259, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 259, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "e-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{385, -667}"; } ); components = ( { name = aYaa.fina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 366, -555}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{385, -667}"; } ); components = ( { name = aYaa.fina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 366, -555}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "alefMaksura-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{366, -487}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{366, -487}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 259, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 259, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehTail-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 75, -14}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 75, -14}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehFarsi-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehHamzaabove-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{137, 498}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 161, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{137, 498}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 161, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehKashmiri-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{366, -584}"; } ); components = ( { name = aYaa.fina; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, -389}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{366, -584}"; } ); components = ( { name = aYaa.fina; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, -389}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yeh-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{259, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{375, -599}"; } ); components = ( { name = aYaa.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 366, -555}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{259, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{375, -599}"; } ); components = ( { name = aYaa.fina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 366, -555}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "yehVabove-ar.fina"; layers = ( { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 210, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = AlefAbove; position = "{161, 244}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{342, -376}"; } ); components = ( { name = aYaa.fina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 210, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "lamVabove-ar.medi.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 1013}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 254; }, { anchors = ( { name = TashkilAbove; position = "{83, 1013}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 1046}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 254; }, { anchors = ( { name = TashkilAbove; position = "{21, 1046}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "lam-ar.medi.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 254; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 254; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "lamDotabove-ar.medi.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 920}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 254; }, { anchors = ( { name = TashkilAbove; position = "{59, 920}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "lamBar-ar.medi.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 82, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 254; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aLam.medi.LamMemFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 82, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "meem-ar.fina.LamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aMem.fina.LamMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aMem.fina.LamMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -396}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 95, -439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -396}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 95, -439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "beheh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 149, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 149, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 290; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 297; } ); }, { glyphname = "noonRing-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 251; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 80, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 80, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 183; } ); }, { glyphname = "behVabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 271; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "noonTahabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{75, 908}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{75, 908}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 298; } ); }, { glyphname = "yehVabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 290; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 297; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 290; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 297; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -288}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -288}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 718}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 290; }, { anchors = ( { name = TashkilAbove; position = "{95, 718}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 297; } ); }, { glyphname = "behDotless-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 181; } ); }, { glyphname = "yehKashmiri-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 206; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 215; } ); }, { glyphname = "yeh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = DigitAbove; position = "{119, 464}"; }, { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = DigitAbove; position = "{119, 464}"; }, { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "rnoon-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 119, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 316; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 119, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 323; } ); }, { glyphname = "teheh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 317; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 75, 239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 75, 239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 183; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 308; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 316; } ); }, { glyphname = "peh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); }, { glyphname = "beeh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "beh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 183; } ); }, { glyphname = "tteheh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 251; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 306; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 313; } ); }, { glyphname = "noon-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 251; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 316; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "teh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 317; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{192, 718}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 130, 10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 511; }, { anchors = ( { name = TashkilAbove; position = "{192, 718}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 130, 10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 511; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 300; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "theh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 306; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 313; } ); }, { glyphname = "tteh-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 119, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 316; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 119, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 323; } ); }, { glyphname = "noonDotbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 240; } ); }, { glyphname = "noonVabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 254; } ); }, { glyphname = "alefMaksura-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{95, -98}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{95, -98}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 181; } ); }, { glyphname = "tehRing-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 317; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 234; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 185; } ); }, { glyphname = "e-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 95, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "noonghunna-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 181; } ); }, { glyphname = "yehFarsi-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 184; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 228; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "rreh-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 167, 343}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 167, 343}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehv-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 167, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 167, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehRing-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -144}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -144}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehDotbelow-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{173, -407}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -388}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{173, -407}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -388}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehVbelow-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{153, 18}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 139, 18}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{153, 18}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 139, 18}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{173, -407}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -388}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 61, -71}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{173, -407}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -388}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 61, -71}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehTwodots-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "jeh-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehFourdots-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehStroke-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 254, -49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 254, -49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehVinvertedabove-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 167, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 167, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "zain-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 372}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 372}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{137, 909}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 157, 592}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{137, 909}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 167, 372}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 157, 592}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "reh-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{313, 343}"; }, { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TaaAbove; position = "{313, 343}"; }, { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 166, 372}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 166, 372}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehHamzaabove-ar.fina.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{143, 694}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 167, -23}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{143, 694}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 167, -23}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "lamVabove-ar.medi.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 989}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 107, 305}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 253; }, { anchors = ( { name = TashkilAbove; position = "{107, 989}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 107, 305}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 253; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{45, 1021}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 750}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 253; }, { anchors = ( { name = TashkilAbove; position = "{45, 1021}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 750}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 253; } ); }, { glyphname = "lam-ar.medi.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 253; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 253; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 253; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 253; } ); }, { glyphname = "lamDotabove-ar.medi.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 896}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 107, 750}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 253; }, { anchors = ( { name = TashkilAbove; position = "{83, 896}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 107, 750}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 253; } ); }, { glyphname = "lamBar-ar.medi.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 106, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 253; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.medi.LamWawFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 106, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 253; } ); }, { glyphname = "ve-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 198, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 198, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "wawHamzaabove-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 198, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 198, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "wawTwodots-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 198, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 198, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "wawDotabove-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 198, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 198, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "wawTwoabove-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 198, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 198, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "oe-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 240, -92}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 240, -92}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "u-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 491, 1462}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dammainverted-ar.urd"; transform = "{-1, 0, 0, -1, 491, 1462}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "wawring-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 121, -40}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 121, -40}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "kirghizoe-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 278, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 278, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "yu-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = aAlf.dagger; transform = "{1, 0, 0, 1, 198, -112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = aAlf.dagger; transform = "{1, 0, 0, 1, 198, -112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "kirghizyu-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 240, -92}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 240, -92}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "wawThreeAbove-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 198, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 198, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "waw-ar.fina.LamWawFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{195, 317}"; }, { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = AlefAbove; position = "{195, 317}"; }, { name = TashkilAbove; position = "{149, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aWaw.fina.LamWawFina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "lamVabove-ar.init.LamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{151, 1001}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 151, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 559; }, { anchors = ( { name = TashkilAbove; position = "{151, 1001}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 151, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 559; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 1034}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 147, 762}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 559; }, { anchors = ( { name = TashkilAbove; position = "{89, 1034}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 147, 762}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 559; } ); }, { glyphname = "lam-ar.init.LamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 559; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 559; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 559; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 559; } ); }, { glyphname = "lamDotabove-ar.init.LamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 908}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 151, 762}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 559; }, { anchors = ( { name = TashkilAbove; position = "{127, 908}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 151, 762}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 559; } ); }, { glyphname = "lamBar-ar.init.LamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 158, 521}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 559; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{411, -327}"; } ); components = ( { name = aLam.init.LamHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 158, 521}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 559; } ); }, { glyphname = "qafDotless-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "fehThreedotsupbelow-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{283, -567}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 283, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{283, -567}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 283, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "fehTwodotsbelow-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{292, -464}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 283, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{292, -464}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 283, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "qaf-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "feh-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 285, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 285, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "qafThreedotsabove-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "fehDotless-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "fehDotmovedbelow-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{292, -439}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 277, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{292, -439}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 277, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "fehDotbelow-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{292, -439}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 285, 518}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 277, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{292, -439}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 285, 518}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 277, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "veh-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "fehThreedotsbelow-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{324, -563}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 285, -493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{324, -563}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 285, -493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "peheh-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 249, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "qafDotabove-ar.medi.FaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 285, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 426; }, { anchors = ( { name = TashkilAbove; position = "{268, 801}"; }, { name = TashkilBelow; position = "{253, -327}"; } ); components = ( { name = aFaa.medi.FaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 285, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 426; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{355, -830}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 355, -874}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{355, -830}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 355, -874}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{396, -792}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 357, -722}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{396, -792}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 357, -722}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 229, 15}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 229, 15}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 230, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 230, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 278, -278}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 278, -278}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 230, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 230, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "e-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{375, -761}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 355, -600}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{375, -761}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 355, -600}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "alefMaksura-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = HamzaBelow; position = "{355, -532}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = HamzaBelow; position = "{355, -532}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 229, 15}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 229, 15}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehTail-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 80, -51}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 80, -51}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsi-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehHamzaabove-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 132, -278}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 132, -278}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehKashmiri-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -635}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 293, -439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{293, -635}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 293, -439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yeh-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = DigitAbove; position = "{229, 186}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{365, -693}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 355, -600}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = DigitAbove; position = "{229, 186}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{365, -693}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 355, -600}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehVabove-ar.fina.FaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 278, -278}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{278, 0}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -391}"; } ); components = ( { name = aYaa.fina.FaaYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 278, -278}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "lamVabove-ar.init.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{4, 1009}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 4, 325}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 202; }, { anchors = ( { name = TashkilAbove; position = "{4, 1009}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 4, 325}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 202; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-58, 1042}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 770}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 202; }, { anchors = ( { name = TashkilAbove; position = "{-58, 1042}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 770}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 202; } ); }, { glyphname = "lam-ar.init.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 202; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 202; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 202; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 202; } ); }, { glyphname = "lamDotabove-ar.init.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-20, 916}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 4, 770}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 202; }, { anchors = ( { name = TashkilAbove; position = "{-20, 916}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 4, 770}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 202; } ); }, { glyphname = "lamBar-ar.init.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 27, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 202; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.LamLamHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 27, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 202; } ); }, { glyphname = "lamVabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{204, 1016}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 204, 333}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 360; }, { anchors = ( { name = TashkilAbove; position = "{204, 1016}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 204, 333}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 360; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 1049}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 200, 777}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 360; }, { anchors = ( { name = TashkilAbove; position = "{142, 1049}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 200, 777}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 360; } ); }, { glyphname = "lam-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 360; }, { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 360; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 276, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 360; }, { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 276, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 360; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 923}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 204, 777}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 360; }, { anchors = ( { name = TashkilAbove; position = "{180, 923}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 204, 777}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 360; } ); }, { glyphname = "lamBar-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 218, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 360; }, { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aLam.medi.LamLamHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 218, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 360; } ); }, { glyphname = "khah-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hah-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahHamzaabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 49, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 49, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "tcheheh-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 298, -278}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 298, -278}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahThreedotsabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 54, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 54, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "jeem-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 83, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 83, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 54, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 54, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "dyeh-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{328, -436}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 303, -264}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 318, -392}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{328, -436}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 303, -264}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 318, -392}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTahbelow-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 303, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 303, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "nyeh-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "tchehDotabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 469}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 286, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 469}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 286, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahFourbelow-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{284, -391}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 284, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{284, -391}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 284, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 284, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTahabove-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 83, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{63, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 83, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "tcheh-ar.medi.LamLamHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 286, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aHaa.medi.LamLamHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 286, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{218, -581}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 218, -625}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{218, -581}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 218, -625}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "beheh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -513}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 220, -469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -513}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 220, -469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 179, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 179, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonRing-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 269, 59}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 269, 59}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{171, -420}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 151, -376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{171, -420}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 151, -376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behVabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonTahabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 293}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 293}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehVabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 179, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 179, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{247, -495}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -474}"; }, { name = aBaa.medi.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{247, -495}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -474}"; }, { name = aBaa.medi.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 179, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 179, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behDotless-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{218, -381}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 218, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{218, -381}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 218, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yeh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = DigitAbove; position = "{179, 391}"; }, { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = DigitAbove; position = "{179, 391}"; }, { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "rnoon-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "teheh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{199, -483}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 199, 54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{199, -483}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 199, 54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "peh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{247, -495}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{247, -495}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "beeh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{238, -464}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{238, -464}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "beh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{233, -371}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TaaAbove; position = "{179, 293}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{233, -371}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "tteheh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{233, -371}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{233, -371}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noon-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{206, -499}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{206, -499}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{206, -499}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{206, -499}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "teh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 179, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 179, -73}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "theh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "tteh-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{233, -371}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{233, -371}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonVabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, 73}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, 73}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "alefMaksura-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{186, 479}"; }, { name = HamzaBelow; position = "{218, -283}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = AlefAbove; position = "{186, 479}"; }, { name = HamzaBelow; position = "{218, -283}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "tehRing-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 269, 59}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 269, 59}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{247, -495}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{247, -495}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 208, -474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "e-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{238, -464}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{238, -464}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 218, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonghunna-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aBaa.medi.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehFarsi-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "meem-ar.fina.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{269, -586}"; } ); components = ( { name = aMem.fina.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 223; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{269, -586}"; } ); components = ( { name = aMem.fina.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 223; } ); }, { glyphname = "sadTwodotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 591, -16}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 849; }, { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 591, -16}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 849; } ); }, { glyphname = "dadDotbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 453, 620}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 586, -16}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 849; }, { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 453, 620}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 586, -16}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 849; } ); }, { glyphname = "dad-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 453, 620}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 849; }, { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 453, 620}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 849; } ); }, { glyphname = "sadThreedots-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{395, 892}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 453, 620}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 849; }, { anchors = ( { name = TashkilAbove; position = "{395, 892}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 453, 620}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 849; } ); }, { glyphname = "sad-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 849; }, { anchors = ( { name = TashkilAbove; position = "{453, 801}"; }, { name = TashkilBelow; position = "{586, -137}"; }, { name = exit; position = "{0, 207}"; } ); components = ( { name = aSad.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 849; } ); }, { glyphname = "lamVabove-ar.init.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 994}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{83, 994}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 1007}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 735}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{39, 1007}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 735}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lam-ar.init.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamDotabove-ar.init.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 901}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 754}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{49, 901}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 754}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamBar-ar.init.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 101, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aLam.init.LamBaaMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 101, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{130, -469}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 130, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{130, -469}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 130, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "beheh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -376}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 146, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -376}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 146, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{38, 845}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 8, 430}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{38, 845}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 8, 430}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonRing-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 51, 357}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 51, 357}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 77, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 77, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behVabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonTahabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-36, 1045}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -16, 728}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{-36, 1045}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -16, 728}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehVabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{8, 845}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 8, 430}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{8, 845}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 8, 430}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonThreedotsabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{172, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 133, -337}"; }, { name = aBaa.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{172, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 133, -337}"; }, { name = aBaa.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehHamzaabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-16, 854}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{-16, 854}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behDotless-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehKashmiri-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 130, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 130, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yeh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{8, 601}"; }, { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = DigitAbove; position = "{8, 601}"; }, { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "rnoon-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-60, 820}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -41, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{-60, 820}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -41, 503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "teheh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-21, 825}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{-21, 825}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behVinvertedbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{111, -371}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 111, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{111, -371}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 111, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "tehThreedotsdown-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "peh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{172, -358}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 133, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{172, -358}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 133, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "beeh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{150, -352}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{150, -352}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "beh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TaaAbove; position = "{-41, 503}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "tteheh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behThreedotsupabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noon-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{131, -362}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{131, -362}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{131, -362}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{131, -362}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "teh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 8, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "theh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "tteh-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-60, 820}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -41, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{-60, 820}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -41, 503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonDotbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonVabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-16, 947}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -16, 264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{-16, 947}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -16, 264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "alefMaksura-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{130, -98}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{130, -98}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "tehRing-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 51, 357}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 51, 357}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{172, -358}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 133, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{172, -358}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 133, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "e-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{150, -352}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{150, -352}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 130, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonghunna-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehFarsi-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "meem-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aMem.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -469}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 39, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -469}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 39, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "beheh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{29, -376}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 29, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{29, -376}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 29, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonRing-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, -40, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, -40, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behVabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonTahabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{32, 945}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 51, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{32, 945}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 51, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehVabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{56, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 17, -337}"; }, { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{56, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 17, -337}"; }, { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{29, 754}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = hamza.above; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{29, 754}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = hamza.above; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behDotless-ar.init.BaaDal"; layers = ( { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehKashmiri-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 39, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 39, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yeh-ar.init.BaaDal"; layers = ( { anchors = ( { name = DigitAbove; position = "{76, 501}"; }, { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = DigitAbove; position = "{76, 501}"; }, { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "rnoon-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 76, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 76, 403}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "teheh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -371}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 20, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -371}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 20, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "peh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{56, -358}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 17, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{56, -358}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 17, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "beeh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -352}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -352}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "beh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tteheh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noon-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{15, -362}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{15, -362}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{15, -362}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{15, -362}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "teh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 754}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 100, 30}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{127, 754}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 100, 30}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "theh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tteh-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 76, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 76, 403}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonDotbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonVabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{51, 848}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 51, 164}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{51, 848}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 51, 164}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "alefMaksura-ar.init.BaaDal"; layers = ( { anchors = ( { name = AlefAbove; position = "{49, 479}"; }, { name = HamzaBelow; position = "{39, -171}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = AlefAbove; position = "{49, 479}"; }, { name = HamzaBelow; position = "{39, -171}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tehRing-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{56, -358}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 17, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{56, -358}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 17, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "e-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -352}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -352}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 39, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonghunna-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsi-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "dalFourdots-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{280, 847}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{280, 847}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalVinvertedabove-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 305, 122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 305, 122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalRing-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 208, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 208, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "ddal-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{285, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 305, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{285, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 305, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalVinvertedbelow-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{245, -332}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 245, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{245, -332}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 245, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "thal-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dal-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalTwodotsverticalbelowTah-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{285, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 305, 586}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{285, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 305, 586}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dahal-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalDotbelowTah-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{285, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 305, 586}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{285, 903}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 305, 586}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalDotbelow-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dalThreedotsdown-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{285, 823}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{285, 823}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "dul-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{251, 826}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{251, 826}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 309, 554}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "ddahal-ar.fina.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 481; }, { anchors = ( { name = TashkilAbove; position = "{211, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aDal.fina.BaaDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 265, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -498}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 162, -542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -498}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 162, -542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "beheh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 176, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 176, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 1087}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{74, 1087}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonRing-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 107, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 107, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behVabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonTahabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 1287}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 20, 970}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{0, 1287}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 20, 970}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehVabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1087}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1087}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -317}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -317}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 1097}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 1097}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behDotless-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehKashmiri-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 162, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 162, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yeh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{44, 843}"; }, { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = DigitAbove; position = "{44, 843}"; }, { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "rnoon-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 44, 745}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{25, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 44, 745}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "teheh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{15, 1067}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{15, 1067}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -400}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 142, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -400}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 142, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 1043}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 1043}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "peh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "beeh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -381}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -381}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "beh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "tteheh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 1014}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{25, 1014}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-14, 1046}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{-14, 1046}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noon-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "teh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{118, 1097}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 167, 410}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 548; }, { anchors = ( { name = TashkilAbove; position = "{118, 1097}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 167, 410}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 548; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "theh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-14, 1046}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{-14, 1046}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "tteh-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 44, 745}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{25, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 44, 745}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonDotbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonVabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 1189}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 20, 506}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 1189}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 20, 506}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "alefMaksura-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{50, 801}"; }, { name = HamzaBelow; position = "{162, -200}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = AlefAbove; position = "{50, 801}"; }, { name = HamzaBelow; position = "{162, -200}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "tehRing-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "e-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -381}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -381}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonghunna-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsi-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "meem-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aMem.medi.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 259; }, { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{269, -327}"; } ); components = ( { name = aMem.medi.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 259; } ); }, { glyphname = "khah-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 89, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 89, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hah-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahHamzaabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 89, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 89, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "tcheheh-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 167, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 167, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahThreedotsabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 94, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 94, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "jeem-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 89, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 89, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 94, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 94, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "dyeh-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{196, -456}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 172, -283}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 187, -412}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{196, -456}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 172, -283}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 187, -412}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahTahbelow-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 172, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 172, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "nyeh-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "tchehDotabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 89, 469}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 89, 469}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahFourbelow-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -410}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 152, -454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -410}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 152, -454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "hahTahabove-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{69, 854}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 89, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{69, 854}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 89, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "tcheh-ar.medi.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 83; }, { anchors = ( { name = TashkilAbove; position = "{89, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aHaa.medi.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 83; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -437}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 72, -480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -437}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 72, -480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "beheh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 75, -324}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 75, -324}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{92, 862}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{92, 862}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonRing-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 60, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 60, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 6, -231}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 6, -231}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behVabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonTahabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{19, 1062}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 745}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{19, 1062}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 745}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 862}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 862}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 62, -329}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 62, -329}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 872}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{39, 872}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behDotless-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 72, -41}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 72, -41}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yeh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = DigitAbove; position = "{63, 618}"; }, { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = DigitAbove; position = "{63, 618}"; }, { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "rnoon-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 63, 498}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 63, 498}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "teheh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{19, 842}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{19, 842}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 52, 198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 52, 198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 818}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{24, 818}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "peh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 62, -329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 62, -329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "beeh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "beh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "tteheh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-10, 821}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{-10, 821}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noon-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "teh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{158, 872}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 102, 70}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 483; }, { anchors = ( { name = TashkilAbove; position = "{158, 872}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 102, 70}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 483; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "theh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-10, 821}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{-10, 821}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "tteh-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 63, 498}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 63, 498}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonVabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 964}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 281}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{39, 964}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 281}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "alefMaksura-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{72, -139}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{72, -139}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "tehRing-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 60, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 60, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 62, -329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 62, -329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "e-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 72, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonghunna-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{213, -600}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 213, -644}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{213, -600}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 213, -644}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "beheh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{282, -532}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 282, -488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{282, -532}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 282, -488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 65, 402}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 65, 402}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonRing-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 180, 295}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 180, 295}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{233, -439}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 213, -395}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{233, -439}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 213, -395}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behVabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonTahabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 1017}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 41, 700}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{21, 1017}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 41, 700}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehVabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 65, 402}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 65, 402}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{309, -514}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 270, -493}"; }, { name = aBaa.medi.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{309, -514}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 270, -493}"; }, { name = aBaa.medi.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{41, 827}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{41, 827}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behDotless-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{213, -400}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 213, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{213, -400}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 213, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yeh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = DigitAbove; position = "{65, 573}"; }, { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = DigitAbove; position = "{65, 573}"; }, { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "rnoon-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 65, 453}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 65, 453}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "teheh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{194, -502}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 194, 35}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{194, -502}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 194, 35}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "peh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{309, -514}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 270, -493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{309, -514}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 270, -493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "beeh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{233, -483}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{233, -483}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "beh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TaaAbove; position = "{65, 453}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "tteheh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noon-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{268, -518}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{268, -518}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{268, -518}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{268, -518}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "teh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 65, 109}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "theh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "tteh-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 65, 453}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 65, 453}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonVabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{41, 919}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 41, 236}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{41, 919}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 41, 236}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "alefMaksura-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{190, 479}"; }, { name = HamzaBelow; position = "{213, -302}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = AlefAbove; position = "{190, 479}"; }, { name = HamzaBelow; position = "{213, -302}"; }, { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "tehRing-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 180, 295}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 180, 295}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{309, -514}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 270, -493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{309, -514}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 270, -493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "e-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{233, -483}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{233, -483}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 213, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonghunna-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{251, -371}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsi-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{371, -733}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 371, -777}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{371, -733}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 371, -777}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{412, -646}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 373, -625}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{412, -646}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 373, -625}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 279, 217}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 279, 217}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 267, 320}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 267, 320}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 219, -76}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 219, -76}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 267, 320}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 267, 320}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "e-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{390, -616}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 371, -503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{390, -616}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 371, -503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "alefMaksura-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = HamzaBelow; position = "{371, -435}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = HamzaBelow; position = "{371, -435}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 279, 217}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 279, 217}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehTail-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 69, 96}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 69, 96}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehFarsi-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehHamzaabove-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{135, 642}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 159, -76}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{135, 642}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 159, -76}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehKashmiri-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{371, -533}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 371, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{371, -533}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 371, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yeh-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = DigitAbove; position = "{279, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{380, -547}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 371, -503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{293, 98}"; }, { name = DigitAbove; position = "{279, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{380, -547}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 371, -503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "yehVabove-ar.fina.BaaBaaYaa"; layers = ( { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 219, -76}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 457; }, { anchors = ( { name = AlefAbove; position = "{159, 388}"; }, { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{322, -371}"; } ); components = ( { name = aYaa.fina.BaaBaaYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 219, -76}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 457; } ); }, { glyphname = "lamVabove-ar.medi.LamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{22, 964}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 22, 280}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{22, 964}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 22, 280}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-40, 997}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 18, 725}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{-40, 997}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 18, 725}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "lam-ar.medi.LamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "lamDotabove-ar.medi.LamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-2, 871}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 22, 725}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{-2, 871}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 22, 725}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "lamBar-ar.medi.LamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 33, 494}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; } ); components = ( { name = aLam.medi.LamYaaFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 33, 494}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{332, -810}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 332, -854}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{332, -810}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 332, -854}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{368, -724}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 329, -703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{368, -724}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 329, -703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 284, 90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 284, 90}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 285, 193}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 285, 193}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 235, -203}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 235, -203}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 285, 193}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 285, 193}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "e-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{361, -693}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 341, -581}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{361, -693}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 341, -581}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "alefMaksura-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{327, -512}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{327, -512}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 284, 90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 284, 90}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehTail-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 100, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 100, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehFarsi-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehHamzaabove-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{162, 515}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 187, -203}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{162, 515}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 187, -203}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehKashmiri-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{327, -610}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 327, -415}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{327, -610}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 327, -415}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yeh-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{284, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{336, -625}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 327, -581}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{284, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{336, -625}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 327, -581}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "yehVabove-ar.fina.LamYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 235, -203}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 469; }, { anchors = ( { name = AlefAbove; position = "{187, 261}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{317, -371}"; } ); components = ( { name = aYaa.fina.LamYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 235, -203}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 469; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 967}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{74, 967}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 159, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 159, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 967}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{74, 967}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 157, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 157, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kaf-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "gafRing-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 68, 595}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 68, 595}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "gueh-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 103, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 103, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 157, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 157, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kafRing-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 68, 595}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 68, 595}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kafDotabove-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 942}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 29, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{5, 942}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 29, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "ng-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 1068}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{25, 1068}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 159, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 159, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "gaf-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "keheh-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{180, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "gafThreedots-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 1068}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{25, 1068}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 1068}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{25, 1068}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "kehehDotabove-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 942}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 29, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{5, 942}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 29, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "ngoeh-ar.init.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 967}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 349; }, { anchors = ( { name = TashkilAbove; position = "{74, 967}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafBaaInit; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 47, 639}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 796}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 349; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -469}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 98, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -469}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 98, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beheh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 109, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 109, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{54, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonRing-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 40, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 40, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTahabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-20, 1108}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 791}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{-20, 1108}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 791}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehVabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonThreedotsabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 96, -312}"; }, { name = aBaa.medi.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{135, -382}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 96, -312}"; }, { name = aBaa.medi.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehHamzaabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 840}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 73, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{49, 840}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 73, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behDotless-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehKashmiri-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yeh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "rnoon-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "teheh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 889}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{49, 889}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVinvertedbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 78, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 78, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsdown-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 864}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{54, 864}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "peh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 96, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{135, -382}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 96, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beeh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{117, -400}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{117, -400}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tteheh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 835}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 835}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noon-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "teh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "theh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tteh-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonDotbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonVabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 0, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 0, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "alefMaksura-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = HamzaBelow; position = "{146, -98}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = HamzaBelow; position = "{146, -98}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehRing-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 96, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{135, -382}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 96, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "e-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{117, -400}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{117, -400}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 98, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonghunna-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsi-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "lamVabove-ar.init.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-53, 980}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -53, 297}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{-53, 980}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -53, 297}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 208; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-116, 1013}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -58, 741}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{-116, 1013}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -58, 741}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 208; } ); }, { glyphname = "lam-ar.init.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 208; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 208; } ); }, { glyphname = "lamDotabove-ar.init.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-78, 888}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -53, 741}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{-78, 888}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -53, 741}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 208; } ); }, { glyphname = "lamBar-ar.init.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, -41, 499}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.init.LamMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, -41, 499}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 208; } ); }, { glyphname = "meem-ar.medi.LamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aMem.medi.LamMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aMem.medi.LamMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "lamVabove-ar.init.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 897}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 214}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{54, 897}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 214}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{128, 1009}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 186, 737}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{128, 1009}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 186, 737}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "lam-ar.init.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 193, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 193, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "lamDotabove-ar.init.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 916}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 190, 769}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{166, 916}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 190, 769}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "lamBar-ar.init.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 199, 514}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{117, -356}"; } ); components = ( { name = aLam.init.LamAlfIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 199, 514}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "alefHamzabelow-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{270, -439}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 270, 107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{270, -439}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 270, 107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "alef-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "alefThreeabove-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 879}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; transform = "{1, 0, 0, 1, 39, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 63, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { anchors = ( { name = TashkilAbove; position = "{93, 879}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; transform = "{1, 0, 0, 1, 39, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 63, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); }, { glyphname = "alefTwoabove-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 879}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; transform = "{1, 0, 0, 1, 39, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 63, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 379; }, { anchors = ( { name = TashkilAbove; position = "{63, 879}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; transform = "{1, 0, 0, 1, 39, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 63, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 379; } ); }, { glyphname = "alefHamzaabove-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{85, 1040}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 110, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { anchors = ( { name = TashkilAbove; position = "{85, 1040}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 110, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "alefMadda-ar.fina.LamAlfIsol"; layers = ( { components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 134, -15}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 134, -15}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{139, 1040}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 164, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { anchors = ( { name = TashkilAbove; position = "{139, 1040}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 164, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{270, -439}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 270, 107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{270, -439}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 270, 107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "alefWasla-ar.fina.LamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 935}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -144, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 340; }, { anchors = ( { name = TashkilAbove; position = "{104, 935}"; }, { name = TashkilBelow; position = "{151, -327}"; } ); components = ( { name = aAlf.fina.LamAlfIsol; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -144, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 340; } ); }, { glyphname = "lamVabove-ar.init.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{75, 995}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 75, 312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{75, 995}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 75, 312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 1028}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 46, 756}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{49, 1028}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 46, 756}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "lam-ar.init.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 115, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "lamDotabove-ar.init.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 902}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 51, 756}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{49, 902}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 51, 756}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "lamBar-ar.init.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 91, 509}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aLam.init.LamHaaMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 91, 509}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "khah-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hah-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahHamzaabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 362, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 362, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "tcheheh-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 376, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 376, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahThreedotsabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "jeem-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "dyeh-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 381, -166}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -294}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 381, -166}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -294}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahTahbelow-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 381, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 381, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "nyeh-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "tchehDotabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 362, 469}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahFourbelow-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{362, -293}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 362, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{362, -293}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 362, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 362, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "hahTahabove-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 854}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 362, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{342, 854}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 362, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "tcheh-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 30; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.LamHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 30; } ); }, { glyphname = "meem-ar.medi.LamHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aMem.medi.LamHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{93, -327}"; } ); components = ( { name = aMem.medi.LamHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -444}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 49, -488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -444}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 49, -488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "beheh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 118, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 118, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 122, 122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 122, 122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonRing-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 298}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 298}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 49, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 49, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behVabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonTahabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehVabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 122, 122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 122, 122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -293}"; }, { name = aBaa.medi.BaaBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -293}"; }, { name = aBaa.medi.BaaBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 547}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{98, 547}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behDotless-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, -49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, -49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yeh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{122, 293}"; }, { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = DigitAbove; position = "{122, 293}"; }, { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "rnoon-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "teheh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{29, -347}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 29, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{29, -347}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 29, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "peh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "beeh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "beh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TaaAbove; position = "{122, 244}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "tteheh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noon-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "teh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 122, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "theh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "tteh-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 122, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonVabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "alefMaksura-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{88, 479}"; }, { name = HamzaBelow; position = "{98, -73}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = AlefAbove; position = "{88, 479}"; }, { name = HamzaBelow; position = "{98, -73}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "tehRing-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "e-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 49, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonghunna-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehFarsi-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 122, 225}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "ghainDotbelow-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "ghain-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "ainThreedotsdownabove-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "ainTwodotsverticalabove-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "ainThreedots-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 206, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "ain-ar.medi.AynYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { anchors = ( { name = TashkilAbove; position = "{206, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{0, 0}"; } ); components = ( { name = aAyn.medi.AynYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 410; } ); }, { glyphname = "meemDotabove-ar.init.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); components = ( { name = aMem.init.MemRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 195, 409}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 346; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); components = ( { name = aMem.init.MemRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 195, 409}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 346; } ); }, { glyphname = "meem-ar.init.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); components = ( { name = aMem.init.MemRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 346; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); components = ( { name = aMem.init.MemRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 346; } ); }, { glyphname = "meemDotbelow-ar.init.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); components = ( { name = aMem.init.MemRaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 205, -133}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 346; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{112, -327}"; } ); components = ( { name = aMem.init.MemRaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 205, -133}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 346; } ); }, { glyphname = "rreh-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{287, 673}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 307, 355}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{287, 673}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 307, 355}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehv-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{287, 209}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "vabove-ar"; transform = "{1, 0, 0, 1, 307, -108}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{287, 209}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "vabove-ar"; transform = "{1, 0, 0, 1, 307, -108}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehRing-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{131, -458}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 131, -263}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{131, -458}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 131, -263}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehDotbelow-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{146, -611}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -543}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{146, -611}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -543}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehVbelow-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{112, -704}"; } ); components = ( { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 112, -138}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{112, -704}"; } ); components = ( { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 112, -138}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{146, -611}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -543}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 163, -144}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{146, -611}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -543}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 163, -144}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehTwodots-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{351, 519}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 361, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{351, 519}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 361, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "jeh-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 620}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 361, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{303, 620}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 361, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehFourdots-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{332, 641}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 361, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{332, 641}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 361, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehStroke-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "stroke-ar"; transform = "{1, 0, 0, 1, 312, -123}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "stroke-ar"; transform = "{1, 0, 0, 1, 312, -123}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehVinvertedabove-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{307, 307}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 307, -108}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{307, 307}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 307, -108}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "zain-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{282, 494}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 307, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{282, 494}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 307, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{351, 406}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 361, 235}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 351, 455}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{351, 406}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 361, 235}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 351, 455}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "reh-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{355, 355}"; }, { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TaaAbove; position = "{355, 355}"; }, { name = TashkilAbove; position = "{254, 337}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{287, 587}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 307, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{287, 587}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 307, 348}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "rehHamzaabove-ar.fina.MemRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{283, 742}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 307, -108}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { anchors = ( { name = TashkilAbove; position = "{283, 742}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 307, -108}"; }, { name = aRaa.fina.alt2; transform = "{1, 0, 0, 1, -49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 473; } ); }, { glyphname = "qafDotless-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "fehThreedotsupbelow-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 323, 303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 323, 303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "fehTwodotsbelow-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 323, 303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 323, 303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "qaf-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "feh-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 42, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 42, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "qafThreedotsabove-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "fehDotless-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "fehDotmovedbelow-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "fehDotbelow-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 42, 669}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 42, 669}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "veh-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "fehThreedotsbelow-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, 181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, 181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "peheh-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 47, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "qafDotabove-ar.init.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 42, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 584; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{332, -327}"; } ); components = ( { name = aFaa.init.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 42, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 584; } ); }, { glyphname = "khah-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 488, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 488, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hah-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahHamzaabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 439, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 439, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "tcheheh-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 269, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 269, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahThreedotsabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 445, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 445, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "jeem-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 488, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 488, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 445, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 445, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "dyeh-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{298, -470}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 274, -298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 289, -426}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{298, -470}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 274, -298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 289, -426}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahTahbelow-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 274, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 274, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "nyeh-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "tchehDotabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 488, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 256, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 488, 371}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 256, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahFourbelow-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{254, -425}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 254, -469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{254, -425}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 254, -469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 254, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "hahTahabove-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 488, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 488, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "tcheh-ar.medi.FaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 256, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 72; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aHaa.medi.FaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 256, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 72; } ); }, { glyphname = "khah-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 541, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 541, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hah-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahHamzaabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 541, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 541, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "tcheheh-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 561, -307}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 561, -307}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahThreedotsabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 546, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 546, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "jeem-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 541, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 541, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 541, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 541, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 546, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 546, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "dyeh-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 541, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 541, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{584, -465}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 560, -292}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 575, -421}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{584, -465}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 560, -292}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 575, -421}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahTahbelow-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 560, -292}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 560, -292}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "nyeh-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 546, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 546, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "tchehDotabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 541, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 541, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahFourbelow-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{541, -419}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 541, -463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{541, -419}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 541, -463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 546, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 546, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "hahTahabove-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{521, 908}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 541, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{521, 908}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 541, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "tcheh-ar.init.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 653; }, { anchors = ( { name = TashkilAbove; position = "{399, 801}"; }, { name = TashkilBelow; position = "{492, -327}"; } ); components = ( { name = aHaa.init.HaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 653; } ); }, { glyphname = "lamVabove-ar.medi.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{134, 1000}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 134, 316}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{134, 1000}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 134, 316}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 1033}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 761}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{71, 1033}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 761}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "lam-ar.medi.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "lamDotabove-ar.medi.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{109, 907}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 761}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{109, 907}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 761}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "lamBar-ar.medi.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 140, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamQafFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 140, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "qafThreedotsabove-ar.fina.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 476, 364}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 476, 364}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "qafDotabove-ar.fina.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 476, 364}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 476, 364}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "qaf-ar.fina.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 476, 364}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 476, 364}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "qafDotless-ar.fina.LamQafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 607; }, { anchors = ( { name = TashkilAbove; position = "{344, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aQaf.fina.LamQafFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 607; } ); }, { glyphname = "sheenDotbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{371, 820}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 464, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{371, 820}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 464, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seen-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenVinvertedabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 429, 153}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 429, 153}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenFourabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{429, 861}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 429, 446}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{429, 861}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 429, 446}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "sheen-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{371, 820}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{371, 820}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 1085}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 419, 768}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{399, 1085}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 419, 768}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenFourdotsabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{399, 841}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{399, 841}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenDotbelowDotabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 464, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{503, -142}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 464, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "seenThreedotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{510, -172}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 471, -151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{375, 801}"; }, { name = TashkilBelow; position = "{510, -172}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 471, -151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "sheenThreedotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{371, 820}"; }, { name = TashkilBelow; position = "{510, -172}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 471, -151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 671; }, { anchors = ( { name = TashkilAbove; position = "{371, 820}"; }, { name = TashkilBelow; position = "{510, -172}"; }, { name = exit; position = "{0, 203}"; } ); components = ( { name = aSen.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 429, 548}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 471, -151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 671; } ); }, { glyphname = "meem-ar.init.MemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{283, 801}"; }, { name = TashkilBelow; position = "{400, -327}"; }, { name = exit; position = "{0, 254}"; } ); components = ( { name = aMem.init.MemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 550; }, { anchors = ( { name = TashkilAbove; position = "{283, 801}"; }, { name = TashkilBelow; position = "{400, -327}"; }, { name = exit; position = "{0, 254}"; } ); components = ( { name = aMem.init.MemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 550; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -459}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 104, -503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 186; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -459}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 104, -503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 193; } ); }, { glyphname = "beheh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 118, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 145; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 118, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 269; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 273; } ); }, { glyphname = "noonRing-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 80, 191}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 80, 191}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 231; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 49, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 146; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 49, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "behVabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 251; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 259; } ); }, { glyphname = "noonTahabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{56, 952}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 75, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{56, 952}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 75, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "yehVabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 259; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 266; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 259; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 266; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -303}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 146; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -303}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 155; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{75, 762}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{75, 762}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 277; } ); }, { glyphname = "behDotless-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 166; }, { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehKashmiri-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 104, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 104, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 223; } ); }, { glyphname = "yeh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = DigitAbove; position = "{100, 508}"; }, { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 145; }, { anchors = ( { name = DigitAbove; position = "{100, 508}"; }, { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "rnoon-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 100, 410}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 296; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 100, 410}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 303; } ); }, { glyphname = "teheh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 282; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -361}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 84, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -361}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 84, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 273; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 282; } ); }, { glyphname = "peh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 146; }, { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 155; } ); }, { glyphname = "beeh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 192; } ); }, { glyphname = "beh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "tteheh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 231; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 271; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "noon-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 231; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 282; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 145; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "teh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 282; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 762}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 120, 100}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 501; }, { anchors = ( { name = TashkilAbove; position = "{173, 762}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 120, 100}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 501; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 269; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "theh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 271; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "tteh-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 100, 410}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 296; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 100, 410}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 303; } ); }, { glyphname = "noonDotbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 224; } ); }, { glyphname = "noonVabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{75, 854}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 75, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 227; }, { anchors = ( { name = TashkilAbove; position = "{75, 854}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 75, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 234; } ); }, { glyphname = "alefMaksura-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{49, 479}"; }, { name = HamzaBelow; position = "{104, -161}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 166; }, { anchors = ( { name = AlefAbove; position = "{49, 479}"; }, { name = HamzaBelow; position = "{104, -161}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tehRing-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 80, 191}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 80, 191}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 282; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 204; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 211; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 146; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 155; } ); }, { glyphname = "e-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 185; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 104, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 192; } ); }, { glyphname = "noonghunna-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 166; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsi-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 145; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 197; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 204; } ); }, { glyphname = "noon-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonTwodotsbelow-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{276, -420}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 267, -376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{276, -420}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 267, -376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonghunna-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonRing-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 266, -161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 266, -161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "rnoon-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 322, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 322, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonTahabove-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{278, 887}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 298, 570}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{278, 887}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 298, 570}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonDotbelow-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{281, -396}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 266, -376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{281, -396}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 266, -376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonVabove-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 298, 106}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 298, 106}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "noonThreedotsabove-ar.fina.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 562; }, { anchors = ( { name = TashkilAbove; position = "{322, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aNon.fina.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 322, 375}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 562; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-83, 882}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-83, 882}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-83, 882}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-83, 882}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 313, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 313, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kaf-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "gafRing-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 293, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 293, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "gueh-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 317, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 317, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 313, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 313, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kafRing-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 293, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 293, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kafDotabove-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-98, 858}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-98, 858}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "ng-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-131, 983}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-131, 983}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "gaf-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "keheh-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "gafThreedots-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-131, 983}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-131, 983}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-131, 983}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-131, 983}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "kehehDotabove-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-98, 858}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-98, 858}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "ngoeh-ar.medi.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-83, 882}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 467; }, { anchors = ( { name = TashkilAbove; position = "{-83, 882}"; }, { name = TashkilBelow; position = "{293, -327}"; }, { name = exit; position = "{0, 106}"; } ); components = ( { name = aKaf.medi.KafMemFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 366, 785}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -73, 711}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "meem-ar.fina.KafMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; }, { name = entry; position = "{226, 106}"; } ); components = ( { name = aMem.fina.KafMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; }, { name = entry; position = "{226, 106}"; } ); components = ( { name = aMem.fina.KafMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -420}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 145, -464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -420}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 145, -464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beheh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 165, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 165, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 928}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{88, 928}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonRing-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 96, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 96, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTahabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{15, 1128}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 34, 811}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{15, 1128}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 34, 811}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehVabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 928}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 928}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -312}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -312}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 938}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{34, 938}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behDotless-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehKashmiri-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 145, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 145, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yeh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{59, 684}"; }, { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = DigitAbove; position = "{59, 684}"; }, { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "rnoon-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{39, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "teheh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{29, 908}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{29, 908}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 125, 215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 125, 215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 884}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{34, 884}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "peh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beeh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tteheh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 854}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{39, 854}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 887}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{0, 887}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noon-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "teh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{132, 938}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 120, 230}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 501; }, { anchors = ( { name = TashkilAbove; position = "{132, 938}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 120, 230}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 501; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "theh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 887}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{0, 887}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tteh-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{39, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonDotbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonVabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 1030}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 34, 347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{34, 1030}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 34, 347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "alefMaksura-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{80, 630}"; }, { name = HamzaBelow; position = "{145, -122}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = AlefAbove; position = "{80, 630}"; }, { name = HamzaBelow; position = "{145, -122}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehRing-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 112}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 112}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "e-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonghunna-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsi-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "sheenDotbelow-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 308, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 308, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenTwodotsverticalabove-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seen-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenVinvertedabove-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 308, -54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 308, -54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenFourabove-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 308, 239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 308, 239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "sheen-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{279, 879}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 298, 562}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{279, 879}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 298, 562}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenFourdotsabove-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenDotbelowDotabove-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 308, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 308, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "seenThreedotsbelow-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "sheenThreedotsbelow-ar.medi.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 492; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aSen.medi.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 308, 342}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 315, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 492; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{93, -483}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 93, -527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{93, -483}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 93, -527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beheh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 146, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 146, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 137, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 137, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonRing-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 122, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 122, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonTahabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 933}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 112, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{93, 933}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 112, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehVabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 137, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 137, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{173, -348}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -327}"; }, { name = aBaa.medi.BaaRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{173, -348}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -327}"; }, { name = aBaa.medi.BaaRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 742}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 742}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behDotless-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 132, -88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 132, -88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yeh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = DigitAbove; position = "{137, 488}"; }, { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = DigitAbove; position = "{137, 488}"; }, { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "rnoon-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 137, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 137, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "teheh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{132, -386}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 132, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{132, -386}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 132, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "peh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{173, -348}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{173, -348}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beeh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{151, -366}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{151, -366}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{137, 391}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tteheh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noon-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{132, -352}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{132, -352}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{132, -352}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{132, -352}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "teh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 127, -205}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 127, -205}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 137, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "theh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tteh-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 137, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 137, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonVabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 112, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 112, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "alefMaksura-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{132, -186}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{132, -186}"; }, { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehRing-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{173, -348}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{173, -348}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "e-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{151, -366}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{151, -366}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonghunna-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsi-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "rreh-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 173, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 173, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehv-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 173, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 173, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehRing-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 114, -144}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 114, -144}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehDotbelow-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{137, -420}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 122, -400}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{137, -420}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 122, -400}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehVbelow-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{103, -532}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 103, 5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{103, -532}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 103, 5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{137, -420}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 122, -400}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 57, -79}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{137, -420}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 122, -400}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 57, -79}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehTwodots-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "jeh-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehFourdots-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehStroke-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 244, -34}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 244, -34}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehVinvertedabove-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 173, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 173, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "zain-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{144, 927}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 163, 610}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{144, 927}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 163, 610}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "reh-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{319, 361}"; }, { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TaaAbove; position = "{319, 361}"; }, { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{173, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 173, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rehHamzaabove-ar.fina.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 712}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{148, 712}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.BaaRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-112, 874}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-112, 874}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 198, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 198, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-112, 874}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-112, 874}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 215, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 215, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kaf-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "gafRing-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 198, 659}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 198, 659}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "gueh-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 190, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 190, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 196, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 196, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kafRing-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 198, 659}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 198, 659}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kafDotabove-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-127, 850}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -103, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-127, 850}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -103, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "ng-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-160, 975}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-160, 975}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 198, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 198, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "gaf-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "keheh-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{142, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "gafThreedots-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-160, 975}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-160, 975}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-160, 975}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-160, 975}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "kehehDotabove-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-127, 850}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -103, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-127, 850}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -103, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "ngoeh-ar.medi.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-112, 874}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{-112, 874}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.medi.KafRaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 263, 727}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -102, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "rreh-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehv-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 49, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 49, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehRing-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 72, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 72, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehDotbelow-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{238, -420}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 224, -400}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{238, -420}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 224, -400}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehVbelow-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{204, -532}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 204, 5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{204, -532}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 204, 5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{238, -420}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 224, -400}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 59, -123}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{238, -420}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 224, -400}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 59, -123}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehTwodots-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "jeh-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehFourdots-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehStroke-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 244, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 244, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehVinvertedabove-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 49, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 49, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "zain-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 93, 396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 176}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 93, 396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "reh-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{146, 195}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TaaAbove; position = "{146, 195}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "rehHamzaabove-ar.fina.KafRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 498}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{73, 498}"; }, { name = TashkilBelow; position = "{210, -327}"; } ); components = ( { name = aRaa.fina.KafRaaFina; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "lamVabove-ar.init.LamHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-34, 972}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -34, 288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{-34, 972}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -34, 288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-97, 1004}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -39, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{-97, 1004}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -39, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "lam-ar.init.LamHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "lamDotabove-ar.init.LamHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-59, 879}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -34, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{-59, 879}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -34, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "lamBar-ar.init.LamHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, -36, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 225; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{88, -327}"; } ); components = ( { name = aLam.init.LamHehInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, -36, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 225; } ); }, { glyphname = "heh-ar.medi.LamHehInit"; layers = ( { anchors = ( { name = HamzaAbove; position = "{39, 352}"; }, { name = TashkilAbove; position = "{117, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.LamHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 240; }, { anchors = ( { name = HamzaAbove; position = "{39, 352}"; }, { name = TashkilAbove; position = "{117, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.LamHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 240; } ); }, { glyphname = "hehgoal-ar.medi.LamHehInit"; layers = ( { anchors = ( { name = HamzaAbove; position = "{39, 352}"; }, { name = TashkilAbove; position = "{117, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.LamHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 240; }, { anchors = ( { name = HamzaAbove; position = "{39, 352}"; }, { name = TashkilAbove; position = "{117, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.LamHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 240; } ); }, { glyphname = "meem-ar.init.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aMem.init.MemHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 319; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{152, -327}"; } ); components = ( { name = aMem.init.MemHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 319; } ); }, { glyphname = "khah-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 15, 564}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 15, 564}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hah-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahHamzaabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 15, 168}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 15, 168}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "tcheheh-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 277, -185}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 277, -185}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahThreedotsabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-38, 836}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 20, 564}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{-38, 836}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 20, 564}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "jeem-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 15, 564}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 15, 564}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 20, 564}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 20, 564}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "dyeh-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 282, -170}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 297, -299}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 282, -170}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 297, -299}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahTahbelow-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 282, -170}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 282, -170}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "nyeh-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "tchehDotabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 15, 564}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 265, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 15, 564}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 265, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahFourbelow-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{263, -297}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 263, -341}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{263, -297}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 263, -341}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 263, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "hahTahabove-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-5, 950}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 15, 632}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{-5, 950}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 15, 632}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "tcheh-ar.medi.MemHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 265, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 195; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{155, -327}"; } ); components = ( { name = aHaa.medi.MemHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 265, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 195; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -469}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 143, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -469}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 143, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "beheh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{158, -376}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 158, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{158, -376}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 158, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{94, 835}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{94, 835}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonRing-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 90, 415}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 90, 415}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 89, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 89, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behVabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonTahabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 1035}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 40, 718}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{21, 1035}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 40, 718}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehVabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 145, -337}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 145, -337}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{40, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{40, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behDotless-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehKashmiri-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 143, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 143, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yeh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{64, 591}"; }, { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = DigitAbove; position = "{64, 591}"; }, { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "rnoon-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{45, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 64, 527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{45, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 64, 527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "teheh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -371}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 123, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -371}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 123, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "peh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -358}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 145, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -358}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 145, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "beeh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -352}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -352}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "beh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "tteheh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noon-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -362}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -362}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -362}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -362}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "teh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{138, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 184, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 565; }, { anchors = ( { name = TashkilAbove; position = "{138, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 184, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 565; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "theh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "tteh-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{45, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 64, 527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{45, 845}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 64, 527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonDotbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonVabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{40, 938}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 40, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{40, 938}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 40, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "alefMaksura-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{70, 610}"; }, { name = HamzaBelow; position = "{143, -98}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = AlefAbove; position = "{70, 610}"; }, { name = HamzaBelow; position = "{143, -98}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "tehRing-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 90, 415}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 90, 415}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -358}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 145, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -358}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 145, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "e-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -352}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -352}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 143, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonghunna-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsi-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "meem-ar.medi.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aMem.medi.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aMem.medi.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = "sheenDotbelow-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 440, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 440, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 416, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 416, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seen-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenVinvertedabove-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 416, 153}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 416, 153}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenFourabove-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 861}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 416, 446}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 861}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 416, 446}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "sheen-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{387, 1037}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 406, 719}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{387, 1037}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 406, 719}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenFourdotsabove-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenDotbelowDotabove-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 416, 548}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 440, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 416, 548}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 440, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "seenThreedotsbelow-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 448, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 448, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "sheenThreedotsbelow-ar.init.SenHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 448, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 644; }, { anchors = ( { name = TashkilAbove; position = "{416, 801}"; }, { name = TashkilBelow; position = "{454, -327}"; }, { name = exit; position = "{0, 223}"; } ); components = ( { name = aSen.init.SenHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 416, 500}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 448, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 644; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-107, 903}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-107, 903}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-107, 903}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-107, 903}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kaf-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "gafRing-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 203, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 203, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "gueh-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kafRing-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 203, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 203, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kafDotabove-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-122, 879}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -98, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-122, 879}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -98, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "ng-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-155, 1004}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-155, 1004}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "gaf-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "keheh-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "gafThreedots-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-155, 1004}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-155, 1004}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-155, 1004}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-155, 1004}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "kehehDotabove-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-122, 879}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -98, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-122, 879}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -98, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "ngoeh-ar.init.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-107, 903}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 573; }, { anchors = ( { name = TashkilAbove; position = "{-107, 903}"; }, { name = TashkilBelow; position = "{200, -327}"; } ); components = ( { name = aKaf.init.KafRaaIsol; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 287, 773}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -97, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 573; } ); }, { glyphname = "rreh-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehv-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 49, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 49, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehRing-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -197}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -197}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehDotbelow-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{253, -413}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 238, -394}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{253, -413}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 238, -394}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehVbelow-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{219, -525}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 219, 12}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{219, -525}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 219, 12}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{253, -413}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 238, -394}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -111}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{253, -413}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 238, -394}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -111}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehTwodots-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "jeh-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehFourdots-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehStroke-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 271, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 271, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehVinvertedabove-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 49, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 49, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "zain-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 93, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 200}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 93, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "reh-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{146, 220}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TaaAbove; position = "{146, 220}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "rehHamzaabove-ar.fina.KafRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 522}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 270; }, { anchors = ( { name = TashkilAbove; position = "{73, 522}"; }, { name = TashkilBelow; position = "{220, -327}"; } ); components = ( { name = aRaa.fina.KafRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 270; } ); }, { glyphname = "ghainDotbelow-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{185, 828}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 449, 225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{185, 828}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 449, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ghain-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{185, 828}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{185, 828}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainThreedotsdownabove-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{185, 950}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{185, 950}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 852}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{199, 852}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{189, 920}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{189, 920}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainThreedots-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{151, 953}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{151, 953}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 209, 681}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ain-ar.init.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{233, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; }, { name = exit; position = "{0, 244}"; } ); components = ( { name = aAyn.init.AynHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-75, 829}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{-75, 829}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-75, 829}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{-75, 829}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 362, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 362, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kaf-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "gafRing-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 225, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 225, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "gueh-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 361, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 361, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 362, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 362, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kafRing-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 225, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 225, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kafDotabove-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -66, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -66, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "ng-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-124, 930}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{-124, 930}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 364, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "gaf-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "keheh-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "gafThreedots-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-124, 930}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{-124, 930}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-124, 930}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{-124, 930}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kehehDotabove-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -66, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -66, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "ngoeh-ar.medi.KafYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-75, 829}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{-75, 829}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafYaaFina; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 340, 731}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -65, 658}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -758}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 361, -802}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -758}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 361, -802}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{402, -672}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 363, -651}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{402, -672}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 363, -651}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 243, 81}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 243, 81}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 243, 183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 243, 183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 194, -212}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 194, -212}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 243, 183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 243, 183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "e-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{380, -641}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 361, -529}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{380, -641}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 361, -529}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "alefMaksura-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = HamzaBelow; position = "{361, -460}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = HamzaBelow; position = "{361, -460}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 243, 81}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 243, 81}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehTail-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 58, -6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 58, -6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsi-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehHamzaabove-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{121, 505}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 145, -212}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{121, 505}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 145, -212}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehKashmiri-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -558}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 361, -363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -558}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 361, -363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yeh-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = DigitAbove; position = "{243, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{371, -573}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 361, -529}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = DigitAbove; position = "{243, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{371, -573}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 361, -529}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehVabove-ar.fina.KafYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 194, -212}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = AlefAbove; position = "{145, 251}"; }, { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{361, -327}"; } ); components = ( { name = aYaa.fina.KafYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 194, -212}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "lamVabove-ar.init.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-19, 1029}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -19, 346}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 279; }, { anchors = ( { name = TashkilAbove; position = "{-19, 1029}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -19, 346}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-81, 1062}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -23, 790}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 279; }, { anchors = ( { name = TashkilAbove; position = "{-81, 1062}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -23, 790}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "lam-ar.init.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 279; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 279; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "lamDotabove-ar.init.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-43, 937}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -19, 790}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 279; }, { anchors = ( { name = TashkilAbove; position = "{-43, 937}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -19, 790}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "lamBar-ar.init.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 0, 562}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 279; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{205, -327}"; } ); components = ( { name = aLam.init.LamMemHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 0, 562}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 279; } ); }, { glyphname = "meem-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{200, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aMem.medi.LamMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 297; }, { anchors = ( { name = TashkilAbove; position = "{200, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aMem.medi.LamMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 297; } ); }, { glyphname = "khah-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hah-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahHamzaabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 124, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 124, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "tcheheh-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 324, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 324, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahThreedotsabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "jeem-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "dyeh-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{353, -441}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 329, -269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 343, -397}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{353, -441}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 329, -269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 343, -397}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahTahbelow-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 329, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 329, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "nyeh-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "tchehDotabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 124, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahFourbelow-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{309, -396}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 309, -439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{309, -396}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 309, -439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 309, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "hahTahabove-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 124, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 124, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "tcheh-ar.medi.LamMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 57; }, { anchors = ( { name = TashkilAbove; position = "{55, 801}"; }, { name = TashkilBelow; position = "{99, -327}"; } ); components = ( { name = aHaa.medi.LamMemHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 57; } ); }, { glyphname = "lamVabove-ar.medi.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{85, 1001}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = smallv.above; transform = "{1, 0, 0, 1, 85, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{85, 1001}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = smallv.above; transform = "{1, 0, 0, 1, 85, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{25, 985}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 713}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{25, 985}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 713}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "lam-ar.medi.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "lamDotabove-ar.medi.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{61, 898}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 752}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{61, 898}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 85, 752}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "lamBar-ar.medi.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 91, 523}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamAlfFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 91, 523}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "alefHamzabelow-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{108, -417}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 108, 130}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{108, -417}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 108, 130}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "alef-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "alefThreeabove-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{48, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; transform = "{1, 0, 0, 1, 48, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 62, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 494; }, { anchors = ( { name = TashkilAbove; position = "{48, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; transform = "{1, 0, 0, 1, 48, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 62, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 494; } ); }, { glyphname = "alefTwoabove-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{47, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; transform = "{1, 0, 0, 1, 47, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 62, 391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 494; }, { anchors = ( { name = TashkilAbove; position = "{47, 801}"; }, { name = TashkilBelow; position = "{204, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; transform = "{1, 0, 0, 1, 47, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 62, 391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 494; } ); }, { glyphname = "alefHamzaabove-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{84, 986}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 109, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { anchors = ( { name = TashkilAbove; position = "{84, 986}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 109, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "alefMadda-ar.fina.LamAlfFina"; layers = ( { components = ( { name = aAlf.fina.LamAlfFina; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 136, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { components = ( { name = aAlf.fina.LamAlfFina; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 136, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 986}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 136, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { anchors = ( { name = TashkilAbove; position = "{112, 986}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 136, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{108, -417}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 108, 130}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{108, -417}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 108, 130}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "alefWasla-ar.fina.LamAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{100, 881}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -148, 63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 446; }, { anchors = ( { name = TashkilAbove; position = "{100, 881}"; }, { name = TashkilBelow; position = "{156, -327}"; } ); components = ( { name = aAlf.fina.LamAlfFina; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -148, 63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 446; } ); }, { glyphname = "lamVabove-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-37, 854}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -37, 170}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 232; }, { anchors = ( { name = TashkilAbove; position = "{-37, 854}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -37, 170}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 232; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-99, 886}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -41, 614}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 232; }, { anchors = ( { name = TashkilAbove; position = "{-99, 886}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -41, 614}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 232; } ); }, { glyphname = "lam-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 232; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 232; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 232; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 232; } ); }, { glyphname = "lamDotabove-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -37, 614}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 232; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -37, 614}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 232; } ); }, { glyphname = "lamBar-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 111, 533}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 232; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aLam.medi.LamMemMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 111, 533}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 232; } ); }, { glyphname = "meemDotabove-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); components = ( { name = aMem.medi.LamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 291}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 236; }, { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); components = ( { name = aMem.medi.LamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 291}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 236; } ); }, { glyphname = "meem-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); components = ( { name = aMem.medi.LamMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 236; }, { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); components = ( { name = aMem.medi.LamMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 236; } ); }, { glyphname = "meemDotbelow-ar.medi.LamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); components = ( { name = aMem.medi.LamMemMedi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 269, -291}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 236; }, { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = entry; position = "{237, 83}"; } ); components = ( { name = aMem.medi.LamMemMedi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 269, -291}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 236; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -347}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 46, -391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -347}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 46, -391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "beheh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 115, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 115, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{125, 859}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{125, 859}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonRing-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 63, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 63, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 46, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 46, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behVabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonTahabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{51, 1060}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 71, 742}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{51, 1060}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 71, 742}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 859}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 859}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 102, -190}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 102, -190}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 869}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{71, 869}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behDotless-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 46, 49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 46, 49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yeh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{95, 615}"; }, { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = DigitAbove; position = "{95, 615}"; }, { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "rnoon-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 835}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{76, 835}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "teheh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 840}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{71, 840}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 27, 288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 27, 288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "peh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 102, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 102, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "beeh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "beh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "tteheh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{42, 819}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{42, 819}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noon-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "teh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{168, 869}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 90, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 471; }, { anchors = ( { name = TashkilAbove; position = "{168, 869}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 90, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 471; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "theh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{42, 819}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{42, 819}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "tteh-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 835}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{76, 835}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonVabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 962}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, 278}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{71, 962}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, 278}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "alefMaksura-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{70, 590}"; }, { name = HamzaBelow; position = "{46, -49}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = AlefAbove; position = "{70, 590}"; }, { name = HamzaBelow; position = "{46, -49}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "tehRing-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 63, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 63, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 102, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 102, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "e-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 46, -117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonghunna-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{341, -498}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 341, -542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{341, -498}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 341, -542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "beheh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{356, -376}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 356, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{356, -376}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 356, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{286, 843}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 257, 428}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{286, 843}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 257, 428}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonRing-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 322, 405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 322, 405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 287, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 287, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behVabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonTahabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 1043}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 232, 726}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{213, 1043}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 232, 726}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehVabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 843}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 257, 428}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 843}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 257, 428}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{382, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 343, -337}"; }, { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{382, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 343, -337}"; }, { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 853}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{232, 853}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behDotless-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 341, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 341, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yeh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{257, 599}"; }, { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = DigitAbove; position = "{257, 599}"; }, { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "rnoon-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{237, 819}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 257, 501}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{237, 819}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 257, 501}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "teheh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{322, -400}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 322, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{322, -400}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 322, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "peh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{382, -358}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 343, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{382, -358}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 343, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "beeh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{361, -381}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{361, -381}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "beh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TaaAbove; position = "{257, 501}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "tteheh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noon-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{341, -362}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{341, -362}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{341, -362}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{341, -362}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "teh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 257, 135}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "theh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "tteh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{237, 819}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 257, 501}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{237, 819}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 257, 501}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonVabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 946}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 232, 262}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{232, 946}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 232, 262}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "alefMaksura-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{320, 590}"; }, { name = HamzaBelow; position = "{341, -200}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = AlefAbove; position = "{320, 590}"; }, { name = HamzaBelow; position = "{341, -200}"; }, { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "tehRing-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 322, 405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 322, 405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{382, -358}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 343, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{382, -358}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 343, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "e-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{361, -381}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{361, -381}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 341, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonghunna-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehFarsi-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "khah-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hah-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahHamzaabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 76, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 76, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "tcheheh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 184, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 184, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahThreedotsabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "jeem-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "dyeh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{213, -441}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 188, -269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 203, -397}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{213, -441}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 188, -269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 203, -397}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTahbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 188, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 188, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "nyeh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "tchehDotabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 171, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 171, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahFourbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -396}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 169, -439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -396}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 169, -439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 169, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "hahTahabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 76, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 76, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "tcheh-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 171, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 66; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{169, -327}"; } ); components = ( { name = aHaa.medi.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 171, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 66; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -405}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 233, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -405}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 233, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "beheh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 248, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 248, -293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-21, 854}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, -51, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-21, 854}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, -51, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonRing-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 43, 347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 43, 347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 179, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 179, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behVabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonTahabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-95, 1055}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -75, 737}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-95, 1055}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -75, 737}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehVabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-51, 854}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, -51, 439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-51, 854}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, -51, 439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonThreedotsabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 235, -298}"; }, { name = aBaa.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 235, -298}"; }, { name = aBaa.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehHamzaabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-75, 864}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-75, 864}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behDotless-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehKashmiri-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 233, -10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 233, -10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yeh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{-51, 610}"; }, { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = DigitAbove; position = "{-51, 610}"; }, { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "rnoon-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-70, 830}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -51, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-70, 830}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -51, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "teheh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-80, 835}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-80, 835}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behVinvertedbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 214, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 214, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "tehThreedotsdown-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "peh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 235, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 235, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "beeh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "beh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TaaAbove; position = "{-51, 513}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "tteheh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behThreedotsupabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noon-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "teh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, -51, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "theh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "tteh-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-70, 830}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -51, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-70, 830}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -51, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonDotbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonVabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-75, 957}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -75, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{-75, 957}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -75, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "alefMaksura-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 542}"; }, { name = HamzaBelow; position = "{233, -107}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = AlefAbove; position = "{73, 542}"; }, { name = HamzaBelow; position = "{233, -107}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "tehRing-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 43, 347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 43, 347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 235, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 235, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "e-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonghunna-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehFarsi-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "meem-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{143, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aMem.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{143, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); components = ( { name = aMem.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{112, -474}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 112, -518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 267; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{112, -474}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 112, -518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 267; } ); }, { glyphname = "beheh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -405}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 132, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 308; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -405}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 132, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 308; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 342; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 342; } ); }, { glyphname = "noonRing-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 39}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 39}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 63, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 287; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 63, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 287; } ); }, { glyphname = "behVabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); }, { glyphname = "noonTahabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 124, 530}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 320; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 124, 530}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 320; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{159, -387}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 120, -366}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 293; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{159, -387}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 120, -366}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 293; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 302; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 302; } ); }, { glyphname = "behDotless-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 112, -78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 112, -78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yeh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = DigitAbove; position = "{148, 403}"; }, { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = DigitAbove; position = "{148, 403}"; }, { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "rnoon-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 148, 305}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 148, 305}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "teheh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 319; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 319; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 93, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 93, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 316; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 316; } ); }, { glyphname = "peh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{159, -387}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 120, -366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 293; }, { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{159, -387}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 120, -366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 293; } ); }, { glyphname = "beeh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -356}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -356}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "tteheh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 315; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 315; } ); }, { glyphname = "noon-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{118, -391}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 319; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{118, -391}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 319; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{118, -391}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{118, -391}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "teh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 319; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 319; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "theh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 315; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 315; } ); }, { glyphname = "tteh-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 148, 305}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 148, 305}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 274; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 274; } ); }, { glyphname = "noonVabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 124, 66}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 275; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 124, 66}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "alefMaksura-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{98, 479}"; }, { name = HamzaBelow; position = "{112, -176}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = AlefAbove; position = "{98, 479}"; }, { name = HamzaBelow; position = "{112, -176}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "tehRing-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 39}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 319; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, 39}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 319; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{159, -387}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 120, -366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 293; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{159, -387}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 120, -366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 293; } ); }, { glyphname = "e-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -356}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -356}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 112, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonghunna-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "behThreedotsupabove-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 415, -273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 415, -273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 385, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 385, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "tehThreedotsupbelow-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{415, -372}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 415, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{415, -372}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 415, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "beheh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{430, -386}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 430, -342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{430, -386}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 430, -342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "teh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 415, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 415, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "theh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "tteh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 423, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 423, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "tehRing-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 381, -10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 381, -10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behVabove-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 423, -39}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 423, -39}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behThreedotsupbelow-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{415, -372}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 415, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{415, -372}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 415, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behDotless-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "teheh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behVinvertedbelow-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{396, -405}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 396, 132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{396, -405}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 396, 132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "tehThreedotsdown-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "peh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{456, -368}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 417, -347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{456, -368}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 417, -347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "beeh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{435, -386}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 415, -273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{435, -386}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 415, -273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "beh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 415, -273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TaaAbove; position = "{423, 327}"; }, { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 415, -273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "tteheh-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{464, -327}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 423, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -337}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 86, -381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -337}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 86, -381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "beheh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 101, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 101, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{121, 869}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{121, 869}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonRing-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 32, -132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 32, -132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behVabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonTahabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{47, 1069}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 67, 752}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{47, 1069}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 67, 752}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 869}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 869}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 88, -229}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 88, -229}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{67, 879}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{67, 879}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behDotless-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 86, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 86, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yeh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{91, 625}"; }, { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = DigitAbove; position = "{91, 625}"; }, { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "rnoon-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{72, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 91, 527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{72, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 91, 527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "teheh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{62, 850}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{62, 850}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 67, 298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 67, 298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{67, 825}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{67, 825}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "peh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 88, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 88, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "beeh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "beh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "tteheh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{33, 829}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{33, 829}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noon-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "teh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{165, 879}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 130, 150}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 511; }, { anchors = ( { name = TashkilAbove; position = "{165, 879}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 130, 150}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 511; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "theh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{33, 829}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{33, 829}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "tteh-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{72, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 91, 527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{72, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 91, 527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonVabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{67, 972}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 67, 288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{67, 972}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 67, 288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "alefMaksura-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{86, -39}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{86, -39}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "tehRing-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 49, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 88, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 88, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "e-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonghunna-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -479}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 37, -522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -479}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 37, -522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "beheh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 52, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 52, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, -31, 380}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, -31, 380}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonRing-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 45, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 45, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, -17, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, -17, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behVabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonTahabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-75, 995}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -56, 678}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{-75, 995}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -56, 678}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehVabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, -31, 380}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, -31, 380}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{78, -353}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 39, -332}"; }, { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{78, -353}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 39, -332}"; }, { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-56, 805}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{-56, 805}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behDotless-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 37, -83}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 37, -83}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yeh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{-31, 551}"; }, { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = DigitAbove; position = "{-31, 551}"; }, { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "rnoon-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -31, 453}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -31, 453}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "teheh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{18, -381}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 18, 156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{18, -381}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 18, 156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "peh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{78, -353}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 39, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{78, -353}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 39, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "beeh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{57, -361}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{57, -361}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "beh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TaaAbove; position = "{-31, 453}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "tteheh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noon-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -357}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -357}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -357}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -357}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "teh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, -31, 87}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "theh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "tteh-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -31, 453}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -31, 453}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonVabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-56, 897}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -56, 214}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{-56, 897}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -56, 214}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "alefMaksura-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 542}"; }, { name = HamzaBelow; position = "{37, -181}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = AlefAbove; position = "{73, 542}"; }, { name = HamzaBelow; position = "{37, -181}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "tehRing-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 45, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 45, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{78, -353}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 39, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{78, -353}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 39, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "e-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{57, -361}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{57, -361}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 37, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonghunna-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehFarsi-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "meem-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aMem.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aMem.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 986}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{103, 986}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 188, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 188, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 986}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{103, 986}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 186, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 186, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kaf-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "gafRing-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 595}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 595}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "gueh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 132, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 186, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 186, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kafRing-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 595}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 98, 595}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kafDotabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 889}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 215, 742}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{190, 889}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 215, 742}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "ng-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 1087}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{55, 1087}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 188, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 188, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "gaf-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "keheh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{214, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "gafThreedots-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 1087}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{55, 1087}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 1087}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{55, 1087}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "kehehDotabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 889}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 215, 742}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{190, 889}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 215, 742}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "ngoeh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 986}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 411; }, { anchors = ( { name = TashkilAbove; position = "{103, 986}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = aKaf.medi.KafBaaMedi; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 131, 668}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 815}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 411; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -469}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 103, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -469}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 103, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "beheh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 114, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 114, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{54, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonRing-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 45, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 45, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behVabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonTahabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-20, 1108}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 791}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{-20, 1108}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 0, 791}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehVabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 24, 493}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonThreedotsabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 101, -312}"; }, { name = aBaa.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{140, -382}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 101, -312}"; }, { name = aBaa.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehHamzaabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 840}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 73, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{49, 840}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 73, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behDotless-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehKashmiri-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, -63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, -63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yeh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = DigitAbove; position = "{24, 664}"; }, { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "rnoon-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "teheh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 889}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{49, 889}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behVinvertedbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 83, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 83, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "tehThreedotsdown-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 864}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{54, 864}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "peh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 101, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{140, -382}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 101, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "beeh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{122, -400}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{122, -400}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "beh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TaaAbove; position = "{88, 591}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "tteheh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 835}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{5, 835}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behThreedotsupabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noon-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "teh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 39, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "theh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{21, 868}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "tteh-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{68, 908}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonDotbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonVabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 0, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 0, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "alefMaksura-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = HamzaBelow; position = "{151, -98}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = HamzaBelow; position = "{151, -98}"; }, { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "tehRing-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 101, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{140, -382}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 101, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "e-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{122, -400}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{122, -400}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 103, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonghunna-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsi-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 24, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{78, -483}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 78, -527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{78, -483}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 78, -527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "beheh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 92, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 92, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 83, 261}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 83, 261}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonRing-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 196}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 196}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 23, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 23, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behVabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonTahabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 876}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 58, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{39, 876}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 58, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehVabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 83, 261}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 83, 261}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{119, -348}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 80, -327}"; }, { name = aBaa.medi.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{119, -348}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 80, -327}"; }, { name = aBaa.medi.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{58, 686}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{58, 686}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behDotless-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 78, -88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 78, -88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yeh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = DigitAbove; position = "{83, 432}"; }, { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = DigitAbove; position = "{83, 432}"; }, { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "rnoon-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 83, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 83, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "teheh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{58, -386}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 58, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{58, -386}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 58, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "peh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{119, -348}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 80, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{119, -348}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 80, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "beeh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{97, -366}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{97, -366}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "beh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TaaAbove; position = "{83, 334}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "tteheh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noon-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{78, -352}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{78, -352}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{78, -352}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{78, -352}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "teh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 83, -32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "theh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "tteh-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 83, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 83, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonVabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 58, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 58, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "alefMaksura-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{78, -186}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = AlefAbove; position = "{73, 479}"; }, { name = HamzaBelow; position = "{78, -186}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "tehRing-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 196}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 196}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{119, -348}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 80, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{119, -348}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 80, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "e-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{97, -366}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{97, -366}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 78, -254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonghunna-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehFarsi-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "noon-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonTwodotsbelow-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{284, -463}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 274, -419}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{284, -463}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 274, -419}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonghunna-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonRing-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 274, -155}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 274, -155}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "rnoon-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 311, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 311, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonTahabove-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{267, 861}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 286, 544}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{267, 861}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 286, 544}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonDotbelow-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{289, -438}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 274, -419}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{289, -438}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 274, -419}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonVabove-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 286, 80}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 286, 80}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "noonThreedotsabove-ar.fina.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 542; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{239, -327}"; } ); components = ( { name = aNon.fina.BaaNonFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 311, 349}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 542; } ); }, { glyphname = "khah-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 346, 405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 346, 405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hah-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahHamzaabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 346, 10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 346, 10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "tcheheh-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 308, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 308, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahThreedotsabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "jeem-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 288, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 288, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 346, 405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 346, 405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "dyeh-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 288, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 288, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{332, -441}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 307, -269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 322, -397}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{332, -441}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 307, -269}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 322, -397}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahTahbelow-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 307, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 307, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "nyeh-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "tchehDotabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 346, 405}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 346, 405}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahFourbelow-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -396}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 288, -439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -396}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 288, -439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "hahTahabove-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 346, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 346, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "tcheh-ar.init.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{229, 801}"; }, { name = TashkilBelow; position = "{288, -327}"; } ); components = ( { name = aHaa.init.HaaRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "rreh-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 171, 285}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 171, 285}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehv-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 171, -81}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 171, -81}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehRing-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -173}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -173}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehDotbelow-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{127, -420}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -400}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{127, -420}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -400}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehVbelow-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{93, -532}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 93, 5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{93, -532}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 93, 5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{127, -420}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -400}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -102}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{127, -420}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 112, -400}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -102}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehTwodots-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "jeh-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehFourdots-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehStroke-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 283, -59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 283, -59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehVinvertedabove-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 171, -81}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 171, -81}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "zain-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{143, 852}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 163, 534}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{143, 852}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 163, 534}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "reh-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{342, 261}"; }, { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TaaAbove; position = "{342, 261}"; }, { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{197, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 172, 314}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "rehHamzaabove-ar.fina.HaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 637}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 171, -81}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 299; }, { anchors = ( { name = TashkilAbove; position = "{146, 637}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aRaa.fina.HaaRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 171, -81}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 299; } ); }, { glyphname = "heh-ar.init.HehHaaInit"; layers = ( { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{449, -327}"; } ); components = ( { name = aHeh.init.HehHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{449, -327}"; } ); components = ( { name = aHeh.init.HehHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "hehgoal-ar.init.HehHaaInit"; layers = ( { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{449, -327}"; } ); components = ( { name = aHeh.init.HehHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{449, -327}"; } ); components = ( { name = aHeh.init.HehHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lamVabove-ar.init.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{67, 1047}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 67, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{67, 1047}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 67, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 1080}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 63, 808}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{5, 1080}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 63, 808}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lam-ar.init.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamDotabove-ar.init.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{43, 954}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 67, 808}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{43, 954}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 67, 808}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamBar-ar.init.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 91, 562}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aLam.init.LamRaaIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 91, 562}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "rreh-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 181, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 181, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehv-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 181, -3}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 181, -3}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehRing-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 85, -139}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 85, -139}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehDotbelow-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{122, -415}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{122, -415}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehVbelow-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{88, -527}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 88, 10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{88, -527}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 88, 10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{122, -415}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -396}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -62}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{122, -415}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -396}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -62}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehTwodots-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "jeh-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehFourdots-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehStroke-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 273, -21}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 273, -21}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehVinvertedabove-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 181, -3}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 181, -3}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "zain-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{152, 931}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 171, 613}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{152, 931}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 171, 613}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "reh-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{328, 363}"; }, { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TaaAbove; position = "{328, 363}"; }, { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{74, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 181, 394}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "rehHamzaabove-ar.fina.LamRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{157, 715}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 181, -3}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{157, 715}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aRaa.fina.LamRaaIsol; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 181, -3}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sadTwodotsbelow-ar.init.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 591, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 808; }, { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 591, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 808; } ); }, { glyphname = "dadDotbelow-ar.init.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 426, 621}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 586, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 808; }, { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 426, 621}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 586, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 808; } ); }, { glyphname = "dad-ar.init.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 426, 621}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 808; }, { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 426, 621}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 808; } ); }, { glyphname = "sadThreedots-ar.init.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{368, 893}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 426, 621}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 808; }, { anchors = ( { name = TashkilAbove; position = "{368, 893}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 426, 621}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 808; } ); }, { glyphname = "sad-ar.init.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 808; }, { anchors = ( { name = TashkilAbove; position = "{426, 801}"; }, { name = TashkilBelow; position = "{498, -327}"; } ); components = ( { name = aSad.init.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 808; } ); }, { glyphname = "khah-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hah-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahHamzaabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 88, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 88, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tcheheh-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 249, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 249, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahThreedotsabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 93, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 93, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "jeem-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 88, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 88, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 93, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 93, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "dyeh-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{278, -470}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 254, -298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 269, -426}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{278, -470}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 254, -298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 269, -426}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahbelow-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 254, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 254, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "nyeh-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tchehDotabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 236, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 236, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahFourbelow-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{234, -425}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 234, -469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{234, -425}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 234, -469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 234, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahabove-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 88, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tcheh-ar.medi.SadHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 236, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{166, -327}"; }, { name = entry; position = "{55, 235}"; } ); components = ( { name = aHaa.medi.SadHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 236, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -688}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 195, -732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -688}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 195, -732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "beheh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{264, -620}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 264, -576}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{264, -620}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 264, -576}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonRing-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{215, -527}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 195, -483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{215, -527}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 195, -483}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behVabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonTahabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 835}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 73, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{54, 835}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 73, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehVabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{291, -602}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -581}"; }, { name = aBaa.medi.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{291, -602}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -581}"; }, { name = aBaa.medi.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 645}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{73, 645}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behDotless-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -488}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 195, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -488}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 195, -293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yeh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "rnoon-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "teheh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{176, -591}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 176, -54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{176, -591}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 176, -54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "peh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{291, -602}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -581}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{291, -602}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -581}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "beeh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{215, -571}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{215, -571}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "beh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "tteheh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noon-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{250, -606}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{250, -606}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{250, -606}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{250, -606}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "teh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "theh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "tteh-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonVabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 73, 54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 73, 54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "alefMaksura-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{171, 479}"; }, { name = HamzaBelow; position = "{195, -391}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = AlefAbove; position = "{171, 479}"; }, { name = HamzaBelow; position = "{195, -391}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "tehRing-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{291, -602}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -581}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{291, -602}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -581}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "e-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{215, -571}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{215, -571}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonghunna-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{220, -459}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsi-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -782}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 368, -826}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -782}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 368, -826}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{409, -695}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 370, -674}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{409, -695}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 370, -674}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 271, 99}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 271, 99}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 271, 201}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 271, 201}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 222, -194}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 222, -194}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 271, 201}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 271, 201}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "e-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{388, -665}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{388, -665}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "alefMaksura-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 271, 99}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 271, 99}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehTail-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 89, 11}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 89, 11}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsi-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehHamzaabove-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{149, 523}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -194}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{149, 523}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -194}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehKashmiri-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -582}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 368, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -582}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 368, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yeh-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{377, -596}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{377, -596}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehVabove-ar.fina.BaaYaaFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 222, -194}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 421; }, { anchors = ( { name = AlefAbove; position = "{173, 270}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.BaaYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 222, -194}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 421; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 145, -531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 145, -531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beheh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 165, -375}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 165, -375}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 860}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 445}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{88, 860}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 445}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonRing-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 44}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 44}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 96, -282}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 96, -282}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTahabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{15, 1060}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 34, 743}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{39, 836}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 519}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehVabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 860}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 445}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 860}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 445}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{191, -401}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -380}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{191, -401}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -380}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 870}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 59, 152}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{34, 870}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 59, 152}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behDotless-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehKashmiri-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 141, -97}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 141, -97}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yeh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{59, 616}"; }, { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = DigitAbove; position = "{59, 616}"; }, { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "rnoon-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 836}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 519}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{39, 836}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 519}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "teheh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{29, 841}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{29, 841}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 125, 147}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 125, 147}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "peh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{191, -401}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -380}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{191, -401}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -380}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beeh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{164, -370}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{164, -370}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tteheh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 820}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{0, 820}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noon-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{150, -405}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{150, -405}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{150, -405}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{150, -405}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "teh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{132, 870}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { anchors = ( { name = TashkilAbove; position = "{132, 870}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "theh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 820}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{0, 820}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tteh-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 836}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 519}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{39, 836}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 59, 519}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonDotbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonVabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 152}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "alefMaksura-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = HamzaBelow; position = "{145, -189}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = HamzaBelow; position = "{145, -189}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehRing-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 44}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 44}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{191, -401}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -380}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{191, -401}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -380}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "e-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{164, -370}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{164, -370}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 145, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonghunna-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsi-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "sheenDotbelow-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenTwodotsverticalabove-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 109, 292}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 109, 292}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seen-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenVinvertedabove-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 109, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 109, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenFourabove-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 109, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 109, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "sheen-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{81, 830}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 100, 512}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{81, 830}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 100, 512}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenFourdotsabove-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenDotbelowDotabove-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 109, 292}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 109, 292}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "seenThreedotsbelow-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "sheenThreedotsbelow-ar.medi.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = TashkilAbove; position = "{7, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aSen.medi.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 292}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "rreh-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 242}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 179, 242}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehv-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, -124}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 179, -124}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehRing-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -266}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -266}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehDotbelow-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{267, -456}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 252, -437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{267, -456}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 252, -437}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehVbelow-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{232, -568}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 232, -31}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{232, -568}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 232, -31}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehDotbelowdotabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{267, -456}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 252, -437}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -175}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{267, -456}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 252, -437}"; }, { name = dot.alt1; transform = "{1, 0, 0, 1, 69, -175}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehTwodots-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "jeh-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehFourdots-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehStroke-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 288, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 288, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehVinvertedabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 179, -124}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 179, -124}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "zain-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehTwodotshorizontalaboveTahabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 169, 491}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 169, 491}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "reh-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TaaAbove; position = "{325, 242}"; }, { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TaaAbove; position = "{325, 242}"; }, { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehTwodotsverticalabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{179, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 179, 271}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "rehHamzaabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 594}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 179, -124}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 553; }, { anchors = ( { name = TashkilAbove; position = "{154, 594}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aRaa.fina.PostTooth; transform = "{1, 0, 0, 1, -146, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 179, -124}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 553; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -782}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 368, -826}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -782}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 368, -826}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{409, -695}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 370, -674}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{409, -695}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 370, -674}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 271, 98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 271, 98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 271, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 271, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 222, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 222, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 271, 200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 271, 200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "e-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{388, -665}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{388, -665}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "alefMaksura-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = HamzaBelow; position = "{368, -484}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 271, 98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 271, 98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehTail-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 89, 10}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 89, 10}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsi-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehHamzaabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{149, 522}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{149, 522}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehKashmiri-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -582}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = ring.below; transform = "{1, 0, 0, 1, 368, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -582}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = ring.below; transform = "{1, 0, 0, 1, 368, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yeh-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{377, -596}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{293, 0}"; }, { name = DigitAbove; position = "{271, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{377, -596}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 368, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehVabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 222, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 730; }, { anchors = ( { name = AlefAbove; position = "{173, 269}"; }, { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{368, -361}"; } ); components = ( { name = aYaa.fina.PostTooth; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 222, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 730; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{461, -290}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 461, -333}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{461, -290}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 461, -333}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "beheh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 417, -177}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 417, -177}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 941}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 327, 526}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{356, 941}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 327, 526}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonRing-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, 375}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, 375}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 349, -84}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 349, -84}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behVabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonTahabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{283, 1141}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 302, 824}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{283, 1141}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 302, 824}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehVabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 941}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 327, 526}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{327, 941}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 327, 526}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonThreedotsabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 405, -182}"; }, { name = aBaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 405, -182}"; }, { name = aBaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehHamzaabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{302, 951}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{302, 951}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behDotless-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehKashmiri-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 461, 106}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 461, 106}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yeh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = DigitAbove; position = "{327, 697}"; }, { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = DigitAbove; position = "{327, 697}"; }, { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "rnoon-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{307, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 327, 599}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{307, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 327, 599}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "teheh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{297, 921}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{297, 921}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behVinvertedbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 441, 345}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 441, 345}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "tehThreedotsdown-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{302, 897}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{302, 897}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "peh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 405, -182}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 405, -182}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "beeh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "beh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TaaAbove; position = "{327, 599}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "tteheh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{307, 868}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{307, 868}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behThreedotsupabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 900}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{269, 900}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noon-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behThreedotsupbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "teh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "highhamzaYeh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{400, 951}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 376, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 757; }, { anchors = ( { name = TashkilAbove; position = "{400, 951}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 376, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 757; } ); }, { glyphname = "yehFarsiVinverted-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 327, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "theh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{269, 900}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{269, 900}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "tteh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{307, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 327, 599}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{307, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 327, 599}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonDotbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonVabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{302, 1043}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 302, 360}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{302, 1043}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 302, 360}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "alefMaksura-ar.init.AboveHaa"; layers = ( { anchors = ( { name = HamzaBelow; position = "{349, 8}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = HamzaBelow; position = "{349, 8}"; }, { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "tehRing-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, 375}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, 375}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehThreedotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 405, -182}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 405, -182}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "e-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 461, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonghunna-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehFarsi-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "noonTwodotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -493}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 459, -537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -493}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 459, -537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "beheh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 479, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 479, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{376, 928}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{376, 928}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonRing-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 386, 376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 391, 376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 410, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 410, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behVabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonTahabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 1128}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 322, 811}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{303, 1128}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 322, 811}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehVabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 928}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 928}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 466, -288}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 466, -288}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 938}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{322, 938}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behDotless-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehKashmiri-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 459, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 459, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yeh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{366, 684}"; }, { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = DigitAbove; position = "{371, 684}"; }, { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "rnoon-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 347, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{327, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 347, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "teheh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 908}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{317, 908}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{439, -396}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 439, 142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{439, -396}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 439, 142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 884}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{322, 884}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "peh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 466, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 466, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "beeh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -376}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -376}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "beh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "tteheh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 854}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{327, 854}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{289, 887}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{289, 887}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noon-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = NoonAbove; position = "{49, 488}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = NoonAbove; position = "{49, 488}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "teh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{420, 938}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 460, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 841; }, { anchors = ( { name = TashkilAbove; position = "{420, 938}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 460, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 841; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "theh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{289, 887}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{289, 887}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "tteh-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 347, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{327, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 347, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonDotbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonVabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{322, 1030}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 322, 347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{322, 1030}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 322, 347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "alefMaksura-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = HamzaBelow; position = "{479, -98}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = HamzaBelow; position = "{483, -98}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "tehRing-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, 376}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 366, 376}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 466, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 466, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "e-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -376}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -376}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 459, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonghunna-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsi-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -413}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 214, -457}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -413}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 214, -457}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "beheh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 229, -300}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 229, -300}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{158, 994}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{158, 994}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonRing-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 442}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 442}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 160, -208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 160, -208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behVabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 130, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 130, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonTahabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{85, 1194}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 104, 877}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{85, 1194}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 104, 877}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehVabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 130, 233}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 130, 233}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{129, 994}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{129, 994}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 216, -305}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 216, -305}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 947}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 137, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{112, 947}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 137, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behDotless-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehKashmiri-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 214, -17}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 214, -17}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yeh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{129, 750}"; }, { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = DigitAbove; position = "{129, 750}"; }, { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "rnoon-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{109, 970}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 129, 652}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{109, 970}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 129, 652}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "teheh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{100, 975}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{100, 975}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 194, 222}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 194, 222}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 950}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 950}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "peh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 216, -305}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 216, -305}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "beeh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "beh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "tteheh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{109, 921}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{109, 921}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 954}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{71, 954}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noon-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "teh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{287, 947}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 390}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { anchors = ( { name = TashkilAbove; position = "{287, 947}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 390}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 128, 224}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 128, 224}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "theh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 954}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{71, 954}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "tteh-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{109, 970}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 129, 652}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{109, 970}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 129, 652}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonDotbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonVabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 1097}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 104, 413}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 1097}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 104, 413}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "alefMaksura-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{135, 722}"; }, { name = HamzaBelow; position = "{214, -115}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = AlefAbove; position = "{135, 722}"; }, { name = HamzaBelow; position = "{214, -115}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "tehRing-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 442}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 127, 442}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 216, -305}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 216, -305}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "e-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonghunna-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsi-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "khah-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -36, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -36, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hah-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahHamzaabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, -36, 164}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, -36, 164}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "tcheheh-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 164, -267}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 164, -267}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahThreedotsabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-89, 831}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{-89, 831}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "jeem-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -36, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -36, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "dyeh-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{193, -425}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 168, -252}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 183, -381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{193, -425}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 168, -252}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 183, -381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahTahbelow-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 168, -252}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 168, -252}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "nyeh-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "tchehDotabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -36, 559}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 151, -272}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -36, 559}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 151, -272}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahFourbelow-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{149, -379}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 149, -423}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{149, -379}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 149, -423}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 149, -150}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "hahTahabove-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-56, 945}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -36, 627}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{-56, 945}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -36, 627}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "tcheh-ar.medi.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 151, -272}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 209; }, { anchors = ( { name = TashkilAbove; position = "{154, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aHaa.medi.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 151, -272}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 209; } ); }, { glyphname = "khah-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 160, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 160, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hah-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahHamzaabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 160, 78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 160, 78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "tcheheh-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{380, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 340, -333}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{380, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 340, -333}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahThreedotsabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 165, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 165, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "jeem-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{414, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 319, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{414, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 319, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahTwodotsverticalabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 160, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 160, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 165, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 165, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "dyeh-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{375, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 305, -208.576}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{375, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 305, -208.576}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{386, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 333, -243}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 348, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{386, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 333, -243}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 348, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahTahbelow-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{396, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 341, -299}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{396, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 341, -299}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "nyeh-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 310, -235}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 310, -235}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "tchehDotabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{406, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 160, 474}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 297, -342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{406, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 160, 474}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 297, -342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahFourbelow-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 259, -414}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 259, -414}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahThreedotsupbelow-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{375, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 315, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{375, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 315, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "hahTahabove-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{140, 859}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 160, 542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{140, 859}"; }, { name = TashkilBelow; position = "{369, -106}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 160, 542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "tcheh-ar.fina.AboveHaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{416, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 287, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 104; }, { anchors = ( { name = TashkilAbove; position = "{160, 801}"; }, { name = TashkilBelow; position = "{416, -556}"; }, { name = entry; position = "{104, 205}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 287, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 104; } ); }, { glyphname = "lamVabove-ar.init.LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{130, 1038}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 130, 354}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 489; }, { anchors = ( { name = TashkilAbove; position = "{130, 1038}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 130, 354}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 489; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 1070}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 126, 798}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 489; }, { anchors = ( { name = TashkilAbove; position = "{68, 1070}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 126, 798}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 489; } ); }, { glyphname = "lam-ar.init.LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 489; }, { anchors = ( { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 489; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{168, -407}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 129, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 489; }, { anchors = ( { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{168, -407}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 129, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 489; } ); }, { glyphname = "lamDotabove-ar.init.LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{106, 945}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 130, 798}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 489; }, { anchors = ( { name = TashkilAbove; position = "{106, 945}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 130, 798}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 489; } ); }, { glyphname = "lamBar-ar.init.LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 140, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 489; }, { anchors = ( { name = TashkilAbove; position = "{288, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aLam.init.LamHaaHaaInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 140, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 489; } ); }, { glyphname = "ghainDotbelow-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 112, 437}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 206, -178}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 112, 437}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 206, -178}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "ghain-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 112, 437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 112, 437}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "ainThreedotsdownabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 111, 437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 111, 437}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 111, 437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 111, 437}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 112, 437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 112, 437}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "ainThreedots-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 111, 437}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 111, 437}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "ain-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{206, -327}"; } ); components = ( { name = aAyn.init.Finjani; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "khah-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hah-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahHamzaabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = hamza.above; transform = "{1, 0, 0, 1, 181, -14}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = hamza.above; transform = "{1, 0, 0, 1, 181, -14}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "tcheheh-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 308, -326}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 308, -326}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahThreedotsabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "jeem-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "dyeh-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{337, -483}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -311}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 327, -439}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{337, -483}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -311}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 327, -439}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahTahbelow-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 312, -311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "nyeh-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "tchehDotabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{334, -352}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -331}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{334, -352}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 181, 382}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -331}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahFourbelow-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -438}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 293, -482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -438}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 293, -482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -355}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -355}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "hahTahabove-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 181, 450}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 181, 450}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "tcheh-ar.init.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{334, -352}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -331}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 606; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{334, -352}"; } ); components = ( { name = aHaa.init.Finjani; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -331}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 606; } ); }, { glyphname = "khah-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 398}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 398}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hah-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahHamzaabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = hamza.above; transform = "{1, 0, 0, 1, 166, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = hamza.above; transform = "{1, 0, 0, 1, 166, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "tcheheh-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 293, -310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 293, -310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahThreedotsabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 167, 398}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 167, 398}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "jeem-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 278, -193}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 278, -193}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 166, 398}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 166, 398}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 167, 398}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 167, 398}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "dyeh-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 278, -193}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 278, -193}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{322, -468}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 298, -295}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 312, -424}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{322, -468}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 298, -295}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 312, -424}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahTahbelow-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 298, -295}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 298, -295}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "nyeh-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 279, -193}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 279, -193}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "tchehDotabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 398}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 281, -315}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 398}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 281, -315}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahFourbelow-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -422}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 278, -466}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -422}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 278, -466}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 279, -193}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 279, -193}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "hahTahabove-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 166, 466}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 166, 466}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "tcheh-ar.medi.Finjani"; layers = ( { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 281, -315}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 534; }, { anchors = ( { name = TashkilAbove; position = "{166, 801}"; }, { name = TashkilBelow; position = "{278, -327}"; } ); components = ( { name = aHaa.medi.Finjani; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 281, -315}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 534; } ); }, { glyphname = "sheenDotbelow-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 157, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 157, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seen-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenVinvertedabove-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 108, -39}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 108, -39}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenFourabove-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 108, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 108, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "sheen-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{79, 894}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 576}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{79, 894}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 576}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenFourdotsabove-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenDotbelowDotabove-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 157, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 157, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "seenThreedotsbelow-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "sheenThreedotsbelow-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 344; }, { anchors = ( { name = TashkilAbove; position = "{108, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aSen.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 108, 356}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 164, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 344; } ); }, { glyphname = "sheenDotbelow-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenTwodotsverticalabove-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seen-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenVinvertedabove-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 110, -84}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 110, -84}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenFourabove-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 110, 208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 110, 208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "sheen-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{81, 848}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 101, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{81, 848}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 101, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenFourdotsabove-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenDotbelowDotabove-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "seenThreedotsbelow-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "sheenThreedotsbelow-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSen.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 110, 311}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "sadTwodotsbelow-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 533; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 533; } ); }, { glyphname = "dadDotbelow-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 533; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 420}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 533; } ); }, { glyphname = "dad-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 533; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 146, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 533; } ); }, { glyphname = "sadThreedots-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 146, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 533; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 146, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 533; } ); }, { glyphname = "sad-ar.init.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 533; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.init.PreYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 533; } ); }, { glyphname = "sadTwodotsbelow-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 510; }, { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "dadDotbelow-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 410}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 510; }, { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 410}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 244, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "dad-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 410}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 510; }, { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 134, 410}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "sadThreedots-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 410}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 510; }, { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 410}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "sad-ar.medi.PreYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 510; }, { anchors = ( { name = TashkilAbove; position = "{134, 801}"; }, { name = TashkilBelow; position = "{181, -327}"; } ); components = ( { name = aSad.medi.PreYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -469}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 107, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 262; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -469}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 107, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 262; } ); }, { glyphname = "beheh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 152, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 327; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 152, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 327; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "noonRing-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 59, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 188; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 59, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 188; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 83, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 306; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 83, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 306; } ); }, { glyphname = "behVabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 223; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 223; } ); }, { glyphname = "noonTahabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{2, 884}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 22, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{2, 884}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 22, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehVabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "noonThreedotsabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -312}"; }, { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -312}"; }, { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "yehHamzaabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 645}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = hamza.above; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 241; }, { anchors = ( { name = TashkilAbove; position = "{46, 645}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = hamza.above; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 241; } ); }, { glyphname = "behDotless-ar.init.High"; layers = ( { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehKashmiri-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "yeh-ar.init.High"; layers = ( { anchors = ( { name = DigitAbove; position = "{46, 439}"; }, { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = DigitAbove; position = "{46, 439}"; }, { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "rnoon-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 46, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 243; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 46, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 243; } ); }, { glyphname = "teheh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "behVinvertedbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -371}"; } ); components = ( { name = aBaa.init.High; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 88, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 240; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -371}"; } ); components = ( { name = aBaa.init.High; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 88, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 240; } ); }, { glyphname = "tehThreedotsdown-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "peh-ar.init.High"; layers = ( { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "beeh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -352}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 252; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -352}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 252; } ); }, { glyphname = "beh-ar.init.High"; layers = ( { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tteheh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "behThreedotsupabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "noon-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotsupbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "teh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "highhamzaYeh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{144, 645}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 80, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 461; }, { anchors = ( { name = TashkilAbove; position = "{144, 645}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 80, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 461; } ); }, { glyphname = "yehFarsiVinverted-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "theh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 245; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 245; } ); }, { glyphname = "tteh-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 46, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 243; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 46, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 243; } ); }, { glyphname = "noonDotbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonVabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 22, 103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 174; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 22, 103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 174; } ); }, { glyphname = "alefMaksura-ar.init.High"; layers = ( { anchors = ( { name = AlefAbove; position = "{44, 479}"; }, { name = HamzaBelow; position = "{107, -171}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = AlefAbove; position = "{44, 479}"; }, { name = HamzaBelow; position = "{107, -171}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "tehRing-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 59, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 59, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "yehThreedotsbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 139, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "e-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -352}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 252; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -352}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 107, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 252; } ); }, { glyphname = "noonghunna-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsi-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "noonTwodotsbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -469}"; } ); components = ( { name = aBaa.medi.High; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 135, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -469}"; } ); components = ( { name = aBaa.medi.High; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 135, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "beheh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{150, -376}"; } ); components = ( { name = aBaa.medi.High; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 150, -332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{150, -376}"; } ); components = ( { name = aBaa.medi.High; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 150, -332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 95, 378}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 95, 378}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonRing-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 81, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 81, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behVabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonTahabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{51, 993}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 71, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{51, 993}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 71, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehVabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 95, 378}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 95, 378}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonThreedotsabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{176, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -337}"; }, { name = aBaa.medi.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{176, -358}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -337}"; }, { name = aBaa.medi.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehHamzaabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 803}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = hamza.above; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{71, 803}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = hamza.above; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behDotless-ar.medi.High"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehKashmiri-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = ring.below; transform = "{1, 0, 0, 1, 135, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = ring.below; transform = "{1, 0, 0, 1, 135, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yeh-ar.medi.High"; layers = ( { anchors = ( { name = DigitAbove; position = "{95, 549}"; }, { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = DigitAbove; position = "{95, 549}"; }, { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "rnoon-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 451}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 451}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "teheh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behVinvertedbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{116, -371}"; } ); components = ( { name = aBaa.medi.High; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 116, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{116, -371}"; } ); components = ( { name = aBaa.medi.High; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 116, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tehThreedotsdown-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "peh-ar.medi.High"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{176, -358}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{176, -358}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "beeh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{155, -352}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{155, -352}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "beh-ar.medi.High"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TaaAbove; position = "{95, 451}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tteheh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behThreedotsupabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noon-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -362}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -362}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -362}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -362}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "teh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 95, 85}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "theh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tteh-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 451}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 95, 451}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonDotbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonVabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 896}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, 212}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{71, 896}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, 212}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "alefMaksura-ar.medi.High"; layers = ( { anchors = ( { name = AlefAbove; position = "{112, 479}"; }, { name = HamzaBelow; position = "{81, -89}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = AlefAbove; position = "{112, 479}"; }, { name = HamzaBelow; position = "{81, -89}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "tehRing-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 122, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{176, -358}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{176, -358}"; } ); components = ( { name = aBaa.medi.High; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "e-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{155, -352}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{155, -352}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 135, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonghunna-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsi-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = aBaa.medi.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "sheenDotbelow-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 803, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 803, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenTwodotsverticalabove-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seen-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenVinvertedabove-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 778, -97}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 778, -97}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenFourabove-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 778, 196}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 778, 196}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "sheen-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{749, 836}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 769, 519}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{749, 836}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 769, 519}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenFourdotsabove-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenDotbelowDotabove-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 803, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{508, -327}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 803, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "seenThreedotsbelow-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{849, -407}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 810, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{849, -407}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 810, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "sheenThreedotsbelow-ar.fina.BaaSen"; layers = ( { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{849, -407}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 810, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 961; }, { anchors = ( { name = TashkilAbove; position = "{573, 801}"; }, { name = TashkilBelow; position = "{849, -407}"; } ); components = ( { name = aSen.fina.BaaSen; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 778, 299}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 810, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 961; } ); }, { glyphname = "meem-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{337, -327}"; } ); components = ( { name = aMem.fina.PostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 565; }, { anchors = ( { name = TashkilAbove; position = "{225, 801}"; }, { name = TashkilBelow; position = "{337, -327}"; } ); components = ( { name = aMem.fina.PostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 565; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{129, -469}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 129, -513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{129, -469}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 129, -513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "beheh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{171, -400}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 171, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{171, -400}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 171, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "noonRing-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 134, 55}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 134, 55}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 387; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 387; } ); }, { glyphname = "behVabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); }, { glyphname = "noonTahabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 945}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 90, 627}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 287; }, { anchors = ( { name = TashkilAbove; position = "{71, 945}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 90, 627}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 287; } ); }, { glyphname = "yehVabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "noonThreedotsabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{188, -382}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 149, -361}"; }, { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{188, -382}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 149, -361}"; }, { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "yehHamzaabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{90, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = hamza.above; transform = "{1, 0, 0, 1, 115, 37}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{90, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = hamza.above; transform = "{1, 0, 0, 1, 115, 37}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behDotless-ar.init.Wide"; layers = ( { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehKashmiri-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{139, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = ring.below; transform = "{1, 0, 0, 1, 139, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{139, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = ring.below; transform = "{1, 0, 0, 1, 139, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yeh-ar.init.Wide"; layers = ( { anchors = ( { name = DigitAbove; position = "{115, 500}"; }, { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = DigitAbove; position = "{115, 500}"; }, { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "rnoon-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 115, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 115, 403}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "teheh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "behVinvertedbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{134, -371}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 134, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{134, -371}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 134, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "tehThreedotsdown-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 137, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 137, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "peh-ar.init.Wide"; layers = ( { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{188, -382}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 149, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{188, -382}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 149, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "beeh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -352}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -352}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "beh-ar.init.Wide"; layers = ( { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "tteheh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 120, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 120, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behThreedotsupabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "noon-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{218, -386}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 218, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{218, -386}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 218, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "behThreedotsupbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{159, -386}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 159, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{159, -386}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 159, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "teh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "highhamzaYeh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{188, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 240, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 621; }, { anchors = ( { name = TashkilAbove; position = "{188, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 240, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 621; } ); }, { glyphname = "yehFarsiVinverted-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "theh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "tteh-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 115, 403}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 115, 403}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "noonDotbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "noonVabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{90, 847}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 90, 164}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{90, 847}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 90, 164}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "alefMaksura-ar.init.Wide"; layers = ( { anchors = ( { name = AlefAbove; position = "{166, 479}"; }, { name = HamzaBelow; position = "{203, -171}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { anchors = ( { name = AlefAbove; position = "{166, 479}"; }, { name = HamzaBelow; position = "{203, -171}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); }, { glyphname = "tehRing-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 134, 55}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 134, 55}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "yehThreedotsbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{188, -382}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 149, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{188, -382}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 149, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "e-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -352}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{149, -352}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 129, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "noonghunna-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{105, -327}"; } ); components = ( { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsi-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "noonTwodotsbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "khah-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hah-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahHamzaabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 40, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 40, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tcheheh-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{230, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 216, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{230, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 216, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahThreedotsabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "jeem-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "dyeh-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{235, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{235, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{245, -480}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 221, -308}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 235, -436}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{245, -480}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 221, -308}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 235, -436}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahbelow-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{235, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 221, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{235, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 221, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "nyeh-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{230, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{230, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tchehDotabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{242, -348}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{242, -348}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 40, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahFourbelow-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{201, -435}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 201, -479}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{201, -435}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 201, -479}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{221, -352}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{221, -352}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 201, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahabove-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{21, 908}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 40, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{21, 908}"; }, { name = TashkilBelow; position = "{147, -327}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 40, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tcheh-ar.medi.HaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{242, -348}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{147, 801}"; }, { name = TashkilBelow; position = "{242, -348}"; } ); components = ( { name = aHaa.medi.HaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "khah-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hah-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahHamzaabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 29, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 29, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tcheheh-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 229, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 229, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahThreedotsabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 35, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 35, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "jeem-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 44, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 44, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 35, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 35, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "dyeh-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{259, -470}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 234, -298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 249, -426}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{259, -470}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 234, -298}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 249, -426}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahbelow-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 234, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 234, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "nyeh-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tchehDotabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 217, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 420}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 217, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahFourbelow-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -425}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 215, -469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -425}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 215, -469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 215, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "hahTahabove-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 44, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 44, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "tcheh-ar.medi.AynHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 217, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 55; }, { anchors = ( { name = TashkilAbove; position = "{68, 801}"; }, { name = TashkilBelow; position = "{215, -327}"; } ); components = ( { name = aHaa.medi.AynHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 217, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 55; } ); }, { glyphname = "meem-ar.medi.LamMemInitTatweel"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aMem.medi.LamMemInitTatweel; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 283; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aMem.medi.LamMemInitTatweel; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 283; } ); }, { glyphname = "heh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 187}"; } ); components = ( { name = aHeh.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 187}"; } ); components = ( { name = aHeh.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "hehgoal-ar.init.AboveHaa"; layers = ( { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 187}"; } ); components = ( { name = aHeh.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = HamzaAbove; position = "{312, 771}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 187}"; } ); components = ( { name = aHeh.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "khah-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 619, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 619, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hah-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahHamzaabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 619, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = hamza.above; transform = "{1, 0, 0, 1, 619, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "tcheheh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{639, -288}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 639, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{639, -288}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 639, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahThreedotsabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{566, 857}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 624, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{566, 857}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 624, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "jeem-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 619, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 619, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{599, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 619, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{599, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 619, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 624, 585}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 624, 585}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "dyeh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{638, -239}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 619, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{638, -239}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 619, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{663, -402}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 638, -229}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 653, -358}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{663, -402}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 638, -229}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 653, -358}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahTahbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{653, -229}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 638, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{653, -229}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 638, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "nyeh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{634, -171}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 624, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{634, -171}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 624, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "tchehDotabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{665, -270}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 619, 585}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 626, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{665, -270}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 619, 585}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 626, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahFourbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{619, -356}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 619, -400}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{619, -356}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 619, -400}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{624, -274}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 624, -127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{624, -274}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 624, -127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "hahTahabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{599, 971}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 619, 654}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{599, 971}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 619, 654}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "tcheh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{665, -270}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 626, -249}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{409, 801}"; }, { name = TashkilBelow; position = "{665, -270}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aHaa.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 626, -249}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "ghainDotbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 513, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 513, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ghain-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainThreedotsdownabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{185, 925}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{185, 925}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{189, 896}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{189, 896}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ainThreedots-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{151, 929}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{151, 929}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 209, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "ain-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 545; }, { anchors = ( { name = TashkilAbove; position = "{365, 825}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{-32, 205}"; } ); components = ( { name = aAyn.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 545; } ); }, { glyphname = "khah-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 516, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 516, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hah-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahHamzaabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = hamza.above; transform = "{1, 0, 0, 1, 516, -78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = hamza.above; transform = "{1, 0, 0, 1, 516, -78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "tcheheh-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{414, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 414, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{414, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 414, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahThreedotsabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 521, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 521, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "jeem-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{414, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 399, -244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{414, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 399, -244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahTwodotsverticalabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 516, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 516, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 521, 317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 521, 317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "dyeh-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{418, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 399, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{418, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 399, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{386, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 376, -348}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{386, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 376, -348}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahTahbelow-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{376, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -259}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{376, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 361, -259}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "nyeh-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{409, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 399, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{409, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 399, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "tchehDotabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{440, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 516, 317}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 401, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{440, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 516, 317}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 401, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahFourbelow-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 399, -396}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 399, -396}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahThreedotsupbelow-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 399, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 399, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "hahTahabove-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 516, 386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{399, 49}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 516, 386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "tcheh-ar.fina.AboveHaaIsol2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{440, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 401, -317}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 138; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{440, -556}"; } ); components = ( { name = aHaa.fina.AboveHaaIsol2; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 401, -317}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 138; } ); }, { glyphname = "meem-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{361, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 201}"; } ); components = ( { name = aMem.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 560; }, { anchors = ( { name = TashkilAbove; position = "{361, 801}"; }, { name = TashkilBelow; position = "{461, -127}"; }, { name = exit; position = "{0, 201}"; } ); components = ( { name = aMem.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 560; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-25, 905}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-25, 905}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, -139, -116}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, -139, -116}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-25, 905}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-25, 905}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, -141, 6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, -141, 6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kaf-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "gafRing-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 283, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 283, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "gueh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, -195, 6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, -195, 6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "gafTwodotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, -141, 6}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, -141, 6}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kafRing-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 283, 732}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 283, 732}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kafDotabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-40, 880}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -16, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-40, 880}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -16, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "ng-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-73, 1006}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-73, 1006}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kafThreedotsbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, -139, -116}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, -139, -116}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "gaf-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "keheh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{300, 827}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "gafThreedots-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-73, 1006}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-73, 1006}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kehehThreedotsabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-73, 1006}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-73, 1006}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kehehDotabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-40, 880}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -16, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-40, 880}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -16, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "ngoeh-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-25, 905}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 673; }, { anchors = ( { name = TashkilAbove; position = "{-25, 905}"; }, { name = TashkilBelow; position = "{460, -127}"; } ); components = ( { name = aKaf.init.AboveHaa; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 355, 802}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -15, 734}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 673; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{152, -417}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 113, -347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{152, -417}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 113, -347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{111, -420}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 111, -225}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{111, -420}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 111, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kaf-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "gafRing-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = ring.below; transform = "{1, 0, 0, 1, 244, 622}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 244, 622}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "gueh-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 111, -225}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 111, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 111, -225}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 111, -225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kafRing-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = ring.below; transform = "{1, 0, 0, 1, 244, 622}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = ring.below; transform = "{1, 0, 0, 1, 244, 622}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kafDotabove-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 16, 606}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 16, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "ng-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-42, 878}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{-42, 878}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{152, -417}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 113, -347}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{152, -417}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 113, -347}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "gaf-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "keheh-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "gafThreedots-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-42, 878}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{-42, 878}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-42, 878}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{-42, 878}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kehehDotabove-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 16, 606}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 16, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "ngoeh-ar.init.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{199, 801}"; }, { name = TashkilBelow; position = "{140, -327}"; } ); components = ( { name = aKaf.init.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 258, 703}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 17, 606}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{396, 834}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{396, 834}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kehehThreedotsbelow-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{396, 834}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{396, 834}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kehehThreedotsupbelow-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 367, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 367, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kaf-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "gafRing-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 991, 875}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 991, 875}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "gueh-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 366, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 366, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "gafTwodotsbelow-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 367, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 367, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kafRing-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 991, 875}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 991, 875}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kafDotabove-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "ng-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{348, 936}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{348, 936}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kafThreedotsbelow-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "gaf-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "keheh-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "gafThreedots-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{348, 936}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{348, 936}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kehehThreedotsabove-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{348, 936}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{348, 936}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "kehehDotabove-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "ngoeh-ar.fina.KafKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{396, 834}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 829; }, { anchors = ( { name = TashkilAbove; position = "{396, 834}"; }, { name = TashkilBelow; position = "{444, -327}"; } ); components = ( { name = aKaf.fina.KafKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1145, 753}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 357, 332}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 406, 664}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 829; } ); }, { glyphname = "lamVabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 977}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 191; }, { anchors = ( { name = TashkilAbove; position = "{54, 977}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-9, 1009}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 49, 737}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 191; }, { anchors = ( { name = TashkilAbove; position = "{-9, 1009}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 49, 737}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "lam-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 191; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 191; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "lamDotabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{29, 884}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 54, 737}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 191; }, { anchors = ( { name = TashkilAbove; position = "{29, 884}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 54, 737}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "lamBar-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 72, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 191; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 72, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 191; } ); }, { glyphname = "lamVabove-ar.medi.KafLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{6, 868}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 6, 185}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{6, 868}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 6, 185}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-57, 901}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 629}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{-57, 901}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 629}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "lam-ar.medi.KafLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "lamDotabove-ar.medi.KafLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 629}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 629}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "lamBar-ar.medi.KafLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 155, 543}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.KafLamMemMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 155, 543}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 313, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 313, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 312, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 312, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kaf-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "gafRing-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 258, 656}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 258, 656}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "gueh-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 311, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 311, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 312, -166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 312, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kafRing-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = ring.below; transform = "{1, 0, 0, 1, 258, 656}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = ring.below; transform = "{1, 0, 0, 1, 258, 656}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kafDotabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "ng-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-27, 912}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{-27, 912}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 313, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 313, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "gaf-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "keheh-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "gafThreedots-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-27, 912}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{-27, 912}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-27, 912}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{-27, 912}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "kehehDotabove-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "ngoeh-ar.medi.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 529; }, { anchors = ( { name = TashkilAbove; position = "{213, 801}"; }, { name = TashkilBelow; position = "{238, -327}"; } ); components = ( { name = aKaf.medi.KafLam; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 273, 736}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 31, 640}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 529; } ); }, { glyphname = "lamVabove-ar.medi.KafLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 937}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 5, 253}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{5, 937}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 5, 253}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-57, 969}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{-57, 969}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lam-ar.medi.KafLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{176, -346}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -325}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{176, -346}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -325}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamDotabove-ar.medi.KafLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-19, 844}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 5, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{-19, 844}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 5, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamBar-ar.medi.KafLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 16, 501}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.KafLamHehIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 16, 501}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamVabove-ar.medi.KafLamYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{62, 1023}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 62, 340}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{62, 1023}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 62, 340}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafLamYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-1, 1056}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 57, 784}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{-1, 1056}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 57, 784}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lam-ar.medi.KafLamYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafLamYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{217, -548}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{217, -548}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamDotabove-ar.medi.KafLamYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{37, 931}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 62, 784}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{37, 931}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 62, 784}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamBar-ar.medi.KafLamYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 71, 544}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.KafLamYaa; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 71, 544}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamVabove-ar.medi.KafLamAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-28, 894}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -28, 210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{-28, 894}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -28, 210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafLamAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 1018}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 107, 746}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{49, 1018}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 107, 746}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lam-ar.medi.KafLamAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafLamAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -267}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -267}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamDotabove-ar.medi.KafLamAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{85, 931}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 109, 785}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{85, 931}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 109, 785}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamBar-ar.medi.KafLamAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 116, 564}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{68, -327}"; } ); components = ( { name = aLam.medi.KafLamAlf; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 116, 564}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "lamVabove-ar.fina.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 602; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 602; } ); }, { glyphname = "lamThreedotsabove-ar.fina.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 602; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 602; } ); }, { glyphname = "lam-ar.fina.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 602; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 602; } ); }, { glyphname = "lamThreedotsbelow-ar.fina.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 602; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 602; } ); }, { glyphname = "lamDotabove-ar.fina.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 602; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 602; } ); }, { glyphname = "lamBar-ar.fina.KafLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 481, 473}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 602; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.KafLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 481, 473}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 602; } ); }, { glyphname = "alefHamzabelow-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{171, -342}"; } ); components = ( { name = aAlf.fina.KafAlf; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 171, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{171, -342}"; } ); components = ( { name = aAlf.fina.KafAlf; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 171, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "alef-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "alefThreeabove-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{120, 888}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 473}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 290; }, { anchors = ( { name = TashkilAbove; position = "{120, 888}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 473}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 290; } ); }, { glyphname = "alefTwoabove-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 888}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 473}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 290; }, { anchors = ( { name = TashkilAbove; position = "{91, 888}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 473}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 290; } ); }, { glyphname = "alefHamzaabove-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{111, 1050}"; }, { name = TashkilBelow; position = "{18, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 74, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 136, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 261; }, { anchors = ( { name = TashkilAbove; position = "{111, 1050}"; }, { name = TashkilBelow; position = "{18, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 74, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 136, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 261; } ); }, { glyphname = "alefMadda-ar.fina.KafAlf"; layers = ( { components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 159, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 159, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{37, 1050}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 62, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{37, 1050}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 62, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{171, -342}"; } ); components = ( { name = aAlf.fina.KafAlf; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 171, 205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{171, -342}"; } ); components = ( { name = aAlf.fina.KafAlf; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 171, 205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "alefWasla-ar.fina.KafAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{59, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 59, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 246; }, { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{59, -327}"; } ); components = ( { name = aAlf.fina.KafAlf; transform = "{1, 0, 0, 1, 59, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 246; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 347, -142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 347, -142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kaf-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "gafRing-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "gueh-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 347, -142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 347, -142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kafRing-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kafDotabove-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "ng-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "gaf-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "keheh-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "gafThreedots-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kehehDotabove-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "ngoeh-ar.init.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 585; }, { anchors = ( { name = TashkilAbove; position = "{354, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.init.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 585; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 322, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 322, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 320, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 320, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kaf-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "gafRing-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "gueh-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 320, -68}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 320, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 320, -68}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 320, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kafRing-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = ring.below; transform = "{1, 0, 0, 1, 222, 601}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kafDotabove-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "ng-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 322, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 322, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "gaf-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "keheh-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "gafThreedots-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{-52, 883}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "kehehDotabove-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "ngoeh-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 549; }, { anchors = ( { name = TashkilAbove; position = "{312, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.medi.KafMemAlf; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 294, 707}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 6, 611}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 549; } ); }, { glyphname = "meem-ar.medi.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aMem.medi.KafMemAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 37; }, { anchors = ( { name = TashkilAbove; position = "{107, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aMem.medi.KafMemAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 37; } ); }, { glyphname = "lamVabove-ar.medi.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 1025}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 189; }, { anchors = ( { name = TashkilAbove; position = "{59, 1025}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 189; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-4, 1058}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 54, 786}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 189; }, { anchors = ( { name = TashkilAbove; position = "{-4, 1058}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 54, 786}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 189; } ); }, { glyphname = "lam-ar.medi.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 189; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 189; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 189; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 189; } ); }, { glyphname = "lamDotabove-ar.medi.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 933}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 786}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 189; }, { anchors = ( { name = TashkilAbove; position = "{34, 933}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 786}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 189; } ); }, { glyphname = "lamBar-ar.medi.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 62, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 189; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = aLam.medi.KafMemLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 62, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 189; } ); }, { glyphname = "lamVabove-ar.fina.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 844}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 308, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 622; }, { anchors = ( { name = TashkilAbove; position = "{308, 844}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 308, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 622; } ); }, { glyphname = "lamThreedotsabove-ar.fina.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 622; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 622; } ); }, { glyphname = "lam-ar.fina.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 622; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 622; } ); }, { glyphname = "lamThreedotsbelow-ar.fina.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{371, -700}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 332, -679}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 622; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{371, -700}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 332, -679}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 622; } ); }, { glyphname = "lamDotabove-ar.fina.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 622; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 269, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 622; } ); }, { glyphname = "lamBar-ar.fina.KafMemLam"; layers = ( { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 460, 487}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 622; }, { anchors = ( { name = TashkilAbove; position = "{210, 801}"; }, { name = TashkilBelow; position = "{303, -439}"; } ); components = ( { name = aLam.fina.KafMemLam; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 460, 487}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 622; } ); }, { glyphname = "alefHamzabelow-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -422}"; } ); components = ( { name = aAlf.fina.KafMemAlf; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 127, 125}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -422}"; } ); components = ( { name = aAlf.fina.KafMemAlf; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 127, 125}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "alef-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "alefThreeabove-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{121, 946}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 96, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 531}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 268; }, { anchors = ( { name = TashkilAbove; position = "{121, 946}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 96, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 531}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 268; } ); }, { glyphname = "alefTwoabove-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 897}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 96, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 482}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 268; }, { anchors = ( { name = TashkilAbove; position = "{91, 897}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 96, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 482}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 268; } ); }, { glyphname = "alefHamzaabove-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{92, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 92, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 151, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{92, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 92, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 151, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "alefMadda-ar.fina.KafMemAlf"; layers = ( { components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 156, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 272; }, { components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 156, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 272; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 1050}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 59, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{34, 1050}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 59, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -422}"; } ); components = ( { name = aAlf.fina.KafMemAlf; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 127, 125}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{127, -422}"; } ); components = ( { name = aAlf.fina.KafMemAlf; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 127, 125}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "alefWasla-ar.fina.KafMemAlf"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{54, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 54, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 228; }, { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{54, -327}"; } ); components = ( { name = aAlf.fina.KafMemAlf; transform = "{1, 0, 0, 1, 54, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 228; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-24, 891}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-24, 891}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{151, -358}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 112, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{151, -358}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 112, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-24, 891}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-24, 891}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{110, -362}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 110, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{110, -362}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 110, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kaf-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "gafRing-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 317, 781}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 317, 781}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "gueh-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 110, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 110, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 110, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 110, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kafRing-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 317, 781}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 317, 781}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kafDotabove-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-39, 866}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -15, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-39, 866}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -15, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "ng-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-72, 992}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-72, 992}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{151, -358}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 112, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{151, -358}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 112, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "gaf-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "keheh-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "gafThreedots-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-72, 992}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-72, 992}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-72, 992}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-72, 992}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kehehDotabove-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-39, 866}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -15, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-39, 866}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -15, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "ngoeh-ar.init.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-24, 891}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 674; }, { anchors = ( { name = TashkilAbove; position = "{-24, 891}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 401, 832}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -14, 720}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 674; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-71, 828}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{-71, 828}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -259}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -259}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-71, 828}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{-71, 828}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 309, -137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 309, -137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kaf-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "gafRing-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 252, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 252, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "gueh-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 309, -137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 309, -137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 309, -137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 309, -137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kafRing-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 252, 669}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 252, 669}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kafDotabove-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "ng-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-120, 929}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{-120, 929}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -259}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 311, -259}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "gaf-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "keheh-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "gafThreedots-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-120, 929}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{-120, 929}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-120, 929}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{-120, 929}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "kehehDotabove-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{172, 801}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "ngoeh-ar.medi.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-71, 828}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { anchors = ( { name = TashkilAbove; position = "{-71, 828}"; }, { name = TashkilBelow; position = "{196, -327}"; } ); components = ( { name = aKaf.medi.KafHeh; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 336, 746}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -62, 657}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 463; } ); }, { glyphname = "heh-ar.fina.KafHeh"; layers = ( { anchors = ( { name = HamzaAbove; position = "{83, 425}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.KafHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 336; }, { anchors = ( { name = HamzaAbove; position = "{83, 425}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.KafHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 336; } ); }, { glyphname = "hehgoal-ar.fina.KafHeh"; layers = ( { anchors = ( { name = HamzaAbove; position = "{181, 244}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "388 54 OFFCURVE", "402 32 OFFCURVE", "397 5 CURVE SMOOTH", "389 -34 OFFCURVE", "375 -50 OFFCURVE", "353 -43 CURVE SMOOTH", "316 -31 OFFCURVE", "284 -6 OFFCURVE", "257 34 CURVE SMOOTH", "251 43 OFFCURVE", "248 48 OFFCURVE", "247 50 CURVE SMOOTH", "242 56 OFFCURVE", "235 55 OFFCURVE", "227 47 CURVE SMOOTH", "219 39 OFFCURVE", "200 17 OFFCURVE", "171 -19 CURVE SMOOTH", "133 -66 OFFCURVE", "111 -94 OFFCURVE", "104 -101 CURVE SMOOTH", "100 -106 OFFCURVE", "95 -106 OFFCURVE", "91 -104 CURVE SMOOTH", "87 -102 OFFCURVE", "87 -97 OFFCURVE", "91 -90 CURVE SMOOTH", "112 -55 OFFCURVE", "157 13 OFFCURVE", "226 116 CURVE SMOOTH", "246 145 OFFCURVE", "263 150 OFFCURVE", "279 129 CURVE SMOOTH", "295 108 OFFCURVE", "320 89 OFFCURVE", "355 71 CURVE SMOOTH" ); } ); width = 336; }, { anchors = ( { name = HamzaAbove; position = "{181, 244}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "260 162 OFFCURVE", "278 160 OFFCURVE", "295 136 CURVE SMOOTH", "311 113 OFFCURVE", "338 93 OFFCURVE", "375 78 CURVE SMOOTH", "403 66 OFFCURVE", "415 46 OFFCURVE", "409 17 CURVE SMOOTH", "401 -21 OFFCURVE", "385 -46 OFFCURVE", "363 -57 CURVE SMOOTH", "358 -59 OFFCURVE", "351 -59 OFFCURVE", "343 -56 CURVE SMOOTH", "301 -42 OFFCURVE", "263 -12 OFFCURVE", "229 34 CURVE SMOOTH", "226 38 OFFCURVE", "223 38 OFFCURVE", "220 35 CURVE SMOOTH", "217 32 OFFCURVE", "200 12 OFFCURVE", "169 -26 CURVE SMOOTH", "138 -64 OFFCURVE", "116 -90 OFFCURVE", "104 -104 CURVE SMOOTH", "92 -118 OFFCURVE", "83 -123 OFFCURVE", "77 -119 CURVE SMOOTH", "71 -115 OFFCURVE", "71 -108 OFFCURVE", "77 -98 CURVE SMOOTH", "107 -47 OFFCURVE", "138 2 OFFCURVE", "172 51 CURVE SMOOTH", "206 100 OFFCURVE", "228 130 OFFCURVE", "240 142 CURVE SMOOTH" ); } ); width = 336; } ); }, { glyphname = "tehMarbutagoal-ar.fina.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 178, 225}"; }, { name = "hehgoal-ar.fina.KafHeh"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 336; }, { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "hehgoal-ar.fina.KafHeh"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 178, 225}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 336; } ); }, { glyphname = "ae-ar.fina.KafHeh"; layers = ( { anchors = ( { name = HamzaAbove; position = "{83, 425}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.KafHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 336; }, { anchors = ( { name = HamzaAbove; position = "{83, 425}"; }, { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.KafHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 336; } ); }, { glyphname = "tehMarbuta-ar.fina.KafHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 336; }, { anchors = ( { name = TashkilAbove; position = "{161, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.KafHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 336; } ); }, { glyphname = "dalFourdots-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 196, 457}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 198, 457}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalVinvertedabove-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 145, 24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 146, 24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalRing-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 184, 29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 186, 29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "ddal-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 145, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 146, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalVinvertedbelow-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{211, -391}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 211, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{213, -391}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 213, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "thal-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 196, 457}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 198, 457}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dal-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalTwodotsverticalbelowTah-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 145, 488}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 231, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{252, -391}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 146, 488}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 233, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dahal-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 196, 457}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 198, 457}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalDotbelowTah-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 145, 488}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 231, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 146, 488}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalDotbelow-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 231, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 233, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dalThreedotsdown-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 196, 457}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 198, 457}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "dul-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 196, 457}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 198, 457}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "ddahal-ar.fina.KafDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{181, 801}"; }, { name = TashkilBelow; position = "{252, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 193, -229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 403; }, { anchors = ( { name = TashkilAbove; position = "{183, 801}"; }, { name = TashkilBelow; position = "{254, -327}"; } ); components = ( { name = aDal.fina.KafDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 195, -229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 405; } ); }, { glyphname = "lamVabove-ar.init.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-37, 964}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -37, 280}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 141; }, { anchors = ( { name = TashkilAbove; position = "{-37, 964}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -37, 280}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 141; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-99, 997}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -41, 725}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 141; }, { anchors = ( { name = TashkilAbove; position = "{-99, 997}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -41, 725}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 141; } ); }, { glyphname = "lam-ar.init.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 141; }, { anchors = ( { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 141; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{95, -373}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 141; }, { anchors = ( { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{95, -373}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 56, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 141; } ); }, { glyphname = "lamDotabove-ar.init.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-61, 871}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -37, 725}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 141; }, { anchors = ( { name = TashkilAbove; position = "{-61, 871}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -37, 725}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 141; } ); }, { glyphname = "lamBar-ar.init.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 0, 479}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 141; }, { anchors = ( { name = TashkilAbove; position = "{-37, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aLam.init.LamHeh; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 0, 479}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 141; } ); }, { glyphname = "lamVabove-ar.medi.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-3, 977}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -3, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{-3, 977}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -3, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-66, 1009}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -8, 737}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{-66, 1009}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -8, 737}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "lam-ar.medi.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{175, -382}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{175, -382}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 136, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "lamDotabove-ar.medi.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-28, 884}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -3, 737}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{-28, 884}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -3, 737}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "lamBar-ar.medi.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 10, 523}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 187; }, { anchors = ( { name = TashkilAbove; position = "{-3, 801}"; }, { name = TashkilBelow; position = "{31, -327}"; } ); components = ( { name = aLam.medi.LamHeh; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 10, 523}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 187; } ); }, { glyphname = "heh-ar.fina.LamHeh"; layers = ( { anchors = ( { name = HamzaAbove; position = "{82, 402}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.LamHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 404; }, { anchors = ( { name = HamzaAbove; position = "{82, 402}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.LamHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 404; } ); }, { glyphname = "hehgoal-ar.fina.LamHeh"; layers = ( { anchors = ( { name = HamzaAbove; position = "{171, 244}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "430 13 OFFCURVE", "440 1 OFFCURVE", "438 -19 CURVE SMOOTH", "434 -54 OFFCURVE", "431 -72 OFFCURVE", "431 -74 CURVE SMOOTH", "425 -89 OFFCURVE", "418 -96 OFFCURVE", "408 -96 CURVE SMOOTH", "372 -96 OFFCURVE", "339 -90 OFFCURVE", "310 -76 CURVE SMOOTH", "270 -57 OFFCURVE", "242 -31 OFFCURVE", "225 0 CURVE", "220 6 OFFCURVE", "213 6 OFFCURVE", "205 -1 CURVE SMOOTH", "195 -9 OFFCURVE", "179 -26 OFFCURVE", "157 -53 CURVE SMOOTH", "119 -99 OFFCURVE", "96 -126 OFFCURVE", "89 -133 CURVE SMOOTH", "85 -138 OFFCURVE", "81 -139 OFFCURVE", "77 -137 CURVE SMOOTH", "73 -135 OFFCURVE", "73 -130 OFFCURVE", "77 -123 CURVE SMOOTH", "106 -73 OFFCURVE", "151 -4 OFFCURVE", "212 83 CURVE SMOOTH", "232 112 OFFCURVE", "250 117 OFFCURVE", "265 96 CURVE SMOOTH", "282 74 OFFCURVE", "307 54 OFFCURVE", "341 38 CURVE SMOOTH", "361 28 OFFCURVE", "384 22 OFFCURVE", "409 17 CURVE SMOOTH" ); } ); width = 404; }, { anchors = ( { name = HamzaAbove; position = "{171, 244}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "314 62 OFFCURVE", "360 37 OFFCURVE", "419 30 CURVE SMOOTH", "443 27 OFFCURVE", "455 16 OFFCURVE", "452 -6 CURVE SMOOTH", "447 -50 OFFCURVE", "438 -78 OFFCURVE", "427 -91 CURVE SMOOTH", "416 -104 OFFCURVE", "405 -110 OFFCURVE", "395 -110 CURVE SMOOTH", "307 -111 OFFCURVE", "245 -79 OFFCURVE", "210 -14 CURVE", "207 -11 OFFCURVE", "205 -10 OFFCURVE", "202 -11 CURVE", "195 -17 OFFCURVE", "177 -37 OFFCURVE", "149 -71 CURVE SMOOTH", "121 -105 OFFCURVE", "101 -127 OFFCURVE", "90 -139 CURVE SMOOTH", "79 -151 OFFCURVE", "71 -155 OFFCURVE", "65 -151 CURVE SMOOTH", "59 -147 OFFCURVE", "59 -141 OFFCURVE", "65 -131 CURVE SMOOTH", "95 -80 OFFCURVE", "126 -30 OFFCURVE", "160 18 CURVE SMOOTH", "194 66 OFFCURVE", "216 96 OFFCURVE", "228 108 CURVE SMOOTH", "248 128 OFFCURVE", "266 128 OFFCURVE", "281 107 CURVE SMOOTH" ); } ); width = 404; } ); }, { glyphname = "tehMarbutagoal-ar.fina.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 171, 208}"; }, { name = "hehgoal-ar.fina.LamHeh"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 404; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "hehgoal-ar.fina.LamHeh"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 171, 208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 404; } ); }, { glyphname = "ae-ar.fina.LamHeh"; layers = ( { anchors = ( { name = HamzaAbove; position = "{82, 402}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.LamHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 404; }, { anchors = ( { name = HamzaAbove; position = "{82, 402}"; }, { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.LamHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 404; } ); }, { glyphname = "tehMarbuta-ar.fina.LamHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.LamHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 82, 334}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 404; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.fina.LamHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 82, 334}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 404; } ); }, { glyphname = "dalFourdots-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalVinvertedabove-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 240, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 240, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalRing-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 204, 2}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 204, 2}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "ddal-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{221, 817}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 240, 500}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{221, 817}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 240, 500}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalVinvertedbelow-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{221, -359}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 221, 178}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{221, -359}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 221, 178}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "thal-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 289, 456}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 289, 456}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dal-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalTwodotsverticalbelowTah-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{221, 817}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 240, 500}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 240, -228}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{221, 817}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 240, 500}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 240, -228}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dahal-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalDotbelowTah-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{221, 817}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 240, 500}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 240, -228}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{221, 817}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 240, 500}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 240, -228}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalDotbelow-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 240, -228}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 240, -228}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dalThreedotsdown-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "dul-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 290, 456}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "ddahal-ar.fina.LamDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 241, -228}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 488; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{216, -327}"; } ); components = ( { name = aDal.fina.LamDal; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 241, -228}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-117, 895}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{-117, 895}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 222, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 222, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-117, 895}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{-117, 895}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 220, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 220, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kaf-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "gafRing-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 278, 757}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 278, 757}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "gueh-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 220, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 220, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 220, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 220, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kafRing-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 278, 757}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 278, 757}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kafDotabove-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -108, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -108, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "ng-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-166, 996}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{-166, 996}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 222, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 222, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "gaf-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "keheh-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "gafThreedots-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-166, 996}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{-166, 996}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-166, 996}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{-166, 996}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kehehDotabove-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -108, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{195, 854}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -108, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "ngoeh-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-117, 895}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 564; }, { anchors = ( { name = TashkilAbove; position = "{-117, 895}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aKaf.medi.KafMemMedi; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 339, 805}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -107, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 564; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-103, 869}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{-103, 869}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 227, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 227, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-103, 869}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{-103, 869}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 225, 78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 225, 78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kaf-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "gafRing-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 190, 723}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 190, 723}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "gueh-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 171, 78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 171, 78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 225, 78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 225, 78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kafRing-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 190, 723}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 190, 723}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kafDotabove-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -94, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -94, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "ng-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-151, 970}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{-151, 970}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 227, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 227, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "gaf-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "keheh-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "gafThreedots-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-151, 970}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{-151, 970}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-151, 970}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{-151, 970}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "kehehDotabove-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -94, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{146, 830}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -94, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "ngoeh-ar.init.KafMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-103, 869}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 541; }, { anchors = ( { name = TashkilAbove; position = "{-103, 869}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.KafMemInit; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 239, 771}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -93, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 541; } ); }, { glyphname = "ghainDotbelow-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 311, 29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 311, 29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "ghain-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "ainThreedotsdownabove-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{142, 918}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{142, 918}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{156, 821}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{156, 821}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 889}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{146, 889}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "ainThreedots-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{108, 922}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{108, 922}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 166, 650}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "ain-ar.init.AynMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 490; }, { anchors = ( { name = TashkilAbove; position = "{164, 801}"; }, { name = TashkilBelow; position = "{311, -327}"; } ); components = ( { name = aAyn.init.AynMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 490; } ); }, { glyphname = "qafDotless-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "fehThreedotsupbelow-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 132, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "fehTwodotsbelow-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "qaf-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "feh-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "qafThreedotsabove-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-56, 911}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{-56, 911}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "fehDotless-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "fehDotmovedbelow-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "fehDotbelow-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 127, -93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "veh-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-56, 911}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{-56, 911}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "fehThreedotsbelow-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 134, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "peheh-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-27, 932}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{-27, 932}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "qafDotabove-ar.init.FaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 175; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = aFaa.init.FaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 2, 639}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 175; } ); }, { glyphname = "khah-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hah-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahHamzaabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 387, 99}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 387, 99}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "tcheheh-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 347, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 347, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahThreedotsabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "jeem-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "dyeh-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{376, -353}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 352, -181}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 367, -309}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{376, -353}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 352, -181}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 367, -309}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahTahbelow-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 352, -181}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 352, -181}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "nyeh-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "tchehDotabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 334, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 387, 495}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 334, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahFourbelow-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -308}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 333, -352}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -308}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 333, -352}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 333, -78}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "hahTahabove-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{367, 880}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 387, 563}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{367, 880}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 387, 563}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "tcheh-ar.init.HaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 334, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 514; }, { anchors = ( { name = TashkilAbove; position = "{250, 801}"; }, { name = TashkilBelow; position = "{333, -327}"; } ); components = ( { name = aHaa.init.HaaMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 334, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 514; } ); }, { glyphname = "heh-ar.init.HehMemInit"; layers = ( { anchors = ( { name = HamzaAbove; position = "{188, 695}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aHeh.init.HehMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = HamzaAbove; position = "{188, 695}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aHeh.init.HehMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "hehgoal-ar.init.HehMemInit"; layers = ( { anchors = ( { name = HamzaAbove; position = "{188, 695}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aHeh.init.HehMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = HamzaAbove; position = "{188, 695}"; }, { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aHeh.init.HehMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "meem-ar.medi.KafMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.medi.KafMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 216; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aMem.medi.KafMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 216; } ); }, { glyphname = "sheenDotbelow-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 299, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 299, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 249, 520}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 249, 520}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seen-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenVinvertedabove-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 249, 124}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 249, 124}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenFourabove-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 249, 417}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 249, 417}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "sheen-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{225, 1008}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 244, 690}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{225, 1008}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 244, 690}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenFourdotsabove-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenDotbelowDotabove-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 249, 520}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 299, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 249, 520}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 299, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "seenThreedotsbelow-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 307, -142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 307, -142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "sheenThreedotsbelow-ar.init.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 307, -142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 525; }, { anchors = ( { name = TashkilAbove; position = "{249, 801}"; }, { name = TashkilBelow; position = "{299, -327}"; } ); components = ( { name = aSen.init.SenMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 471}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 307, -142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 525; } ); }, { glyphname = "sadTwodotsbelow-ar.init.SadMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 392, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 392, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); }, { glyphname = "dadDotbelow-ar.init.SadMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 251, 632}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 387, -20}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 251, 632}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 387, -20}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); }, { glyphname = "dad-ar.init.SadMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 251, 632}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 251, 632}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); }, { glyphname = "sadThreedots-ar.init.SadMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{193, 904}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 251, 632}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { anchors = ( { name = TashkilAbove; position = "{193, 904}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 251, 632}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); }, { glyphname = "sad-ar.init.SadMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 650; }, { anchors = ( { name = TashkilAbove; position = "{325, 801}"; }, { name = TashkilBelow; position = "{396, -327}"; } ); components = ( { name = aSad.init.SadMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 650; } ); }, { glyphname = "meem-ar.init.MemMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{158, 801}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = aMem.init.MemMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 280; }, { anchors = ( { name = TashkilAbove; position = "{158, 801}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = aMem.init.MemMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 280; } ); }, { glyphname = "meem-ar.medi.SenMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aMem.medi.SenMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 173; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{149, -327}"; } ); components = ( { name = aMem.medi.SenMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 173; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-127, 895}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{-127, 895}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{291, -358}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{291, -358}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-127, 895}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{-127, 895}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{250, -362}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{250, -362}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 250, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kaf-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "gafRing-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 137, 767}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 137, 767}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "gueh-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 195, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kafRing-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 137, 767}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 137, 767}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kafDotabove-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "ng-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-176, 996}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{-176, 996}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{291, -358}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{291, -358}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 251, -337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "gaf-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "keheh-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "gafThreedots-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-215, 996}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -157, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{-215, 996}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -157, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-176, 996}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{-176, 996}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "kehehDotabove-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{49, 854}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -118, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "ngoeh-ar.init.KafYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-167, 895}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -157, 724}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 505; }, { anchors = ( { name = TashkilAbove; position = "{-167, 895}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = aKaf.init.KafYaaIsol; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 192, 854}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -157, 724}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 505; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -586}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 167, -630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -586}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 167, -630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beheh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -444}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 182, -400}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -444}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 182, -400}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 879}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{89, 879}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonRing-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 171, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 171, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonTahabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 1079}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 36, 762}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 1079}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 36, 762}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehVabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 879}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 879}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -426}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 169, -405}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -426}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 169, -405}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{36, 889}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{36, 889}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behDotless-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehKashmiri-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 167, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 167, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yeh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = DigitAbove; position = "{60, 635}"; }, { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = DigitAbove; position = "{60, 635}"; }, { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "rnoon-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{41, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 60, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{41, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 60, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "teheh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{12, 859}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{12, 859}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -488}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 148, 49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -488}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 148, 49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{17, 835}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{17, 835}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "peh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -426}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 169, -405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -426}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 169, -405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beeh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -469}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -469}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tteheh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-17, 838}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{-17, 838}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noon-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -430}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -430}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -430}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -430}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "teh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 889}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 246, 140}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 627; }, { anchors = ( { name = TashkilAbove; position = "{122, 889}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 246, 140}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 627; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "theh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-17, 838}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{-17, 838}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tteh-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{41, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 60, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{41, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 60, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonDotbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonVabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{36, 981}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 36, 298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{36, 981}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 36, 298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "alefMaksura-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{73, 542}"; }, { name = HamzaBelow; position = "{167, -288}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = AlefAbove; position = "{73, 542}"; }, { name = HamzaBelow; position = "{167, -288}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehRing-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 171, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 171, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -426}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 169, -405}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -426}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 169, -405}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "e-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -469}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -469}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 167, -356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonghunna-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsi-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "khah-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 380, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 380, 503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hah-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahHamzaabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 380, 107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 263, 337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "tcheheh-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 391, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 391, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahThreedotsabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 381, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 381, 503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "jeem-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 371, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 371, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 380, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 380, 503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 381, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 381, 503}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "dyeh-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 371, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 371, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 388, -171}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 402, -299}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 388, -171}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 402, -299}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahTahbelow-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 388, -171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 388, -171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "nyeh-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 376, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 376, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "tchehDotabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 378, -190}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 380, 503}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 380, 503}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 378, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahFourbelow-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 371, -342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 371, -342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 376, -68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 376, -68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "hahTahabove-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 380, 571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 380, 571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "tcheh-ar.init.HaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 378, -190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 616; }, { anchors = ( { name = TashkilAbove; position = "{263, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aHaa.init.HaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 378, -190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 616; } ); }, { glyphname = "meemDotabove-ar.init.MemYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.MemYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 180, 541}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.MemYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 180, 541}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "meem-ar.init.MemYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.MemYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.MemYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "meemDotbelow-ar.init.MemYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.MemYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 278, -130}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 386; }, { anchors = ( { name = TashkilAbove; position = "{171, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.MemYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 278, -130}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 386; } ); }, { glyphname = "qafDotless-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "fehThreedotsupbelow-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "fehTwodotsbelow-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "qaf-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "feh-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "qafThreedotsabove-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-59, 902}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{-59, 902}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "fehDotless-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "fehDotmovedbelow-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "fehDotbelow-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 146, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "veh-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-59, 902}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{-59, 902}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "fehThreedotsbelow-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "peheh-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-30, 923}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{-30, 923}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "qafDotabove-ar.init.FaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 237; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{122, -396}"; } ); components = ( { name = aFaa.init.FaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 630}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 237; } ); }, { glyphname = "ghainDotbelow-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 613}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 439, 29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 613}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 439, 29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "ghain-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 613}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 257, 613}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "ainThreedotsdownabove-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{232, 881}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 256, 613}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{232, 881}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 256, 613}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 256, 613}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 256, 613}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{237, 852}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 257, 613}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{237, 852}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 257, 613}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "ainThreedots-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{198, 885}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 256, 613}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{198, 885}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 256, 613}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "ain-ar.init.AynYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 596; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{439, -327}"; } ); components = ( { name = aAyn.init.AynYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 596; } ); }, { glyphname = "lamVabove-ar.init.LamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-6, 985}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -6, 302}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 242; }, { anchors = ( { name = TashkilAbove; position = "{-6, 985}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -6, 302}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-69, 1018}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -11, 746}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 242; }, { anchors = ( { name = TashkilAbove; position = "{-69, 1018}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -11, 746}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "lam-ar.init.LamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 242; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{144, -412}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 242; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{144, -412}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "lamDotabove-ar.init.LamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-31, 893}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -6, 746}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 242; }, { anchors = ( { name = TashkilAbove; position = "{-31, 893}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -6, 746}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "lamBar-ar.init.LamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 8, 509}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 242; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = aLam.init.LamYaaIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 8, 509}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 242; } ); }, { glyphname = "heh-ar.init.HehYaaIsol"; layers = ( { anchors = ( { name = HamzaAbove; position = "{271, 677}"; }, { name = TashkilAbove; position = "{270, 801}"; }, { name = TashkilBelow; position = "{314, -327}"; } ); components = ( { name = aHeh.init.HehYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 552; }, { anchors = ( { name = HamzaAbove; position = "{271, 677}"; }, { name = TashkilAbove; position = "{270, 801}"; }, { name = TashkilBelow; position = "{314, -327}"; } ); components = ( { name = aHeh.init.HehYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 552; } ); }, { glyphname = "hehgoal-ar.init.HehYaaIsol"; layers = ( { anchors = ( { name = HamzaAbove; position = "{271, 677}"; }, { name = TashkilAbove; position = "{270, 801}"; }, { name = TashkilBelow; position = "{314, -327}"; } ); components = ( { name = aHeh.init.HehYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 552; }, { anchors = ( { name = HamzaAbove; position = "{271, 677}"; }, { name = TashkilAbove; position = "{270, 801}"; }, { name = TashkilBelow; position = "{314, -327}"; } ); components = ( { name = aHeh.init.HehYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 552; } ); }, { glyphname = "yehFarsiFourbelow-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -659}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 355, -703}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -659}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 355, -703}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehThreedotsbelow-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{396, -572}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 357, -551}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{396, -572}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 357, -551}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiTwoabove-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 229, 186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 229, 186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 230, 288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 230, 288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiVinverted-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 181, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 181, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 230, 288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 230, 288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "e-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{375, -542}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 355, -429}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{375, -542}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 355, -429}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "alefMaksura-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = HamzaBelow; position = "{355, -361}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = HamzaBelow; position = "{355, -361}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsiThreeabove-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 229, 186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 229, 186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehTail-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 80, 120}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = aYaa.tail; transform = "{1, 0, 0, 1, 80, 120}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehFarsi-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehHamzaabove-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{107, 610}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 132, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{107, 610}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 132, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehKashmiri-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -458}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 355, -263}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -458}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 355, -263}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yeh-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = DigitAbove; position = "{229, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{365, -473}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 355, -429}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = DigitAbove; position = "{229, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{365, -473}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 355, -429}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "yehVabove-ar.fina.KafYaaIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 181, -107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 476; }, { anchors = ( { name = AlefAbove; position = "{132, 356}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{355, -327}"; } ); components = ( { name = aYaa.fina.KafYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 181, -107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 476; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-130, 944}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-130, 944}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 330, 134}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 330, 134}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-130, 944}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-130, 944}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 328, 256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 328, 256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kaf-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "gafRing-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 234, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 234, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "gueh-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 273, 256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 273, 256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "gafTwodotsbelow-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 328, 256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 328, 256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kafRing-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 234, 774}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 234, 774}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kafDotabove-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-146, 920}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-146, 920}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "ng-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-179, 1045}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-179, 1045}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kafThreedotsbelow-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 330, 134}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 330, 134}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "gaf-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "keheh-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{171, 854}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "gafThreedots-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-179, 1045}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-179, 1045}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kehehThreedotsabove-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-179, 1045}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-179, 1045}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "kehehDotabove-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-146, 920}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-146, 920}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "ngoeh-ar.init.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-130, 944}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 580; }, { anchors = ( { name = TashkilAbove; position = "{-130, 944}"; }, { name = TashkilBelow; position = "{317, -327}"; } ); components = ( { name = aKaf.init.KafMemIsol; }, { name = "gafsarkashabove-ar.alt1"; transform = "{1, 0, 0, 1, 266, 834}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -121, 773}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 580; } ); }, { glyphname = "lamVabove-ar.init.LamMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{15, 1047}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 15, 363}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 238; }, { anchors = ( { name = TashkilAbove; position = "{15, 1047}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 15, 363}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 238; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-48, 1080}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 10, 808}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 238; }, { anchors = ( { name = TashkilAbove; position = "{-48, 1080}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 10, 808}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 238; } ); }, { glyphname = "lam-ar.init.LamMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 238; }, { anchors = ( { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 238; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{129, -335}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 90, -314}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 238; }, { anchors = ( { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{129, -335}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 90, -314}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 238; } ); }, { glyphname = "lamDotabove-ar.init.LamMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-10, 954}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 15, 808}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 238; }, { anchors = ( { name = TashkilAbove; position = "{-10, 954}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 15, 808}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 238; } ); }, { glyphname = "lamBar-ar.init.LamMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 38, 541}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 238; }, { anchors = ( { name = TashkilAbove; position = "{98, 835}"; }, { name = TashkilBelow; position = "{132, 0}"; } ); components = ( { name = aLam.init.LamMemIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 38, 541}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 238; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -467}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 294, -511}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -467}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 294, -511}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "beheh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 309, -306}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 309, -306}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonRing-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 264, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 264, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 240, -213}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 240, -213}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behVabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonTahabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{174, 997}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 193, 679}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{174, 997}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 193, 679}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehVabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 296, -311}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 296, -311}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{193, 806}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{193, 806}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = hamza.above; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behDotless-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehKashmiri-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 294, -72}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 294, -72}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yeh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = DigitAbove; position = "{218, 552}"; }, { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = DigitAbove; position = "{218, 552}"; }, { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "rnoon-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 218, 455}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 218, 455}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "teheh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -370}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 275, 167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -370}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 275, 167}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "peh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 296, -311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 296, -311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "beeh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -350}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -350}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "beh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "tteheh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noon-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "teh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{291, 806}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 350, 110}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 731; }, { anchors = ( { name = TashkilAbove; position = "{291, 806}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 350, 110}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 731; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "theh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "tteh-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 218, 455}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 218, 455}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonDotbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonVabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{193, 899}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 193, 215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{193, 899}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 193, 215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "alefMaksura-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = AlefAbove; position = "{249, 479}"; }, { name = HamzaBelow; position = "{294, -169}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = AlefAbove; position = "{249, 479}"; }, { name = HamzaBelow; position = "{294, -169}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "tehRing-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 264, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 264, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 296, -311}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 296, -311}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "e-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -350}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -350}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 294, -238}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonghunna-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsi-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "meem-ar.fina.KafMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aMem.fina.KafMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{88, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aMem.fina.KafMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "meem-ar.medi.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = exit; position = "{0, -102}"; } ); components = ( { name = aMem.medi.MemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 105; }, { anchors = ( { name = TashkilAbove; position = "{54, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; }, { name = exit; position = "{0, -102}"; } ); components = ( { name = aMem.medi.MemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 105; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -591}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 142, -635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -591}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 142, -635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "beheh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -522}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 157, -479}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -522}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 157, -479}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonRing-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 89, 122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 89, 122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{107, -430}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 88, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{107, -430}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 88, -386}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behVabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonTahabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{54, 835}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 74, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{54, 835}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 74, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehVabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 98, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{183, -504}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -483}"; }, { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{183, -504}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -483}"; }, { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 645}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{74, 645}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = hamza.above; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behDotless-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -391}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 142, -195}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -391}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 142, -195}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yeh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = DigitAbove; position = "{98, 391}"; }, { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "rnoon-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "teheh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{123, -493}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 123, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{123, -493}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 123, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "peh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{183, -504}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{183, -504}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -483}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "beeh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{162, -474}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{162, -474}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "beh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -381}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TaaAbove; position = "{98, 293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -381}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "tteheh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -381}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -381}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noon-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -508}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -508}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -508}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{142, -508}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "teh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 98, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "theh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "tteh-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 98, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -381}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{157, -381}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonVabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 74, 54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 74, 54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "alefMaksura-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = AlefAbove; position = "{107, 479}"; }, { name = HamzaBelow; position = "{142, -293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = AlefAbove; position = "{107, 479}"; }, { name = HamzaBelow; position = "{142, -293}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "tehRing-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 89, 122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 89, 122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{183, -504}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -483}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{183, -504}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 144, -483}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "e-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{162, -474}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{162, -474}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonghunna-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{187, -327}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehFarsi-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "meem-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{10, -327}"; } ); components = ( { name = aMem.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 48; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{10, -327}"; } ); components = ( { name = aMem.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 48; } ); }, { glyphname = "meem-ar.medi.AlfPostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aMem.medi.AlfPostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 284; }, { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{173, -327}"; } ); components = ( { name = aMem.medi.AlfPostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 284; } ); }, { glyphname = "alefHamzabelow-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -491}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 132, 56}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 194; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -491}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 132, 56}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 194; } ); }, { glyphname = "alef-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 194; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 194; } ); }, { glyphname = "alefThreeabove-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{121, 903}"; }, { name = TashkilBelow; position = "{233, -327}"; }, { name = entry; position = "{295, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 101, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 488}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{121, 903}"; }, { name = TashkilBelow; position = "{233, -327}"; }, { name = entry; position = "{295, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 101, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 488}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "alefTwoabove-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 864}"; }, { name = TashkilBelow; position = "{232, -327}"; }, { name = entry; position = "{295, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 101, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 294; }, { anchors = ( { name = TashkilAbove; position = "{91, 864}"; }, { name = TashkilBelow; position = "{232, -327}"; }, { name = entry; position = "{295, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 101, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 294; } ); }, { glyphname = "alefHamzaabove-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{126, 1050}"; }, { name = TashkilBelow; position = "{233, -327}"; }, { name = entry; position = "{295, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 101, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 150, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{126, 1050}"; }, { name = TashkilBelow; position = "{233, -327}"; }, { name = entry; position = "{295, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 101, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 150, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "alefMadda-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = entry; position = "{292, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 146, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 291; }, { anchors = ( { name = entry; position = "{292, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 146, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 291; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 1050}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 49, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 194; }, { anchors = ( { name = TashkilAbove; position = "{24, 1050}"; }, { name = TashkilBelow; position = "{132, -327}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 49, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 194; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -491}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 132, 56}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 194; }, { anchors = ( { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{132, -491}"; }, { name = entry; position = "{194, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 132, 56}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 194; } ); }, { glyphname = "alefWasla-ar.fina.MemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{186, -327}"; }, { name = entry; position = "{248, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 54, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 248; }, { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{186, -327}"; }, { name = entry; position = "{248, -102}"; } ); components = ( { name = aAlf.fina.MemAlfFina; transform = "{1, 0, 0, 1, 54, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 248; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -493}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 250, -537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -493}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 250, -537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "beheh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 266, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 266, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonRing-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 176, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 176, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 197, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 197, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behVabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonTahabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{182, 884}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 202, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{182, 884}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 202, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehVabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 253, -308}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 253, -308}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{202, 693}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{202, 693}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behDotless-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehKashmiri-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 250, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 250, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yeh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = DigitAbove; position = "{226, 439}"; }, { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = DigitAbove; position = "{226, 439}"; }, { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "rnoon-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 226, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 226, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "teheh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -396}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 231, 142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -396}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 231, 142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "peh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 253, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 253, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "beeh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -376}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -376}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "beh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "tteheh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noon-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "teh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{299, 693}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 330, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 711; }, { anchors = ( { name = TashkilAbove; position = "{299, 693}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 330, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 711; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "theh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "tteh-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 226, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 226, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonDotbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonVabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 202, 103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 202, 103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "alefMaksura-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = AlefAbove; position = "{215, 479}"; }, { name = HamzaBelow; position = "{250, -117}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = AlefAbove; position = "{215, 479}"; }, { name = HamzaBelow; position = "{250, -117}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "tehRing-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 176, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 176, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 253, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 253, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "e-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -376}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -376}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 250, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonghunna-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsi-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{188, -485}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 188, -529}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{188, -485}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 188, -529}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "beheh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 179, -324}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 179, -324}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 173, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 173, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonRing-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 110, -231}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 110, -231}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behVabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonTahabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{129, 884}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 149, 566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{129, 884}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 149, 566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehVabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 173, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 173, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonThreedotsabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{205, -350}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -329}"; }, { name = aBaa.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{205, -350}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -329}"; }, { name = aBaa.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehHamzaabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{149, 693}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{149, 693}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = hamza.above; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behDotless-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehKashmiri-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 188, -90}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = ring.below; transform = "{1, 0, 0, 1, 188, -90}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yeh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = DigitAbove; position = "{173, 439}"; }, { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = DigitAbove; position = "{173, 439}"; }, { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "rnoon-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 173, 335}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 173, 335}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "teheh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behVinvertedbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{169, -388}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 169, 149}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{169, -388}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 169, 149}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "tehThreedotsdown-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "peh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{205, -350}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{205, -350}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "beeh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{208, -368}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{208, -368}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "beh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TaaAbove; position = "{173, 335}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "tteheh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behThreedotsupabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noon-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -354}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -354}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -354}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -354}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "teh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 173, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "theh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "tteh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 173, 335}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 173, 335}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonDotbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonVabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 149, 103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 149, 103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "alefMaksura-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = AlefAbove; position = "{166, 479}"; }, { name = HamzaBelow; position = "{188, -188}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = AlefAbove; position = "{166, 479}"; }, { name = HamzaBelow; position = "{188, -188}"; }, { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "tehRing-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 107}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 156, 107}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{205, -350}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -329}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{205, -350}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 166, -329}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "e-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{208, -368}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{208, -368}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 188, -256}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonghunna-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehFarsi-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "heh-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "hehgoal-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aHeh.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "heh-ar.medi.PostTooth"; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi.PostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi.PostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 460; } ); }, { glyphname = "hehgoal-ar.medi.PostTooth"; layers = ( { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi.PostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { anchors = ( { name = HamzaAbove; position = "{189, 430}"; }, { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi.PostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 460; } ); }, { glyphname = "lamVabove-ar.medi.KafLamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 101, 340}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "lamThreedotsabove-ar.medi.KafLamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{38, 1056}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 96, 784}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{38, 1056}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 96, 784}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "lam-ar.medi.KafLamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.KafLamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{256, -597}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 217, -527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{256, -597}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 217, -527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "lamDotabove-ar.medi.KafLamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 931}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 101, 784}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{76, 931}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 101, 784}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "lamBar-ar.medi.KafLamMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 104, 577}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 249; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aLam.medi.KafLamMemFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 104, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 249; } ); }, { glyphname = "lamVabove-ar.init.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{37, 933}"; }, { name = TashkilBelow; position = "{100, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = smallv.above; transform = "{1, 0, 0, 1, 37, 250}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 158; }, { anchors = ( { name = TashkilAbove; position = "{27, 933}"; }, { name = TashkilBelow; position = "{90, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = smallv.above; transform = "{1, 0, 0, 1, 27, 250}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "lamThreedotsabove-ar.init.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-26, 966}"; }, { name = TashkilBelow; position = "{100, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 32, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 158; }, { anchors = ( { name = TashkilAbove; position = "{-36, 966}"; }, { name = TashkilBelow; position = "{90, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 22, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "lam-ar.init.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{100, -327}"; } ); components = ( { name = aLam.init.LamLamInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 158; }, { anchors = ( { name = TashkilAbove; position = "{100, 801}"; }, { name = TashkilBelow; position = "{90, -327}"; } ); components = ( { name = aLam.init.LamLamInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "lamThreedotsbelow-ar.init.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{110, 801}"; }, { name = TashkilBelow; position = "{100, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 78, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 158; }, { anchors = ( { name = TashkilAbove; position = "{100, 801}"; }, { name = TashkilBelow; position = "{90, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 68, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "lamDotabove-ar.init.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{12, 840}"; }, { name = TashkilBelow; position = "{100, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 37, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 158; }, { anchors = ( { name = TashkilAbove; position = "{2, 840}"; }, { name = TashkilBelow; position = "{90, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 27, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "lamBar-ar.init.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{120, 801}"; }, { name = TashkilBelow; position = "{110, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 60, 460}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 158; }, { anchors = ( { name = TashkilAbove; position = "{100, 801}"; }, { name = TashkilBelow; position = "{90, -327}"; } ); components = ( { name = aLam.init.LamLamInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 40, 460}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 153; } ); }, { glyphname = "lamVabove-ar.medi.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{65, 934}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 250}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{65, 934}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 250}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{3, 966}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 61, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{3, 966}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 61, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lam-ar.medi.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{41, 841}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{41, 841}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamBar-ar.medi.LamLamInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 86, 494}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 86, 494}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamVabove-ar.medi.LamLamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 977}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = smallv.above; transform = "{1, 0, 0, 1, 55, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{55, 977}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = smallv.above; transform = "{1, 0, 0, 1, 55, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-5, 963}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 691}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{-5, 963}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 691}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lam-ar.medi.LamLamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 66, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 66, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{30, 877}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 55, 730}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{30, 877}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 55, 730}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "lamBar-ar.medi.LamLamAlfIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 65, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 221; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlfIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 65, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 221; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kehehThreedotsbelow-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 354, -300}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 354, -300}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kehehThreedotsupbelow-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 352, -178}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 352, -178}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kaf-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "gafRing-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 977, 800}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 977, 800}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "gueh-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 352, -178}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 352, -178}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "gafTwodotsbelow-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 352, -178}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 352, -178}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kafRing-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 977, 800}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 977, 800}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kafDotabove-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "ng-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 888}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{317, 888}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kafThreedotsbelow-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 354, -300}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 354, -300}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "gaf-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "keheh-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "gafThreedots-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 888}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{317, 888}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kehehThreedotsabove-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 888}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{317, 888}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "kehehDotabove-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "ngoeh-ar.fina.LamKafIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 845; }, { anchors = ( { name = TashkilAbove; position = "{352, 801}"; }, { name = TashkilBelow; position = "{352, -361}"; } ); components = ( { name = aKaf.fina.LamKafIsol; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1131, 678}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 326, 284}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 375, 616}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 845; } ); }, { glyphname = "lamVabove-ar.fina.LamLamIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 620; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 620; } ); }, { glyphname = "lamThreedotsabove-ar.fina.LamLamIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 620; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 620; } ); }, { glyphname = "lam-ar.fina.LamLamIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 620; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 620; } ); }, { glyphname = "lamThreedotsbelow-ar.fina.LamLamIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 620; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 620; } ); }, { glyphname = "lamDotabove-ar.fina.LamLamIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 620; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 620; } ); }, { glyphname = "lamBar-ar.fina.LamLamIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 472, 424}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 620; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 472, 424}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 620; } ); }, { glyphname = "lamVabove-ar.medi.LamLamMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{39, 949}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 266}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { anchors = ( { name = TashkilAbove; position = "{39, 949}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 39, 266}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-23, 982}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 35, 710}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { anchors = ( { name = TashkilAbove; position = "{-23, 982}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 35, 710}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); }, { glyphname = "lam-ar.medi.LamLamMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{120, -382}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{120, -382}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{15, 856}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 710}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { anchors = ( { name = TashkilAbove; position = "{15, 856}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 710}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); }, { glyphname = "lamBar-ar.medi.LamLamMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 52, 523}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 199; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{0, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 52, 523}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 199; } ); }, { glyphname = "lamVabove-ar.medi.LamLamAlefFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{55, 977}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = smallv.above; transform = "{1, 0, 0, 1, 55, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 210; }, { anchors = ( { name = TashkilAbove; position = "{55, 977}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = smallv.above; transform = "{1, 0, 0, 1, 55, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 210; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamAlefFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-5, 963}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 691}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 210; }, { anchors = ( { name = TashkilAbove; position = "{-5, 963}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 691}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 210; } ); }, { glyphname = "lam-ar.medi.LamLamAlefFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 210; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 210; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamAlefFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 66, -264}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 210; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 66, -264}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 210; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamAlefFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{30, 877}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 55, 730}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 210; }, { anchors = ( { name = TashkilAbove; position = "{30, 877}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 55, 730}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 210; } ); }, { glyphname = "lamBar-ar.medi.LamLamAlefFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 65, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 210; }, { anchors = ( { name = TashkilAbove; position = "{34, 801}"; }, { name = TashkilBelow; position = "{-34, -327}"; } ); components = ( { name = aLam.medi.LamLamAlefFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 65, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 210; } ); }, { glyphname = "lamVabove-ar.medi.LamLamMedi2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{65, 934}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 250}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 201; }, { anchors = ( { name = TashkilAbove; position = "{65, 934}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 65, 250}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 201; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamMedi2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{3, 966}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 61, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 201; }, { anchors = ( { name = TashkilAbove; position = "{3, 966}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 61, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 201; } ); }, { glyphname = "lam-ar.medi.LamLamMedi2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 201; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 201; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamMedi2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 201; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 105, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 201; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamMedi2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{41, 841}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 201; }, { anchors = ( { name = TashkilAbove; position = "{41, 841}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 65, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 201; } ); }, { glyphname = "lamBar-ar.medi.LamLamMedi2"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 81, 494}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 201; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = aLam.medi.LamLamMedi2; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 81, 494}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 201; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kehehThreedotsbelow-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kehehThreedotsupbelow-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 367, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 367, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kaf-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "gafRing-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 970, 815}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 970, 815}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "gueh-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 366, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 366, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "gafTwodotsbelow-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 367, -200}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 367, -200}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kafRing-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 970, 815}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = ring.below; transform = "{1, 0, 0, 1, 970, 815}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kafDotabove-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "ng-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 889}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{354, 889}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kafThreedotsbelow-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 369, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "gaf-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "keheh-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "gafThreedots-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 889}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{354, 889}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kehehThreedotsabove-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{354, 889}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{354, 889}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "kehehDotabove-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "ngoeh-ar.fina.LamKafFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 813; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{366, -327}"; } ); components = ( { name = aKaf.fina.LamKafFina; }, { name = dash.kaf_gaf; transform = "{1, 0, 0, 1, 1124, 693}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 363, 285}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 412, 617}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 813; } ); }, { glyphname = "lamVabove-ar.fina.LamLamFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 300, 121}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lamThreedotsabove-ar.fina.LamLamFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 250, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lam-ar.fina.LamLamFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lamThreedotsbelow-ar.fina.LamLamFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{388, -668}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 349, -647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lamDotabove-ar.fina.LamLamFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 293, 518}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lamBar-ar.fina.LamLamFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 472, 424}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 592; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -376}"; } ); components = ( { name = aLam.fina.LamLamFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 472, 424}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 592; } ); }, { glyphname = "lamVabove-ar.medi.LamLamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{6, 868}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 6, 185}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{6, 868}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 6, 185}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-57, 901}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 629}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{-57, 901}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 629}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "lam-ar.medi.LamLamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 629}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 629}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "lamBar-ar.medi.LamLamMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 145, 520}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemInit; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 145, 520}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "lamVabove-ar.medi.LamLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 937}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 5, 253}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{5, 937}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 5, 253}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-57, 969}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{-57, 969}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "lam-ar.medi.LamLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{176, -346}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -325}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{176, -346}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -325}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-19, 844}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 5, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{-19, 844}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 5, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "lamBar-ar.medi.LamLamHehIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 26, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 172; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 26, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 172; } ); }, { glyphname = "lamVabove-ar.medi.LamLamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{66, 937}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 66, 253}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{66, 937}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 66, 253}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 214; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{4, 970}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 62, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{4, 970}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 62, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 214; } ); }, { glyphname = "lam-ar.medi.LamLamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 214; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{217, -548}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{217, -548}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 214; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{42, 844}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 66, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{42, 844}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 66, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 214; } ); }, { glyphname = "lamBar-ar.medi.LamLamYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 68, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 214; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaIsol; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 68, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 214; } ); }, { glyphname = "lamVabove-ar.medi.LamLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{6, 868}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 6, 185}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{6, 868}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 6, 185}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-57, 901}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 629}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{-57, 901}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 629}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "lam-ar.medi.LamLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 203, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 629}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 6, 629}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "lamBar-ar.medi.LamLamMemMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 149, 477}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 264; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = exit; position = "{42, 83}"; } ); components = ( { name = aLam.medi.LamLamMemMedi; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 149, 477}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 264; } ); }, { glyphname = "lamVabove-ar.medi.LamLamHehFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 937}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 5, 253}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{5, 937}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 5, 253}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamHehFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-57, 969}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{-57, 969}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 1, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lam-ar.medi.LamLamHehFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamHehFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{176, -346}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -325}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{176, -346}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, -325}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamHehFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-19, 844}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 5, 697}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{-19, 844}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 5, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamBar-ar.medi.LamLamHehFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 31, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 150; }, { anchors = ( { name = TashkilAbove; position = "{86, 801}"; }, { name = TashkilBelow; position = "{71, -327}"; } ); components = ( { name = aLam.medi.LamLamHehFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 31, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 150; } ); }, { glyphname = "lamVabove-ar.medi.LamLamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{66, 937}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 66, 253}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{66, 937}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 66, 253}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamThreedotsabove-ar.medi.LamLamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{4, 970}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 62, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{4, 970}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 62, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lam-ar.medi.LamLamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamThreedotsbelow-ar.medi.LamLamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{217, -548}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -527}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{217, -548}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 178, -527}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamDotabove-ar.medi.LamLamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{42, 844}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 66, 698}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{42, 844}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 66, 698}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "lamBar-ar.medi.LamLamYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 70, 489}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; }, { name = exit; position = "{0, -71}"; } ); components = ( { name = aLam.medi.LamLamYaaFina; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, 70, 489}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "khah-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hah-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahHamzaabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 494, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 494, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "tcheheh-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 508, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 508, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahThreedotsabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "jeem-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "dyeh-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{538, -480}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 513, -308}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 528, -436}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{538, -480}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 513, -308}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 528, -436}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahTahbelow-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 513, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 513, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "nyeh-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "tchehDotabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{535, -348}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 496, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{535, -348}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 494, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 496, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahFourbelow-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{494, -435}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 494, -479}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{494, -435}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 494, -479}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{494, -352}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{494, -352}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 494, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "hahTahabove-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{474, 908}"; }, { name = TashkilBelow; position = "{225, -327}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 494, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{474, 908}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 494, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "tcheh-ar.medi.1LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{535, -348}"; }, { name = exit; position = "{0, 231}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 496, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 112; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{535, -348}"; } ); components = ( { name = aHaa.medi.1LamHaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 496, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 112; } ); }, { glyphname = "khah-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hah-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahHamzaabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 39, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = hamza.above; transform = "{1, 0, 0, 1, 39, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "tcheheh-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 223, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 223, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahThreedotsabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "jeem-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{158, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{158, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 158, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "dyeh-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{148, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 148, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{148, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 148, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{252, -480}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 228, -308}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 242, -436}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{252, -480}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 228, -308}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 242, -436}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahTahbelow-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 228, -308}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 228, -308}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "nyeh-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 208, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 208, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "tchehDotabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{249, -348}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 210, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{249, -348}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 522}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 210, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahFourbelow-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{168, -435}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 168, -479}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{168, -435}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 168, -479}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahThreedotsupbelow-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -352}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 208, -205}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{208, -352}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 208, -205}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "hahTahabove-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 908}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 591}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{20, 908}"; }, { name = TashkilBelow; position = "{78, -327}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 591}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "tcheh-ar.medi.2LamHaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{249, -348}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 210, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 69; }, { anchors = ( { name = TashkilAbove; position = "{78, 801}"; }, { name = TashkilBelow; position = "{249, -348}"; } ); components = ( { name = aHaa.medi.2LamHaaHaaInit; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 210, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 69; } ); }, { glyphname = "kafswash-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{275, 801}"; }, { name = TashkilBelow; position = "{732, -327}"; } ); components = ( { name = aKaf.init.alt; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1633; }, { anchors = ( { name = TashkilAbove; position = "{275, 801}"; }, { name = TashkilBelow; position = "{732, -327}"; } ); components = ( { name = aKaf.init.alt; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1633; } ); }, { glyphname = "kafswash-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{1093, -327}"; } ); components = ( { name = aKaf.medi.alt; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1621; }, { anchors = ( { name = TashkilAbove; position = "{261, 801}"; }, { name = TashkilBelow; position = "{1093, -327}"; } ); components = ( { name = aKaf.medi.alt; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1621; } ); }, { glyphname = "kafswash-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{539, 801}"; }, { name = TashkilBelow; position = "{1371, -327}"; } ); components = ( { name = aKaf.fina.alt; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1906; }, { anchors = ( { name = TashkilAbove; position = "{539, 801}"; }, { name = TashkilBelow; position = "{1371, -327}"; } ); components = ( { name = aKaf.fina.alt; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1906; } ); }, { glyphname = "alefHamzabelow-ar.LowHamza"; layers = ( { anchors = ( { name = TashkilBelow; position = "{160, -596}"; } ); components = ( { name = aAlf.isol; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 160, -49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilBelow; position = "{160, -596}"; } ); components = ( { name = aAlf.isol; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 160, -49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "alefWavyhamzabelow-ar.LowHamza"; layers = ( { anchors = ( { name = TashkilBelow; position = "{160, -596}"; } ); components = ( { name = aAlf.isol; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 160, -49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilBelow; position = "{160, -596}"; } ); components = ( { name = aAlf.isol; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 160, -49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "beheh-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{93, -596}"; } ); components = ( { name = aBaa.init; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 93, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{93, -596}"; } ); components = ( { name = aBaa.init; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 93, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonThreedotsabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{120, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 81, -557}"; }, { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{120, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 81, -557}"; }, { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "peh-ar.init.LD"; layers = ( { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{120, -578}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 81, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{120, -578}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 81, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "beeh-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{68, -547}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{68, -547}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "beh-ar.init.LD"; layers = ( { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{63, -454}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{63, -454}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonTwodotsbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiVinverted-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 37}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 37}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{49, -615}"; } ); components = ( { name = aBaa.init; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 49, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{49, -615}"; } ); components = ( { name = aBaa.init; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 49, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 330}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 330}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 330}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 330}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsi-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yeh-ar.init.LD"; layers = ( { anchors = ( { name = DigitAbove; position = "{85, 439}"; }, { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = DigitAbove; position = "{85, 439}"; }, { name = TaaAbove; position = "{85, 342}"; }, { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehVabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 37}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 37}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behThreedotsupabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{63, -454}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 81, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{63, -454}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 81, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{44, -503}"; } ); components = ( { name = aBaa.init; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 24, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{44, -503}"; } ); components = ( { name = aBaa.init; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 24, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{79, -582}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 81, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{79, -582}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 81, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behThreedotsupbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{79, -582}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{79, -582}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behVinvertedbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{29, -547}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 29, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{29, -547}"; } ); components = ( { name = aBaa.init; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 29, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = aBaa.init; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "noonDotbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{63, -454}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 432}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{63, -454}"; } ); components = ( { name = aBaa.init; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 432}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehThreedotsbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{120, -578}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 81, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{120, -578}"; } ); components = ( { name = aBaa.init; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 81, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "e-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{68, -547}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{68, -547}"; } ); components = ( { name = aBaa.init; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "beheh-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{110, -596}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 110, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{110, -596}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 110, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{136, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 97, -557}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{136, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 97, -557}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "peh-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{136, -578}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 97, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{136, -578}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 97, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "beeh-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{114, -547}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{114, -547}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "beh-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{109, -454}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{109, -454}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -615}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 95, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -615}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 95, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 119, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsi-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yeh-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{119, 464}"; }, { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = DigitAbove; position = "{119, 464}"; }, { name = TaaAbove; position = "{119, 366}"; }, { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehVabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 119, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{109, -454}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{109, -454}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{61, -503}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{61, -503}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -582}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -582}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -582}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -582}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{75, -547}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 75, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{75, -547}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 75, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "noonDotbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{109, -454}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{109, -454}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 119, 396}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{136, -578}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 97, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{136, -578}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 97, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "e-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{114, -547}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{114, -547}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "beheh-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -596}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 54, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -596}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 54, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{80, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -557}"; }, { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{80, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -557}"; }, { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "peh-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{80, -578}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{80, -578}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "beeh-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -547}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -547}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "beh-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -454}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -454}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -615}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 39, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -615}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 39, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 76, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsi-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yeh-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{76, 501}"; }, { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = DigitAbove; position = "{76, 501}"; }, { name = TaaAbove; position = "{76, 403}"; }, { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehVabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 54, 36}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -454}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -454}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{4, -503}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, -15, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{4, -503}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, -15, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -582}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -582}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -582}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -582}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -547}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 20, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -547}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 20, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "noonDotbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -454}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{54, -454}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{80, -578}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{80, -578}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 41, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "e-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -547}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{59, -547}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "beheh-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{176, -596}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 176, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{176, -596}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 176, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "peh-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "beeh-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "beh-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -615}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 162, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -615}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 162, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{74, 1087}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{74, 1087}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1087}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1087}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 44, 672}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsi-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yeh-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{44, 843}"; }, { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = DigitAbove; position = "{44, 843}"; }, { name = TaaAbove; position = "{44, 745}"; }, { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehVabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 44, 379}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-14, 1046}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{-14, 1046}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{127, -503}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{127, -503}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{35, 945}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -547}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -547}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "noonDotbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{20, 921}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "e-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "beheh-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{75, -596}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 75, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{75, -596}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 75, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{101, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 62, -557}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{101, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 62, -557}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "peh-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{101, -578}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 62, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{101, -578}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 62, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "beeh-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{91, -547}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{91, -547}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "beh-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{86, -454}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{86, -454}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -615}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 72, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -615}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 72, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{92, 862}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{92, 862}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 862}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 862}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 63, 447}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yeh-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{63, 618}"; }, { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = DigitAbove; position = "{63, 618}"; }, { name = TaaAbove; position = "{63, 498}"; }, { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 63, 154}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-10, 821}"; }, { name = TashkilBelow; position = "{86, -454}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{-10, 821}"; }, { name = TashkilBelow; position = "{86, -454}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{25, -503}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 6, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{25, -503}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 6, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{60, -582}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{60, -582}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{60, -582}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{60, -582}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{52, -547}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 52, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{52, -547}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 52, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{86, -454}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{86, -454}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 63, 549}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{101, -578}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 62, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{101, -578}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 62, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "e-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{91, -547}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{91, -547}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 72, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "beheh-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -596}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 118, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -596}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 118, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{145, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 105, -557}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{145, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 105, -557}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "peh-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{145, -578}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 105, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{145, -578}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 105, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "beeh-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{123, -547}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{123, -547}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "beh-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -454}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -454}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -615}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 104, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -615}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 104, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 100, 337}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsi-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yeh-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{100, 508}"; }, { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = DigitAbove; position = "{100, 508}"; }, { name = TaaAbove; position = "{100, 410}"; }, { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehVabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 100, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -454}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -454}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{69, -503}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{69, -503}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 49, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -582}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -582}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -582}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -582}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -547}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 84, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -547}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 84, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "noonDotbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -454}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{118, -454}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{145, -578}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 105, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{145, -578}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 105, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "e-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{123, -547}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{123, -547}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "beheh-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{165, -596}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 165, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{165, -596}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 165, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{191, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -557}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{191, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -557}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "peh-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{191, -578}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{191, -578}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beeh-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{164, -547}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{164, -547}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beh-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{159, -454}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{159, -454}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -615}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 145, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -615}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 145, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{88, 928}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{88, 928}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 928}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 928}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 59, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsi-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yeh-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{59, 684}"; }, { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = DigitAbove; position = "{59, 684}"; }, { name = TaaAbove; position = "{59, 586}"; }, { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehVabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 59, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 887}"; }, { name = TashkilBelow; position = "{159, -454}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{0, 887}"; }, { name = TashkilBelow; position = "{159, -454}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{115, -503}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{115, -503}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{150, -582}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{150, -582}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{150, -582}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{150, -582}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{125, -547}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 125, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{125, -547}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 125, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonDotbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{159, -454}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{159, -454}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{191, -578}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{191, -578}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "e-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{164, -547}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{164, -547}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beheh-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{158, -596}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 158, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{158, -596}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 158, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -557}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -557}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "peh-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -578}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -578}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "beeh-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -547}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -547}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "beh-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{157, -454}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{157, -454}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -615}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 143, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -615}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 143, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{94, 835}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{94, 835}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 64, 420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsi-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yeh-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{64, 591}"; }, { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = DigitAbove; position = "{64, 591}"; }, { name = TaaAbove; position = "{64, 527}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehVabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 64, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{157, -454}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{157, -454}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{108, -503}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 89, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{108, -503}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 89, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -582}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -582}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -582}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -582}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -547}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 123, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -547}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 123, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "noonDotbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{157, -454}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{157, -454}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -578}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{184, -578}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 145, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "e-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -547}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{162, -547}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "beheh-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{115, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{115, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{142, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 103, -557}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{142, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 103, -557}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "peh-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{142, -578}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 103, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{142, -578}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 103, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "beeh-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{65, -547}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{65, -547}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "beh-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{61, -454}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{61, -454}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -615}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 46, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -615}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 46, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{125, 859}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{125, 859}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 859}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 859}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 95, 444}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yeh-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{95, 615}"; }, { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = DigitAbove; position = "{95, 615}"; }, { name = TaaAbove; position = "{95, 518}"; }, { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 95, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{42, 819}"; }, { name = TashkilBelow; position = "{61, -454}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{42, 819}"; }, { name = TashkilBelow; position = "{61, -454}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{66, -503}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{66, -503}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{101, -582}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{101, -582}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{101, -582}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{101, -582}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{26, -547}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 26, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{26, -547}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 26, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{61, -454}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{61, -454}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 95, 547}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{142, -578}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 103, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{142, -578}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 103, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "e-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{65, -547}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{65, -547}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 46, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "beheh-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -581}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 127, -537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -581}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 127, -537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{154, -563}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -542}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{154, -563}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -542}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "peh-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{154, -563}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{154, -563}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "beeh-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -532}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -532}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "beh-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -439}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -439}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{112, -601}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 112, -693}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{112, -601}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 112, -693}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 148, 232}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yeh-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{148, 403}"; }, { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = DigitAbove; position = "{148, 403}"; }, { name = TaaAbove; position = "{148, 305}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 132, -61}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -439}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -439}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{78, -488}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 59, -444}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{78, -488}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 59, -444}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{113, -567}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{113, -567}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{113, -567}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{113, -567}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{93, -532}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 93, -15}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{93, -532}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 93, -15}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -439}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{127, -439}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 148, 334}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{154, -563}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{154, -563}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 115, -542}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "e-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -532}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{132, -532}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 112, -420}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "beheh-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{101, -596}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{101, -596}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{127, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 88, -557}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{127, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 88, -557}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "peh-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{127, -578}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 88, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{127, -578}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 88, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "beeh-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{106, -547}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{106, -547}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "beh-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{101, -454}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{101, -454}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -615}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 86, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -615}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 86, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{121, 869}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{121, 869}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 869}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 869}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 454}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yeh-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{91, 625}"; }, { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = DigitAbove; position = "{91, 625}"; }, { name = TaaAbove; position = "{91, 527}"; }, { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 91, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{33, 829}"; }, { name = TashkilBelow; position = "{101, -454}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{33, 829}"; }, { name = TashkilBelow; position = "{101, -454}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{52, -503}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 32, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{52, -503}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 32, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -582}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -582}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -582}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -582}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{67, -547}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 67, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{67, -547}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 67, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{101, -454}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{101, -454}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{127, -578}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 88, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{127, -578}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 88, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "e-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{106, -547}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{106, -547}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "beheh-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -596}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -596}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{169, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 130, -557}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{169, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 130, -557}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "peh-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{169, -578}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 130, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{169, -578}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 130, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beeh-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{147, -547}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{147, -547}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beh-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -454}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -454}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 70, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 70, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -615}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 128, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -615}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 128, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{99, 854}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 70, 438}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{99, 854}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 70, 438}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 854}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 70, 438}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 854}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 70, 438}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsi-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yeh-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{59, 616}"; }, { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = DigitAbove; position = "{59, 616}"; }, { name = TaaAbove; position = "{59, 519}"; }, { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehVabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 70, 146}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 70, 146}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -454}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -454}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{94, -503}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 74, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{94, -503}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 74, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -582}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -582}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -582}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -582}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{108, -547}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 108, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{108, -547}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 108, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "noonDotbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -454}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{143, -454}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 70, 541}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{169, -578}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 130, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{169, -578}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 130, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "e-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{147, -547}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{147, -547}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "beheh-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -596}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 479, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -596}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 479, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{505, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 466, -557}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{505, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 466, -557}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "peh-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{505, -578}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 466, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{505, -578}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 466, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "beeh-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -547}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -547}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "beh-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -454}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -454}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -615}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 459, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -615}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 459, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{376, 928}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{376, 928}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 928}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 928}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 347, 513}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsi-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yeh-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{366, 684}"; }, { name = TaaAbove; position = "{366, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = DigitAbove; position = "{371, 684}"; }, { name = TaaAbove; position = "{371, 586}"; }, { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehVabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 347, 220}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{289, 887}"; }, { name = TashkilBelow; position = "{474, -454}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{289, 887}"; }, { name = TashkilBelow; position = "{474, -454}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{430, -503}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 410, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{430, -503}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 410, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{464, -582}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{464, -582}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{464, -582}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{464, -582}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{439, -547}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 439, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{439, -547}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 439, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "noonDotbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -454}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{474, -454}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{505, -578}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 466, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{505, -578}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 466, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "e-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -547}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{479, -547}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 459, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "beheh-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{229, -596}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 229, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{229, -596}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 229, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{255, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 216, -557}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{255, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 216, -557}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "peh-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{255, -578}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 216, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{255, -578}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 216, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "beeh-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{233, -547}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{233, -547}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "beh-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{229, -454}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{229, -454}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 214, -579}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 214, -579}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -615}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 214, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -615}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 214, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{158, 994}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{158, 994}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{129, 994}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{129, 994}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 129, 579}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsi-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yeh-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{129, 750}"; }, { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = DigitAbove; position = "{129, 750}"; }, { name = TaaAbove; position = "{129, 652}"; }, { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehVabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 214, -579}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 214, -579}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{71, 954}"; }, { name = TashkilBelow; position = "{229, -454}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{71, 954}"; }, { name = TashkilBelow; position = "{229, -454}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{179, -503}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 160, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{179, -503}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 160, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -582}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{119, 853}"; }, { name = TashkilBelow; position = "{214, -582}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -582}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -582}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{194, -547}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 194, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{194, -547}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 194, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "noonDotbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{229, -454}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{104, 828}"; }, { name = TashkilBelow; position = "{229, -454}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{255, -578}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 216, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{255, -578}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 216, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "e-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{233, -547}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{233, -547}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "beheh-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{152, -596}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{152, -596}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 152, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "noonThreedotsabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 139, -557}"; }, { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 139, -557}"; }, { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "peh-ar.init.HighLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 139, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 139, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "beeh-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -547}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -547}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "beh-ar.init.HighLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{122, -454}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{122, -454}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "noonTwodotsbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiVinverted-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -615}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 107, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -615}"; } ); components = ( { name = aBaa.init.High; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 107, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 46, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsi-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yeh-ar.init.HighLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{46, 439}"; }, { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = DigitAbove; position = "{46, 439}"; }, { name = TaaAbove; position = "{46, 342}"; }, { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehVabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 71, -73}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behThreedotsupabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{122, -454}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{122, -454}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{103, -503}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 83, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{103, -503}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 83, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{137, -582}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{137, -582}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behThreedotsupbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{137, -582}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{137, -582}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behVinvertedbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -547}"; } ); components = ( { name = aBaa.init.High; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 88, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -547}"; } ); components = ( { name = aBaa.init.High; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 88, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "noonDotbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{122, -454}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{122, -454}"; } ); components = ( { name = aBaa.init.High; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 46, 371}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehThreedotsbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 139, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{178, -578}"; } ); components = ( { name = aBaa.init.High; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 139, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "e-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -547}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{127, -547}"; } ); components = ( { name = aBaa.init.High; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 107, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "beheh-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{177, -596}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 177, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{177, -596}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 177, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "noonThreedotsabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; }, { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; }, { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "peh-ar.init.WideLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "beeh-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "beh-ar.init.WideLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "noonTwodotsbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsiVinverted-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -615}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 162, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -615}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 162, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 115, 330}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsi-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yeh-ar.init.WideLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{115, 500}"; }, { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = DigitAbove; position = "{115, 500}"; }, { name = TaaAbove; position = "{115, 403}"; }, { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehVabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 115, -61}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behThreedotsupabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{127, -503}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 108, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{127, -503}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 108, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behThreedotsupbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -582}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behVinvertedbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{142, -547}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{142, -547}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "noonDotbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{176, -454}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 115, 432}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehThreedotsbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{203, -578}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 164, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "e-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{181, -547}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "beheh-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -596}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 182, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -596}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 182, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 169, -557}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 169, -557}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "peh-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -578}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 169, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -578}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 169, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beeh-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -547}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -547}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beh-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -454}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -454}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -615}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 167, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -615}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 167, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{89, 879}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{89, 879}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 879}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 879}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 60, 464}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsi-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yeh-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{60, 635}"; }, { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = DigitAbove; position = "{60, 635}"; }, { name = TaaAbove; position = "{60, 537}"; }, { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehVabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 60, 171}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-17, 838}"; }, { name = TashkilBelow; position = "{182, -454}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{-17, 838}"; }, { name = TashkilBelow; position = "{182, -454}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{133, -503}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{133, -503}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -582}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -582}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -582}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -582}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -547}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 148, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -547}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 148, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "noonDotbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -454}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{182, -454}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 60, 566}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -578}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 169, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{208, -578}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 169, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "e-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -547}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{187, -547}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "beheh-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -596}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 309, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -596}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 309, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{335, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 296, -557}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{335, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 296, -557}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "peh-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{335, -578}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 296, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{335, -578}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 296, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "beeh-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -547}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -547}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "beh-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -454}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -454}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -615}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 294, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -615}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 294, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 218, 381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsi-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yeh-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{218, 552}"; }, { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = DigitAbove; position = "{218, 552}"; }, { name = TaaAbove; position = "{218, 455}"; }, { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehVabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 218, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -454}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -454}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{260, -503}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 240, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{260, -503}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 240, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -582}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -582}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -582}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -582}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -547}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 275, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -547}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 275, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "noonDotbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -454}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{309, -454}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{335, -578}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 296, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{335, -578}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 296, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "e-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -547}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{314, -547}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "beheh-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{266, -596}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 266, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{266, -596}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 266, -552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{292, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 253, -557}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{292, -578}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 253, -557}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "peh-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{292, -578}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 253, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{292, -578}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 253, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "beeh-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -547}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -547}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "beh-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{265, -454}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{265, -454}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -615}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 250, -708}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -615}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 250, -708}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 226, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsi-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yeh-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{226, 439}"; }, { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = DigitAbove; position = "{226, 439}"; }, { name = TaaAbove; position = "{226, 342}"; }, { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehVabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 226, -24}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{265, -454}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{265, -454}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{216, -503}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 197, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{216, -503}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 197, -459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{251, -582}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{251, -582}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{251, -582}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{251, -582}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -547}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 231, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -547}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 231, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "noonDotbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{265, -454}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{265, -454}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 226, 371}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{292, -578}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 253, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{292, -578}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 253, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "e-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -547}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{270, -547}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 250, -435}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehKashmiri-ar.initLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{83, -464}"; } ); components = ( { name = aBaa.init; }, { name = ring.below; transform = "{1, 0, 0, 1, 83, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{83, -464}"; } ); components = ( { name = aBaa.init; }, { name = ring.below; transform = "{1, 0, 0, 1, 83, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehKashmiri-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -464}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 246; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -464}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 95, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 246; } ); }, { glyphname = "yehKashmiri-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -464}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 39, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -464}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = ring.below; transform = "{1, 0, 0, 1, 39, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehKashmiri-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -464}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{162, -464}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -464}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 72, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -464}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = ring.below; transform = "{1, 0, 0, 1, 72, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehKashmiri-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -464}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 104, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -464}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 104, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehKashmiri-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -464}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 145, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -464}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 145, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehKashmiri-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -464}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 143, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -464}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 143, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -464}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 46, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -464}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 46, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{144, -568}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 144, -373}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{144, -568}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 144, -373}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -464}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 86, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -464}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 86, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehKashmiri-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -464}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 128, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 231; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -464}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 128, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 231; } ); }, { glyphname = "yehKashmiri-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -464}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 459, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 801}"; }, { name = TashkilBelow; position = "{459, -464}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 459, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehKashmiri-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -464}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 214, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -464}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 214, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehKashmiri-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -464}"; } ); components = ( { name = aBaa.init.High; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -464}"; } ); components = ( { name = aBaa.init.High; }, { name = ring.below; transform = "{1, 0, 0, 1, 107, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehKashmiri-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -464}"; } ); components = ( { name = aBaa.init.Wide; }, { name = ring.below; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{162, -464}"; } ); components = ( { name = aBaa.init.Wide; }, { name = ring.below; transform = "{1, 0, 0, 1, 162, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehKashmiri-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -464}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 167, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{167, -464}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 167, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehKashmiri-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -464}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 294, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -464}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = ring.below; transform = "{1, 0, 0, 1, 294, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehKashmiri-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -464}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 250, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -464}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = ring.below; transform = "{1, 0, 0, 1, 250, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "meemDotabove-ar.init.MemHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aMem.init.MemHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 212, 413}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aMem.init.MemHehInit; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 212, 413}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = aMem.init.MemHehInit; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "45 98 OFFCURVE", "108 144 OFFCURVE", "190 160 CURVE", "171 188 LINE SMOOTH", "165 197 OFFCURVE", "164 206 OFFCURVE", "168 215 CURVE SMOOTH", "188 255 OFFCURVE", "203 281 OFFCURVE", "215 294 CURVE SMOOTH", "223 303 OFFCURVE", "232 306 OFFCURVE", "240 301 CURVE SMOOTH", "290 274 OFFCURVE", "326 250 OFFCURVE", "347 229 CURVE SMOOTH", "354 222 OFFCURVE", "355 213 OFFCURVE", "351 200 CURVE SMOOTH", "345 182 OFFCURVE", "328 155 OFFCURVE", "300 120 CURVE SMOOTH", "293 111 OFFCURVE", "281 106 OFFCURVE", "261 105 CURVE SMOOTH", "155 102 OFFCURVE", "72 69 OFFCURVE", "12 7 CURVE SMOOTH", "7 3 OFFCURVE", "3 4 OFFCURVE", "-1 8 CURVE SMOOTH", "-5 12 OFFCURVE", "-5 16 OFFCURVE", "0 23 CURVE SMOOTH" ); } ); width = 380; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "31 103 OFFCURVE", "90 149 OFFCURVE", "166 169 CURVE", "159 179 LINE", "150 193 OFFCURVE", "149 207 OFFCURVE", "155 221 CURVE", "175 262 OFFCURVE", "192 290 OFFCURVE", "205 304 CURVE SMOOTH", "218 318 OFFCURVE", "232 322 OFFCURVE", "247 314 CURVE SMOOTH", "298 287 OFFCURVE", "335 261 OFFCURVE", "357 239 CURVE SMOOTH", "368 228 OFFCURVE", "370 213 OFFCURVE", "364 194 CURVE SMOOTH", "358 175 OFFCURVE", "340 147 OFFCURVE", "312 111 CURVE SMOOTH", "302 98 OFFCURVE", "285 92 OFFCURVE", "261 91 CURVE SMOOTH", "159 88 OFFCURVE", "79 56 OFFCURVE", "22 -4 CURVE", "10 -13 OFFCURVE", "-1 -12 OFFCURVE", "-11 -3 CURVE", "-20 6 OFFCURVE", "-21 18 OFFCURVE", "-13 31 CURVE SMOOTH" ); } ); width = 380; } ); }, { glyphname = "meem-ar.init.MemHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aMem.init.MemHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aMem.init.MemHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "meemDotbelow-ar.init.MemHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aMem.init.MemHehInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 283, -129}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 380; }, { anchors = ( { name = TashkilAbove; position = "{186, 801}"; }, { name = TashkilBelow; position = "{190, -327}"; } ); components = ( { name = aMem.init.MemHehInit; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 283, -129}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 380; } ); }, { glyphname = "alefabove-ar.isol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 757}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -49, -477}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 208; }, { anchors = ( { name = TashkilAbove; position = "{77, 757}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -42, -477}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 222; } ); subCategory = Spacing; }, { glyphname = "alefabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 684}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -37, -624}"; }, { name = "kashida-ar.long1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{98, 684}"; } ); components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -37, -624}"; }, { name = "kashida-ar.long1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); subCategory = Spacing; }, { glyphname = "hamza-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 146, -142}"; }, { name = "kashida-ar.long1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{127, 801}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 146, -142}"; }, { name = "kashida-ar.long1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "hamza-ar.float"; layers = ( { anchors = ( { name = TashkilAbove; position = "{1, 801}"; } ); components = ( { name = "hamzabelow-ar"; transform = "{0.8, 0, 0, 0.8, 43, 924}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilAbove; position = "{1, 801}"; } ); components = ( { name = "hamzabelow-ar"; transform = "{0.8, 0, 0, 0.8, 43, 924}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "kashida-ar.long1"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "316 92 OFFCURVE", "324 82 OFFCURVE", "318 59 CURVE SMOOTH", "306 15 LINE SMOOTH", "303 5 OFFCURVE", "299 0 OFFCURVE", "293 0 CURVE SMOOTH", "0 0 LINE SMOOTH", "-6 1 OFFCURVE", "-10 6 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 82 OFFCURVE", "-23 92 OFFCURVE", "0 90 CURVE SMOOTH", "293 90 LINE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "308 106 OFFCURVE", "320 102 OFFCURVE", "328 93 CURVE SMOOTH", "336 84 OFFCURVE", "336 72 OFFCURVE", "332 55 CURVE", "320 11 LINE SMOOTH", "315 -6 OFFCURVE", "306 -14 OFFCURVE", "293 -15 CURVE", "-1 -15 LINE", "-14 -14 OFFCURVE", "-22 -5 OFFCURVE", "-27 11 CURVE SMOOTH", "-40 55 LINE", "-48 87 OFFCURVE", "-37 103 OFFCURVE", "-10 105 CURVE SMOOTH", "-7 105 OFFCURVE", "-3 105 OFFCURVE", "1 105 CURVE SMOOTH", "292 105 LINE" ); } ); width = 292; } ); }, { glyphname = "zero-ar.small"; layers = ( { components = ( { name = "zero-ar"; transform = "{0.6, 0, 0, 0.6, -29, 30}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "zero-ar"; transform = "{0.6, 0, 0, 0.6, -29, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "one-ar.small"; layers = ( { components = ( { name = "one-ar"; transform = "{0.6, 0, 0, 0.6, -29, 31}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "one-ar"; transform = "{0.6, 0, 0, 0.6, -28, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "two-ar.small"; layers = ( { components = ( { name = "two-ar"; transform = "{0.6, 0, 0, 0.6, -29, 31}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "two-ar"; transform = "{0.6, 0, 0, 0.6, -27, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "three-ar.small"; layers = ( { components = ( { name = "three-ar"; transform = "{0.6, 0, 0, 0.6, -29, 33}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "three-ar"; transform = "{0.6, 0, 0, 0.6, -28, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "four-ar.small"; layers = ( { components = ( { name = "four-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "four-ar"; transform = "{0.6, 0, 0, 0.6, -32, 32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "five-ar.small"; layers = ( { components = ( { name = "five-ar"; transform = "{0.6, 0, 0, 0.6, -29, 27}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "five-ar"; transform = "{0.6, 0, 0, 0.6, -30, 27}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "six-ar.small"; layers = ( { components = ( { name = "six-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "six-ar"; transform = "{0.6, 0, 0, 0.6, -29, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "seven-ar.small"; layers = ( { components = ( { name = "seven-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "seven-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "eight-ar.small"; layers = ( { components = ( { name = "eight-ar"; transform = "{0.6, 0, 0, 0.6, -29, 31}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "eight-ar"; transform = "{0.6, 0, 0, 0.6, -29, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "nine-ar.small"; layers = ( { components = ( { name = "nine-ar"; transform = "{0.6, 0, 0, 0.6, -29, 31}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "nine-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "zeroFarsi-ar.small"; layers = ( { components = ( { name = "zero-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "zero-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "oneFarsi-ar.small"; layers = ( { components = ( { name = "one-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "one-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "twoFarsi-ar.small"; layers = ( { components = ( { name = "two-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "two-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "threeFarsi-ar.small"; layers = ( { components = ( { name = "three-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "three-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "fourFarsi-ar.small"; layers = ( { components = ( { name = "fourFarsi-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fourFarsi-ar"; transform = "{0.6, 0, 0, 0.6, -27, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "fiveFarsi-ar.small"; layers = ( { components = ( { name = "fiveFarsi-ar"; transform = "{0.6, 0, 0, 0.6, -29, 30}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fiveFarsi-ar"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sixFarsi-ar.small"; layers = ( { components = ( { name = "sixFarsi-ar"; transform = "{0.6, 0, 0, 0.6, -29, 31}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sixFarsi-ar"; transform = "{0.6, 0, 0, 0.6, -31, 31}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sevenFarsi-ar.small"; layers = ( { components = ( { name = "seven-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "seven-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "eightFarsi-ar.small"; layers = ( { components = ( { name = "eight-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "eight-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "nineFarsi-ar.small"; layers = ( { components = ( { name = "nine-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "nine-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "fourFarsi-ar.urd.small"; layers = ( { components = ( { name = "fourFarsi-ar.urd"; transform = "{0.6, 0, 0, 0.6, -29, 43}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fourFarsi-ar.urd"; transform = "{0.6, 0, 0, 0.6, -31, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sixFarsi-ar.urd.small"; layers = ( { components = ( { name = "six-ar.small"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "six-ar.small"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sevenFarsi-ar.urd.small"; layers = ( { components = ( { name = "sevenFarsi-ar.urd"; transform = "{0.6, 0, 0, 0.6, -29, 32}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sevenFarsi-ar.urd"; transform = "{0.6, 0, 0, 0.6, -33, 33}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "openfathatan-ar.small"; layers = ( { anchors = ( { name = _TashkilTashkilAbove; position = "{0, 952}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "186 1182 OFFCURVE", "191 1180 OFFCURVE", "190 1172 CURVE SMOOTH", "186 1146 LINE SMOOTH", "185 1139 OFFCURVE", "180 1134 OFFCURVE", "171 1130 CURVE SMOOTH", "-5 1062 LINE SMOOTH", "-9 1060 OFFCURVE", "-13 1060 OFFCURVE", "-16 1062 CURVE SMOOTH", "-19 1064 OFFCURVE", "-21 1067 OFFCURVE", "-20 1072 CURVE SMOOTH", "-18 1086 LINE SMOOTH", "-17 1091 OFFCURVE", "-14 1095 OFFCURVE", "-7 1098 CURVE SMOOTH", "173 1177 LINE SMOOTH" ); }, { closed = 1; nodes = ( "115 1066 OFFCURVE", "121 1064 OFFCURVE", "119 1056 CURVE SMOOTH", "116 1036 LINE SMOOTH", "114 1027 OFFCURVE", "108 1021 OFFCURVE", "97 1018 CURVE SMOOTH", "-74 960 LINE SMOOTH", "-78 959 OFFCURVE", "-81 959 OFFCURVE", "-84 961 CURVE SMOOTH", "-87 963 OFFCURVE", "-88 966 OFFCURVE", "-87 971 CURVE SMOOTH", "-84 986 LINE SMOOTH", "-83 991 OFFCURVE", "-80 994 OFFCURVE", "-73 997 CURVE SMOOTH", "102 1062 LINE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _TashkilTashkilAbove; position = "{0, 952}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "178 1184 OFFCURVE", "183 1185 OFFCURVE", "187 1185 CURVE SMOOTH", "194 1184 OFFCURVE", "196 1179 OFFCURVE", "195 1172 CURVE SMOOTH", "195 1171 OFFCURVE", "195 1171 OFFCURVE", "195 1171 CURVE SMOOTH", "191 1145 LINE SMOOTH", "189 1136 OFFCURVE", "183 1129 OFFCURVE", "173 1125 CURVE SMOOTH", "-3 1057 LINE SMOOTH", "-9 1055 OFFCURVE", "-14 1055 OFFCURVE", "-19 1058 CURVE", "-24 1061 OFFCURVE", "-26 1066 OFFCURVE", "-25 1073 CURVE SMOOTH", "-23 1087 LINE", "-22 1094 OFFCURVE", "-17 1098 OFFCURVE", "-9 1102 CURVE SMOOTH", "171 1182 LINE SMOOTH", "171 1182 LINE SMOOTH" ); }, { closed = 1; nodes = ( "107 1069 OFFCURVE", "111 1070 OFFCURVE", "115 1069 CURVE SMOOTH", "122 1068 OFFCURVE", "125 1063 OFFCURVE", "124 1056 CURVE SMOOTH", "124 1055 OFFCURVE", "124 1055 OFFCURVE", "124 1055 CURVE SMOOTH", "121 1035 LINE", "118 1024 OFFCURVE", "111 1017 OFFCURVE", "99 1013 CURVE SMOOTH", "-72 955 LINE", "-78 953 OFFCURVE", "-83 954 OFFCURVE", "-87 957 CURVE", "-92 961 OFFCURVE", "-93 965 OFFCURVE", "-92 972 CURVE SMOOTH", "-89 987 LINE", "-87 993 OFFCURVE", "-82 998 OFFCURVE", "-75 1001 CURVE", "100 1067 LINE", "101 1067 LINE" ); } ); width = 0; } ); }, { glyphname = "fatha-ar.small2"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{-20, 1162}"; }, { name = TashkilTashkilAbove2; position = "{-20, 1235}"; }, { name = _MarkAbove; position = "{-20, 1067}"; }, { name = _TashkilAbove; position = "{-20, 1067}"; }, { name = _TashkilAboveDot; position = "{-20, 1067}"; }, { name = _TashkilTashkilAbove; position = "{-20, 1067}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "47 1171 OFFCURVE", "53 1169 OFFCURVE", "53 1160 CURVE SMOOTH", "52 1125 LINE SMOOTH", "52 1117 OFFCURVE", "49 1110 OFFCURVE", "42 1106 CURVE SMOOTH", "-7 1081 OFFCURVE", "-54 1059 OFFCURVE", "-98 1039 CURVE SMOOTH", "-111 1033 OFFCURVE", "-119 1031 OFFCURVE", "-122 1033 CURVE SMOOTH", "-125 1034 OFFCURVE", "-127 1037 OFFCURVE", "-127 1042 CURVE SMOOTH", "-127 1063 LINE SMOOTH", "-127 1068 OFFCURVE", "-124 1072 OFFCURVE", "-118 1076 CURVE SMOOTH", "-39 1122 OFFCURVE", "12 1152 OFFCURVE", "35 1164 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{-20, 1162}"; }, { name = TashkilTashkilAbove2; position = "{-20, 1235}"; }, { name = _MarkAbove; position = "{-20, 1067}"; }, { name = _TashkilAbove; position = "{-20, 1067}"; }, { name = _TashkilAboveDot; position = "{-20, 1067}"; }, { name = _TashkilTashkilAbove; position = "{-20, 1067}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "38 1171 OFFCURVE", "43 1173 OFFCURVE", "47 1173 CURVE SMOOTH", "54 1173 OFFCURVE", "57 1169 OFFCURVE", "58 1162 CURVE SMOOTH", "58 1161 OFFCURVE", "58 1160 OFFCURVE", "58 1160 CURVE SMOOTH", "57 1125 LINE SMOOTH", "57 1115 OFFCURVE", "52 1107 OFFCURVE", "44 1102 CURVE", "-5 1077 OFFCURVE", "-52 1055 OFFCURVE", "-96 1035 CURVE", "-110 1029 OFFCURVE", "-120 1027 OFFCURVE", "-125 1029 CURVE", "-130 1032 OFFCURVE", "-132 1035 OFFCURVE", "-132 1042 CURVE SMOOTH", "-132 1063 LINE", "-132 1070 OFFCURVE", "-128 1075 OFFCURVE", "-121 1080 CURVE SMOOTH", "-42 1126 OFFCURVE", "9 1156 OFFCURVE", "32 1168 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "dammatan-ar.small"; layers = ( { anchors = ( { name = _TashkilTashkilAbove; position = "{293, 854}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "262 1010 OFFCURVE", "263 1007 OFFCURVE", "260 999 CURVE SMOOTH", "252 975 LINE SMOOTH", "249 965 OFFCURVE", "241 962 OFFCURVE", "231 965 CURVE SMOOTH", "221 968 OFFCURVE", "213 977 OFFCURVE", "208 992 CURVE SMOOTH", "203 1007 OFFCURVE", "202 1021 OFFCURVE", "205 1036 CURVE SMOOTH", "212 1064 OFFCURVE", "227 1091 OFFCURVE", "251 1117 CURVE SMOOTH", "306 1177 OFFCURVE", "345 1202 OFFCURVE", "369 1190 CURVE SMOOTH", "377 1186 OFFCURVE", "382 1178 OFFCURVE", "383 1167 CURVE SMOOTH", "384 1155 OFFCURVE", "380 1143 OFFCURVE", "373 1131 CURVE SMOOTH", "366 1121 OFFCURVE", "358 1119 OFFCURVE", "349 1128 CURVE SMOOTH", "333 1144 OFFCURVE", "314 1144 OFFCURVE", "291 1127 CURVE SMOOTH", "270 1112 OFFCURVE", "255 1098 OFFCURVE", "246 1083 CURVE SMOOTH", "235 1066 OFFCURVE", "229 1053 OFFCURVE", "228 1042 CURVE SMOOTH", "227 1031 OFFCURVE", "229 1023 OFFCURVE", "236 1017 CURVE SMOOTH", "242 1011 OFFCURVE", "250 1008 OFFCURVE", "257 1009 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "345 1094 OFFCURVE", "352 1092 OFFCURVE", "358 1085 CURVE SMOOTH", "363 1078 OFFCURVE", "365 1068 OFFCURVE", "365 1056 CURVE SMOOTH", "365 1044 OFFCURVE", "361 1025 OFFCURVE", "350 1000 CURVE", "359 994 OFFCURVE", "366 990 OFFCURVE", "370 988 CURVE SMOOTH", "374 986 OFFCURVE", "375 981 OFFCURVE", "372 975 CURVE SMOOTH", "362 955 LINE SMOOTH", "359 949 OFFCURVE", "349 952 OFFCURVE", "330 963 CURVE", "300 924 OFFCURVE", "273 898 OFFCURVE", "249 885 CURVE SMOOTH", "238 879 OFFCURVE", "230 878 OFFCURVE", "227 883 CURVE SMOOTH", "224 888 OFFCURVE", "229 894 OFFCURVE", "243 904 CURVE SMOOTH", "269 922 OFFCURVE", "292 946 OFFCURVE", "313 974 CURVE", "280 990 OFFCURVE", "270 1010 OFFCURVE", "282 1036 CURVE SMOOTH", "296 1067 OFFCURVE", "315 1086 OFFCURVE", "337 1092 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "328 1046 OFFCURVE", "321 1047 OFFCURVE", "311 1043 CURVE SMOOTH", "301 1039 OFFCURVE", "298 1034 OFFCURVE", "301 1031 CURVE SMOOTH", "306 1025 OFFCURVE", "316 1017 OFFCURVE", "332 1009 CURVE", "336 1021 OFFCURVE", "336 1032 OFFCURVE", "332 1039 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = _TashkilTashkilAbove; position = "{293, 854}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "332 1046 OFFCURVE", "326 1047 OFFCURVE", "316 1043 CURVE SMOOTH", "306 1039 OFFCURVE", "303 1034 OFFCURVE", "306 1031 CURVE SMOOTH", "311 1025 OFFCURVE", "321 1017 OFFCURVE", "337 1009 CURVE", "341 1021 OFFCURVE", "340 1032 OFFCURVE", "336 1039 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "258 1019 OFFCURVE", "263 1014 OFFCURVE", "263 1004 CURVE SMOOTH", "263 1001 OFFCURVE", "263 999 OFFCURVE", "262 996 CURVE SMOOTH", "254 973 LINE SMOOTH", "249 958 OFFCURVE", "240 953 OFFCURVE", "226 958 CURVE SMOOTH", "212 963 OFFCURVE", "203 973 OFFCURVE", "197 989 CURVE SMOOTH", "191 1005 OFFCURVE", "191 1025 OFFCURVE", "196 1048 CURVE SMOOTH", "201 1071 OFFCURVE", "216 1095 OFFCURVE", "241 1122 CURVE SMOOTH", "298 1184 OFFCURVE", "340 1209 OFFCURVE", "367 1196 CURVE", "378 1190 OFFCURVE", "384 1180 OFFCURVE", "385 1164 CURVE SMOOTH", "386 1148 OFFCURVE", "382 1135 OFFCURVE", "372 1124 CURVE SMOOTH", "362 1113 OFFCURVE", "351 1113 OFFCURVE", "338 1125 CURVE SMOOTH", "325 1137 OFFCURVE", "310 1135 OFFCURVE", "290 1121 CURVE SMOOTH", "270 1107 OFFCURVE", "255 1092 OFFCURVE", "246 1077 CURVE SMOOTH", "229 1051 OFFCURVE", "226 1032 OFFCURVE", "236 1022 CURVE", "241 1018 OFFCURVE", "245 1016 OFFCURVE", "250 1017 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "352 1102 OFFCURVE", "362 1099 OFFCURVE", "368 1090 CURVE SMOOTH", "381 1070 OFFCURVE", "380 1042 OFFCURVE", "364 1003 CURVE", "371 999 OFFCURVE", "376 996 OFFCURVE", "379 994 CURVE", "386 989 OFFCURVE", "388 982 OFFCURVE", "383 972 CURVE SMOOTH", "373 952 LINE", "368 943 OFFCURVE", "355 943 OFFCURVE", "336 954 CURVE", "307 917 OFFCURVE", "281 891 OFFCURVE", "257 878 CURVE", "242 871 OFFCURVE", "232 871 OFFCURVE", "226 879 CURVE SMOOTH", "220 887 OFFCURVE", "228 899 OFFCURVE", "248 913 CURVE SMOOTH", "268 927 OFFCURVE", "288 947 OFFCURVE", "307 971 CURVE", "276 989 OFFCURVE", "267 1011 OFFCURVE", "280 1039 CURVE SMOOTH", "296 1072 OFFCURVE", "316 1092 OFFCURVE", "340 1099 CURVE" ); } ); width = 0; } ); }, { glyphname = "highwaw-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 684}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = "wawSmall-ar"; transform = "{1, 0, 0, 1, -49, 295}"; }, { name = "kashida-ar.long1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{146, 684}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = "wawSmall-ar"; transform = "{1, 0, 0, 1, -49, 295}"; }, { name = "kashida-ar.long1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); subCategory = Spacing; }, { glyphname = "yehabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 684}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = "yehSmall-ar"; transform = "{1, 0, 0, 1, -58, 266}"; }, { name = "kashida-ar.long1"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { anchors = ( { name = TashkilAbove; position = "{146, 684}"; }, { name = TashkilBelow; position = "{146, -327}"; } ); components = ( { name = "yehSmall-ar"; transform = "{1, 0, 0, 1, -58, 266}"; }, { name = "kashida-ar.long1"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); subCategory = Spacing; }, { glyphname = radical.rtlm; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "506 170 OFFCURVE", "513 176 OFFCURVE", "515 182 CURVE", "515 187 OFFCURVE", "507 193 OFFCURVE", "492 201 CURVE SMOOTH", "460 219 OFFCURVE", "424 243 OFFCURVE", "381 273 CURVE SMOOTH", "374 278 OFFCURVE", "369 282 OFFCURVE", "366 284 CURVE SMOOTH", "360 289 OFFCURVE", "353 291 OFFCURVE", "346 288 CURVE", "343 287 OFFCURVE", "342 285 OFFCURVE", "341 283 CURVE", "337 268 OFFCURVE", "328 246 OFFCURVE", "316 216 CURVE", "202 -30 LINE", "63 772 LINE", "27 772 LINE", "166 -24 LINE SMOOTH", "177 -86 OFFCURVE", "184 -128 OFFCURVE", "188 -149 CURVE", "199 -162 OFFCURVE", "211 -169 OFFCURVE", "221 -169 CURVE", "227 -169 OFFCURVE", "229 -167 OFFCURVE", "230 -164 CURVE", "403 215 LINE", "494 164 LINE" ); } ); width = 503; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "423 191 LINE", "260 -171 LINE SMOOTH", "258 -174 OFFCURVE", "255 -176 OFFCURVE", "250 -176 CURVE SMOOTH", "249 -176 OFFCURVE", "247 -176 OFFCURVE", "245 -175 CURVE SMOOTH", "227 -170 OFFCURVE", "212 -161 OFFCURVE", "202 -149 CURVE", "20 766 OFFCURVE", "21 766 OFFCURVE", "21 766 CURVE", "77 772 LINE", "222 46 LINE", "309 248 LINE SMOOTH", "314 259 OFFCURVE", "319 274 OFFCURVE", "324 292 CURVE SMOOTH", "327 301 OFFCURVE", "329 309 OFFCURVE", "331 316 CURVE", "332 318 OFFCURVE", "334 320 OFFCURVE", "337 321 CURVE", "345 323 OFFCURVE", "352 321 OFFCURVE", "358 316 CURVE SMOOTH", "360 314 OFFCURVE", "364 312 OFFCURVE", "369 308 CURVE SMOOTH", "422 267 OFFCURVE", "467 233 OFFCURVE", "504 207 CURVE SMOOTH", "504 207 OFFCURVE", "506 206 OFFCURVE", "509 204 CURVE SMOOTH", "521 196 OFFCURVE", "526 188 OFFCURVE", "526 181 CURVE SMOOTH", "526 178 OFFCURVE", "526 175 OFFCURVE", "524 171 CURVE SMOOTH", "519 160 OFFCURVE", "511 152 OFFCURVE", "501 146 CURVE" ); } ); width = 514; } ); }, { glyphname = dot.percent; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "604 37 LINE SMOOTH", "616 31 OFFCURVE", "618 23 OFFCURVE", "612 11 CURVE SMOOTH", "579 -56 LINE SMOOTH", "573 -68 OFFCURVE", "565 -70 OFFCURVE", "553 -64 CURVE SMOOTH", "483 -29 LINE SMOOTH", "471 -23 OFFCURVE", "468 -15 OFFCURVE", "474 -3 CURVE SMOOTH", "507 63 LINE SMOOTH", "513 75 OFFCURVE", "522 78 OFFCURVE", "534 72 CURVE SMOOTH" ); } ); width = 661; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "610 50 LINE", "630 39 OFFCURVE", "635 24 OFFCURVE", "625 4 CURVE SMOOTH", "592 -62 LINE", "581 -82 OFFCURVE", "566 -88 OFFCURVE", "546 -78 CURVE SMOOTH", "476 -42 LINE", "456 -31 OFFCURVE", "451 -16 OFFCURVE", "461 4 CURVE SMOOTH", "494 70 LINE", "505 90 OFFCURVE", "520 95 OFFCURVE", "540 85 CURVE SMOOTH" ); } ); width = 661; } ); }, { glyphname = "meem-ar.medi.KafMemMediTatweel"; layers = ( { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "243 196 OFFCURVE", "257 214 OFFCURVE", "275 227 CURVE SMOOTH", "280 231 OFFCURVE", "291 233 OFFCURVE", "309 235 CURVE SMOOTH", "346 240 OFFCURVE", "377 227 OFFCURVE", "400 198 CURVE SMOOTH", "428 163 OFFCURVE", "440 134 OFFCURVE", "435 112 CURVE SMOOTH", "429 84 OFFCURVE", "418 62 OFFCURVE", "405 45 CURVE SMOOTH", "402 41 OFFCURVE", "399 39 OFFCURVE", "397 39 CURVE SMOOTH", "334 43 OFFCURVE", "275 63 OFFCURVE", "220 99 CURVE", "202 54 OFFCURVE", "179 24 OFFCURVE", "150 10 CURVE SMOOTH", "121 -4 OFFCURVE", "71 -8 OFFCURVE", "0 -1 CURVE SMOOTH", "-8 0 OFFCURVE", "-12 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-16 68 LINE SMOOTH", "-17 85 OFFCURVE", "-11 92 OFFCURVE", "0 90 CURVE SMOOTH", "104 72 OFFCURVE", "173 83 OFFCURVE", "208 122 CURVE SMOOTH", "211 125 OFFCURVE", "220 143 OFFCURVE", "234 175 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "314 192 OFFCURVE", "286 192 OFFCURVE", "270 168 CURVE", "315 142 OFFCURVE", "356 128 OFFCURVE", "394 125 CURVE", "388 140 OFFCURVE", "374 154 OFFCURVE", "352 168 CURVE SMOOTH" ); } ); width = 343; }, { anchors = ( { name = TashkilAbove; position = "{103, 801}"; }, { name = TashkilBelow; position = "{127, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "309 192 OFFCURVE", "281 192 OFFCURVE", "265 168 CURVE", "310 142 OFFCURVE", "351 128 OFFCURVE", "389 125 CURVE", "383 140 OFFCURVE", "369 154 OFFCURVE", "347 168 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "205 38 OFFCURVE", "180 10 OFFCURVE", "149 -5 CURVE SMOOTH", "118 -20 OFFCURVE", "69 -24 OFFCURVE", "-1 -16 CURVE SMOOTH", "-17 -14 OFFCURVE", "-26 -4 OFFCURVE", "-27 14 CURVE SMOOTH", "-30 67 LINE SMOOTH", "-32 96 OFFCURVE", "-21 108 OFFCURVE", "2 104 CURVE SMOOTH", "100 87 OFFCURVE", "165 96 OFFCURVE", "197 131 CURVE", "219 183 OFFCURVE", "243 219 OFFCURVE", "267 238 CURVE", "275 244 OFFCURVE", "288 248 OFFCURVE", "308 250 CURVE SMOOTH", "351 255 OFFCURVE", "386 241 OFFCURVE", "412 208 CURVE SMOOTH", "443 169 OFFCURVE", "454 134 OFFCURVE", "448 106 CURVE SMOOTH", "442 78 OFFCURVE", "434 57 OFFCURVE", "422 42 CURVE SMOOTH", "410 27 OFFCURVE", "402 19 OFFCURVE", "397 19 CURVE SMOOTH", "339 23 OFFCURVE", "282 43 OFFCURVE", "224 78 CURVE" ); } ); width = 343; } ); }, { glyphname = "meem-ar.fina.LamMemFinaExtended"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.fina.Extended; transform = "{1, 0, 0, 1, 0, -71}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 470; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.fina.Extended; transform = "{1, 0, 0, 1, 0, -71}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 470; } ); }, { glyphname = "meem-ar.fina.KafMemFinaExtended"; layers = ( { anchors = ( { name = TashkilAbove; position = "{239, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.fina.Extended; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 497; }, { anchors = ( { name = TashkilAbove; position = "{239, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.fina.Extended; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 497; } ); }, { glyphname = aMem.fina.Extended; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "381 -81 OFFCURVE", "337 -116 OFFCURVE", "269 -139 CURVE SMOOTH", "226 -153 OFFCURVE", "167 -164 OFFCURVE", "91 -172 CURVE SMOOTH", "82 -173 OFFCURVE", "75 -171 OFFCURVE", "73 -165 CURVE SMOOTH", "70 -159 OFFCURVE", "74 -154 OFFCURVE", "83 -151 CURVE SMOOTH", "243 -92 OFFCURVE", "337 -48 OFFCURVE", "365 -20 CURVE SMOOTH", "371 -14 OFFCURVE", "375 -3 OFFCURVE", "374 12 CURVE SMOOTH", "372 65 OFFCURVE", "384 101 OFFCURVE", "411 120 CURVE SMOOTH", "430 134 OFFCURVE", "447 139 OFFCURVE", "462 136 CURVE SMOOTH", "512 128 OFFCURVE", "548 104 OFFCURVE", "569 66 CURVE SMOOTH", "578 50 OFFCURVE", "580 34 OFFCURVE", "573 16 CURVE SMOOTH", "561 -16 OFFCURVE", "552 -38 OFFCURVE", "546 -50 CURVE SMOOTH", "540 -62 OFFCURVE", "527 -67 OFFCURVE", "506 -67 CURVE SMOOTH", "464 -66 OFFCURVE", "428 -55 OFFCURVE", "399 -33 CURVE" ); }, { closed = 1; nodes = ( "424 77 OFFCURVE", "409 72 OFFCURVE", "401 58 CURVE", "443 27 OFFCURVE", "488 12 OFFCURVE", "536 11 CURVE", "516 49 OFFCURVE", "485 70 OFFCURVE", "443 75 CURVE SMOOTH" ); } ); width = 497; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "424 77 OFFCURVE", "409 72 OFFCURVE", "401 58 CURVE", "443 27 OFFCURVE", "488 12 OFFCURVE", "536 11 CURVE", "516 49 OFFCURVE", "485 70 OFFCURVE", "443 75 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "369 -101 OFFCURVE", "327 -135 OFFCURVE", "274 -152 CURVE SMOOTH", "238 -164 OFFCURVE", "177 -173 OFFCURVE", "92 -179 CURVE SMOOTH", "76 -180 OFFCURVE", "67 -177 OFFCURVE", "64 -169 CURVE SMOOTH", "60 -158 OFFCURVE", "66 -150 OFFCURVE", "78 -145 CURVE SMOOTH", "232 -87 OFFCURVE", "326 -41 OFFCURVE", "360 -7 CURVE", "363 -3 OFFCURVE", "364 3 OFFCURVE", "364 13 CURVE SMOOTH", "362 70 OFFCURVE", "377 113 OFFCURVE", "412 139 CURVE SMOOTH", "432 154 OFFCURVE", "451 160 OFFCURVE", "470 156 CURVE SMOOTH", "521 147 OFFCURVE", "558 121 OFFCURVE", "582 79 CURVE", "591 60 OFFCURVE", "591 35 OFFCURVE", "580 6 CURVE SMOOTH", "569 -23 OFFCURVE", "560 -45 OFFCURVE", "552 -60 CURVE SMOOTH", "544 -75 OFFCURVE", "528 -82 OFFCURVE", "505 -82 CURVE SMOOTH", "469 -81 OFFCURVE", "434 -71 OFFCURVE", "400 -50 CURVE" ); } ); width = 497; } ); }, { glyphname = "meem-ar.fina.KafMemIsolExtended"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.fina.Extended; transform = "{1, 0, 0, 1, 0, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 483; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.fina.Extended; transform = "{1, 0, 0, 1, 0, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 483; } ); }, { glyphname = "kashida-ar.1"; layers = ( { anchors = ( { name = AlefAbove; position = "{93, 244}"; }, { name = HamzaAbove; position = "{93, 244}"; }, { name = HamzaBelow; position = "{93, -92.773}"; }, { name = MarkAbove; position = "{93, 801}"; }, { name = MarkBelow; position = "{93, -327}"; }, { name = NoonAbove; position = "{93, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 81 OFFCURVE", "-22 91 OFFCURVE", "0 90 CURVE SMOOTH", "31 88 OFFCURVE", "62 88 OFFCURVE", "93 88 CURVE SMOOTH", "124 88 OFFCURVE", "155 88 OFFCURVE", "186 90 CURVE SMOOTH", "208 91 OFFCURVE", "217 81 OFFCURVE", "211 59 CURVE SMOOTH", "198 15 LINE SMOOTH", "195 5 OFFCURVE", "192 0 OFFCURVE", "186 0 CURVE SMOOTH", "155 -2 OFFCURVE", "124 -3 OFFCURVE", "93 -3 CURVE SMOOTH", "62 -3 OFFCURVE", "31 -2 OFFCURVE", "0 0 CURVE SMOOTH" ); } ); width = 185; }, { anchors = ( { name = AlefAbove; position = "{93, 244}"; }, { name = HamzaAbove; position = "{93, 244}"; }, { name = HamzaBelow; position = "{93, -92.773}"; }, { name = MarkAbove; position = "{93, 801}"; }, { name = MarkBelow; position = "{93, -327}"; }, { name = NoonAbove; position = "{93, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-14 -14 OFFCURVE", "-23 -5 OFFCURVE", "-27 11 CURVE SMOOTH", "-40 55 LINE", "-46 82 OFFCURVE", "-38 97 OFFCURVE", "-15 103 CURVE SMOOTH", "-10 104 OFFCURVE", "9 105 OFFCURVE", "43 103 CURVE SMOOTH", "77 101 OFFCURVE", "111 101 OFFCURVE", "144 103 CURVE SMOOTH", "177 105 OFFCURVE", "197 105 OFFCURVE", "202 104 CURVE SMOOTH", "219 100 OFFCURVE", "227 88 OFFCURVE", "227 69 CURVE SMOOTH", "227 64 OFFCURVE", "226 60 OFFCURVE", "225 55 CURVE SMOOTH", "212 11 LINE SMOOTH", "207 -5 OFFCURVE", "198 -14 OFFCURVE", "186 -15 CURVE SMOOTH", "123 -19 OFFCURVE", "61 -19 OFFCURVE", "-1 -15 CURVE SMOOTH" ); } ); width = 185; } ); }, { glyphname = "alef-ar.fina.Tatweel"; layers = ( { anchors = ( { name = HamzaAbove; position = "{593, 244}"; }, { name = HamzaBelow; position = "{593, -92.773}"; }, { name = TashkilAbove; position = "{366, 708}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aAlf.fina.alt; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 786; }, { anchors = ( { name = HamzaAbove; position = "{593, 244}"; }, { name = HamzaBelow; position = "{593, -92.773}"; }, { name = TashkilAbove; position = "{366, 708}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aAlf.fina.alt; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 786; } ); }, { glyphname = "kashida-ar.2"; layers = ( { anchors = ( { name = AlefAbove; position = "{186, 244}"; }, { name = HamzaAbove; position = "{186, 244}"; }, { name = HamzaBelow; position = "{186, -92.773}"; }, { name = MarkAbove; position = "{186, 801}"; }, { name = MarkBelow; position = "{186, -327}"; }, { name = NoonAbove; position = "{186, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "114 -4 OFFCURVE", "52 -3 OFFCURVE", "0 0 CURVE SMOOTH", "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 81 OFFCURVE", "-22 91 OFFCURVE", "0 90 CURVE SMOOTH", "57 88 OFFCURVE", "119 87 OFFCURVE", "186 87 CURVE SMOOTH", "253 87 OFFCURVE", "314 88 OFFCURVE", "371 90 CURVE SMOOTH", "394 91 OFFCURVE", "402 81 OFFCURVE", "396 59 CURVE SMOOTH", "384 15 LINE SMOOTH", "381 5 OFFCURVE", "378 0 OFFCURVE", "372 0 CURVE SMOOTH", "320 -3 OFFCURVE", "258 -4 OFFCURVE", "186 -4 CURVE SMOOTH" ); } ); width = 371; }, { anchors = ( { name = AlefAbove; position = "{186, 244}"; }, { name = HamzaAbove; position = "{186, 244}"; }, { name = HamzaBelow; position = "{186, -92.773}"; }, { name = MarkAbove; position = "{186, 801}"; }, { name = MarkBelow; position = "{186, -327}"; }, { name = NoonAbove; position = "{186, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "114 -19 OFFCURVE", "51 -18 OFFCURVE", "-1 -15 CURVE SMOOTH", "-14 -14 OFFCURVE", "-23 -6 OFFCURVE", "-27 11 CURVE", "-40 55 LINE", "-45 75 OFFCURVE", "-42 88 OFFCURVE", "-32 95 CURVE SMOOTH", "-22 102 OFFCURVE", "-12 105 OFFCURVE", "0 105 CURVE SMOOTH", "57 103 OFFCURVE", "120 102 OFFCURVE", "186 102 CURVE SMOOTH", "252 102 OFFCURVE", "301 103 OFFCURVE", "332 104 CURVE SMOOTH", "363 105 OFFCURVE", "384 104 OFFCURVE", "392 102 CURVE SMOOTH", "400 100 OFFCURVE", "405 95 OFFCURVE", "409 85 CURVE SMOOTH", "413 75 OFFCURVE", "414 65 OFFCURVE", "411 55 CURVE SMOOTH", "398 11 LINE", "394 -6 OFFCURVE", "386 -14 OFFCURVE", "373 -15 CURVE SMOOTH", "321 -18 OFFCURVE", "258 -19 OFFCURVE", "186 -19 CURVE SMOOTH" ); } ); width = 371; } ); }, { glyphname = "kashida-ar.3"; layers = ( { anchors = ( { name = AlefAbove; position = "{278, 244}"; }, { name = HamzaAbove; position = "{278, 244}"; }, { name = HamzaBelow; position = "{278, -92.773}"; }, { name = MarkAbove; position = "{278, 801}"; }, { name = MarkBelow; position = "{278, -327}"; }, { name = NoonAbove; position = "{278, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "453 -8 OFFCURVE", "360 -13 OFFCURVE", "278 -13 CURVE SMOOTH", "196 -13 OFFCURVE", "104 -8 OFFCURVE", "0 0 CURVE", "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 82 OFFCURVE", "-23 92 OFFCURVE", "0 90 CURVE", "104 82 OFFCURVE", "196 78 OFFCURVE", "278 78 CURVE SMOOTH", "360 78 OFFCURVE", "453 82 OFFCURVE", "557 90 CURVE", "579 91 OFFCURVE", "588 81 OFFCURVE", "582 59 CURVE SMOOTH", "569 15 LINE SMOOTH", "566 5 OFFCURVE", "563 0 OFFCURVE", "557 0 CURVE" ); } ); width = 556; }, { anchors = ( { name = AlefAbove; position = "{278, 244}"; }, { name = HamzaAbove; position = "{278, 244}"; }, { name = HamzaBelow; position = "{278, -92.773}"; }, { name = MarkAbove; position = "{278, 801}"; }, { name = MarkBelow; position = "{278, -327}"; }, { name = NoonAbove; position = "{278, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "454 -23 OFFCURVE", "360 -27 OFFCURVE", "278 -27 CURVE SMOOTH", "196 -27 OFFCURVE", "104 -23 OFFCURVE", "0 -15 CURVE", "-13 -15 OFFCURVE", "-22 -6 OFFCURVE", "-27 11 CURVE", "-40 55 LINE SMOOTH", "-45 72 OFFCURVE", "-43 84 OFFCURVE", "-35 93 CURVE SMOOTH", "-27 102 OFFCURVE", "-15 106 OFFCURVE", "1 105 CURVE", "105 97 OFFCURVE", "197 92 OFFCURVE", "278 92 CURVE SMOOTH", "359 92 OFFCURVE", "452 97 OFFCURVE", "556 105 CURVE", "576 106 OFFCURVE", "589 100 OFFCURVE", "595 86 CURVE SMOOTH", "599 77 OFFCURVE", "599 67 OFFCURVE", "596 55 CURVE", "583 11 LINE", "579 -5 OFFCURVE", "572 -14 OFFCURVE", "558 -15 CURVE SMOOTH" ); } ); width = 556; } ); }, { glyphname = "kashida-ar.4"; layers = ( { anchors = ( { name = AlefAbove; position = "{371, 244}"; }, { name = HamzaAbove; position = "{371, 244}"; }, { name = HamzaBelow; position = "{371, -92.773}"; }, { name = MarkAbove; position = "{371, 801}"; }, { name = MarkBelow; position = "{371, -327}"; }, { name = NoonAbove; position = "{371, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "638 -8 OFFCURVE", "515 -13 OFFCURVE", "371 -13 CURVE SMOOTH", "227 -13 OFFCURVE", "104 -8 OFFCURVE", "0 0 CURVE", "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 82 OFFCURVE", "-23 92 OFFCURVE", "0 90 CURVE", "104 82 OFFCURVE", "227 78 OFFCURVE", "371 78 CURVE SMOOTH", "515 78 OFFCURVE", "638 82 OFFCURVE", "742 90 CURVE", "764 91 OFFCURVE", "774 81 OFFCURVE", "768 59 CURVE SMOOTH", "755 15 LINE SMOOTH", "752 5 OFFCURVE", "748 0 OFFCURVE", "742 0 CURVE" ); } ); width = 742; }, { anchors = ( { name = AlefAbove; position = "{371, 244}"; }, { name = HamzaAbove; position = "{371, 244}"; }, { name = HamzaBelow; position = "{371, -92.773}"; }, { name = MarkAbove; position = "{371, 801}"; }, { name = MarkBelow; position = "{371, -327}"; }, { name = NoonAbove; position = "{371, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "639 -23 OFFCURVE", "515 -27 OFFCURVE", "371 -27 CURVE SMOOTH", "227 -27 OFFCURVE", "104 -23 OFFCURVE", "0 -15 CURVE", "-13 -15 OFFCURVE", "-22 -6 OFFCURVE", "-27 11 CURVE", "-40 55 LINE", "-44 72 OFFCURVE", "-42 84 OFFCURVE", "-34 93 CURVE SMOOTH", "-26 102 OFFCURVE", "-15 106 OFFCURVE", "1 105 CURVE SMOOTH", "105 97 OFFCURVE", "228 92 OFFCURVE", "371 92 CURVE SMOOTH", "514 92 OFFCURVE", "637 97 OFFCURVE", "741 105 CURVE SMOOTH", "757 106 OFFCURVE", "769 102 OFFCURVE", "776 93 CURVE SMOOTH", "783 84 OFFCURVE", "785 72 OFFCURVE", "782 55 CURVE", "769 11 LINE", "764 -6 OFFCURVE", "756 -14 OFFCURVE", "743 -15 CURVE" ); } ); width = 742; } ); }, { glyphname = "sheenDotbelow-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, 36}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, 36}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 327, 563}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 327, 563}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seen-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenVinvertedabove-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 332, 129}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 332, 129}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenFourabove-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 332, 397}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 332, 397}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheen-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{288, 928}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 322, 651}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 332, 480}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{288, 928}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 322, 651}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 332, 480}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenFourdotsabove-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 337, 520}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 337, 520}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenDotbelowDotabove-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, 36}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 573}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 317, 36}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 317, 573}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "seenThreedotsbelow-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -86}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -86}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sheenThreedotsbelow-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -86}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 568; }, { anchors = ( { name = TashkilAbove; position = "{317, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 325, -86}"; }, { name = aSen.init; transform = "{1, 0, 0, 1, 0, 202}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 568; } ); }, { glyphname = "sadTwodotsbelow-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -62}"; }, { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 396, -62}"; }, { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "dadDotbelow-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -62}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 570}"; }, { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 391, -62}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 570}"; }, { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "dad-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 570}"; }, { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 310, 570}"; }, { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "sadThreedots-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 332, 520}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = "sad-ar.init.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 698; }, { anchors = ( { name = TashkilAbove; position = "{308, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aSad.init; transform = "{1, 0, 0, 1, 0, 202}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 698; } ); }, { glyphname = aYaaBari.isol; layers = ( { anchors = ( { name = DigitAbove; position = "{293, 537}"; }, { name = HamzaAbove; position = "{342, 537}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "466 333 OFFCURVE", "458 364 OFFCURVE", "441 365 CURVE SMOOTH", "430 366 OFFCURVE", "415 351 OFFCURVE", "396 323 CURVE SMOOTH", "392 317 OFFCURVE", "384 303 OFFCURVE", "370 280 CURVE SMOOTH", "356 257 OFFCURVE", "340 236 OFFCURVE", "324 220 CURVE SMOOTH", "308 204 OFFCURVE", "277 186 OFFCURVE", "229 166 CURVE SMOOTH", "181 146 OFFCURVE", "148 129 OFFCURVE", "132 116 CURVE SMOOTH", "124 109 OFFCURVE", "123 103 OFFCURVE", "128 96 CURVE SMOOTH", "139 81 OFFCURVE", "159 72 OFFCURVE", "188 69 CURVE SMOOTH", "239 63 OFFCURVE", "369 65 OFFCURVE", "580 74 CURVE SMOOTH", "791 83 OFFCURVE", "957 87 OFFCURVE", "1076 87 CURVE SMOOTH", "1095 87 OFFCURVE", "1100 80 OFFCURVE", "1092 65 CURVE SMOOTH", "1070 24 LINE SMOOTH", "1061 8 OFFCURVE", "1052 0 OFFCURVE", "1040 0 CURVE SMOOTH", "927 0 OFFCURVE", "779 -3 OFFCURVE", "599 -11 CURVE SMOOTH", "419 -19 OFFCURVE", "289 -23 OFFCURVE", "211 -22 CURVE SMOOTH", "133 -21 OFFCURVE", "86 -8 OFFCURVE", "70 17 CURVE SMOOTH", "63 28 OFFCURVE", "62 40 OFFCURVE", "65 53 CURVE SMOOTH", "80 112 OFFCURVE", "111 163 OFFCURVE", "158 204 CURVE SMOOTH", "173 217 OFFCURVE", "201 231 OFFCURVE", "242 247 CURVE SMOOTH", "283 263 OFFCURVE", "312 278 OFFCURVE", "329 291 CURVE SMOOTH", "346 304 OFFCURVE", "361 324 OFFCURVE", "375 351 CURVE SMOOTH", "411 422 OFFCURVE", "444 458 OFFCURVE", "473 456 CURVE SMOOTH", "507 454 OFFCURVE", "511 392 OFFCURVE", "489 273 CURVE SMOOTH", "487 263 OFFCURVE", "482 259 OFFCURVE", "475 259 CURVE SMOOTH", "468 259 OFFCURVE", "464 263 OFFCURVE", "464 272 CURVE SMOOTH" ); } ); width = 1159; }, { anchors = ( { name = DigitAbove; position = "{293, 537}"; }, { name = HamzaAbove; position = "{342, 537}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "460 318 OFFCURVE", "454 344 OFFCURVE", "440 350 CURVE SMOOTH", "431 354 OFFCURVE", "421 346 OFFCURVE", "409 327 CURVE SMOOTH", "400 314 OFFCURVE", "389 295 OFFCURVE", "374 271 CURVE SMOOTH", "359 247 OFFCURVE", "343 226 OFFCURVE", "326 209 CURVE SMOOTH", "309 192 OFFCURVE", "276 174 OFFCURVE", "226 153 CURVE SMOOTH", "176 132 OFFCURVE", "145 116 OFFCURVE", "133 104 CURVE", "141 94 OFFCURVE", "160 87 OFFCURVE", "189 84 CURVE SMOOTH", "239 78 OFFCURVE", "371 80 OFFCURVE", "581 89 CURVE SMOOTH", "800 98 OFFCURVE", "965 103 OFFCURVE", "1076 102 CURVE SMOOTH", "1111 102 OFFCURVE", "1120 87 OFFCURVE", "1104 58 CURVE SMOOTH", "1083 18 LINE SMOOTH", "1072 -3 OFFCURVE", "1058 -15 OFFCURVE", "1040 -15 CURVE SMOOTH", "927 -15 OFFCURVE", "779 -18 OFFCURVE", "599 -26 CURVE SMOOTH", "419 -34 OFFCURVE", "290 -38 OFFCURVE", "212 -37 CURVE SMOOTH", "134 -36 OFFCURVE", "86 -21 OFFCURVE", "68 9 CURVE SMOOTH", "59 24 OFFCURVE", "57 40 OFFCURVE", "61 56 CURVE SMOOTH", "82 129 OFFCURVE", "110 182 OFFCURVE", "148 215 CURVE SMOOTH", "164 229 OFFCURVE", "195 244 OFFCURVE", "239 260 CURVE SMOOTH", "283 276 OFFCURVE", "312 290 OFFCURVE", "327 302 CURVE SMOOTH", "342 314 OFFCURVE", "356 333 OFFCURVE", "369 358 CURVE SMOOTH", "410 440 OFFCURVE", "447 477 OFFCURVE", "479 470 CURVE SMOOTH", "505 464 OFFCURVE", "515 430 OFFCURVE", "510 370 CURVE SMOOTH", "508 340 OFFCURVE", "502 307 OFFCURVE", "494 271 CURVE SMOOTH", "491 257 OFFCURVE", "485 250 OFFCURVE", "476 250 CURVE SMOOTH", "465 250 OFFCURVE", "459 257 OFFCURVE", "459 272 CURVE SMOOTH" ); } ); width = 1159; } ); }, { glyphname = aYaaBari.fina; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "655 -181 OFFCURVE", "660 -189 OFFCURVE", "652 -205 CURVE SMOOTH", "630 -245 LINE SMOOTH", "622 -261 OFFCURVE", "612 -269 OFFCURVE", "600 -270 CURVE SMOOTH", "419 -278 OFFCURVE", "289 -281 OFFCURVE", "211 -280 CURVE SMOOTH", "133 -279 OFFCURVE", "86 -266 OFFCURVE", "70 -241 CURVE SMOOTH", "63 -230 OFFCURVE", "62 -219 OFFCURVE", "65 -206 CURVE SMOOTH", "79 -151 OFFCURVE", "110 -101 OFFCURVE", "158 -55 CURVE", "259 41 OFFCURVE", "397 90 OFFCURVE", "571 90 CURVE SMOOTH", "592 90 OFFCURVE", "600 75 OFFCURVE", "594 45 CURVE SMOOTH", "588 15 OFFCURVE", "579 0 OFFCURVE", "571 0 CURVE SMOOTH", "394 0 OFFCURVE", "247 -47 OFFCURVE", "132 -142 CURVE", "124 -149 OFFCURVE", "123 -155 OFFCURVE", "128 -162 CURVE SMOOTH", "138 -177 OFFCURVE", "158 -186 OFFCURVE", "188 -189 CURVE SMOOTH", "257 -196 OFFCURVE", "407 -194 OFFCURVE", "636 -182 CURVE SMOOTH" ); } ); width = 571; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "604 104 OFFCURVE", "617 83 OFFCURVE", "608 42 CURVE SMOOTH", "603 16 OFFCURVE", "597 1 OFFCURVE", "591 -5 CURVE SMOOTH", "585 -11 OFFCURVE", "578 -15 OFFCURVE", "571 -15 CURVE SMOOTH", "397 -15 OFFCURVE", "255 -61 OFFCURVE", "142 -153 CURVE SMOOTH", "141 -155 LINE", "150 -166 OFFCURVE", "165 -172 OFFCURVE", "189 -174 CURVE SMOOTH", "258 -181 OFFCURVE", "407 -180 OFFCURVE", "635 -168 CURVE SMOOTH", "645 -168 OFFCURVE", "652 -168 OFFCURVE", "658 -171 CURVE SMOOTH", "673 -179 OFFCURVE", "675 -192 OFFCURVE", "665 -211 CURVE SMOOTH", "643 -252 LINE SMOOTH", "632 -272 OFFCURVE", "618 -283 OFFCURVE", "600 -284 CURVE", "419 -292 OFFCURVE", "289 -296 OFFCURVE", "208 -295 CURVE SMOOTH", "127 -294 OFFCURVE", "77 -279 OFFCURVE", "58 -249 CURVE", "49 -234 OFFCURVE", "47 -219 OFFCURVE", "51 -202 CURVE SMOOTH", "66 -144 OFFCURVE", "98 -91 OFFCURVE", "148 -44 CURVE SMOOTH", "252 55 OFFCURVE", "393 105 OFFCURVE", "571 105 CURVE" ); } ); width = 571; } ); }, { glyphname = aYaaBari.fina.PostTooth; layers = ( { anchors = ( { name = DigitAbove; position = "{244, 537}"; }, { name = HamzaAbove; position = "{293, 537}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "449 345 OFFCURVE", "445 332 OFFCURVE", "435 319 CURVE SMOOTH", "426 308 OFFCURVE", "418 305 OFFCURVE", "412 312 CURVE SMOOTH", "411 313 OFFCURVE", "411 313 OFFCURVE", "410 314 CURVE SMOOTH", "407 319 OFFCURVE", "404 321 OFFCURVE", "401 319 CURVE SMOOTH", "400 318 OFFCURVE", "398 317 OFFCURVE", "397 315 CURVE SMOOTH", "387 304 OFFCURVE", "378 292 OFFCURVE", "370 280 CURVE SMOOTH", "350 252 OFFCURVE", "335 232 OFFCURVE", "324 221 CURVE SMOOTH", "308 205 OFFCURVE", "277 186 OFFCURVE", "229 166 CURVE SMOOTH", "181 146 OFFCURVE", "148 129 OFFCURVE", "132 116 CURVE SMOOTH", "124 109 OFFCURVE", "123 103 OFFCURVE", "128 96 CURVE SMOOTH", "139 81 OFFCURVE", "159 72 OFFCURVE", "188 69 CURVE SMOOTH", "239 63 OFFCURVE", "369 65 OFFCURVE", "580 74 CURVE SMOOTH", "791 83 OFFCURVE", "957 87 OFFCURVE", "1076 87 CURVE SMOOTH", "1095 87 OFFCURVE", "1100 80 OFFCURVE", "1092 65 CURVE SMOOTH", "1070 24 LINE SMOOTH", "1061 8 OFFCURVE", "1052 0 OFFCURVE", "1040 0 CURVE SMOOTH", "927 0 OFFCURVE", "779 -3 OFFCURVE", "599 -11 CURVE SMOOTH", "419 -19 OFFCURVE", "289 -23 OFFCURVE", "211 -22 CURVE SMOOTH", "133 -21 OFFCURVE", "86 -8 OFFCURVE", "70 17 CURVE SMOOTH", "63 28 OFFCURVE", "62 40 OFFCURVE", "65 53 CURVE SMOOTH", "80 112 OFFCURVE", "111 163 OFFCURVE", "158 204 CURVE SMOOTH", "173 217 OFFCURVE", "201 231 OFFCURVE", "242 247 CURVE SMOOTH", "283 263 OFFCURVE", "312 278 OFFCURVE", "329 291 CURVE SMOOTH", "344 302 OFFCURVE", "360 322 OFFCURVE", "378 350 CURVE SMOOTH", "392 372 OFFCURVE", "407 384 OFFCURVE", "422 388 CURVE SMOOTH", "423 388 OFFCURVE", "424 389 OFFCURVE", "425 389 CURVE SMOOTH", "435 390 OFFCURVE", "440 385 OFFCURVE", "443 378 CURVE SMOOTH", "444 375 OFFCURVE", "446 368 OFFCURVE", "447 358 CURVE SMOOTH" ); } ); width = 427; }, { anchors = ( { name = DigitAbove; position = "{244, 537}"; }, { name = HamzaAbove; position = "{293, 537}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "164 229 OFFCURVE", "195 244 OFFCURVE", "239 260 CURVE SMOOTH", "283 276 OFFCURVE", "312 291 OFFCURVE", "326 302 CURVE SMOOTH", "340 313 OFFCURVE", "356 331 OFFCURVE", "373 357 CURVE SMOOTH", "390 383 OFFCURVE", "403 397 OFFCURVE", "414 401 CURVE SMOOTH", "425 405 OFFCURVE", "434 403 OFFCURVE", "441 396 CURVE SMOOTH", "448 389 OFFCURVE", "452 377 OFFCURVE", "454 360 CURVE SMOOTH", "456 343 OFFCURVE", "452 326 OFFCURVE", "441 309 CURVE SMOOTH", "430 292 OFFCURVE", "417 289 OFFCURVE", "403 300 CURVE", "400 305 OFFCURVE", "387 291 OFFCURVE", "364 257 CURVE SMOOTH", "351 238 OFFCURVE", "338 221 OFFCURVE", "326 206 CURVE SMOOTH", "314 191 OFFCURVE", "282 174 OFFCURVE", "230 153 CURVE SMOOTH", "178 132 OFFCURVE", "145 116 OFFCURVE", "133 104 CURVE", "141 94 OFFCURVE", "160 87 OFFCURVE", "189 84 CURVE SMOOTH", "239 78 OFFCURVE", "371 80 OFFCURVE", "581 89 CURVE SMOOTH", "821 99 OFFCURVE", "986 104 OFFCURVE", "1076 102 CURVE SMOOTH", "1111 101 OFFCURVE", "1119 87 OFFCURVE", "1104 58 CURVE SMOOTH", "1083 18 LINE SMOOTH", "1072 -3 OFFCURVE", "1058 -15 OFFCURVE", "1040 -15 CURVE SMOOTH", "927 -15 OFFCURVE", "779 -18 OFFCURVE", "599 -26 CURVE SMOOTH", "419 -34 OFFCURVE", "290 -38 OFFCURVE", "213 -37 CURVE SMOOTH", "136 -36 OFFCURVE", "87 -21 OFFCURVE", "68 9 CURVE", "59 24 OFFCURVE", "57 40 OFFCURVE", "61 56 CURVE SMOOTH", "81 129 OFFCURVE", "110 182 OFFCURVE", "148 215 CURVE SMOOTH" ); } ); width = 427; } ); }, { glyphname = aSen.init.YaaBari; layers = ( { anchors = ( { name = DigitAbove; position = "{191, 564}"; }, { name = DotAbove; position = "{191, 564}"; }, { name = DotBelow; position = "{215, -102}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; }, { name = TwoDotsAbove; position = "{137, 515}"; }, { name = TwoDotsBelow; position = "{167, -102}"; }, { name = VAbove; position = "{191, 564}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "342 409 OFFCURVE", "345 409 OFFCURVE", "348 405 CURVE SMOOTH", "351 401 OFFCURVE", "354 393 OFFCURVE", "355 380 CURVE SMOOTH", "358 347 OFFCURVE", "353 316 OFFCURVE", "339 286 CURVE SMOOTH", "325 256 OFFCURVE", "312 237 OFFCURVE", "303 228 CURVE SMOOTH", "294 219 OFFCURVE", "282 215 OFFCURVE", "266 217 CURVE SMOOTH", "231 221 OFFCURVE", "205 236 OFFCURVE", "191 263 CURVE SMOOTH", "189 266 OFFCURVE", "187 266 OFFCURVE", "184 262 CURVE SMOOTH", "143 219 OFFCURVE", "102 202 OFFCURVE", "63 210 CURVE", "14 221 OFFCURVE", "-14 262 OFFCURVE", "-21 333 CURVE", "-22 348 OFFCURVE", "-19 360 OFFCURVE", "-13 368 CURVE", "-5 377 OFFCURVE", "4 379 OFFCURVE", "11 375 CURVE", "14 373 OFFCURVE", "17 370 OFFCURVE", "18 366 CURVE SMOOTH", "21 355 OFFCURVE", "24 345 OFFCURVE", "29 337 CURVE SMOOTH", "44 310 OFFCURVE", "69 295 OFFCURVE", "104 292 CURVE SMOOTH", "158 287 OFFCURVE", "197 316 OFFCURVE", "220 379 CURVE SMOOTH", "222 383 OFFCURVE", "225 385 OFFCURVE", "229 385 CURVE SMOOTH", "233 385 OFFCURVE", "236 384 OFFCURVE", "239 381 CURVE SMOOTH", "242 378 OFFCURVE", "241 371 OFFCURVE", "238 363 CURVE SMOOTH", "227 336 OFFCURVE", "233 317 OFFCURVE", "255 307 CURVE SMOOTH", "270 300 OFFCURVE", "286 296 OFFCURVE", "303 297 CURVE SMOOTH", "306 297 OFFCURVE", "308 302 OFFCURVE", "308 310 CURVE SMOOTH", "308 318 OFFCURVE", "307 326 OFFCURVE", "303 336 CURVE SMOOTH", "299 346 OFFCURVE", "299 353 OFFCURVE", "302 357 CURVE SMOOTH", "339 406 LINE SMOOTH" ); } ); width = 732; }, { anchors = ( { name = DigitAbove; position = "{191, 564}"; }, { name = DotAbove; position = "{191, 564}"; }, { name = DotBelow; position = "{215, -102}"; }, { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; }, { name = TwoDotsAbove; position = "{137, 515}"; }, { name = TwoDotsBelow; position = "{167, -102}"; }, { name = VAbove; position = "{191, 564}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "342 433 OFFCURVE", "353 435 OFFCURVE", "361 421 CURVE SMOOTH", "367 411 OFFCURVE", "370 398 OFFCURVE", "370 382 CURVE SMOOTH", "369 345 OFFCURVE", "363 311 OFFCURVE", "350 281 CURVE SMOOTH", "336 249 OFFCURVE", "323 228 OFFCURVE", "313 219 CURVE SMOOTH", "297 206 OFFCURVE", "281 201 OFFCURVE", "264 203 CURVE SMOOTH", "233 207 OFFCURVE", "207 223 OFFCURVE", "186 251 CURVE", "144 205 OFFCURVE", "102 187 OFFCURVE", "60 196 CURVE SMOOTH", "9 208 OFFCURVE", "-21 254 OFFCURVE", "-28 332 CURVE SMOOTH", "-30 352 OFFCURVE", "-26 366 OFFCURVE", "-17 377 CURVE SMOOTH", "-8 387 OFFCURVE", "2 392 OFFCURVE", "12 388 CURVE SMOOTH", "17 386 OFFCURVE", "21 379 OFFCURVE", "24 368 CURVE SMOOTH", "35 330 OFFCURVE", "63 310 OFFCURVE", "105 307 CURVE SMOOTH", "156 303 OFFCURVE", "193 329 OFFCURVE", "214 385 CURVE SMOOTH", "218 395 OFFCURVE", "226 399 OFFCURVE", "238 394 CURVE SMOOTH", "249 390 OFFCURVE", "251 377 OFFCURVE", "243 357 CURVE SMOOTH", "237 341 OFFCURVE", "242 329 OFFCURVE", "259 322 CURVE SMOOTH", "276 315 OFFCURVE", "289 311 OFFCURVE", "300 310 CURVE", "300 316 OFFCURVE", "297 324 OFFCURVE", "290 337 CURVE SMOOTH", "284 348 OFFCURVE", "283 358 OFFCURVE", "290 366 CURVE SMOOTH", "328 415 LINE SMOOTH" ); } ); width = 732; } ); }, { glyphname = aSad.init.YaaBari; layers = ( { anchors = ( { name = DotAbove; position = "{170, 627}"; }, { name = DotBelow; position = "{330, -102}"; }, { name = HamzaAbove; position = "{170, 627}"; }, { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; }, { name = TwoDotsAbove; position = "{116, 627}"; }, { name = TwoDotsBelow; position = "{281, -102}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "43 167 LINE SMOOTH", "39 163 OFFCURVE", "36 162 OFFCURVE", "31 165 CURVE SMOOTH", "26 168 OFFCURVE", "26 175 OFFCURVE", "32 184 CURVE SMOOTH", "43 201 OFFCURVE", "51 212 OFFCURVE", "55 217 CURVE", "29 232 OFFCURVE", "9 254 OFFCURVE", "-6 282 CURVE SMOOTH", "-12 294 OFFCURVE", "-16 305 OFFCURVE", "-18 316 CURVE SMOOTH", "-22 339 OFFCURVE", "-21 356 OFFCURVE", "-14 367 CURVE SMOOTH", "-8 375 OFFCURVE", "-2 378 OFFCURVE", "5 377 CURVE SMOOTH", "8 376 OFFCURVE", "11 375 OFFCURVE", "13 373 CURVE SMOOTH", "16 364 OFFCURVE", "20 355 OFFCURVE", "24 348 CURVE SMOOTH", "43 315 OFFCURVE", "73 292 OFFCURVE", "115 278 CURVE", "141 312 OFFCURVE", "172 347 OFFCURVE", "209 383 CURVE SMOOTH", "279 448 OFFCURVE", "341 480 OFFCURVE", "392 480 CURVE SMOOTH", "412 480 OFFCURVE", "433 468 OFFCURVE", "459 444 CURVE SMOOTH", "484 421 OFFCURVE", "494 398 OFFCURVE", "489 376 CURVE", "481 347 OFFCURVE", "466 320 OFFCURVE", "445 297 CURVE SMOOTH", "395 242 OFFCURVE", "341 209 OFFCURVE", "283 198 CURVE SMOOTH", "208 184 OFFCURVE", "141 185 OFFCURVE", "79 203 CURVE" ); }, { closed = 1; nodes = ( "254 262 OFFCURVE", "343 284 OFFCURVE", "413 339 CURVE SMOOTH", "415 341 OFFCURVE", "418 344 OFFCURVE", "422 350 CURVE", "390 384 OFFCURVE", "360 401 OFFCURVE", "330 399 CURVE", "303 398 OFFCURVE", "261 373 OFFCURVE", "205 325 CURVE SMOOTH", "179 303 OFFCURVE", "160 285 OFFCURVE", "146 271 CURVE" ); } ); width = 732; }, { anchors = ( { name = DotAbove; position = "{170, 627}"; }, { name = DotBelow; position = "{330, -102}"; }, { name = HamzaAbove; position = "{170, 627}"; }, { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; }, { name = TwoDotsAbove; position = "{116, 627}"; }, { name = TwoDotsBelow; position = "{281, -102}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "48 163 LINE SMOOTH", "41 156 OFFCURVE", "35 155 OFFCURVE", "28 160 CURVE SMOOTH", "21 165 OFFCURVE", "21 174 OFFCURVE", "28 184 CURVE SMOOTH", "35 194 OFFCURVE", "40 202 OFFCURVE", "44 208 CURVE", "21 223 OFFCURVE", "4 242 OFFCURVE", "-9 266 CURVE SMOOTH", "-29 305 OFFCURVE", "-33 342 OFFCURVE", "-21 375 CURVE SMOOTH", "-17 387 OFFCURVE", "-10 393 OFFCURVE", "1 392 CURVE SMOOTH", "12 391 OFFCURVE", "18 387 OFFCURVE", "21 380 CURVE SMOOTH", "36 341 OFFCURVE", "69 312 OFFCURVE", "119 291 CURVE", "223 427 OFFCURVE", "314 495 OFFCURVE", "392 495 CURVE SMOOTH", "415 495 OFFCURVE", "441 482 OFFCURVE", "470 454 CURVE SMOOTH", "499 427 OFFCURVE", "509 400 OFFCURVE", "503 373 CURVE", "494 341 OFFCURVE", "479 312 OFFCURVE", "456 287 CURVE SMOOTH", "403 229 OFFCURVE", "346 195 OFFCURVE", "286 184 CURVE", "212 170 OFFCURVE", "141 171 OFFCURVE", "73 189 CURVE" ); }, { closed = 1; nodes = ( "270 281 OFFCURVE", "353 305 OFFCURVE", "416 353 CURVE", "395 375 OFFCURVE", "365 385 OFFCURVE", "328 384 CURVE SMOOTH", "291 383 OFFCURVE", "237 349 OFFCURVE", "166 283 CURVE" ); } ); width = 732; } ); }, { glyphname = "yehbarreeThreeabove-ar.fina"; layers = ( { components = ( { name = aYaaBari.fina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 450, 449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 571; }, { components = ( { name = aYaaBari.fina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 450, 449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 571; } ); }, { glyphname = "yehbarreeThreeabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 244, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 427; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 244, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 427; } ); }, { glyphname = "yehbarreeTwoabove-ar.fina"; layers = ( { components = ( { name = aYaaBari.fina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 471, 452}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 571; }, { components = ( { name = aYaaBari.fina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 471, 452}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 571; } ); }, { glyphname = "yehbarreeTwoabove-ar.fina.PostTooth"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 244, 366}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 427; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 244, 366}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 427; } ); }, { glyphname = "yehbarree-ar.fina"; layers = ( { components = ( { name = aYaaBari.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 571; }, { components = ( { name = aYaaBari.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 571; } ); }, { glyphname = "yehbarree-ar.fina.PostTooth"; layers = ( { anchors = ( { name = HamzaAbove; position = "{293, 537}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 427; }, { anchors = ( { name = HamzaAbove; position = "{293, 537}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 427; } ); }, { glyphname = "sheenDotbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 215, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 215, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenTwodotsverticalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 191, 496}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 191, 496}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seen-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenVinvertedabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 191, 100}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 191, 100}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenFourabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 191, 393}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "fourabove-ar"; transform = "{1, 0, 0, 1, 191, 393}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "sheen-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenTahTwodotshorizontalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{162, 984}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 181, 667}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{162, 984}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 181, 667}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenFourdotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenDotbelowDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 191, 496}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 215, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 191, 496}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 215, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "seenThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 223, -292}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 223, -292}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "sheenThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 223, -292}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{191, 801}"; }, { name = TashkilBelow; position = "{229, -327}"; } ); components = ( { name = aSen.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 191, 447}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 223, -292}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "sadTwodotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 335, -170}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 335, -170}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "dadDotbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 170, 559}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 330, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 170, 559}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 330, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "dad-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 170, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 170, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "sadThreedots-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 831}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 170, 559}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{112, 831}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 170, 559}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = "sad-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 732; }, { anchors = ( { name = TashkilAbove; position = "{170, 801}"; }, { name = TashkilBelow; position = "{242, -327}"; } ); components = ( { name = aSad.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 732; } ); }, { glyphname = aYaaBari.fina.PostAscender; layers = ( { anchors = ( { name = DigitAbove; position = "{66, 377}"; }, { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "361 256 OFFCURVE", "349 237 OFFCURVE", "332 222 CURVE SMOOTH", "331 221 OFFCURVE", "329 220 OFFCURVE", "328 219 CURVE SMOOTH", "311 205 OFFCURVE", "279 187 OFFCURVE", "229 166 CURVE SMOOTH", "181 146 OFFCURVE", "148 129 OFFCURVE", "132 116 CURVE SMOOTH", "124 109 OFFCURVE", "123 103 OFFCURVE", "128 96 CURVE SMOOTH", "139 81 OFFCURVE", "159 72 OFFCURVE", "188 69 CURVE SMOOTH", "239 63 OFFCURVE", "369 65 OFFCURVE", "580 74 CURVE SMOOTH", "791 83 OFFCURVE", "957 87 OFFCURVE", "1076 87 CURVE SMOOTH", "1095 87 OFFCURVE", "1100 80 OFFCURVE", "1092 65 CURVE SMOOTH", "1070 24 LINE SMOOTH", "1061 8 OFFCURVE", "1052 0 OFFCURVE", "1040 0 CURVE SMOOTH", "927 0 OFFCURVE", "779 -3 OFFCURVE", "599 -11 CURVE SMOOTH", "419 -19 OFFCURVE", "289 -23 OFFCURVE", "211 -22 CURVE SMOOTH", "133 -21 OFFCURVE", "86 -8 OFFCURVE", "70 17 CURVE SMOOTH", "63 28 OFFCURVE", "62 40 OFFCURVE", "65 53 CURVE SMOOTH", "80 112 OFFCURVE", "111 163 OFFCURVE", "158 204 CURVE SMOOTH", "173 217 OFFCURVE", "201 231 OFFCURVE", "242 247 CURVE SMOOTH", "283 263 OFFCURVE", "312 278 OFFCURVE", "329 291 CURVE SMOOTH", "341 300 OFFCURVE", "350 308 OFFCURVE", "356 314 CURVE SMOOTH", "371 330 OFFCURVE", "379 332 OFFCURVE", "379 322 CURVE SMOOTH", "379 314 OFFCURVE", "376 301 OFFCURVE", "369 280 CURVE SMOOTH" ); } ); width = 368; }, { anchors = ( { name = DigitAbove; position = "{66, 377}"; }, { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "380 348 OFFCURVE", "387 339 OFFCURVE", "385 317 CURVE SMOOTH", "384 306 OFFCURVE", "380 290 OFFCURVE", "374 271 CURVE SMOOTH", "366 247 OFFCURVE", "353 228 OFFCURVE", "335 211 CURVE SMOOTH", "317 194 OFFCURVE", "281 175 OFFCURVE", "228 153 CURVE SMOOTH", "175 131 OFFCURVE", "144 114 OFFCURVE", "133 104 CURVE", "141 94 OFFCURVE", "160 87 OFFCURVE", "189 84 CURVE SMOOTH", "239 78 OFFCURVE", "371 80 OFFCURVE", "581 89 CURVE SMOOTH", "821 99 OFFCURVE", "986 104 OFFCURVE", "1076 102 CURVE SMOOTH", "1111 101 OFFCURVE", "1119 87 OFFCURVE", "1104 58 CURVE SMOOTH", "1083 18 LINE SMOOTH", "1072 -3 OFFCURVE", "1058 -15 OFFCURVE", "1040 -15 CURVE SMOOTH", "927 -15 OFFCURVE", "779 -18 OFFCURVE", "599 -26 CURVE SMOOTH", "419 -34 OFFCURVE", "289 -38 OFFCURVE", "210 -37 CURVE SMOOTH", "133 -36 OFFCURVE", "86 -21 OFFCURVE", "68 9 CURVE SMOOTH", "59 24 OFFCURVE", "57 40 OFFCURVE", "61 56 CURVE SMOOTH", "82 129 OFFCURVE", "110 182 OFFCURVE", "148 215 CURVE SMOOTH", "164 229 OFFCURVE", "194 244 OFFCURVE", "237 260 CURVE SMOOTH", "280 276 OFFCURVE", "308 290 OFFCURVE", "322 300 CURVE SMOOTH", "336 310 OFFCURVE", "347 320 OFFCURVE", "354 327 CURVE SMOOTH", "363 334 OFFCURVE", "367 339 OFFCURVE", "366 341 CURVE SMOOTH" ); } ); width = 368; } ); }, { glyphname = "alef-ar.fina.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "277 -2 OFFCURVE", "204 8 OFFCURVE", "159 30 CURVE SMOOTH", "115 51 OFFCURVE", "92 85 OFFCURVE", "89 131 CURVE SMOOTH", "85 201 OFFCURVE", "81 270 OFFCURVE", "78 338 CURVE SMOOTH", "75 412 OFFCURVE", "71 464 OFFCURVE", "66 496 CURVE SMOOTH", "60 539 OFFCURVE", "52 588 OFFCURVE", "42 643 CURVE SMOOTH", "40 654 OFFCURVE", "41 661 OFFCURVE", "45 668 CURVE SMOOTH", "77 720 LINE SMOOTH", "84 732 OFFCURVE", "89 727 OFFCURVE", "92 705 CURVE SMOOTH", "104 614 OFFCURVE", "112 519 OFFCURVE", "116 421 CURVE SMOOTH", "118 383 OFFCURVE", "123 305 OFFCURVE", "131 188 CURVE SMOOTH", "134 143 OFFCURVE", "169 113 OFFCURVE", "236 99 CURVE SMOOTH", "273 91 OFFCURVE", "320 88 OFFCURVE", "377 90 CURVE SMOOTH", "396 91 OFFCURVE", "404 84 OFFCURVE", "403 69 CURVE SMOOTH", "399 23 OFFCURVE", "391 0 OFFCURVE", "378 0 CURVE SMOOTH" ); } ); width = 375; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "273 -14 OFFCURVE", "199 -4 OFFCURVE", "154 19 CURVE SMOOTH", "109 42 OFFCURVE", "85 79 OFFCURVE", "82 131 CURVE SMOOTH", "76 227 OFFCURVE", "73 295 OFFCURVE", "71 337 CURVE SMOOTH", "68 409 OFFCURVE", "66 458 OFFCURVE", "62 484 CURVE SMOOTH", "54 549 OFFCURVE", "44 603 OFFCURVE", "34 645 CURVE SMOOTH", "31 657 OFFCURVE", "33 669 OFFCURVE", "40 680 CURVE SMOOTH", "66 727 LINE SMOOTH", "73 740 OFFCURVE", "81 744 OFFCURVE", "88 742 CURVE SMOOTH", "95 740 OFFCURVE", "100 726 OFFCURVE", "103 701 CURVE SMOOTH", "112 594 OFFCURVE", "119 500 OFFCURVE", "123 421 CURVE SMOOTH", "126 367 OFFCURVE", "131 289 OFFCURVE", "138 189 CURVE SMOOTH", "141 151 OFFCURVE", "174 125 OFFCURVE", "238 111 CURVE SMOOTH", "239 111 OFFCURVE", "239 111 OFFCURVE", "239 111 CURVE SMOOTH", "275 104 OFFCURVE", "321 101 OFFCURVE", "377 103 CURVE SMOOTH", "404 104 OFFCURVE", "418 92 OFFCURVE", "416 68 CURVE", "412 28 OFFCURVE", "406 4 OFFCURVE", "396 -5 CURVE SMOOTH", "391 -10 OFFCURVE", "385 -12 OFFCURVE", "378 -12 CURVE SMOOTH" ); } ); width = 375; } ); }, { glyphname = aBaa.init.YaaBari; layers = ( { anchors = ( { name = DigitAbove; position = "{-145, 744}"; }, { name = DigitBelow; position = "{36, -128}"; }, { name = DotAbove; position = "{-145, 744}"; }, { name = DotBelow; position = "{36, -128}"; }, { name = HamzaAbove; position = "{-145, 744}"; }, { name = HamzaBelow; position = "{36, -128}"; }, { name = RingBelow; position = "{-21, 269}"; }, { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-199, 744}"; }, { name = TwoDotsBelow; position = "{37, -129}"; }, { name = VAbove; position = "{-145, 744}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-130 559 OFFCURVE", "-129 562 OFFCURVE", "-125 563 CURVE SMOOTH", "-117 566 OFFCURVE", "-90 541 OFFCURVE", "-43 490 CURVE SMOOTH", "-16 460 OFFCURVE", "1 432 OFFCURVE", "9 406 CURVE SMOOTH", "17 380 OFFCURVE", "18 353 OFFCURVE", "12 326 CURVE SMOOTH", "6 299 OFFCURVE", "1 285 OFFCURVE", "-4 286 CURVE SMOOTH", "-11 287 OFFCURVE", "-15 296 OFFCURVE", "-15 312 CURVE SMOOTH", "-15 352 OFFCURVE", "-47 402 OFFCURVE", "-112 462 CURVE SMOOTH", "-119 469 OFFCURVE", "-123 473 OFFCURVE", "-125 476 CURVE SMOOTH", "-127 479 OFFCURVE", "-127 483 OFFCURVE", "-128 489 CURVE SMOOTH", "-130 556 LINE SMOOTH" ); } ); width = 791; }, { anchors = ( { name = DigitAbove; position = "{-145, 744}"; }, { name = DigitBelow; position = "{36, -128}"; }, { name = DotAbove; position = "{-145, 744}"; }, { name = DotBelow; position = "{36, -128}"; }, { name = HamzaAbove; position = "{-145, 744}"; }, { name = HamzaBelow; position = "{36, -128}"; }, { name = RingBelow; position = "{-21, 269}"; }, { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-199, 744}"; }, { name = TwoDotsBelow; position = "{37, -129}"; }, { name = VAbove; position = "{-145, 744}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-145 565 OFFCURVE", "-139 573 OFFCURVE", "-128 577 CURVE SMOOTH", "-117 581 OFFCURVE", "-101 573 OFFCURVE", "-79 551 CURVE SMOOTH", "-71 543 OFFCURVE", "-55 525 OFFCURVE", "-32 499 CURVE SMOOTH", "16 446 OFFCURVE", "33 387 OFFCURVE", "19 323 CURVE SMOOTH", "15 303 OFFCURVE", "12 292 OFFCURVE", "11 288 CURVE SMOOTH", "5 275 OFFCURVE", "0 270 OFFCURVE", "-7 272 CURVE", "-10 273 OFFCURVE", "-15 286 OFFCURVE", "-22 312 CURVE SMOOTH", "-35 364 OFFCURVE", "-69 411 OFFCURVE", "-122 451 CURVE SMOOTH", "-136 462 OFFCURVE", "-143 474 OFFCURVE", "-143 488 CURVE SMOOTH", "-145 555 LINE SMOOTH" ); } ); width = 791; } ); }, { glyphname = aFaa.init.YaaBari; layers = ( { anchors = ( { name = DotAbove; position = "{-156, 762}"; }, { name = DotBelow; position = "{120, 248}"; }, { name = HamzaAbove; position = "{-156, 762}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-210, 762}"; }, { name = TwoDotsBelow; position = "{81, 248}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-109 609 OFFCURVE", "-97 603 OFFCURVE", "-86 593 CURVE SMOOTH", "-58 568 OFFCURVE", "-35 540 OFFCURVE", "-16 506 CURVE SMOOTH", "18 447 OFFCURVE", "26 383 OFFCURVE", "10 315 CURVE SMOOTH", "5 294 OFFCURVE", "0 285 OFFCURVE", "-5 286 CURVE SMOOTH", "-13 288 OFFCURVE", "-16 297 OFFCURVE", "-13 314 CURVE SMOOTH", "-7 349 OFFCURVE", "-23 393 OFFCURVE", "-61 448 CURVE", "-73 410 OFFCURVE", "-90 388 OFFCURVE", "-114 383 CURVE SMOOTH", "-179 368 OFFCURVE", "-211 393 OFFCURVE", "-209 455 CURVE", "-209 485 OFFCURVE", "-199 518 OFFCURVE", "-179 554 CURVE SMOOTH", "-159 590 OFFCURVE", "-139 609 OFFCURVE", "-119 609 CURVE" ); }, { closed = 1; nodes = ( "-154 520 OFFCURVE", "-163 508 OFFCURVE", "-166 484 CURVE SMOOTH", "-166 481 OFFCURVE", "-166 479 OFFCURVE", "-165 479 CURVE SMOOTH", "-153 475 OFFCURVE", "-139 474 OFFCURVE", "-126 476 CURVE SMOOTH", "-113 478 OFFCURVE", "-105 482 OFFCURVE", "-101 488 CURVE", "-115 510 OFFCURVE", "-128 521 OFFCURVE", "-140 521 CURVE SMOOTH" ); } ); width = 791; }, { anchors = ( { name = DotAbove; position = "{-156, 762}"; }, { name = DotBelow; position = "{120, 248}"; }, { name = HamzaAbove; position = "{-156, 762}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-210, 762}"; }, { name = TwoDotsBelow; position = "{81, 248}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-115 510 OFFCURVE", "-129 521 OFFCURVE", "-142 521 CURVE SMOOTH", "-155 521 OFFCURVE", "-163 508 OFFCURVE", "-166 484 CURVE", "-166 481 OFFCURVE", "-166 479 OFFCURVE", "-165 479 CURVE SMOOTH", "-153 475 OFFCURVE", "-139 474 OFFCURVE", "-126 476 CURVE SMOOTH", "-113 478 OFFCURVE", "-105 482 OFFCURVE", "-101 488 CURVE" ); }, { closed = 1; nodes = ( "-106 623 OFFCURVE", "-92 616 OFFCURVE", "-79 604 CURVE SMOOTH", "7 525 OFFCURVE", "38 427 OFFCURVE", "16 312 CURVE SMOOTH", "10 283 OFFCURVE", "2 269 OFFCURVE", "-8 272 CURVE", "-19 275 OFFCURVE", "-22 289 OFFCURVE", "-18 313 CURVE SMOOTH", "-14 337 OFFCURVE", "-27 374 OFFCURVE", "-58 424 CURVE", "-72 392 OFFCURVE", "-89 374 OFFCURVE", "-111 369 CURVE SMOOTH", "-164 358 OFFCURVE", "-196 374 OFFCURVE", "-209 416 CURVE SMOOTH", "-222 458 OFFCURVE", "-213 506 OFFCURVE", "-182 562 CURVE SMOOTH", "-158 604 OFFCURVE", "-138 625 OFFCURVE", "-119 624 CURVE SMOOTH" ); } ); width = 791; } ); }, { glyphname = "wawSmall-ar.low"; layers = ( { anchors = ( { name = TashkilAbove; position = "{150, 159}"; } ); components = ( { name = "wawSmall-ar"; transform = "{1, 0, 0, 1, -45, -259}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{150, 159}"; } ); components = ( { name = "wawSmall-ar"; transform = "{1, 0, 0, 1, -45, -259}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 251; } ); }, { glyphname = aLam.init.YaaBari; layers = ( { anchors = ( { name = DotAbove; position = "{-55, 861}"; }, { name = Stroke; position = "{-41, 577}"; }, { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-114, 861}"; }, { name = TwoDotsBelow; position = "{81, 248}"; }, { name = VAbove; position = "{-55, 812}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "10 309 OFFCURVE", "5 290 OFFCURVE", "-2 283 CURVE SMOOTH", "-7 278 OFFCURVE", "-11 287 OFFCURVE", "-15 309 CURVE SMOOTH", "-21 346 OFFCURVE", "-30 394 OFFCURVE", "-41 454 CURVE SMOOTH", "-52 514 OFFCURVE", "-61 572 OFFCURVE", "-71 628 CURVE", "-84 684 LINE SMOOTH", "-86 692 OFFCURVE", "-86 698 OFFCURVE", "-84 702 CURVE SMOOTH", "-75 727 OFFCURVE", "-71 742 OFFCURVE", "-69 748 CURVE SMOOTH", "-67 754 OFFCURVE", "-64 757 OFFCURVE", "-59 757 CURVE SMOOTH", "-54 757 OFFCURVE", "-51 755 OFFCURVE", "-48 748 CURVE SMOOTH", "-36 719 OFFCURVE", "-20 695 OFFCURVE", "0 677 CURVE SMOOTH", "7 671 OFFCURVE", "6 663 OFFCURVE", "-1 654 CURVE", "-21 622 LINE", "-21 615 OFFCURVE", "-12 560 OFFCURVE", "7 455 CURVE SMOOTH", "16 407 OFFCURVE", "18 368 OFFCURVE", "14 339 CURVE SMOOTH" ); } ); width = 791; }, { anchors = ( { name = DotAbove; position = "{-55, 861}"; }, { name = Stroke; position = "{-41, 577}"; }, { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-114, 861}"; }, { name = TwoDotsBelow; position = "{81, 248}"; }, { name = VAbove; position = "{-55, 812}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-8 601 OFFCURVE", "-2 557 OFFCURVE", "10 488 CURVE SMOOTH", "22 419 OFFCURVE", "25 367 OFFCURVE", "21 335 CURVE SMOOTH", "15 293 OFFCURVE", "8 271 OFFCURVE", "-2 268 CURVE", "-9 266 OFFCURVE", "-15 274 OFFCURVE", "-18 293 CURVE SMOOTH", "-18 295 OFFCURVE", "-20 301 OFFCURVE", "-21 312 CURVE SMOOTH", "-22 323 OFFCURVE", "-31 364 OFFCURVE", "-46 435 CURVE SMOOTH", "-61 506 OFFCURVE", "-74 570 OFFCURVE", "-83 625 CURVE", "-98 680 LINE SMOOTH", "-101 690 OFFCURVE", "-101 700 OFFCURVE", "-98 707 CURVE SMOOTH", "-94 719 OFFCURVE", "-89 734 OFFCURVE", "-82 752 CURVE SMOOTH", "-70 787 OFFCURVE", "-53 785 OFFCURVE", "-34 748 CURVE SMOOTH", "-21 724 OFFCURVE", "-7 704 OFFCURVE", "9 688 CURVE SMOOTH", "20 676 OFFCURVE", "19 662 OFFCURVE", "6 646 CURVE SMOOTH", "-11 619 LINE" ); } ); width = 791; } ); }, { glyphname = aKaf.init.YaaBari; layers = ( { anchors = ( { name = Dash; position = "{30, 1003}"; }, { name = DotAbove; position = "{-234, 907}"; }, { name = DotBelow; position = "{81, 248}"; }, { name = RingBelow; position = "{21, 881}"; }, { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-288, 907}"; }, { name = TwoDotsBelow; position = "{81, 248}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "323 1057 OFFCURVE", "328 1052 OFFCURVE", "326 1037 CURVE SMOOTH", "318 967 LINE SMOOTH", "317 960 OFFCURVE", "313 956 OFFCURVE", "304 953 CURVE SMOOTH", "69 867 OFFCURVE", "-109 785 OFFCURVE", "-230 709 CURVE SMOOTH", "-236 705 OFFCURVE", "-236 701 OFFCURVE", "-229 696 CURVE SMOOTH", "-170 653 OFFCURVE", "-127 619 OFFCURVE", "-100 594 CURVE SMOOTH", "-12 512 OFFCURVE", "26 425 OFFCURVE", "14 333 CURVE SMOOTH", "10 302 OFFCURVE", "4 287 OFFCURVE", "-3 286 CURVE SMOOTH", "-9 285 OFFCURVE", "-12 297 OFFCURVE", "-14 321 CURVE SMOOTH", "-14 322 LINE SMOOTH", "-21 407 OFFCURVE", "-79 484 OFFCURVE", "-188 554 CURVE SMOOTH", "-192 556 OFFCURVE", "-194 556 OFFCURVE", "-195 553 CURVE SMOOTH", "-212 515 LINE SMOOTH", "-213 512 OFFCURVE", "-216 512 OFFCURVE", "-219 514 CURVE SMOOTH", "-243 530 OFFCURVE", "-261 543 OFFCURVE", "-273 554 CURVE SMOOTH", "-285 565 OFFCURVE", "-294 576 OFFCURVE", "-299 589 CURVE SMOOTH", "-308 612 OFFCURVE", "-305 643 OFFCURVE", "-293 683 CURVE SMOOTH", "-281 723 OFFCURVE", "-267 750 OFFCURVE", "-253 762 CURVE SMOOTH", "-154 846 OFFCURVE", "33 943 OFFCURVE", "310 1052 CURVE SMOOTH" ); } ); width = 791; }, { anchors = ( { name = Dash; position = "{30, 1003}"; }, { name = DotAbove; position = "{-234, 907}"; }, { name = DotBelow; position = "{81, 248}"; }, { name = RingBelow; position = "{21, 881}"; }, { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; }, { name = TwoDotsAbove; position = "{-288, 907}"; }, { name = TwoDotsBelow; position = "{81, 248}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "310 1067 OFFCURVE", "315 1068 OFFCURVE", "320 1068 CURVE SMOOTH", "336 1067 OFFCURVE", "343 1056 OFFCURVE", "341 1035 CURVE SMOOTH", "333 966 LINE SMOOTH", "332 953 OFFCURVE", "324 944 OFFCURVE", "309 939 CURVE SMOOTH", "64 850 OFFCURVE", "-113 771 OFFCURVE", "-223 703 CURVE", "-180 678 OFFCURVE", "-137 645 OFFCURVE", "-95 605 CURVE SMOOTH", "-6 521 OFFCURVE", "33 430 OFFCURVE", "21 332 CURVE SMOOTH", "16 296 OFFCURVE", "9 275 OFFCURVE", "-1 271 CURVE SMOOTH", "-13 266 OFFCURVE", "-19 283 OFFCURVE", "-19 321 CURVE SMOOTH", "-19 390 OFFCURVE", "-76 462 OFFCURVE", "-187 536 CURVE", "-199 509 LINE SMOOTH", "-203 500 OFFCURVE", "-210 498 OFFCURVE", "-220 500 CURVE SMOOTH", "-223 501 OFFCURVE", "-232 505 OFFCURVE", "-245 513 CURVE SMOOTH", "-278 538 OFFCURVE", "-299 562 OFFCURVE", "-308 586 CURVE SMOOTH", "-318 611 OFFCURVE", "-315 645 OFFCURVE", "-302 688 CURVE SMOOTH", "-289 731 OFFCURVE", "-274 759 OFFCURVE", "-258 773 CURVE SMOOTH", "-134 877 OFFCURVE", "53 974 OFFCURVE", "304 1065 CURVE SMOOTH" ); } ); width = 791; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kaf-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "gafRing-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 21, 881}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 21, 881}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "gueh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 81, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 81, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "gafTwodotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kafRing-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 21, 881}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 21, 881}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kafDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -234, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -234, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "ng-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kafThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "gaf-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "keheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "gafThreedots-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -268, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -268, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kehehThreedotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -233, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "kehehDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -234, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -234, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "ngoeh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -268, 838}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{63, 1074}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aKaf.init.YaaBari; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 77, 968}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -268, 838}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 36, -470}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 36, -470}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "beheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 105, -315}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 105, -315}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-116, 988}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, -145, 573}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-116, 988}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, -145, 573}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonRing-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = ring.below; transform = "{1, 0, 0, 1, -21, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = ring.below; transform = "{1, 0, 0, 1, -21, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -222}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -222}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behVabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonTahabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-189, 1188}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -169, 871}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-189, 1188}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -169, 871}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehVabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-145, 988}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, -145, 573}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-145, 988}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, -145, 573}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonThreedotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 93, -320}"; }, { name = aBaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 93, -320}"; }, { name = aBaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehHamzaabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 427}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 427}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behDotless-ar.init.YaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehKashmiri-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 27, -105}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 27, -105}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yeh-ar.init.YaaBari"; layers = ( { anchors = ( { name = DigitAbove; position = "{-145, 744}"; }, { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = DigitAbove; position = "{-145, 744}"; }, { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "rnoon-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-165, 964}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -145, 646}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-165, 964}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -145, 646}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "teheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-174, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-174, 969}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behVinvertedbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 17, 208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 17, 208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "tehThreedotsdown-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 944}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 944}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "peh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 93, -320}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 93, -320}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "beeh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 36, -197}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 36, -197}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "beh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 36, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TaaAbove; position = "{-145, 646}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 36, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "tteheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-165, 915}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-165, 915}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behThreedotsupabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-203, 948}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 36, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-203, 948}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 36, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noon-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-155, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-155, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behThreedotsupbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "teh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-155, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-155, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "highhamzaYeh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-72, 427}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, -10, 300}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-72, 427}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, -10, 300}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsiVinverted-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, -145, 280}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "theh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-203, 948}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-203, 948}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "tteh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-165, 964}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -145, 646}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-165, 964}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, -145, 646}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonDotbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 36, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 36, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonVabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -169, 407}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -169, 407}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "alefMaksura-ar.init.YaaBari"; layers = ( { anchors = ( { name = HamzaBelow; position = "{36, -128}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = HamzaBelow; position = "{36, -128}"; }, { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "tehRing-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-155, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = ring.below; transform = "{1, 0, 0, 1, -21, 269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-155, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = ring.below; transform = "{1, 0, 0, 1, -21, 269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 93, -320}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 93, -320}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "e-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 36, -197}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 36, -197}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonghunna-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsi-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "noonTwodotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-169, 822}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehbarreeThreeabove-ar.fina.PostAscender"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAscender; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 368; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAscender; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 368; } ); }, { glyphname = "yehbarreeTwoabove-ar.fina.PostAscender"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAscender; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 368; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAscender; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 368; } ); }, { glyphname = "yehbarree-ar.fina.PostAscender"; layers = ( { anchors = ( { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAscender; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 368; }, { anchors = ( { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAscender; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 368; } ); }, { glyphname = "lamVabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -55, 348}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, -55, 348}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "lamThreedotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-118, 1064}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -60, 792}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-118, 1064}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -60, 792}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "lam-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "lamThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "lamDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-80, 939}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -55, 792}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{-80, 939}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -55, 792}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "lamBar-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, -41, 555}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 847}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aLam.init.YaaBari; }, { name = "stroke-ar"; transform = "{1, 0, 0, 1, -41, 555}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "qafDotless-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "fehThreedotsupbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "fehTwodotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "qaf-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "feh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "qafThreedotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "fehDotless-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "fehDotmovedbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 120, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 120, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "fehDotbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 120, 179}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 120, 179}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "veh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "fehThreedotsbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 137, 57}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "peheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "qafDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aFaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, -156, 694}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = aYaaBari.fina.PostAyn; layers = ( { anchors = ( { name = DigitAbove; position = "{66, 377}"; }, { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "105 142 OFFCURVE", "117 152 OFFCURVE", "129 151 CURVE SMOOTH", "131 151 OFFCURVE", "133 149 OFFCURVE", "135 148 CURVE SMOOTH", "143 142 OFFCURVE", "146 135 OFFCURVE", "141 126 CURVE SMOOTH", "139 122 OFFCURVE", "136 119 OFFCURVE", "132 116 CURVE SMOOTH", "125 109 OFFCURVE", "123 103 OFFCURVE", "128 96 CURVE", "139 81 OFFCURVE", "159 72 OFFCURVE", "188 69 CURVE SMOOTH", "239 63 OFFCURVE", "369 65 OFFCURVE", "580 74 CURVE SMOOTH", "791 83 OFFCURVE", "957 87 OFFCURVE", "1076 87 CURVE SMOOTH", "1095 87 OFFCURVE", "1100 80 OFFCURVE", "1092 65 CURVE SMOOTH", "1070 24 LINE SMOOTH", "1061 8 OFFCURVE", "1052 0 OFFCURVE", "1040 0 CURVE SMOOTH", "927 0 OFFCURVE", "779 -3 OFFCURVE", "599 -11 CURVE SMOOTH", "419 -19 OFFCURVE", "289 -23 OFFCURVE", "211 -22 CURVE SMOOTH", "133 -21 OFFCURVE", "86 -8 OFFCURVE", "70 17 CURVE SMOOTH", "63 28 OFFCURVE", "62 41 OFFCURVE", "65 53 CURVE SMOOTH", "71 76 OFFCURVE", "80 98 OFFCURVE", "93 119 CURVE" ); } ); width = 127; }, { anchors = ( { name = DigitAbove; position = "{66, 377}"; }, { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "105 154 OFFCURVE", "119 168 OFFCURVE", "131 166 CURVE", "145 163 OFFCURVE", "154 155 OFFCURVE", "157 142 CURVE", "158 132 OFFCURVE", "152 121 OFFCURVE", "138 108 CURVE SMOOTH", "135 106 OFFCURVE", "133 104 OFFCURVE", "133 104 CURVE", "141 94 OFFCURVE", "160 87 OFFCURVE", "189 84 CURVE SMOOTH", "239 78 OFFCURVE", "371 80 OFFCURVE", "581 89 CURVE SMOOTH", "800 98 OFFCURVE", "965 103 OFFCURVE", "1076 102 CURVE SMOOTH", "1111 102 OFFCURVE", "1120 87 OFFCURVE", "1104 58 CURVE SMOOTH", "1083 18 LINE SMOOTH", "1072 -3 OFFCURVE", "1058 -15 OFFCURVE", "1040 -15 CURVE SMOOTH", "927 -15 OFFCURVE", "779 -18 OFFCURVE", "599 -26 CURVE SMOOTH", "419 -34 OFFCURVE", "289 -38 OFFCURVE", "210 -37 CURVE SMOOTH", "133 -36 OFFCURVE", "85 -20 OFFCURVE", "67 10 CURVE SMOOTH", "53 33 OFFCURVE", "61 72 OFFCURVE", "90 126 CURVE SMOOTH" ); } ); width = 127; } ); }, { glyphname = aHaa.init.YaaBari; layers = ( { anchors = ( { name = DigitBelow; position = "{545, -167}"; }, { name = DotAbove; position = "{545, 532}"; }, { name = DotBelow; position = "{545, -167}"; }, { name = HamzaAbove; position = "{545, 532}"; }, { name = HamzaBelow; position = "{545, -108}"; }, { name = TaaAbove; position = "{545, 532}"; }, { name = TaaBelow; position = "{545, 0}"; }, { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; }, { name = TwoDotsAbove; position = "{492, 532}"; }, { name = TwoDotsBelow; position = "{492, -108}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "315 313 OFFCURVE", "315 315 OFFCURVE", "310 318 CURVE SMOOTH", "279 338 OFFCURVE", "249 353 OFFCURVE", "219 362 CURVE SMOOTH", "189 371 OFFCURVE", "151 367 OFFCURVE", "105 350 CURVE SMOOTH", "101 348 OFFCURVE", "98 349 OFFCURVE", "97 352 CURVE SMOOTH", "96 355 OFFCURVE", "96 358 OFFCURVE", "98 363 CURVE SMOOTH", "117 410 OFFCURVE", "148 440 OFFCURVE", "192 450 CURVE SMOOTH", "223 457 OFFCURVE", "265 443 OFFCURVE", "318 408 CURVE", "388 362 OFFCURVE", "482 334 OFFCURVE", "600 324 CURVE SMOOTH", "613 323 OFFCURVE", "617 318 OFFCURVE", "612 310 CURVE SMOOTH", "576 250 LINE SMOOTH", "574 247 OFFCURVE", "571 247 OFFCURVE", "566 248 CURVE SMOOTH", "467 271 OFFCURVE", "369 272 OFFCURVE", "271 253 CURVE", "181 229 OFFCURVE", "107 197 OFFCURVE", "50 156 CURVE SMOOTH", "30 142 OFFCURVE", "14 128 OFFCURVE", "1 113 CURVE", "-9 104 OFFCURVE", "-17 100 OFFCURVE", "-22 102 CURVE SMOOTH", "-24 103 OFFCURVE", "-25 103 OFFCURVE", "-27 104 CURVE SMOOTH", "-34 111 OFFCURVE", "-32 122 OFFCURVE", "-22 137 CURVE", "41 225 OFFCURVE", "143 282 OFFCURVE", "284 309 CURVE SMOOTH", "294 311 OFFCURVE", "303 311 OFFCURVE", "313 313 CURVE SMOOTH" ); } ); width = 1032; }, { anchors = ( { name = DigitBelow; position = "{545, -167}"; }, { name = DotAbove; position = "{545, 532}"; }, { name = DotBelow; position = "{545, -167}"; }, { name = HamzaAbove; position = "{545, 532}"; }, { name = HamzaBelow; position = "{545, -108}"; }, { name = TaaAbove; position = "{545, 532}"; }, { name = TaaBelow; position = "{545, 0}"; }, { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; }, { name = TwoDotsAbove; position = "{492, 532}"; }, { name = TwoDotsBelow; position = "{492, -108}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "276 332 OFFCURVE", "251 343 OFFCURVE", "216 354 CURVE SMOOTH", "182 364 OFFCURVE", "147 361 OFFCURVE", "111 343 CURVE SMOOTH", "103 339 OFFCURVE", "97 339 OFFCURVE", "92 344 CURVE SMOOTH", "87 349 OFFCURVE", "86 358 OFFCURVE", "91 369 CURVE SMOOTH", "112 422 OFFCURVE", "144 453 OFFCURVE", "188 464 CURVE SMOOTH", "224 472 OFFCURVE", "273 456 OFFCURVE", "335 415 CURVE SMOOTH", "397 374 OFFCURVE", "486 348 OFFCURVE", "601 338 CURVE SMOOTH", "623 335 OFFCURVE", "631 326 OFFCURVE", "627 309 CURVE SMOOTH", "626 306 OFFCURVE", "626 303 OFFCURVE", "625 302 CURVE SMOOTH", "589 242 LINE SMOOTH", "584 234 OFFCURVE", "575 230 OFFCURVE", "563 233 CURVE SMOOTH", "458 257 OFFCURVE", "362 259 OFFCURVE", "274 239 CURVE SMOOTH", "156 212 OFFCURVE", "65 167 OFFCURVE", "1 103 CURVE SMOOTH", "-14 88 OFFCURVE", "-26 85 OFFCURVE", "-36 93 CURVE SMOOTH", "-47 102 OFFCURVE", "-43 119 OFFCURVE", "-24 145 CURVE SMOOTH", "40 235 OFFCURVE", "145 294 OFFCURVE", "290 322 CURVE" ); } ); width = 1032; } ); }, { glyphname = aAyn.init.YaaBari; layers = ( { anchors = ( { name = DotAbove; position = "{228, 715}"; }, { name = DotBelow; position = "{410, 132}"; }, { name = HamzaAbove; position = "{228, 715}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; }, { name = TwoDotsAbove; position = "{173, 715}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "295 580 OFFCURVE", "319 573 OFFCURVE", "351 558 CURVE SMOOTH", "383 543 OFFCURVE", "406 526 OFFCURVE", "422 509 CURVE SMOOTH", "426 505 OFFCURVE", "427 501 OFFCURVE", "425 498 CURVE SMOOTH", "423 495 OFFCURVE", "420 495 OFFCURVE", "415 496 CURVE SMOOTH", "311 523 OFFCURVE", "225 503 OFFCURVE", "159 437 CURVE SMOOTH", "157 434 OFFCURVE", "157 430 OFFCURVE", "161 424 CURVE SMOOTH", "185 386 OFFCURVE", "229 363 OFFCURVE", "292 352 CURVE SMOOTH", "320 347 OFFCURVE", "374 365 OFFCURVE", "455 407 CURVE SMOOTH", "495 428 OFFCURVE", "510 430 OFFCURVE", "503 411 CURVE", "479 354 LINE SMOOTH", "475 344 OFFCURVE", "471 338 OFFCURVE", "467 336 CURVE SMOOTH", "463 334 OFFCURVE", "445 327 OFFCURVE", "413 315 CURVE SMOOTH", "198 233 OFFCURVE", "62 167 OFFCURVE", "5 116 CURVE SMOOTH", "-20 93 OFFCURVE", "-35 83 OFFCURVE", "-40 86 CURVE SMOOTH", "-45 89 OFFCURVE", "-46 95 OFFCURVE", "-42 103 CURVE SMOOTH", "-9 170 OFFCURVE", "65 233 OFFCURVE", "183 290 CURVE", "154 304 OFFCURVE", "132 321 OFFCURVE", "115 340 CURVE SMOOTH", "98 359 OFFCURVE", "92 377 OFFCURVE", "95 395 CURVE", "103 431 OFFCURVE", "128 469 OFFCURVE", "170 510 CURVE SMOOTH", "212 551 OFFCURVE", "247 574 OFFCURVE", "277 578 CURVE SMOOTH" ); } ); width = 1032; }, { anchors = ( { name = DotAbove; position = "{228, 715}"; }, { name = DotBelow; position = "{410, 132}"; }, { name = HamzaAbove; position = "{228, 715}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; }, { name = TwoDotsAbove; position = "{173, 715}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "296 595 OFFCURVE", "322 588 OFFCURVE", "354 571 CURVE SMOOTH", "389 553 OFFCURVE", "413 537 OFFCURVE", "428 519 CURVE SMOOTH", "436 510 OFFCURVE", "439 500 OFFCURVE", "435 493 CURVE SMOOTH", "431 486 OFFCURVE", "423 483 OFFCURVE", "411 486 CURVE SMOOTH", "313 511 OFFCURVE", "231 493 OFFCURVE", "165 431 CURVE", "186 399 OFFCURVE", "228 377 OFFCURVE", "294 366 CURVE SMOOTH", "319 362 OFFCURVE", "370 380 OFFCURVE", "448 420 CURVE SMOOTH", "470 432 OFFCURVE", "485 438 OFFCURVE", "492 438 CURVE SMOOTH", "499 438 OFFCURVE", "503 439 OFFCURVE", "507 437 CURVE SMOOTH", "520 432 OFFCURVE", "524 421 OFFCURVE", "517 405 CURVE SMOOTH", "493 348 LINE SMOOTH", "487 335 OFFCURVE", "481 327 OFFCURVE", "475 324 CURVE SMOOTH", "469 321 OFFCURVE", "449 314 OFFCURVE", "418 302 CURVE SMOOTH", "196 222 OFFCURVE", "59 156 OFFCURVE", "5 105 CURVE SMOOTH", "-22 79 OFFCURVE", "-40 70 OFFCURVE", "-48 76 CURVE SMOOTH", "-55 81 OFFCURVE", "-54 91 OFFCURVE", "-46 109 CURVE SMOOTH", "-12 176 OFFCURVE", "54 238 OFFCURVE", "152 291 CURVE", "131 304 OFFCURVE", "115 318 OFFCURVE", "102 336 CURVE SMOOTH", "88 356 OFFCURVE", "83 377 OFFCURVE", "88 398 CURVE SMOOTH", "96 437 OFFCURVE", "122 478 OFFCURVE", "164 521 CURVE SMOOTH", "206 564 OFFCURVE", "242 587 OFFCURVE", "275 592 CURVE SMOOTH" ); } ); width = 1032; } ); }, { glyphname = aMem.init.YaaBari; layers = ( { anchors = ( { name = DotAbove; position = "{220, 542}"; }, { name = DotBelow; position = "{303, 161}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "130 268 OFFCURVE", "161 283 OFFCURVE", "197 297 CURVE", "178 321 LINE SMOOTH", "172 330 OFFCURVE", "171 340 OFFCURVE", "175 349 CURVE SMOOTH", "195 389 OFFCURVE", "210 414 OFFCURVE", "220 425 CURVE SMOOTH", "230 436 OFFCURVE", "239 439 OFFCURVE", "247 435 CURVE SMOOTH", "277 418 OFFCURVE", "311 395 OFFCURVE", "348 368 CURVE SMOOTH", "360 358 OFFCURVE", "348 328 OFFCURVE", "311 277 CURVE SMOOTH", "303 266 OFFCURVE", "288 258 OFFCURVE", "267 252 CURVE SMOOTH", "216 238 OFFCURVE", "164 217 OFFCURVE", "113 189 CURVE SMOOTH", "62 161 OFFCURVE", "27 138 OFFCURVE", "6 117 CURVE SMOOTH", "-1 110 OFFCURVE", "-7 104 OFFCURVE", "-12 102 CURVE SMOOTH", "-17 100 OFFCURVE", "-22 101 OFFCURVE", "-28 105 CURVE SMOOTH", "-34 109 OFFCURVE", "-33 117 OFFCURVE", "-26 130 CURVE SMOOTH", "9 182 OFFCURVE", "52 223 OFFCURVE", "104 253 CURVE SMOOTH" ); } ); width = 1032; }, { anchors = ( { name = DotAbove; position = "{220, 542}"; }, { name = DotBelow; position = "{303, 161}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "119 279 OFFCURVE", "145 291 OFFCURVE", "174 303 CURVE", "166 313 LINE", "157 328 OFFCURVE", "155 341 OFFCURVE", "162 355 CURVE SMOOTH", "182 396 OFFCURVE", "199 424 OFFCURVE", "212 438 CURVE SMOOTH", "225 452 OFFCURVE", "239 454 OFFCURVE", "254 447 CURVE", "285 430 OFFCURVE", "319 408 OFFCURVE", "357 380 CURVE", "374 367 OFFCURVE", "371 343 OFFCURVE", "350 309 CURVE SMOOTH", "344 299 OFFCURVE", "335 286 OFFCURVE", "324 271 CURVE SMOOTH", "313 256 OFFCURVE", "294 245 OFFCURVE", "270 238 CURVE SMOOTH", "220 224 OFFCURVE", "170 204 OFFCURVE", "120 177 CURVE SMOOTH", "70 150 OFFCURVE", "36 125 OFFCURVE", "16 106 CURVE SMOOTH", "8 98 OFFCURVE", "0 92 OFFCURVE", "-8 88 CURVE SMOOTH", "-16 84 OFFCURVE", "-26 86 OFFCURVE", "-38 95 CURVE SMOOTH", "-50 104 OFFCURVE", "-49 118 OFFCURVE", "-38 138 CURVE", "-2 192 OFFCURVE", "42 235 OFFCURVE", "96 266 CURVE SMOOTH" ); } ); width = 1032; } ); }, { glyphname = "yehbarreeThreeabove-ar.fina.PostAyn"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAyn; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 127; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAyn; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 127; } ); }, { glyphname = "yehbarreeTwoabove-ar.fina.PostAyn"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAyn; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 127; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAyn; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 66, 207}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 127; } ); }, { glyphname = "yehbarree-ar.fina.PostAyn"; layers = ( { anchors = ( { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAyn; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 127; }, { anchors = ( { name = HamzaAbove; position = "{115, 377}"; }, { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aYaaBari.fina.PostAyn; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 127; } ); }, { glyphname = "meemDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 220, 474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 220, 474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "meem-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "meemDotbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 303, 93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aMem.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 303, 93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "khah-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 545, 463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 545, 463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hah-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahHamzaabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, 545, 68}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, 545, 68}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "tcheheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 561, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 561, -293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahThreedotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 546, 463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 546, 463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "jeem-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 545, -234}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 545, -234}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahTwodotsverticalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 545, 463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 545, 463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahTwodotshorizontalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 546, 463}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 546, 463}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "dyeh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 545, -235}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 545, -235}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{589, -539}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 565, -367}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 580, -495}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{589, -539}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 565, -367}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 580, -495}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahTahbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 565, -367}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 565, -367}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "nyeh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 546, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 546, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "tchehDotabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 545, 463}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 545, 463}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahFourbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 545, -508}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 545, -508}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 546, -176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 546, -176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hahTahabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{526, 849}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 545, 532}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{526, 849}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 545, 532}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "tcheh-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{313, 801}"; }, { name = TashkilBelow; position = "{445, -327}"; } ); components = ( { name = aHaa.init.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 548, -298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ghainDotbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 228, 647}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 410, 63}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 228, 647}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 410, 63}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ghain-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 228, 647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 228, 647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ainThreedotsdownabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{203, 916}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 227, 647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{203, 916}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 227, 647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ainTwodotshorizontalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ainTwodotsverticalabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{208, 886}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 228, 647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{208, 886}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 228, 647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ainThreedots-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{169, 919}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 647}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{169, 919}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 647}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "ain-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{410, -327}"; } ); components = ( { name = aAyn.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = aHeh.init.YaaBari; layers = ( { anchors = ( { name = HamzaAbove; position = "{223, 695}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "145 544 OFFCURVE", "168 574 OFFCURVE", "196 573 CURVE SMOOTH", "224 572 OFFCURVE", "269 541 OFFCURVE", "330 483 CURVE SMOOTH", "391 425 OFFCURVE", "425 378 OFFCURVE", "431 343 CURVE SMOOTH", "438 299 OFFCURVE", "427 261 OFFCURVE", "399 227 CURVE SMOOTH", "385 210 OFFCURVE", "368 203 OFFCURVE", "347 205 CURVE SMOOTH", "296 210 OFFCURVE", "243 223 OFFCURVE", "189 244 CURVE", "97 187 OFFCURVE", "34 143 OFFCURVE", "2 114 CURVE SMOOTH", "-8 104 OFFCURVE", "-18 102 OFFCURVE", "-26 109 CURVE SMOOTH", "-32 114 OFFCURVE", "-29 126 OFFCURVE", "-17 145 CURVE SMOOTH", "7 182 OFFCURVE", "55 223 OFFCURVE", "128 267 CURVE", "96 284 OFFCURVE", "86 309 OFFCURVE", "97 342 CURVE SMOOTH", "111 385 OFFCURVE", "136 422 OFFCURVE", "171 453 CURVE", "164 464 OFFCURVE", "153 470 OFFCURVE", "138 472 CURVE SMOOTH", "130 473 OFFCURVE", "127 477 OFFCURVE", "129 484 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "226 338 OFFCURVE", "235 347 OFFCURVE", "235 354 CURVE", "232 389 OFFCURVE", "222 408 OFFCURVE", "204 412 CURVE SMOOTH", "177 418 OFFCURVE", "152 406 OFFCURVE", "129 377 CURVE SMOOTH", "122 369 OFFCURVE", "125 361 OFFCURVE", "137 353 CURVE SMOOTH", "149 345 OFFCURVE", "172 336 OFFCURVE", "207 326 CURVE" ); }, { closed = 1; nodes = ( "275 401 OFFCURVE", "274 401 OFFCURVE", "274 398 CURVE SMOOTH", "274 379 OFFCURVE", "264 351 OFFCURVE", "243 314 CURVE", "318 290 OFFCURVE", "361 283 OFFCURVE", "376 291 CURVE SMOOTH", "381 294 OFFCURVE", "382 296 OFFCURVE", "381 299 CURVE SMOOTH", "371 324 OFFCURVE", "336 357 OFFCURVE", "277 399 CURVE SMOOTH" ); } ); width = 1032; }, { anchors = ( { name = HamzaAbove; position = "{223, 695}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "132 554 OFFCURVE", "158 587 OFFCURVE", "192 587 CURVE SMOOTH", "226 587 OFFCURVE", "272 556 OFFCURVE", "334 495 CURVE SMOOTH", "396 434 OFFCURVE", "430 384 OFFCURVE", "437 346 CURVE", "445 298 OFFCURVE", "433 255 OFFCURVE", "402 218 CURVE", "384 197 OFFCURVE", "362 188 OFFCURVE", "337 190 CURVE", "294 195 OFFCURVE", "245 208 OFFCURVE", "190 228 CURVE", "102 173 OFFCURVE", "43 132 OFFCURVE", "12 104 CURVE", "-4 89 OFFCURVE", "-19 85 OFFCURVE", "-33 96 CURVE SMOOTH", "-47 107 OFFCURVE", "-46 125 OFFCURVE", "-29 152 CURVE", "2 194 OFFCURVE", "49 233 OFFCURVE", "111 268 CURVE", "89 289 OFFCURVE", "83 314 OFFCURVE", "93 346 CURVE", "104 387 OFFCURVE", "125 422 OFFCURVE", "155 453 CURVE", "151 455 OFFCURVE", "144 457 OFFCURVE", "135 458 CURVE SMOOTH", "126 459 OFFCURVE", "119 463 OFFCURVE", "117 470 CURVE SMOOTH", "115 477 OFFCURVE", "114 483 OFFCURVE", "115 488 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "139 361 OFFCURVE", "164 351 OFFCURVE", "204 337 CURVE", "223 343 OFFCURVE", "231 348 OFFCURVE", "230 355 CURVE", "227 384 OFFCURVE", "218 400 OFFCURVE", "201 402 CURVE SMOOTH", "177 406 OFFCURVE", "153 394 OFFCURVE", "131 368 CURVE" ); }, { closed = 1; nodes = ( "274 360 OFFCURVE", "265 341 OFFCURVE", "254 323 CURVE", "309 304 OFFCURVE", "351 293 OFFCURVE", "378 292 CURVE", "369 312 OFFCURVE", "336 341 OFFCURVE", "278 380 CURVE" ); } ); width = 1032; } ); }, { glyphname = "heh-ar.init.YaaBari"; layers = ( { anchors = ( { name = HamzaAbove; position = "{223, 695}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHeh.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = HamzaAbove; position = "{223, 695}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHeh.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "hehgoal-ar.init.YaaBari"; layers = ( { anchors = ( { name = HamzaAbove; position = "{223, 695}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHeh.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = HamzaAbove; position = "{223, 695}"; }, { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHeh.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = aTaa.init.YaaBaree; layers = ( { anchors = ( { name = DotAbove; position = "{383, 615}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{327, 615}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "266 379 OFFCURVE", "201 329 OFFCURVE", "127 240 CURVE", "215 274 OFFCURVE", "307 299 OFFCURVE", "406 318 CURVE SMOOTH", "423 321 OFFCURVE", "428 330 OFFCURVE", "422 342 CURVE SMOOTH", "401 385 OFFCURVE", "368 401 OFFCURVE", "322 391 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "-33 112 OFFCURVE", "-33 123 OFFCURVE", "-22 140 CURVE", "-1 171 OFFCURVE", "33 202 OFFCURVE", "81 234 CURVE", "99 261 OFFCURVE", "117 286 OFFCURVE", "135 309 CURVE", "137 331 OFFCURVE", "137 359 OFFCURVE", "137 392 CURVE SMOOTH", "137 423 OFFCURVE", "134 480 OFFCURVE", "129 562 CURVE SMOOTH", "123 659 OFFCURVE", "118 718 OFFCURVE", "114 741 CURVE SMOOTH", "110 764 OFFCURVE", "108 777 OFFCURVE", "109 781 CURVE SMOOTH", "117 803 OFFCURVE", "126 820 OFFCURVE", "135 835 CURVE SMOOTH", "138 839 OFFCURVE", "140 841 OFFCURVE", "143 840 CURVE SMOOTH", "146 839 OFFCURVE", "148 836 OFFCURVE", "150 832 CURVE SMOOTH", "167 794 OFFCURVE", "181 767 OFFCURVE", "193 754 CURVE SMOOTH", "199 748 OFFCURVE", "198 741 OFFCURVE", "192 734 CURVE SMOOTH", "172 709 LINE SMOOTH", "168 704 OFFCURVE", "166 698 OFFCURVE", "167 688 CURVE SMOOTH", "176 555 OFFCURVE", "181 481 OFFCURVE", "181 467 CURVE SMOOTH", "181 425 OFFCURVE", "179 388 OFFCURVE", "176 357 CURVE", "235 423 OFFCURVE", "292 466 OFFCURVE", "347 485 CURVE SMOOTH", "372 494 OFFCURVE", "391 498 OFFCURVE", "406 495 CURVE SMOOTH", "441 487 OFFCURVE", "465 467 OFFCURVE", "479 435 CURVE SMOOTH", "484 424 OFFCURVE", "486 411 OFFCURVE", "484 398 CURVE SMOOTH", "480 366 OFFCURVE", "468 329 OFFCURVE", "447 287 CURVE SMOOTH", "431 253 OFFCURVE", "401 232 OFFCURVE", "356 222 CURVE SMOOTH", "176 181 OFFCURVE", "57 143 OFFCURVE", "-2 109 CURVE SMOOTH", "-12 103 OFFCURVE", "-19 103 OFFCURVE", "-24 106 CURVE SMOOTH" ); } ); width = 1032; }, { anchors = ( { name = DotAbove; position = "{383, 615}"; }, { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; }, { name = TwoDotsAbove; position = "{327, 615}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "289 377 OFFCURVE", "221 335 OFFCURVE", "142 250 CURVE", "230 288 OFFCURVE", "321 315 OFFCURVE", "413 328 CURVE SMOOTH", "415 329 OFFCURVE", "417 330 OFFCURVE", "419 334 CURVE SMOOTH", "419 335 LINE SMOOTH", "404 365 OFFCURVE", "379 380 OFFCURVE", "345 379 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "-44 105 OFFCURVE", "-41 123 OFFCURVE", "-24 148 CURVE SMOOTH", "-1 182 OFFCURVE", "32 212 OFFCURVE", "75 240 CURVE", "94 268 OFFCURVE", "111 292 OFFCURVE", "128 310 CURVE", "131 357 OFFCURVE", "129 434 OFFCURVE", "121 542 CURVE SMOOTH", "113 653 OFFCURVE", "106 720 OFFCURVE", "101 741 CURVE SMOOTH", "95 767 OFFCURVE", "93 782 OFFCURVE", "95 786 CURVE SMOOTH", "105 814 OFFCURVE", "115 832 OFFCURVE", "122 842 CURVE SMOOTH", "129 852 OFFCURVE", "138 856 OFFCURVE", "146 854 CURVE SMOOTH", "154 852 OFFCURVE", "160 845 OFFCURVE", "164 837 CURVE SMOOTH", "180 801 OFFCURVE", "192 779 OFFCURVE", "199 770 CURVE SMOOTH", "214 753 OFFCURVE", "215 738 OFFCURVE", "204 725 CURVE SMOOTH", "181 700 LINE SMOOTH", "180 698 OFFCURVE", "180 694 OFFCURVE", "180 688 CURVE SMOOTH", "189 555 OFFCURVE", "193 477 OFFCURVE", "192 454 CURVE SMOOTH", "191 431 OFFCURVE", "189 408 OFFCURVE", "188 387 CURVE", "256 452 OFFCURVE", "308 489 OFFCURVE", "342 499 CURVE SMOOTH", "374 508 OFFCURVE", "396 512 OFFCURVE", "409 509 CURVE SMOOTH", "450 500 OFFCURVE", "476 478 OFFCURVE", "489 443 CURVE SMOOTH", "502 407 OFFCURVE", "490 353 OFFCURVE", "453 281 CURVE SMOOTH", "432 241 OFFCURVE", "401 217 OFFCURVE", "359 208 CURVE SMOOTH", "190 172 OFFCURVE", "72 137 OFFCURVE", "5 104 CURVE SMOOTH", "-16 94 OFFCURVE", "-28 90 OFFCURVE", "-32 94 CURVE SMOOTH" ); } ); width = 1032; } ); }, { glyphname = "zah-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aTaa.init.YaaBaree; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 352, 586}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aTaa.init.YaaBaree; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 352, 586}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "tah-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aTaa.init.YaaBaree; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aTaa.init.YaaBaree; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "tahThreedots-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 820}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aTaa.init.YaaBaree; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 366, 537}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{342, 820}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aTaa.init.YaaBaree; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 366, 537}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = aHehKnotted.isol; layers = ( { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "380 142 OFFCURVE", "366 111 OFFCURVE", "342 83 CURVE", "379 76 OFFCURVE", "426 74 OFFCURVE", "484 75 CURVE SMOOTH", "492 75 OFFCURVE", "498 78 OFFCURVE", "501 84 CURVE SMOOTH", "504 90 OFFCURVE", "503 94 OFFCURVE", "500 98 CURVE SMOOTH", "480 122 OFFCURVE", "442 149 OFFCURVE", "385 177 CURVE" ); }, { closed = 1; nodes = ( "302 226 OFFCURVE", "288 218 OFFCURVE", "269 202 CURVE SMOOTH", "250 186 OFFCURVE", "236 166 OFFCURVE", "224 143 CURVE SMOOTH", "223 141 OFFCURVE", "223 138 OFFCURVE", "223 136 CURVE SMOOTH", "228 116 OFFCURVE", "248 102 OFFCURVE", "286 94 CURVE", "318 107 OFFCURVE", "337 120 OFFCURVE", "345 131 CURVE SMOOTH", "353 142 OFFCURVE", "352 161 OFFCURVE", "345 187 CURVE SMOOTH", "338 213 OFFCURVE", "327 226 OFFCURVE", "312 226 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "203 62 OFFCURVE", "202 65 OFFCURVE", "201 69 CURVE SMOOTH", "197 93 OFFCURVE", "199 121 OFFCURVE", "206 149 CURVE SMOOTH", "213 177 OFFCURVE", "232 209 OFFCURVE", "263 243 CURVE SMOOTH", "294 277 OFFCURVE", "321 300 OFFCURVE", "344 312 CURVE SMOOTH", "367 324 OFFCURVE", "384 308 OFFCURVE", "395 265 CURVE SMOOTH", "397 258 OFFCURVE", "402 253 OFFCURVE", "409 249 CURVE SMOOTH", "471 219 OFFCURVE", "514 191 OFFCURVE", "536 168 CURVE SMOOTH", "543 161 OFFCURVE", "546 148 OFFCURVE", "548 130 CURVE SMOOTH", "550 112 OFFCURVE", "549 92 OFFCURVE", "542 68 CURVE SMOOTH", "535 44 OFFCURVE", "525 26 OFFCURVE", "511 12 CURVE SMOOTH", "497 -3 OFFCURVE", "456 -8 OFFCURVE", "388 -5 CURVE SMOOTH", "339 -3 OFFCURVE", "298 5 OFFCURVE", "265 16 CURVE", "231 -5 OFFCURVE", "191 -20 OFFCURVE", "146 -30 CURVE", "132 -34 OFFCURVE", "121 -34 OFFCURVE", "114 -30 CURVE SMOOTH", "63 -5 LINE", "39 8 OFFCURVE", "45 19 OFFCURVE", "80 26 CURVE", "128 36 OFFCURVE", "169 47 OFFCURVE", "205 58 CURVE" ); } ); width = 608; }, { anchors = ( { name = TashkilAbove; position = "{342, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "390 133 OFFCURVE", "381 113 OFFCURVE", "368 94 CURVE", "400 90 OFFCURVE", "429 89 OFFCURVE", "452 89 CURVE SMOOTH", "475 89 OFFCURVE", "487 90 OFFCURVE", "488 90 CURVE", "471 110 OFFCURVE", "440 132 OFFCURVE", "396 155 CURVE" ); }, { closed = 1; nodes = ( "311 121 OFFCURVE", "327 131 OFFCURVE", "332 139 CURVE SMOOTH", "337 147 OFFCURVE", "337 161 OFFCURVE", "331 181 CURVE SMOOTH", "325 201 OFFCURVE", "320 211 OFFCURVE", "313 211 CURVE SMOOTH", "306 211 OFFCURVE", "294 204 OFFCURVE", "278 190 CURVE SMOOTH", "262 176 OFFCURVE", "248 158 OFFCURVE", "237 137 CURVE", "242 125 OFFCURVE", "258 117 OFFCURVE", "285 110 CURVE" ); }, { closed = 1; nodes = ( "183 94 OFFCURVE", "184 122 OFFCURVE", "192 153 CURVE SMOOTH", "200 184 OFFCURVE", "222 219 OFFCURVE", "258 259 CURVE SMOOTH", "294 299 OFFCURVE", "324 323 OFFCURVE", "350 330 CURVE SMOOTH", "377 337 OFFCURVE", "397 317 OFFCURVE", "409 269 CURVE", "410 266 OFFCURVE", "413 264 OFFCURVE", "416 262 CURVE SMOOTH", "480 231 OFFCURVE", "523 203 OFFCURVE", "546 178 CURVE", "555 168 OFFCURVE", "561 153 OFFCURVE", "563 133 CURVE SMOOTH", "565 113 OFFCURVE", "562 90 OFFCURVE", "555 64 CURVE SMOOTH", "548 38 OFFCURVE", "537 17 OFFCURVE", "520 0 CURVE SMOOTH", "503 -17 OFFCURVE", "459 -23 OFFCURVE", "387 -20 CURVE SMOOTH", "340 -18 OFFCURVE", "299 -10 OFFCURVE", "266 0 CURVE", "232 -20 OFFCURVE", "193 -35 OFFCURVE", "150 -45 CURVE SMOOTH", "132 -49 OFFCURVE", "118 -48 OFFCURVE", "108 -43 CURVE SMOOTH", "57 -18 LINE", "44 -11 OFFCURVE", "36 -3 OFFCURVE", "34 5 CURVE SMOOTH", "30 21 OFFCURVE", "41 32 OFFCURVE", "67 38 CURVE SMOOTH", "69 39 OFFCURVE", "83 41 OFFCURVE", "105 46 CURVE SMOOTH", "127 51 OFFCURVE", "155 57 OFFCURVE", "187 67 CURVE" ); } ); width = 608; } ); }, { glyphname = "hehDoachashmee-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi.LamHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi.LamHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); }, { glyphname = "hehVinvertedabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 197, -3}"; }, { name = aHeh.medi.LamHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 452; }, { anchors = ( { name = TashkilAbove; position = "{220, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 197, -3}"; }, { name = aHeh.medi.LamHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 452; } ); }, { glyphname = "hehDoachashmee-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aHehKnotted.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { anchors = ( { name = TashkilAbove; position = "{327, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = aHehKnotted.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "hehVinvertedabove-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 378, -3}"; }, { name = aHehKnotted.fina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 522; }, { anchors = ( { name = TashkilAbove; position = "{327, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); components = ( { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 378, -3}"; }, { name = aHehKnotted.fina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "hehDoachashmee-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "hehVinvertedabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 246, -3}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 390; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aHeh.medi; }, { name = "vinvertedabove-ar"; transform = "{1, 0, 0, 1, 246, -3}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = aHehKnotted.fina; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "183 3 OFFCURVE", "167 -1 OFFCURVE", "159 -2 CURVE SMOOTH", "142 -5 OFFCURVE", "129 -2 OFFCURVE", "119 5 CURVE SMOOTH", "63 46 LINE SMOOTH", "35 67 OFFCURVE", "38 79 OFFCURVE", "74 83 CURVE SMOOTH", "176 94 OFFCURVE", "234 104 OFFCURVE", "249 114 CURVE", "276 186 OFFCURVE", "315 252 OFFCURVE", "366 312 CURVE SMOOTH", "391 341 OFFCURVE", "408 354 OFFCURVE", "416 350 CURVE SMOOTH", "429 344 OFFCURVE", "437 331 OFFCURVE", "439 309 CURVE SMOOTH", "449 208 OFFCURVE", "414 127 OFFCURVE", "334 66 CURVE", "376 63 OFFCURVE", "439 70 OFFCURVE", "522 90 CURVE SMOOTH", "528 91 OFFCURVE", "532 88 OFFCURVE", "536 80 CURVE SMOOTH", "544 61 OFFCURVE", "544 40 OFFCURVE", "536 17 CURVE SMOOTH", "532 7 OFFCURVE", "527 1 OFFCURVE", "522 0 CURVE SMOOTH", "488 -7 OFFCURVE", "457 -11 OFFCURVE", "428 -9 CURVE", "450 -32 OFFCURVE", "459 -71 OFFCURVE", "455 -126 CURVE SMOOTH", "453 -150 OFFCURVE", "444 -174 OFFCURVE", "427 -196 CURVE SMOOTH", "410 -218 OFFCURVE", "390 -230 OFFCURVE", "367 -230 CURVE SMOOTH", "295 -231 OFFCURVE", "252 -163 OFFCURVE", "237 -27 CURVE", "208 -23 LINE", "208 11 LINE" ); }, { closed = 1; nodes = ( "362 234 OFFCURVE", "358 233 OFFCURVE", "354 231 CURVE SMOOTH", "313 208 OFFCURVE", "287 171 OFFCURVE", "274 121 CURVE", "337 146 OFFCURVE", "378 173 OFFCURVE", "398 201 CURVE SMOOTH", "402 206 OFFCURVE", "403 211 OFFCURVE", "400 216 CURVE SMOOTH", "393 228 OFFCURVE", "383 234 OFFCURVE", "368 234 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "290 -85 OFFCURVE", "311 -118 OFFCURVE", "342 -132 CURVE SMOOTH", "367 -143 OFFCURVE", "393 -141 OFFCURVE", "419 -125 CURVE SMOOTH", "426 -120 OFFCURVE", "428 -113 OFFCURVE", "423 -105 CURVE", "398 -69 OFFCURVE", "350 -45 OFFCURVE", "278 -32 CURVE" ); } ); width = 522; }, { anchors = ( { name = TashkilAbove; position = "{327, 801}"; }, { name = TashkilBelow; position = "{327, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "156 -20 OFFCURVE", "127 -19 OFFCURVE", "110 -6 CURVE SMOOTH", "54 34 LINE SMOOTH", "39 45 OFFCURVE", "31 56 OFFCURVE", "30 66 CURVE SMOOTH", "28 81 OFFCURVE", "38 91 OFFCURVE", "59 95 CURVE SMOOTH", "63 96 OFFCURVE", "68 96 OFFCURVE", "73 97 CURVE SMOOTH", "162 107 OFFCURVE", "217 117 OFFCURVE", "237 125 CURVE", "264 197 OFFCURVE", "304 262 OFFCURVE", "355 322 CURVE SMOOTH", "373 343 OFFCURVE", "386 355 OFFCURVE", "395 361 CURVE SMOOTH", "404 367 OFFCURVE", "412 368 OFFCURVE", "421 364 CURVE", "439 355 OFFCURVE", "451 337 OFFCURVE", "454 310 CURVE", "463 217 OFFCURVE", "435 141 OFFCURVE", "373 80 CURVE", "411 82 OFFCURVE", "460 91 OFFCURVE", "519 105 CURVE", "533 108 OFFCURVE", "543 101 OFFCURVE", "550 85 CURVE SMOOTH", "559 62 OFFCURVE", "559 39 OFFCURVE", "549 12 CURVE", "543 -2 OFFCURVE", "536 -11 OFFCURVE", "526 -14 CURVE", "501 -19 OFFCURVE", "477 -23 OFFCURVE", "455 -24 CURVE", "467 -50 OFFCURVE", "472 -85 OFFCURVE", "469 -128 CURVE", "467 -155 OFFCURVE", "456 -181 OFFCURVE", "437 -206 CURVE SMOOTH", "418 -231 OFFCURVE", "395 -244 OFFCURVE", "367 -245 CURVE", "289 -245 OFFCURVE", "241 -177 OFFCURVE", "224 -40 CURVE", "194 -36 LINE", "194 -9 LINE" ); }, { closed = 1; nodes = ( "383 216 OFFCURVE", "378 219 OFFCURVE", "372 219 CURVE SMOOTH", "366 219 OFFCURVE", "362 219 OFFCURVE", "361 218 CURVE SMOOTH", "332 201 OFFCURVE", "311 178 OFFCURVE", "298 147 CURVE", "342 167 OFFCURVE", "372 188 OFFCURVE", "387 209 CURVE" ); }, { closed = 1; nodes = ( "309 -86 OFFCURVE", "326 -108 OFFCURVE", "347 -117 CURVE SMOOTH", "368 -126 OFFCURVE", "389 -125 OFFCURVE", "410 -113 CURVE", "390 -85 OFFCURVE", "352 -64 OFFCURVE", "298 -51 CURVE" ); } ); width = 522; } ); }, { glyphname = aHeh.medi.HehYaaFina; layers = ( { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{376, 801}"; }, { name = TashkilBelow; position = "{370, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-4 -40 OFFCURVE", "-10 -44 OFFCURVE", "-16 -40 CURVE SMOOTH", "-21 -37 OFFCURVE", "-21 -30 OFFCURVE", "-16 -19 CURVE SMOOTH", "25 72 OFFCURVE", "79 144 OFFCURVE", "146 195 CURVE SMOOTH", "191 230 OFFCURVE", "235 247 OFFCURVE", "277 247 CURVE SMOOTH", "337 247 OFFCURVE", "368 206 OFFCURVE", "368 126 CURVE SMOOTH", "368 15 OFFCURVE", "378 -57 OFFCURVE", "399 -88 CURVE SMOOTH", "401 -91 OFFCURVE", "402 -90 OFFCURVE", "402 -87 CURVE SMOOTH", "402 -51 OFFCURVE", "414 -14 OFFCURVE", "439 26 CURVE SMOOTH", "446 36 OFFCURVE", "452 41 OFFCURVE", "458 38 CURVE SMOOTH", "465 35 OFFCURVE", "465 29 OFFCURVE", "461 21 CURVE SMOOTH", "427 -42 OFFCURVE", "433 -121 OFFCURVE", "477 -214 CURVE", "479 -219 OFFCURVE", "478 -223 OFFCURVE", "475 -227 CURVE SMOOTH", "439 -278 LINE SMOOTH", "436 -283 OFFCURVE", "434 -285 OFFCURVE", "432 -285 CURVE SMOOTH", "430 -285 OFFCURVE", "430 -284 OFFCURVE", "429 -283 CURVE SMOOTH", "367 -201 OFFCURVE", "334 -80 OFFCURVE", "332 79 CURVE SMOOTH", "331 124 OFFCURVE", "303 147 OFFCURVE", "248 149 CURVE SMOOTH", "206 150 OFFCURVE", "170 143 OFFCURVE", "143 124 CURVE SMOOTH", "84 85 OFFCURVE", "37 34 OFFCURVE", "3 -27 CURVE SMOOTH" ); } ); width = 438; }, { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{376, 801}"; }, { name = TashkilBelow; position = "{370, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-2 -47 OFFCURVE", "-10 -52 OFFCURVE", "-19 -46 CURVE SMOOTH", "-26 -42 OFFCURVE", "-25 -31 OFFCURVE", "-18 -13 CURVE SMOOTH", "18 76 OFFCURVE", "71 148 OFFCURVE", "143 203 CURVE SMOOTH", "192 241 OFFCURVE", "237 260 OFFCURVE", "277 260 CURVE SMOOTH", "341 260 OFFCURVE", "373 215 OFFCURVE", "372 126 CURVE SMOOTH", "372 34 OFFCURVE", "380 -35 OFFCURVE", "398 -80 CURVE", "397 -45 OFFCURVE", "410 -7 OFFCURVE", "437 34 CURVE SMOOTH", "447 49 OFFCURVE", "455 55 OFFCURVE", "462 50 CURVE SMOOTH", "473 44 OFFCURVE", "475 32 OFFCURVE", "466 15 CURVE SMOOTH", "437 -41 OFFCURVE", "444 -115 OFFCURVE", "489 -208 CURVE SMOOTH", "489 -209 LINE SMOOTH", "492 -218 OFFCURVE", "491 -228 OFFCURVE", "486 -235 CURVE SMOOTH", "450 -286 LINE SMOOTH", "440 -301 OFFCURVE", "429 -303 OFFCURVE", "418 -292 CURVE", "359 -206 OFFCURVE", "329 -82 OFFCURVE", "327 79 CURVE SMOOTH", "327 107 OFFCURVE", "314 124 OFFCURVE", "289 131 CURVE SMOOTH", "235 145 OFFCURVE", "188 139 OFFCURVE", "146 112 CURVE SMOOTH", "79 65 OFFCURVE", "31 17 OFFCURVE", "5 -33 CURVE SMOOTH" ); } ); width = 438; } ); }, { glyphname = "heh-ar.medi.HehYaaFina"; layers = ( { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{376, 801}"; }, { name = TashkilBelow; position = "{370, -327}"; } ); components = ( { name = aHeh.medi.HehYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{376, 801}"; }, { name = TashkilBelow; position = "{370, -327}"; } ); components = ( { name = aHeh.medi.HehYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); }, { glyphname = "hehgoal-ar.medi.HehYaaFina"; layers = ( { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{376, 801}"; }, { name = TashkilBelow; position = "{370, -327}"; } ); components = ( { name = aHeh.medi.HehYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 438; }, { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{376, 801}"; }, { name = TashkilBelow; position = "{370, -327}"; } ); components = ( { name = aHeh.medi.HehYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 438; } ); }, { glyphname = "heh-ar.medi.PostToothHehYaa"; layers = ( { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{432, 801}"; }, { name = TashkilBelow; position = "{440, -327}"; } ); components = ( { name = aHeh.medi.HehYaaFina; }, { name = aBaa.medi.BaaHehMedi; transform = "{1, 0, 0, 1, 441, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 754; }, { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{432, 801}"; }, { name = TashkilBelow; position = "{440, -327}"; } ); components = ( { name = aHeh.medi.HehYaaFina; }, { name = aBaa.medi.BaaHehMedi; transform = "{1, 0, 0, 1, 441, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 754; } ); }, { glyphname = "hehgoal-ar.medi.PostToothHehYaa"; layers = ( { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{432, 801}"; }, { name = TashkilBelow; position = "{440, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; transform = "{1, 0, 0, 1, 441, 0}"; }, { name = aHeh.medi.HehYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 754; }, { anchors = ( { name = HamzaAbove; position = "{483, 430}"; }, { name = TashkilAbove; position = "{432, 801}"; }, { name = TashkilBelow; position = "{440, -327}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; transform = "{1, 0, 0, 1, 441, 0}"; }, { name = aHeh.medi.HehYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 754; } ); }, { glyphname = hamza.above; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{-24, 718}"; }, { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "hamzaabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{-24, 718}"; }, { name = _HamzaAbove; position = "{0, 464}"; } ); components = ( { name = "hamzaabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "zero-ar.medium"; layers = ( { components = ( { name = "zero-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "zero-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "one-ar.medium"; layers = ( { components = ( { name = "one-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "one-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "two-ar.medium"; layers = ( { components = ( { name = "two-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "two-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "three-ar.medium"; layers = ( { components = ( { name = "three-ar"; transform = "{0.8, 0, 0, 0.8, -15, 96}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "three-ar"; transform = "{0.8, 0, 0, 0.8, -15, 96}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "four-ar.medium"; layers = ( { components = ( { name = "four-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "four-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "five-ar.medium"; layers = ( { components = ( { name = "five-ar"; transform = "{0.8, 0, 0, 0.8, -15, 93}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "five-ar"; transform = "{0.8, 0, 0, 0.8, -15, 93}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "six-ar.medium"; layers = ( { components = ( { name = "six-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "six-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "seven-ar.medium"; layers = ( { components = ( { name = "seven-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "seven-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "eight-ar.medium"; layers = ( { components = ( { name = "eight-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "eight-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "nine-ar.medium"; layers = ( { components = ( { name = "nine-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "nine-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "zeroFarsi-ar.medium"; layers = ( { components = ( { name = "zeroFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "zeroFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "oneFarsi-ar.medium"; layers = ( { components = ( { name = "oneFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "oneFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "twoFarsi-ar.medium"; layers = ( { components = ( { name = "twoFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "twoFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "threeFarsi-ar.medium"; layers = ( { components = ( { name = "threeFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 96}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "threeFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 96}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "fourFarsi-ar.medium"; layers = ( { components = ( { name = "fourFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "fourFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "fiveFarsi-ar.medium"; layers = ( { components = ( { name = "fiveFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "fiveFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "sixFarsi-ar.medium"; layers = ( { components = ( { name = "sixFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "sixFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 94}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "sevenFarsi-ar.medium"; layers = ( { components = ( { name = "sevenFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "sevenFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "eightFarsi-ar.medium"; layers = ( { components = ( { name = "eightFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "eightFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "nineFarsi-ar.medium"; layers = ( { components = ( { name = "nineFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "nineFarsi-ar"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "fourFarsi-ar.urd.medium"; layers = ( { components = ( { name = "fourFarsi-ar.urd"; transform = "{0.8, 0, 0, 0.8, -15, 101}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "fourFarsi-ar.urd"; transform = "{0.8, 0, 0, 0.8, -15, 101}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "sixFarsi-ar.urd.medium"; layers = ( { components = ( { name = "sixFarsi-ar.urd"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "sixFarsi-ar.urd"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "sevenFarsi-ar.urd.medium"; layers = ( { components = ( { name = "sevenFarsi-ar.urd"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 439; }, { components = ( { name = "sevenFarsi-ar.urd"; transform = "{0.8, 0, 0, 0.8, -15, 95}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = aAlf.fina.Narrow; layers = ( { anchors = ( { name = DigitAbove; position = "{-12, 630}"; }, { name = HamzaAbove; position = "{62, 752}"; }, { name = HamzaBelow; position = "{122, -54}"; }, { name = TashkilAbove; position = "{244, 684}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "84 732 OFFCURVE", "89 727 OFFCURVE", "92 705 CURVE SMOOTH", "104 602 OFFCURVE", "112 514 OFFCURVE", "116 440 CURVE SMOOTH", "123 301 OFFCURVE", "127 217 OFFCURVE", "129 188 CURVE SMOOTH", "134 124 OFFCURVE", "152 92 OFFCURVE", "181 90 CURVE SMOOTH", "198 89 OFFCURVE", "205 77 OFFCURVE", "201 54 CURVE SMOOTH", "195 18 OFFCURVE", "188 0 OFFCURVE", "181 0 CURVE SMOOTH", "126 0 OFFCURVE", "95 41 OFFCURVE", "89 122 CURVE SMOOTH", "84 190 OFFCURVE", "80 259 OFFCURVE", "78 328 CURVE SMOOTH", "76 397 OFFCURVE", "72 453 OFFCURVE", "66 496 CURVE SMOOTH", "60 539 OFFCURVE", "52 588 OFFCURVE", "42 643 CURVE SMOOTH", "40 654 OFFCURVE", "41 661 OFFCURVE", "45 668 CURVE SMOOTH", "77 720 LINE SMOOTH" ); } ); width = 180; }, { anchors = ( { name = DigitAbove; position = "{-12, 630}"; }, { name = HamzaAbove; position = "{62, 752}"; }, { name = HamzaBelow; position = "{122, -54}"; }, { name = TashkilAbove; position = "{244, 684}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "92 747 OFFCURVE", "101 745 OFFCURVE", "104 718 CURVE SMOOTH", "118 594 OFFCURVE", "126 481 OFFCURVE", "128 378 CURVE SMOOTH", "130 275 OFFCURVE", "132 211 OFFCURVE", "134 189 CURVE SMOOTH", "138 135 OFFCURVE", "153 107 OFFCURVE", "180 105 CURVE SMOOTH", "200 104 OFFCURVE", "211 94 OFFCURVE", "215 75 CURVE SMOOTH", "216 68 OFFCURVE", "216 55 OFFCURVE", "213 38 CURVE SMOOTH", "210 21 OFFCURVE", "206 8 OFFCURVE", "202 -1 CURVE SMOOTH", "198 -10 OFFCURVE", "191 -15 OFFCURVE", "181 -15 CURVE SMOOTH", "119 -15 OFFCURVE", "85 31 OFFCURVE", "79 121 CURVE SMOOTH", "76 172 OFFCURVE", "73 242 OFFCURVE", "71 332 CURVE SMOOTH", "69 422 OFFCURVE", "57 518 OFFCURVE", "37 621 CURVE SMOOTH", "34 638 OFFCURVE", "35 651 OFFCURVE", "42 662 CURVE SMOOTH", "79 725 LINE SMOOTH" ); } ); width = 180; } ); }, { glyphname = "alefMadda-ar.fina.Narrow"; layers = ( { components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 159, -5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 278; }, { components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 98, 0}"; }, { name = "madda-ar"; transform = "{1, 0, 0, 1, 159, -5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 278; } ); }, { glyphname = "alefHamzaabove-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 60, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 152, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 240; }, { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 60, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 152, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 240; } ); }, { glyphname = "alefHamzabelow-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina.Narrow; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 180; }, { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina.Narrow; }, { name = "hamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 180; } ); }, { glyphname = "alef-ar.fina.Narrow"; layers = ( { anchors = ( { name = SeenAbove; position = "{49, 781}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina.Narrow; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 180; }, { anchors = ( { name = SeenAbove; position = "{49, 781}"; }, { name = TashkilAbove; position = "{49, 801}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina.Narrow; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 180; } ); }, { glyphname = "alefWasla-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 229; }, { anchors = ( { name = TashkilAbove; position = "{148, 945}"; }, { name = TashkilBelow; position = "{171, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 229; } ); }, { glyphname = "alefWavyhamzaabove-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilAbove; position = "{37, 1050}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina.Narrow; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 62, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 180; }, { anchors = ( { name = TashkilAbove; position = "{37, 1050}"; }, { name = TashkilBelow; position = "{122, -327}"; } ); components = ( { name = aAlf.fina.Narrow; }, { name = "wavyhamzaabove-ar"; transform = "{1, 0, 0, 1, 62, 332}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 180; } ); }, { glyphname = "alefWavyhamzabelow-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina.Narrow; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 180; }, { anchors = ( { name = TashkilBelow; position = "{122, -356}"; } ); components = ( { name = aAlf.fina.Narrow; }, { name = "wavyhamzabelow-ar"; transform = "{1, 0, 0, 1, 122, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 180; } ); }, { glyphname = "alefTwoabove-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 874}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 283; }, { anchors = ( { name = TashkilAbove; position = "{91, 874}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 91, 459}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 283; } ); }, { glyphname = "alefThreeabove-ar.fina.Narrow"; layers = ( { anchors = ( { name = TashkilAbove; position = "{121, 923}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 508}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 283; }, { anchors = ( { name = TashkilAbove; position = "{121, 923}"; }, { name = TashkilBelow; position = "{225, -327}"; } ); components = ( { name = aAlf.fina.Narrow; transform = "{1, 0, 0, 1, 103, 0}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 91, 508}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 283; } ); }, { glyphname = smallv.above; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _MarkDotAbove; position = "{0, 464}"; }, { name = _VAbove; position = "{0, 464}"; } ); components = ( { name = "vabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _VAbove; position = "{0, 464}"; } ); components = ( { name = "vabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = aHehKnotted.init.YaaBari; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "217 458 OFFCURVE", "203 450 OFFCURVE", "184 434 CURVE SMOOTH", "165 418 OFFCURVE", "151 398 OFFCURVE", "139 375 CURVE SMOOTH", "138 373 OFFCURVE", "138 370 OFFCURVE", "138 368 CURVE SMOOTH", "143 348 OFFCURVE", "163 335 OFFCURVE", "201 327 CURVE", "233 340 OFFCURVE", "252 353 OFFCURVE", "260 364 CURVE SMOOTH", "268 375 OFFCURVE", "267 394 OFFCURVE", "260 420 CURVE SMOOTH", "253 446 OFFCURVE", "242 458 OFFCURVE", "227 458 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "295 375 OFFCURVE", "281 344 OFFCURVE", "257 316 CURVE", "294 309 OFFCURVE", "341 306 OFFCURVE", "399 307 CURVE SMOOTH", "407 307 OFFCURVE", "413 310 OFFCURVE", "416 316 CURVE SMOOTH", "419 322 OFFCURVE", "418 327 OFFCURVE", "415 331 CURVE SMOOTH", "395 355 OFFCURVE", "357 382 OFFCURVE", "300 410 CURVE" ); }, { closed = 1; nodes = ( "93 184 OFFCURVE", "30 140 OFFCURVE", "2 114 CURVE SMOOTH", "-8 104 OFFCURVE", "-18 102 OFFCURVE", "-26 109 CURVE SMOOTH", "-32 114 OFFCURVE", "-29 126 OFFCURVE", "-17 145 CURVE SMOOTH", "6 182 OFFCURVE", "54 222 OFFCURVE", "128 267 CURVE", "100 291 OFFCURVE", "98 329 OFFCURVE", "121 381 CURVE SMOOTH", "138 421 OFFCURVE", "157 452 OFFCURVE", "178 475 CURVE SMOOTH", "209 509 OFFCURVE", "236 532 OFFCURVE", "259 544 CURVE SMOOTH", "282 556 OFFCURVE", "299 541 OFFCURVE", "310 498 CURVE SMOOTH", "312 491 OFFCURVE", "317 485 OFFCURVE", "324 481 CURVE SMOOTH", "386 451 OFFCURVE", "429 423 OFFCURVE", "451 400 CURVE SMOOTH", "458 393 OFFCURVE", "461 381 OFFCURVE", "463 363 CURVE SMOOTH", "465 345 OFFCURVE", "464 325 OFFCURVE", "457 301 CURVE SMOOTH", "450 277 OFFCURVE", "440 259 OFFCURVE", "426 245 CURVE SMOOTH", "412 231 OFFCURVE", "380 224 OFFCURVE", "333 225 CURVE SMOOTH", "286 226 OFFCURVE", "238 233 OFFCURVE", "189 244 CURVE" ); } ); width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "202 449 OFFCURVE", "174 424 OFFCURVE", "145 370 CURVE", "149 357 OFFCURVE", "167 346 OFFCURVE", "200 339 CURVE", "234 351 OFFCURVE", "254 363 OFFCURVE", "260 375 CURVE", "257 420 OFFCURVE", "246 444 OFFCURVE", "227 446 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "296 368 OFFCURVE", "286 346 OFFCURVE", "272 325 CURVE", "306 320 OFFCURVE", "338 317 OFFCURVE", "366 318 CURVE SMOOTH", "394 319 OFFCURVE", "409 320 OFFCURVE", "410 321 CURVE SMOOTH", "410 322 OFFCURVE", "410 322 OFFCURVE", "410 323 CURVE", "399 344 OFFCURVE", "363 368 OFFCURVE", "302 392 CURVE" ); }, { closed = 1; nodes = ( "98 172 OFFCURVE", "38 130 OFFCURVE", "11 105 CURVE SMOOTH", "-3 92 OFFCURVE", "-17 89 OFFCURVE", "-30 97 CURVE SMOOTH", "-31 98 OFFCURVE", "-32 99 OFFCURVE", "-33 100 CURVE SMOOTH", "-45 109 OFFCURVE", "-44 125 OFFCURVE", "-29 149 CURVE SMOOTH", "-28 150 OFFCURVE", "-27 151 OFFCURVE", "-27 151 CURVE SMOOTH", "-4 187 OFFCURVE", "41 227 OFFCURVE", "109 270 CURVE", "93 297 OFFCURVE", "96 336 OFFCURVE", "117 386 CURVE SMOOTH", "153 472 OFFCURVE", "201 529 OFFCURVE", "263 559 CURVE SMOOTH", "289 571 OFFCURVE", "308 552 OFFCURVE", "321 502 CURVE SMOOTH", "321 501 OFFCURVE", "322 501 OFFCURVE", "322 500 CURVE SMOOTH", "324 496 OFFCURVE", "326 494 OFFCURVE", "330 492 CURVE SMOOTH", "388 461 OFFCURVE", "430 434 OFFCURVE", "455 409 CURVE", "463 400 OFFCURVE", "468 384 OFFCURVE", "471 364 CURVE SMOOTH", "473 344 OFFCURVE", "470 322 OFFCURVE", "463 297 CURVE SMOOTH", "456 271 OFFCURVE", "445 251 OFFCURVE", "430 236 CURVE SMOOTH", "413 219 OFFCURVE", "381 212 OFFCURVE", "333 213 CURVE SMOOTH", "286 214 OFFCURVE", "239 219 OFFCURVE", "191 230 CURVE" ); } ); width = 1032; } ); }, { glyphname = "hehDoachashmee-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHehKnotted.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 1032; }, { anchors = ( { name = TashkilAbove; position = "{293, 801}"; }, { name = TashkilBelow; position = "{293, -327}"; } ); components = ( { name = aHehKnotted.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 1032; } ); }, { glyphname = "behVbelow-ar.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{420, -449}"; } ); components = ( { name = aBaa.fina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 420, 117}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 883; }, { anchors = ( { name = TashkilAbove; position = "{461, 801}"; }, { name = TashkilBelow; position = "{420, -449}"; } ); components = ( { name = aBaa.fina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 420, 117}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 883; } ); }, { glyphname = "behVbelow-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{63, -400}"; } ); components = ( { name = aBaa.init; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 63, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{63, -400}"; } ); components = ( { name = aBaa.init; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 63, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behVbelow-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{107, -400}"; } ); components = ( { name = aBaa.medi; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 107, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{107, -400}"; } ); components = ( { name = aBaa.medi; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 107, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behVbelow-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 75, 239}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 75, 239}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behVbelow-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{199, -513}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 199, 54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{199, -513}"; } ); components = ( { name = aBaa.medi.BaaMemFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 199, 54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "behVbelow-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{111, -400}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 111, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{111, -400}"; } ); components = ( { name = aBaa.medi.LamBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 111, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "behVbelow-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -400}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 20, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -400}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 20, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behVbelow-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -430}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 142, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -430}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 142, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 52, 198}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 52, 198}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behVbelow-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{194, -532}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 194, 35}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{194, -532}"; } ); components = ( { name = aBaa.medi.BaaBaaYaa; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 194, 35}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "behVbelow-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{78, -400}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 78, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{78, -400}"; } ); components = ( { name = aBaa.medi.KafBaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 78, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVbelow-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{29, -376}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 29, 190}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{29, -376}"; } ); components = ( { name = aBaa.medi.BaaBaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 29, 190}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "behVbelow-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -391}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 84, 176}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -391}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 84, 176}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behVbelow-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 125, 215}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 125, 215}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVbelow-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{112, -415}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 112, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{112, -415}"; } ); components = ( { name = aBaa.medi.BaaRaaFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 112, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVbelow-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -400}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 123, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -400}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 123, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 27, 288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 27, 288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behVbelow-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{322, -430}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 322, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{322, -430}"; } ); components = ( { name = aBaa.medi.BaaBaaHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 322, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "behVbelow-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 214, 229}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = aBaa.medi.SenBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 214, 229}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{93, -405}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 93, 161}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{93, -405}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 93, 161}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behVbelow-ar.fina.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{396, -435}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 396, 132}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 772; }, { anchors = ( { name = TashkilAbove; position = "{423, 801}"; }, { name = TashkilBelow; position = "{396, -435}"; } ); components = ( { name = aBaa.fina.BaaBaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 396, 132}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 772; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 67, 298}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 67, 298}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behVbelow-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{18, -410}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 18, 156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{18, -410}"; } ); components = ( { name = aBaa.medi.BaaBaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 18, 156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "behVbelow-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{83, -400}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 83, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{83, -400}"; } ); components = ( { name = aBaa.medi.KafBaaMedi; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 83, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "behVbelow-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{58, -415}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 58, 151}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{58, -415}"; } ); components = ( { name = aBaa.medi.BaaNonFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 58, 151}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "behVbelow-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{176, -620}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 176, -54}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{176, -620}"; } ); components = ( { name = aBaa.medi.BaaYaaFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 176, -54}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "behVbelow-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{125, -419}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 125, 147}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{125, -419}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 125, 147}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVbelow-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 441, 345}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{415, 801}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = aBaa.init.AboveHaa; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 441, 345}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "behVbelow-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{459, -425}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 459, 142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{459, -425}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 459, 142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behVbelow-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 194, 222}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 194, 222}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behVbelow-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -400}"; } ); components = ( { name = aBaa.init.High; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 88, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -400}"; } ); components = ( { name = aBaa.init.High; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 88, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behVbelow-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{116, -400}"; } ); components = ( { name = aBaa.medi.High; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 116, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{116, -400}"; } ); components = ( { name = aBaa.medi.High; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 116, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "behVbelow-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{183, -400}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 183, 166}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{183, -400}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 183, 166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behVbelow-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -518}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 148, 49}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -518}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 148, 49}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVbelow-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -399}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 275, 167}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -399}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 275, 167}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behVbelow-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{123, -522}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 123, 44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{123, -522}"; } ); components = ( { name = aBaa.medi.BaaMemAlfFina; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 123, 44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "behVbelow-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -425}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 231, 142}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -425}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 231, 142}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behVbelow-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{169, -417}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 169, 149}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{169, -417}"; } ); components = ( { name = aBaa.medi.BaaHehMedi; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 169, 149}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "behVbelow-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{63, -596}"; } ); components = ( { name = aBaa.init; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 63, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{63, -596}"; } ); components = ( { name = aBaa.init; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 63, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "behVbelow-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{75, -596}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 75, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{75, -596}"; } ); components = ( { name = aBaa.init.BaaRaaIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 75, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behVbelow-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -596}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 20, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{20, -596}"; } ); components = ( { name = aBaa.init.BaaDal; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 20, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "behVbelow-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -596}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{123, 801}"; }, { name = TashkilBelow; position = "{142, -596}"; } ); components = ( { name = aBaa.init.BaaMemHaaInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{52, -596}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 52, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{52, -596}"; } ); components = ( { name = aBaa.init.BaaBaaYaa; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 52, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "behVbelow-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -596}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 84, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{84, -596}"; } ); components = ( { name = aBaa.init.BaaNonIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 84, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "behVbelow-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{125, -596}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 125, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{5, 801}"; }, { name = TashkilBelow; position = "{125, -596}"; } ); components = ( { name = aBaa.init.BaaSenInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 125, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVbelow-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -596}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 123, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{123, -596}"; } ); components = ( { name = aBaa.init.BaaMemInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 123, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{26, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 26, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{26, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHaaInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 26, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{124, -700}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 124, -134}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{124, -700}"; } ); components = ( { name = aBaa.init.BaaBaaIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 124, -134}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{67, -596}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 67, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 801}"; }, { name = TashkilBelow; position = "{67, -596}"; } ); components = ( { name = aBaa.init.BaaBaaMemInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 67, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "behVbelow-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{125, -663}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 125, -97}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{125, -663}"; } ); components = ( { name = aBaa.init.BaaSenAltInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 125, -97}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "behVbelow-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{459, -596}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 459, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{366, 801}"; }, { name = TashkilBelow; position = "{459, -596}"; } ); components = ( { name = aBaa.init.BaaHaaInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 459, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "behVbelow-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{194, -596}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 194, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{194, -596}"; } ); components = ( { name = aBaa.init.BaaHaaMemInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 194, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "behVbelow-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -596}"; } ); components = ( { name = aBaa.init.High; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 88, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{88, -596}"; } ); components = ( { name = aBaa.init.High; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 88, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "behVbelow-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{142, -596}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{142, -596}"; } ); components = ( { name = aBaa.init.Wide; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 142, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "behVbelow-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -596}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 148, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{16, 801}"; }, { name = TashkilBelow; position = "{148, -596}"; } ); components = ( { name = aBaa.init.BaaYaaIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 148, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "behVbelow-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -596}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 275, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{275, -596}"; } ); components = ( { name = aBaa.init.BaaMemIsol; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 275, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "behVbelow-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -596}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 231, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{231, -596}"; } ); components = ( { name = aBaa.init.BaaHehInit; }, { name = "vbelow-ar.low"; transform = "{1, 0, 0, 1, 231, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "behVbelow-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 17, 208}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = aBaa.init.YaaBari; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 17, 208}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "vbelow-ar.low"; layers = ( { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelowAlt; position = "{20, -337}"; } ); components = ( { name = "vbelow-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilBelowDot; position = "{0, -566}"; }, { name = _DotBelowAlt; position = "{20, -337}"; } ); components = ( { name = "vbelow-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "number-ar.4"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1766 -47 OFFCURVE", "1761 -28 OFFCURVE", "1760 -6 CURVE SMOOTH", "1759 16 OFFCURVE", "1762 35 OFFCURVE", "1768 52 CURVE SMOOTH", "1791 118 OFFCURVE", "1825 155 OFFCURVE", "1870 162 CURVE SMOOTH", "1893 165 OFFCURVE", "1912 158 OFFCURVE", "1929 140 CURVE SMOOTH", "1935 134 OFFCURVE", "1937 129 OFFCURVE", "1936 125 CURVE SMOOTH", "1931 106 OFFCURVE", "1924 91 OFFCURVE", "1917 81 CURVE SMOOTH", "1914 77 OFFCURVE", "1912 77 OFFCURVE", "1908 80 CURVE SMOOTH", "1882 103 OFFCURVE", "1857 106 OFFCURVE", "1831 92 CURVE SMOOTH", "1805 78 OFFCURVE", "1791 63 OFFCURVE", "1787 49 CURVE SMOOTH", "1783 35 OFFCURVE", "1782 24 OFFCURVE", "1784 17 CURVE SMOOTH", "1792 -15 OFFCURVE", "1805 -36 OFFCURVE", "1823 -47 CURVE SMOOTH", "1890 -71 LINE SMOOTH", "1897 -75 OFFCURVE", "1901 -81 OFFCURVE", "1901 -89 CURVE SMOOTH", "1900 -114 OFFCURVE", "1898 -132 OFFCURVE", "1896 -140 CURVE SMOOTH", "1894 -148 OFFCURVE", "1891 -151 OFFCURVE", "1885 -148 CURVE SMOOTH", "1845 -126 OFFCURVE", "1819 -115 OFFCURVE", "1806 -115 CURVE SMOOTH", "1793 -115 OFFCURVE", "1777 -119 OFFCURVE", "1758 -128 CURVE SMOOTH", "1708 -152 OFFCURVE", "1429 -164 OFFCURVE", "922 -164 CURVE SMOOTH", "415 -164 OFFCURVE", "142 -156 OFFCURVE", "103 -141 CURVE SMOOTH", "93 -137 OFFCURVE", "81 -129 OFFCURVE", "67 -116 CURVE SMOOTH", "35 -85 LINE SMOOTH", "31 -82 OFFCURVE", "29 -79 OFFCURVE", "29 -76 CURVE SMOOTH", "29 -73 OFFCURVE", "35 -72 OFFCURVE", "46 -74 CURVE SMOOTH", "167 -91 OFFCURVE", "459 -99 OFFCURVE", "924 -99 CURVE SMOOTH", "1389 -99 OFFCURVE", "1649 -94 OFFCURVE", "1707 -86 CURVE SMOOTH", "1742 -81 OFFCURVE", "1765 -74 OFFCURVE", "1776 -66 CURVE" ); } ); width = 1964; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1747 -31 OFFCURVE", "1747 10 OFFCURVE", "1763 57 CURVE SMOOTH", "1772 82 OFFCURVE", "1787 107 OFFCURVE", "1808 130 CURVE SMOOTH", "1829 153 OFFCURVE", "1851 166 OFFCURVE", "1875 170 CURVE SMOOTH", "1900 174 OFFCURVE", "1921 167 OFFCURVE", "1938 149 CURVE SMOOTH", "1944 143 OFFCURVE", "1946 137 OFFCURVE", "1944 132 CURVE SMOOTH", "1934 96 OFFCURVE", "1922 75 OFFCURVE", "1907 68 CURVE SMOOTH", "1905 67 OFFCURVE", "1902 68 OFFCURVE", "1899 71 CURVE SMOOTH", "1868 99 OFFCURVE", "1836 98 OFFCURVE", "1803 70 CURVE SMOOTH", "1791 60 OFFCURVE", "1788 44 OFFCURVE", "1793 25 CURVE SMOOTH", "1804 -16 OFFCURVE", "1828 -41 OFFCURVE", "1865 -51 CURVE SMOOTH", "1880 -55 OFFCURVE", "1891 -59 OFFCURVE", "1899 -63 CURVE SMOOTH", "1907 -67 OFFCURVE", "1910 -73 OFFCURVE", "1910 -81 CURVE SMOOTH", "1909 -109 OFFCURVE", "1905 -130 OFFCURVE", "1899 -145 CURVE SMOOTH", "1894 -158 OFFCURVE", "1886 -163 OFFCURVE", "1876 -157 CURVE SMOOTH", "1836 -135 OFFCURVE", "1811 -124 OFFCURVE", "1798 -124 CURVE SMOOTH", "1785 -124 OFFCURVE", "1769 -128 OFFCURVE", "1751 -136 CURVE SMOOTH", "1700 -160 OFFCURVE", "1441 -172 OFFCURVE", "972 -172 CURVE SMOOTH", "426 -172 OFFCURVE", "134 -164 OFFCURVE", "95 -149 CURVE SMOOTH", "85 -145 OFFCURVE", "73 -138 OFFCURVE", "59 -125 CURVE SMOOTH", "26 -94 LINE SMOOTH", "15 -84 OFFCURVE", "12 -75 OFFCURVE", "18 -68 CURVE SMOOTH", "22 -63 OFFCURVE", "33 -61 OFFCURVE", "54 -65 CURVE SMOOTH", "156 -82 OFFCURVE", "450 -90 OFFCURVE", "936 -90 CURVE SMOOTH", "1398 -90 OFFCURVE", "1657 -86 OFFCURVE", "1715 -78 CURVE SMOOTH", "1736 -75 OFFCURVE", "1752 -71 OFFCURVE", "1764 -67 CURVE" ); } ); width = 1964; } ); }, { glyphname = smallv.above.inverted; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _VAbove; position = "{0, 464}"; } ); components = ( { name = "vinvertedabove-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{0, 732}"; }, { name = _VAbove; position = "{0, 464}"; } ); components = ( { name = "vinvertedabove-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "zero-ar.prop"; layers = ( { components = ( { name = "zero-ar"; transform = "{1, 0, 0, 1, -112, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 361; }, { components = ( { name = "zero-ar"; transform = "{1, 0, 0, 1, -98, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "one-ar.prop"; layers = ( { components = ( { name = "one-ar"; transform = "{1, 0, 0, 1, -112, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { components = ( { name = "one-ar"; transform = "{1, 0, 0, 1, -97, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 435; } ); }, { glyphname = "two-ar.prop"; layers = ( { components = ( { name = "two-ar"; transform = "{1, 0, 0, 1, -62, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { components = ( { name = "two-ar"; transform = "{1, 0, 0, 1, -48, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "three-ar.prop"; layers = ( { components = ( { name = "three-ar"; transform = "{1, 0, 0, 1, -19, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 548; }, { components = ( { name = "three-ar"; transform = "{1, 0, 0, 1, -4, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); }, { glyphname = "four-ar.prop"; layers = ( { components = ( { name = "four-ar"; transform = "{1, 0, 0, 1, -68, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 415; }, { components = ( { name = "four-ar"; transform = "{1, 0, 0, 1, -61, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 439; } ); }, { glyphname = "five-ar.prop"; layers = ( { components = ( { name = "five-ar"; transform = "{1, 0, 0, 1, -51, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 494; }, { components = ( { name = "five-ar"; transform = "{1, 0, 0, 1, -36, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 524; } ); }, { glyphname = "six-ar.prop"; layers = ( { components = ( { name = "six-ar"; transform = "{1, 0, 0, 1, -46, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { components = ( { name = "six-ar"; transform = "{1, 0, 0, 1, -32, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "seven-ar.prop"; layers = ( { components = ( { name = "seven-ar"; transform = "{1, 0, 0, 1, -29, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 527; }, { components = ( { name = "seven-ar"; transform = "{1, 0, 0, 1, -15, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 557; } ); }, { glyphname = "eight-ar.prop"; layers = ( { components = ( { name = "eight-ar"; transform = "{1, 0, 0, 1, -29, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 527; }, { components = ( { name = "eight-ar"; transform = "{1, 0, 0, 1, -14, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 557; } ); }, { glyphname = "nine-ar.prop"; layers = ( { components = ( { name = "nine-ar"; transform = "{1, 0, 0, 1, -74, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 437; }, { components = ( { name = "nine-ar"; transform = "{1, 0, 0, 1, -59, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "zeroFarsi-ar.prop"; layers = ( { components = ( { name = "zero-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 361; }, { components = ( { name = "zero-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 390; } ); }, { glyphname = "oneFarsi-ar.prop"; layers = ( { components = ( { name = "one-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 410; }, { components = ( { name = "one-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 435; } ); }, { glyphname = "twoFarsi-ar.prop"; layers = ( { components = ( { name = "two-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 460; }, { components = ( { name = "two-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 481; } ); }, { glyphname = "threeFarsi-ar.prop"; layers = ( { components = ( { name = "three-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 548; }, { components = ( { name = "three-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 572; } ); }, { glyphname = "fourFarsi-ar.prop"; layers = ( { components = ( { name = "fourFarsi-ar"; transform = "{1, 0, 0, 1, -61, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 463; }, { components = ( { name = "fourFarsi-ar"; transform = "{1, 0, 0, 1, -46, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 486; } ); }, { glyphname = "fiveFarsi-ar.prop"; layers = ( { components = ( { name = "fiveFarsi-ar"; transform = "{1, 0, 0, 1, -56, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 473; }, { components = ( { name = "fiveFarsi-ar"; transform = "{1, 0, 0, 1, -48, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 488; } ); }, { glyphname = "sixFarsi-ar.prop"; layers = ( { components = ( { name = "sixFarsi-ar"; transform = "{1, 0, 0, 1, -44, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 497; }, { components = ( { name = "sixFarsi-ar"; transform = "{1, 0, 0, 1, -36, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 521; } ); }, { glyphname = "sevenFarsi-ar.prop"; layers = ( { components = ( { name = "seven-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 527; }, { components = ( { name = "seven-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 557; } ); }, { glyphname = "eightFarsi-ar.prop"; layers = ( { components = ( { name = "eight-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 527; }, { components = ( { name = "eight-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 557; } ); }, { glyphname = "nineFarsi-ar.prop"; layers = ( { components = ( { name = "nine-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 437; }, { components = ( { name = "nine-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 467; } ); }, { glyphname = "fourFarsi-ar.urd.prop"; layers = ( { components = ( { name = "fourFarsi-ar.urd"; transform = "{1, 0, 0, 1, -51, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 483; }, { components = ( { name = "fourFarsi-ar.urd"; transform = "{1, 0, 0, 1, -41, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 507; } ); }, { glyphname = "sixFarsi-ar.urd.prop"; layers = ( { components = ( { name = "six-ar.prop"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 493; }, { components = ( { name = "six-ar.prop"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 522; } ); }, { glyphname = "sevenFarsi-ar.urd.prop"; layers = ( { components = ( { name = "sevenFarsi-ar.urd"; transform = "{1, 0, 0, 1, -52, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 480; }, { components = ( { name = "sevenFarsi-ar.urd"; transform = "{1, 0, 0, 1, -44, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "alefHamzaabove-ar.fina.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = "alef-ar.fina.Wide"; transform = "{1, 0, 0, 1, 60, 0}"; }, { name = hamza.above; transform = "{1, 0, 0, 1, 152, 332}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 436; }, { anchors = ( { name = TashkilAbove; position = "{127, 1050}"; }, { name = TashkilBelow; position = "{183, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 152, 332}"; }, { name = "alef-ar.fina.Wide"; transform = "{1, 0, 0, 1, 60, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 436; } ); }, { glyphname = "alefWasla-ar.fina.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{148, 945}"; } ); components = ( { name = "alef-ar.fina.Wide"; transform = "{1, 0, 0, 1, 49, 0}"; }, { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 424; }, { anchors = ( { name = TashkilAbove; position = "{148, 945}"; } ); components = ( { name = "wasla-ar"; transform = "{1, 0, 0, 1, -100, 127}"; }, { name = "alef-ar.fina.Wide"; transform = "{1, 0, 0, 1, 49, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 424; } ); }, { glyphname = aBaa.init.BaaBaaHeh; layers = ( { anchors = ( { name = DigitAbove; position = "{68, 391}"; }, { name = DigitBelow; position = "{96, -200}"; }, { name = DotAbove; position = "{88, 342}"; }, { name = DotBelow; position = "{96, -200}"; }, { name = DotBelowAlt; position = "{96, -366}"; }, { name = HamzaAbove; position = "{88, 342}"; }, { name = HamzaBelow; position = "{96, -200}"; }, { name = RingBelow; position = "{91, 54}"; }, { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; }, { name = TwoDotsAbove; position = "{24, 342}"; }, { name = TwoDotsBelow; position = "{30, -200}"; }, { name = TwoDotsBelowAlt; position = "{30, -366}"; }, { name = VAbove; position = "{88, 342}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "113 176 OFFCURVE", "116 180 OFFCURVE", "121 182 CURVE SMOOTH", "126 184 OFFCURVE", "129 184 OFFCURVE", "133 180 CURVE SMOOTH", "137 176 OFFCURVE", "138 170 OFFCURVE", "137 163 CURVE SMOOTH", "116 54 OFFCURVE", "71 0 OFFCURVE", "0 0 CURVE SMOOTH", "-18 0 OFFCURVE", "-27 15 OFFCURVE", "-28 45 CURVE SMOOTH", "-29 75 OFFCURVE", "-20 90 OFFCURVE", "0 90 CURVE SMOOTH", "63 90 OFFCURVE", "99 117 OFFCURVE", "111 169 CURVE SMOOTH" ); } ); width = 233; }, { anchors = ( { name = DigitAbove; position = "{68, 391}"; }, { name = DigitBelow; position = "{96, -200}"; }, { name = DotAbove; position = "{88, 342}"; }, { name = DotBelow; position = "{96, -200}"; }, { name = DotBelowAlt; position = "{96, -366}"; }, { name = HamzaAbove; position = "{88, 342}"; }, { name = HamzaBelow; position = "{96, -200}"; }, { name = RingBelow; position = "{91, 54}"; }, { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; }, { name = TwoDotsAbove; position = "{24, 342}"; }, { name = TwoDotsBelow; position = "{30, -200}"; }, { name = TwoDotsBelowAlt; position = "{30, -366}"; }, { name = VAbove; position = "{88, 342}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "112 188 OFFCURVE", "120 193 OFFCURVE", "131 190 CURVE SMOOTH", "141 187 OFFCURVE", "145 178 OFFCURVE", "142 161 CURVE SMOOTH", "121 45 OFFCURVE", "73 -12 OFFCURVE", "0 -12 CURVE SMOOTH", "-27 -12 OFFCURVE", "-41 6 OFFCURVE", "-41 44 CURVE SMOOTH", "-41 83 OFFCURVE", "-27 103 OFFCURVE", "0 103 CURVE SMOOTH", "59 103 OFFCURVE", "95 126 OFFCURVE", "108 172 CURVE SMOOTH" ); } ); width = 233; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -498}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 96, -542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -498}"; } ); components = ( { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 96, -542}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "beheh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{99, -479}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 99, -386}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{99, -479}"; } ); components = ( { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 99, -386}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonRing-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 30, -293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 30, -293}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behVabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 87, 337}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "vabove-ar"; transform = "{1, 0, 0, 1, 87, 337}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonTahabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 87, 361}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 87, 361}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 88, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = smallv.above; transform = "{1, 0, 0, 1, 88, -122}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -460}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 86, -391}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -460}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 86, -391}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = hamza.above; transform = "{1, 0, 0, 1, 88, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = hamza.above; transform = "{1, 0, 0, 1, 88, -122}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behDotless-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, -203}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, -203}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yeh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = DigitAbove; position = "{68, 391}"; }, { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = DigitAbove; position = "{68, 391}"; }, { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "rnoon-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 87, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 87, 361}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "teheh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 77, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -430}"; } ); components = ( { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 77, 137}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "peh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -460}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 86, -391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -460}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 86, -391}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "beeh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -430}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "beh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tteheh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noon-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -464}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -464}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -464}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -464}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "teh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{258, 1006}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 561; }, { anchors = ( { name = TashkilAbove; position = "{258, 1006}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 561; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 88, -122}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 88, -122}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "theh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tteh-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 87, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = smalltaa.above; transform = "{1, 0, 0, 1, 87, 361}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonVabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 63, 5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = smallv.above; transform = "{1, 0, 0, 1, 63, 5}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "alefMaksura-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = HamzaBelow; position = "{96, -200}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = HamzaBelow; position = "{96, -200}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tehRing-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -460}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 86, -391}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -460}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 86, -391}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "e-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -430}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonghunna-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "beheh-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{99, -645}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 99, -552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{99, -645}"; } ); components = ( { name = "fourdotsbelow-ar.l"; transform = "{1, 0, 0, 1, 99, -552}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -626}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -557}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -626}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -557}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "peh-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -626}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -626}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -557}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "beeh-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -596}"; } ); components = ( { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "beh-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{111, -503}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{111, -503}"; } ); components = ( { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 88, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 88, -122}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -498}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 96, -542}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -498}"; } ); components = ( { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 96, -542}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 68, 220}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yeh-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = DigitAbove; position = "{68, 391}"; }, { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = DigitAbove; position = "{68, 391}"; }, { name = TaaAbove; position = "{87, 361}"; }, { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 88, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = smallv.above; transform = "{1, 0, 0, 1, 88, -122}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{111, -503}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{111, -503}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{50, -552}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 30, -459}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{50, -552}"; } ); components = ( { name = "threedotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 30, -459}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -630}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -630}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -630}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{84, -630}"; } ); components = ( { name = "threedotsupbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 77, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -596}"; } ); components = ( { name = "vinvertedbelow-ar.low"; transform = "{1, 0, 0, 1, 77, -29}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{111, -503}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{111, -503}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 88, 273}"; }, { name = "dotbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -626}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -557}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{125, -626}"; } ); components = ( { name = "threedotsdownbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -557}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "e-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{116, -596}"; } ); components = ( { name = "twodotsverticalbelow-ar.l"; transform = "{1, 0, 0, 1, 96, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "circlebelow-ar"; production = uni08D1; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{125, -268}"; }, { name = TashkilTashkilBelow; position = "{125, -584}"; }, { name = _MarkBelow; position = "{125, -303}"; }, { name = _TashkilBelow; position = "{125, -303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "43 -442 OFFCURVE", "49 -460 OFFCURVE", "62 -475 CURVE SMOOTH", "79 -494 OFFCURVE", "100 -503 OFFCURVE", "124 -503 CURVE SMOOTH", "144 -503 OFFCURVE", "162 -497 OFFCURVE", "177 -484 CURVE SMOOTH", "196 -467 OFFCURVE", "205 -446 OFFCURVE", "205 -422 CURVE SMOOTH", "205 -402 OFFCURVE", "199 -384 OFFCURVE", "186 -369 CURVE SMOOTH", "169 -350 OFFCURVE", "148 -341 OFFCURVE", "124 -341 CURVE SMOOTH", "104 -341 OFFCURVE", "86 -348 OFFCURVE", "71 -361 CURVE SMOOTH", "52 -378 OFFCURVE", "43 -398 OFFCURVE", "43 -422 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "6 -386 OFFCURVE", "20 -356 OFFCURVE", "47 -333 CURVE SMOOTH", "69 -314 OFFCURVE", "95 -304 OFFCURVE", "124 -304 CURVE SMOOTH", "160 -304 OFFCURVE", "190 -319 OFFCURVE", "213 -346 CURVE SMOOTH", "232 -368 OFFCURVE", "241 -393 OFFCURVE", "242 -422 CURVE SMOOTH", "242 -458 OFFCURVE", "228 -489 OFFCURVE", "201 -512 CURVE SMOOTH", "179 -531 OFFCURVE", "153 -539 OFFCURVE", "124 -540 CURVE SMOOTH", "88 -540 OFFCURVE", "58 -526 OFFCURVE", "35 -499 CURVE SMOOTH", "16 -477 OFFCURVE", "6 -451 OFFCURVE", "6 -422 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{125, -268}"; }, { name = TashkilTashkilBelow; position = "{125, -584}"; }, { name = _MarkBelow; position = "{125, -303}"; }, { name = _TashkilBelow; position = "{125, -303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "49 -441 OFFCURVE", "54 -458 OFFCURVE", "66 -472 CURVE SMOOTH", "82 -489 OFFCURVE", "101 -498 OFFCURVE", "124 -498 CURVE SMOOTH", "143 -497 OFFCURVE", "160 -492 OFFCURVE", "174 -480 CURVE SMOOTH", "191 -464 OFFCURVE", "200 -445 OFFCURVE", "200 -422 CURVE SMOOTH", "199 -403 OFFCURVE", "194 -386 OFFCURVE", "182 -372 CURVE SMOOTH", "166 -355 OFFCURVE", "147 -346 OFFCURVE", "124 -346 CURVE SMOOTH", "105 -347 OFFCURVE", "88 -352 OFFCURVE", "74 -364 CURVE SMOOTH", "57 -380 OFFCURVE", "48 -399 OFFCURVE", "48 -422 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "2 -384 OFFCURVE", "16 -353 OFFCURVE", "44 -329 CURVE SMOOTH", "68 -309 OFFCURVE", "94 -299 OFFCURVE", "124 -299 CURVE SMOOTH", "162 -300 OFFCURVE", "193 -314 OFFCURVE", "217 -342 CURVE SMOOTH", "236 -366 OFFCURVE", "246 -392 OFFCURVE", "247 -422 CURVE SMOOTH", "246 -460 OFFCURVE", "232 -491 OFFCURVE", "204 -515 CURVE SMOOTH", "180 -534 OFFCURVE", "154 -544 OFFCURVE", "124 -545 CURVE SMOOTH", "86 -544 OFFCURVE", "55 -530 OFFCURVE", "31 -502 CURVE SMOOTH", "11 -478 OFFCURVE", "1 -452 OFFCURVE", "1 -422 CURVE SMOOTH" ); } ); width = 0; } ); unicode = 08D1; script = arabic; category = Mark; subCategory = Nonspacing; }, { glyphname = "keheh-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 918, 809}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 918, 809}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "keheh-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1135, 729}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1135, 729}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gaf-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "keheh-ar.alt"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 827, 965}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 827, 965}"; }, { name = "keheh-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "gaf-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "keheh-ar.alt.fina"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 1044, 886}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 1044, 886}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gafRing-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 764, 931}"; }, { name = "gaf-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 764, 931}"; }, { name = "gaf-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "gafRing-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 981, 851}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 981, 851}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "ngoeh-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "gaf-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "gaf-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "ngoeh-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gafTwodotsbelow-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; }, { name = "gaf-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; }, { name = "gaf-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "gafTwodotsbelow-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 357, -190}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 357, -190}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gueh-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; }, { name = "gaf-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; }, { name = "gaf-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "gueh-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 356, -190}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 356, -190}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "gafThreedots-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{196, 907}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "gaf-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{196, 907}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "gaf-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "gafThreedots-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 910}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{347, 910}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "gaf-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kehehDotabove-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "keheh-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "keheh-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "kehehDotabove-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kehehThreedotsabove-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{196, 907}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "keheh-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{196, 907}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; }, { name = "keheh-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "kehehThreedotsabove-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 910}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{347, 910}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kehehThreedotsupbelow-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; }, { name = "keheh-ar.alt"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 293, -166}"; }, { name = "keheh-ar.alt"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "kehehThreedotsupbelow-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 357, -190}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 357, -190}"; }, { name = "keheh-ar.alt.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 918, 809}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 918, 809}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 254, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1135, 729}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1135, 729}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 405, 638}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = "kehehThreedotsbelow-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 918, 809}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = aKaf.isol; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 918, 809}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 205, 303}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 295, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "kehehThreedotsbelow-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1135, 729}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 359, -312}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = aKaf.fina; }, { name = dash.kaf; transform = "{1, 0, 0, 1, 1135, 729}"; }, { name = "miniKeheh-ar"; transform = "{1, 0, 0, 1, 356, 306}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 359, -312}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = aGaf.isol; layers = ( { anchors = ( { name = Dash; position = "{848, 687}"; }, { name = DotAbove; position = "{681, 696}"; }, { name = DotBelow; position = "{675, -80}"; }, { name = RingBelow; position = "{846, 604}"; }, { name = TashkilAbove; position = "{519, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; }, { name = TwoDotsAbove; position = "{627, 696}"; }, { name = TwoDotsBelow; position = "{622, -80}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "802 162 OFFCURVE", "803 164 OFFCURVE", "802 167 CURVE", "761 233 OFFCURVE", "691 291 OFFCURVE", "593 340 CURVE SMOOTH", "582 346 OFFCURVE", "576 366 OFFCURVE", "575 402 CURVE SMOOTH", "573 452 OFFCURVE", "583 487 OFFCURVE", "605 507 CURVE SMOOTH", "700 592 OFFCURVE", "874 674 OFFCURVE", "1125 752 CURVE SMOOTH", "1130 754 OFFCURVE", "1133 754 OFFCURVE", "1136 754 CURVE SMOOTH", "1140 754 OFFCURVE", "1142 753 OFFCURVE", "1142 748 CURVE SMOOTH", "1142 747 OFFCURVE", "1142 745 OFFCURVE", "1141 741 CURVE SMOOTH", "1121 670 LINE SMOOTH", "1118 660 OFFCURVE", "1114 655 OFFCURVE", "1108 653 CURVE SMOOTH", "821 550 OFFCURVE", "655 476 OFFCURVE", "609 430 CURVE SMOOTH", "606 427 OFFCURVE", "607 425 OFFCURVE", "611 423 CURVE", "751 339 OFFCURVE", "822 256 OFFCURVE", "823 172 CURVE SMOOTH", "823 125 OFFCURVE", "813 89 OFFCURVE", "793 62 CURVE SMOOTH", "765 24 OFFCURVE", "689 -9 OFFCURVE", "564 -37 CURVE SMOOTH", "480 -56 OFFCURVE", "403 -66 OFFCURVE", "333 -66 CURVE SMOOTH", "165 -67 OFFCURVE", "75 -14 OFFCURVE", "64 92 CURVE SMOOTH", "62 110 OFFCURVE", "64 136 OFFCURVE", "71 169 CURVE SMOOTH", "78 202 OFFCURVE", "92 234 OFFCURVE", "114 265 CURVE SMOOTH", "117 270 OFFCURVE", "121 271 OFFCURVE", "125 271 CURVE SMOOTH", "129 271 OFFCURVE", "133 268 OFFCURVE", "134 264 CURVE SMOOTH", "135 260 OFFCURVE", "135 256 OFFCURVE", "132 252 CURVE SMOOTH", "84 176 OFFCURVE", "85 120 OFFCURVE", "132 86 CURVE SMOOTH", "201 36 OFFCURVE", "311 20 OFFCURVE", "461 38 CURVE SMOOTH", "626 58 OFFCURVE", "738 98 OFFCURVE", "800 160 CURVE SMOOTH" ); } ); width = 1202; }, { anchors = ( { name = Dash; position = "{848, 687}"; }, { name = DotAbove; position = "{681, 696}"; }, { name = DotBelow; position = "{675, -80}"; }, { name = RingBelow; position = "{846, 604}"; }, { name = TashkilAbove; position = "{861, 801}"; }, { name = TashkilBelow; position = "{470, -327}"; }, { name = TwoDotsAbove; position = "{627, 696}"; }, { name = TwoDotsBelow; position = "{622, -80}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "732 246 OFFCURVE", "669 299 OFFCURVE", "602 325 CURVE SMOOTH", "586 331 OFFCURVE", "577 359 OFFCURVE", "575 408 CURVE SMOOTH", "573 459 OFFCURVE", "585 496 OFFCURVE", "610 518 CURVE SMOOTH", "711 610 OFFCURVE", "882 693 OFFCURVE", "1125 766 CURVE SMOOTH", "1142 771 OFFCURVE", "1150 766 OFFCURVE", "1145 749 CURVE SMOOTH", "1121 661 LINE SMOOTH", "1117 646 OFFCURVE", "1109 637 OFFCURVE", "1098 633 CURVE SMOOTH", "840 543 OFFCURVE", "679 475 OFFCURVE", "616 431 CURVE", "755 356 OFFCURVE", "825 270 OFFCURVE", "825 172 CURVE SMOOTH", "825 62 OFFCURVE", "739 -12 OFFCURVE", "568 -51 CURVE SMOOTH", "483 -70 OFFCURVE", "404 -81 OFFCURVE", "333 -81 CURVE SMOOTH", "165 -82 OFFCURVE", "76 -25 OFFCURVE", "64 90 CURVE SMOOTH", "61 116 OFFCURVE", "65 146 OFFCURVE", "74 180 CURVE SMOOTH", "83 214 OFFCURVE", "93 238 OFFCURVE", "105 253 CURVE SMOOTH", "117 268 OFFCURVE", "126 272 OFFCURVE", "133 267 CURVE SMOOTH", "140 262 OFFCURVE", "139 251 OFFCURVE", "130 234 CURVE SMOOTH", "96 172 OFFCURVE", "101 127 OFFCURVE", "141 98 CURVE SMOOTH", "208 50 OFFCURVE", "313 35 OFFCURVE", "459 53 CURVE SMOOTH", "615 72 OFFCURVE", "726 110 OFFCURVE", "792 166 CURVE" ); } ); width = 1202; } ); }, { glyphname = aGaf.fina; layers = ( { anchors = ( { name = Dash; position = "{829, 771}"; }, { name = DotAbove; position = "{648, 708}"; }, { name = DotBelow; position = "{914, -98}"; }, { name = RingBelow; position = "{861, 656}"; }, { name = TashkilAbove; position = "{816, 801}"; }, { name = TashkilBelow; position = "{841, -327}"; }, { name = TwoDotsAbove; position = "{595, 708}"; }, { name = TwoDotsBelow; position = "{860, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "788 225 OFFCURVE", "720 284 OFFCURVE", "598 341 CURVE", "584 350 OFFCURVE", "575 372 OFFCURVE", "572 407 CURVE", "569 446 OFFCURVE", "573 472 OFFCURVE", "583 486 CURVE SMOOTH", "660 596 OFFCURVE", "828 704 OFFCURVE", "1087 811 CURVE SMOOTH", "1093 813 OFFCURVE", "1097 814 OFFCURVE", "1101 814 CURVE SMOOTH", "1107 814 OFFCURVE", "1110 811 OFFCURVE", "1110 804 CURVE SMOOTH", "1110 801 OFFCURVE", "1110 798 OFFCURVE", "1109 795 CURVE SMOOTH", "1094 731 LINE SMOOTH", "1092 723 OFFCURVE", "1088 717 OFFCURVE", "1079 713 CURVE SMOOTH", "847 599 OFFCURVE", "691 504 OFFCURVE", "611 427 CURVE", "747 358 OFFCURVE", "863 279 OFFCURVE", "960 191 CURVE SMOOTH", "1030 128 OFFCURVE", "1087 94 OFFCURVE", "1131 90 CURVE SMOOTH", "1147 88 OFFCURVE", "1155 79 OFFCURVE", "1155 60 CURVE SMOOTH", "1155 49 OFFCURVE", "1153 36 OFFCURVE", "1148 21 CURVE SMOOTH", "1143 6 OFFCURVE", "1138 0 OFFCURVE", "1131 0 CURVE", "1085 0 OFFCURVE", "1015 46 OFFCURVE", "922 138 CURVE SMOOTH", "891 169 OFFCURVE", "860 197 OFFCURVE", "827 221 CURVE", "829 194 OFFCURVE", "828 169 OFFCURVE", "825 146 CURVE SMOOTH", "812 60 OFFCURVE", "724 -1 OFFCURVE", "564 -37 CURVE SMOOTH", "480 -56 OFFCURVE", "403 -66 OFFCURVE", "333 -66 CURVE SMOOTH", "165 -67 OFFCURVE", "75 -14 OFFCURVE", "64 92 CURVE SMOOTH", "62 110 OFFCURVE", "64 136 OFFCURVE", "71 169 CURVE SMOOTH", "78 202 OFFCURVE", "92 234 OFFCURVE", "114 265 CURVE SMOOTH", "117 270 OFFCURVE", "121 271 OFFCURVE", "125 271 CURVE SMOOTH", "129 271 OFFCURVE", "133 268 OFFCURVE", "134 264 CURVE SMOOTH", "135 260 OFFCURVE", "135 256 OFFCURVE", "132 252 CURVE SMOOTH", "84 176 OFFCURVE", "85 120 OFFCURVE", "132 86 CURVE SMOOTH", "201 36 OFFCURVE", "311 20 OFFCURVE", "461 38 CURVE SMOOTH", "635 59 OFFCURVE", "749 101 OFFCURVE", "804 165 CURVE" ); } ); width = 1132; }, { anchors = ( { name = Dash; position = "{829, 771}"; }, { name = DotAbove; position = "{648, 708}"; }, { name = DotBelow; position = "{914, -98}"; }, { name = RingBelow; position = "{861, 656}"; }, { name = TashkilAbove; position = "{816, 801}"; }, { name = TashkilBelow; position = "{841, -327}"; }, { name = TwoDotsAbove; position = "{595, 708}"; }, { name = TwoDotsBelow; position = "{860, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "784 217 OFFCURVE", "714 273 OFFCURVE", "590 335 CURVE", "577 357 OFFCURVE", "571 389 OFFCURVE", "572 431 CURVE SMOOTH", "572 459 OFFCURVE", "576 478 OFFCURVE", "584 489 CURVE", "662 603 OFFCURVE", "829 716 OFFCURVE", "1087 828 CURVE SMOOTH", "1109 838 OFFCURVE", "1118 830 OFFCURVE", "1112 804 CURVE SMOOTH", "1091 717 LINE SMOOTH", "1089 707 OFFCURVE", "1082 699 OFFCURVE", "1070 693 CURVE SMOOTH", "853 585 OFFCURVE", "704 496 OFFCURVE", "622 427 CURVE", "743 374 OFFCURVE", "858 299 OFFCURVE", "965 202 CURVE SMOOTH", "1032 141 OFFCURVE", "1088 109 OFFCURVE", "1133 104 CURVE SMOOTH", "1170 100 OFFCURVE", "1179 70 OFFCURVE", "1161 13 CURVE SMOOTH", "1155 -6 OFFCURVE", "1145 -15 OFFCURVE", "1131 -15 CURVE SMOOTH", "1076 -15 OFFCURVE", "1002 33 OFFCURVE", "912 128 CURVE SMOOTH", "881 160 OFFCURVE", "855 185 OFFCURVE", "833 202 CURVE", "833 177 OFFCURVE", "832 158 OFFCURVE", "830 146 CURVE SMOOTH", "815 50 OFFCURVE", "728 -15 OFFCURVE", "568 -51 CURVE SMOOTH", "483 -70 OFFCURVE", "404 -81 OFFCURVE", "333 -81 CURVE SMOOTH", "165 -82 OFFCURVE", "75 -25 OFFCURVE", "64 90 CURVE SMOOTH", "61 116 OFFCURVE", "65 146 OFFCURVE", "74 180 CURVE SMOOTH", "83 214 OFFCURVE", "93 238 OFFCURVE", "105 253 CURVE SMOOTH", "117 268 OFFCURVE", "126 272 OFFCURVE", "133 267 CURVE SMOOTH", "140 262 OFFCURVE", "139 251 OFFCURVE", "130 234 CURVE SMOOTH", "96 172 OFFCURVE", "101 127 OFFCURVE", "141 98 CURVE SMOOTH", "208 50 OFFCURVE", "313 35 OFFCURVE", "459 53 CURVE SMOOTH", "609 71 OFFCURVE", "722 109 OFFCURVE", "798 168 CURVE" ); } ); width = 1132; } ); }, { glyphname = "number-ar.3"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1327 -47 OFFCURVE", "1322 -28 OFFCURVE", "1321 -6 CURVE SMOOTH", "1320 16 OFFCURVE", "1322 35 OFFCURVE", "1328 52 CURVE SMOOTH", "1351 118 OFFCURVE", "1386 155 OFFCURVE", "1431 162 CURVE SMOOTH", "1454 165 OFFCURVE", "1473 158 OFFCURVE", "1490 140 CURVE SMOOTH", "1496 134 OFFCURVE", "1497 129 OFFCURVE", "1496 125 CURVE SMOOTH", "1491 106 OFFCURVE", "1485 91 OFFCURVE", "1478 81 CURVE SMOOTH", "1475 77 OFFCURVE", "1473 77 OFFCURVE", "1469 80 CURVE SMOOTH", "1443 103 OFFCURVE", "1418 106 OFFCURVE", "1392 92 CURVE SMOOTH", "1366 78 OFFCURVE", "1351 63 OFFCURVE", "1347 49 CURVE SMOOTH", "1343 35 OFFCURVE", "1343 24 OFFCURVE", "1345 17 CURVE SMOOTH", "1353 -15 OFFCURVE", "1366 -36 OFFCURVE", "1384 -47 CURVE SMOOTH", "1451 -71 LINE SMOOTH", "1458 -75 OFFCURVE", "1461 -81 OFFCURVE", "1461 -89 CURVE SMOOTH", "1460 -114 OFFCURVE", "1459 -132 OFFCURVE", "1457 -140 CURVE SMOOTH", "1455 -148 OFFCURVE", "1451 -151 OFFCURVE", "1445 -148 CURVE SMOOTH", "1405 -126 OFFCURVE", "1379 -115 OFFCURVE", "1366 -115 CURVE SMOOTH", "1353 -115 OFFCURVE", "1338 -119 OFFCURVE", "1319 -128 CURVE SMOOTH", "1269 -152 OFFCURVE", "1063 -164 OFFCURVE", "702 -164 CURVE SMOOTH", "341 -164 OFFCURVE", "142 -156 OFFCURVE", "103 -141 CURVE SMOOTH", "93 -137 OFFCURVE", "81 -129 OFFCURVE", "67 -116 CURVE SMOOTH", "35 -85 LINE SMOOTH", "31 -82 OFFCURVE", "29 -79 OFFCURVE", "29 -76 CURVE SMOOTH", "29 -73 OFFCURVE", "35 -72 OFFCURVE", "46 -74 CURVE SMOOTH", "167 -91 OFFCURVE", "386 -99 OFFCURVE", "704 -99 CURVE SMOOTH", "1022 -99 OFFCURVE", "1204 -96 OFFCURVE", "1251 -89 CURVE SMOOTH", "1298 -82 OFFCURVE", "1326 -74 OFFCURVE", "1337 -66 CURVE" ); } ); width = 1525; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1307 -31 OFFCURVE", "1308 10 OFFCURVE", "1324 57 CURVE SMOOTH", "1333 82 OFFCURVE", "1347 107 OFFCURVE", "1368 130 CURVE SMOOTH", "1389 153 OFFCURVE", "1412 166 OFFCURVE", "1436 170 CURVE SMOOTH", "1461 174 OFFCURVE", "1482 167 OFFCURVE", "1499 149 CURVE SMOOTH", "1505 143 OFFCURVE", "1507 137 OFFCURVE", "1505 132 CURVE SMOOTH", "1495 96 OFFCURVE", "1482 75 OFFCURVE", "1467 68 CURVE SMOOTH", "1465 67 OFFCURVE", "1463 68 OFFCURVE", "1460 71 CURVE SMOOTH", "1429 99 OFFCURVE", "1397 98 OFFCURVE", "1364 70 CURVE SMOOTH", "1352 60 OFFCURVE", "1349 44 OFFCURVE", "1354 25 CURVE SMOOTH", "1365 -16 OFFCURVE", "1389 -41 OFFCURVE", "1426 -51 CURVE SMOOTH", "1441 -55 OFFCURVE", "1451 -59 OFFCURVE", "1459 -63 CURVE SMOOTH", "1467 -67 OFFCURVE", "1470 -73 OFFCURVE", "1470 -81 CURVE SMOOTH", "1469 -109 OFFCURVE", "1465 -130 OFFCURVE", "1459 -145 CURVE SMOOTH", "1454 -158 OFFCURVE", "1447 -163 OFFCURVE", "1437 -157 CURVE SMOOTH", "1397 -135 OFFCURVE", "1371 -124 OFFCURVE", "1358 -124 CURVE SMOOTH", "1345 -124 OFFCURVE", "1330 -128 OFFCURVE", "1312 -136 CURVE SMOOTH", "1261 -160 OFFCURVE", "1074 -172 OFFCURVE", "752 -172 CURVE SMOOTH", "353 -172 OFFCURVE", "134 -164 OFFCURVE", "95 -149 CURVE SMOOTH", "85 -145 OFFCURVE", "73 -138 OFFCURVE", "59 -125 CURVE SMOOTH", "26 -94 LINE SMOOTH", "15 -84 OFFCURVE", "12 -75 OFFCURVE", "18 -68 CURVE SMOOTH", "22 -63 OFFCURVE", "33 -61 OFFCURVE", "54 -65 CURVE SMOOTH", "156 -82 OFFCURVE", "376 -90 OFFCURVE", "716 -90 CURVE SMOOTH", "1031 -90 OFFCURVE", "1217 -86 OFFCURVE", "1275 -78 CURVE SMOOTH", "1296 -75 OFFCURVE", "1312 -71 OFFCURVE", "1324 -67 CURVE" ); } ); width = 1525; } ); }, { glyphname = "pagenumber-ar.3"; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1307 -204 OFFCURVE", "1304 -199 OFFCURVE", "1304 -189 CURVE SMOOTH", "1304 -179 OFFCURVE", "1308 -162 OFFCURVE", "1317 -140 CURVE", "1296 -136 OFFCURVE", "1276 -127 OFFCURVE", "1258 -112 CURVE", "1187 -149 OFFCURVE", "1001 -168 OFFCURVE", "700 -168 CURVE SMOOTH", "404 -168 OFFCURVE", "207 -154 OFFCURVE", "110 -128 CURVE SMOOTH", "90 -122 OFFCURVE", "76 -115 OFFCURVE", "67 -106 CURVE SMOOTH", "35 -70 LINE SMOOTH", "31 -66 OFFCURVE", "29 -63 OFFCURVE", "29 -60 CURVE SMOOTH", "29 -57 OFFCURVE", "35 -57 OFFCURVE", "46 -59 CURVE SMOOTH", "226 -92 OFFCURVE", "454 -107 OFFCURVE", "727 -107 CURVE SMOOTH", "1021 -107 OFFCURVE", "1204 -89 OFFCURVE", "1275 -54 CURVE SMOOTH", "1278 -53 OFFCURVE", "1282 -56 OFFCURVE", "1289 -64 CURVE SMOOTH", "1303 -80 OFFCURVE", "1325 -89 OFFCURVE", "1353 -92 CURVE", "1414 -3 OFFCURVE", "1470 42 OFFCURVE", "1524 42 CURVE SMOOTH", "1534 42 OFFCURVE", "1548 37 OFFCURVE", "1566 25 CURVE SMOOTH", "1584 13 OFFCURVE", "1593 -2 OFFCURVE", "1593 -20 CURVE SMOOTH", "1593 -38 OFFCURVE", "1586 -58 OFFCURVE", "1574 -80 CURVE SMOOTH", "1562 -102 OFFCURVE", "1554 -114 OFFCURVE", "1550 -117 CURVE SMOOTH", "1515 -144 OFFCURVE", "1466 -157 OFFCURVE", "1405 -157 CURVE SMOOTH", "1381 -157 OFFCURVE", "1360 -154 OFFCURVE", "1339 -148 CURVE", "1334 -155 OFFCURVE", "1329 -171 OFFCURVE", "1323 -197 CURVE SMOOTH", "1322 -202 OFFCURVE", "1319 -204 OFFCURVE", "1315 -204 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1531 -36 OFFCURVE", "1507 -21 OFFCURVE", "1478 -21 CURVE SMOOTH", "1449 -21 OFFCURVE", "1414 -47 OFFCURVE", "1377 -98 CURVE", "1387 -100 OFFCURVE", "1401 -101 OFFCURVE", "1416 -101 CURVE SMOOTH", "1431 -101 OFFCURVE", "1455 -99 OFFCURVE", "1488 -95 CURVE SMOOTH", "1519 -91 OFFCURVE", "1540 -84 OFFCURVE", "1550 -74 CURVE SMOOTH", "1551 -73 OFFCURVE", "1551 -73 OFFCURVE", "1551 -72 CURVE SMOOTH", "1551 -71 OFFCURVE", "1551 -69 OFFCURVE", "1550 -68 CURVE SMOOTH" ); } ); width = 1622; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1309 -216 OFFCURVE", "1302 -214 OFFCURVE", "1298 -208 CURVE SMOOTH", "1294 -202 OFFCURVE", "1292 -195 OFFCURVE", "1292 -187 CURVE SMOOTH", "1292 -179 OFFCURVE", "1295 -166 OFFCURVE", "1301 -149 CURVE", "1285 -144 OFFCURVE", "1270 -137 OFFCURVE", "1256 -127 CURVE", "1179 -163 OFFCURVE", "993 -180 OFFCURVE", "697 -180 CURVE SMOOTH", "401 -180 OFFCURVE", "205 -167 OFFCURVE", "107 -140 CURVE SMOOTH", "85 -134 OFFCURVE", "68 -125 OFFCURVE", "58 -114 CURVE SMOOTH", "26 -78 LINE SMOOTH", "20 -72 OFFCURVE", "17 -66 OFFCURVE", "17 -62 CURVE SMOOTH", "17 -55 OFFCURVE", "19 -51 OFFCURVE", "21 -49 CURVE SMOOTH", "26 -45 OFFCURVE", "34 -44 OFFCURVE", "48 -47 CURVE SMOOTH", "228 -79 OFFCURVE", "459 -95 OFFCURVE", "741 -95 CURVE SMOOTH", "1023 -95 OFFCURVE", "1199 -78 OFFCURVE", "1269 -43 CURVE SMOOTH", "1276 -39 OFFCURVE", "1283 -40 OFFCURVE", "1287 -44 CURVE SMOOTH", "1291 -48 OFFCURVE", "1294 -51 OFFCURVE", "1296 -53 CURVE SMOOTH", "1308 -67 OFFCURVE", "1325 -76 OFFCURVE", "1347 -79 CURVE", "1409 10 OFFCURVE", "1467 55 OFFCURVE", "1524 55 CURVE SMOOTH", "1536 55 OFFCURVE", "1553 48 OFFCURVE", "1574 34 CURVE SMOOTH", "1595 20 OFFCURVE", "1605 4 OFFCURVE", "1605 -18 CURVE SMOOTH", "1605 -40 OFFCURVE", "1598 -63 OFFCURVE", "1585 -86 CURVE SMOOTH", "1572 -109 OFFCURVE", "1563 -123 OFFCURVE", "1557 -127 CURVE SMOOTH", "1520 -155 OFFCURVE", "1469 -169 OFFCURVE", "1405 -169 CURVE SMOOTH", "1384 -169 OFFCURVE", "1364 -167 OFFCURVE", "1345 -163 CURVE", "1342 -171 OFFCURVE", "1339 -182 OFFCURVE", "1336 -196 CURVE SMOOTH", "1333 -210 OFFCURVE", "1327 -216 OFFCURVE", "1318 -216 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1520 -45 OFFCURVE", "1502 -33 OFFCURVE", "1479 -33 CURVE SMOOTH", "1456 -33 OFFCURVE", "1431 -51 OFFCURVE", "1401 -88 CURVE", "1406 -88 OFFCURVE", "1413 -88 OFFCURVE", "1423 -88 CURVE SMOOTH", "1433 -88 OFFCURVE", "1452 -87 OFFCURVE", "1480 -84 CURVE SMOOTH", "1508 -81 OFFCURVE", "1526 -75 OFFCURVE", "1536 -69 CURVE" ); } ); width = 1622; } ); }, { glyphname = "kashida-ar.05"; layers = ( { anchors = ( { name = AlefAbove; position = "{46, 244}"; }, { name = MarkAbove; position = "{46, 801}"; }, { name = MarkBelow; position = "{46, -327}"; }, { name = NoonAbove; position = "{46, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-6 1 OFFCURVE", "-10 6 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-32 83 OFFCURVE", "-24 93 OFFCURVE", "0 90 CURVE SMOOTH", "7 89 OFFCURVE", "22 88 OFFCURVE", "46 88 CURVE SMOOTH", "66 88 OFFCURVE", "82 89 OFFCURVE", "93 90 CURVE SMOOTH", "117 92 OFFCURVE", "125 82 OFFCURVE", "118 59 CURVE SMOOTH", "105 15 LINE SMOOTH", "103 6 OFFCURVE", "99 1 OFFCURVE", "93 0 CURVE SMOOTH", "79 -2 OFFCURVE", "63 -3 OFFCURVE", "46 -3 CURVE SMOOTH", "29 -3 OFFCURVE", "14 -2 OFFCURVE", "0 0 CURVE SMOOTH" ); } ); width = 92; }, { anchors = ( { name = AlefAbove; position = "{46, 244}"; }, { name = MarkAbove; position = "{46, 801}"; }, { name = MarkBelow; position = "{46, -327}"; }, { name = NoonAbove; position = "{46, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-13 -14 OFFCURVE", "-21 -5 OFFCURVE", "-26 11 CURVE SMOOTH", "-42 64 LINE SMOOTH", "-50 92 OFFCURVE", "-36 105 OFFCURVE", "0 103 CURVE SMOOTH", "16 102 OFFCURVE", "31 102 OFFCURVE", "46 102 CURVE SMOOTH", "56 102 OFFCURVE", "72 102 OFFCURVE", "93 104 CURVE SMOOTH", "128 107 OFFCURVE", "142 94 OFFCURVE", "134 65 CURVE SMOOTH", "119 11 LINE SMOOTH", "114 -5 OFFCURVE", "106 -14 OFFCURVE", "93 -15 CURVE SMOOTH", "80 -17 OFFCURVE", "65 -17 OFFCURVE", "47 -17 CURVE SMOOTH", "35 -17 OFFCURVE", "19 -17 OFFCURVE", "0 -15 CURVE SMOOTH" ); } ); width = 92; } ); }, { glyphname = aYaaBari.fina.PostToothFina; layers = ( { anchors = ( { name = DigitAbove; position = "{244, 327}"; }, { name = HamzaAbove; position = "{293, 327}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; transform = "{1, 0, 0, 1, 0, -210}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = DigitAbove; position = "{244, 327}"; }, { name = HamzaAbove; position = "{293, 327}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostTooth; transform = "{1, 0, 0, 1, 0, -210}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = aBaa.medi.YaaBari; layers = ( { anchors = ( { name = DigitAbove; position = "{39, 425}"; }, { name = DigitBelow; position = "{73, -430}"; }, { name = DotAbove; position = "{39, 425}"; }, { name = DotBelow; position = "{24, -381}"; }, { name = HamzaAbove; position = "{39, 361}"; }, { name = HamzaBelow; position = "{24, -381}"; }, { name = RingBelow; position = "{88, 59}"; }, { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; }, { name = TwoDotsAbove; position = "{-24, 361}"; }, { name = TwoDotsBelow; position = "{24, -381}"; }, { name = VAbove; position = "{39, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "129 13 OFFCURVE", "102 54 OFFCURVE", "95 123 CURVE SMOOTH", "94 137 OFFCURVE", "96 149 OFFCURVE", "102 158 CURVE SMOOTH", "109 170 OFFCURVE", "117 174 OFFCURVE", "125 172 CURVE SMOOTH", "128 171 OFFCURVE", "130 169 OFFCURVE", "132 163 CURVE SMOOTH", "135 152 OFFCURVE", "139 142 OFFCURVE", "144 134 CURVE SMOOTH", "160 106 OFFCURVE", "184 91 OFFCURVE", "219 89 CURVE SMOOTH", "229 88 OFFCURVE", "234 82 OFFCURVE", "234 69 CURVE SMOOTH", "234 56 OFFCURVE", "228 37 OFFCURVE", "217 11 CURVE SMOOTH", "214 4 OFFCURVE", "210 0 OFFCURVE", "205 0 CURVE SMOOTH", "195 -1 OFFCURVE", "185 0 OFFCURVE", "176 2 CURVE SMOOTH" ); } ); width = 205; }, { anchors = ( { name = DigitAbove; position = "{39, 425}"; }, { name = DigitBelow; position = "{73, -430}"; }, { name = DotAbove; position = "{39, 425}"; }, { name = DotBelow; position = "{24, -381}"; }, { name = HamzaAbove; position = "{39, 361}"; }, { name = HamzaBelow; position = "{24, -381}"; }, { name = RingBelow; position = "{88, 59}"; }, { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; }, { name = TwoDotsAbove; position = "{-24, 361}"; }, { name = TwoDotsBelow; position = "{24, -381}"; }, { name = VAbove; position = "{39, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "125 2 OFFCURVE", "97 46 OFFCURVE", "90 122 CURVE SMOOTH", "88 139 OFFCURVE", "92 153 OFFCURVE", "99 164 CURVE SMOOTH", "105 172 OFFCURVE", "112 177 OFFCURVE", "121 179 CURVE SMOOTH", "128 180 OFFCURVE", "134 176 OFFCURVE", "137 166 CURVE SMOOTH", "140 156 OFFCURVE", "143 148 OFFCURVE", "147 140 CURVE SMOOTH", "160 117 OFFCURVE", "185 103 OFFCURVE", "220 101 CURVE SMOOTH", "227 101 OFFCURVE", "233 99 OFFCURVE", "237 95 CURVE SMOOTH", "244 89 OFFCURVE", "246 80 OFFCURVE", "246 68 CURVE SMOOTH", "246 54 OFFCURVE", "240 33 OFFCURVE", "229 6 CURVE SMOOTH", "224 -6 OFFCURVE", "216 -12 OFFCURVE", "206 -12 CURVE SMOOTH", "194 -13 OFFCURVE", "182 -12 OFFCURVE", "173 -10 CURVE SMOOTH" ); } ); width = 205; } ); }, { glyphname = "yehFarsiFourbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{73, -728}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 73, -771}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{73, -728}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 73, -771}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "beheh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{93, -659}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 93, -566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{93, -659}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 93, -566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehFarsiThreeabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 39, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 39, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonRing-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 24, -474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 24, -474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behVabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smallv.above; transform = "{1, 0, 0, 1, 39, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smallv.above; transform = "{1, 0, 0, 1, 39, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonTahabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 920}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 15, 552}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{73, 920}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 15, 552}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehVabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smallv.above; transform = "{1, 0, 0, 1, 39, -103}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smallv.above; transform = "{1, 0, 0, 1, 39, -103}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehFarsiTwoabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 39, 254}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 39, 254}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonThreedotsabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{120, -641}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -571}"; }, { name = aBaa.medi.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{120, -641}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -571}"; }, { name = aBaa.medi.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehHamzaabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, 39, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, 39, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behDotless-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehKashmiri-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{49, -537}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 34, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{49, -537}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 34, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yeh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = DigitAbove; position = "{39, 425}"; }, { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = DigitAbove; position = "{39, 425}"; }, { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "rnoon-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "teheh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behVinvertedbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 5, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 5, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "tehThreedotsdown-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "peh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{120, -641}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{120, -641}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "beeh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{44, -610}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{44, -610}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "beh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TaaAbove; position = "{39, 327}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "tteheh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behThreedotsupabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noon-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "tehThreedotsupbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{79, -645}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{79, -645}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behThreedotsupbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{79, -645}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{79, -645}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "teh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehFarsiVinverted-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 39, -103}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 39, -103}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "theh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "tteh-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 327}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 39, 327}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonDotbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonVabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 15, 88}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "vabove-ar"; transform = "{1, 0, 0, 1, 15, 88}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "alefMaksura-ar.medi.YaaBari"; layers = ( { anchors = ( { name = HamzaBelow; position = "{24, -381}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = HamzaBelow; position = "{24, -381}"; }, { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "tehRing-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 59}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 88, 59}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehThreedotsbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{120, -641}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{120, -641}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 81, -571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "e-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{44, -610}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{44, -610}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 24, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonghunna-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehFarsi-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "noonTwodotsbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 39, 356}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehbarreeThreeabove-ar.fina.PostToothFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostToothFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 244, 156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostToothFina; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 244, 156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "yehbarreeTwoabove-ar.fina.PostToothFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostToothFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 244, 156}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostToothFina; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 244, 156}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "yehbarree-ar.fina.PostToothFina"; layers = ( { anchors = ( { name = HamzaAbove; position = "{293, 327}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostToothFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 312; }, { anchors = ( { name = HamzaAbove; position = "{293, 327}"; }, { name = TashkilAbove; position = "{244, 801}"; }, { name = TashkilBelow; position = "{244, -327}"; } ); components = ( { name = aYaaBari.fina.PostToothFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 312; } ); }, { glyphname = "behVbelow-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{5, -610}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 5, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{5, -610}"; } ); components = ( { name = aBaa.medi.YaaBari; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 5, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = aBaa.init.BaaBaaYaaBari; layers = ( { anchors = ( { name = DigitAbove; position = "{117, 391}"; }, { name = DigitBelow; position = "{96, -430}"; }, { name = DotAbove; position = "{137, 342}"; }, { name = DotBelow; position = "{96, -381}"; }, { name = HamzaAbove; position = "{137, 342}"; }, { name = HamzaBelow; position = "{96, -381}"; }, { name = RingBelow; position = "{91, 54}"; }, { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; }, { name = TwoDotsAbove; position = "{73, 342}"; }, { name = TwoDotsBelow; position = "{96, -381}"; }, { name = VAbove; position = "{137, 342}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = DigitAbove; position = "{117, 391}"; }, { name = DigitBelow; position = "{96, -430}"; }, { name = DotAbove; position = "{137, 342}"; }, { name = DotBelow; position = "{96, -381}"; }, { name = HamzaAbove; position = "{137, 342}"; }, { name = HamzaBelow; position = "{96, -381}"; }, { name = RingBelow; position = "{91, 54}"; }, { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; }, { name = TwoDotsAbove; position = "{73, 342}"; }, { name = TwoDotsBelow; position = "{96, -381}"; }, { name = VAbove; position = "{137, 342}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehFarsiFourbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{96, -728}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 96, -772}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{96, -728}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 96, -772}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "beheh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{165, -659}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 165, -566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{165, -659}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 165, -566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehFarsiThreeabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 117, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threeabove-ar"; transform = "{1, 0, 0, 1, 117, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonRing-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behThreedotshorizontalbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 96, -474}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 96, -474}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behVabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smallv.above; transform = "{1, 0, 0, 1, 137, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smallv.above; transform = "{1, 0, 0, 1, 137, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonTahabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 112, 469}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 112, 469}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehVabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 137, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 137, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehFarsiTwoabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 117, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twoabove-ar"; transform = "{1, 0, 0, 1, 117, 220}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonThreedotsabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{191, -641}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -571}"; }, { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{191, -641}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -571}"; }, { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehHamzaabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, 137, -122}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = hamza.above; transform = "{1, 0, 0, 1, 137, -122}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behDotless-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{234, -537}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 204, -322}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{234, -537}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 204, -322}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yeh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = DigitAbove; position = "{117, 391}"; }, { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = DigitAbove; position = "{117, 391}"; }, { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "rnoon-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 136, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 136, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "teheh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "fourdotsabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behVinvertedbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 77, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "vinvertedbelow-ar"; transform = "{1, 0, 0, 1, 77, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "tehThreedotsdown-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsdownabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "peh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{191, -641}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{191, -641}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "beeh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{116, -610}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{116, -610}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "beh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TaaAbove; position = "{136, 361}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "tteheh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotsverticalabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behThreedotsupabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noon-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "tehThreedotsupbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{150, -645}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{150, -645}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behThreedotsupbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{150, -645}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{150, -645}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "teh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "highhamzaYeh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "highhamza-ar"; transform = "{1, 0, 0, 1, 180, 0}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehFarsiVinverted-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 137, -122}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smallv.above.inverted; transform = "{1, 0, 0, 1, 137, -122}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "theh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "tteh-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 136, 361}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = smalltaa.above; transform = "{1, 0, 0, 1, 136, 361}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonDotbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonVabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 112, 5}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; }, { name = smallv.above; transform = "{1, 0, 0, 1, 112, 5}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "alefMaksura-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = HamzaBelow; position = "{96, -381}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = HamzaBelow; position = "{96, -381}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "tehRing-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = ring.below; transform = "{1, 0, 0, 1, 91, 54}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehThreedotsbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{191, -641}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{191, -641}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 152, -571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "e-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{116, -610}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{116, -610}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 96, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonghunna-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehFarsi-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "noonTwodotsbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 137, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{77, -610}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 77, -44}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{77, -610}"; } ); components = ( { name = aBaa.init.BaaBaaYaaBari; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 77, -44}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "tcheheh-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{317, -659}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 317, -566}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{317, -659}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "fourdotsbelow-ar"; transform = "{1, 0, 0, 1, 317, -566}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "jeem-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "dotbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "dyeh-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{322, -610}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{322, -610}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTahTwodotshorizontalabove-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{347, -968}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 322, -747}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 337, -875}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{347, -968}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 322, -747}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 337, -875}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahTahbelow-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 322, -747}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "tahbelow-ar"; transform = "{1, 0, 0, 1, 322, -747}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "nyeh-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "tchehDotabove-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{344, -641}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 303, 396}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 305, -571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{344, -641}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 303, 396}"; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 305, -571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahFourbelow-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -679}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 303, -723}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -679}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "fourbelow-ar"; transform = "{1, 0, 0, 1, 303, -723}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "hahThreedotsupbelow-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -645}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -645}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 303, -449}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "tcheh-ar.init.BaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{344, -641}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 305, -571}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{344, -641}"; } ); components = ( { name = aHaa.init.BaaYaaBari; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 305, -571}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = aHaa.init.BaaYaaBari; layers = ( { anchors = ( { name = DigitBelow; position = "{303, -381}"; }, { name = DotAbove; position = "{303, 464}"; }, { name = DotBelow; position = "{303, -381}"; }, { name = HamzaAbove; position = "{303, 464}"; }, { name = HamzaBelow; position = "{303, -381}"; }, { name = TaaAbove; position = "{303, 464}"; }, { name = TaaBelow; position = "{303, -381}"; }, { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; }, { name = TwoDotsAbove; position = "{254, 464}"; }, { name = TwoDotsBelow; position = "{249, -381}"; } ); components = ( { name = aHaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 655; }, { anchors = ( { name = DigitBelow; position = "{303, -381}"; }, { name = DotAbove; position = "{303, 464}"; }, { name = DotBelow; position = "{303, -381}"; }, { name = HamzaAbove; position = "{303, 464}"; }, { name = HamzaBelow; position = "{303, -381}"; }, { name = TaaAbove; position = "{303, 464}"; }, { name = TaaBelow; position = "{303, -381}"; }, { name = TashkilAbove; position = "{303, 801}"; }, { name = TashkilBelow; position = "{303, -493}"; }, { name = TwoDotsAbove; position = "{254, 464}"; }, { name = TwoDotsBelow; position = "{249, -381}"; } ); components = ( { name = aHaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 655; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 77, 137}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -430}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 77, 137}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "behVbelow-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 77, -29}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "vbelow-ar"; transform = "{1, 0, 0, 1, 77, -29}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehKashmiri-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 77, -381}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{77, -596}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 77, -381}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "dammainverted-ar.urd"; layers = ( { anchors = ( { name = TashkilTashkilAbove; position = "{300, 1203}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; }, { name = _TashkilTashkilAbove; position = "{271, 801}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "223 841 OFFCURVE", "204 874 OFFCURVE", "204 937 CURVE SMOOTH", "204 988 OFFCURVE", "230 1056 OFFCURVE", "281 1140 CURVE SMOOTH", "287 1150 OFFCURVE", "292 1153 OFFCURVE", "299 1149 CURVE SMOOTH", "306 1145 OFFCURVE", "306 1139 OFFCURVE", "301 1129 CURVE SMOOTH", "259 1044 OFFCURVE", "244 985 OFFCURVE", "256 952 CURVE SMOOTH", "262 937 OFFCURVE", "272 929 OFFCURVE", "288 929 CURVE SMOOTH", "300 929 OFFCURVE", "310 939 OFFCURVE", "318 957 CURVE SMOOTH", "321 964 OFFCURVE", "324 966 OFFCURVE", "328 964 CURVE SMOOTH", "332 962 OFFCURVE", "334 957 OFFCURVE", "333 949 CURVE SMOOTH", "328 877 OFFCURVE", "304 841 OFFCURVE", "261 841 CURVE SMOOTH" ); } ); width = 0; }, { anchors = ( { name = TashkilTashkilAbove; position = "{300, 1203}"; }, { name = _MarkAbove; position = "{268, 801}"; }, { name = _TashkilAbove; position = "{271, 801}"; }, { name = _TashkilAboveDot; position = "{271, 801}"; }, { name = _TashkilTashkilAbove; position = "{271, 801}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "218 834 OFFCURVE", "196 869 OFFCURVE", "196 937 CURVE", "197 990 OFFCURVE", "223 1059 OFFCURVE", "274 1144 CURVE", "282 1158 OFFCURVE", "292 1162 OFFCURVE", "302 1156 CURVE SMOOTH", "313 1150 OFFCURVE", "315 1139 OFFCURVE", "308 1125 CURVE SMOOTH", "267 1042 OFFCURVE", "252 986 OFFCURVE", "263 955 CURVE", "268 943 OFFCURVE", "276 937 OFFCURVE", "286 937 CURVE SMOOTH", "296 937 OFFCURVE", "304 944 OFFCURVE", "311 959 CURVE", "316 970 OFFCURVE", "323 974 OFFCURVE", "331 971 CURVE", "338 968 OFFCURVE", "341 961 OFFCURVE", "340 949 CURVE SMOOTH", "334 873 OFFCURVE", "308 834 OFFCURVE", "261 834 CURVE SMOOTH" ); } ); width = 0; } ); }, { glyphname = "dammainverted-ar.small"; layers = ( { anchors = ( { name = TashkilTashkilAbove2; position = "{-39, 1147}"; }, { name = _MarkAbove; position = "{0, 913}"; }, { name = _TashkilAbove; position = "{0, 913}"; }, { name = _TashkilTashkilAbove; position = "{0, 913}"; } ); components = ( { name = "damma-ar.small"; transform = "{-1, 0, 0, -1, 18, 2119}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilAbove2; position = "{-39, 1147}"; }, { name = _MarkAbove; position = "{0, 913}"; }, { name = _TashkilAbove; position = "{0, 913}"; }, { name = _TashkilTashkilAbove; position = "{0, 913}"; } ); components = ( { name = "damma-ar.small"; transform = "{-1, 0, 0, -1, 18, 2119}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "kasra-ar.small"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{-83, -269}"; }, { name = _TashkilBelow; position = "{10, -271}"; }, { name = _TashkilTashkilBelow; position = "{10, -271}"; } ); components = ( { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 0, -1338}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{-83, -269}"; }, { name = _TashkilBelow; position = "{10, -271}"; }, { name = _TashkilTashkilBelow; position = "{10, -271}"; } ); components = ( { name = "fatha-ar.small"; transform = "{1, 0, 0, 1, 0, -1338}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = "kasratan-ar.small"; layers = ( { anchors = ( { name = TashkilTashkilBelow; position = "{-83, -269}"; }, { name = _TashkilBelow; position = "{10, -271}"; }, { name = _TashkilTashkilBelow; position = "{10, -271}"; } ); components = ( { name = "fathatan-ar.small"; transform = "{1, 0, 0, 1, 0, -1384}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = TashkilTashkilBelow; position = "{-83, -269}"; }, { name = _TashkilBelow; position = "{10, -271}"; }, { name = _TashkilTashkilBelow; position = "{10, -271}"; } ); components = ( { name = "fathatan-ar.small"; transform = "{1, 0, 0, 1, 0, -1384}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); }, { glyphname = zero.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "69 123 OFFCURVE", "76 85 OFFCURVE", "91 53 CURVE SMOOTH", "106 21 OFFCURVE", "125 5 OFFCURVE", "147 5 CURVE SMOOTH", "169 5 OFFCURVE", "187 21 OFFCURVE", "202 54 CURVE SMOOTH", "217 87 OFFCURVE", "224 126 OFFCURVE", "224 171 CURVE SMOOTH", "224 216 OFFCURVE", "217 254 OFFCURVE", "202 284 CURVE SMOOTH", "187 314 OFFCURVE", "169 330 OFFCURVE", "147 330 CURVE SMOOTH", "125 330 OFFCURVE", "106 314 OFFCURVE", "91 283 CURVE SMOOTH", "76 252 OFFCURVE", "69 213 OFFCURVE", "69 168 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1 219 OFFCURVE", "15 264 OFFCURVE", "43 301 CURVE SMOOTH", "71 338 OFFCURVE", "106 356 OFFCURVE", "146 356 CURVE SMOOTH", "186 356 OFFCURVE", "221 337 OFFCURVE", "249 300 CURVE SMOOTH", "277 263 OFFCURVE", "292 218 OFFCURVE", "292 167 CURVE SMOOTH", "292 116 OFFCURVE", "277 72 OFFCURVE", "249 35 CURVE SMOOTH", "221 -2 OFFCURVE", "186 -21 OFFCURVE", "146 -21 CURVE SMOOTH", "106 -21 OFFCURVE", "71 -3 OFFCURVE", "43 34 CURVE SMOOTH", "15 71 OFFCURVE", "1 115 OFFCURVE", "1 167 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "111 301 OFFCURVE", "93 229 OFFCURVE", "93 137 CURVE SMOOTH", "93 45 OFFCURVE", "118 -17 OFFCURVE", "148 -17 CURVE SMOOTH", "186 -17 OFFCURVE", "199 60 OFFCURVE", "199 152 CURVE SMOOTH", "199 244 OFFCURVE", "181 301 OFFCURVE", "148 301 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "218 326 OFFCURVE", "275 259 OFFCURVE", "275 142 CURVE SMOOTH", "275 40 OFFCURVE", "218 -42 OFFCURVE", "148 -42 CURVE SMOOTH", "78 -42 OFFCURVE", "17 25 OFFCURVE", "17 142 CURVE SMOOTH", "17 244 OFFCURVE", "78 326 OFFCURVE", "148 326 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = one.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "62 262 OFFCURVE", "59 266 OFFCURVE", "57 271 CURVE SMOOTH", "55 276 OFFCURVE", "54 280 OFFCURVE", "54 282 CURVE SMOOTH", "54 284 OFFCURVE", "55 286 OFFCURVE", "56 287 CURVE SMOOTH", "86 304 OFFCURVE", "113 320 OFFCURVE", "137 335 CURVE SMOOTH", "161 350 OFFCURVE", "174 358 OFFCURVE", "174 358 CURVE SMOOTH", "176 358 LINE SMOOTH", "179 358 OFFCURVE", "181 352 OFFCURVE", "184 341 CURVE", "179 328 OFFCURVE", "177 311 OFFCURVE", "177 288 CURVE SMOOTH", "177 51 LINE SMOOTH", "177 28 OFFCURVE", "180 15 OFFCURVE", "185 12 CURVE SMOOTH", "198 5 OFFCURVE", "209 2 OFFCURVE", "219 2 CURVE SMOOTH", "222 2 OFFCURVE", "223 0 OFFCURVE", "223 -7 CURVE SMOOTH", "223 -14 OFFCURVE", "222 -18 OFFCURVE", "221 -21 CURVE", "186 -18 OFFCURVE", "161 -17 OFFCURVE", "147 -17 CURVE SMOOTH", "133 -17 OFFCURVE", "108 -18 OFFCURVE", "73 -21 CURVE", "71 -19 OFFCURVE", "70 -15 OFFCURVE", "70 -8 CURVE SMOOTH", "70 -1 OFFCURVE", "71 2 OFFCURVE", "73 2 CURVE SMOOTH", "85 2 OFFCURVE", "97 5 OFFCURVE", "110 12 CURVE SMOOTH", "115 15 OFFCURVE", "118 26 OFFCURVE", "118 47 CURVE SMOOTH", "118 244 LINE SMOOTH", "118 264 OFFCURVE", "118 275 OFFCURVE", "116 277 CURVE SMOOTH", "114 279 OFFCURVE", "111 280 OFFCURVE", "106 280 CURVE SMOOTH", "101 280 OFFCURVE", "87 273 OFFCURVE", "64 261 CURVE" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "116 243 LINE SMOOTH", "116 268 OFFCURVE", "113 273 OFFCURVE", "104 273 CURVE SMOOTH", "98 273 OFFCURVE", "74 267 OFFCURVE", "62 260 CURVE", "57 262 OFFCURVE", "54 268 OFFCURVE", "54 271 CURVE SMOOTH", "54 273 OFFCURVE", "53 277 OFFCURVE", "55 278 CURVE SMOOTH", "122 307 OFFCURVE", "188 337 OFFCURVE", "190 337 CURVE SMOOTH", "191 337 LINE SMOOTH", "194 337 OFFCURVE", "197 328 OFFCURVE", "198 325 CURVE", "198 325 OFFCURVE", "193 309 OFFCURVE", "193 271 CURVE SMOOTH", "193 45 LINE SMOOTH", "193 20 OFFCURVE", "193 2 OFFCURVE", "197 -10 CURVE SMOOTH", "200 -18 OFFCURVE", "227 -20 OFFCURVE", "235 -21 CURVE", "238 -25 OFFCURVE", "237 -39 OFFCURVE", "235 -42 CURVE", "212 -40 OFFCURVE", "179 -38 OFFCURVE", "154 -38 CURVE SMOOTH", "130 -38 OFFCURVE", "97 -40 OFFCURVE", "74 -42 CURVE", "71 -39 OFFCURVE", "71 -25 OFFCURVE", "74 -21 CURVE", "82 -20 OFFCURVE", "109 -18 OFFCURVE", "112 -10 CURVE SMOOTH", "116 2 OFFCURVE", "116 20 OFFCURVE", "116 45 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = two.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "158 302 OFFCURVE", "144 307 OFFCURVE", "127 307 CURVE SMOOTH", "110 307 OFFCURVE", "97 305 OFFCURVE", "86 299 CURVE SMOOTH", "75 293 OFFCURVE", "67 288 OFFCURVE", "61 281 CURVE SMOOTH", "55 274 OFFCURVE", "50 269 OFFCURVE", "46 263 CURVE SMOOTH", "42 257 OFFCURVE", "39 254 OFFCURVE", "37 254 CURVE SMOOTH", "35 254 OFFCURVE", "33 256 OFFCURVE", "30 261 CURVE SMOOTH", "27 266 OFFCURVE", "25 270 OFFCURVE", "25 272 CURVE SMOOTH", "25 274 OFFCURVE", "26 278 OFFCURVE", "29 282 CURVE SMOOTH", "32 286 OFFCURVE", "36 293 OFFCURVE", "42 300 CURVE SMOOTH", "48 307 OFFCURVE", "56 316 OFFCURVE", "66 326 CURVE SMOOTH", "89 347 OFFCURVE", "118 358 OFFCURVE", "151 358 CURVE SMOOTH", "184 358 OFFCURVE", "210 349 OFFCURVE", "227 330 CURVE SMOOTH", "244 311 OFFCURVE", "252 294 OFFCURVE", "252 278 CURVE SMOOTH", "252 262 OFFCURVE", "250 248 OFFCURVE", "247 235 CURVE SMOOTH", "244 222 OFFCURVE", "238 210 OFFCURVE", "230 197 CURVE SMOOTH", "222 184 OFFCURVE", "215 173 OFFCURVE", "208 163 CURVE SMOOTH", "201 153 OFFCURVE", "192 141 OFFCURVE", "179 128 CURVE SMOOTH", "166 115 OFFCURVE", "156 105 OFFCURVE", "149 98 CURVE SMOOTH", "141 90 OFFCURVE", "121 72 OFFCURVE", "89 42 CURVE SMOOTH", "85 38 OFFCURVE", "86 36 OFFCURVE", "91 36 CURVE SMOOTH", "203 36 LINE SMOOTH", "210 36 OFFCURVE", "217 36 OFFCURVE", "222 38 CURVE SMOOTH", "234 42 OFFCURVE", "242 52 OFFCURVE", "249 69 CURVE SMOOTH", "252 75 OFFCURVE", "253 79 OFFCURVE", "254 81 CURVE SMOOTH", "255 83 OFFCURVE", "258 83 OFFCURVE", "265 83 CURVE SMOOTH", "272 83 OFFCURVE", "275 83 OFFCURVE", "275 81 CURVE", "263 23 OFFCURVE", "256 -10 OFFCURVE", "255 -18 CURVE", "159 -17 LINE", "74 -18 OFFCURVE", "30 -18 OFFCURVE", "27 -18 CURVE", "22 -12 OFFCURVE", "19 -4 OFFCURVE", "18 7 CURVE", "55 41 OFFCURVE", "93 84 OFFCURVE", "132 134 CURVE SMOOTH", "171 184 OFFCURVE", "190 219 OFFCURVE", "190 241 CURVE SMOOTH", "190 263 OFFCURVE", "184 280 OFFCURVE", "171 291 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "266 45 OFFCURVE", "241 -29 OFFCURVE", "237 -40 CURVE", "24 -40 LINE", "21 -37 OFFCURVE", "20 -32 OFFCURVE", "19 -29 CURVE", "64 21 OFFCURVE", "100 55 OFFCURVE", "141 119 CURVE SMOOTH", "168 162 OFFCURVE", "174 196 OFFCURVE", "174 223 CURVE SMOOTH", "174 261 OFFCURVE", "144 291 OFFCURVE", "112 291 CURVE SMOOTH", "71 291 OFFCURVE", "50 253 OFFCURVE", "45 249 CURVE", "42 249 OFFCURVE", "32 254 OFFCURVE", "32 263 CURVE", "42 285 OFFCURVE", "84 336 OFFCURVE", "149 336 CURVE SMOOTH", "206 336 OFFCURVE", "251 301 OFFCURVE", "251 238 CURVE SMOOTH", "251 202 OFFCURVE", "234 168 OFFCURVE", "207 136 CURVE SMOOTH", "174 99 OFFCURVE", "137 57 OFFCURVE", "97 20 CURVE", "198 20 LINE SMOOTH", "233 20 OFFCURVE", "243 51 OFFCURVE", "252 72 CURVE SMOOTH", "254 75 OFFCURVE", "257 76 OFFCURVE", "261 76 CURVE SMOOTH", "265 76 OFFCURVE", "270 75 OFFCURVE", "273 73 CURVE" ); } ); width = 292; } ); }, { glyphname = three.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "178 357 OFFCURVE", "196 349 OFFCURVE", "214 333 CURVE SMOOTH", "232 317 OFFCURVE", "241 297 OFFCURVE", "241 274 CURVE SMOOTH", "241 239 OFFCURVE", "221 212 OFFCURVE", "181 195 CURVE", "192 195 OFFCURVE", "203 191 OFFCURVE", "216 184 CURVE SMOOTH", "229 177 OFFCURVE", "241 165 OFFCURVE", "251 150 CURVE SMOOTH", "261 135 OFFCURVE", "267 118 OFFCURVE", "267 99 CURVE SMOOTH", "267 80 OFFCURVE", "262 62 OFFCURVE", "253 46 CURVE SMOOTH", "244 30 OFFCURVE", "232 18 OFFCURVE", "218 8 CURVE SMOOTH", "189 -12 OFFCURVE", "157 -22 OFFCURVE", "122 -22 CURVE SMOOTH", "102 -22 OFFCURVE", "84 -19 OFFCURVE", "66 -13 CURVE SMOOTH", "48 -7 OFFCURVE", "35 0 OFFCURVE", "28 9 CURVE", "27 13 OFFCURVE", "26 17 OFFCURVE", "26 22 CURVE SMOOTH", "26 27 OFFCURVE", "30 32 OFFCURVE", "36 37 CURVE SMOOTH", "42 42 OFFCURVE", "48 44 OFFCURVE", "56 44 CURVE SMOOTH", "64 44 OFFCURVE", "72 41 OFFCURVE", "80 35 CURVE SMOOTH", "88 29 OFFCURVE", "97 23 OFFCURVE", "106 17 CURVE SMOOTH", "115 11 OFFCURVE", "127 7 OFFCURVE", "142 7 CURVE SMOOTH", "157 7 OFFCURVE", "172 14 OFFCURVE", "185 27 CURVE SMOOTH", "198 40 OFFCURVE", "204 58 OFFCURVE", "204 83 CURVE SMOOTH", "204 108 OFFCURVE", "197 128 OFFCURVE", "182 142 CURVE SMOOTH", "167 156 OFFCURVE", "151 164 OFFCURVE", "133 164 CURVE SMOOTH", "125 164 OFFCURVE", "112 161 OFFCURVE", "93 155 CURVE", "89 160 OFFCURVE", "87 165 OFFCURVE", "87 170 CURVE SMOOTH", "87 175 OFFCURVE", "88 180 OFFCURVE", "89 185 CURVE", "115 191 OFFCURVE", "137 200 OFFCURVE", "156 213 CURVE SMOOTH", "175 226 OFFCURVE", "186 243 OFFCURVE", "186 264 CURVE SMOOTH", "186 299 OFFCURVE", "166 317 OFFCURVE", "128 317 CURVE SMOOTH", "114 317 OFFCURVE", "103 313 OFFCURVE", "93 304 CURVE SMOOTH", "83 295 OFFCURVE", "73 284 OFFCURVE", "62 271 CURVE", "59 271 OFFCURVE", "56 274 OFFCURVE", "52 281 CURVE SMOOTH", "48 288 OFFCURVE", "48 292 OFFCURVE", "49 294 CURVE SMOOTH", "76 336 OFFCURVE", "112 357 OFFCURVE", "159 357 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "182 336 OFFCURVE", "243 320 OFFCURVE", "243 261 CURVE SMOOTH", "243 212 OFFCURVE", "193 184 OFFCURVE", "179 178 CURVE", "197 177 OFFCURVE", "266 159 OFFCURVE", "266 89 CURVE SMOOTH", "266 6 OFFCURVE", "185 -44 OFFCURVE", "110 -44 CURVE SMOOTH", "72 -44 OFFCURVE", "43 -32 OFFCURVE", "31 -22 CURVE", "27 -17 OFFCURVE", "24 -3 OFFCURVE", "24 3 CURVE SMOOTH", "24 17 OFFCURVE", "35 34 OFFCURVE", "55 34 CURVE SMOOTH", "70 34 OFFCURVE", "83 18 OFFCURVE", "92 7 CURVE SMOOTH", "103 -6 OFFCURVE", "118 -19 OFFCURVE", "133 -19 CURVE SMOOTH", "170 -19 OFFCURVE", "188 12 OFFCURVE", "188 64 CURVE SMOOTH", "188 108 OFFCURVE", "164 148 OFFCURVE", "125 148 CURVE SMOOTH", "121 148 OFFCURVE", "107 148 OFFCURVE", "92 144 CURVE", "90 147 OFFCURVE", "88 153 OFFCURVE", "88 157 CURVE SMOOTH", "88 160 OFFCURVE", "87 161 OFFCURVE", "88 163 CURVE", "121 169 OFFCURVE", "174 187 OFFCURVE", "174 228 CURVE SMOOTH", "174 264 OFFCURVE", "155 293 OFFCURVE", "119 293 CURVE SMOOTH", "88 293 OFFCURVE", "59 267 OFFCURVE", "55 262 CURVE", "50 264 OFFCURVE", "48 273 OFFCURVE", "48 279 CURVE", "70 307 OFFCURVE", "107 336 OFFCURVE", "154 336 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = four.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "221 -20 OFFCURVE", "211 -22 OFFCURVE", "195 -22 CURVE SMOOTH", "179 -22 OFFCURVE", "169 -22 OFFCURVE", "167 -20 CURVE SMOOTH", "165 -18 OFFCURVE", "165 -16 OFFCURVE", "165 -14 CURVE SMOOTH", "165 78 LINE", "165 79 OFFCURVE", "163 80 OFFCURVE", "160 80 CURVE SMOOTH", "22 80 LINE", "17 86 OFFCURVE", "15 97 OFFCURVE", "14 116 CURVE", "36 143 OFFCURVE", "67 182 OFFCURVE", "107 234 CURVE SMOOTH", "147 286 OFFCURVE", "178 325 OFFCURVE", "201 352 CURVE", "206 357 OFFCURVE", "211 359 OFFCURVE", "216 359 CURVE SMOOTH", "221 359 OFFCURVE", "224 357 OFFCURVE", "224 353 CURVE SMOOTH", "224 125 LINE SMOOTH", "224 123 OFFCURVE", "225 122 OFFCURVE", "229 121 CURVE", "265 121 LINE SMOOTH", "271 121 OFFCURVE", "273 109 OFFCURVE", "273 87 CURVE SMOOTH", "273 84 OFFCURVE", "272 83 OFFCURVE", "268 80 CURVE", "228 80 LINE SMOOTH", "225 80 OFFCURVE", "224 79 OFFCURVE", "224 76 CURVE SMOOTH", "224 -15 LINE" ); }, { closed = 1; nodes = ( "165 253 LINE SMOOTH", "165 256 OFFCURVE", "165 258 OFFCURVE", "164 258 CURVE SMOOTH", "163 258 OFFCURVE", "163 258 OFFCURVE", "162 257 CURVE SMOOTH", "59 127 LINE SMOOTH", "58 126 OFFCURVE", "58 126 OFFCURVE", "58 125 CURVE SMOOTH", "58 122 OFFCURVE", "59 121 OFFCURVE", "62 121 CURVE SMOOTH", "160 121 LINE", "160 121 OFFCURVE", "162 121 OFFCURVE", "163 121 CURVE SMOOTH", "164 121 OFFCURVE", "165 123 OFFCURVE", "165 125 CURVE" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "231 337 OFFCURVE", "243 328 OFFCURVE", "243 321 CURVE SMOOTH", "243 102 LINE", "270 102 LINE SMOOTH", "274 102 OFFCURVE", "277 91 OFFCURVE", "277 74 CURVE SMOOTH", "277 65 OFFCURVE", "272 62 OFFCURVE", "272 62 CURVE", "243 62 LINE", "243 -38 LINE", "243 -38 OFFCURVE", "227 -43 OFFCURVE", "202 -43 CURVE SMOOTH", "183 -43 OFFCURVE", "169 -41 OFFCURVE", "169 -35 CURVE SMOOTH", "169 62 LINE", "20 62 LINE", "15 64 OFFCURVE", "14 69 OFFCURVE", "14 76 CURVE", "84 164 OFFCURVE", "153 252 OFFCURVE", "216 329 CURVE SMOOTH", "220 334 OFFCURVE", "222 337 OFFCURVE", "227 337 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "64 102 LINE", "169 102 LINE", "169 233 LINE" ); } ); width = 292; } ); }, { glyphname = five.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "175 7 OFFCURVE", "196 34 OFFCURVE", "196 87 CURVE SMOOTH", "196 113 OFFCURVE", "190 134 OFFCURVE", "176 149 CURVE SMOOTH", "162 164 OFFCURVE", "145 171 OFFCURVE", "126 171 CURVE SMOOTH", "107 171 OFFCURVE", "92 171 OFFCURVE", "82 170 CURVE SMOOTH", "72 169 OFFCURVE", "65 169 OFFCURVE", "61 168 CURVE SMOOTH", "57 167 OFFCURVE", "54 167 OFFCURVE", "52 167 CURVE SMOOTH", "50 167 OFFCURVE", "47 170 OFFCURVE", "43 176 CURVE", "61 284 OFFCURVE", "71 340 OFFCURVE", "73 345 CURVE SMOOTH", "75 350 OFFCURVE", "76 353 OFFCURVE", "79 353 CURVE SMOOTH", "89 353 OFFCURVE", "107 354 OFFCURVE", "132 354 CURVE SMOOTH", "191 354 OFFCURVE", "225 355 OFFCURVE", "235 358 CURVE", "239 353 OFFCURVE", "241 345 OFFCURVE", "241 334 CURVE SMOOTH", "241 323 OFFCURVE", "238 312 OFFCURVE", "232 300 CURVE", "184 298 OFFCURVE", "150 297 OFFCURVE", "129 298 CURVE SMOOTH", "108 299 OFFCURVE", "98 299 OFFCURVE", "96 299 CURVE SMOOTH", "94 299 OFFCURVE", "93 296 OFFCURVE", "93 293 CURVE", "79 218 LINE", "97 220 OFFCURVE", "116 221 OFFCURVE", "136 221 CURVE SMOOTH", "170 221 OFFCURVE", "199 210 OFFCURVE", "223 187 CURVE SMOOTH", "247 164 OFFCURVE", "259 134 OFFCURVE", "259 99 CURVE SMOOTH", "259 64 OFFCURVE", "246 35 OFFCURVE", "222 12 CURVE SMOOTH", "198 -11 OFFCURVE", "162 -22 OFFCURVE", "114 -22 CURVE SMOOTH", "99 -22 OFFCURVE", "82 -19 OFFCURVE", "64 -13 CURVE SMOOTH", "46 -7 OFFCURVE", "33 0 OFFCURVE", "26 9 CURVE", "25 14 OFFCURVE", "24 19 OFFCURVE", "24 23 CURVE SMOOTH", "24 27 OFFCURVE", "28 32 OFFCURVE", "34 37 CURVE SMOOTH", "40 42 OFFCURVE", "47 44 OFFCURVE", "55 44 CURVE SMOOTH", "63 44 OFFCURVE", "76 38 OFFCURVE", "92 26 CURVE SMOOTH", "108 14 OFFCURVE", "122 7 OFFCURVE", "132 7 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "207 208 OFFCURVE", "266 157 OFFCURVE", "266 95 CURVE SMOOTH", "266 12 OFFCURVE", "187 -44 OFFCURVE", "112 -44 CURVE SMOOTH", "75 -44 OFFCURVE", "45 -32 OFFCURVE", "33 -22 CURVE", "29 -17 OFFCURVE", "26 -3 OFFCURVE", "26 3 CURVE SMOOTH", "26 17 OFFCURVE", "37 34 OFFCURVE", "57 34 CURVE SMOOTH", "72 34 OFFCURVE", "85 18 OFFCURVE", "94 7 CURVE SMOOTH", "105 -6 OFFCURVE", "121 -19 OFFCURVE", "136 -19 CURVE SMOOTH", "172 -19 OFFCURVE", "191 12 OFFCURVE", "191 64 CURVE SMOOTH", "191 118 OFFCURVE", "144 152 OFFCURVE", "110 152 CURVE SMOOTH", "73 152 OFFCURVE", "62 147 OFFCURVE", "56 144 CURVE", "52 144 OFFCURVE", "50 152 OFFCURVE", "50 156 CURVE", "51 157 OFFCURVE", "78 303 OFFCURVE", "83 332 CURVE", "108 332 OFFCURVE", "150 332 OFFCURVE", "187 332 CURVE SMOOTH", "212 332 OFFCURVE", "233 337 OFFCURVE", "241 339 CURVE", "244 337 OFFCURVE", "249 337 OFFCURVE", "249 330 CURVE SMOOTH", "249 320 OFFCURVE", "231 282 OFFCURVE", "227 274 CURVE", "196 271 OFFCURVE", "165 270 OFFCURVE", "139 270 CURVE SMOOTH", "121 269 OFFCURVE", "106 269 OFFCURVE", "100 269 CURVE", "99 263 OFFCURVE", "87 200 OFFCURVE", "87 200 CURVE", "101 204 OFFCURVE", "127 208 OFFCURVE", "149 208 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = six.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "85 119 OFFCURVE", "83 105 OFFCURVE", "83 85 CURVE SMOOTH", "83 65 OFFCURVE", "89 47 OFFCURVE", "101 31 CURVE SMOOTH", "113 15 OFFCURVE", "128 7 OFFCURVE", "147 7 CURVE SMOOTH", "166 7 OFFCURVE", "180 15 OFFCURVE", "190 30 CURVE SMOOTH", "200 45 OFFCURVE", "205 65 OFFCURVE", "205 87 CURVE SMOOTH", "205 109 OFFCURVE", "199 127 OFFCURVE", "188 141 CURVE SMOOTH", "177 155 OFFCURVE", "160 163 OFFCURVE", "138 163 CURVE SMOOTH", "127 163 OFFCURVE", "117 159 OFFCURVE", "108 152 CURVE SMOOTH", "99 145 OFFCURVE", "93 137 OFFCURVE", "89 128 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "212 -11 OFFCURVE", "182 -22 OFFCURVE", "146 -22 CURVE SMOOTH", "110 -22 OFFCURVE", "80 -11 OFFCURVE", "56 13 CURVE SMOOTH", "32 37 OFFCURVE", "21 70 OFFCURVE", "21 111 CURVE SMOOTH", "21 166 OFFCURVE", "41 216 OFFCURVE", "81 261 CURVE SMOOTH", "121 306 OFFCURVE", "171 339 OFFCURVE", "231 360 CURVE", "236 359 OFFCURVE", "240 355 OFFCURVE", "244 349 CURVE SMOOTH", "248 343 OFFCURVE", "250 338 OFFCURVE", "250 334 CURVE", "168 302 OFFCURVE", "115 249 OFFCURVE", "91 174 CURVE", "89 171 OFFCURVE", "89 169 OFFCURVE", "90 169 CURVE SMOOTH", "91 169 OFFCURVE", "93 168 OFFCURVE", "94 169 CURVE SMOOTH", "110 190 OFFCURVE", "136 201 OFFCURVE", "173 201 CURVE SMOOTH", "196 201 OFFCURVE", "217 191 OFFCURVE", "237 171 CURVE SMOOTH", "257 151 OFFCURVE", "268 126 OFFCURVE", "268 94 CURVE SMOOTH", "268 62 OFFCURVE", "256 35 OFFCURVE", "234 12 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "102 131 OFFCURVE", "101 106 OFFCURVE", "101 90 CURVE SMOOTH", "101 40 OFFCURVE", "113 -19 OFFCURVE", "150 -19 CURVE SMOOTH", "173 -19 OFFCURVE", "191 14 OFFCURVE", "191 67 CURVE SMOOTH", "191 117 OFFCURVE", "176 163 OFFCURVE", "134 163 CURVE SMOOTH", "127 163 OFFCURVE", "113 160 OFFCURVE", "105 151 CURVE" ); }, { closed = 1; nodes = ( "217 198 OFFCURVE", "268 166 OFFCURVE", "268 81 CURVE SMOOTH", "268 13 OFFCURVE", "206 -44 OFFCURVE", "144 -44 CURVE SMOOTH", "79 -44 OFFCURVE", "24 25 OFFCURVE", "24 102 CURVE SMOOTH", "24 166 OFFCURVE", "58 223 OFFCURVE", "92 259 CURVE SMOOTH", "143 313 OFFCURVE", "203 333 OFFCURVE", "242 338 CURVE", "247 334 OFFCURVE", "248 328 OFFCURVE", "247 322 CURVE", "173 292 OFFCURVE", "131 242 OFFCURVE", "112 183 CURVE", "127 192 OFFCURVE", "146 198 OFFCURVE", "160 198 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = seven.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "16 353 OFFCURVE", "19 356 OFFCURVE", "27 356 CURVE SMOOTH", "229 356 LINE", "270 358 LINE SMOOTH", "273 358 OFFCURVE", "273 355 OFFCURVE", "273 350 CURVE SMOOTH", "273 345 OFFCURVE", "268 333 OFFCURVE", "257 314 CURVE SMOOTH", "61 -26 LINE", "60 -27 OFFCURVE", "57 -27 OFFCURVE", "53 -27 CURVE SMOOTH", "49 -27 OFFCURVE", "46 -25 OFFCURVE", "43 -21 CURVE SMOOTH", "40 -17 OFFCURVE", "38 -12 OFFCURVE", "38 -8 CURVE SMOOTH", "38 -4 OFFCURVE", "38 -1 OFFCURVE", "39 0 CURVE SMOOTH", "216 302 LINE", "70 302 LINE SMOOTH", "55 302 OFFCURVE", "46 292 OFFCURVE", "41 272 CURVE SMOOTH", "39 262 OFFCURVE", "37 257 OFFCURVE", "37 257 CURVE SMOOTH", "25 255 OFFCURVE", "17 257 OFFCURVE", "12 262 CURVE", "13 274 OFFCURVE", "15 303 OFFCURVE", "16 348 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "235 333 OFFCURVE", "264 336 OFFCURVE", "267 336 CURVE SMOOTH", "271 336 OFFCURVE", "271 330 OFFCURVE", "271 327 CURVE SMOOTH", "271 321 OFFCURVE", "265 310 OFFCURVE", "255 291 CURVE SMOOTH", "96 -45 LINE", "94 -47 OFFCURVE", "87 -47 OFFCURVE", "86 -47 CURVE SMOOTH", "82 -47 OFFCURVE", "60 -44 OFFCURVE", "60 -32 CURVE", "85 3 OFFCURVE", "169 161 OFFCURVE", "223 274 CURVE", "87 274 LINE SMOOTH", "58 274 OFFCURVE", "49 247 OFFCURVE", "41 225 CURVE SMOOTH", "40 223 OFFCURVE", "40 222 OFFCURVE", "34 222 CURVE SMOOTH", "28 221 OFFCURVE", "22 223 OFFCURVE", "20 226 CURVE", "28 255 OFFCURVE", "42 315 OFFCURVE", "46 333 CURVE", "55 333 OFFCURVE", "214 333 OFFCURVE", "214 333 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = eight.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "54 227 OFFCURVE", "50 245 OFFCURVE", "50 268 CURVE SMOOTH", "50 291 OFFCURVE", "58 312 OFFCURVE", "76 330 CURVE SMOOTH", "94 348 OFFCURVE", "117 358 OFFCURVE", "144 358 CURVE SMOOTH", "171 358 OFFCURVE", "193 350 OFFCURVE", "211 334 CURVE SMOOTH", "229 318 OFFCURVE", "238 299 OFFCURVE", "238 276 CURVE SMOOTH", "238 253 OFFCURVE", "232 235 OFFCURVE", "221 220 CURVE SMOOTH", "210 205 OFFCURVE", "201 195 OFFCURVE", "193 191 CURVE SMOOTH", "185 187 OFFCURVE", "181 185 OFFCURVE", "181 185 CURVE SMOOTH", "181 185 OFFCURVE", "182 184 OFFCURVE", "183 183 CURVE SMOOTH", "204 172 OFFCURVE", "221 156 OFFCURVE", "236 137 CURVE SMOOTH", "251 118 OFFCURVE", "258 97 OFFCURVE", "258 72 CURVE SMOOTH", "258 47 OFFCURVE", "247 25 OFFCURVE", "225 5 CURVE SMOOTH", "203 -15 OFFCURVE", "177 -25 OFFCURVE", "145 -25 CURVE SMOOTH", "113 -25 OFFCURVE", "87 -16 OFFCURVE", "66 1 CURVE SMOOTH", "45 18 OFFCURVE", "35 42 OFFCURVE", "35 72 CURVE SMOOTH", "35 87 OFFCURVE", "40 100 OFFCURVE", "48 114 CURVE SMOOTH", "62 136 OFFCURVE", "80 154 OFFCURVE", "102 166 CURVE SMOOTH", "103 167 OFFCURVE", "103 167 OFFCURVE", "103 168 CURVE SMOOTH", "103 169 OFFCURVE", "103 169 OFFCURVE", "102 170 CURVE SMOOTH", "84 183 OFFCURVE", "70 197 OFFCURVE", "62 212 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "107 305 OFFCURVE", "104 293 OFFCURVE", "104 279 CURVE SMOOTH", "104 265 OFFCURVE", "105 253 OFFCURVE", "108 244 CURVE SMOOTH", "115 226 OFFCURVE", "130 211 OFFCURVE", "155 199 CURVE SMOOTH", "156 198 OFFCURVE", "156 198 OFFCURVE", "157 198 CURVE SMOOTH", "161 200 LINE", "177 214 OFFCURVE", "186 233 OFFCURVE", "186 258 CURVE SMOOTH", "186 283 OFFCURVE", "181 300 OFFCURVE", "173 312 CURVE SMOOTH", "165 324 OFFCURVE", "155 330 OFFCURVE", "143 330 CURVE SMOOTH", "131 330 OFFCURVE", "121 325 OFFCURVE", "114 315 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "109 133 OFFCURVE", "98 111 OFFCURVE", "98 86 CURVE SMOOTH", "98 61 OFFCURVE", "102 41 OFFCURVE", "111 26 CURVE SMOOTH", "120 11 OFFCURVE", "132 4 OFFCURVE", "148 4 CURVE SMOOTH", "164 4 OFFCURVE", "176 11 OFFCURVE", "184 24 CURVE SMOOTH", "192 37 OFFCURVE", "195 52 OFFCURVE", "195 71 CURVE SMOOTH", "195 90 OFFCURVE", "189 106 OFFCURVE", "177 119 CURVE SMOOTH", "165 132 OFFCURVE", "154 141 OFFCURVE", "146 146 CURVE SMOOTH", "138 151 OFFCURVE", "133 153 OFFCURVE", "132 153 CURVE SMOOTH", "131 153 OFFCURVE", "131 153 OFFCURVE", "130 152 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "177 -19 OFFCURVE", "192 3 OFFCURVE", "192 29 CURVE SMOOTH", "192 74 OFFCURVE", "144 109 OFFCURVE", "126 121 CURVE SMOOTH", "123 124 OFFCURVE", "123 124 OFFCURVE", "121 124 CURVE SMOOTH", "120 124 OFFCURVE", "119 124 OFFCURVE", "118 123 CURVE SMOOTH", "106 108 OFFCURVE", "99 81 OFFCURVE", "99 51 CURVE SMOOTH", "99 18 OFFCURVE", "113 -19 OFFCURVE", "148 -19 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "121 307 OFFCURVE", "107 286 OFFCURVE", "107 260 CURVE SMOOTH", "107 220 OFFCURVE", "143 194 OFFCURVE", "157 186 CURVE SMOOTH", "159 185 OFFCURVE", "162 183 OFFCURVE", "165 183 CURVE SMOOTH", "166 183 OFFCURVE", "168 184 OFFCURVE", "168 185 CURVE SMOOTH", "179 201 OFFCURVE", "180 222 OFFCURVE", "180 245 CURVE SMOOTH", "180 271 OFFCURVE", "169 307 OFFCURVE", "143 307 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "198 331 OFFCURVE", "253 303 OFFCURVE", "253 247 CURVE SMOOTH", "253 210 OFFCURVE", "222 181 OFFCURVE", "189 168 CURVE SMOOTH", "187 167 OFFCURVE", "187 165 OFFCURVE", "189 165 CURVE SMOOTH", "210 152 OFFCURVE", "268 111 OFFCURVE", "268 58 CURVE SMOOTH", "268 -5 OFFCURVE", "205 -44 OFFCURVE", "143 -44 CURVE SMOOTH", "84 -44 OFFCURVE", "23 -21 OFFCURVE", "23 49 CURVE SMOOTH", "23 98 OFFCURVE", "63 129 OFFCURVE", "98 139 CURVE SMOOTH", "99 140 OFFCURVE", "99 141 OFFCURVE", "97 142 CURVE SMOOTH", "76 160 OFFCURVE", "31 190 OFFCURVE", "31 245 CURVE SMOOTH", "31 297 OFFCURVE", "89 331 OFFCURVE", "144 331 CURVE SMOOTH" ); } ); width = 292; } ); }, { glyphname = nine.small; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "206 218 OFFCURVE", "208 233 OFFCURVE", "208 253 CURVE SMOOTH", "208 273 OFFCURVE", "202 291 OFFCURVE", "190 307 CURVE SMOOTH", "178 323 OFFCURVE", "163 331 OFFCURVE", "144 331 CURVE SMOOTH", "125 331 OFFCURVE", "111 323 OFFCURVE", "101 308 CURVE SMOOTH", "91 293 OFFCURVE", "86 273 OFFCURVE", "86 251 CURVE SMOOTH", "86 229 OFFCURVE", "92 211 OFFCURVE", "103 197 CURVE SMOOTH", "114 183 OFFCURVE", "131 175 OFFCURVE", "153 175 CURVE SMOOTH", "164 175 OFFCURVE", "174 179 OFFCURVE", "183 186 CURVE SMOOTH", "192 193 OFFCURVE", "198 200 OFFCURVE", "202 209 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "79 349 OFFCURVE", "109 360 OFFCURVE", "145 360 CURVE SMOOTH", "181 360 OFFCURVE", "211 348 OFFCURVE", "235 324 CURVE SMOOTH", "259 300 OFFCURVE", "271 268 OFFCURVE", "271 227 CURVE SMOOTH", "271 172 OFFCURVE", "250 122 OFFCURVE", "210 77 CURVE SMOOTH", "170 32 OFFCURVE", "120 -1 OFFCURVE", "60 -22 CURVE", "55 -21 OFFCURVE", "51 -17 OFFCURVE", "47 -11 CURVE SMOOTH", "43 -5 OFFCURVE", "41 -1 OFFCURVE", "41 3 CURVE", "123 35 OFFCURVE", "176 89 OFFCURVE", "200 164 CURVE", "202 167 OFFCURVE", "202 169 OFFCURVE", "201 169 CURVE SMOOTH", "200 169 OFFCURVE", "198 169 OFFCURVE", "197 168 CURVE SMOOTH", "181 147 OFFCURVE", "155 137 OFFCURVE", "118 137 CURVE SMOOTH", "95 137 OFFCURVE", "74 147 OFFCURVE", "54 167 CURVE SMOOTH", "34 187 OFFCURVE", "23 212 OFFCURVE", "23 244 CURVE SMOOTH", "23 276 OFFCURVE", "35 303 OFFCURVE", "57 326 CURVE SMOOTH" ); } ); width = 292; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "190 160 OFFCURVE", "191 186 OFFCURVE", "191 205 CURVE SMOOTH", "191 254 OFFCURVE", "179 313 OFFCURVE", "142 313 CURVE SMOOTH", "119 313 OFFCURVE", "101 280 OFFCURVE", "101 228 CURVE SMOOTH", "101 178 OFFCURVE", "116 132 OFFCURVE", "157 132 CURVE SMOOTH", "164 132 OFFCURVE", "178 135 OFFCURVE", "187 143 CURVE" ); }, { closed = 1; nodes = ( "119 3 OFFCURVE", "161 52 OFFCURVE", "179 112 CURVE", "164 103 OFFCURVE", "146 97 OFFCURVE", "131 97 CURVE SMOOTH", "74 97 OFFCURVE", "24 128 OFFCURVE", "24 213 CURVE SMOOTH", "24 282 OFFCURVE", "86 338 OFFCURVE", "148 338 CURVE SMOOTH", "214 338 OFFCURVE", "268 269 OFFCURVE", "268 193 CURVE SMOOTH", "268 128 OFFCURVE", "234 72 OFFCURVE", "199 35 CURVE SMOOTH", "149 -18 OFFCURVE", "89 -38 OFFCURVE", "49 -44 CURVE", "44 -40 OFFCURVE", "44 -34 OFFCURVE", "46 -28 CURVE" ); } ); width = 292; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{59, 801}"; }, { name = TashkilBelow; position = "{83, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 113, -239}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = aBaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = aBaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = aBaa.medi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{83, 801}"; }, { name = TashkilBelow; position = "{117, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 132, -190}"; }, { name = aBaa.medi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 300; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaRaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 300; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{95, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 134, -166}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; }, { name = aBaa.medi.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; }, { name = aBaa.medi.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaMemFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; }, { name = aBaa.medi.BaaMemFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 337; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{215, -396}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 206, -352}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 179, 322}"; }, { name = aBaa.medi.BaaMemFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 337; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = aBaa.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = aBaa.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.LamBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = aBaa.medi.LamBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 140; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{142, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 8, 532}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 131, -215}"; }, { name = aBaa.medi.LamBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 140; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaDal"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{39, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 15, -215}"; }, { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaMemHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 162, -195}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{72, -371}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 60, -207}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = aBaa.medi.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = aBaa.medi.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaBaaYaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = aBaa.medi.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 357; }, { anchors = ( { name = TashkilAbove; position = "{96, 801}"; }, { name = TashkilBelow; position = "{277, -415}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 53, 504}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 268, -371}"; }, { name = aBaa.medi.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 357; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = aBaa.medi.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = aBaa.medi.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.KafBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = aBaa.medi.KafBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 94, -190}"; }, { name = aBaa.medi.KafBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = aBaa.medi.BaaBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = aBaa.medi.BaaBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaBaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = aBaa.medi.BaaBaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 168; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{49, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 113, 225}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 103, -171}"; }, { name = aBaa.medi.BaaBaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 168; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 269; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaNonIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 269; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{104, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 104, -181}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 275; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaSenInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{145, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -190}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 127, -205}"; }, { name = aBaa.medi.BaaRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 127, -205}"; }, { name = aBaa.medi.BaaRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaRaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 127, -205}"; }, { name = aBaa.medi.BaaRaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{112, 801}"; }, { name = TashkilBelow; position = "{176, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 142, 420}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 127, -205}"; }, { name = aBaa.medi.BaaRaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{143, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 143, -215}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{46, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 100, -68}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 451; }, { anchors = ( { name = TashkilAbove; position = "{257, 801}"; }, { name = TashkilBelow; position = "{292, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 257, 531}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 341, -215}"; }, { name = aBaa.medi.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 451; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = aBaa.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = aBaa.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.SenBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = aBaa.medi.SenBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 217; }, { anchors = ( { name = TashkilAbove; position = "{242, 801}"; }, { name = TashkilBelow; position = "{233, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -51, 542}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 233, -176}"; }, { name = aBaa.medi.SenBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 217; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 295; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{73, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 118, -244}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 295; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{86, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 86, -107}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 182; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{37, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -31, 482}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 37, -210}"; }, { name = aBaa.medi.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 182; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = aBaa.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = aBaa.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.KafBaaMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = aBaa.medi.KafBaaMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 179; }, { anchors = ( { name = TashkilAbove; position = "{24, 801}"; }, { name = TashkilBelow; position = "{103, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 596}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 99, -190}"; }, { name = aBaa.medi.KafBaaMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 179; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = aBaa.medi.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = aBaa.medi.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaNonFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = aBaa.medi.BaaNonFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 218; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{19, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 363}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 78, -205}"; }, { name = aBaa.medi.BaaNonFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 218; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = aBaa.medi.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = aBaa.medi.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaYaaFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = aBaa.medi.BaaYaaFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 307; }, { anchors = ( { name = TashkilAbove; position = "{98, 801}"; }, { name = TashkilBelow; position = "{259, -503}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 103, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 250, -459}"; }, { name = aBaa.medi.BaaYaaFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 307; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaSenAltInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{128, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -258}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = aBaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = aBaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.AboveHaa"; layers = ( { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = aBaa.init.AboveHaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 543; }, { anchors = ( { name = TashkilAbove; position = "{327, 917}"; }, { name = TashkilBelow; position = "{476, -200}"; }, { name = exit; position = "{0, 205}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 327, 628}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 403, -60}"; }, { name = aBaa.init.AboveHaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 543; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaHaaInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{459, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 464, -166}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaHaaMemInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{130, 917}"; }, { name = TashkilBelow; position = "{214, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 214, -183}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 314; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{107, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 137, -190}"; }, { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 314; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = aBaa.medi.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = aBaa.medi.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.High"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = aBaa.medi.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 244; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{135, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 95, 480}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 135, -215}"; }, { name = aBaa.medi.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 244; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.Wide"; layers = ( { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 332; }, { anchors = ( { name = TashkilAbove; position = "{146, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 154, -239}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 332; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaYaaIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{167, -391}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 167, -283}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaMemIsol"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{294, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 294, -189}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 235; }, { anchors = ( { name = TashkilAbove; position = "{187, 801}"; }, { name = TashkilBelow; position = "{152, -405}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 98, 322}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 142, -361}"; }, { name = aBaa.medi.BaaMemAlfFina; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 235; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaHehInit"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{250, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 251, -186}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = aBaa.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = aBaa.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.BaaHehMedi"; layers = ( { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = aBaa.medi.BaaHehMedi; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 311; }, { anchors = ( { name = TashkilAbove; position = "{190, 801}"; }, { name = TashkilBelow; position = "{164, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 173, 371}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 164, -207}"; }, { name = aBaa.medi.BaaHehMedi; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 311; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.LD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 190; }, { anchors = ( { name = TashkilAbove; position = "{93, 801}"; }, { name = TashkilBelow; position = "{88, -479}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 79, -435}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 83, 322}"; }, { name = aBaa.init; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 190; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{119, 801}"; }, { name = TashkilBelow; position = "{105, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 134, 396}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 95, -435}"; }, { name = aBaa.init.BaaRaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaDalLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = aBaa.init.BaaDal; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 170; }, { anchors = ( { name = TashkilAbove; position = "{76, 801}"; }, { name = TashkilBelow; position = "{49, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 76, 433}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 39, -435}"; }, { name = aBaa.init.BaaDal; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 170; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 310; }, { anchors = ( { name = TashkilAbove; position = "{44, 1062}"; }, { name = TashkilBelow; position = "{171, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 44, 774}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.BaaMemHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 310; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 203; }, { anchors = ( { name = TashkilAbove; position = "{63, 801}"; }, { name = TashkilBelow; position = "{70, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 48, 549}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 60, -435}"; }, { name = aBaa.init.BaaBaaYaa; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 203; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaNonIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 176; }, { anchors = ( { name = TashkilAbove; position = "{0, 801}"; }, { name = TashkilBelow; position = "{113, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 439}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 104, -435}"; }, { name = aBaa.init.BaaNonIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 176; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaSenInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{59, 903}"; }, { name = TashkilBelow; position = "{160, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 150, -435}"; }, { name = aBaa.init.BaaSenInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 265; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{153, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 64, 522}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 143, -435}"; }, { name = aBaa.init.BaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 265; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 161; }, { anchors = ( { name = TashkilAbove; position = "{95, 801}"; }, { name = TashkilBelow; position = "{110, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 100, 547}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 101, -435}"; }, { name = aBaa.init.BaaBaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 161; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 247; }, { anchors = ( { name = TashkilAbove; position = "{122, 801}"; }, { name = TashkilBelow; position = "{123, -464}"; }, { name = exit; position = "{0, 83}"; } ); components = ( { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 113, -420}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 143, 334}"; }, { name = aBaa.init.BaaBaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 247; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 162; }, { anchors = ( { name = TashkilAbove; position = "{91, 845}"; }, { name = TashkilBelow; position = "{96, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 91, 557}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 86, -435}"; }, { name = aBaa.init.BaaBaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 162; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 219; }, { anchors = ( { name = TashkilAbove; position = "{70, 801}"; }, { name = TashkilBelow; position = "{138, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 59, 548}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 128, -435}"; }, { name = aBaa.init.BaaSenAltInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 219; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaHaaInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 587; }, { anchors = ( { name = TashkilAbove; position = "{347, 903}"; }, { name = TashkilBelow; position = "{474, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 347, 615}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 464, -435}"; }, { name = aBaa.init.BaaHaaInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 587; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 354; }, { anchors = ( { name = TashkilAbove; position = "{178, 801}"; }, { name = TashkilBelow; position = "{224, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 129, 682}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 214, -435}"; }, { name = aBaa.init.BaaHaaMemInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 354; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.HighLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = aBaa.init.High; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 147; }, { anchors = ( { name = TashkilAbove; position = "{46, 801}"; }, { name = TashkilBelow; position = "{147, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 74, 322}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 137, -435}"; }, { name = aBaa.init.High; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 147; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 137, 432}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.WideLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.Wide; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 285; }, { anchors = ( { name = TashkilAbove; position = "{115, 801}"; }, { name = TashkilBelow; position = "{172, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 137, 310}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 162, -435}"; }, { name = aBaa.init.Wide; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 285; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 258; }, { anchors = ( { name = TashkilAbove; position = "{60, 854}"; }, { name = TashkilBelow; position = "{177, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 41, 566}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 167, -435}"; }, { name = aBaa.init.BaaYaaIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 258; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaMemIsolLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 391; }, { anchors = ( { name = TashkilAbove; position = "{218, 801}"; }, { name = TashkilBelow; position = "{304, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 218, 484}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 294, -435}"; }, { name = aBaa.init.BaaMemIsol; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 391; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaHehInitLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 384; }, { anchors = ( { name = TashkilAbove; position = "{265, 801}"; }, { name = TashkilBelow; position = "{261, -479}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 227, 371}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 251, -435}"; }, { name = aBaa.init.BaaHehInit; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 384; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = aBaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = aBaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = aBaa.init.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 791; }, { anchors = ( { name = TashkilAbove; position = "{73, 801}"; }, { name = TashkilBelow; position = "{98, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -145, 676}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 91, -198}"; }, { name = aBaa.init.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 791; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{96, -327}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 84, -269}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaHehLD"; layers = ( { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = aBaa.init.BaaBaaHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 233; }, { anchors = ( { name = TashkilAbove; position = "{87, 801}"; }, { name = TashkilBelow; position = "{94, -527}"; } ); components = ( { name = aBaa.init.BaaBaaHeh; }, { name = "twodotshorizontalbelow-ar.l"; transform = "{1, 0, 0, 1, 84, -435}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 79, 273}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 233; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = aBaa.medi.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = aBaa.medi.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.medi.YaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = aBaa.medi.YaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 205; }, { anchors = ( { name = TashkilAbove; position = "{104, 801}"; }, { name = TashkilBelow; position = "{104, -493}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 30, 293}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 79, -449}"; }, { name = aBaa.medi.YaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 205; } ); }, { glyphname = "yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; }, { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; }, { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = "yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; }, { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 642; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{233, -493}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 150, -449}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 127, 273}"; }, { name = aBaa.init.BaaBaaYaaBari; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 642; } ); }, { glyphname = ampersand.ara; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "237 562 OFFCURVE", "246 584 OFFCURVE", "252 603 CURVE", "252 645 OFFCURVE", "241 682 OFFCURVE", "218 716 CURVE", "203 699 OFFCURVE", "191 681 OFFCURVE", "183 660 CURVE", "184 619 OFFCURVE", "198 579 OFFCURVE", "223 537 CURVE" ); }, { closed = 1; nodes = ( "274 133 OFFCURVE", "259 121 OFFCURVE", "239 120 CURVE SMOOTH", "206 119 OFFCURVE", "190 139 OFFCURVE", "188 179 CURVE SMOOTH", "187 200 OFFCURVE", "195 224 OFFCURVE", "211 250 CURVE SMOOTH", "237 292 OFFCURVE", "265 293 OFFCURVE", "297 254 CURVE SMOOTH", "320 225 OFFCURVE", "331 191 OFFCURVE", "330 151 CURVE", "330 136 OFFCURVE", "328 119 OFFCURVE", "325 101 CURVE SMOOTH", "309 5 OFFCURVE", "263 -43 OFFCURVE", "188 -43 CURVE SMOOTH", "102 -43 OFFCURVE", "56 10 OFFCURVE", "49 115 CURVE SMOOTH", "48 129 OFFCURVE", "50 151 OFFCURVE", "55 180 CURVE SMOOTH", "65 237 OFFCURVE", "86 297 OFFCURVE", "121 359 CURVE SMOOTH", "128 371 OFFCURVE", "150 411 OFFCURVE", "190 479 CURVE", "170 514 OFFCURVE", "160 555 OFFCURVE", "160 600 CURVE SMOOTH", "160 619 OFFCURVE", "162 640 OFFCURVE", "166 661 CURVE SMOOTH", "177 723 OFFCURVE", "197 769 OFFCURVE", "226 798 CURVE SMOOTH", "228 800 OFFCURVE", "229 800 OFFCURVE", "230 800 CURVE SMOOTH", "232 799 OFFCURVE", "234 798 OFFCURVE", "236 796 CURVE SMOOTH", "262 764 OFFCURVE", "276 721 OFFCURVE", "276 667 CURVE SMOOTH", "276 648 OFFCURVE", "274 628 OFFCURVE", "271 607 CURVE SMOOTH", "264 560 OFFCURVE", "254 526 OFFCURVE", "242 506 CURVE", "254 489 OFFCURVE", "277 462 OFFCURVE", "310 425 CURVE SMOOTH", "341 390 OFFCURVE", "366 359 OFFCURVE", "384 330 CURVE SMOOTH", "414 282 OFFCURVE", "430 226 OFFCURVE", "430 159 CURVE SMOOTH", "430 135 OFFCURVE", "427 107 OFFCURVE", "422 75 CURVE SMOOTH", "414 22 OFFCURVE", "402 -20 OFFCURVE", "384 -52 CURVE SMOOTH", "338 -135 OFFCURVE", "260 -176 OFFCURVE", "149 -176 CURVE SMOOTH", "143 -176 OFFCURVE", "140 -173 OFFCURVE", "140 -168 CURVE SMOOTH", "140 -163 OFFCURVE", "142 -160 OFFCURVE", "146 -158 CURVE SMOOTH", "276 -102 OFFCURVE", "362 -23 OFFCURVE", "406 80 CURVE", "406 147 OFFCURVE", "390 206 OFFCURVE", "360 258 CURVE SMOOTH", "349 278 OFFCURVE", "324 310 OFFCURVE", "284 356 CURVE SMOOTH", "247 399 OFFCURVE", "222 429 OFFCURVE", "211 445 CURVE", "203 431 OFFCURVE", "188 404 OFFCURVE", "167 367 CURVE SMOOTH", "117 279 OFFCURVE", "85 217 OFFCURVE", "73 181 CURVE", "81 83 OFFCURVE", "124 34 OFFCURVE", "199 34 CURVE SMOOTH", "242 34 OFFCURVE", "278 58 OFFCURVE", "306 105 CURVE", "303 125 OFFCURVE", "296 143 OFFCURVE", "285 158 CURVE" ); } ); width = 478; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "235 570 OFFCURVE", "240 582 OFFCURVE", "243 593 CURVE", "243 632 OFFCURVE", "232 667 OFFCURVE", "211 699 CURVE", "204 690 OFFCURVE", "198 680 OFFCURVE", "193 669 CURVE", "195 632 OFFCURVE", "206 595 OFFCURVE", "228 557 CURVE" ); }, { closed = 1; nodes = ( "136 309 OFFCURVE", "95 230 OFFCURVE", "83 187 CURVE", "91 95 OFFCURVE", "133 48 OFFCURVE", "207 49 CURVE SMOOTH", "243 49 OFFCURVE", "272 66 OFFCURVE", "295 98 CURVE", "292 113 OFFCURVE", "288 127 OFFCURVE", "280 139 CURVE", "266 118 OFFCURVE", "249 106 OFFCURVE", "231 105 CURVE SMOOTH", "197 104 OFFCURVE", "179 125 OFFCURVE", "178 167 CURVE SMOOTH", "177 192 OFFCURVE", "188 220 OFFCURVE", "208 253 CURVE SMOOTH", "233 294 OFFCURVE", "258 308 OFFCURVE", "283 291 CURVE SMOOTH", "290 286 OFFCURVE", "298 279 OFFCURVE", "306 269 CURVE SMOOTH", "329 240 OFFCURVE", "340 201 OFFCURVE", "340 156 CURVE SMOOTH", "340 111 OFFCURVE", "331 70 OFFCURVE", "312 34 CURVE SMOOTH", "293 -2 OFFCURVE", "273 -26 OFFCURVE", "252 -39 CURVE SMOOTH", "231 -52 OFFCURVE", "207 -58 OFFCURVE", "180 -58 CURVE SMOOTH", "91 -58 OFFCURVE", "44 -4 OFFCURVE", "39 103 CURVE SMOOTH", "38 118 OFFCURVE", "40 140 OFFCURVE", "45 170 CURVE", "55 230 OFFCURVE", "79 293 OFFCURVE", "116 360 CURVE SMOOTH", "122 371 OFFCURVE", "143 408 OFFCURVE", "179 469 CURVE", "160 504 OFFCURVE", "151 540 OFFCURVE", "151 576 CURVE SMOOTH", "151 612 OFFCURVE", "155 646 OFFCURVE", "162 677 CURVE SMOOTH", "175 735 OFFCURVE", "198 779 OFFCURVE", "229 810 CURVE SMOOTH", "235 816 OFFCURVE", "240 817 OFFCURVE", "245 811 CURVE SMOOTH", "272 778 OFFCURVE", "286 734 OFFCURVE", "286 680 CURVE SMOOTH", "286 660 OFFCURVE", "284 634 OFFCURVE", "279 602 CURVE SMOOTH", "274 570 OFFCURVE", "265 541 OFFCURVE", "254 517 CURVE", "266 500 OFFCURVE", "288 474 OFFCURVE", "319 439 CURVE SMOOTH", "350 404 OFFCURVE", "375 373 OFFCURVE", "394 344 CURVE SMOOTH", "425 295 OFFCURVE", "439 238 OFFCURVE", "439 171 CURVE SMOOTH", "439 147 OFFCURVE", "436 112 OFFCURVE", "429 68 CURVE SMOOTH", "422 24 OFFCURVE", "408 -19 OFFCURVE", "386 -59 CURVE SMOOTH", "364 -99 OFFCURVE", "332 -131 OFFCURVE", "292 -155 CURVE SMOOTH", "265 -171 OFFCURVE", "218 -179 OFFCURVE", "151 -178 CURVE SMOOTH", "143 -178 OFFCURVE", "139 -175 OFFCURVE", "138 -169 CURVE SMOOTH", "138 -164 OFFCURVE", "142 -160 OFFCURVE", "150 -155 CURVE SMOOTH", "264 -94 OFFCURVE", "348 -15 OFFCURVE", "401 81 CURVE", "401 134 OFFCURVE", "384 188 OFFCURVE", "351 244 CURVE SMOOTH", "340 264 OFFCURVE", "315 295 OFFCURVE", "279 337 CURVE SMOOTH", "243 379 OFFCURVE", "219 409 OFFCURVE", "206 426 CURVE" ); } ); width = 478; } ); }, { glyphname = u1EE03.alt0; layers = ( { components = ( { name = "dal-ar"; transform = "{1, 0, 0, 1, -21, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 419; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); }, { glyphname = u1EE00.alt0; layers = ( { components = ( { name = u1EE00; }, { name = "stroke-ar"; transform = "{0.837, 0.547, -0.547, 0.837, 117, 407}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 207; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); }, { glyphname = u1EE0D.alt0; layers = ( { components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 239, 148}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "204 372 OFFCURVE", "244 379 OFFCURVE", "282 377 CURVE SMOOTH", "345 374 OFFCURVE", "388 343 OFFCURVE", "411 284 CURVE SMOOTH", "426 246 OFFCURVE", "429 209 OFFCURVE", "422 175 CURVE SMOOTH", "415 142 OFFCURVE", "404 117 OFFCURVE", "388 100 CURVE SMOOTH", "371 81 OFFCURVE", "346 68 OFFCURVE", "314 59 CURVE SMOOTH", "273 47 OFFCURVE", "212 44 OFFCURVE", "129 50 CURVE SMOOTH", "118 51 OFFCURVE", "110 48 OFFCURVE", "105 42 CURVE SMOOTH", "63 -4 LINE SMOOTH", "54 -14 OFFCURVE", "58 -20 OFFCURVE", "74 -22 CURVE SMOOTH", "133 -29 OFFCURVE", "192 -27 OFFCURVE", "252 -15 CURVE SMOOTH", "327 0 OFFCURVE", "392 49 OFFCURVE", "446 131 CURVE SMOOTH", "470 169 OFFCURVE", "485 207 OFFCURVE", "490 245 CURVE SMOOTH", "497 298 OFFCURVE", "488 340 OFFCURVE", "467 373 CURVE SMOOTH", "434 426 OFFCURVE", "380 451 OFFCURVE", "307 450 CURVE SMOOTH", "251 449 OFFCURVE", "201 426 OFFCURVE", "160 381 CURVE SMOOTH", "150 370 OFFCURVE", "147 363 OFFCURVE", "150 359 CURVE SMOOTH", "152 356 OFFCURVE", "155 356 OFFCURVE", "161 358 CURVE SMOOTH" ); } ); width = 550; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); }, { glyphname = u1EEF0.display; layers = ( { components = ( { name = u1EEF0; transform = "{1.5, 0, 0, 1.5, 10, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 2214; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); }, { glyphname = u1EEF1.display; layers = ( { components = ( { name = u1EEF1; transform = "{1.5, 0, 0, 1.5, 10, 0}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 2763; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); }, { glyphname = u1EE13.alt0; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "246 -56 OFFCURVE", "197 -91 OFFCURVE", "146 -84 CURVE SMOOTH", "118 -80 OFFCURVE", "95 -65 OFFCURVE", "77 -38 CURVE SMOOTH", "61 -13 OFFCURVE", "56 20 OFFCURVE", "60 64 CURVE SMOOTH", "64 109 OFFCURVE", "86 167 OFFCURVE", "123 236 CURVE SMOOTH", "126 241 OFFCURVE", "128 243 OFFCURVE", "132 244 CURVE SMOOTH", "136 245 OFFCURVE", "139 244 OFFCURVE", "140 241 CURVE SMOOTH", "141 238 OFFCURVE", "142 235 OFFCURVE", "141 232 CURVE SMOOTH", "140 229 OFFCURVE", "132 213 OFFCURVE", "117 182 CURVE SMOOTH", "104 156 OFFCURVE", "95 130 OFFCURVE", "91 103 CURVE SMOOTH", "84 51 OFFCURVE", "102 17 OFFCURVE", "145 3 CURVE SMOOTH", "172 -6 OFFCURVE", "196 -3 OFFCURVE", "217 12 CURVE SMOOTH", "238 26 OFFCURVE", "259 51 OFFCURVE", "279 86 CURVE SMOOTH", "327 170 OFFCURVE", "384 250 OFFCURVE", "451 328 CURVE SMOOTH", "515 402 OFFCURVE", "583 438 OFFCURVE", "654 435 CURVE SMOOTH", "734 432 OFFCURVE", "776 386 OFFCURVE", "779 297 CURVE SMOOTH", "779 285 OFFCURVE", "776 277 OFFCURVE", "769 272 CURVE SMOOTH", "764 269 OFFCURVE", "756 274 OFFCURVE", "748 285 CURVE SMOOTH", "724 319 OFFCURVE", "693 338 OFFCURVE", "657 342 CURVE SMOOTH", "607 348 OFFCURVE", "556 329 OFFCURVE", "504 287 CURVE SMOOTH", "439 234 OFFCURVE", "369 145 OFFCURVE", "294 22 CURVE SMOOTH" ); } ); width = 836; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 600; } ); }, { glyphname = "lam-ar.medi.Lellah2"; layers = ( { components = ( { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -130, -79}"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -135, -215}"; }, { name = "lam-ar.medi.Lellah"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 230; }, { components = ( { name = "lam-ar.medi.Lellah"; }, { name = "shadda-ar"; transform = "{1, 0, 0, 1, -135, -215}"; }, { name = "alefabove-ar"; transform = "{1, 0, 0, 1, -130, -79}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 230; } ); }, { glyphname = "kashida-ar.5"; layers = ( { anchors = ( { name = AlefAbove; position = "{464, 244}"; }, { name = HamzaAbove; position = "{464, 244}"; }, { name = HamzaBelow; position = "{464, -92.773}"; }, { name = MarkAbove; position = "{464, 801}"; }, { name = MarkBelow; position = "{464, -327}"; }, { name = NoonAbove; position = "{464, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "824 -8 OFFCURVE", "669 -13 OFFCURVE", "464 -13 CURVE SMOOTH", "259 -13 OFFCURVE", "104 -8 OFFCURVE", "0 0 CURVE", "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-31 82 OFFCURVE", "-23 92 OFFCURVE", "0 90 CURVE", "104 82 OFFCURVE", "259 78 OFFCURVE", "464 78 CURVE SMOOTH", "669 78 OFFCURVE", "824 82 OFFCURVE", "928 90 CURVE", "950 91 OFFCURVE", "959 81 OFFCURVE", "953 59 CURVE SMOOTH", "940 15 LINE SMOOTH", "937 5 OFFCURVE", "934 0 OFFCURVE", "928 0 CURVE" ); } ); width = 927; }, { anchors = ( { name = AlefAbove; position = "{464, 244}"; }, { name = HamzaAbove; position = "{464, 244}"; }, { name = HamzaBelow; position = "{464, -92.773}"; }, { name = MarkAbove; position = "{464, 801}"; }, { name = MarkBelow; position = "{464, -327}"; }, { name = NoonAbove; position = "{464, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "825 -23 OFFCURVE", "670 -27 OFFCURVE", "464 -27 CURVE SMOOTH", "258 -27 OFFCURVE", "104 -23 OFFCURVE", "0 -15 CURVE", "-13 -15 OFFCURVE", "-22 -6 OFFCURVE", "-27 11 CURVE", "-40 55 LINE", "-44 72 OFFCURVE", "-42 84 OFFCURVE", "-34 93 CURVE SMOOTH", "-26 102 OFFCURVE", "-15 106 OFFCURVE", "1 105 CURVE SMOOTH", "105 97 OFFCURVE", "259 92 OFFCURVE", "464 92 CURVE SMOOTH", "669 92 OFFCURVE", "823 97 OFFCURVE", "927 105 CURVE", "948 106 OFFCURVE", "960 100 OFFCURVE", "966 86 CURVE SMOOTH", "970 77 OFFCURVE", "970 67 OFFCURVE", "967 55 CURVE", "955 11 LINE", "950 -6 OFFCURVE", "942 -14 OFFCURVE", "929 -15 CURVE" ); } ); width = 927; } ); }, { glyphname = "kashida-ar.6"; layers = ( { anchors = ( { name = AlefAbove; position = "{557, 244}"; }, { name = HamzaAbove; position = "{557, 244}"; }, { name = HamzaBelow; position = "{557, -92.773}"; }, { name = MarkAbove; position = "{557, 801}"; }, { name = MarkBelow; position = "{557, -327}"; }, { name = NoonAbove; position = "{557, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1131 91 OFFCURVE", "1140 85 OFFCURVE", "1140 71 CURVE SMOOTH", "1140 67 OFFCURVE", "1140 64 OFFCURVE", "1139 59 CURVE SMOOTH", "1126 15 LINE SMOOTH", "1123 5 OFFCURVE", "1119 0 OFFCURVE", "1113 0 CURVE", "1020 -13 OFFCURVE", "835 -20 OFFCURVE", "557 -20 CURVE SMOOTH", "318 -20 OFFCURVE", "132 -13 OFFCURVE", "0 0 CURVE", "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-26 64 OFFCURVE", "-27 68 OFFCURVE", "-27 72 CURVE SMOOTH", "-26 87 OFFCURVE", "-18 92 OFFCURVE", "0 90 CURVE", "85 78 OFFCURVE", "271 71 OFFCURVE", "557 71 CURVE SMOOTH", "792 71 OFFCURVE", "977 77 OFFCURVE", "1113 90 CURVE" ); } ); width = 1113; }, { anchors = ( { name = AlefAbove; position = "{557, 244}"; }, { name = HamzaAbove; position = "{557, 244}"; }, { name = HamzaBelow; position = "{557, -92.773}"; }, { name = MarkAbove; position = "{557, 801}"; }, { name = MarkBelow; position = "{557, -327}"; }, { name = NoonAbove; position = "{557, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1124 106 OFFCURVE", "1134 103 OFFCURVE", "1142 97 CURVE SMOOTH", "1150 91 OFFCURVE", "1155 84 OFFCURVE", "1155 75 CURVE SMOOTH", "1155 66 OFFCURVE", "1154 59 OFFCURVE", "1153 54 CURVE SMOOTH", "1140 11 LINE", "1136 -5 OFFCURVE", "1128 -14 OFFCURVE", "1115 -15 CURVE", "1021 -29 OFFCURVE", "845 -34 OFFCURVE", "586 -34 CURVE SMOOTH", "327 -34 OFFCURVE", "132 -28 OFFCURVE", "0 -15 CURVE SMOOTH", "-14 -14 OFFCURVE", "-23 -5 OFFCURVE", "-27 11 CURVE", "-40 55 LINE", "-45 76 OFFCURVE", "-43 89 OFFCURVE", "-32 96 CURVE SMOOTH", "-21 103 OFFCURVE", "-10 107 OFFCURVE", "2 105 CURVE SMOOTH", "86 93 OFFCURVE", "259 86 OFFCURVE", "519 86 CURVE SMOOTH", "779 86 OFFCURVE", "977 92 OFFCURVE", "1112 105 CURVE" ); } ); width = 1113; } ); }, { glyphname = "kashida-ar.7"; layers = ( { anchors = ( { name = AlefAbove; position = "{649, 244}"; }, { name = HamzaAbove; position = "{649, 244}"; }, { name = HamzaBelow; position = "{649, -92.773}"; }, { name = MarkAbove; position = "{649, 801}"; }, { name = MarkBelow; position = "{649, -327}"; }, { name = NoonAbove; position = "{649, 244}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "1317 91 OFFCURVE", "1325 85 OFFCURVE", "1325 71 CURVE SMOOTH", "1325 67 OFFCURVE", "1325 63 OFFCURVE", "1324 59 CURVE SMOOTH", "1311 15 LINE SMOOTH", "1309 5 OFFCURVE", "1305 0 OFFCURVE", "1299 0 CURVE", "1098 -20 OFFCURVE", "881 -29 OFFCURVE", "649 -29 CURVE SMOOTH", "417 -29 OFFCURVE", "201 -19 OFFCURVE", "0 0 CURVE", "-6 0 OFFCURVE", "-10 5 OFFCURVE", "-13 15 CURVE SMOOTH", "-25 59 LINE SMOOTH", "-26 64 OFFCURVE", "-27 68 OFFCURVE", "-27 72 CURVE SMOOTH", "-26 87 OFFCURVE", "-18 92 OFFCURVE", "0 90 CURVE", "201 71 OFFCURVE", "418 62 OFFCURVE", "650 62 CURVE SMOOTH", "882 62 OFFCURVE", "1098 70 OFFCURVE", "1299 90 CURVE" ); } ); width = 1298; }, { anchors = ( { name = AlefAbove; position = "{649, 244}"; }, { name = HamzaAbove; position = "{649, 244}"; }, { name = HamzaBelow; position = "{649, -92.773}"; }, { name = MarkAbove; position = "{649, 801}"; }, { name = MarkBelow; position = "{649, -327}"; }, { name = NoonAbove; position = "{649, 244}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "1314 106 OFFCURVE", "1325 102 OFFCURVE", "1333 93 CURVE SMOOTH", "1341 84 OFFCURVE", "1343 71 OFFCURVE", "1338 55 CURVE SMOOTH", "1325 11 LINE", "1321 -5 OFFCURVE", "1312 -14 OFFCURVE", "1299 -15 CURVE SMOOTH", "1098 -35 OFFCURVE", "882 -44 OFFCURVE", "649 -44 CURVE SMOOTH", "416 -44 OFFCURVE", "200 -34 OFFCURVE", "0 -15 CURVE SMOOTH", "-14 -14 OFFCURVE", "-23 -5 OFFCURVE", "-27 11 CURVE", "-40 55 LINE", "-46 76 OFFCURVE", "-41 90 OFFCURVE", "-28 99 CURVE SMOOTH", "-20 105 OFFCURVE", "-10 106 OFFCURVE", "1 105 CURVE SMOOTH", "202 86 OFFCURVE", "418 76 OFFCURVE", "650 76 CURVE SMOOTH", "882 76 OFFCURVE", "1098 85 OFFCURVE", "1298 105 CURVE" ); } ); width = 1298; } ); }, { glyphname = aKaf.init.PreHeh; layers = ( { anchors = ( { name = Dash; position = "{234, 732}"; }, { name = DotAbove; position = "{0, 703}"; }, { name = DotBelow; position = "{98, -98}"; }, { name = RingBelow; position = "{268, 676}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-54, 703}"; }, { name = TwoDotsBelow; position = "{98, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "495 721 LINE SMOOTH", "491 713 OFFCURVE", "487 708 OFFCURVE", "483 707 CURVE SMOOTH", "280 650 OFFCURVE", "127 590 OFFCURVE", "23 528 CURVE SMOOTH", "18 525 OFFCURVE", "18 521 OFFCURVE", "21 517 CURVE SMOOTH", "140 364 OFFCURVE", "183 238 OFFCURVE", "152 137 CURVE SMOOTH", "141 100 OFFCURVE", "123 69 OFFCURVE", "97 46 CURVE SMOOTH", "72 23 OFFCURVE", "39 8 OFFCURVE", "0 0 CURVE", "-7 -2 OFFCURVE", "-14 6 OFFCURVE", "-21 22 CURVE SMOOTH", "-28 37 OFFCURVE", "-30 52 OFFCURVE", "-27 66 CURVE SMOOTH", "-25 79 OFFCURVE", "-15 86 OFFCURVE", "0 90 CURVE SMOOTH", "24 96 OFFCURVE", "48 103 OFFCURVE", "70 113 CURVE SMOOTH", "92 122 OFFCURVE", "113 134 OFFCURVE", "133 147 CURVE", "141 188 OFFCURVE", "111 260 OFFCURVE", "43 362 CURVE SMOOTH", "37 372 OFFCURVE", "30 376 OFFCURVE", "24 374 CURVE SMOOTH", "6 369 LINE SMOOTH", "-1 367 OFFCURVE", "-6 370 OFFCURVE", "-12 378 CURVE SMOOTH", "-55 441 LINE SMOOTH", "-60 448 OFFCURVE", "-62 457 OFFCURVE", "-60 467 CURVE SMOOTH", "-54 501 OFFCURVE", "-41 531 OFFCURVE", "-20 558 CURVE SMOOTH", "9 594 OFFCURVE", "78 636 OFFCURVE", "187 683 CURVE SMOOTH", "290 727 OFFCURVE", "393 764 OFFCURVE", "497 792 CURVE SMOOTH", "507 795 OFFCURVE", "513 793 OFFCURVE", "516 787 CURVE SMOOTH", "519 781 OFFCURVE", "518 775 OFFCURVE", "514 767 CURVE" ); } ); width = 579; }, { anchors = ( { name = Dash; position = "{234, 732}"; }, { name = DotAbove; position = "{0, 703}"; }, { name = DotBelow; position = "{98, -98}"; }, { name = RingBelow; position = "{268, 676}"; }, { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; }, { name = TwoDotsAbove; position = "{-54, 703}"; }, { name = TwoDotsBelow; position = "{98, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "506 716 LINE SMOOTH", "501 705 OFFCURVE", "494 698 OFFCURVE", "485 695 CURVE SMOOTH", "273 628 OFFCURVE", "122 571 OFFCURVE", "29 525 CURVE", "145 385 OFFCURVE", "188 255 OFFCURVE", "157 133 CURVE SMOOTH", "138 56 OFFCURVE", "86 8 OFFCURVE", "3 -12 CURVE SMOOTH", "-10 -15 OFFCURVE", "-21 -7 OFFCURVE", "-30 13 CURVE SMOOTH", "-39 33 OFFCURVE", "-41 51 OFFCURVE", "-38 69 CURVE SMOOTH", "-35 87 OFFCURVE", "-23 98 OFFCURVE", "-1 103 CURVE SMOOTH", "52 114 OFFCURVE", "96 132 OFFCURVE", "131 155 CURVE", "134 187 OFFCURVE", "101 254 OFFCURVE", "33 356 CURVE SMOOTH", "31 359 OFFCURVE", "29 361 OFFCURVE", "27 362 CURVE", "10 357 LINE SMOOTH", "-4 353 OFFCURVE", "-15 357 OFFCURVE", "-22 371 CURVE SMOOTH", "-56 435 LINE SMOOTH", "-62 447 OFFCURVE", "-64 458 OFFCURVE", "-62 469 CURVE SMOOTH", "-56 505 OFFCURVE", "-43 535 OFFCURVE", "-24 559 CURVE SMOOTH", "-5 583 OFFCURVE", "25 609 OFFCURVE", "68 637 CURVE SMOOTH", "111 665 OFFCURVE", "174 695 OFFCURVE", "260 727 CURVE SMOOTH", "346 759 OFFCURVE", "424 784 OFFCURVE", "493 803 CURVE SMOOTH", "533 814 OFFCURVE", "544 800 OFFCURVE", "525 762 CURVE" ); } ); width = 579; } ); }, { glyphname = aKaf.medi.PreHeh; layers = ( { anchors = ( { name = Dash; position = "{259, 718}"; }, { name = DotAbove; position = "{47, 646}"; }, { name = DotBelow; position = "{283, -98}"; }, { name = RingBelow; position = "{327, 659}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; }, { name = TwoDotsAbove; position = "{-7, 646}"; }, { name = TwoDotsBelow; position = "{229, -98}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "35 100 OFFCURVE", "64 111 OFFCURVE", "88 121 CURVE SMOOTH", "135 141 OFFCURVE", "162 162 OFFCURVE", "169 184 CURVE", "164 228 OFFCURVE", "122 290 OFFCURVE", "42 369 CURVE SMOOTH", "23 387 OFFCURVE", "22 420 OFFCURVE", "37 469 CURVE SMOOTH", "55 527 OFFCURVE", "129 588 OFFCURVE", "259 650 CURVE SMOOTH", "416 726 OFFCURVE", "508 766 OFFCURVE", "536 771 CURVE SMOOTH", "544 772 OFFCURVE", "546 768 OFFCURVE", "544 759 CURVE SMOOTH", "529 689 LINE SMOOTH", "527 682 OFFCURVE", "524 678 OFFCURVE", "518 675 CURVE SMOOTH", "252 570 OFFCURVE", "101 493 OFFCURVE", "68 444 CURVE", "70 443 OFFCURVE", "159 364 OFFCURVE", "333 205 CURVE SMOOTH", "409 135 OFFCURVE", "469 96 OFFCURVE", "511 90 CURVE SMOOTH", "527 88 OFFCURVE", "535 78 OFFCURVE", "535 63 CURVE SMOOTH", "535 50 OFFCURVE", "532 35 OFFCURVE", "527 18 CURVE SMOOTH", "523 6 OFFCURVE", "516 0 OFFCURVE", "503 0 CURVE SMOOTH", "455 0 OFFCURVE", "353 74 OFFCURVE", "195 223 CURVE", "196 205 OFFCURVE", "195 186 OFFCURVE", "191 167 CURVE SMOOTH", "182 120 OFFCURVE", "160 82 OFFCURVE", "122 53 CURVE SMOOTH", "92 30 OFFCURVE", "51 12 OFFCURVE", "0 0 CURVE SMOOTH", "-16 -4 OFFCURVE", "-25 15 OFFCURVE", "-29 57 CURVE SMOOTH", "-30 73 OFFCURVE", "-21 84 OFFCURVE", "0 90 CURVE SMOOTH" ); } ); width = 510; }, { anchors = ( { name = Dash; position = "{259, 718}"; }, { name = DotAbove; position = "{47, 646}"; }, { name = DotBelow; position = "{283, -98}"; }, { name = RingBelow; position = "{327, 659}"; }, { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; }, { name = TwoDotsAbove; position = "{-7, 646}"; }, { name = TwoDotsBelow; position = "{229, -98}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "100 129 OFFCURVE", "156 157 OFFCURVE", "167 185 CURVE", "162 223 OFFCURVE", "121 280 OFFCURVE", "43 356 CURVE SMOOTH", "20 379 OFFCURVE", "17 416 OFFCURVE", "35 468 CURVE", "59 538 OFFCURVE", "133 602 OFFCURVE", "254 661 CURVE SMOOTH", "429 745 OFFCURVE", "526 786 OFFCURVE", "543 783 CURVE SMOOTH", "554 781 OFFCURVE", "558 772 OFFCURVE", "556 757 CURVE", "541 687 LINE SMOOTH", "539 676 OFFCURVE", "532 668 OFFCURVE", "522 664 CURVE", "273 563 OFFCURVE", "127 489 OFFCURVE", "81 443 CURVE", "118 416 OFFCURVE", "205 340 OFFCURVE", "341 214 CURVE SMOOTH", "415 146 OFFCURVE", "472 108 OFFCURVE", "513 102 CURVE SMOOTH", "547 97 OFFCURVE", "556 68 OFFCURVE", "539 14 CURVE SMOOTH", "534 -3 OFFCURVE", "519 -12 OFFCURVE", "497 -12 CURVE SMOOTH", "453 -12 OFFCURVE", "352 60 OFFCURVE", "197 205 CURVE", "207 91 OFFCURVE", "142 19 OFFCURVE", "3 -12 CURVE SMOOTH", "-17 -16 OFFCURVE", "-30 -3 OFFCURVE", "-37 28 CURVE SMOOTH", "-39 36 OFFCURVE", "-40 46 OFFCURVE", "-41 57 CURVE SMOOTH", "-43 80 OFFCURVE", "-30 94 OFFCURVE", "-3 102 CURVE SMOOTH" ); } ); width = 510; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kehehThreedotsbelow-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -288}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kehehThreedotsupbelow-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -166}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 152, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kaf-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "gafRing-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 268, 676}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 268, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "gueh-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 98, -166}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 98, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "gafTwodotsbelow-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -166}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 152, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kafRing-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 268, 676}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 268, 676}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kafDotabove-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "ng-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-58, 907}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{-58, 907}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kafThreedotsbelow-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -288}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 154, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "gaf-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "keheh-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "gafThreedots-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-58, 907}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{-58, 907}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kehehThreedotsabove-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{-58, 907}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{-58, 907}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kehehDotabove-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "ngoeh-ar.init.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = aKaf.init.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 579; }, { anchors = ( { name = TashkilAbove; position = "{195, 801}"; }, { name = TashkilBelow; position = "{195, -327}"; } ); components = ( { name = aKaf.init.PreHeh; }, { name = "gafsarkashabove-ar"; transform = "{1, 0, 0, 1, 309, 709}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 0, 635}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 579; } ); }, { glyphname = "kehehTwodotshorizontalabove-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 510; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 510; } ); }, { glyphname = "kehehThreedotsbelow-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 266, -288}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 266, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kafTwodotshorizontalabove-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kehehThreedotsupbelow-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{308, -327}"; } ); components = ( { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 289, -166}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{308, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "threedotsupbelow-ar"; transform = "{1, 0, 0, 1, 289, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kaf-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "gafRing-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 327, 659}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = ring.below; transform = "{1, 0, 0, 1, 327, 659}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "gueh-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 283, -166}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{322, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = "twodotsverticalbelow-ar"; transform = "{1, 0, 0, 1, 283, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "gafTwodotsbelow-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 269, -166}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{298, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = "twodotshorizontalbelow-ar"; transform = "{1, 0, 0, 1, 269, -166}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kafRing-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 327, 659}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = ring.below; transform = "{1, 0, 0, 1, 327, 659}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kafDotabove-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "ng-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kafThreedotsbelow-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 266, -288}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{303, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "threedotsdownbelow-ar"; transform = "{1, 0, 0, 1, 266, -288}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "gaf-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 306, 683}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "keheh-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "gafThreedots-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -36, 543}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 330, 697}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 330, 697}"; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, -36, 543}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kehehThreedotsabove-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "threedotsupabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "kehehDotabove-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "dotabove-ar"; transform = "{1, 0, 0, 1, 47, 577}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = "ngoeh-ar.medi.PreHeh"; layers = ( { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 330, 697}"; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -41, 543}"; }, { name = aKaf.medi.PreHeh; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 491; }, { anchors = ( { name = TashkilAbove; position = "{234, 801}"; }, { name = TashkilBelow; position = "{283, -327}"; } ); components = ( { name = aKaf.medi.PreHeh; }, { name = "twodotshorizontalabove-ar"; transform = "{1, 0, 0, 1, -41, 543}"; }, { name = "gafsarkashabove-ar.alt2"; transform = "{1, 0, 0, 1, 330, 697}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 491; } ); }, { glyphname = smallnoon.above; layers = ( { anchors = ( { name = _DigitAbove; position = "{0, 211}"; }, { name = _TaaAbove; position = "{0, 120}"; } ); components = ( { name = "noon-ar"; transform = "{0.4, 0, 0, 0.4, -114.608, 164.053}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _DigitAbove; position = "{0, 211}"; }, { name = _TaaAbove; position = "{0, 120}"; } ); components = ( { name = "noon-ar"; transform = "{0.4, 0, 0, 0.4, -114.608, 164.053}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = smallteh.above; layers = ( { anchors = ( { name = _TaaAbove; position = "{0, 120}"; } ); components = ( { name = "teh-ar"; transform = "{0.4, 0, 0, 0.4, -185.485, 149.8}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _TaaAbove; position = "{0, 120}"; } ); components = ( { name = "teh-ar"; transform = "{0.4, 0, 0, 0.4, -185.485, 149.8}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = smallmeem.above; layers = ( { anchors = ( { name = _TaaAbove; position = "{0, 130}"; } ); components = ( { name = "meemStopabove-ar"; transform = "{1, 0, 0, 1, -119.5, -710}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 0; }, { anchors = ( { name = _TaaAbove; position = "{0, 130}"; } ); components = ( { name = "meemStopabove-ar"; transform = "{1, 0, 0, 1, -119.5, -710}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 0; } ); category = Mark; subCategory = Nonspacing; }, { glyphname = "zero-ar.numr"; layers = ( { components = ( { name = "zero-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "zero-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "one-ar.numr"; layers = ( { components = ( { name = "one-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "one-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "two-ar.numr"; layers = ( { components = ( { name = "two-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "two-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "three-ar.numr"; layers = ( { components = ( { name = "three-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "three-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "four-ar.numr"; layers = ( { components = ( { name = "four-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "four-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "five-ar.numr"; layers = ( { components = ( { name = "five-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "five-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "six-ar.numr"; layers = ( { components = ( { name = "six-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "six-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "seven-ar.numr"; layers = ( { components = ( { name = "seven-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "seven-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "eight-ar.numr"; layers = ( { components = ( { name = "eight-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "eight-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "nine-ar.numr"; layers = ( { components = ( { name = "nine-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "nine-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "zeroFarsi-ar.numr"; layers = ( { components = ( { name = "zeroFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "zeroFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "oneFarsi-ar.numr"; layers = ( { components = ( { name = "oneFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "oneFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "twoFarsi-ar.numr"; layers = ( { components = ( { name = "twoFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "twoFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "threeFarsi-ar.numr"; layers = ( { components = ( { name = "threeFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "threeFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "fourFarsi-ar.numr"; layers = ( { components = ( { name = "fourFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fourFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "fiveFarsi-ar.numr"; layers = ( { components = ( { name = "fiveFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fiveFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sixFarsi-ar.numr"; layers = ( { components = ( { name = "sixFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sixFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sevenFarsi-ar.numr"; layers = ( { components = ( { name = "sevenFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sevenFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "eightFarsi-ar.numr"; layers = ( { components = ( { name = "eightFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "eightFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "nineFarsi-ar.numr"; layers = ( { components = ( { name = "nineFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "nineFarsi-ar.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "fourFarsi-ar.urd.numr"; layers = ( { components = ( { name = "fourFarsi-ar.urd.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "fourFarsi-ar.urd.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sixFarsi-ar.urd.numr"; layers = ( { components = ( { name = "sixFarsi-ar.urd.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sixFarsi-ar.urd.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "sevenFarsi-ar.urd.numr"; layers = ( { components = ( { name = "sevenFarsi-ar.urd.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 292; }, { components = ( { name = "sevenFarsi-ar.urd.small"; transform = "{1, 0, 0, 1, 0, 310}"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 292; } ); }, { glyphname = "kafRing-ar.alt"; layers = ( { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 293, 49}"; }, { name = "kaf-ar"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 657; }, { anchors = ( { name = TashkilAbove; position = "{205, 801}"; }, { name = TashkilBelow; position = "{342, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 293, 49}"; }, { name = "kaf-ar"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 657; } ); }, { glyphname = "kafRing-ar.alt.fina"; layers = ( { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 366, 20}"; }, { name = "kaf-ar.fina"; } ); layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; width = 822; }, { anchors = ( { name = TashkilAbove; position = "{356, 801}"; }, { name = TashkilBelow; position = "{391, -327}"; } ); components = ( { name = ring.below; transform = "{1, 0, 0, 1, 366, 20}"; }, { name = "kaf-ar.fina"; } ); layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; width = 822; } ); }, { glyphname = _FDFD; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "2797 121 OFFCURVE", "2804 115 OFFCURVE", "2810 108 CURVE SMOOTH", "2837 73 OFFCURVE", "2848 43 OFFCURVE", "2842 18 CURVE SMOOTH", "2837 -7 OFFCURVE", "2827 -27 OFFCURVE", "2814 -44 CURVE SMOOTH", "2811 -48 OFFCURVE", "2809 -51 OFFCURVE", "2807 -51 CURVE", "2745 -47 OFFCURVE", "2686 -27 OFFCURVE", "2631 9 CURVE", "2611 -38 OFFCURVE", "2581 -68 OFFCURVE", "2542 -81 CURVE SMOOTH", "2503 -94 OFFCURVE", "2464 -94 OFFCURVE", "2425 -81 CURVE", "2422 -94 OFFCURVE", "2414 -117 OFFCURVE", "2400 -153 CURVE", "2336 -273 OFFCURVE", "2193 -373 OFFCURVE", "1972 -451 CURVE SMOOTH", "1750 -530 OFFCURVE", "1507 -567 OFFCURVE", "1243 -562 CURVE SMOOTH", "1124 -560 OFFCURVE", "1011 -543 OFFCURVE", "902 -509 CURVE SMOOTH", "793 -475 OFFCURVE", "711 -439 OFFCURVE", "657 -401 CURVE SMOOTH", "623 -378 OFFCURVE", "585 -343 OFFCURVE", "540 -296 CURVE SMOOTH", "495 -249 OFFCURVE", "459 -206 OFFCURVE", "431 -169 CURVE", "432 -168 OFFCURVE", "432 -167 OFFCURVE", "433 -165 CURVE SMOOTH", "434 -163 OFFCURVE", "435 -161 OFFCURVE", "435 -161 CURVE", "547 -255 OFFCURVE", "678 -329 OFFCURVE", "827 -384 CURVE SMOOTH", "976 -439 OFFCURVE", "1126 -468 OFFCURVE", "1276 -470 CURVE SMOOTH", "1585 -475 OFFCURVE", "1870 -416 OFFCURVE", "2130 -295 CURVE SMOOTH", "2264 -233 OFFCURVE", "2347 -179 OFFCURVE", "2378 -134 CURVE SMOOTH", "2381 -130 OFFCURVE", "2383 -126 OFFCURVE", "2383 -124 CURVE SMOOTH", "2382 -94 OFFCURVE", "2374 -61 OFFCURVE", "2358 -26 CURVE SMOOTH", "2356 -21 OFFCURVE", "2356 -18 OFFCURVE", "2358 -14 CURVE SMOOTH", "2385 42 LINE SMOOTH", "2394 62 OFFCURVE", "2402 65 OFFCURVE", "2408 53 CURVE SMOOTH", "2423 24 OFFCURVE", "2453 7 OFFCURVE", "2497 1 CURVE SMOOTH", "2541 -5 OFFCURVE", "2582 6 OFFCURVE", "2619 32 CURVE", "2639 82 OFFCURVE", "2661 115 OFFCURVE", "2683 134 CURVE", "2790 127 LINE" ); }, { closed = 1; nodes = ( "2694 95 OFFCURVE", "2682 89 OFFCURVE", "2674 78 CURVE", "2718 52 OFFCURVE", "2759 38 OFFCURVE", "2798 35 CURVE", "2792 50 OFFCURVE", "2779 63 OFFCURVE", "2758 76 CURVE SMOOTH", "2737 89 OFFCURVE", "2720 95 OFFCURVE", "2707 95 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1271 135 OFFCURVE", "1271 134 OFFCURVE", "1271 134 CURVE SMOOTH", "1301 99 OFFCURVE", "1326 82 OFFCURVE", "1345 83 CURVE SMOOTH", "1365 84 OFFCURVE", "1389 91 OFFCURVE", "1418 105 CURVE SMOOTH", "1447 118 OFFCURVE", "1466 126 OFFCURVE", "1474 130 CURVE", "1451 149 OFFCURVE", "1423 163 OFFCURVE", "1388 170 CURVE SMOOTH", "1353 178 OFFCURVE", "1331 181 OFFCURVE", "1321 179 CURVE SMOOTH", "1311 177 OFFCURVE", "1304 177 OFFCURVE", "1301 180 CURVE SMOOTH", "1298 183 OFFCURVE", "1297 186 OFFCURVE", "1298 191 CURVE SMOOTH", "1304 212 OFFCURVE", "1318 231 OFFCURVE", "1340 248 CURVE SMOOTH", "1362 265 OFFCURVE", "1391 268 OFFCURVE", "1425 258 CURVE SMOOTH", "1438 254 OFFCURVE", "1453 248 OFFCURVE", "1472 239 CURVE SMOOTH", "1567 193 OFFCURVE", "1664 166 OFFCURVE", "1764 157 CURVE", "1779 158 OFFCURVE", "1783 152 OFFCURVE", "1777 139 CURVE", "1743 86 LINE", "1739 78 OFFCURVE", "1732 76 OFFCURVE", "1722 77 CURVE SMOOTH", "1641 90 OFFCURVE", "1574 89 OFFCURVE", "1524 75 CURVE", "1503 68 OFFCURVE", "1473 57 OFFCURVE", "1435 43 CURVE SMOOTH", "1397 29 OFFCURVE", "1365 19 OFFCURVE", "1341 13 CURVE", "1329 11 OFFCURVE", "1316 14 OFFCURVE", "1302 22 CURVE SMOOTH", "1288 30 OFFCURVE", "1276 44 OFFCURVE", "1266 63 CURVE", "1155 -3 OFFCURVE", "1015 -34 OFFCURVE", "846 -32 CURVE", "693 -30 OFFCURVE", "587 -16 OFFCURVE", "530 9 CURVE", "504 -22 LINE SMOOTH", "493 -35 OFFCURVE", "477 -41 OFFCURVE", "455 -39 CURVE SMOOTH", "400 -32 OFFCURVE", "358 -17 OFFCURVE", "330 7 CURVE", "319 10 OFFCURVE", "311 9 OFFCURVE", "306 4 CURVE", "286 -21 OFFCURVE", "270 -38 OFFCURVE", "259 -49 CURVE SMOOTH", "248 -60 OFFCURVE", "228 -71 OFFCURVE", "197 -85 CURVE SMOOTH", "166 -98 OFFCURVE", "131 -106 OFFCURVE", "91 -107 CURVE SMOOTH", "82 -107 OFFCURVE", "76 -106 OFFCURVE", "74 -101 CURVE", "72 -95 OFFCURVE", "75 -90 OFFCURVE", "83 -86 CURVE SMOOTH", "158 -54 OFFCURVE", "221 -20 OFFCURVE", "270 16 CURVE SMOOTH", "281 24 OFFCURVE", "290 32 OFFCURVE", "296 38 CURVE", "298 41 OFFCURVE", "299 45 OFFCURVE", "299 51 CURVE", "295 74 OFFCURVE", "305 104 OFFCURVE", "329 139 CURVE SMOOTH", "330 141 OFFCURVE", "336 150 OFFCURVE", "348 167 CURVE SMOOTH", "372 203 OFFCURVE", "389 215 OFFCURVE", "399 202 CURVE", "464 111 OFFCURVE", "610 63 OFFCURVE", "835 56 CURVE SMOOTH", "1007 51 OFFCURVE", "1152 78 OFFCURVE", "1271 136 CURVE" ); }, { closed = 1; nodes = ( "373 146 OFFCURVE", "363 141 OFFCURVE", "357 132 CURVE", "355 104 OFFCURVE", "381 84 OFFCURVE", "434 72 CURVE", "414 93 OFFCURVE", "399 118 OFFCURVE", "387 149 CURVE" ); }, { closed = 1; nodes = ( "11263 262 OFFCURVE", "11266 260 OFFCURVE", "11268 256 CURVE SMOOTH", "11335 136 OFFCURVE", "11367 23 OFFCURVE", "11365 -82 CURVE SMOOTH", "11363 -159 OFFCURVE", "11347 -202 OFFCURVE", "11314 -210 CURVE SMOOTH", "11287 -217 OFFCURVE", "11261 -214 OFFCURVE", "11237 -204 CURVE SMOOTH", "11212 -194 OFFCURVE", "11196 -183 OFFCURVE", "11186 -173 CURVE", "11176 -198 OFFCURVE", "11165 -217 OFFCURVE", "11154 -228 CURVE SMOOTH", "11143 -239 OFFCURVE", "11125 -241 OFFCURVE", "11099 -235 CURVE SMOOTH", "11073 -229 OFFCURVE", "11046 -217 OFFCURVE", "11017 -197 CURVE", "10997 -227 OFFCURVE", "10968 -247 OFFCURVE", "10927 -257 CURVE SMOOTH", "10886 -267 OFFCURVE", "10852 -265 OFFCURVE", "10823 -250 CURVE SMOOTH", "10808 -242 OFFCURVE", "10798 -232 OFFCURVE", "10792 -221 CURVE", "10404 -280 OFFCURVE", "9917 -325 OFFCURVE", "9328 -357 CURVE SMOOTH", "8894 -380 OFFCURVE", "8454 -393 OFFCURVE", "8008 -394 CURVE SMOOTH", "6929 -395 OFFCURVE", "6083 -356 OFFCURVE", "5470 -277 CURVE SMOOTH", "5111 -230 OFFCURVE", "4883 -186 OFFCURVE", "4786 -144 CURVE", "4776 -157 LINE", "4765 -170 OFFCURVE", "4748 -176 OFFCURVE", "4726 -173 CURVE SMOOTH", "4671 -166 OFFCURVE", "4629 -151 OFFCURVE", "4601 -127 CURVE", "4590 -124 OFFCURVE", "4582 -124 OFFCURVE", "4577 -130 CURVE", "4558 -155 OFFCURVE", "4542 -173 OFFCURVE", "4531 -184 CURVE SMOOTH", "4520 -195 OFFCURVE", "4498 -207 OFFCURVE", "4466 -221 CURVE SMOOTH", "4434 -235 OFFCURVE", "4399 -242 OFFCURVE", "4362 -242 CURVE SMOOTH", "4353 -242 OFFCURVE", "4347 -240 OFFCURVE", "4345 -235 CURVE", "4343 -229 OFFCURVE", "4347 -225 OFFCURVE", "4354 -221 CURVE SMOOTH", "4429 -189 OFFCURVE", "4492 -154 OFFCURVE", "4541 -118 CURVE SMOOTH", "4552 -110 OFFCURVE", "4561 -103 OFFCURVE", "4567 -97 CURVE", "4569 -94 OFFCURVE", "4570 -89 OFFCURVE", "4570 -83 CURVE", "4565 -58 OFFCURVE", "4576 -29 OFFCURVE", "4601 4 CURVE SMOOTH", "4602 6 OFFCURVE", "4608 15 OFFCURVE", "4619 32 CURVE SMOOTH", "4642 66 OFFCURVE", "4658 81 OFFCURVE", "4668 78 CURVE SMOOTH", "4674 76 OFFCURVE", "4678 74 OFFCURVE", "4680 71 CURVE SMOOTH", "4718 18 OFFCURVE", "4757 -22 OFFCURVE", "4795 -47 CURVE", "5027 -134 OFFCURVE", "5430 -200 OFFCURVE", "6003 -243 CURVE SMOOTH", "6575 -287 OFFCURVE", "7243 -310 OFFCURVE", "8008 -311 CURVE SMOOTH", "8925 -313 OFFCURVE", "9737 -269 OFFCURVE", "10444 -180 CURVE SMOOTH", "10615 -159 OFFCURVE", "10745 -140 OFFCURVE", "10833 -123 CURVE", "10833 -124 LINE", "10833 -124 LINE", "10833 -146 OFFCURVE", "10839 -160 OFFCURVE", "10849 -167 CURVE SMOOTH", "10859 -174 OFFCURVE", "10884 -175 OFFCURVE", "10923 -173 CURVE SMOOTH", "10962 -171 OFFCURVE", "10990 -163 OFFCURVE", "11008 -148 CURVE SMOOTH", "11026 -133 OFFCURVE", "11041 -111 OFFCURVE", "11053 -81 CURVE SMOOTH", "11057 -71 OFFCURVE", "11062 -67 OFFCURVE", "11068 -71 CURVE SMOOTH", "11074 -75 OFFCURVE", "11076 -80 OFFCURVE", "11074 -87 CURVE SMOOTH", "11067 -109 OFFCURVE", "11070 -125 OFFCURVE", "11082 -132 CURVE SMOOTH", "11100 -144 OFFCURVE", "11121 -150 OFFCURVE", "11145 -150 CURVE", "11155 -150 OFFCURVE", "11162 -146 OFFCURVE", "11166 -137 CURVE SMOOTH", "11170 -128 OFFCURVE", "11175 -116 OFFCURVE", "11180 -100 CURVE SMOOTH", "11185 -84 OFFCURVE", "11189 -76 OFFCURVE", "11190 -74 CURVE SMOOTH", "11197 -69 OFFCURVE", "11202 -71 OFFCURVE", "11206 -80 CURVE", "11231 -114 OFFCURVE", "11269 -133 OFFCURVE", "11320 -137 CURVE", "11325 -138 OFFCURVE", "11327 -135 OFFCURVE", "11327 -127 CURVE SMOOTH", "11327 -87 OFFCURVE", "11312 -30 OFFCURVE", "11284 43 CURVE SMOOTH", "11256 116 OFFCURVE", "11239 153 OFFCURVE", "11233 154 CURVE SMOOTH", "11231 155 OFFCURVE", "11229 154 OFFCURVE", "11226 150 CURVE SMOOTH", "11223 146 OFFCURVE", "11218 145 OFFCURVE", "11212 147 CURVE SMOOTH", "11207 149 OFFCURVE", "11206 155 OFFCURVE", "11209 162 CURVE SMOOTH", "11222 196 OFFCURVE", "11234 221 OFFCURVE", "11243 237 CURVE SMOOTH", "11252 253 OFFCURVE", "11257 262 OFFCURVE", "11260 262 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "4646 13 OFFCURVE", "4635 7 OFFCURVE", "4628 -2 CURVE", "4626 -26 OFFCURVE", "4645 -44 OFFCURVE", "4682 -56 CURVE SMOOTH", "4686 -57 OFFCURVE", "4689 -58 OFFCURVE", "4693 -59 CURVE", "4681 -39 OFFCURVE", "4671 -14 OFFCURVE", "4662 15 CURVE" ); } ); width = 11435; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "2815 144 OFFCURVE", "2826 135 OFFCURVE", "2840 118 CURVE", "2870 79 OFFCURVE", "2882 44 OFFCURVE", "2876 16 CURVE SMOOTH", "2870 -12 OFFCURVE", "2862 -34 OFFCURVE", "2851 -48 CURVE SMOOTH", "2840 -62 OFFCURVE", "2830 -69 OFFCURVE", "2823 -68 CURVE", "2763 -64 OFFCURVE", "2707 -46 OFFCURVE", "2655 -15 CURVE", "2633 -57 OFFCURVE", "2603 -85 OFFCURVE", "2565 -97 CURVE SMOOTH", "2527 -109 OFFCURVE", "2488 -111 OFFCURVE", "2446 -101 CURVE", "2437 -131 OFFCURVE", "2430 -150 OFFCURVE", "2425 -160 CURVE SMOOTH", "2354 -288 OFFCURVE", "2209 -391 OFFCURVE", "1989 -469 CURVE SMOOTH", "1769 -547 OFFCURVE", "1526 -583 OFFCURVE", "1260 -579 CURVE SMOOTH", "1140 -577 OFFCURVE", "1020 -558 OFFCURVE", "902 -521 CURVE SMOOTH", "784 -484 OFFCURVE", "705 -450 OFFCURVE", "665 -416 CURVE SMOOTH", "615 -373 OFFCURVE", "576 -337 OFFCURVE", "550 -308 CURVE SMOOTH", "491 -242 OFFCURVE", "456 -196 OFFCURVE", "445 -173 CURVE", "449 -168 OFFCURVE", "452 -163 OFFCURVE", "456 -157 CURVE", "531 -229 OFFCURVE", "661 -299 OFFCURVE", "849 -368 CURVE SMOOTH", "996 -422 OFFCURVE", "1145 -451 OFFCURVE", "1293 -453 CURVE SMOOTH", "1593 -457 OFFCURVE", "1876 -399 OFFCURVE", "2140 -280 CURVE SMOOTH", "2282 -216 OFFCURVE", "2366 -163 OFFCURVE", "2391 -121 CURVE", "2386 -87 OFFCURVE", "2376 -57 OFFCURVE", "2360 -33 CURVE", "2355 -26 OFFCURVE", "2355 -16 OFFCURVE", "2360 -6 CURVE SMOOTH", "2387 49 LINE SMOOTH", "2393 61 OFFCURVE", "2399 70 OFFCURVE", "2406 74 CURVE", "2420 81 OFFCURVE", "2431 78 OFFCURVE", "2440 61 CURVE SMOOTH", "2452 38 OFFCURVE", "2478 23 OFFCURVE", "2516 18 CURVE SMOOTH", "2554 13 OFFCURVE", "2590 22 OFFCURVE", "2623 43 CURVE", "2641 87 OFFCURVE", "2663 122 OFFCURVE", "2691 147 CURVE SMOOTH", "2694 150 OFFCURVE", "2698 151 OFFCURVE", "2703 151 CURVE SMOOTH", "2808 144 LINE SMOOTH" ); }, { closed = 1; nodes = ( "2711 95 OFFCURVE", "2699 89 OFFCURVE", "2691 78 CURVE", "2735 52 OFFCURVE", "2777 38 OFFCURVE", "2815 35 CURVE", "2809 50 OFFCURVE", "2796 63 OFFCURVE", "2775 76 CURVE", "2754 89 OFFCURVE", "2737 95 OFFCURVE", "2724 95 CURVE SMOOTH" ); }, { closed = 1; nodes = ( "1331 99 OFFCURVE", "1378 89 OFFCURVE", "1432 114 CURVE SMOOTH", "1451 122 OFFCURVE", "1465 129 OFFCURVE", "1473 133 CURVE", "1418 165 OFFCURVE", "1372 179 OFFCURVE", "1335 173 CURVE SMOOTH", "1323 171 OFFCURVE", "1313 173 OFFCURVE", "1306 180 CURVE SMOOTH", "1299 187 OFFCURVE", "1297 196 OFFCURVE", "1299 207 CURVE", "1306 232 OFFCURVE", "1322 253 OFFCURVE", "1348 273 CURVE SMOOTH", "1374 293 OFFCURVE", "1407 297 OFFCURVE", "1447 285 CURVE SMOOTH", "1455 282 OFFCURVE", "1472 276 OFFCURVE", "1497 265 CURVE SMOOTH", "1610 215 OFFCURVE", "1704 184 OFFCURVE", "1781 173 CURVE", "1788 173 OFFCURVE", "1794 172 OFFCURVE", "1799 171 CURVE", "1816 164 OFFCURVE", "1818 151 OFFCURVE", "1808 130 CURVE", "1774 78 LINE", "1766 64 OFFCURVE", "1754 58 OFFCURVE", "1736 60 CURVE", "1641 80 OFFCURVE", "1546 68 OFFCURVE", "1452 25 CURVE SMOOTH", "1358 -18 OFFCURVE", "1301 -11 OFFCURVE", "1282 46 CURVE", "1155 -20 OFFCURVE", "1016 -51 OFFCURVE", "867 -49 CURVE SMOOTH", "718 -47 OFFCURVE", "613 -34 OFFCURVE", "552 -11 CURVE", "534 -33 LINE SMOOTH", "519 -51 OFFCURVE", "498 -59 OFFCURVE", "470 -56 CURVE", "413 -49 OFFCURVE", "370 -33 OFFCURVE", "339 -8 CURVE", "336 -7 OFFCURVE", "334 -7 OFFCURVE", "334 -8 CURVE SMOOTH", "314 -32 OFFCURVE", "299 -50 OFFCURVE", "287 -62 CURVE SMOOTH", "275 -74 OFFCURVE", "253 -87 OFFCURVE", "220 -101 CURVE SMOOTH", "187 -115 OFFCURVE", "150 -123 OFFCURVE", "108 -124 CURVE", "89 -123 OFFCURVE", "78 -116 OFFCURVE", "74 -103 CURVE SMOOTH", "70 -90 OFFCURVE", "76 -79 OFFCURVE", "93 -71 CURVE", "191 -29 OFFCURVE", "259 11 OFFCURVE", "299 48 CURVE", "299 49 OFFCURVE", "299 49 OFFCURVE", "299 50 CURVE SMOOTH", "294 84 OFFCURVE", "306 117 OFFCURVE", "333 149 CURVE SMOOTH", "335 151 OFFCURVE", "341 161 OFFCURVE", "352 178 CURVE SMOOTH", "384 226 OFFCURVE", "410 236 OFFCURVE", "430 211 CURVE", "493 124 OFFCURVE", "634 78 OFFCURVE", "853 72 CURVE SMOOTH", "1009 67 OFFCURVE", "1148 94 OFFCURVE", "1269 151 CURVE SMOOTH", "1279 156 OFFCURVE", "1287 153 OFFCURVE", "1292 142 CURVE" ); }, { closed = 1; nodes = ( "390 146 OFFCURVE", "380 141 OFFCURVE", "374 132 CURVE", "372 104 OFFCURVE", "398 84 OFFCURVE", "451 72 CURVE", "431 93 OFFCURVE", "416 118 OFFCURVE", "404 149 CURVE" ); }, { closed = 1; nodes = ( "11364 142 OFFCURVE", "11396 25 OFFCURVE", "11394 -83 CURVE SMOOTH", "11392 -167 OFFCURVE", "11371 -215 OFFCURVE", "11333 -225 CURVE SMOOTH", "11295 -235 OFFCURVE", "11253 -227 OFFCURVE", "11209 -200 CURVE", "11196 -226 OFFCURVE", "11184 -242 OFFCURVE", "11172 -248 CURVE", "11141 -265 OFFCURVE", "11096 -256 OFFCURVE", "11038 -220 CURVE", "11016 -246 OFFCURVE", "10984 -264 OFFCURVE", "10942 -274 CURVE SMOOTH", "10900 -284 OFFCURVE", "10864 -281 OFFCURVE", "10832 -264 CURVE", "10819 -257 OFFCURVE", "10808 -248 OFFCURVE", "10801 -239 CURVE", "10414 -297 OFFCURVE", "9930 -342 OFFCURVE", "9346 -374 CURVE SMOOTH", "8912 -397 OFFCURVE", "8471 -410 OFFCURVE", "8025 -411 CURVE", "6942 -412 OFFCURVE", "6095 -373 OFFCURVE", "5485 -294 CURVE SMOOTH", "5138 -249 OFFCURVE", "4913 -206 OFFCURVE", "4809 -164 CURVE", "4793 -184 OFFCURVE", "4770 -193 OFFCURVE", "4741 -190 CURVE", "4684 -183 OFFCURVE", "4641 -167 OFFCURVE", "4610 -142 CURVE", "4559 -197 LINE", "4517 -236 OFFCURVE", "4457 -255 OFFCURVE", "4379 -253 CURVE SMOOTH", "4359 -253 OFFCURVE", "4349 -248 OFFCURVE", "4346 -239 CURVE", "4345 -231 OFFCURVE", "4354 -221 OFFCURVE", "4375 -211 CURVE SMOOTH", "4467 -165 OFFCURVE", "4534 -128 OFFCURVE", "4576 -98 CURVE", "4570 -85 LINE", "4566 -56 OFFCURVE", "4577 -23 OFFCURVE", "4604 14 CURVE SMOOTH", "4606 17 OFFCURVE", "4613 28 OFFCURVE", "4627 49 CURVE SMOOTH", "4641 70 OFFCURVE", "4654 82 OFFCURVE", "4663 89 CURVE", "4673 95 OFFCURVE", "4682 97 OFFCURVE", "4691 94 CURVE SMOOTH", "4700 91 OFFCURVE", "4707 87 OFFCURVE", "4711 81 CURVE SMOOTH", "4748 30 OFFCURVE", "4784 -7 OFFCURVE", "4820 -31 CURVE", "5052 -118 OFFCURVE", "5453 -183 OFFCURVE", "6023 -227 CURVE SMOOTH", "6593 -271 OFFCURVE", "7260 -293 OFFCURVE", "8025 -294 CURVE SMOOTH", "8941 -296 OFFCURVE", "9752 -253 OFFCURVE", "10458 -164 CURVE SMOOTH", "10629 -143 OFFCURVE", "10758 -123 OFFCURVE", "10846 -106 CURVE SMOOTH", "10860 -103 OFFCURVE", "10867 -113 OFFCURVE", "10867 -134 CURVE SMOOTH", "10867 -143 OFFCURVE", "10869 -149 OFFCURVE", "10876 -153 CURVE SMOOTH", "10883 -157 OFFCURVE", "10904 -159 OFFCURVE", "10941 -157 CURVE SMOOTH", "10978 -155 OFFCURVE", "11005 -147 OFFCURVE", "11021 -134 CURVE SMOOTH", "11037 -121 OFFCURVE", "11050 -102 OFFCURVE", "11059 -78 CURVE SMOOTH", "11068 -54 OFFCURVE", "11079 -47 OFFCURVE", "11094 -57 CURVE", "11100 -64 OFFCURVE", "11101 -75 OFFCURVE", "11096 -90 CURVE SMOOTH", "11091 -105 OFFCURVE", "11091 -114 OFFCURVE", "11096 -118 CURVE", "11111 -128 OFFCURVE", "11135 -133 OFFCURVE", "11168 -133 CURVE", "11173 -132 OFFCURVE", "11179 -121 OFFCURVE", "11186 -99 CURVE SMOOTH", "11193 -77 OFFCURVE", "11199 -63 OFFCURVE", "11205 -57 CURVE SMOOTH", "11211 -51 OFFCURVE", "11218 -51 OFFCURVE", "11225 -57 CURVE SMOOTH", "11232 -63 OFFCURVE", "11236 -67 OFFCURVE", "11237 -71 CURVE", "11257 -97 OFFCURVE", "11289 -113 OFFCURVE", "11333 -119 CURVE", "11330 -56 OFFCURVE", "11301 28 OFFCURVE", "11245 132 CURVE", "11238 129 OFFCURVE", "11229 130 OFFCURVE", "11218 135 CURVE SMOOTH", "11207 140 OFFCURVE", "11204 150 OFFCURVE", "11210 168 CURVE", "11237 237 OFFCURVE", "11258 274 OFFCURVE", "11273 278 CURVE", "11283 281 OFFCURVE", "11292 277 OFFCURVE", "11299 265 CURVE" ); }, { closed = 1; nodes = ( "4663 13 OFFCURVE", "4652 7 OFFCURVE", "4645 -2 CURVE", "4643 -28 OFFCURVE", "4665 -47 OFFCURVE", "4710 -59 CURVE", "4698 -39 OFFCURVE", "4688 -14 OFFCURVE", "4679 15 CURVE" ); } ); width = 11459; } ); }, { glyphname = _arrowhead; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "46.298 495.511 LINE", "91.972 542 LINE", "46.298 588.489 LINE", "46.298 588.489 OFFCURVE", "67.695 609.511 OFFCURVE", "67.702 609.511 CURVE SMOOTH", "134.028 542 LINE", "67.698 474.486 LINE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "46.298 495.511 LINE", "91.972 542 LINE", "46.298 588.489 LINE", "46.298 588.489 OFFCURVE", "67.695 609.511 OFFCURVE", "67.702 609.511 CURVE SMOOTH", "134.028 542 LINE", "67.698 474.486 LINE" ); } ); width = 0; } ); }, { glyphname = _arrowhead2; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "67 474 LINE", "47 495 LINE", "80 527 LINE", "-15 527 LINE", "-15 557 LINE", "79 557 LINE", "47 589 LINE", "68 609 LINE", "135 542 LINE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "67 474 LINE", "47 495 LINE", "80 527 LINE", "-15 527 LINE", "-15 557 LINE", "79 557 LINE", "47 589 LINE", "68 609 LINE", "135 542 LINE" ); } ); width = 0; } ); }, { glyphname = _x; layers = ( { layerId = "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2"; paths = ( { closed = 1; nodes = ( "-47 474 LINE", "-68 495 LINE", "-21 542 LINE", "-68 589 LINE", "-47 610 LINE", "0 562 LINE", "47 610 LINE", "68 589 LINE", "21 542 LINE", "68 495 LINE", "47 474 LINE", "0 521 LINE" ); } ); width = 0; }, { layerId = "037FF2D3-C03F-44B0-90AB-89AFD43EFA27"; paths = ( { closed = 1; nodes = ( "-47 474 LINE", "-68 495 LINE", "-21 542 LINE", "-68 589 LINE", "-47 610 LINE", "0 562 LINE", "47 610 LINE", "68 589 LINE", "21 542 LINE", "68 495 LINE", "47 474 LINE", "0 521 LINE" ); } ); width = 0; } ); } ); instances = ( { interpolationWeight = 400; instanceInterpolations = { "7FE84AD5-D318-40C5-A81A-3CDC73FF77D2" = 1; }; name = Regular; }, { customParameters = ( { name = "Remove Glyphs"; value = ( "u1EE*" ); } ); interpolationWeight = 700; instanceInterpolations = { "037FF2D3-C03F-44B0-90AB-89AFD43EFA27" = 1; }; isBold = 1; linkStyle = Regular; name = Bold; weightClass = Bold; } ); manufacturerURL = "http://www.amirifont.org"; unitsPerEm = 1000; versionMajor = 1; versionMinor = 0; } amiri-1.000/sources/AmiriLatin-Bold.ufo/000077500000000000000000000000001434272261000177765ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-Bold.ufo/fontinfo.plist000066400000000000000000000166701434272261000227070ustar00rootroot00000000000000 ascender 800 copyright Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org). Copyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org). This Font Software is licensed under the Open Font License, Version 1.1. descender -200 familyName Amiri Latin italicAngle 0 openTypeGaspRangeRecords rangeGaspBehavior 0 1 2 3 rangeMaxPPEM 65535 openTypeHeadCreated 2010/05/15 02:52:27 openTypeHheaAscender 700 openTypeHheaDescender -300 openTypeHheaLineGap 90 openTypeNameLicense Copyright (c) 2011, Sebastian Kosch,,, (<URL|email>), with Reserved Font Name Crimson. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeOS2Selection 7 openTypeOS2StrikeoutPosition 259 openTypeOS2StrikeoutSize 50 openTypeOS2SubscriptXOffset 0 openTypeOS2SubscriptXSize 649 openTypeOS2SubscriptYOffset 140 openTypeOS2SubscriptYSize 699 openTypeOS2SuperscriptXOffset 0 openTypeOS2SuperscriptXSize 649 openTypeOS2SuperscriptYOffset 479 openTypeOS2SuperscriptYSize 699 openTypeOS2Type openTypeOS2TypoAscender 700 openTypeOS2TypoDescender -300 openTypeOS2TypoLineGap 90 openTypeOS2VendorID PfEd openTypeOS2WeightClass 700 openTypeOS2WidthClass 5 openTypeOS2WinAscent 0 openTypeOS2WinDescent 0 openTypeVheaVertTypoLineGap 0 postscriptFontName AmiriLatin-Bold postscriptFullName Amiri Latin Bold postscriptSlantAngle 0 postscriptUnderlinePosition -76.5 postscriptUnderlineThickness 51 postscriptWeightName Bold styleName Bold unitsPerEm 1000 versionMajor 0 versionMinor 8 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/000077500000000000000000000000001434272261000213045ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_.glif000066400000000000000000000062461434272261000224760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_E_.glif000066400000000000000000000127411434272261000227370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_acute.glif000066400000000000000000000003411434272261000235060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_breve.glif000066400000000000000000000003371434272261000235150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_circumflex.glif000066400000000000000000000003601434272261000245470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_dieresis.glif000066400000000000000000000003571434272261000242230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_grave.glif000066400000000000000000000003411434272261000235110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_macron.glif000066400000000000000000000003551434272261000236710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_ogonek.glif000066400000000000000000000102241434272261000236700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_ring.glif000066400000000000000000000003541434272261000233500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/A_tilde.glif000066400000000000000000000003551434272261000235130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/B_.glif000066400000000000000000000055251434272261000224760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/C_.glif000066400000000000000000000031551434272261000224740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/C_acute.glif000066400000000000000000000003411434272261000235100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/C_caron.glif000066400000000000000000000003541434272261000235150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/C_cedilla.glif000066400000000000000000000003711434272261000240070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/C_circumflex.glif000066400000000000000000000003601434272261000245510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/C_dotaccent.glif000066400000000000000000000003551434272261000243600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/D_.glif000066400000000000000000000040461434272261000224750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/D_caron.glif000066400000000000000000000003541434272261000235160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/D_croat.glif000066400000000000000000000002611434272261000235210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_.glif000066400000000000000000000073111434272261000224740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_acute.glif000066400000000000000000000003411434272261000235120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_breve.glif000066400000000000000000000003371434272261000235210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_caron.glif000066400000000000000000000003541434272261000235170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_circumflex.glif000066400000000000000000000003601434272261000245530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_dieresis.glif000066400000000000000000000003561434272261000242260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_dotaccent.glif000066400000000000000000000003551434272261000243620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_grave.glif000066400000000000000000000003411434272261000235150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_macron.glif000066400000000000000000000003551434272261000236750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_ng.glif000066400000000000000000000066231434272261000230260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_ogonek.glif000066400000000000000000000112411434272261000236740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_th.glif000066400000000000000000000011171434272261000230260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/E_uro.glif000066400000000000000000000046161434272261000232270ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/F_.glif000066400000000000000000000065051434272261000225010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/G_.glif000066400000000000000000000052431434272261000225000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/G_breve.glif000066400000000000000000000003371434272261000235230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/G_caron.glif000066400000000000000000000003701434272261000235170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/G_circumflex.glif000066400000000000000000000003601434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/G_dotaccent.glif000066400000000000000000000003551434272261000243640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/H_.glif000066400000000000000000000106651434272261000225050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/H_bar.glif000066400000000000000000000013071434272261000231630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/H_circumflex.glif000066400000000000000000000003601434272261000245560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_.glif000066400000000000000000000035431434272261000225030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_J_.glif000066400000000000000000000003211434272261000227430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_acute.glif000066400000000000000000000003411434272261000235160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_breve.glif000066400000000000000000000003371434272261000235250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_circumflex.glif000066400000000000000000000003601434272261000245570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_dieresis.glif000066400000000000000000000003571434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_dotaccent.glif000066400000000000000000000003551434272261000243660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_grave.glif000066400000000000000000000003411434272261000235210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_macron.glif000066400000000000000000000003551434272261000237010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_ogonek.glif000066400000000000000000000054501434272261000237050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/I_tilde.glif000066400000000000000000000003551434272261000235230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/J_.glif000066400000000000000000000035151434272261000225030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/J_circumflex.glif000066400000000000000000000003601434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/K_.glif000066400000000000000000000075011434272261000225030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/L_.glif000066400000000000000000000045221434272261000225040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/L_acute.glif000066400000000000000000000003411434272261000235210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/L_caron.glif000066400000000000000000000003511434272261000235230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/L_dot.glif000066400000000000000000000003501434272261000232060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/L_slash.glif000066400000000000000000000007421434272261000235370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/M_.glif000066400000000000000000000103431434272261000225030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/N_.glif000066400000000000000000000060771434272261000225150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/N_acute.glif000066400000000000000000000003411434272261000235230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/N_caron.glif000066400000000000000000000003541434272261000235300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/N_tilde.glif000066400000000000000000000003551434272261000235300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_.glif000066400000000000000000000020561434272261000225070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_E_.glif000066400000000000000000000102731434272261000227530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_acute.glif000066400000000000000000000003411434272261000235240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_breve.glif000066400000000000000000000003371434272261000235330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_circumflex.glif000066400000000000000000000003601434272261000245650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_dieresis.glif000066400000000000000000000003571434272261000242410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_grave.glif000066400000000000000000000003411434272261000235270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_hungarumlaut.glif000066400000000000000000000004321434272261000251400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_macron.glif000066400000000000000000000003551434272261000237070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_slash.glif000066400000000000000000000007271434272261000235450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/O_tilde.glif000066400000000000000000000003551434272261000235310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/P_.glif000066400000000000000000000051621434272261000225110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Q_.glif000066400000000000000000000032311434272261000225050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/R_.glif000066400000000000000000000057561434272261000225240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/R_acute.glif000066400000000000000000000003411434272261000235270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/R_caron.glif000066400000000000000000000003541434272261000235340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/S_.glif000066400000000000000000000040341434272261000225110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/S_acute.glif000066400000000000000000000003551434272261000235350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/S_caron.glif000066400000000000000000000003531434272261000235340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/S_cedilla.glif000066400000000000000000000003551434272261000240310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/S_circumflex.glif000066400000000000000000000003601434272261000245710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/T_.glif000066400000000000000000000045461434272261000225220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/T_bar.glif000066400000000000000000000011121434272261000231710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/T_caron.glif000066400000000000000000000003541434272261000235360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/T_horn.glif000066400000000000000000000061501434272261000234020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_.glif000066400000000000000000000051641434272261000225200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_acute.glif000066400000000000000000000003411434272261000235320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_breve.glif000066400000000000000000000003371434272261000235410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_circumflex.glif000066400000000000000000000003601434272261000245730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_dieresis.glif000066400000000000000000000003571434272261000242470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_grave.glif000066400000000000000000000003411434272261000235350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_hungarumlaut.glif000066400000000000000000000004321434272261000251460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_macron.glif000066400000000000000000000003551434272261000237150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_ogonek.glif000066400000000000000000000067361434272261000237310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_ring.glif000066400000000000000000000003361434272261000233740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/U_tilde.glif000066400000000000000000000003531434272261000235350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/V_.glif000066400000000000000000000045231434272261000225170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/W_.glif000066400000000000000000000061361434272261000225220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/W_acute.glif000066400000000000000000000003411434272261000235340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/W_circumflex.glif000066400000000000000000000003601434272261000245750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/W_dieresis.glif000066400000000000000000000003571434272261000242510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/W_grave.glif000066400000000000000000000003411434272261000235370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/X_.glif000066400000000000000000000070671434272261000225270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Y_.glif000066400000000000000000000062011434272261000225150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Y_acute.glif000066400000000000000000000003411434272261000235360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Y_circumflex.glif000066400000000000000000000003601434272261000245770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Y_dieresis.glif000066400000000000000000000003571434272261000242530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Y_grave.glif000066400000000000000000000003411434272261000235410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Z_.glif000066400000000000000000000035311434272261000225210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Z_acute.glif000066400000000000000000000003411434272261000235370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Z_caron.glif000066400000000000000000000003541434272261000235440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/Z_dotaccent.glif000066400000000000000000000003551434272261000244070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/a.glif000066400000000000000000000051361434272261000223740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/aacute.glif000066400000000000000000000003521434272261000234110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/abreve.glif000066400000000000000000000003501434272261000234110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/acircumflex.glif000066400000000000000000000003551434272261000244540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/acute.glif000066400000000000000000000003211434272261000232440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/acutecomb.cap.glif000066400000000000000000000012751434272261000246600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/acutecomb.glif000066400000000000000000000013201434272261000241050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/adieresis.glif000066400000000000000000000003531434272261000241200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ae.glif000066400000000000000000000071621434272261000225420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/agrave.glif000066400000000000000000000003521434272261000234140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/amacron.glif000066400000000000000000000003511434272261000235660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ampersand.glif000066400000000000000000000061271434272261000241270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/aogonek.glif000066400000000000000000000067111434272261000235770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/aring.glif000066400000000000000000000003461434272261000232520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/asciicircum.glif000066400000000000000000000017371434272261000244520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/asciitilde.glif000066400000000000000000000023061434272261000242620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/asterisk.glif000066400000000000000000000065161434272261000240040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/at.glif000066400000000000000000000053111434272261000225530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/atilde.glif000066400000000000000000000003521434272261000234110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/b.glif000066400000000000000000000044251434272261000223750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/backslash.latn.glif000066400000000000000000000014231434272261000250370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/bar.latn.glif000066400000000000000000000014161434272261000236520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/braceleft.latn.glif000066400000000000000000000043061434272261000250360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/braceright.latn.glif000066400000000000000000000043051434272261000252200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/bracketleft.latn.glif000066400000000000000000000024511434272261000253740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/bracketright.latn.glif000066400000000000000000000024261434272261000255610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/breve.glif000066400000000000000000000003171434272261000232530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/brokenbar.glif000066400000000000000000000026531434272261000241220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/bullet.glif000066400000000000000000000011451434272261000234370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/c.glif000066400000000000000000000030311434272261000223660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/cacute.glif000066400000000000000000000003521434272261000234130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/caron.glif000066400000000000000000000003171434272261000232520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ccaron.glif000066400000000000000000000003501434272261000234120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ccedilla.glif000066400000000000000000000003341434272261000237070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ccircumflex.glif000066400000000000000000000003551434272261000244560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/cdotaccent.glif000066400000000000000000000003541434272261000242600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/cedilla.glif000066400000000000000000000030571434272261000235510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/cent.glif000066400000000000000000000007451434272261000231060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/circumflex.glif000066400000000000000000000003071434272261000243100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/colon.glif000066400000000000000000000020521434272261000232600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/comma.glif000066400000000000000000000015741434272261000232520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/contents.plist000066400000000000000000000635061434272261000242300ustar00rootroot00000000000000 A A_.glif AE A_E_.glif Aacute A_acute.glif Abreve A_breve.glif Acircumflex A_circumflex.glif Adieresis A_dieresis.glif Agrave A_grave.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Atilde A_tilde.glif B B_.glif C C_.glif Cacute C_acute.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif D D_.glif Dcaron D_caron.glif Dcroat D_croat.glif E E_.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Egrave E_grave.glif Emacron E_macron.glif Eng E_ng.glif Eogonek E_ogonek.glif Eth E_th.glif Euro E_uro.glif F F_.glif G G_.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gdotaccent G_dotaccent.glif H H_.glif Hbar H_bar.glif Hcircumflex H_circumflex.glif I I_.glif IJ I_J_.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Igrave I_grave.glif Imacron I_macron.glif Iogonek I_ogonek.glif Itilde I_tilde.glif J J_.glif Jcircumflex J_circumflex.glif K K_.glif L L_.glif Lacute L_acute.glif Lcaron L_caron.glif Ldot L_dot.glif Lslash L_slash.glif M M_.glif N N_.glif Nacute N_acute.glif Ncaron N_caron.glif Ntilde N_tilde.glif O O_.glif OE O_E_.glif Oacute O_acute.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Odieresis O_dieresis.glif Ograve O_grave.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Oslash O_slash.glif Otilde O_tilde.glif P P_.glif Q Q_.glif R R_.glif Racute R_acute.glif Rcaron R_caron.glif S S_.glif Sacute S_acute.glif Scaron S_caron.glif Scedilla S_cedilla.glif Scircumflex S_circumflex.glif T T_.glif Tbar T_bar.glif Tcaron T_caron.glif Thorn T_horn.glif U U_.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Ugrave U_grave.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Uogonek U_ogonek.glif Uring U_ring.glif Utilde U_tilde.glif V V_.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif Y Y_.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ygrave Y_grave.glif Z Z_.glif Zacute Z_acute.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif a a.glif aacute aacute.glif abreve abreve.glif acircumflex acircumflex.glif acute acute.glif acutecomb acutecomb.glif acutecomb.cap acutecomb.cap.glif adieresis adieresis.glif ae ae.glif agrave agrave.glif amacron amacron.glif ampersand ampersand.glif aogonek aogonek.glif aring aring.glif asciicircum asciicircum.glif asciitilde asciitilde.glif asterisk asterisk.glif at at.glif atilde atilde.glif b b.glif backslash.latn backslash.latn.glif bar.latn bar.latn.glif braceleft.latn braceleft.latn.glif braceright.latn braceright.latn.glif bracketleft.latn bracketleft.latn.glif bracketright.latn bracketright.latn.glif breve breve.glif brokenbar brokenbar.glif bullet bullet.glif c c.glif cacute cacute.glif caron caron.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedilla cedilla.glif cent cent.glif circumflex circumflex.glif colon colon.glif comma comma.glif copyright copyright.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dcaron dcaron.glif dcroat dcroat.glif degree degree.glif dieresis dieresis.glif divide divide.glif dollar dollar.glif dotbelowcomb dotbelowcomb.glif dotlessi dotlessi.glif e e.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif edieresis edieresis.glif edotaccent edotaccent.glif egrave egrave.glif eight eight.glif eight.medium eight.medium.glif eight.numr eight.numr.glif eight.prop eight.prop.glif eight.small eight.small.glif ellipsis ellipsis.glif emacron emacron.glif emdash emdash.glif endash endash.glif eng eng.glif eogonek eogonek.glif equal equal.glif eth eth.glif exclam.latn exclam.latn.glif exclamdown exclamdown.glif f f.glif f_b f_b.glif f_f f_f.glif f_f_b f_f_b.glif f_f_h f_f_h.glif f_f_i f_f_i.glif f_f_j f_f_j.glif f_f_k f_f_k.glif f_f_l f_f_l.glif f_h f_h.glif f_i f_i.glif f_j f_j.glif f_k f_k.glif f_l f_l.glif figuredash figuredash.glif five five.glif five.medium five.medium.glif five.numr five.numr.glif five.prop five.prop.glif five.small five.small.glif four four.glif four.medium four.medium.glif four.numr four.numr.glif four.prop four.prop.glif four.small four.small.glif fraction fraction.glif g g.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gdotaccent gdotaccent.glif germandbls germandbls.glif grave grave.glif gravecomb gravecomb.glif gravecomb.cap gravecomb.cap.glif greater greater.glif guillemotleft.latn guillemotleft.latn.glif guillemotright.latn guillemotright.latn.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif hbar hbar.glif hcircumflex hcircumflex.glif hyphen hyphen.glif i i.glif i.TRK i.T_R_K_.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif igrave igrave.glif ij ij.glif imacron imacron.glif iogonek iogonek.glif itilde itilde.glif j j.glif jcircumflex jcircumflex.glif k k.glif kgreenlandic kgreenlandic.glif l l.glif lacute lacute.glif lcaron lcaron.glif ldot ldot.glif less less.glif logicalnot logicalnot.glif longs longs.glif lslash lslash.glif m m.glif macron macron.glif minus minus.glif minute minute.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif napostrophe napostrophe.glif ncaron ncaron.glif nine nine.glif nine.medium nine.medium.glif nine.numr nine.numr.glif nine.prop nine.prop.glif nine.small nine.small.glif ntilde ntilde.glif numbersign numbersign.glif o o.glif oacute oacute.glif obreve obreve.glif ocircumflex ocircumflex.glif odieresis odieresis.glif oe oe.glif ogonek ogonek.glif ograve ograve.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif one one.glif one.medium one.medium.glif one.numr one.numr.glif one.prop one.prop.glif one.small one.small.glif onedotenleader onedotenleader.glif onehalf onehalf.glif onequarter onequarter.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif oslash oslash.glif otilde otilde.glif p p.glif paragraph paragraph.glif parenleft.latn parenleft.latn.glif parenright.latn parenright.latn.glif percent percent.glif period.latn period.latn.glif periodcentered periodcentered.glif perthousand perthousand.glif plus plus.glif plusminus plusminus.glif q q.glif question question.glif questiondown questiondown.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif rcaron rcaron.glif registered registered.glif ring ring.glif s s.glif sacute sacute.glif scaron scaron.glif scedilla scedilla.glif scircumflex scircumflex.glif second second.glif section section.glif semicolon semicolon.glif seven seven.glif seven.medium seven.medium.glif seven.numr seven.numr.glif seven.prop seven.prop.glif seven.small seven.small.glif six six.glif six.medium six.medium.glif six.numr six.numr.glif six.prop six.prop.glif six.small six.small.glif slash.latn slash.latn.glif space space.glif sterling sterling.glif t t.glif tbar tbar.glif tcaron tcaron.glif thorn thorn.glif three three.glif three.medium three.medium.glif three.numr three.numr.glif three.prop three.prop.glif three.small three.small.glif threequarters threequarters.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.cap tildecomb.cap.glif two two.glif two.medium two.medium.glif two.numr two.numr.glif two.prop two.prop.glif two.small two.small.glif u u.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif ugrave ugrave.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif underscore underscore.glif uni00A0 uni00A_0.glif uni00AD uni00A_D_.glif uni00B2 uni00B_2.glif uni00B3 uni00B_3.glif uni00B9 uni00B_9.glif uni0122 uni0122.glif uni0123 uni0123.glif uni0136 uni0136.glif uni0137 uni0137.glif uni013B uni013B_.glif uni013C uni013C_.glif uni0145 uni0145.glif uni0146 uni0146.glif uni0156 uni0156.glif uni0157 uni0157.glif uni0162 uni0162.glif uni0163 uni0163.glif uni0237 uni0237.glif uni02BB uni02B_B_.glif uni02BC uni02B_C_.glif uni02BE uni02B_E_.glif uni02BF uni02B_F_.glif uni0302 uni0302.glif uni0302.cap uni0302.cap.glif uni0304 uni0304.glif uni0304.cap uni0304.cap.glif uni0305 uni0305.glif uni0306 uni0306.glif uni0306.cap uni0306.cap.glif uni0307 uni0307.glif uni0308 uni0308.glif uni0308.cap uni0308.cap.glif uni030A uni030A_.glif uni030A.cap uni030A_.cap.glif uni030C uni030C_.glif uni030C.cap uni030C_.cap.glif uni0312 uni0312.glif uni0315 uni0315.glif uni0323.cap uni0323.cap.glif uni0326 uni0326.glif uni0327 uni0327.glif uni0327.cap uni0327.cap.glif uni0328 uni0328.glif uni1E02 uni1E_02.glif uni1E03 uni1E_03.glif uni1E0A uni1E_0A_.glif uni1E0B uni1E_0B_.glif uni1E0C uni1E_0C_.glif uni1E0D uni1E_0D_.glif uni1E0E uni1E_0E_.glif uni1E0F uni1E_0F_.glif uni1E10 uni1E_10.glif uni1E11 uni1E_11.glif uni1E1E uni1E_1E_.glif uni1E1F uni1E_1F_.glif uni1E24 uni1E_24.glif uni1E25 uni1E_25.glif uni1E28 uni1E_28.glif uni1E29 uni1E_29.glif uni1E2A uni1E_2A_.glif uni1E2B uni1E_2B_.glif uni1E40 uni1E_40.glif uni1E41 uni1E_41.glif uni1E56 uni1E_56.glif uni1E57 uni1E_57.glif uni1E60 uni1E_60.glif uni1E61 uni1E_61.glif uni1E62 uni1E_62.glif uni1E63 uni1E_63.glif uni1E6A uni1E_6A_.glif uni1E6B uni1E_6B_.glif uni1E6C uni1E_6C_.glif uni1E6D uni1E_6D_.glif uni1E6E uni1E_6E_.glif uni1E6F uni1E_6F_.glif uni1E92 uni1E_92.glif uni1E93 uni1E_93.glif uni1E96 uni1E_96.glif uni1E97 uni1E_97.glif uni2010 uni2010.glif uni2011 uni2011.glif uni2015 uni2015.glif uni201F uni201F_.glif uni202F uni202F_.glif uni2038 uni2038.glif uni203E uni203E_.glif uni2042 uni2042.glif uni2074 uni2074.glif uni2213 uni2213.glif uogonek uogonek.glif uring uring.glif utilde utilde.glif v v.glif w w.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif x x.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif yen yen.glif ygrave ygrave.glif z z.glif zacute zacute.glif zcaron zcaron.glif zdotaccent zdotaccent.glif zero zero.glif zero.medium zero.medium.glif zero.numr zero.numr.glif zero.prop zero.prop.glif zero.small zero.small.glif amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/copyright.glif000066400000000000000000000050311434272261000241560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/currency.glif000066400000000000000000000042561434272261000240100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/d.glif000066400000000000000000000053061434272261000223760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dagger.glif000066400000000000000000000045301434272261000234020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/daggerdbl.glif000066400000000000000000000101671434272261000240670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dcaron.glif000066400000000000000000000003511434272261000234140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dcroat.glif000066400000000000000000000011141434272261000234200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/degree.glif000066400000000000000000000020611434272261000234010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dieresis.glif000066400000000000000000000003231434272261000237540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/divide.glif000066400000000000000000000030721434272261000234150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dollar.glif000066400000000000000000000046551434272261000234360ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dotbelowcomb.glif000066400000000000000000000011511434272261000246250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/dotlessi.glif000066400000000000000000000033651434272261000240040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/e.glif000066400000000000000000000032221434272261000223720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eacute.glif000066400000000000000000000003521434272261000234150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ebreve.glif000066400000000000000000000003501434272261000234150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ecaron.glif000066400000000000000000000003501434272261000234140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ecircumflex.glif000066400000000000000000000003551434272261000244600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/edieresis.glif000066400000000000000000000003531434272261000241240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/edotaccent.glif000066400000000000000000000003541434272261000242620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/egrave.glif000066400000000000000000000003521434272261000234200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eight.glif000066400000000000000000000051051434272261000232500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eight.medium.glif000066400000000000000000000003271434272261000245300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eight.numr.glif000066400000000000000000000002641434272261000242310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eight.prop.glif000066400000000000000000000002551434272261000242300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eight.small.glif000066400000000000000000000003311434272261000243530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ellipsis.glif000066400000000000000000000027731434272261000240040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/emacron.glif000066400000000000000000000003511434272261000235720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/emdash.glif000066400000000000000000000014371434272261000234150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/endash.glif000066400000000000000000000014371434272261000234160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eng.glif000066400000000000000000000056261434272261000227310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eogonek.glif000066400000000000000000000051521434272261000236010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/equal.glif000066400000000000000000000015261434272261000232620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/eth.glif000066400000000000000000000036451434272261000227370ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/exclam.latn.glif000066400000000000000000000023201434272261000243520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/exclamdown.glif000066400000000000000000000023571434272261000243170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f.glif000066400000000000000000000053621434272261000224020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_b.glif000066400000000000000000000106051434272261000226770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f.glif000066400000000000000000000106221434272261000227020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f_b.glif000066400000000000000000000141051434272261000232030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f_h.glif000066400000000000000000000157771434272261000232310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f_i.glif000066400000000000000000000126641434272261000232220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f_j.glif000066400000000000000000000121071434272261000232130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f_k.glif000066400000000000000000000161211434272261000232140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_f_l.glif000066400000000000000000000127231434272261000232210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_h.glif000066400000000000000000000124661434272261000227140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_i.glif000066400000000000000000000072161434272261000227120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_j.glif000066400000000000000000000066211434272261000227120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_k.glif000066400000000000000000000125771434272261000227220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/f_l.glif000066400000000000000000000074511434272261000227160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/figuredash.glif000066400000000000000000000014431434272261000242720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/five.glif000066400000000000000000000043061434272261000231030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/five.medium.glif000066400000000000000000000003251434272261000243570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/five.numr.glif000066400000000000000000000002621434272261000240600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/five.prop.glif000066400000000000000000000002541434272261000240600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/five.small.glif000066400000000000000000000003271434272261000242110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/four.glif000066400000000000000000000026041434272261000231240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/four.medium.glif000066400000000000000000000003251434272261000244010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/four.numr.glif000066400000000000000000000002621434272261000241020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/four.prop.glif000066400000000000000000000002541434272261000241020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/four.small.glif000066400000000000000000000003271434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/fraction.glif000066400000000000000000000012531434272261000237550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/g.glif000066400000000000000000000064361434272261000224060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/gbreve.glif000066400000000000000000000003501434272261000234170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/gcaron.glif000066400000000000000000000003651434272261000234240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/gcircumflex.glif000066400000000000000000000003551434272261000244620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/gdotaccent.glif000066400000000000000000000003541434272261000242640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/germandbls.glif000066400000000000000000000070241434272261000242700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/grave.glif000066400000000000000000000003211434272261000232470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/gravecomb.cap.glif000066400000000000000000000012751434272261000246630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/gravecomb.glif000066400000000000000000000013201434272261000241100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/greater.glif000066400000000000000000000022651434272261000236050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/guillemotleft.latn.glif000066400000000000000000000033251434272261000257630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/guillemotright.latn.glif000066400000000000000000000033211434272261000261420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/guilsinglleft.glif000066400000000000000000000016771434272261000250320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/guilsinglright.glif000066400000000000000000000016731434272261000252110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/h.glif000066400000000000000000000063061434272261000224030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/hbar.glif000066400000000000000000000014351434272261000230660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/hcircumflex.glif000066400000000000000000000003601434272261000244570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/hyphen.glif000066400000000000000000000014421434272261000234430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/i.T_R_K_.glif000066400000000000000000000002271434272261000234740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/i.glif000066400000000000000000000042741434272261000224060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/iacute.glif000066400000000000000000000003751434272261000234260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ibreve.glif000066400000000000000000000003731434272261000234260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/icircumflex.glif000066400000000000000000000004001434272261000244530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/idieresis.glif000066400000000000000000000003761434272261000241350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/igrave.glif000066400000000000000000000003751434272261000234310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ij.glif000066400000000000000000000003211434272261000225450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/imacron.glif000066400000000000000000000003741434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/iogonek.glif000066400000000000000000000062161434272261000236070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/itilde.glif000066400000000000000000000003751434272261000234260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/j.glif000066400000000000000000000037021434272261000224020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/jcircumflex.glif000066400000000000000000000003771434272261000244710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/k.glif000066400000000000000000000064171434272261000224110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/kgreenlandic.glif000066400000000000000000000065231434272261000246030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/l.glif000066400000000000000000000032001434272261000223750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/lacute.glif000066400000000000000000000003411434272261000234220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/lcaron.glif000066400000000000000000000003511434272261000234240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ldot.glif000066400000000000000000000003501434272261000231070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/less.glif000066400000000000000000000022771434272261000231250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/logicalnot.glif000066400000000000000000000014441434272261000243050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/longs.glif000066400000000000000000000043671434272261000233030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/lslash.glif000066400000000000000000000007421434272261000234400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/m.glif000066400000000000000000000112421434272261000224030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/macron.glif000066400000000000000000000014461434272261000234330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/minus.glif000066400000000000000000000014211434272261000233000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/minute.glif000066400000000000000000000014671434272261000234600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/mu.glif000066400000000000000000000055241434272261000225760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/multiply.glif000066400000000000000000000031421434272261000240260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/n.glif000066400000000000000000000062211434272261000224050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/nacute.glif000066400000000000000000000003521434272261000234260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/napostrophe.glif000066400000000000000000000003721434272261000245130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ncaron.glif000066400000000000000000000003501434272261000234250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/nine.glif000066400000000000000000000030321434272261000230760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/nine.medium.glif000066400000000000000000000003251434272261000243570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/nine.numr.glif000066400000000000000000000002621434272261000240600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/nine.prop.glif000066400000000000000000000002541434272261000240600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/nine.small.glif000066400000000000000000000003271434272261000242110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ntilde.glif000066400000000000000000000003521434272261000234260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/numbersign.glif000066400000000000000000000037221434272261000243240ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/o.glif000066400000000000000000000020511434272261000224030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/oacute.glif000066400000000000000000000003521434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/obreve.glif000066400000000000000000000003501434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ocircumflex.glif000066400000000000000000000003551434272261000244720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/odieresis.glif000066400000000000000000000003531434272261000241360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/oe.glif000066400000000000000000000047711434272261000225630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ogonek.glif000066400000000000000000000003031434272261000234250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ograve.glif000066400000000000000000000003521434272261000234320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ohungarumlaut.glif000066400000000000000000000004541434272261000250450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/omacron.glif000066400000000000000000000003511434272261000236040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/one.glif000066400000000000000000000035241434272261000227340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/one.medium.glif000066400000000000000000000003251434272261000242070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/one.numr.glif000066400000000000000000000002601434272261000237060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/one.prop.glif000066400000000000000000000002521434272261000237060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/one.small.glif000066400000000000000000000003271434272261000240410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/onedotenleader.glif000066400000000000000000000011471434272261000251420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/onehalf.glif000066400000000000000000000073271434272261000235740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/onequarter.glif000066400000000000000000000066411434272261000243430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ordfeminine.glif000066400000000000000000000052051434272261000244500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ordmasculine.glif000066400000000000000000000020741434272261000246370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/oslash.glif000066400000000000000000000007271434272261000234460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/otilde.glif000066400000000000000000000003521434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/p.glif000066400000000000000000000054531434272261000224150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/paragraph.glif000066400000000000000000000072241434272261000241210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/parenleft.latn.glif000066400000000000000000000014011434272261000250600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/parenright.latn.glif000066400000000000000000000013671434272261000252560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/percent.glif000066400000000000000000000047311434272261000236140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/period.latn.glif000066400000000000000000000011151434272261000243640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/periodcentered.glif000066400000000000000000000012051434272261000251410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/perthousand.glif000066400000000000000000000065641434272261000245160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/plus.glif000066400000000000000000000025151434272261000231350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/plusminus.glif000066400000000000000000000035401434272261000242100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/q.glif000066400000000000000000000046631434272261000224200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/question.glif000066400000000000000000000041161434272261000240200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/questiondown.glif000066400000000000000000000041521434272261000247100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotedbl.glif000066400000000000000000000026001434272261000237640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotedblbase.glif000066400000000000000000000005051434272261000246210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotedblleft.glif000066400000000000000000000003531434272261000246420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotedblright.glif000066400000000000000000000005101434272261000250200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quoteleft.glif000066400000000000000000000020021434272261000241510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotereversed.glif000066400000000000000000000020051434272261000250410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quoteright.glif000066400000000000000000000003601434272261000243410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotesinglbase.glif000066400000000000000000000003631434272261000251760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/quotesingle.glif000066400000000000000000000014141434272261000245060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/r.glif000066400000000000000000000047431434272261000224200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/racute.glif000066400000000000000000000003521434272261000234320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/radical.glif000066400000000000000000000024051434272261000235470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/rcaron.glif000066400000000000000000000003501434272261000234310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/registered.glif000066400000000000000000000077231434272261000243150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ring.glif000066400000000000000000000003151434272261000231050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/s.glif000066400000000000000000000040251434272261000224120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/sacute.glif000066400000000000000000000003521434272261000234330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/scaron.glif000066400000000000000000000003501434272261000234320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/scedilla.glif000066400000000000000000000003521434272261000237270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/scircumflex.glif000066400000000000000000000003551434272261000244760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/second.glif000066400000000000000000000027441434272261000234310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/section.glif000066400000000000000000000067021434272261000236200ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/semicolon.glif000066400000000000000000000025171434272261000241440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/seven.glif000066400000000000000000000026051434272261000232720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/seven.medium.glif000066400000000000000000000003271434272261000245500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/seven.numr.glif000066400000000000000000000002641434272261000242510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/seven.prop.glif000066400000000000000000000002561434272261000242510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/seven.small.glif000066400000000000000000000003311434272261000243730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/six.glif000066400000000000000000000030351434272261000227530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/six.medium.glif000066400000000000000000000003231434272261000242270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/six.numr.glif000066400000000000000000000002601434272261000237300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/six.prop.glif000066400000000000000000000002521434272261000237300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/six.small.glif000066400000000000000000000003251434272261000240610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/slash.latn.glif000066400000000000000000000012211434272261000242120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/space.glif000066400000000000000000000001771434272261000232470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/sterling.glif000066400000000000000000000054301434272261000240000ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/t.glif000066400000000000000000000040171434272261000224140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/tbar.glif000066400000000000000000000011021434272261000230710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/tcaron.glif000066400000000000000000000003511434272261000234340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/thorn.glif000066400000000000000000000060141434272261000233020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/three.glif000066400000000000000000000041631434272261000232620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/three.medium.glif000066400000000000000000000003271434272261000245370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/three.numr.glif000066400000000000000000000002641434272261000242400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/three.prop.glif000066400000000000000000000002561434272261000242400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/three.small.glif000066400000000000000000000003311434272261000243620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/threequarters.glif000066400000000000000000000075701434272261000250560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/tilde.glif000066400000000000000000000003201434272261000232430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/tildecomb.cap.glif000066400000000000000000000026601434272261000246570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/tildecomb.glif000066400000000000000000000027071434272261000241170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/two.glif000066400000000000000000000032561434272261000227660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/two.medium.glif000066400000000000000000000003211434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/two.numr.glif000066400000000000000000000002601434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/two.prop.glif000066400000000000000000000002521434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/two.small.glif000066400000000000000000000003231434272261000240650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/u.glif000066400000000000000000000057001434272261000224150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uacute.glif000066400000000000000000000003521434272261000234350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ubreve.glif000066400000000000000000000003501434272261000234350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ucircumflex.glif000066400000000000000000000003551434272261000245000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/udieresis.glif000066400000000000000000000003531434272261000241440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ugrave.glif000066400000000000000000000003521434272261000234400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uhungarumlaut.glif000066400000000000000000000004541434272261000250530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/umacron.glif000066400000000000000000000003511434272261000236120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/underscore.glif000066400000000000000000000014131434272261000243170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni00A_0.glif000066400000000000000000000002011434272261000234130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni00A_D_.glif000066400000000000000000000001511434272261000236020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni00B_2.glif000066400000000000000000000032701434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni00B_3.glif000066400000000000000000000041741434272261000234340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni00B_9.glif000066400000000000000000000035261434272261000234420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0122.glif000066400000000000000000000003341434272261000232470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0123.glif000066400000000000000000000003511434272261000232470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0136.glif000066400000000000000000000003341434272261000232540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0137.glif000066400000000000000000000003341434272261000232550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni013B_.glif000066400000000000000000000003341434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni013C_.glif000066400000000000000000000003341434272261000234300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0145.glif000066400000000000000000000003341434272261000232540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0146.glif000066400000000000000000000003341434272261000232550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0156.glif000066400000000000000000000003341434272261000232560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0157.glif000066400000000000000000000003341434272261000232570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0162.glif000066400000000000000000000003531434272261000232540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0163.glif000066400000000000000000000003511434272261000232530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0237.glif000066400000000000000000000027721434272261000232660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni02B_B_.glif000066400000000000000000000003221434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni02B_C_.glif000066400000000000000000000003221434272261000236040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni02B_E_.glif000066400000000000000000000014041434272261000236100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni02B_F_.glif000066400000000000000000000014111434272261000236070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0302.cap.glif000066400000000000000000000022571434272261000240170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0302.glif000066400000000000000000000023021434272261000232440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0304.cap.glif000066400000000000000000000012311434272261000240100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0304.glif000066400000000000000000000012571434272261000232560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0305.glif000066400000000000000000000014331434272261000232530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0306.cap.glif000066400000000000000000000017641434272261000240250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0306.glif000066400000000000000000000020071434272261000232520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0307.glif000066400000000000000000000011351434272261000232540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0308.cap.glif000066400000000000000000000020401434272261000240130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0308.glif000066400000000000000000000020671434272261000232620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni030A_.cap.glif000066400000000000000000000020471434272261000241720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni030A_.glif000066400000000000000000000020721434272261000234260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni030C_.cap.glif000066400000000000000000000022741434272261000241760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni030C_.glif000066400000000000000000000023341434272261000234310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0312.glif000066400000000000000000000016111434272261000232470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0315.glif000066400000000000000000000016111434272261000232520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0323.cap.glif000066400000000000000000000011321434272261000240110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0326.glif000066400000000000000000000016241434272261000232600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0327.cap.glif000066400000000000000000000030361434272261000240220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0327.glif000066400000000000000000000030541434272261000232600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni0328.glif000066400000000000000000000020761434272261000232640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_02.glif000066400000000000000000000003671434272261000234370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_03.glif000066400000000000000000000003521434272261000234320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_0A_.glif000066400000000000000000000003671434272261000236150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_0B_.glif000066400000000000000000000003521434272261000236100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_0C_.glif000066400000000000000000000003731434272261000236140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_0D_.glif000066400000000000000000000003571434272261000236170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_0E_.glif000066400000000000000000000003701434272261000236130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_0F_.glif000066400000000000000000000003531434272261000236150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_10.glif000066400000000000000000000003701434272261000234300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_11.glif000066400000000000000000000003501434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_1E_.glif000066400000000000000000000003671434272261000236220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_1F_.glif000066400000000000000000000003521434272261000236150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_24.glif000066400000000000000000000003561434272261000234410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_25.glif000066400000000000000000000003741434272261000234420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_28.glif000066400000000000000000000003541434272261000234430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_29.glif000066400000000000000000000003501434272261000234400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_2A_.glif000066400000000000000000000003531434272261000236120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_2B_.glif000066400000000000000000000003701434272261000236120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_40.glif000066400000000000000000000003521434272261000234330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_41.glif000066400000000000000000000003501434272261000234320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_56.glif000066400000000000000000000003671434272261000234500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_57.glif000066400000000000000000000003501434272261000234410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_60.glif000066400000000000000000000003521434272261000234350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_61.glif000066400000000000000000000003341434272261000234360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_62.glif000066400000000000000000000003561434272261000234430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_63.glif000066400000000000000000000003731434272261000234430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_6A_.glif000066400000000000000000000003521434272261000236150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_6B_.glif000066400000000000000000000003521434272261000236160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_6C_.glif000066400000000000000000000003721434272261000236210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_6D_.glif000066400000000000000000000003731434272261000236230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_6E_.glif000066400000000000000000000003671434272261000236270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_6F_.glif000066400000000000000000000003671434272261000236300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_92.glif000066400000000000000000000003561434272261000234460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_93.glif000066400000000000000000000003741434272261000234470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_96.glif000066400000000000000000000003701434272261000234460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni1E_97.glif000066400000000000000000000003671434272261000234550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2010.glif000066400000000000000000000014011434272261000232410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2011.glif000066400000000000000000000014011434272261000232420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2015.glif000066400000000000000000000014531434272261000232550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni201F_.glif000066400000000000000000000035561434272261000234430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni202F_.glif000066400000000000000000000002011434272261000234240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2038.glif000066400000000000000000000016731434272261000232660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni203E_.glif000066400000000000000000000003041434272261000234300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2042.glif000066400000000000000000000004571434272261000232600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2074.glif000066400000000000000000000003511434272261000232560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uni2213.glif000066400000000000000000000055021434272261000232540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uogonek.glif000066400000000000000000000076571434272261000236350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/uring.glif000066400000000000000000000003461434272261000232760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/utilde.glif000066400000000000000000000003521434272261000234350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/v.glif000066400000000000000000000041521434272261000224160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/w.glif000066400000000000000000000070701434272261000224210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/wacute.glif000066400000000000000000000003521434272261000234370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/wcircumflex.glif000066400000000000000000000003551434272261000245020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/wdieresis.glif000066400000000000000000000003521434272261000241450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/wgrave.glif000066400000000000000000000003521434272261000234420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/x.glif000066400000000000000000000067271434272261000224320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/y.glif000066400000000000000000000051201434272261000224150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/yacute.glif000066400000000000000000000003521434272261000234410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ycircumflex.glif000066400000000000000000000003551434272261000245040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ydieresis.glif000066400000000000000000000003531434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/yen.glif000066400000000000000000000076571434272261000227610ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/ygrave.glif000066400000000000000000000003511434272261000234430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/z.glif000066400000000000000000000034361434272261000224260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zacute.glif000066400000000000000000000003521434272261000234420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zcaron.glif000066400000000000000000000003501434272261000234410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zdotaccent.glif000066400000000000000000000003541434272261000243070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zero.glif000066400000000000000000000020561434272261000231310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zero.medium.glif000066400000000000000000000003251434272261000244050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zero.numr.glif000066400000000000000000000002621434272261000241060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zero.prop.glif000066400000000000000000000002361434272261000241060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/glyphs/zero.small.glif000066400000000000000000000003271434272261000242370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Bold.ufo/groups.plist000066400000000000000000000650301434272261000223760ustar00rootroot00000000000000 public.kern1.kc0_0 ampersand public.kern1.kc0_1 bar.latn public.kern1.kc0_10 G Gcircumflex Gbreve Gdotaccent uni0122 public.kern1.kc0_11 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E24 uni1E28 uni1E2A public.kern1.kc0_12 J IJ Jcircumflex public.kern1.kc0_13 K uni0136 public.kern1.kc0_14 L Lacute uni013B Lcaron Ldot Lslash public.kern1.kc0_15 M uni1E40 public.kern1.kc0_16 N Ntilde Nacute uni0145 Ncaron Eng public.kern1.kc0_17 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron Obreve Ohungarumlaut uni1E0A uni1E0C uni1E0E uni1E10 public.kern1.kc0_18 P uni1E56 public.kern1.kc0_19 R Racute uni0156 Rcaron public.kern1.kc0_2 exclamdown public.kern1.kc0_20 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern1.kc0_21 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern1.kc0_22 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern1.kc0_23 V public.kern1.kc0_24 W Wcircumflex Wgrave Wacute Wdieresis public.kern1.kc0_25 X public.kern1.kc0_26 Y Yacute Ycircumflex Ydieresis Ygrave public.kern1.kc0_27 Z Zacute Zdotaccent Zcaron uni1E92 public.kern1.kc0_28 Thorn public.kern1.kc0_29 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern1.kc0_3 registered public.kern1.kc0_30 b uni1E03 f_b f_f_b public.kern1.kc0_31 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern1.kc0_32 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern1.kc0_33 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe public.kern1.kc0_34 f uni1E1F f_f public.kern1.kc0_35 g gcircumflex gbreve gdotaccent uni0123 public.kern1.kc0_36 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i public.kern1.kc0_37 j ij jcircumflex uni0237 f_j f_f_j public.kern1.kc0_38 k uni0137 kgreenlandic f_k f_f_k public.kern1.kc0_39 l lacute uni013C lcaron lslash f_l f_f_l public.kern1.kc0_4 questiondown public.kern1.kc0_40 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h public.kern1.kc0_41 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut public.kern1.kc0_42 p thorn uni1E57 public.kern1.kc0_43 q public.kern1.kc0_44 r racute uni0157 rcaron public.kern1.kc0_45 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern1.kc0_46 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern1.kc0_47 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern1.kc0_48 v public.kern1.kc0_49 w wcircumflex wgrave wacute wdieresis public.kern1.kc0_5 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern1.kc0_50 x public.kern1.kc0_51 y yacute ydieresis ycircumflex ygrave public.kern1.kc0_52 z zacute zdotaccent zcaron uni1E93 public.kern1.kc0_53 germandbls public.kern1.kc0_54 eth public.kern1.kc0_55 ldot public.kern1.kc0_56 eng public.kern1.kc0_57 public.kern1.kc0_58 public.kern1.kc0_59 quotedbl quotesingle public.kern1.kc0_6 B uni1E02 public.kern1.kc0_60 asterisk public.kern1.kc0_61 hyphen endash emdash uni2015 public.kern1.kc0_62 comma period.latn quotesinglbase quotedblbase public.kern1.kc0_63 slash.latn public.kern1.kc0_64 colon semicolon public.kern1.kc0_65 backslash.latn public.kern1.kc0_66 quoteleft quotedblleft public.kern1.kc0_67 quoteright quotedblright public.kern1.kc0_68 guillemotleft.latn guilsinglleft public.kern1.kc0_69 guillemotright.latn guilsinglright public.kern1.kc0_7 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron public.kern1.kc0_70 parenleft.latn public.kern1.kc0_71 zero zero.prop public.kern1.kc0_72 one.prop public.kern1.kc0_73 two.prop public.kern1.kc0_74 three.prop public.kern1.kc0_75 four.prop public.kern1.kc0_76 five.prop public.kern1.kc0_77 six.prop public.kern1.kc0_78 seven.prop public.kern1.kc0_79 eight.prop public.kern1.kc0_8 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE public.kern1.kc0_80 nine.prop public.kern1.kc0_81 bracketleft.latn public.kern1.kc0_82 braceleft.latn public.kern1.kc0_9 F uni1E1E public.kern2.kc0_1 quotedbl quotesingle public.kern2.kc0_10 M uni1E40 public.kern2.kc0_11 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc0_12 X public.kern2.kc0_13 AE public.kern2.kc0_14 ampersand public.kern2.kc0_15 parenright.latn public.kern2.kc0_16 asterisk public.kern2.kc0_17 hyphen endash emdash uni2015 public.kern2.kc0_18 zero zero.prop public.kern2.kc0_19 two.prop public.kern2.kc0_2 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc0_20 four.prop public.kern2.kc0_21 six.prop public.kern2.kc0_22 seven.prop public.kern2.kc0_23 eight.prop public.kern2.kc0_24 nine.prop public.kern2.kc0_25 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc0_26 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc0_27 backslash.latn public.kern2.kc0_28 bracketright.latn public.kern2.kc0_29 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek public.kern2.kc0_3 V public.kern2.kc0_30 b thorn uni1E03 public.kern2.kc0_31 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc0_32 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc0_33 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc0_34 j jcircumflex uni0237 public.kern2.kc0_35 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc0_36 p uni1E57 public.kern2.kc0_37 q public.kern2.kc0_38 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc0_39 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc0_4 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc0_40 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc0_41 v public.kern2.kc0_42 w wcircumflex wgrave wacute wdieresis public.kern2.kc0_43 y yacute ydieresis ycircumflex ygrave public.kern2.kc0_44 braceright.latn public.kern2.kc0_45 registered public.kern2.kc0_46 quoteleft quotedblleft public.kern2.kc0_47 quoteright quotedblright public.kern2.kc0_48 guillemotleft.latn guilsinglleft public.kern2.kc0_49 guillemotright.latn guilsinglright public.kern2.kc0_5 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc0_50 f germandbls uni1E1F f_f f_i f_f_i f_j f_f_j f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h public.kern2.kc0_51 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc0_52 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij public.kern2.kc0_53 l lacute uni013C lcaron ldot lslash public.kern2.kc0_54 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc0_55 x public.kern2.kc0_56 z zacute zdotaccent zcaron uni1E93 public.kern2.kc0_57 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc0_58 slash.latn public.kern2.kc0_59 colon semicolon public.kern2.kc0_6 J Jcircumflex public.kern2.kc0_60 eth public.kern2.kc0_61 three three.prop public.kern2.kc0_62 five five.prop public.kern2.kc0_63 Z Zacute Zdotaccent Zcaron uni1E92 public.kern2.kc0_64 one one.prop public.kern2.kc0_65 exclam.latn public.kern2.kc0_66 bar.latn public.kern2.kc0_67 question public.kern2.kc0_68 public.kern2.kc0_69 at public.kern2.kc0_7 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc0_8 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc0_9 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 amiri-1.000/sources/AmiriLatin-Bold.ufo/kerning.plist000066400000000000000000002354131434272261000225200ustar00rootroot00000000000000 public.kern1.kc0_0 public.kern2.kc0_1 -44 public.kern2.kc0_2 -32 public.kern2.kc0_3 -34 public.kern2.kc0_4 -30 public.kern2.kc0_5 -31 public.kern1.kc0_1 public.kern2.kc0_3 -10 public.kern2.kc0_4 -10 public.kern2.kc0_6 61 public.kern1.kc0_10 public.kern2.kc0_13 -5 public.kern2.kc0_15 -17 public.kern2.kc0_2 -13 public.kern2.kc0_27 -13 public.kern2.kc0_28 -19 public.kern2.kc0_3 -27 public.kern2.kc0_4 -24 public.kern2.kc0_41 -14 public.kern2.kc0_42 -14 public.kern2.kc0_43 -14 public.kern2.kc0_44 -10 public.kern2.kc0_5 -27 public.kern2.kc0_51 -5 public.kern2.kc0_53 -5 public.kern2.kc0_55 -12 public.kern2.kc0_8 -12 public.kern1.kc0_11 public.kern2.kc0_17 -13 public.kern2.kc0_25 -9 public.kern2.kc0_28 -16 public.kern2.kc0_29 -10 public.kern2.kc0_31 -20 public.kern2.kc0_32 -20 public.kern2.kc0_33 -12 public.kern2.kc0_34 -7 public.kern2.kc0_35 -20 public.kern2.kc0_36 -8 public.kern2.kc0_37 -20 public.kern2.kc0_38 -8 public.kern2.kc0_39 -15 public.kern2.kc0_40 -15 public.kern2.kc0_41 -21 public.kern2.kc0_42 -21 public.kern2.kc0_43 -21 public.kern2.kc0_48 -15 public.kern2.kc0_60 -19 public.kern1.kc0_12 public.kern2.kc0_13 -10 public.kern2.kc0_14 -11 public.kern2.kc0_17 -10 public.kern2.kc0_25 -8 public.kern2.kc0_28 -16 public.kern2.kc0_29 -21 public.kern2.kc0_31 -21 public.kern2.kc0_32 -21 public.kern2.kc0_33 -18 public.kern2.kc0_34 -7 public.kern2.kc0_35 -20 public.kern2.kc0_36 -13 public.kern2.kc0_37 -21 public.kern2.kc0_38 -17 public.kern2.kc0_39 -17 public.kern2.kc0_40 -15 public.kern2.kc0_41 -18 public.kern2.kc0_42 -18 public.kern2.kc0_43 -17 public.kern2.kc0_48 -11 public.kern2.kc0_50 -18 public.kern2.kc0_52 -9 public.kern2.kc0_54 -17 public.kern2.kc0_55 -6 public.kern2.kc0_56 -20 public.kern2.kc0_57 -9 public.kern2.kc0_59 -8 public.kern2.kc0_8 -17 public.kern1.kc0_13 public.kern2.kc0_17 -35 public.kern2.kc0_19 30 public.kern2.kc0_25 -54 public.kern2.kc0_31 -27 public.kern2.kc0_32 -26 public.kern2.kc0_35 -36 public.kern2.kc0_37 -25 public.kern2.kc0_39 -16 public.kern2.kc0_40 -9 public.kern2.kc0_41 -74 public.kern2.kc0_42 -73 public.kern2.kc0_43 -73 public.kern2.kc0_45 -17 public.kern2.kc0_48 -33 public.kern2.kc0_58 13 public.kern2.kc0_61 8 public.kern2.kc0_62 5 public.kern1.kc0_14 public.kern2.kc0_1 -63 public.kern2.kc0_15 -12 public.kern2.kc0_16 -71 public.kern2.kc0_2 -61 public.kern2.kc0_20 16 public.kern2.kc0_22 -13 public.kern2.kc0_27 -40 public.kern2.kc0_28 -18 public.kern2.kc0_3 -86 public.kern2.kc0_4 -75 public.kern2.kc0_41 -53 public.kern2.kc0_42 -52 public.kern2.kc0_43 -54 public.kern2.kc0_46 -64 public.kern2.kc0_47 -64 public.kern2.kc0_5 -60 public.kern2.kc0_6 -6 public.kern2.kc0_7 -11 public.kern1.kc0_15 public.kern2.kc0_17 -12 public.kern2.kc0_25 -10 public.kern2.kc0_28 -17 public.kern2.kc0_29 -8 public.kern2.kc0_3 -9 public.kern2.kc0_31 -17 public.kern2.kc0_32 -16 public.kern2.kc0_33 -9 public.kern2.kc0_34 -8 public.kern2.kc0_35 -19 public.kern2.kc0_36 -7 public.kern2.kc0_37 -16 public.kern2.kc0_38 -6 public.kern2.kc0_39 -15 public.kern2.kc0_4 -9 public.kern2.kc0_40 -15 public.kern2.kc0_41 -23 public.kern2.kc0_42 -23 public.kern2.kc0_43 -23 public.kern2.kc0_45 -10 public.kern2.kc0_48 -14 public.kern1.kc0_16 public.kern2.kc0_13 -11 public.kern2.kc0_14 -15 public.kern2.kc0_17 -16 public.kern2.kc0_21 -11 public.kern2.kc0_25 -13 public.kern2.kc0_26 -5 public.kern2.kc0_28 -19 public.kern2.kc0_29 -30 public.kern2.kc0_30 10 public.kern2.kc0_31 -27 public.kern2.kc0_32 -26 public.kern2.kc0_33 -22 public.kern2.kc0_34 -8 public.kern2.kc0_35 -24 public.kern2.kc0_36 -18 public.kern2.kc0_37 -26 public.kern2.kc0_38 -21 public.kern2.kc0_39 -23 public.kern2.kc0_40 -23 public.kern2.kc0_41 -26 public.kern2.kc0_42 -26 public.kern2.kc0_43 -26 public.kern2.kc0_45 -11 public.kern2.kc0_48 -17 public.kern2.kc0_49 -12 public.kern2.kc0_50 -23 public.kern2.kc0_52 -11 public.kern2.kc0_54 -21 public.kern2.kc0_55 -13 public.kern2.kc0_56 -25 public.kern2.kc0_57 -14 public.kern2.kc0_59 -14 public.kern2.kc0_8 -18 public.kern1.kc0_17 public.kern2.kc0_10 -13 public.kern2.kc0_11 -13 public.kern2.kc0_12 -35 public.kern2.kc0_13 -39 public.kern2.kc0_15 -23 public.kern2.kc0_2 -5 public.kern2.kc0_27 -19 public.kern2.kc0_28 -22 public.kern2.kc0_3 -32 public.kern2.kc0_30 -5 public.kern2.kc0_4 -30 public.kern2.kc0_44 -11 public.kern2.kc0_5 -39 public.kern2.kc0_51 -15 public.kern2.kc0_53 -15 public.kern2.kc0_55 -20 public.kern2.kc0_57 -15 public.kern2.kc0_6 -8 public.kern2.kc0_63 -6 public.kern2.kc0_7 -7 public.kern2.kc0_8 -30 public.kern2.kc0_9 -9 public.kern1.kc0_18 public.kern2.kc0_10 -11 public.kern2.kc0_11 -6 public.kern2.kc0_12 -12 public.kern2.kc0_13 -88 public.kern2.kc0_14 -18 public.kern2.kc0_15 -14 public.kern2.kc0_16 16 public.kern2.kc0_17 -48 public.kern2.kc0_20 -21 public.kern2.kc0_28 -19 public.kern2.kc0_29 -18 public.kern2.kc0_3 -9 public.kern2.kc0_31 -37 public.kern2.kc0_32 -36 public.kern2.kc0_33 -21 public.kern2.kc0_35 -34 public.kern2.kc0_37 -36 public.kern2.kc0_38 -15 public.kern2.kc0_4 -9 public.kern2.kc0_48 -25 public.kern2.kc0_5 -5 public.kern2.kc0_57 -69 public.kern2.kc0_58 -25 public.kern2.kc0_8 -68 public.kern1.kc0_19 public.kern2.kc0_1 -19 public.kern2.kc0_16 -25 public.kern2.kc0_17 -18 public.kern2.kc0_19 45 public.kern2.kc0_2 -29 public.kern2.kc0_20 -11 public.kern2.kc0_25 -23 public.kern2.kc0_27 -36 public.kern2.kc0_28 -10 public.kern2.kc0_3 -62 public.kern2.kc0_31 -8 public.kern2.kc0_32 -8 public.kern2.kc0_35 -12 public.kern2.kc0_37 -8 public.kern2.kc0_39 -8 public.kern2.kc0_4 -60 public.kern2.kc0_40 -10 public.kern2.kc0_41 -47 public.kern2.kc0_42 -47 public.kern2.kc0_43 -46 public.kern2.kc0_45 -28 public.kern2.kc0_46 -14 public.kern2.kc0_47 -17 public.kern2.kc0_48 -38 public.kern2.kc0_5 -44 public.kern2.kc0_56 12 public.kern2.kc0_57 21 public.kern2.kc0_58 32 public.kern2.kc0_6 -6 public.kern2.kc0_61 29 public.kern2.kc0_62 27 public.kern2.kc0_63 20 public.kern2.kc0_64 13 public.kern2.kc0_7 -25 public.kern1.kc0_2 public.kern2.kc0_2 -35 public.kern2.kc0_3 -46 public.kern2.kc0_4 -43 public.kern2.kc0_5 -40 public.kern2.kc0_6 88 public.kern2.kc0_7 -18 public.kern1.kc0_20 public.kern2.kc0_13 -5 public.kern2.kc0_15 -13 public.kern2.kc0_28 -20 public.kern2.kc0_3 -12 public.kern2.kc0_33 -6 public.kern2.kc0_34 -10 public.kern2.kc0_36 -7 public.kern2.kc0_39 -9 public.kern2.kc0_4 -12 public.kern2.kc0_40 -9 public.kern2.kc0_41 -18 public.kern2.kc0_42 -18 public.kern2.kc0_43 -19 public.kern2.kc0_5 -8 public.kern2.kc0_50 -10 public.kern2.kc0_52 -10 public.kern2.kc0_54 -9 public.kern2.kc0_55 -11 public.kern2.kc0_56 -7 public.kern2.kc0_8 -12 public.kern1.kc0_21 public.kern2.kc0_13 -76 public.kern2.kc0_14 -17 public.kern2.kc0_16 19 public.kern2.kc0_17 -60 public.kern2.kc0_20 -37 public.kern2.kc0_21 -15 public.kern2.kc0_25 -5 public.kern2.kc0_28 -16 public.kern2.kc0_29 -77 public.kern2.kc0_31 -77 public.kern2.kc0_32 -78 public.kern2.kc0_33 -68 public.kern2.kc0_34 -15 public.kern2.kc0_35 -74 public.kern2.kc0_36 -61 public.kern2.kc0_37 -78 public.kern2.kc0_38 -68 public.kern2.kc0_39 -22 public.kern2.kc0_40 -66 public.kern2.kc0_41 -46 public.kern2.kc0_42 -46 public.kern2.kc0_43 -49 public.kern2.kc0_48 -55 public.kern2.kc0_49 -33 public.kern2.kc0_50 -27 public.kern2.kc0_52 -22 public.kern2.kc0_54 -64 public.kern2.kc0_55 -40 public.kern2.kc0_56 -64 public.kern2.kc0_57 -41 public.kern2.kc0_58 -24 public.kern2.kc0_59 -28 public.kern2.kc0_8 -61 public.kern1.kc0_22 public.kern2.kc0_13 -41 public.kern2.kc0_14 -11 public.kern2.kc0_17 -10 public.kern2.kc0_25 -5 public.kern2.kc0_28 -15 public.kern2.kc0_29 -28 public.kern2.kc0_30 27 public.kern2.kc0_31 -28 public.kern2.kc0_32 -27 public.kern2.kc0_33 -24 public.kern2.kc0_35 -26 public.kern2.kc0_36 -14 public.kern2.kc0_37 -28 public.kern2.kc0_38 -22 public.kern2.kc0_39 -15 public.kern2.kc0_40 -14 public.kern2.kc0_41 -14 public.kern2.kc0_42 -14 public.kern2.kc0_43 -13 public.kern2.kc0_50 -22 public.kern2.kc0_51 6 public.kern2.kc0_52 -5 public.kern2.kc0_53 6 public.kern2.kc0_54 -21 public.kern2.kc0_55 -15 public.kern2.kc0_56 -25 public.kern2.kc0_57 -21 public.kern2.kc0_58 -17 public.kern2.kc0_59 -12 public.kern2.kc0_8 -47 public.kern1.kc0_23 public.kern2.kc0_1 21 public.kern2.kc0_10 -9 public.kern2.kc0_13 -103 public.kern2.kc0_14 -32 public.kern2.kc0_17 -56 public.kern2.kc0_18 -25 public.kern2.kc0_19 -13 public.kern2.kc0_20 -46 public.kern2.kc0_21 -36 public.kern2.kc0_23 -17 public.kern2.kc0_24 -13 public.kern2.kc0_25 -31 public.kern2.kc0_26 -14 public.kern2.kc0_28 -19 public.kern2.kc0_29 -85 public.kern2.kc0_30 46 public.kern2.kc0_31 -86 public.kern2.kc0_32 -84 public.kern2.kc0_33 -74 public.kern2.kc0_34 -8 public.kern2.kc0_35 -78 public.kern2.kc0_36 -62 public.kern2.kc0_37 -86 public.kern2.kc0_38 -72 public.kern2.kc0_39 -44 public.kern2.kc0_40 -61 public.kern2.kc0_41 -47 public.kern2.kc0_42 -47 public.kern2.kc0_43 -46 public.kern2.kc0_44 -11 public.kern2.kc0_45 -21 public.kern2.kc0_48 -53 public.kern2.kc0_49 -39 public.kern2.kc0_50 -39 public.kern2.kc0_51 25 public.kern2.kc0_52 -12 public.kern2.kc0_53 25 public.kern2.kc0_54 -75 public.kern2.kc0_55 -46 public.kern2.kc0_56 -77 public.kern2.kc0_57 -71 public.kern2.kc0_58 -43 public.kern2.kc0_59 -43 public.kern2.kc0_61 -14 public.kern2.kc0_62 -15 public.kern2.kc0_63 -9 public.kern2.kc0_64 -11 public.kern2.kc0_65 -10 public.kern2.kc0_8 -88 public.kern1.kc0_24 public.kern2.kc0_1 19 public.kern2.kc0_10 -9 public.kern2.kc0_13 -97 public.kern2.kc0_14 -31 public.kern2.kc0_17 -49 public.kern2.kc0_18 -23 public.kern2.kc0_19 -13 public.kern2.kc0_20 -41 public.kern2.kc0_21 -33 public.kern2.kc0_23 -17 public.kern2.kc0_24 -13 public.kern2.kc0_25 -29 public.kern2.kc0_26 -13 public.kern2.kc0_28 -20 public.kern2.kc0_29 -75 public.kern2.kc0_30 44 public.kern2.kc0_31 -71 public.kern2.kc0_32 -70 public.kern2.kc0_33 -65 public.kern2.kc0_34 -8 public.kern2.kc0_35 -68 public.kern2.kc0_36 -52 public.kern2.kc0_37 -71 public.kern2.kc0_38 -62 public.kern2.kc0_39 -40 public.kern2.kc0_40 -52 public.kern2.kc0_41 -44 public.kern2.kc0_42 -44 public.kern2.kc0_43 -43 public.kern2.kc0_44 -11 public.kern2.kc0_45 -21 public.kern2.kc0_48 -47 public.kern2.kc0_49 -36 public.kern2.kc0_50 -39 public.kern2.kc0_51 21 public.kern2.kc0_52 -12 public.kern2.kc0_53 21 public.kern2.kc0_54 -66 public.kern2.kc0_55 -39 public.kern2.kc0_56 -69 public.kern2.kc0_57 -63 public.kern2.kc0_58 -41 public.kern2.kc0_59 -39 public.kern2.kc0_61 -14 public.kern2.kc0_62 -15 public.kern2.kc0_63 -9 public.kern2.kc0_64 -12 public.kern2.kc0_65 -11 public.kern2.kc0_8 -81 public.kern1.kc0_25 public.kern2.kc0_17 -27 public.kern2.kc0_19 20 public.kern2.kc0_25 -38 public.kern2.kc0_30 18 public.kern2.kc0_31 -28 public.kern2.kc0_32 -27 public.kern2.kc0_35 -28 public.kern2.kc0_37 -26 public.kern2.kc0_39 -17 public.kern2.kc0_40 -15 public.kern2.kc0_41 -67 public.kern2.kc0_42 -67 public.kern2.kc0_43 -67 public.kern2.kc0_45 -12 public.kern2.kc0_48 -28 public.kern1.kc0_26 public.kern2.kc0_1 18 public.kern2.kc0_10 -6 public.kern2.kc0_13 -96 public.kern2.kc0_14 -35 public.kern2.kc0_17 -68 public.kern2.kc0_18 -31 public.kern2.kc0_19 -17 public.kern2.kc0_20 -54 public.kern2.kc0_21 -43 public.kern2.kc0_23 -21 public.kern2.kc0_24 -19 public.kern2.kc0_25 -40 public.kern2.kc0_26 -18 public.kern2.kc0_28 -21 public.kern2.kc0_29 -85 public.kern2.kc0_30 44 public.kern2.kc0_31 -95 public.kern2.kc0_32 -92 public.kern2.kc0_33 -78 public.kern2.kc0_34 -8 public.kern2.kc0_35 -93 public.kern2.kc0_36 -72 public.kern2.kc0_37 -94 public.kern2.kc0_38 -75 public.kern2.kc0_39 -62 public.kern2.kc0_40 -78 public.kern2.kc0_41 -62 public.kern2.kc0_42 -62 public.kern2.kc0_43 -63 public.kern2.kc0_44 -13 public.kern2.kc0_45 -30 public.kern2.kc0_48 -68 public.kern2.kc0_49 -49 public.kern2.kc0_50 -44 public.kern2.kc0_51 22 public.kern2.kc0_52 -12 public.kern2.kc0_53 22 public.kern2.kc0_54 -77 public.kern2.kc0_55 -59 public.kern2.kc0_56 -80 public.kern2.kc0_57 -50 public.kern2.kc0_58 -38 public.kern2.kc0_59 -48 public.kern2.kc0_61 -17 public.kern2.kc0_62 -18 public.kern2.kc0_63 -8 public.kern2.kc0_64 -16 public.kern2.kc0_65 -12 public.kern2.kc0_8 -77 public.kern1.kc0_27 public.kern2.kc0_28 -17 public.kern2.kc0_33 -8 public.kern2.kc0_34 -9 public.kern2.kc0_36 -11 public.kern2.kc0_39 -15 public.kern2.kc0_40 -15 public.kern2.kc0_41 -41 public.kern2.kc0_42 -41 public.kern2.kc0_43 -39 public.kern2.kc0_50 -7 public.kern2.kc0_52 -7 public.kern2.kc0_54 -7 public.kern2.kc0_56 -8 public.kern2.kc0_8 -8 public.kern1.kc0_28 public.kern2.kc0_1 -9 public.kern2.kc0_10 -15 public.kern2.kc0_11 -14 public.kern2.kc0_12 -69 public.kern2.kc0_13 -44 public.kern2.kc0_3 -34 public.kern2.kc0_4 -31 public.kern2.kc0_5 -46 public.kern2.kc0_51 -11 public.kern2.kc0_57 -37 public.kern2.kc0_6 -8 public.kern2.kc0_63 -6 public.kern2.kc0_7 -5 public.kern2.kc0_8 -37 public.kern2.kc0_9 -9 public.kern1.kc0_29 public.kern2.kc0_15 -15 public.kern2.kc0_25 -8 public.kern2.kc0_27 -41 public.kern2.kc0_28 -21 public.kern2.kc0_41 -21 public.kern2.kc0_42 -21 public.kern2.kc0_43 -21 public.kern2.kc0_44 -10 public.kern2.kc0_5 -56 public.kern2.kc0_7 -23 public.kern1.kc0_3 public.kern2.kc0_10 -16 public.kern2.kc0_11 -15 public.kern2.kc0_12 -12 public.kern2.kc0_13 -38 public.kern2.kc0_3 -24 public.kern2.kc0_4 -23 public.kern2.kc0_5 -24 public.kern2.kc0_8 -35 public.kern2.kc0_9 -11 public.kern1.kc0_30 public.kern2.kc0_1 -21 public.kern2.kc0_15 -28 public.kern2.kc0_16 -10 public.kern2.kc0_27 -38 public.kern2.kc0_28 -26 public.kern2.kc0_41 -13 public.kern2.kc0_42 -13 public.kern2.kc0_43 -13 public.kern2.kc0_44 -15 public.kern2.kc0_46 -22 public.kern2.kc0_47 -21 public.kern2.kc0_5 -79 public.kern2.kc0_51 -7 public.kern2.kc0_53 -7 public.kern2.kc0_55 -24 public.kern2.kc0_65 -10 public.kern2.kc0_7 -24 public.kern2.kc0_8 -21 public.kern2.kc0_9 -21 public.kern1.kc0_31 public.kern2.kc0_15 -17 public.kern2.kc0_17 -13 public.kern2.kc0_25 -9 public.kern2.kc0_27 -22 public.kern2.kc0_28 -20 public.kern2.kc0_5 -71 public.kern2.kc0_7 -19 public.kern2.kc0_9 -20 public.kern1.kc0_32 public.kern2.kc0_17 -8 public.kern2.kc0_25 -7 public.kern2.kc0_28 -13 public.kern2.kc0_41 -6 public.kern2.kc0_42 -6 public.kern2.kc0_43 -6 public.kern2.kc0_5 -10 public.kern2.kc0_7 -11 public.kern1.kc0_33 public.kern2.kc0_15 -22 public.kern2.kc0_25 -6 public.kern2.kc0_27 -32 public.kern2.kc0_28 -23 public.kern2.kc0_41 -5 public.kern2.kc0_42 -5 public.kern2.kc0_43 -5 public.kern2.kc0_44 -13 public.kern2.kc0_5 -78 public.kern2.kc0_55 -9 public.kern2.kc0_7 -21 public.kern2.kc0_8 -8 public.kern2.kc0_9 -16 public.kern1.kc0_34 public.kern2.kc0_1 48 public.kern2.kc0_15 23 public.kern2.kc0_17 -25 public.kern2.kc0_27 22 public.kern2.kc0_31 -13 public.kern2.kc0_32 -12 public.kern2.kc0_34 5 public.kern2.kc0_35 -9 public.kern2.kc0_37 -12 public.kern2.kc0_46 35 public.kern2.kc0_47 38 public.kern2.kc0_48 -14 public.kern2.kc0_5 80 public.kern2.kc0_60 -8 public.kern2.kc0_66 9 public.kern2.kc0_67 28 public.kern2.kc0_7 60 public.kern2.kc0_8 -8 public.kern2.kc0_9 45 public.kern1.kc0_35 public.kern2.kc0_17 -14 public.kern2.kc0_27 -20 public.kern2.kc0_31 -4 public.kern2.kc0_32 -4 public.kern2.kc0_37 -4 public.kern2.kc0_5 -52 public.kern2.kc0_7 -14 public.kern2.kc0_8 16 public.kern1.kc0_36 public.kern2.kc0_17 -11 public.kern2.kc0_25 -12 public.kern2.kc0_27 -10 public.kern2.kc0_28 -16 public.kern2.kc0_31 -4 public.kern2.kc0_32 -4 public.kern2.kc0_35 -4 public.kern2.kc0_37 -4 public.kern2.kc0_41 -6 public.kern2.kc0_42 -6 public.kern2.kc0_43 -6 public.kern2.kc0_5 -19 public.kern2.kc0_60 -4 public.kern2.kc0_7 -19 public.kern1.kc0_37 public.kern2.kc0_5 -8 public.kern2.kc0_7 -9 public.kern2.kc0_8 -7 public.kern2.kc0_9 -7 public.kern1.kc0_38 public.kern2.kc0_17 -41 public.kern2.kc0_25 -32 public.kern2.kc0_27 -13 public.kern2.kc0_31 -41 public.kern2.kc0_32 -40 public.kern2.kc0_33 -6 public.kern2.kc0_35 -39 public.kern2.kc0_37 -39 public.kern2.kc0_48 -23 public.kern2.kc0_5 -49 public.kern2.kc0_60 -38 public.kern2.kc0_7 -17 public.kern2.kc0_8 14 public.kern1.kc0_39 public.kern2.kc0_17 -12 public.kern2.kc0_25 -15 public.kern2.kc0_28 -14 public.kern2.kc0_31 -5 public.kern2.kc0_32 -4 public.kern2.kc0_35 -6 public.kern2.kc0_37 -4 public.kern2.kc0_41 -11 public.kern2.kc0_42 -11 public.kern2.kc0_43 -12 public.kern2.kc0_5 -15 public.kern2.kc0_60 -5 public.kern2.kc0_7 -18 public.kern1.kc0_4 public.kern2.kc0_2 -27 public.kern2.kc0_3 -44 public.kern2.kc0_4 -41 public.kern2.kc0_5 -42 public.kern2.kc0_6 107 public.kern2.kc0_7 -16 public.kern2.kc0_8 -12 public.kern1.kc0_40 public.kern2.kc0_1 -8 public.kern2.kc0_17 -10 public.kern2.kc0_2 -62 public.kern2.kc0_25 -15 public.kern2.kc0_27 -44 public.kern2.kc0_28 -21 public.kern2.kc0_3 -78 public.kern2.kc0_4 -67 public.kern2.kc0_41 -23 public.kern2.kc0_42 -23 public.kern2.kc0_43 -24 public.kern2.kc0_44 -11 public.kern2.kc0_46 -9 public.kern2.kc0_47 -8 public.kern2.kc0_5 -67 public.kern2.kc0_6 -20 public.kern2.kc0_68 -21 public.kern2.kc0_7 -27 public.kern1.kc0_41 public.kern2.kc0_1 -11 public.kern2.kc0_15 -29 public.kern2.kc0_27 -40 public.kern2.kc0_28 -27 public.kern2.kc0_41 -16 public.kern2.kc0_42 -16 public.kern2.kc0_43 -16 public.kern2.kc0_44 -16 public.kern2.kc0_46 -13 public.kern2.kc0_47 -12 public.kern2.kc0_5 -80 public.kern2.kc0_51 -6 public.kern2.kc0_53 -6 public.kern2.kc0_55 -23 public.kern2.kc0_7 -24 public.kern2.kc0_8 -19 public.kern2.kc0_9 -20 public.kern1.kc0_42 public.kern2.kc0_1 -9 public.kern2.kc0_15 -29 public.kern2.kc0_27 -39 public.kern2.kc0_28 -27 public.kern2.kc0_41 -13 public.kern2.kc0_42 -13 public.kern2.kc0_43 -13 public.kern2.kc0_44 -16 public.kern2.kc0_46 -11 public.kern2.kc0_47 -10 public.kern2.kc0_5 -79 public.kern2.kc0_51 -7 public.kern2.kc0_53 -7 public.kern2.kc0_55 -23 public.kern2.kc0_7 -23 public.kern2.kc0_8 -21 public.kern2.kc0_9 -20 public.kern1.kc0_43 public.kern2.kc0_25 -5 public.kern2.kc0_34 43 public.kern2.kc0_5 -60 public.kern2.kc0_7 -18 public.kern2.kc0_8 -6 public.kern2.kc0_9 -11 public.kern1.kc0_44 public.kern2.kc0_14 -17 public.kern2.kc0_15 -29 public.kern2.kc0_17 -21 public.kern2.kc0_27 -23 public.kern2.kc0_28 -26 public.kern2.kc0_29 -5 public.kern2.kc0_31 -11 public.kern2.kc0_32 -10 public.kern2.kc0_33 -5 public.kern2.kc0_35 -7 public.kern2.kc0_37 -11 public.kern2.kc0_38 -4 public.kern2.kc0_44 -16 public.kern2.kc0_5 -70 public.kern2.kc0_51 -9 public.kern2.kc0_53 -9 public.kern2.kc0_57 -27 public.kern2.kc0_58 -18 public.kern2.kc0_7 -18 public.kern2.kc0_8 -47 public.kern2.kc0_9 -22 public.kern1.kc0_45 public.kern2.kc0_15 -23 public.kern2.kc0_27 -32 public.kern2.kc0_28 -25 public.kern2.kc0_41 -5 public.kern2.kc0_42 -5 public.kern2.kc0_43 -5 public.kern2.kc0_44 -13 public.kern2.kc0_5 -62 public.kern2.kc0_7 -22 public.kern2.kc0_8 -10 public.kern2.kc0_9 -13 public.kern1.kc0_46 public.kern2.kc0_15 -13 public.kern2.kc0_17 -14 public.kern2.kc0_27 -15 public.kern2.kc0_28 -18 public.kern2.kc0_48 -15 public.kern2.kc0_5 -43 public.kern2.kc0_7 -10 public.kern2.kc0_8 -5 public.kern1.kc0_47 public.kern2.kc0_15 -16 public.kern2.kc0_17 -8 public.kern2.kc0_25 -7 public.kern2.kc0_27 -31 public.kern2.kc0_28 -23 public.kern2.kc0_41 -4 public.kern2.kc0_42 -4 public.kern2.kc0_43 -4 public.kern2.kc0_44 -11 public.kern2.kc0_5 -61 public.kern2.kc0_7 -19 public.kern1.kc0_48 public.kern2.kc0_14 -18 public.kern2.kc0_15 -27 public.kern2.kc0_16 22 public.kern2.kc0_17 -35 public.kern2.kc0_27 -16 public.kern2.kc0_28 -25 public.kern2.kc0_29 -10 public.kern2.kc0_31 -31 public.kern2.kc0_32 -31 public.kern2.kc0_33 -12 public.kern2.kc0_35 -21 public.kern2.kc0_37 -31 public.kern2.kc0_38 -8 public.kern2.kc0_44 -10 public.kern2.kc0_48 -21 public.kern2.kc0_5 -53 public.kern2.kc0_51 -11 public.kern2.kc0_53 -11 public.kern2.kc0_57 -48 public.kern2.kc0_58 -25 public.kern2.kc0_67 -11 public.kern2.kc0_7 -13 public.kern2.kc0_8 -66 public.kern2.kc0_9 -21 public.kern1.kc0_49 public.kern2.kc0_14 -17 public.kern2.kc0_15 -27 public.kern2.kc0_16 22 public.kern2.kc0_17 -29 public.kern2.kc0_27 -16 public.kern2.kc0_28 -25 public.kern2.kc0_29 -9 public.kern2.kc0_31 -26 public.kern2.kc0_32 -25 public.kern2.kc0_33 -11 public.kern2.kc0_35 -19 public.kern2.kc0_37 -27 public.kern2.kc0_38 -7 public.kern2.kc0_44 -10 public.kern2.kc0_48 -18 public.kern2.kc0_5 -51 public.kern2.kc0_51 -11 public.kern2.kc0_53 -11 public.kern2.kc0_57 -42 public.kern2.kc0_58 -24 public.kern2.kc0_67 -11 public.kern2.kc0_7 -14 public.kern2.kc0_8 -61 public.kern2.kc0_9 -21 public.kern1.kc0_5 public.kern2.kc0_1 -62 public.kern2.kc0_14 -12 public.kern2.kc0_15 -11 public.kern2.kc0_16 -52 public.kern2.kc0_17 -27 public.kern2.kc0_18 -17 public.kern2.kc0_19 14 public.kern2.kc0_2 -61 public.kern2.kc0_20 -14 public.kern2.kc0_21 -14 public.kern2.kc0_22 -11 public.kern2.kc0_23 -11 public.kern2.kc0_24 -10 public.kern2.kc0_25 -33 public.kern2.kc0_26 -9 public.kern2.kc0_27 -57 public.kern2.kc0_28 -23 public.kern2.kc0_29 -10 public.kern2.kc0_3 -89 public.kern2.kc0_30 -7 public.kern2.kc0_31 -17 public.kern2.kc0_32 -16 public.kern2.kc0_33 -10 public.kern2.kc0_34 -12 public.kern2.kc0_35 -21 public.kern2.kc0_36 -8 public.kern2.kc0_37 -16 public.kern2.kc0_38 -9 public.kern2.kc0_39 -21 public.kern2.kc0_4 -82 public.kern2.kc0_40 -23 public.kern2.kc0_41 -62 public.kern2.kc0_42 -62 public.kern2.kc0_43 -62 public.kern2.kc0_44 -14 public.kern2.kc0_45 -36 public.kern2.kc0_46 -59 public.kern2.kc0_47 -57 public.kern2.kc0_48 -28 public.kern2.kc0_49 -13 public.kern2.kc0_5 -68 public.kern2.kc0_6 -16 public.kern2.kc0_7 -48 public.kern1.kc0_50 public.kern2.kc0_17 -33 public.kern2.kc0_25 -20 public.kern2.kc0_27 -11 public.kern2.kc0_28 -10 public.kern2.kc0_31 -27 public.kern2.kc0_32 -26 public.kern2.kc0_33 -8 public.kern2.kc0_35 -24 public.kern2.kc0_37 -27 public.kern2.kc0_48 -18 public.kern2.kc0_5 -45 public.kern2.kc0_7 -13 public.kern1.kc0_51 public.kern2.kc0_14 -18 public.kern2.kc0_15 -27 public.kern2.kc0_16 22 public.kern2.kc0_17 -35 public.kern2.kc0_27 -17 public.kern2.kc0_28 -24 public.kern2.kc0_29 -11 public.kern2.kc0_31 -31 public.kern2.kc0_32 -30 public.kern2.kc0_33 -12 public.kern2.kc0_35 -22 public.kern2.kc0_37 -30 public.kern2.kc0_38 -8 public.kern2.kc0_44 -10 public.kern2.kc0_48 -21 public.kern2.kc0_5 -52 public.kern2.kc0_51 -12 public.kern2.kc0_53 -12 public.kern2.kc0_57 -48 public.kern2.kc0_58 -24 public.kern2.kc0_67 -11 public.kern2.kc0_7 -14 public.kern2.kc0_8 -66 public.kern2.kc0_9 -21 public.kern1.kc0_52 public.kern2.kc0_15 -20 public.kern2.kc0_17 -10 public.kern2.kc0_27 -26 public.kern2.kc0_28 -24 public.kern2.kc0_5 -49 public.kern2.kc0_7 -22 public.kern2.kc0_8 -9 public.kern2.kc0_9 -8 public.kern1.kc0_53 public.kern2.kc0_50 -5 public.kern2.kc0_54 -4 public.kern1.kc0_54 public.kern2.kc0_1 -9 public.kern2.kc0_46 -8 public.kern2.kc0_51 -8 public.kern1.kc0_55 public.kern2.kc0_1 -14 public.kern2.kc0_46 -14 public.kern2.kc0_47 -13 public.kern2.kc0_57 -8 public.kern1.kc0_56 public.kern2.kc0_1 -8 public.kern2.kc0_46 -9 public.kern2.kc0_47 -8 public.kern1.kc0_57 public.kern2.kc0_16 53 public.kern2.kc0_34 13 public.kern2.kc0_36 16 public.kern2.kc0_39 25 public.kern2.kc0_40 18 public.kern2.kc0_41 54 public.kern2.kc0_42 54 public.kern2.kc0_43 55 public.kern2.kc0_47 18 public.kern2.kc0_50 10 public.kern2.kc0_55 36 public.kern1.kc0_58 public.kern2.kc0_1 14 public.kern2.kc0_16 63 public.kern2.kc0_17 -18 public.kern2.kc0_29 -4 public.kern2.kc0_31 -10 public.kern2.kc0_32 -10 public.kern2.kc0_33 -8 public.kern2.kc0_35 -9 public.kern2.kc0_37 -10 public.kern2.kc0_41 45 public.kern2.kc0_42 45 public.kern2.kc0_43 45 public.kern2.kc0_46 34 public.kern2.kc0_47 48 public.kern2.kc0_55 27 public.kern1.kc0_59 public.kern2.kc0_13 -73 public.kern2.kc0_14 -16 public.kern2.kc0_20 -44 public.kern2.kc0_21 -11 public.kern2.kc0_31 -14 public.kern2.kc0_32 -23 public.kern2.kc0_35 -10 public.kern2.kc0_37 -14 public.kern2.kc0_48 -26 public.kern2.kc0_57 -89 public.kern2.kc0_58 -40 public.kern2.kc0_69 -25 public.kern2.kc0_8 -62 public.kern1.kc0_6 public.kern2.kc0_10 -7 public.kern2.kc0_11 -7 public.kern2.kc0_12 -32 public.kern2.kc0_13 -14 public.kern2.kc0_15 -20 public.kern2.kc0_2 -8 public.kern2.kc0_27 -16 public.kern2.kc0_28 -22 public.kern2.kc0_3 -28 public.kern2.kc0_34 -8 public.kern2.kc0_39 -6 public.kern2.kc0_4 -25 public.kern2.kc0_40 -7 public.kern2.kc0_41 -21 public.kern2.kc0_42 -20 public.kern2.kc0_43 -20 public.kern2.kc0_5 -28 public.kern2.kc0_50 -9 public.kern2.kc0_51 -10 public.kern2.kc0_52 -10 public.kern2.kc0_53 -10 public.kern2.kc0_54 -9 public.kern2.kc0_55 -28 public.kern2.kc0_56 -6 public.kern2.kc0_6 -5 public.kern2.kc0_7 -6 public.kern2.kc0_8 -16 public.kern2.kc0_9 -5 public.kern1.kc0_60 public.kern2.kc0_13 -66 public.kern2.kc0_31 -8 public.kern2.kc0_32 -11 public.kern2.kc0_41 21 public.kern2.kc0_42 21 public.kern2.kc0_43 21 public.kern2.kc0_8 -51 public.kern1.kc0_61 public.kern2.kc0_10 -16 public.kern2.kc0_11 -17 public.kern2.kc0_12 -33 public.kern2.kc0_13 -33 public.kern2.kc0_2 -59 public.kern2.kc0_3 -52 public.kern2.kc0_34 -10 public.kern2.kc0_39 -9 public.kern2.kc0_4 -46 public.kern2.kc0_41 -25 public.kern2.kc0_42 -25 public.kern2.kc0_43 -25 public.kern2.kc0_5 -56 public.kern2.kc0_50 -15 public.kern2.kc0_51 -12 public.kern2.kc0_52 -15 public.kern2.kc0_53 -12 public.kern2.kc0_54 -11 public.kern2.kc0_55 -30 public.kern2.kc0_6 -9 public.kern2.kc0_63 -24 public.kern2.kc0_7 -8 public.kern2.kc0_8 -28 public.kern2.kc0_9 -12 public.kern1.kc0_62 public.kern2.kc0_1 -89 public.kern2.kc0_2 -41 public.kern2.kc0_25 -15 public.kern2.kc0_3 -71 public.kern2.kc0_4 -64 public.kern2.kc0_41 -43 public.kern2.kc0_42 -42 public.kern2.kc0_43 -43 public.kern2.kc0_46 -92 public.kern2.kc0_47 -95 public.kern2.kc0_5 -36 public.kern2.kc0_6 -8 public.kern2.kc0_7 -21 public.kern1.kc0_63 public.kern2.kc0_13 -53 public.kern2.kc0_18 -19 public.kern2.kc0_25 -18 public.kern2.kc0_26 -10 public.kern2.kc0_29 -36 public.kern2.kc0_31 -43 public.kern2.kc0_32 -40 public.kern2.kc0_33 -36 public.kern2.kc0_35 -40 public.kern2.kc0_36 -19 public.kern2.kc0_38 -34 public.kern2.kc0_39 -16 public.kern2.kc0_40 -21 public.kern2.kc0_41 -16 public.kern2.kc0_42 -16 public.kern2.kc0_43 -15 public.kern2.kc0_50 -19 public.kern2.kc0_54 -25 public.kern2.kc0_55 -10 public.kern2.kc0_56 -27 public.kern2.kc0_8 -56 public.kern1.kc0_64 public.kern2.kc0_2 -27 public.kern2.kc0_3 -43 public.kern2.kc0_4 -39 public.kern2.kc0_5 -36 public.kern2.kc0_6 -8 public.kern2.kc0_7 -11 public.kern1.kc0_65 public.kern2.kc0_1 -44 public.kern2.kc0_12 5 public.kern2.kc0_13 25 public.kern2.kc0_2 -25 public.kern2.kc0_25 -10 public.kern2.kc0_3 -47 public.kern2.kc0_4 -44 public.kern2.kc0_41 -25 public.kern2.kc0_42 -25 public.kern2.kc0_43 -23 public.kern2.kc0_5 -31 public.kern2.kc0_7 -18 public.kern2.kc0_8 10 public.kern1.kc0_66 public.kern2.kc0_13 -74 public.kern2.kc0_29 -10 public.kern2.kc0_31 -19 public.kern2.kc0_32 -26 public.kern2.kc0_33 -10 public.kern2.kc0_35 -14 public.kern2.kc0_37 -19 public.kern2.kc0_57 -92 public.kern2.kc0_8 -61 public.kern1.kc0_67 public.kern2.kc0_13 -76 public.kern2.kc0_29 -16 public.kern2.kc0_3 15 public.kern2.kc0_31 -24 public.kern2.kc0_32 -27 public.kern2.kc0_33 -16 public.kern2.kc0_35 -21 public.kern2.kc0_37 -24 public.kern2.kc0_38 -13 public.kern2.kc0_4 15 public.kern2.kc0_48 -47 public.kern2.kc0_5 6 public.kern2.kc0_54 -8 public.kern2.kc0_57 -95 public.kern2.kc0_8 -66 public.kern1.kc0_68 public.kern2.kc0_2 -33 public.kern2.kc0_3 -38 public.kern2.kc0_4 -35 public.kern2.kc0_5 -38 public.kern2.kc0_8 -12 public.kern1.kc0_69 public.kern2.kc0_1 -29 public.kern2.kc0_10 -17 public.kern2.kc0_11 -18 public.kern2.kc0_12 -30 public.kern2.kc0_13 -29 public.kern2.kc0_2 -55 public.kern2.kc0_3 -53 public.kern2.kc0_4 -47 public.kern2.kc0_41 -17 public.kern2.kc0_42 -17 public.kern2.kc0_43 -17 public.kern2.kc0_47 -30 public.kern2.kc0_5 -57 public.kern2.kc0_55 -17 public.kern2.kc0_6 -12 public.kern2.kc0_63 -22 public.kern2.kc0_7 -10 public.kern2.kc0_8 -27 public.kern2.kc0_9 -15 public.kern1.kc0_7 public.kern2.kc0_28 -10 public.kern2.kc0_34 -6 public.kern2.kc0_39 -5 public.kern2.kc0_40 -6 public.kern2.kc0_41 -13 public.kern2.kc0_42 -13 public.kern2.kc0_43 -13 public.kern2.kc0_52 -6 public.kern1.kc0_70 public.kern2.kc0_18 -22 public.kern2.kc0_25 -23 public.kern2.kc0_26 -13 public.kern2.kc0_29 -22 public.kern2.kc0_31 -28 public.kern2.kc0_32 -26 public.kern2.kc0_35 -29 public.kern2.kc0_38 -21 public.kern2.kc0_39 -21 public.kern2.kc0_40 -25 public.kern2.kc0_41 -27 public.kern2.kc0_42 -27 public.kern2.kc0_54 -12 public.kern2.kc0_56 -15 public.kern2.kc0_6 133 public.kern2.kc0_8 -10 public.kern1.kc0_71 public.kern2.kc0_15 -22 public.kern2.kc0_27 -18 public.kern2.kc0_28 -22 public.kern2.kc0_3 -24 public.kern2.kc0_4 -23 public.kern2.kc0_44 -10 public.kern2.kc0_5 -23 public.kern2.kc0_8 -18 public.kern1.kc0_72 public.kern2.kc0_12 14 public.kern2.kc0_3 -14 public.kern2.kc0_4 -14 public.kern2.kc0_5 -10 public.kern2.kc0_8 14 public.kern1.kc0_73 public.kern2.kc0_3 -19 public.kern2.kc0_4 -18 public.kern2.kc0_5 -16 public.kern1.kc0_74 public.kern2.kc0_3 -19 public.kern2.kc0_4 -18 public.kern2.kc0_5 -17 public.kern2.kc0_8 -14 public.kern1.kc0_75 public.kern2.kc0_3 -14 public.kern2.kc0_4 -13 public.kern2.kc0_5 -10 public.kern2.kc0_8 -10 public.kern1.kc0_76 public.kern2.kc0_8 -14 public.kern1.kc0_77 public.kern2.kc0_3 -10 public.kern2.kc0_4 -10 public.kern2.kc0_8 -11 public.kern1.kc0_78 public.kern2.kc0_12 21 public.kern2.kc0_2 5 public.kern2.kc0_3 36 public.kern2.kc0_4 36 public.kern2.kc0_5 30 public.kern2.kc0_57 -56 public.kern2.kc0_7 13 public.kern2.kc0_8 -50 public.kern1.kc0_79 public.kern2.kc0_3 -20 public.kern2.kc0_4 -20 public.kern2.kc0_5 -18 public.kern2.kc0_8 -11 public.kern1.kc0_8 public.kern2.kc0_28 -17 public.kern2.kc0_3 -12 public.kern2.kc0_33 -6 public.kern2.kc0_34 -9 public.kern2.kc0_36 -5 public.kern2.kc0_39 -8 public.kern2.kc0_4 -12 public.kern2.kc0_40 -8 public.kern2.kc0_41 -29 public.kern2.kc0_42 -29 public.kern2.kc0_43 -29 public.kern2.kc0_5 -8 public.kern2.kc0_56 -6 public.kern2.kc0_8 -6 public.kern1.kc0_80 public.kern2.kc0_10 -13 public.kern2.kc0_11 -11 public.kern2.kc0_3 -18 public.kern2.kc0_4 -17 public.kern2.kc0_5 -18 public.kern2.kc0_57 -24 public.kern2.kc0_8 -33 public.kern1.kc0_81 public.kern2.kc0_10 -16 public.kern2.kc0_11 -16 public.kern2.kc0_13 -14 public.kern2.kc0_18 -22 public.kern2.kc0_2 -16 public.kern2.kc0_25 -22 public.kern2.kc0_26 -19 public.kern2.kc0_29 -26 public.kern2.kc0_3 -23 public.kern2.kc0_31 -28 public.kern2.kc0_32 -26 public.kern2.kc0_35 -27 public.kern2.kc0_38 -25 public.kern2.kc0_39 -21 public.kern2.kc0_4 -23 public.kern2.kc0_40 -22 public.kern2.kc0_41 -25 public.kern2.kc0_42 -25 public.kern2.kc0_43 8 public.kern2.kc0_5 -20 public.kern2.kc0_50 -17 public.kern2.kc0_51 -12 public.kern2.kc0_52 -14 public.kern2.kc0_53 -12 public.kern2.kc0_54 -20 public.kern2.kc0_55 -10 public.kern2.kc0_56 -22 public.kern2.kc0_6 144 public.kern2.kc0_63 -16 public.kern2.kc0_7 -20 public.kern2.kc0_8 -21 public.kern2.kc0_9 -16 public.kern1.kc0_82 public.kern2.kc0_18 -10 public.kern2.kc0_25 -13 public.kern2.kc0_29 -14 public.kern2.kc0_3 -14 public.kern2.kc0_31 -15 public.kern2.kc0_32 -14 public.kern2.kc0_35 -16 public.kern2.kc0_38 -15 public.kern2.kc0_4 -13 public.kern2.kc0_40 -13 public.kern2.kc0_41 -10 public.kern2.kc0_42 -10 public.kern2.kc0_54 -10 public.kern2.kc0_56 -13 public.kern2.kc0_6 122 public.kern2.kc0_8 -13 public.kern1.kc0_9 public.kern2.kc0_13 -67 public.kern2.kc0_17 -10 public.kern2.kc0_20 -12 public.kern2.kc0_28 -18 public.kern2.kc0_29 -28 public.kern2.kc0_31 -28 public.kern2.kc0_32 -27 public.kern2.kc0_33 -25 public.kern2.kc0_35 -24 public.kern2.kc0_36 -9 public.kern2.kc0_37 -28 public.kern2.kc0_38 -22 public.kern2.kc0_39 -6 public.kern2.kc0_40 -10 public.kern2.kc0_41 -11 public.kern2.kc0_42 -11 public.kern2.kc0_43 -11 public.kern2.kc0_50 -12 public.kern2.kc0_52 -9 public.kern2.kc0_54 -19 public.kern2.kc0_55 -13 public.kern2.kc0_56 -20 public.kern2.kc0_57 -43 public.kern2.kc0_58 -20 public.kern2.kc0_59 -12 public.kern2.kc0_8 -55 amiri-1.000/sources/AmiriLatin-Bold.ufo/layercontents.plist000066400000000000000000000004231434272261000237440ustar00rootroot00000000000000 public.default glyphs amiri-1.000/sources/AmiriLatin-Bold.ufo/lib.plist000066400000000000000000001104641434272261000216270ustar00rootroot00000000000000 public.glyphOrder space quotedbl numbersign dollar percent ampersand quotesingle asterisk plus comma hyphen zero one two three four five six seven eight nine colon semicolon less equal greater question at A B C D E F G H I J K L M N O P Q R S T U V W X Y Z asciicircum underscore grave a b c d e f g h i j k l m n o p q r s t u v w x y z asciitilde uni00A0 exclamdown cent sterling currency yen brokenbar section dieresis copyright ordfeminine logicalnot uni00AD registered macron degree plusminus uni00B2 uni00B3 acute mu paragraph periodcentered cedilla uni00B9 ordmasculine onequarter onehalf threequarters questiondown Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis multiply Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn germandbls agrave aacute acircumflex atilde adieresis aring ae ccedilla egrave eacute ecircumflex edieresis igrave iacute icircumflex idieresis eth ntilde ograve oacute ocircumflex otilde odieresis divide oslash ugrave uacute ucircumflex udieresis yacute thorn ydieresis Amacron amacron Abreve abreve Aogonek aogonek Cacute cacute Ccircumflex ccircumflex Cdotaccent cdotaccent Ccaron ccaron Dcaron dcaron Dcroat dcroat Emacron emacron Ebreve ebreve Edotaccent edotaccent Eogonek eogonek Ecaron ecaron Gcircumflex gcircumflex Gbreve gbreve Gdotaccent gdotaccent uni0122 uni0123 Hcircumflex hcircumflex Hbar hbar Itilde itilde Imacron imacron Ibreve ibreve Iogonek iogonek Idotaccent dotlessi IJ ij Jcircumflex jcircumflex uni0136 uni0137 kgreenlandic Lacute lacute uni013B uni013C Lcaron lcaron Ldot ldot Lslash lslash Nacute nacute uni0145 uni0146 Ncaron ncaron napostrophe Eng eng Omacron omacron Obreve obreve Ohungarumlaut ohungarumlaut OE oe Racute racute uni0156 uni0157 Rcaron rcaron Sacute sacute Scircumflex scircumflex Scedilla scedilla Scaron scaron uni0162 uni0163 Tcaron tcaron Tbar tbar Utilde utilde Umacron umacron Ubreve ubreve Uring uring Uhungarumlaut uhungarumlaut Uogonek uogonek Wcircumflex wcircumflex Ycircumflex ycircumflex Ydieresis Zacute zacute Zdotaccent zdotaccent Zcaron zcaron longs Gcaron gcaron uni0237 uni02BB uni02BC uni02BE uni02BF circumflex caron breve ring ogonek tilde gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030C uni0312 uni0315 dotbelowcomb uni0326 uni0327 uni0328 uni1E02 uni1E03 uni1E0A uni1E0B uni1E0C uni1E0D uni1E0E uni1E0F uni1E10 uni1E11 uni1E1E uni1E1F uni1E24 uni1E25 uni1E28 uni1E29 uni1E2A uni1E2B uni1E40 uni1E41 uni1E56 uni1E57 uni1E60 uni1E61 uni1E62 uni1E63 uni1E6A uni1E6B uni1E6C uni1E6D uni1E6E uni1E6F Wgrave wgrave Wacute wacute Wdieresis wdieresis uni1E92 uni1E93 uni1E96 uni1E97 Ygrave ygrave uni2010 uni2011 figuredash endash emdash uni2015 quoteleft quoteright quotesinglbase quotereversed quotedblleft quotedblright quotedblbase uni201F dagger daggerdbl bullet onedotenleader ellipsis uni202F perthousand minute second uni2038 guilsinglleft guilsinglright uni203E uni2042 fraction uni2074 Euro minus uni2213 radical exclam.latn parenleft.latn parenright.latn period.latn slash.latn bracketleft.latn backslash.latn bracketright.latn braceleft.latn bar.latn braceright.latn guillemotleft.latn guillemotright.latn gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0323.cap uni0308.cap uni030C.cap zero.prop one.prop two.prop three.prop four.prop five.prop six.prop seven.prop eight.prop nine.prop f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j i.TRK zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr public.openTypeCategories A base AE base Aacute base Abreve base Acircumflex base Adieresis base Agrave base Amacron base Aogonek base Aring base Atilde base B base C base Cacute base Ccaron base Ccedilla base Ccircumflex base Cdotaccent base D base Dcaron base Dcroat base E base Eacute base Ebreve base Ecaron base Ecircumflex base Edieresis base Edotaccent base Egrave base Emacron base Eng base Eogonek base Eth base Euro base F base G base Gbreve base Gcaron base Gcircumflex base Gdotaccent base H base Hbar base Hcircumflex base I base IJ base Iacute base Ibreve base Icircumflex base Idieresis base Idotaccent base Igrave base Imacron base Iogonek base Itilde base J base Jcircumflex base K base L base Lacute base Lcaron base Ldot base Lslash base M base N base Nacute base Ncaron base Ntilde base O base OE base Oacute base Obreve base Ocircumflex base Odieresis base Ograve base Ohungarumlaut base Omacron base Oslash base Otilde base P base Q base R base Racute base Rcaron base S base Sacute base Scaron base Scedilla base Scircumflex base T base Tbar base Tcaron base Thorn base U base Uacute base Ubreve base Ucircumflex base Udieresis base Ugrave base Uhungarumlaut base Umacron base Uogonek base Uring base Utilde base V base W base Wacute base Wcircumflex base Wdieresis base Wgrave base X base Y base Yacute base Ycircumflex base Ydieresis base Ygrave base Z base Zacute base Zcaron base Zdotaccent base a base aacute base abreve base acircumflex base acute base acutecomb mark acutecomb.cap mark adieresis base ae base agrave base amacron base ampersand base aogonek base aring base asciicircum base asciitilde base asterisk base at base atilde base b base backslash.latn base bar.latn base braceleft.latn base braceright.latn base bracketleft.latn base bracketright.latn base breve base brokenbar base bullet base c base cacute base caron base ccaron base ccedilla base ccircumflex base cdotaccent base cedilla base cent base circumflex base colon base comma base copyright base currency base d base dagger base daggerdbl base dcaron base dcroat base degree base dieresis base divide base dollar base dotbelowcomb mark dotlessi base e base eacute base ebreve base ecaron base ecircumflex base edieresis base edotaccent base egrave base eight base eight.medium base eight.numr base eight.prop base eight.small base ellipsis base emacron base emdash base endash base eng base eogonek base equal base eth base exclam.latn base exclamdown base f base f_b base f_f base f_f_b base f_f_h base f_f_i base f_f_j base f_f_k base f_f_l base f_h base f_i base f_j base f_k base f_l base figuredash base five base five.medium base five.numr base five.prop base five.small base four base four.medium base four.numr base four.prop base four.small base fraction base g base gbreve base gcaron base gcircumflex base gdotaccent base germandbls base grave base gravecomb mark gravecomb.cap mark greater base guillemotleft.latn base guillemotright.latn base guilsinglleft base guilsinglright base h base hbar base hcircumflex base hyphen base i base i.TRK base iacute base ibreve base icircumflex base idieresis base igrave base ij base imacron base iogonek base itilde base j base jcircumflex base k base kgreenlandic base l base lacute base lcaron base ldot base less base logicalnot base longs base lslash base m base macron base minus base minute base mu base multiply base n base nacute base napostrophe base ncaron base nine base nine.medium base nine.numr base nine.prop base nine.small base ntilde base numbersign base o base oacute base obreve base ocircumflex base odieresis base oe base ogonek base ograve base ohungarumlaut base omacron base one base one.medium base one.numr base one.prop base one.small base onedotenleader base onehalf base onequarter base ordfeminine base ordmasculine base oslash base otilde base p base paragraph base parenleft.latn base parenright.latn base percent base period.latn base periodcentered base perthousand base plus base plusminus base q base question base questiondown base quotedbl base quotedblbase base quotedblleft base quotedblright base quoteleft base quotereversed base quoteright base quotesinglbase base quotesingle base r base racute base radical base rcaron base registered base ring base s base sacute base scaron base scedilla base scircumflex base second base section base semicolon base seven base seven.medium base seven.numr base seven.prop base seven.small base six base six.medium base six.numr base six.prop base six.small base slash.latn base space base sterling base t base tbar base tcaron base thorn base three base three.medium base three.numr base three.prop base three.small base threequarters base tilde base tildecomb mark tildecomb.cap mark two base two.medium base two.numr base two.prop base two.small base u base uacute base ubreve base ucircumflex base udieresis base ugrave base uhungarumlaut base umacron base underscore base uni00A0 base uni00AD base uni00B2 base uni00B3 base uni00B9 base uni0122 base uni0123 base uni0136 base uni0137 base uni013B base uni013C base uni0145 base uni0146 base uni0156 base uni0157 base uni0162 base uni0163 base uni0237 base uni02BB base uni02BC base uni02BE base uni02BF base uni0302 mark uni0302.cap mark uni0304 mark uni0304.cap mark uni0305 mark uni0306 mark uni0306.cap mark uni0307 mark uni0308 mark uni0308.cap mark uni030A base uni030A.cap mark uni030C mark uni030C.cap mark uni0312 mark uni0315 mark uni0323.cap mark uni0326 mark uni0327 mark uni0327.cap mark uni0328 mark uni1E02 base uni1E03 base uni1E0A base uni1E0B base uni1E0C base uni1E0D base uni1E0E base uni1E0F base uni1E10 base uni1E11 base uni1E1E base uni1E1F base uni1E24 base uni1E25 base uni1E28 base uni1E29 base uni1E2A base uni1E2B base uni1E40 base uni1E41 base uni1E56 base uni1E57 base uni1E60 base uni1E61 base uni1E62 base uni1E63 base uni1E6A base uni1E6B base uni1E6C base uni1E6D base uni1E6E base uni1E6F base uni1E92 base uni1E93 base uni1E96 base uni1E97 base uni2010 base uni2011 base uni2015 base uni201F base uni202F base uni2038 base uni203E base uni2042 base uni2074 base uni2213 base uogonek base uring base utilde base v base w base wacute base wcircumflex base wdieresis base wgrave base x base y base yacute base ycircumflex base ydieresis base yen base ygrave base z base zacute base zcaron base zdotaccent base zero base zero.medium base zero.numr base zero.prop base zero.small base amiri-1.000/sources/AmiriLatin-Bold.ufo/metainfo.plist000066400000000000000000000004641434272261000226610ustar00rootroot00000000000000 creator com.github.fonttools.ufoLib formatVersion 3 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/000077500000000000000000000000001434272261000211245ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/fontinfo.plist000066400000000000000000000167231434272261000240340ustar00rootroot00000000000000 ascender 700 copyright Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org). Copyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org). This Font Software is licensed under the Open Font License, Version 1.1. descender -300 familyName Amiri Latin italicAngle -11 openTypeGaspRangeRecords rangeGaspBehavior 0 1 2 3 rangeMaxPPEM 65535 openTypeHeadCreated 2010/05/15 02:52:27 openTypeHheaAscender 700 openTypeHheaDescender -300 openTypeHheaLineGap 90 openTypeNameLicense Copyright (c) 2011, Sebastian Kosch,,, (<URL|email>), with Reserved Font Name Crimson. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeOS2Selection 7 openTypeOS2StrikeoutPosition 259 openTypeOS2StrikeoutSize 50 openTypeOS2SubscriptXOffset 26 openTypeOS2SubscriptXSize 649 openTypeOS2SubscriptYOffset 140 openTypeOS2SubscriptYSize 699 openTypeOS2SuperscriptXOffset -91 openTypeOS2SuperscriptXSize 649 openTypeOS2SuperscriptYOffset 479 openTypeOS2SuperscriptYSize 699 openTypeOS2Type openTypeOS2TypoAscender 700 openTypeOS2TypoDescender -300 openTypeOS2TypoLineGap 90 openTypeOS2VendorID PfEd openTypeOS2WeightClass 700 openTypeOS2WidthClass 5 openTypeOS2WinAscent 0 openTypeOS2WinDescent 0 openTypeVheaVertTypoLineGap 0 postscriptFontName AmiriLatin-BoldItalic postscriptFullName Amiri Latin Bold Italic postscriptSlantAngle -11 postscriptUnderlinePosition -76.5 postscriptUnderlineThickness 51 postscriptWeightName Bold styleName Bold Italic unitsPerEm 1000 versionMajor 0 versionMinor 8 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/000077500000000000000000000000001434272261000224325ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_.glif000066400000000000000000000062441434272261000236220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_E_.glif000066400000000000000000000134641434272261000240700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_acute.glif000066400000000000000000000003561434272261000246420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_breve.glif000066400000000000000000000003541434272261000246420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_circumflex.glif000066400000000000000000000003601434272261000256750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_dieresis.glif000066400000000000000000000003571434272261000253510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_grave.glif000066400000000000000000000003551434272261000246440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_macron.glif000066400000000000000000000003561434272261000250200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_ogonek.glif000066400000000000000000000072071434272261000250250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_ring.glif000066400000000000000000000003361434272261000244760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/A_tilde.glif000066400000000000000000000003401434272261000246330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/B_.glif000066400000000000000000000055311434272261000236210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/C_.glif000066400000000000000000000031541434272261000236210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/C_acute.glif000066400000000000000000000003561434272261000246440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/C_caron.glif000066400000000000000000000003531434272261000246420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/C_cedilla.glif000066400000000000000000000003551434272261000251370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/C_circumflex.glif000066400000000000000000000003611434272261000257000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/C_dotaccent.glif000066400000000000000000000003571434272261000255100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/D_.glif000066400000000000000000000040521434272261000236200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/D_caron.glif000066400000000000000000000003531434272261000246430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/D_croat.glif000066400000000000000000000002611434272261000246470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_.glif000066400000000000000000000074661434272261000236350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_acute.glif000066400000000000000000000003571434272261000246470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_breve.glif000066400000000000000000000003531434272261000246450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_caron.glif000066400000000000000000000003541434272261000246450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_circumflex.glif000066400000000000000000000003601434272261000257010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_dieresis.glif000066400000000000000000000003561434272261000253540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_dotaccent.glif000066400000000000000000000003561434272261000255110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_grave.glif000066400000000000000000000003561434272261000246510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_macron.glif000066400000000000000000000003551434272261000250230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_ng.glif000066400000000000000000000063211434272261000241470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_ogonek.glif000066400000000000000000000110621434272261000250230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_th.glif000066400000000000000000000015021434272261000241520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/E_uro.glif000066400000000000000000000054031434272261000243500ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/F_.glif000066400000000000000000000065101434272261000236230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/G_.glif000066400000000000000000000052431434272261000236260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/G_breve.glif000066400000000000000000000003541434272261000246500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/G_caron.glif000066400000000000000000000003531434272261000246460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/G_circumflex.glif000066400000000000000000000003611434272261000257040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/G_dotaccent.glif000066400000000000000000000003571434272261000255140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/H_.glif000066400000000000000000000106701434272261000236270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/H_bar.glif000066400000000000000000000014721434272261000243140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/H_circumflex.glif000066400000000000000000000003611434272261000257050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_.glif000066400000000000000000000035461434272261000236340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_J_.glif000066400000000000000000000003211434272261000240710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_acute.glif000066400000000000000000000003561434272261000246520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_breve.glif000066400000000000000000000003521434272261000246500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_circumflex.glif000066400000000000000000000003611434272261000257060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_dieresis.glif000066400000000000000000000003571434272261000253610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_dotaccent.glif000066400000000000000000000003571434272261000255160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_grave.glif000066400000000000000000000003571434272261000246560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_macron.glif000066400000000000000000000003561434272261000250300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_ogonek.glif000066400000000000000000000051331434272261000250310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/I_tilde.glif000066400000000000000000000003411434272261000246440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/J_.glif000066400000000000000000000027731434272261000236360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/J_circumflex.glif000066400000000000000000000003611434272261000257070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/K_.glif000066400000000000000000000075201434272261000236320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/L_.glif000066400000000000000000000045241434272261000236340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/L_acute.glif000066400000000000000000000003561434272261000246550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/L_caron.glif000066400000000000000000000003501434272261000246500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/L_dot.glif000066400000000000000000000003501434272261000243340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/L_slash.glif000066400000000000000000000007741434272261000246720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/M_.glif000066400000000000000000000103501434272261000236270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/N_.glif000066400000000000000000000061021434272261000236300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/N_acute.glif000066400000000000000000000003561434272261000246570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/N_caron.glif000066400000000000000000000003531434272261000246550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/N_tilde.glif000066400000000000000000000003401434272261000246500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_.glif000066400000000000000000000020561434272261000236350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_E_.glif000066400000000000000000000104231434272261000240760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_acute.glif000066400000000000000000000003571434272261000246610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_breve.glif000066400000000000000000000003541434272261000246600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_circumflex.glif000066400000000000000000000003611434272261000257140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_dieresis.glif000066400000000000000000000003571434272261000253670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_grave.glif000066400000000000000000000003561434272261000246630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_hungarumlaut.glif000066400000000000000000000003641434272261000262720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_macron.glif000066400000000000000000000003561434272261000250360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_slash.glif000066400000000000000000000007241434272261000246700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/O_tilde.glif000066400000000000000000000003401434272261000246510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/P_.glif000066400000000000000000000051651434272261000236420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Q_.glif000066400000000000000000000030541434272261000236360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/R_.glif000066400000000000000000000057761434272261000236540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/R_acute.glif000066400000000000000000000003571434272261000246640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/R_caron.glif000066400000000000000000000003541434272261000246620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/S_.glif000066400000000000000000000040341434272261000236370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/S_acute.glif000066400000000000000000000003411434272261000246560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/S_caron.glif000066400000000000000000000003371434272261000246640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/S_cedilla.glif000066400000000000000000000003541434272261000251560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/S_circumflex.glif000066400000000000000000000003601434272261000257170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/T_.glif000066400000000000000000000045521434272261000236450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/T_bar.glif000066400000000000000000000015001434272261000243200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/T_caron.glif000066400000000000000000000003351434272261000246630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/T_horn.glif000066400000000000000000000063631434272261000245360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_.glif000066400000000000000000000051731434272261000236460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_acute.glif000066400000000000000000000003571434272261000246670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_breve.glif000066400000000000000000000003541434272261000246660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_circumflex.glif000066400000000000000000000003611434272261000257220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_dieresis.glif000066400000000000000000000003571434272261000253750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_grave.glif000066400000000000000000000003561434272261000246710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_hungarumlaut.glif000066400000000000000000000003641434272261000263000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_macron.glif000066400000000000000000000003561434272261000250440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_ogonek.glif000066400000000000000000000067421434272261000250540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_ring.glif000066400000000000000000000003531434272261000245210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/U_tilde.glif000066400000000000000000000003411434272261000246600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/V_.glif000066400000000000000000000045311434272261000236440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/W_.glif000066400000000000000000000061451434272261000236500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/W_acute.glif000066400000000000000000000003561434272261000246700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/W_circumflex.glif000066400000000000000000000003611434272261000257240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/W_dieresis.glif000066400000000000000000000003571434272261000253770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/W_grave.glif000066400000000000000000000003561434272261000246730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/X_.glif000066400000000000000000000070741434272261000236530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Y_.glif000066400000000000000000000062051434272261000236470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Y_acute.glif000066400000000000000000000003571434272261000246730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Y_circumflex.glif000066400000000000000000000003601434272261000257250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Y_dieresis.glif000066400000000000000000000003571434272261000254010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Y_grave.glif000066400000000000000000000003551434272261000246740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Z_.glif000066400000000000000000000035451434272261000236540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Z_acute.glif000066400000000000000000000003561434272261000246730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Z_caron.glif000066400000000000000000000003531434272261000246710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/Z_dotaccent.glif000066400000000000000000000003431434272261000255320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/a.glif000066400000000000000000000036571434272261000235300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/aacute.glif000066400000000000000000000003521434272261000245370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/abreve.glif000066400000000000000000000003501434272261000245370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/acircumflex.glif000066400000000000000000000003551434272261000256020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/acute.glif000066400000000000000000000003211434272261000243720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/acutecomb.cap.glif000066400000000000000000000012541434272261000260030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/acutecomb.glif000066400000000000000000000012661434272261000252440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/adieresis.glif000066400000000000000000000003531434272261000252460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ae.glif000066400000000000000000000065211434272261000236660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/agrave.glif000066400000000000000000000003521434272261000245420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/amacron.glif000066400000000000000000000003511434272261000247140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ampersand.glif000066400000000000000000000062321434272261000252520ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/aogonek.glif000066400000000000000000000052541434272261000247260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/aring.glif000066400000000000000000000003461434272261000244000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/asciicircum.glif000066400000000000000000000017371434272261000256000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/asciitilde.glif000066400000000000000000000020041434272261000254030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/asterisk.glif000066400000000000000000000065161434272261000251320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/at.glif000066400000000000000000000053111434272261000237010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/atilde.glif000066400000000000000000000003521434272261000245370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/b.glif000066400000000000000000000035321434272261000235210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/backslash.latn.glif000066400000000000000000000014231434272261000261650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/bar.latn.glif000066400000000000000000000014161434272261000250000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/braceleft.latn.glif000066400000000000000000000043061434272261000261640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/braceright.latn.glif000066400000000000000000000043051434272261000263460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/bracketleft.latn.glif000066400000000000000000000024511434272261000265220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/bracketright.latn.glif000066400000000000000000000024261434272261000267070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/breve.glif000066400000000000000000000003171434272261000244010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/brokenbar.glif000066400000000000000000000026531434272261000252500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/bullet.glif000066400000000000000000000011451434272261000245650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/c.glif000066400000000000000000000026401434272261000235210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/cacute.glif000066400000000000000000000003521434272261000245410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/caron.glif000066400000000000000000000003171434272261000244000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ccaron.glif000066400000000000000000000003501434272261000245400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ccedilla.glif000066400000000000000000000003351434272261000250360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ccircumflex.glif000066400000000000000000000003551434272261000256040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/cdotaccent.glif000066400000000000000000000003541434272261000254060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/cedilla.glif000066400000000000000000000003041434272261000246670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/cent.glif000066400000000000000000000007451434272261000242340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/circumflex.glif000066400000000000000000000003071434272261000254360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/colon.glif000066400000000000000000000020521434272261000244060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/comma.glif000066400000000000000000000015741434272261000244000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/contents.plist000066400000000000000000000640751434272261000253600ustar00rootroot00000000000000 A A_.glif AE A_E_.glif Aacute A_acute.glif Abreve A_breve.glif Acircumflex A_circumflex.glif Adieresis A_dieresis.glif Agrave A_grave.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Atilde A_tilde.glif B B_.glif C C_.glif Cacute C_acute.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif D D_.glif Dcaron D_caron.glif Dcroat D_croat.glif E E_.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Egrave E_grave.glif Emacron E_macron.glif Eng E_ng.glif Eogonek E_ogonek.glif Eth E_th.glif Euro E_uro.glif F F_.glif G G_.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gdotaccent G_dotaccent.glif H H_.glif Hbar H_bar.glif Hcircumflex H_circumflex.glif I I_.glif IJ I_J_.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Igrave I_grave.glif Imacron I_macron.glif Iogonek I_ogonek.glif Itilde I_tilde.glif J J_.glif Jcircumflex J_circumflex.glif K K_.glif L L_.glif Lacute L_acute.glif Lcaron L_caron.glif Ldot L_dot.glif Lslash L_slash.glif M M_.glif N N_.glif Nacute N_acute.glif Ncaron N_caron.glif Ntilde N_tilde.glif O O_.glif OE O_E_.glif Oacute O_acute.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Odieresis O_dieresis.glif Ograve O_grave.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Oslash O_slash.glif Otilde O_tilde.glif P P_.glif Q Q_.glif R R_.glif Racute R_acute.glif Rcaron R_caron.glif S S_.glif Sacute S_acute.glif Scaron S_caron.glif Scedilla S_cedilla.glif Scircumflex S_circumflex.glif T T_.glif Tbar T_bar.glif Tcaron T_caron.glif Thorn T_horn.glif U U_.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Ugrave U_grave.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Uogonek U_ogonek.glif Uring U_ring.glif Utilde U_tilde.glif V V_.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif Y Y_.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ygrave Y_grave.glif Z Z_.glif Zacute Z_acute.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif a a.glif aacute aacute.glif abreve abreve.glif acircumflex acircumflex.glif acute acute.glif acutecomb acutecomb.glif acutecomb.cap acutecomb.cap.glif adieresis adieresis.glif ae ae.glif agrave agrave.glif amacron amacron.glif ampersand ampersand.glif aogonek aogonek.glif aring aring.glif asciicircum asciicircum.glif asciitilde asciitilde.glif asterisk asterisk.glif at at.glif atilde atilde.glif b b.glif backslash.latn backslash.latn.glif bar.latn bar.latn.glif braceleft.latn braceleft.latn.glif braceright.latn braceright.latn.glif bracketleft.latn bracketleft.latn.glif bracketright.latn bracketright.latn.glif breve breve.glif brokenbar brokenbar.glif bullet bullet.glif c c.glif cacute cacute.glif caron caron.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedilla cedilla.glif cent cent.glif circumflex circumflex.glif colon colon.glif comma comma.glif copyright copyright.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dcaron dcaron.glif dcroat dcroat.glif degree degree.glif dieresis dieresis.glif divide divide.glif dollar dollar.glif dotaccent dotaccent.glif dotlessi dotlessi.glif e e.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif edieresis edieresis.glif edotaccent edotaccent.glif egrave egrave.glif eight eight.glif eight.medium eight.medium.glif eight.numr eight.numr.glif eight.prop eight.prop.glif eight.small eight.small.glif ellipsis ellipsis.glif emacron emacron.glif emdash emdash.glif endash endash.glif eng eng.glif eogonek eogonek.glif equal equal.glif eth eth.glif exclam.latn exclam.latn.glif exclamdown exclamdown.glif f f.glif f_b f_b.glif f_f f_f.glif f_f_b f_f_b.glif f_f_h f_f_h.glif f_f_i f_f_i.glif f_f_j f_f_j.glif f_f_k f_f_k.glif f_f_l f_f_l.glif f_h f_h.glif f_i f_i.glif f_j f_j.glif f_k f_k.glif f_l f_l.glif figuredash figuredash.glif five five.glif five.medium five.medium.glif five.numr five.numr.glif five.prop five.prop.glif five.small five.small.glif four four.glif four.medium four.medium.glif four.numr four.numr.glif four.prop four.prop.glif four.small four.small.glif fraction fraction.glif g g.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gdotaccent gdotaccent.glif germandbls germandbls.glif grave grave.glif gravecomb gravecomb.glif gravecomb.cap gravecomb.cap.glif greater greater.glif guillemotleft.latn guillemotleft.latn.glif guillemotright.latn guillemotright.latn.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif hbar hbar.glif hcircumflex hcircumflex.glif hungarumlaut hungarumlaut.glif hyphen hyphen.glif i i.glif i.TRK i.T_R_K_.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif igrave igrave.glif ij ij.glif imacron imacron.glif iogonek iogonek.glif itilde itilde.glif j j.glif jcircumflex jcircumflex.glif k k.glif kgreenlandic kgreenlandic.glif l l.glif lacute lacute.glif lcaron lcaron.glif ldot ldot.glif less less.glif logicalnot logicalnot.glif longs longs.glif lslash lslash.glif m m.glif macron macron.glif minus minus.glif minute minute.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif napostrophe napostrophe.glif ncaron ncaron.glif nine nine.glif nine.medium nine.medium.glif nine.numr nine.numr.glif nine.prop nine.prop.glif nine.small nine.small.glif ntilde ntilde.glif numbersign numbersign.glif o o.glif oacute oacute.glif obreve obreve.glif ocircumflex ocircumflex.glif odieresis odieresis.glif oe oe.glif ogonek ogonek.glif ograve ograve.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif one one.glif one.medium one.medium.glif one.numr one.numr.glif one.prop one.prop.glif one.small one.small.glif onedotenleader onedotenleader.glif onehalf onehalf.glif onequarter onequarter.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif oslash oslash.glif otilde otilde.glif p p.glif paragraph paragraph.glif parenleft.latn parenleft.latn.glif parenright.latn parenright.latn.glif percent percent.glif period.latn period.latn.glif periodcentered periodcentered.glif perthousand perthousand.glif plus plus.glif plusminus plusminus.glif q q.glif question question.glif questiondown questiondown.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif rcaron rcaron.glif registered registered.glif ring ring.glif s s.glif sacute sacute.glif scaron scaron.glif scedilla scedilla.glif scircumflex scircumflex.glif second second.glif section section.glif semicolon semicolon.glif seven seven.glif seven.medium seven.medium.glif seven.numr seven.numr.glif seven.prop seven.prop.glif seven.small seven.small.glif six six.glif six.medium six.medium.glif six.numr six.numr.glif six.prop six.prop.glif six.small six.small.glif slash.latn slash.latn.glif space space.glif sterling sterling.glif t t.glif tbar tbar.glif tcaron tcaron.glif thorn thorn.glif three three.glif three.medium three.medium.glif three.numr three.numr.glif three.prop three.prop.glif three.small three.small.glif threequarters threequarters.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.cap tildecomb.cap.glif two two.glif two.medium two.medium.glif two.numr two.numr.glif two.prop two.prop.glif two.small two.small.glif u u.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif ugrave ugrave.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif underscore underscore.glif uni00A0 uni00A_0.glif uni00AD uni00A_D_.glif uni00B2 uni00B_2.glif uni00B3 uni00B_3.glif uni00B9 uni00B_9.glif uni0122 uni0122.glif uni0123 uni0123.glif uni0136 uni0136.glif uni0137 uni0137.glif uni013B uni013B_.glif uni013C uni013C_.glif uni0145 uni0145.glif uni0146 uni0146.glif uni0156 uni0156.glif uni0157 uni0157.glif uni0162 uni0162.glif uni0163 uni0163.glif uni0237 uni0237.glif uni02BB uni02B_B_.glif uni02BC uni02B_C_.glif uni02BE uni02B_E_.glif uni02BF uni02B_F_.glif uni0302 uni0302.glif uni0302.cap uni0302.cap.glif uni0304 uni0304.glif uni0304.cap uni0304.cap.glif uni0305 uni0305.glif uni0306 uni0306.glif uni0306.cap uni0306.cap.glif uni0307 uni0307.glif uni0307.cap uni0307.cap.glif uni0308 uni0308.glif uni0308.cap uni0308.cap.glif uni0308.narrow uni0308.narrow.glif uni030A uni030A_.glif uni030A.cap uni030A_.cap.glif uni030B.cap uni030B_.cap.glif uni030C uni030C_.glif uni030C.cap uni030C_.cap.glif uni0312 uni0312.glif uni0315 uni0315.glif uni0323.cap uni0323.cap.glif uni0326 uni0326.glif uni0327 uni0327.glif uni0327.cap uni0327.cap.glif uni0328 uni0328.glif uni1E02 uni1E_02.glif uni1E03 uni1E_03.glif uni1E0A uni1E_0A_.glif uni1E0B uni1E_0B_.glif uni1E0C uni1E_0C_.glif uni1E0D uni1E_0D_.glif uni1E0E uni1E_0E_.glif uni1E0F uni1E_0F_.glif uni1E10 uni1E_10.glif uni1E11 uni1E_11.glif uni1E1E uni1E_1E_.glif uni1E1F uni1E_1F_.glif uni1E24 uni1E_24.glif uni1E25 uni1E_25.glif uni1E28 uni1E_28.glif uni1E29 uni1E_29.glif uni1E2A uni1E_2A_.glif uni1E2B uni1E_2B_.glif uni1E40 uni1E_40.glif uni1E41 uni1E_41.glif uni1E56 uni1E_56.glif uni1E57 uni1E_57.glif uni1E60 uni1E_60.glif uni1E61 uni1E_61.glif uni1E62 uni1E_62.glif uni1E63 uni1E_63.glif uni1E6A uni1E_6A_.glif uni1E6B uni1E_6B_.glif uni1E6C uni1E_6C_.glif uni1E6D uni1E_6D_.glif uni1E6E uni1E_6E_.glif uni1E6F uni1E_6F_.glif uni1E92 uni1E_92.glif uni1E93 uni1E_93.glif uni1E96 uni1E_96.glif uni1E97 uni1E_97.glif uni2010 uni2010.glif uni2011 uni2011.glif uni2015 uni2015.glif uni201F uni201F_.glif uni202F uni202F_.glif uni2038 uni2038.glif uni203E uni203E_.glif uni2042 uni2042.glif uni2074 uni2074.glif uni2213 uni2213.glif uogonek uogonek.glif uring uring.glif utilde utilde.glif v v.glif w w.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif x x.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif yen yen.glif ygrave ygrave.glif z z.glif zacute zacute.glif zcaron zcaron.glif zdotaccent zdotaccent.glif zero zero.glif zero.medium zero.medium.glif zero.numr zero.numr.glif zero.prop zero.prop.glif zero.small zero.small.glif amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/copyright.glif000066400000000000000000000050311434272261000253040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/currency.glif000066400000000000000000000051451434272261000251340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/d.glif000066400000000000000000000052261434272261000235250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dagger.glif000066400000000000000000000045301434272261000245300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/daggerdbl.glif000066400000000000000000000101671434272261000252150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dcaron.glif000066400000000000000000000003501434272261000245410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dcroat.glif000066400000000000000000000015021434272261000245470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/degree.glif000066400000000000000000000020661434272261000245340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dieresis.glif000066400000000000000000000003051434272261000251020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/divide.glif000066400000000000000000000030721434272261000245430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dollar.glif000066400000000000000000000046551434272261000245640ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dotaccent.glif000066400000000000000000000003061434272261000252400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/dotlessi.glif000066400000000000000000000033051434272261000251240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/e.glif000066400000000000000000000026541434272261000235300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eacute.glif000066400000000000000000000003521434272261000245430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ebreve.glif000066400000000000000000000003501434272261000245430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ecaron.glif000066400000000000000000000003501434272261000245420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ecircumflex.glif000066400000000000000000000003541434272261000256050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/edieresis.glif000066400000000000000000000003531434272261000252520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/edotaccent.glif000066400000000000000000000003541434272261000254100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/egrave.glif000066400000000000000000000003521434272261000245460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eight.glif000066400000000000000000000051051434272261000243760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eight.medium.glif000066400000000000000000000003271434272261000256560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eight.numr.glif000066400000000000000000000002641434272261000253570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eight.prop.glif000066400000000000000000000002561434272261000253570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eight.small.glif000066400000000000000000000003311434272261000255010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ellipsis.glif000066400000000000000000000027731434272261000251320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/emacron.glif000066400000000000000000000003511434272261000247200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/emdash.glif000066400000000000000000000014371434272261000245430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/endash.glif000066400000000000000000000014371434272261000245440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eng.glif000066400000000000000000000046561434272261000240610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eogonek.glif000066400000000000000000000044161434272261000247310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/equal.glif000066400000000000000000000015261434272261000244100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/eth.glif000066400000000000000000000035061434272261000240610ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/exclam.latn.glif000066400000000000000000000023471434272261000255110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/exclamdown.glif000066400000000000000000000023571434272261000254450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f.glif000066400000000000000000000046051434272261000235270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_b.glif000066400000000000000000000070711434272261000240300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f.glif000066400000000000000000000076201434272261000240340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f_b.glif000066400000000000000000000121371434272261000243340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f_h.glif000066400000000000000000000140331434272261000243370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f_i.glif000066400000000000000000000115621434272261000243440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f_j.glif000066400000000000000000000110711434272261000243400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f_k.glif000066400000000000000000000131361434272261000243450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_f_l.glif000066400000000000000000000115241434272261000243450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_h.glif000066400000000000000000000107571434272261000240430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_i.glif000066400000000000000000000065031434272261000240360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_j.glif000066400000000000000000000060441434272261000240370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_k.glif000066400000000000000000000100611434272261000240320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/f_l.glif000066400000000000000000000064621434272261000240450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/figuredash.glif000066400000000000000000000014431434272261000254200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/five.glif000066400000000000000000000043061434272261000242310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/five.medium.glif000066400000000000000000000003251434272261000255050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/five.numr.glif000066400000000000000000000002621434272261000252060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/five.prop.glif000066400000000000000000000002541434272261000252060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/five.small.glif000066400000000000000000000003271434272261000253370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/four.glif000066400000000000000000000026041434272261000242520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/four.medium.glif000066400000000000000000000003251434272261000255270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/four.numr.glif000066400000000000000000000002621434272261000252300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/four.prop.glif000066400000000000000000000002541434272261000252300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/four.small.glif000066400000000000000000000003271434272261000253610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/fraction.glif000066400000000000000000000013021434272261000250760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/g.glif000066400000000000000000000054731434272261000235340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/gbreve.glif000066400000000000000000000003501434272261000245450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/gcaron.glif000066400000000000000000000003501434272261000245440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/gcircumflex.glif000066400000000000000000000003551434272261000256100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/gdotaccent.glif000066400000000000000000000003541434272261000254120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/germandbls.glif000066400000000000000000000064261434272261000254230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/grave.glif000066400000000000000000000003211434272261000243750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/gravecomb.cap.glif000066400000000000000000000012541434272261000260060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/gravecomb.glif000066400000000000000000000012661434272261000252470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/greater.glif000066400000000000000000000022651434272261000247330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/guillemotleft.latn.glif000066400000000000000000000033251434272261000271110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/guillemotright.latn.glif000066400000000000000000000033211434272261000272700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/guilsinglleft.glif000066400000000000000000000016771434272261000261600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/guilsinglright.glif000066400000000000000000000016731434272261000263370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/h.glif000066400000000000000000000054031434272261000235260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/hbar.glif000066400000000000000000000014671434272261000242210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/hcircumflex.glif000066400000000000000000000003611434272261000256060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/hungarumlaut.glif000066400000000000000000000003711434272261000260120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/hyphen.glif000066400000000000000000000014421434272261000245710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/i.T_R_K_.glif000066400000000000000000000002271434272261000246220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/i.glif000066400000000000000000000042171434272261000235310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/iacute.glif000066400000000000000000000003751434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ibreve.glif000066400000000000000000000003731434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/icircumflex.glif000066400000000000000000000003771434272261000256160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/idieresis.glif000066400000000000000000000004051434272261000252540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/igrave.glif000066400000000000000000000003751434272261000245570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ij.glif000066400000000000000000000003211434272261000236730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/imacron.glif000066400000000000000000000003741434272261000247310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/iogonek.glif000066400000000000000000000056171434272261000247410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/itilde.glif000066400000000000000000000003751434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/j.glif000066400000000000000000000036371434272261000235370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/jcircumflex.glif000066400000000000000000000004011434272261000256030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/k.glif000066400000000000000000000045221434272261000235320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/kgreenlandic.glif000066400000000000000000000050201434272261000257200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/l.glif000066400000000000000000000031051434272261000235270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/lacute.glif000066400000000000000000000003551434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/lcaron.glif000066400000000000000000000003501434272261000245510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ldot.glif000066400000000000000000000003501434272261000242350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/less.glif000066400000000000000000000022771434272261000242530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/logicalnot.glif000066400000000000000000000014441434272261000254330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/longs.glif000066400000000000000000000035751434272261000244310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/lslash.glif000066400000000000000000000007751434272261000245740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/m.glif000066400000000000000000000073631434272261000235420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/macron.glif000066400000000000000000000003031434272261000245500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/minus.glif000066400000000000000000000014211434272261000244260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/minute.glif000066400000000000000000000014671434272261000246060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/mu.glif000066400000000000000000000053231434272261000237210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/multiply.glif000066400000000000000000000031421434272261000251540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/n.glif000066400000000000000000000053301434272261000235330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/nacute.glif000066400000000000000000000003521434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/napostrophe.glif000066400000000000000000000003551434272261000256420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ncaron.glif000066400000000000000000000003501434272261000245530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/nine.glif000066400000000000000000000030321434272261000242240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/nine.medium.glif000066400000000000000000000003251434272261000255050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/nine.numr.glif000066400000000000000000000002621434272261000252060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/nine.prop.glif000066400000000000000000000002541434272261000252060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/nine.small.glif000066400000000000000000000003271434272261000253370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ntilde.glif000066400000000000000000000003521434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/numbersign.glif000066400000000000000000000035621434272261000254540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/o.glif000066400000000000000000000020501434272261000235300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/oacute.glif000066400000000000000000000003521434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/obreve.glif000066400000000000000000000003501434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ocircumflex.glif000066400000000000000000000003541434272261000256170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/odieresis.glif000066400000000000000000000003531434272261000252640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/oe.glif000066400000000000000000000044221434272261000237020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ogonek.glif000066400000000000000000000003031434272261000245530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ograve.glif000066400000000000000000000003521434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ohungarumlaut.glif000066400000000000000000000004541434272261000261730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/omacron.glif000066400000000000000000000003511434272261000247320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/one.glif000066400000000000000000000035241434272261000240620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/one.medium.glif000066400000000000000000000003251434272261000253350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/one.numr.glif000066400000000000000000000002601434272261000250340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/one.prop.glif000066400000000000000000000002531434272261000250350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/one.small.glif000066400000000000000000000003271434272261000251670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/onedotenleader.glif000066400000000000000000000011471434272261000262700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/onehalf.glif000066400000000000000000000073271434272261000247220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/onequarter.glif000066400000000000000000000066411434272261000254710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ordfeminine.glif000066400000000000000000000037231434272261000256010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ordmasculine.glif000066400000000000000000000020741434272261000257650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/oslash.glif000066400000000000000000000007271434272261000245740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/otilde.glif000066400000000000000000000003521434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/p.glif000066400000000000000000000054411434272261000235400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/paragraph.glif000066400000000000000000000072241434272261000252470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/parenleft.latn.glif000066400000000000000000000014011434272261000262060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/parenright.latn.glif000066400000000000000000000013671434272261000264040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/percent.glif000066400000000000000000000047311434272261000247420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/period.latn.glif000066400000000000000000000011151434272261000255120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/periodcentered.glif000066400000000000000000000012241434272261000262700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/perthousand.glif000066400000000000000000000065641434272261000256440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/plus.glif000066400000000000000000000025151434272261000242630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/plusminus.glif000066400000000000000000000035401434272261000253360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/q.glif000066400000000000000000000041201434272261000235320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/question.glif000066400000000000000000000041161434272261000251460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/questiondown.glif000066400000000000000000000041521434272261000260360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotedbl.glif000066400000000000000000000026001434272261000251120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotedblbase.glif000066400000000000000000000005051434272261000257470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotedblleft.glif000066400000000000000000000003531434272261000257700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotedblright.glif000066400000000000000000000005101434272261000261460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quoteleft.glif000066400000000000000000000020021434272261000252770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotereversed.glif000066400000000000000000000020051434272261000261670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quoteright.glif000066400000000000000000000003601434272261000254670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotesinglbase.glif000066400000000000000000000003631434272261000263240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/quotesingle.glif000066400000000000000000000014141434272261000256340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/r.glif000066400000000000000000000040001434272261000235300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/racute.glif000066400000000000000000000003521434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/radical.glif000066400000000000000000000024051434272261000246750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/rcaron.glif000066400000000000000000000003501434272261000245570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/registered.glif000066400000000000000000000077231434272261000254430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ring.glif000066400000000000000000000003151434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/s.glif000066400000000000000000000040521434272261000235400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/sacute.glif000066400000000000000000000003521434272261000245610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/scaron.glif000066400000000000000000000003501434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/scedilla.glif000066400000000000000000000003521434272261000250550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/scircumflex.glif000066400000000000000000000003551434272261000256240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/second.glif000066400000000000000000000027441434272261000245570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/section.glif000066400000000000000000000067021434272261000247460ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/semicolon.glif000066400000000000000000000025171434272261000252720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/seven.glif000066400000000000000000000026051434272261000244200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/seven.medium.glif000066400000000000000000000003271434272261000256760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/seven.numr.glif000066400000000000000000000002641434272261000253770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/seven.prop.glif000066400000000000000000000002561434272261000253770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/seven.small.glif000066400000000000000000000003311434272261000255210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/six.glif000066400000000000000000000030351434272261000241010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/six.medium.glif000066400000000000000000000003231434272261000253550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/six.numr.glif000066400000000000000000000002601434272261000250560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/six.prop.glif000066400000000000000000000002521434272261000250560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/six.small.glif000066400000000000000000000003251434272261000252070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/slash.latn.glif000066400000000000000000000012211434272261000253400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/space.glif000066400000000000000000000001771434272261000243750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/sterling.glif000066400000000000000000000050421434272261000251250ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/t.glif000066400000000000000000000035331434272261000235440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/tbar.glif000066400000000000000000000015041434272261000242250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/tcaron.glif000066400000000000000000000003501434272261000245610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/thorn.glif000066400000000000000000000063131434272261000244320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/three.glif000066400000000000000000000041631434272261000244100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/three.medium.glif000066400000000000000000000003271434272261000256650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/three.numr.glif000066400000000000000000000002641434272261000253660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/three.prop.glif000066400000000000000000000002561434272261000253660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/three.small.glif000066400000000000000000000003311434272261000255100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/threequarters.glif000066400000000000000000000075701434272261000262040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/tilde.glif000066400000000000000000000003041434272261000243730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/tildecomb.cap.glif000066400000000000000000000026561434272261000260120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/tildecomb.glif000066400000000000000000000027111434272261000252400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/two.glif000066400000000000000000000032561434272261000241140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/two.medium.glif000066400000000000000000000003211434272261000253610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/two.numr.glif000066400000000000000000000002601434272261000250640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/two.prop.glif000066400000000000000000000002521434272261000250640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/two.small.glif000066400000000000000000000003231434272261000252130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/u.glif000066400000000000000000000055231434272261000235460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uacute.glif000066400000000000000000000003521434272261000245630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ubreve.glif000066400000000000000000000003501434272261000245630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ucircumflex.glif000066400000000000000000000003541434272261000256250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/udieresis.glif000066400000000000000000000003531434272261000252720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ugrave.glif000066400000000000000000000003521434272261000245660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uhungarumlaut.glif000066400000000000000000000004541434272261000262010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/umacron.glif000066400000000000000000000003511434272261000247400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/underscore.glif000066400000000000000000000014131434272261000254450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni00A_0.glif000066400000000000000000000002011434272261000245410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni00A_D_.glif000066400000000000000000000001511434272261000247300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni00B_2.glif000066400000000000000000000032701434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni00B_3.glif000066400000000000000000000041741434272261000245620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni00B_9.glif000066400000000000000000000035261434272261000245700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0122.glif000066400000000000000000000003341434272261000243750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0123.glif000066400000000000000000000003501434272261000243740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0136.glif000066400000000000000000000003341434272261000244020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0137.glif000066400000000000000000000003341434272261000244030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni013B_.glif000066400000000000000000000003341434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni013C_.glif000066400000000000000000000003341434272261000245560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0145.glif000066400000000000000000000003341434272261000244020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0146.glif000066400000000000000000000003341434272261000244030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0156.glif000066400000000000000000000003341434272261000244040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0157.glif000066400000000000000000000003341434272261000244050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0162.glif000066400000000000000000000003701434272261000244010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0163.glif000066400000000000000000000003501434272261000244000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0237.glif000066400000000000000000000027241434272261000244110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni02B_B_.glif000066400000000000000000000003041434272261000247310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni02B_C_.glif000066400000000000000000000003041434272261000247320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni02B_E_.glif000066400000000000000000000014051434272261000247370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni02B_F_.glif000066400000000000000000000014071434272261000247420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0302.cap.glif000066400000000000000000000017151434272261000251430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0302.glif000066400000000000000000000017401434272261000243770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0304.cap.glif000066400000000000000000000012461434272261000251440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0304.glif000066400000000000000000000012571434272261000244040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0305.glif000066400000000000000000000014331434272261000244010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0306.cap.glif000066400000000000000000000023521434272261000251450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0306.glif000066400000000000000000000024031434272261000244000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0307.cap.glif000066400000000000000000000011261434272261000251440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0307.glif000066400000000000000000000011351434272261000244020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0308.cap.glif000066400000000000000000000020471434272261000251500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0308.glif000066400000000000000000000020661434272261000244070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0308.narrow.glif000066400000000000000000000020521434272261000257110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni030A_.cap.glif000066400000000000000000000020471434272261000253200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni030A_.glif000066400000000000000000000020721434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni030B_.cap.glif000066400000000000000000000023171434272261000253210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni030C_.cap.glif000066400000000000000000000017151434272261000253230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni030C_.glif000066400000000000000000000017401434272261000245570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0312.glif000066400000000000000000000016141434272261000244000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0315.glif000066400000000000000000000017161434272261000244060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0323.cap.glif000066400000000000000000000011301434272261000251350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0326.glif000066400000000000000000000016451434272261000244110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0327.cap.glif000066400000000000000000000027131434272261000251510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0327.glif000066400000000000000000000027611434272261000244120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni0328.glif000066400000000000000000000022211434272261000244020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_02.glif000066400000000000000000000003711434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_03.glif000066400000000000000000000003521434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_0A_.glif000066400000000000000000000003711434272261000247360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_0B_.glif000066400000000000000000000003521434272261000247360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_0C_.glif000066400000000000000000000003561434272261000247430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_0D_.glif000066400000000000000000000003531434272261000247410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_0E_.glif000066400000000000000000000003531434272261000247420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_0F_.glif000066400000000000000000000003531434272261000247430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_10.glif000066400000000000000000000003531434272261000245570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_11.glif000066400000000000000000000003501434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_1E_.glif000066400000000000000000000003541434272261000247440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_1F_.glif000066400000000000000000000003521434272261000247430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_24.glif000066400000000000000000000003561434272261000245670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_25.glif000066400000000000000000000003531434272261000245650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_28.glif000066400000000000000000000003541434272261000245710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_29.glif000066400000000000000000000003501434272261000245660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_2A_.glif000066400000000000000000000003531434272261000247400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_2B_.glif000066400000000000000000000003531434272261000247410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_40.glif000066400000000000000000000003551434272261000245640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_41.glif000066400000000000000000000003501434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_56.glif000066400000000000000000000003541434272261000245720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_57.glif000066400000000000000000000003501434272261000245670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_60.glif000066400000000000000000000003541434272261000245650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_61.glif000066400000000000000000000003501434272261000245620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_62.glif000066400000000000000000000003711434272261000245660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_63.glif000066400000000000000000000003531434272261000245670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_6A_.glif000066400000000000000000000003551434272261000247460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_6B_.glif000066400000000000000000000003521434272261000247440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_6C_.glif000066400000000000000000000003561434272261000247510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_6D_.glif000066400000000000000000000003531434272261000247470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_6E_.glif000066400000000000000000000003531434272261000247500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_6F_.glif000066400000000000000000000003531434272261000247510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_92.glif000066400000000000000000000003561434272261000245740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_93.glif000066400000000000000000000003531434272261000245720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_96.glif000066400000000000000000000003531434272261000245750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni1E_97.glif000066400000000000000000000003521434272261000245750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2010.glif000066400000000000000000000014011434272261000243670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2011.glif000066400000000000000000000014011434272261000243700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2015.glif000066400000000000000000000014531434272261000244030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni201F_.glif000066400000000000000000000035561434272261000245710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni202F_.glif000066400000000000000000000002011434272261000245520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2038.glif000066400000000000000000000016731434272261000244140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni203E_.glif000066400000000000000000000014471434272261000245670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2042.glif000066400000000000000000000004571434272261000244060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2074.glif000066400000000000000000000003511434272261000244040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uni2213.glif000066400000000000000000000055021434272261000244020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uogonek.glif000066400000000000000000000071201434272261000247440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/uring.glif000066400000000000000000000003471434272261000244250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/utilde.glif000066400000000000000000000003521434272261000245630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/v.glif000066400000000000000000000033061434272261000235440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/w.glif000066400000000000000000000047611434272261000235530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/wacute.glif000066400000000000000000000003511434272261000245640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/wcircumflex.glif000066400000000000000000000003551434272261000256300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/wdieresis.glif000066400000000000000000000003531434272261000252740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/wgrave.glif000066400000000000000000000003531434272261000245710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/x.glif000066400000000000000000000060161434272261000235470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/y.glif000066400000000000000000000033271434272261000235520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/yacute.glif000066400000000000000000000003521434272261000245670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ycircumflex.glif000066400000000000000000000003551434272261000256320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ydieresis.glif000066400000000000000000000003531434272261000252760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/yen.glif000066400000000000000000000103131434272261000240660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/ygrave.glif000066400000000000000000000003511434272261000245710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/z.glif000066400000000000000000000046121434272261000235510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zacute.glif000066400000000000000000000003521434272261000245700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zcaron.glif000066400000000000000000000003501434272261000245670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zdotaccent.glif000066400000000000000000000003541434272261000254350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zero.glif000066400000000000000000000020561434272261000242570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zero.medium.glif000066400000000000000000000003251434272261000255330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zero.numr.glif000066400000000000000000000002621434272261000252340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zero.prop.glif000066400000000000000000000002361434272261000252340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/glyphs/zero.small.glif000066400000000000000000000003271434272261000253650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/groups.plist000066400000000000000000000607621434272261000235330ustar00rootroot00000000000000 public.kern1.kc0_0 ampersand public.kern1.kc0_1 exclamdown public.kern1.kc0_10 G Gcircumflex Gbreve Gdotaccent uni0122 public.kern1.kc0_11 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E28 uni1E2A public.kern1.kc0_12 J IJ Jcircumflex public.kern1.kc0_13 K uni0136 public.kern1.kc0_14 L Lacute uni013B Lcaron Ldot Lslash public.kern1.kc0_15 M uni1E40 public.kern1.kc0_16 N Ntilde Nacute uni0145 Ncaron Eng public.kern1.kc0_17 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut public.kern1.kc0_18 P uni1E56 public.kern1.kc0_19 Q public.kern1.kc0_2 registered public.kern1.kc0_20 R Racute uni0156 Rcaron public.kern1.kc0_21 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern1.kc0_22 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern1.kc0_23 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern1.kc0_24 V public.kern1.kc0_25 W Wcircumflex Wgrave Wacute Wdieresis public.kern1.kc0_26 X public.kern1.kc0_27 Y Yacute Ycircumflex Ydieresis Ygrave public.kern1.kc0_28 Z Zacute Zdotaccent Zcaron uni1E92 public.kern1.kc0_29 Thorn public.kern1.kc0_3 questiondown public.kern1.kc0_30 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern1.kc0_31 b uni1E03 f_b f_f_b public.kern1.kc0_32 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern1.kc0_33 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern1.kc0_34 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe public.kern1.kc0_35 f longs uni1E1F f_f public.kern1.kc0_36 g gcircumflex gbreve gdotaccent uni0123 public.kern1.kc0_37 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i i.TRK public.kern1.kc0_38 j ij jcircumflex uni0237 f_j f_f_j public.kern1.kc0_39 k uni0137 kgreenlandic f_k f_f_k public.kern1.kc0_4 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern1.kc0_40 l lacute uni013C lcaron lslash f_l f_f_l public.kern1.kc0_41 h m n ntilde hcircumflex hbar nacute uni0146 ncaron napostrophe uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h public.kern1.kc0_42 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut public.kern1.kc0_43 p thorn uni1E57 public.kern1.kc0_44 q public.kern1.kc0_45 r racute uni0157 rcaron public.kern1.kc0_46 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern1.kc0_47 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern1.kc0_48 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern1.kc0_49 v public.kern1.kc0_5 B uni1E02 public.kern1.kc0_50 w wcircumflex wgrave wacute wdieresis public.kern1.kc0_51 x public.kern1.kc0_52 y yacute ydieresis ycircumflex ygrave public.kern1.kc0_53 z zacute zdotaccent zcaron uni1E93 public.kern1.kc0_54 germandbls public.kern1.kc0_55 ldot public.kern1.kc0_56 eng public.kern1.kc0_57 quotedbl quotesingle public.kern1.kc0_58 asterisk public.kern1.kc0_59 hyphen endash emdash uni2015 public.kern1.kc0_6 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron public.kern1.kc0_60 comma period.latn quotesinglbase quotedblbase public.kern1.kc0_61 slash.latn public.kern1.kc0_62 colon semicolon public.kern1.kc0_63 backslash.latn public.kern1.kc0_64 quoteleft quotedblleft public.kern1.kc0_65 quoteright quotedblright public.kern1.kc0_66 guillemotleft.latn guilsinglleft public.kern1.kc0_67 guillemotright.latn guilsinglright public.kern1.kc0_68 parenleft.latn public.kern1.kc0_69 bracketleft.latn public.kern1.kc0_7 D Eth Dcaron Dcroat uni1E0A uni1E0C uni1E0E uni1E10 public.kern1.kc0_70 braceleft.latn public.kern1.kc0_71 mu public.kern1.kc0_8 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE public.kern1.kc0_9 F uni1E1E public.kern2.kc0_1 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc0_10 quotedbl quotesingle public.kern2.kc0_11 asterisk public.kern2.kc0_12 hyphen endash emdash uni2015 public.kern2.kc0_13 slash.latn public.kern2.kc0_14 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc0_15 Q public.kern2.kc0_16 V public.kern2.kc0_17 backslash.latn public.kern2.kc0_18 bracketright.latn public.kern2.kc0_19 b uni1E03 public.kern2.kc0_2 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E28 uni1E2A uni1E56 public.kern2.kc0_20 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc0_21 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc0_22 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij public.kern2.kc0_23 j jcircumflex uni0237 public.kern2.kc0_24 l lacute uni013C lcaron ldot lslash public.kern2.kc0_25 m n r ntilde kgreenlandic nacute uni0146 ncaron napostrophe eng racute uni0157 rcaron uni1E41 public.kern2.kc0_26 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc0_27 p uni1E57 public.kern2.kc0_28 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc0_29 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc0_3 J Jcircumflex public.kern2.kc0_30 v w wcircumflex wgrave wacute wdieresis public.kern2.kc0_31 y yacute ydieresis ycircumflex ygrave public.kern2.kc0_32 registered public.kern2.kc0_33 quoteleft quotedblleft public.kern2.kc0_34 quoteright quotedblright public.kern2.kc0_35 guillemotleft.latn guilsinglleft public.kern2.kc0_36 z zacute zdotaccent zcaron uni1E93 public.kern2.kc0_37 x public.kern2.kc0_38 parenright.latn public.kern2.kc0_39 M uni1E40 public.kern2.kc0_4 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc0_40 X public.kern2.kc0_41 Z Zacute Zdotaccent Zcaron uni1E92 public.kern2.kc0_42 AE public.kern2.kc0_43 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc0_44 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern2.kc0_45 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc0_46 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc0_47 q public.kern2.kc0_48 ae public.kern2.kc0_49 eth public.kern2.kc0_5 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc0_50 ampersand public.kern2.kc0_51 colon semicolon public.kern2.kc0_52 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc0_53 guillemotright.latn guilsinglright public.kern2.kc0_54 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc0_55 braceright public.kern2.kc0_56 at public.kern2.kc0_6 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc0_7 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc0_8 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc0_9 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/kerning.plist000066400000000000000000001561511434272261000236470ustar00rootroot00000000000000 public.kern1.kc0_0 public.kern2.kc0_1 -25 public.kern2.kc0_2 -10 public.kern2.kc0_3 -10 public.kern2.kc0_4 -13 public.kern2.kc0_5 -18 public.kern2.kc0_6 -21 public.kern1.kc0_1 public.kern2.kc0_5 -33 public.kern2.kc0_6 -30 public.kern2.kc0_7 -32 public.kern2.kc0_8 -17 public.kern2.kc0_9 29 public.kern1.kc0_10 public.kern2.kc0_1 -7 public.kern2.kc0_16 -11 public.kern2.kc0_18 -16 public.kern2.kc0_28 -5 public.kern2.kc0_37 -6 public.kern2.kc0_38 -19 public.kern2.kc0_5 -10 public.kern2.kc0_6 -9 public.kern2.kc0_7 -6 public.kern2.kc0_9 -6 public.kern1.kc0_11 public.kern2.kc0_12 -12 public.kern2.kc0_14 -8 public.kern2.kc0_15 -8 public.kern2.kc0_18 -11 public.kern2.kc0_20 -17 public.kern2.kc0_21 -14 public.kern2.kc0_23 -12 public.kern2.kc0_25 -8 public.kern2.kc0_26 -18 public.kern2.kc0_27 -19 public.kern2.kc0_28 -16 public.kern2.kc0_29 -7 public.kern2.kc0_30 -13 public.kern2.kc0_31 -6 public.kern2.kc0_35 -13 public.kern2.kc0_36 -6 public.kern2.kc0_37 -11 public.kern2.kc0_44 -15 public.kern2.kc0_45 -14 public.kern2.kc0_46 -9 public.kern2.kc0_47 -15 public.kern2.kc0_48 -11 public.kern2.kc0_49 -18 public.kern2.kc0_9 -17 public.kern1.kc0_12 public.kern2.kc0_1 -11 public.kern2.kc0_12 -8 public.kern2.kc0_14 -5 public.kern2.kc0_15 -6 public.kern2.kc0_18 -13 public.kern2.kc0_19 6 public.kern2.kc0_20 -18 public.kern2.kc0_21 -20 public.kern2.kc0_23 -11 public.kern2.kc0_25 -8 public.kern2.kc0_26 -19 public.kern2.kc0_27 -20 public.kern2.kc0_28 -16 public.kern2.kc0_29 -5 public.kern2.kc0_30 -8 public.kern2.kc0_35 -10 public.kern2.kc0_36 -18 public.kern2.kc0_37 -13 public.kern2.kc0_42 -8 public.kern2.kc0_43 -8 public.kern2.kc0_44 -20 public.kern2.kc0_45 -20 public.kern2.kc0_46 -18 public.kern2.kc0_47 -20 public.kern2.kc0_9 -18 public.kern1.kc0_13 public.kern2.kc0_12 -32 public.kern2.kc0_13 19 public.kern2.kc0_14 -45 public.kern2.kc0_15 -45 public.kern2.kc0_20 -13 public.kern2.kc0_22 -13 public.kern2.kc0_26 -16 public.kern2.kc0_27 -6 public.kern2.kc0_28 -9 public.kern2.kc0_29 -28 public.kern2.kc0_30 -54 public.kern2.kc0_31 -46 public.kern2.kc0_32 -14 public.kern2.kc0_35 -31 public.kern1.kc0_14 public.kern2.kc0_10 -56 public.kern2.kc0_11 -65 public.kern2.kc0_16 -65 public.kern2.kc0_17 -33 public.kern2.kc0_18 -14 public.kern2.kc0_23 -13 public.kern2.kc0_28 -5 public.kern2.kc0_3 -5 public.kern2.kc0_30 -22 public.kern2.kc0_31 -41 public.kern2.kc0_32 -15 public.kern2.kc0_33 -56 public.kern2.kc0_34 -58 public.kern2.kc0_38 -15 public.kern2.kc0_5 -57 public.kern2.kc0_50 9 public.kern2.kc0_6 -41 public.kern2.kc0_7 -56 public.kern2.kc0_8 -11 public.kern2.kc0_9 -5 public.kern1.kc0_15 public.kern2.kc0_12 -11 public.kern2.kc0_14 -9 public.kern2.kc0_20 -14 public.kern2.kc0_21 -12 public.kern2.kc0_23 -14 public.kern2.kc0_25 -7 public.kern2.kc0_26 -16 public.kern2.kc0_28 -16 public.kern2.kc0_29 -6 public.kern2.kc0_30 -13 public.kern2.kc0_31 -6 public.kern2.kc0_35 -13 public.kern2.kc0_44 -12 public.kern2.kc0_45 -12 public.kern2.kc0_46 -6 public.kern2.kc0_9 -16 public.kern1.kc0_16 public.kern2.kc0_1 -9 public.kern2.kc0_12 -13 public.kern2.kc0_14 -8 public.kern2.kc0_15 -8 public.kern2.kc0_18 -14 public.kern2.kc0_19 14 public.kern2.kc0_20 -21 public.kern2.kc0_21 -24 public.kern2.kc0_23 -13 public.kern2.kc0_24 9 public.kern2.kc0_25 -15 public.kern2.kc0_26 -22 public.kern2.kc0_27 -22 public.kern2.kc0_28 -23 public.kern2.kc0_29 -12 public.kern2.kc0_30 -16 public.kern2.kc0_31 -8 public.kern2.kc0_35 -15 public.kern2.kc0_36 -22 public.kern2.kc0_37 -19 public.kern2.kc0_42 -7 public.kern2.kc0_43 -10 public.kern2.kc0_44 -23 public.kern2.kc0_45 -23 public.kern2.kc0_46 -23 public.kern2.kc0_47 -22 public.kern2.kc0_50 -10 public.kern2.kc0_51 -9 public.kern2.kc0_52 11 public.kern2.kc0_9 -21 public.kern1.kc0_17 public.kern2.kc0_1 -19 public.kern2.kc0_16 -25 public.kern2.kc0_17 -16 public.kern2.kc0_18 -20 public.kern2.kc0_2 -8 public.kern2.kc0_3 -8 public.kern2.kc0_37 -14 public.kern2.kc0_38 -27 public.kern2.kc0_39 -10 public.kern2.kc0_4 -10 public.kern2.kc0_40 -29 public.kern2.kc0_41 -5 public.kern2.kc0_42 -16 public.kern2.kc0_5 -22 public.kern2.kc0_6 -34 public.kern2.kc0_7 -6 public.kern2.kc0_8 -7 public.kern1.kc0_18 public.kern2.kc0_1 -51 public.kern2.kc0_12 -39 public.kern2.kc0_2 -5 public.kern2.kc0_20 -25 public.kern2.kc0_21 -5 public.kern2.kc0_26 -26 public.kern2.kc0_35 -19 public.kern2.kc0_4 -7 public.kern2.kc0_43 -65 public.kern2.kc0_44 -39 public.kern2.kc0_45 -39 public.kern2.kc0_46 -6 public.kern1.kc0_19 public.kern2.kc0_1 -18 public.kern2.kc0_2 -8 public.kern2.kc0_21 62 public.kern2.kc0_3 -8 public.kern2.kc0_4 -9 public.kern2.kc0_41 -5 public.kern2.kc0_5 -22 public.kern2.kc0_6 -34 public.kern2.kc0_7 -6 public.kern2.kc0_8 -7 public.kern1.kc0_2 public.kern2.kc0_1 -26 public.kern2.kc0_2 -10 public.kern2.kc0_4 -13 public.kern2.kc0_5 -19 public.kern2.kc0_6 -23 public.kern1.kc0_20 public.kern2.kc0_1 17 public.kern2.kc0_10 -16 public.kern2.kc0_11 -23 public.kern2.kc0_12 -16 public.kern2.kc0_13 33 public.kern2.kc0_14 -20 public.kern2.kc0_15 -19 public.kern2.kc0_16 -55 public.kern2.kc0_17 -29 public.kern2.kc0_19 -9 public.kern2.kc0_20 -6 public.kern2.kc0_21 -5 public.kern2.kc0_23 -9 public.kern2.kc0_24 -5 public.kern2.kc0_26 -7 public.kern2.kc0_27 -5 public.kern2.kc0_28 -8 public.kern2.kc0_3 -5 public.kern2.kc0_30 -27 public.kern2.kc0_31 -29 public.kern2.kc0_32 -24 public.kern2.kc0_33 -11 public.kern2.kc0_34 -12 public.kern2.kc0_35 -35 public.kern2.kc0_36 13 public.kern2.kc0_39 8 public.kern2.kc0_4 5 public.kern2.kc0_40 16 public.kern2.kc0_41 14 public.kern2.kc0_42 18 public.kern2.kc0_43 13 public.kern2.kc0_44 -5 public.kern2.kc0_45 -5 public.kern2.kc0_47 -5 public.kern2.kc0_5 -47 public.kern2.kc0_50 12 public.kern2.kc0_6 -30 public.kern2.kc0_7 -21 public.kern2.kc0_8 -23 public.kern2.kc0_9 -6 public.kern1.kc0_21 public.kern2.kc0_1 -10 public.kern2.kc0_16 -5 public.kern2.kc0_18 -17 public.kern2.kc0_21 -7 public.kern2.kc0_23 -11 public.kern2.kc0_27 -5 public.kern2.kc0_28 -10 public.kern2.kc0_36 -9 public.kern2.kc0_37 -7 public.kern2.kc0_38 -16 public.kern2.kc0_46 -5 public.kern2.kc0_5 -5 public.kern2.kc0_9 -12 public.kern1.kc0_22 public.kern2.kc0_1 -46 public.kern2.kc0_11 20 public.kern2.kc0_12 -54 public.kern2.kc0_13 -21 public.kern2.kc0_20 -65 public.kern2.kc0_21 -73 public.kern2.kc0_22 -5 public.kern2.kc0_23 -20 public.kern2.kc0_25 -55 public.kern2.kc0_26 -67 public.kern2.kc0_27 -65 public.kern2.kc0_28 -16 public.kern2.kc0_29 -55 public.kern2.kc0_30 -56 public.kern2.kc0_31 -42 public.kern2.kc0_35 -48 public.kern2.kc0_36 -52 public.kern2.kc0_37 -62 public.kern2.kc0_42 -54 public.kern2.kc0_43 -37 public.kern2.kc0_44 -68 public.kern2.kc0_45 -68 public.kern2.kc0_46 -65 public.kern2.kc0_47 -67 public.kern2.kc0_50 -32 public.kern2.kc0_51 -13 public.kern2.kc0_53 -27 public.kern2.kc0_9 -14 public.kern1.kc0_23 public.kern2.kc0_1 -31 public.kern2.kc0_12 -9 public.kern2.kc0_13 -11 public.kern2.kc0_18 -12 public.kern2.kc0_19 27 public.kern2.kc0_20 -23 public.kern2.kc0_21 -21 public.kern2.kc0_23 -6 public.kern2.kc0_24 22 public.kern2.kc0_25 -6 public.kern2.kc0_26 -23 public.kern2.kc0_27 -25 public.kern2.kc0_28 -15 public.kern2.kc0_30 -6 public.kern2.kc0_36 -22 public.kern2.kc0_37 -21 public.kern2.kc0_42 -34 public.kern2.kc0_43 -20 public.kern2.kc0_44 -26 public.kern2.kc0_45 -25 public.kern2.kc0_46 -23 public.kern2.kc0_47 -25 public.kern2.kc0_50 -11 public.kern2.kc0_51 -8 public.kern2.kc0_52 23 public.kern2.kc0_9 -13 public.kern1.kc0_24 public.kern2.kc0_1 -64 public.kern2.kc0_10 20 public.kern2.kc0_12 -49 public.kern2.kc0_14 -19 public.kern2.kc0_20 -65 public.kern2.kc0_21 -68 public.kern2.kc0_23 -12 public.kern2.kc0_24 44 public.kern2.kc0_25 -49 public.kern2.kc0_26 -66 public.kern2.kc0_28 -40 public.kern2.kc0_29 -45 public.kern2.kc0_30 -45 public.kern2.kc0_31 -35 public.kern2.kc0_35 -46 public.kern2.kc0_36 -69 public.kern2.kc0_43 -65 public.kern2.kc0_44 -70 public.kern2.kc0_45 -68 public.kern2.kc0_46 -69 public.kern2.kc0_51 -34 public.kern2.kc0_52 47 public.kern2.kc0_53 -33 public.kern2.kc0_54 -11 public.kern2.kc0_9 -23 public.kern1.kc0_25 public.kern2.kc0_1 -60 public.kern2.kc0_10 16 public.kern2.kc0_12 -43 public.kern2.kc0_13 -34 public.kern2.kc0_14 -19 public.kern2.kc0_15 -19 public.kern2.kc0_18 -16 public.kern2.kc0_19 48 public.kern2.kc0_20 -57 public.kern2.kc0_21 -60 public.kern2.kc0_23 -13 public.kern2.kc0_24 42 public.kern2.kc0_25 -41 public.kern2.kc0_26 -58 public.kern2.kc0_27 -57 public.kern2.kc0_28 -36 public.kern2.kc0_29 -38 public.kern2.kc0_30 -42 public.kern2.kc0_31 -34 public.kern2.kc0_32 -16 public.kern2.kc0_35 -41 public.kern2.kc0_36 -61 public.kern2.kc0_37 -62 public.kern2.kc0_42 -68 public.kern2.kc0_43 -58 public.kern2.kc0_44 -60 public.kern2.kc0_45 -60 public.kern2.kc0_46 -61 public.kern2.kc0_47 -59 public.kern2.kc0_50 -45 public.kern2.kc0_51 -32 public.kern2.kc0_52 45 public.kern2.kc0_53 -31 public.kern2.kc0_54 -11 public.kern2.kc0_9 -23 public.kern1.kc0_26 public.kern2.kc0_12 -25 public.kern2.kc0_14 -30 public.kern2.kc0_20 -16 public.kern2.kc0_21 -8 public.kern2.kc0_24 19 public.kern2.kc0_25 -10 public.kern2.kc0_26 -19 public.kern2.kc0_28 -19 public.kern2.kc0_29 -20 public.kern2.kc0_30 -43 public.kern2.kc0_31 -37 public.kern2.kc0_35 -25 public.kern2.kc0_44 -6 public.kern2.kc0_45 -6 public.kern2.kc0_52 21 public.kern1.kc0_27 public.kern2.kc0_1 -56 public.kern2.kc0_10 19 public.kern2.kc0_12 -60 public.kern2.kc0_13 -30 public.kern2.kc0_14 -22 public.kern2.kc0_15 -23 public.kern2.kc0_18 -14 public.kern2.kc0_19 49 public.kern2.kc0_20 -72 public.kern2.kc0_21 -67 public.kern2.kc0_23 -14 public.kern2.kc0_24 44 public.kern2.kc0_25 -62 public.kern2.kc0_26 -73 public.kern2.kc0_27 -64 public.kern2.kc0_28 -47 public.kern2.kc0_29 -61 public.kern2.kc0_30 -63 public.kern2.kc0_31 -59 public.kern2.kc0_32 -18 public.kern2.kc0_35 -58 public.kern2.kc0_36 -73 public.kern2.kc0_37 -68 public.kern2.kc0_42 -55 public.kern2.kc0_43 -43 public.kern2.kc0_44 -73 public.kern2.kc0_45 -66 public.kern2.kc0_46 -68 public.kern2.kc0_47 -73 public.kern2.kc0_50 -47 public.kern2.kc0_51 -35 public.kern2.kc0_52 45 public.kern2.kc0_53 -39 public.kern2.kc0_54 -11 public.kern2.kc0_9 -29 public.kern1.kc0_28 public.kern2.kc0_18 -11 public.kern2.kc0_21 -13 public.kern2.kc0_22 -8 public.kern2.kc0_23 -19 public.kern2.kc0_25 -18 public.kern2.kc0_27 -8 public.kern2.kc0_28 -16 public.kern2.kc0_29 -17 public.kern2.kc0_30 -32 public.kern2.kc0_31 -33 public.kern2.kc0_36 -12 public.kern2.kc0_46 -6 public.kern2.kc0_9 -17 public.kern1.kc0_29 public.kern2.kc0_1 -21 public.kern2.kc0_10 -11 public.kern2.kc0_2 -8 public.kern2.kc0_3 -8 public.kern2.kc0_33 -17 public.kern2.kc0_34 -11 public.kern2.kc0_4 -11 public.kern2.kc0_41 -8 public.kern2.kc0_43 -29 public.kern2.kc0_5 -27 public.kern2.kc0_6 -46 public.kern2.kc0_7 -11 public.kern2.kc0_8 -5 public.kern1.kc0_3 public.kern2.kc0_5 -33 public.kern2.kc0_6 -28 public.kern2.kc0_7 -25 public.kern2.kc0_8 -14 public.kern2.kc0_9 32 public.kern1.kc0_30 public.kern2.kc0_17 -28 public.kern2.kc0_18 -14 public.kern2.kc0_38 -17 public.kern2.kc0_50 9 public.kern2.kc0_8 -21 public.kern1.kc0_31 public.kern2.kc0_1 -18 public.kern2.kc0_10 -12 public.kern2.kc0_2 -20 public.kern2.kc0_33 -16 public.kern2.kc0_34 -14 public.kern2.kc0_8 -19 public.kern1.kc0_32 public.kern2.kc0_1 -5 public.kern2.kc0_14 -7 public.kern2.kc0_17 -19 public.kern2.kc0_18 -18 public.kern2.kc0_2 -20 public.kern2.kc0_27 -6 public.kern2.kc0_37 -8 public.kern2.kc0_38 -22 public.kern2.kc0_8 -14 public.kern1.kc0_33 public.kern2.kc0_50 9 public.kern2.kc0_8 -14 public.kern1.kc0_34 public.kern2.kc0_1 -12 public.kern2.kc0_17 -24 public.kern2.kc0_18 -23 public.kern2.kc0_2 -13 public.kern2.kc0_38 -30 public.kern2.kc0_55 -11 public.kern2.kc0_8 -18 public.kern1.kc0_35 public.kern2.kc0_1 -20 public.kern2.kc0_10 43 public.kern2.kc0_12 -22 public.kern2.kc0_2 21 public.kern2.kc0_20 -9 public.kern2.kc0_26 -9 public.kern2.kc0_33 9 public.kern2.kc0_35 -11 public.kern2.kc0_43 -12 public.kern2.kc0_44 -12 public.kern2.kc0_45 -12 public.kern2.kc0_8 39 public.kern1.kc0_36 public.kern2.kc0_1 15 public.kern2.kc0_17 -16 public.kern2.kc0_2 -5 public.kern2.kc0_21 5 public.kern2.kc0_37 -6 public.kern2.kc0_8 -13 public.kern2.kc0_9 53 public.kern1.kc0_37 public.kern2.kc0_17 -11 public.kern2.kc0_50 12 public.kern2.kc0_8 -16 public.kern1.kc0_38 public.kern2.kc0_1 -5 public.kern2.kc0_14 -6 public.kern2.kc0_2 -7 public.kern2.kc0_8 -8 public.kern1.kc0_39 public.kern2.kc0_1 -6 public.kern2.kc0_10 -12 public.kern2.kc0_11 -10 public.kern2.kc0_14 -6 public.kern2.kc0_17 -32 public.kern2.kc0_18 -20 public.kern2.kc0_2 -6 public.kern2.kc0_33 -14 public.kern2.kc0_34 -14 public.kern2.kc0_38 -22 public.kern2.kc0_50 8 public.kern2.kc0_8 -21 public.kern1.kc0_4 public.kern2.kc0_10 -49 public.kern2.kc0_11 -43 public.kern2.kc0_12 -18 public.kern2.kc0_13 7 public.kern2.kc0_14 -24 public.kern2.kc0_15 -25 public.kern2.kc0_16 -66 public.kern2.kc0_17 -43 public.kern2.kc0_18 -13 public.kern2.kc0_19 -12 public.kern2.kc0_20 -6 public.kern2.kc0_21 -5 public.kern2.kc0_22 -10 public.kern2.kc0_23 -13 public.kern2.kc0_24 -5 public.kern2.kc0_25 -5 public.kern2.kc0_26 -7 public.kern2.kc0_27 -6 public.kern2.kc0_28 -12 public.kern2.kc0_29 -8 public.kern2.kc0_3 -8 public.kern2.kc0_30 -27 public.kern2.kc0_31 -26 public.kern2.kc0_32 -29 public.kern2.kc0_33 -47 public.kern2.kc0_34 -45 public.kern2.kc0_35 -20 public.kern2.kc0_5 -61 public.kern2.kc0_6 -60 public.kern2.kc0_7 -51 public.kern2.kc0_8 -38 public.kern2.kc0_9 -9 public.kern1.kc0_40 public.kern2.kc0_50 10 public.kern2.kc0_8 -14 public.kern1.kc0_41 public.kern2.kc0_16 -55 public.kern2.kc0_17 -29 public.kern2.kc0_18 -11 public.kern2.kc0_3 -6 public.kern2.kc0_38 -13 public.kern2.kc0_5 -49 public.kern2.kc0_50 18 public.kern2.kc0_6 -44 public.kern2.kc0_7 -56 public.kern2.kc0_8 -19 public.kern1.kc0_42 public.kern2.kc0_1 -15 public.kern2.kc0_11 -8 public.kern2.kc0_17 -31 public.kern2.kc0_18 -24 public.kern2.kc0_2 -19 public.kern2.kc0_33 -11 public.kern2.kc0_34 -10 public.kern2.kc0_37 -7 public.kern2.kc0_38 -34 public.kern2.kc0_55 -11 public.kern2.kc0_8 -20 public.kern1.kc0_43 public.kern2.kc0_1 -18 public.kern2.kc0_17 -28 public.kern2.kc0_18 -24 public.kern2.kc0_2 -20 public.kern2.kc0_33 -8 public.kern2.kc0_34 -8 public.kern2.kc0_37 -7 public.kern2.kc0_38 -34 public.kern2.kc0_55 -12 public.kern2.kc0_8 -19 public.kern1.kc0_44 public.kern2.kc0_14 -6 public.kern2.kc0_2 -12 public.kern2.kc0_23 21 public.kern2.kc0_8 -20 public.kern1.kc0_45 public.kern2.kc0_1 -50 public.kern2.kc0_12 -30 public.kern2.kc0_13 -18 public.kern2.kc0_17 -16 public.kern2.kc0_18 -21 public.kern2.kc0_2 -20 public.kern2.kc0_20 -5 public.kern2.kc0_26 -5 public.kern2.kc0_27 -6 public.kern2.kc0_38 -33 public.kern2.kc0_43 -48 public.kern2.kc0_44 -11 public.kern2.kc0_45 -11 public.kern2.kc0_47 -10 public.kern2.kc0_50 -20 public.kern2.kc0_8 -11 public.kern1.kc0_46 public.kern2.kc0_1 -8 public.kern2.kc0_17 -26 public.kern2.kc0_18 -22 public.kern2.kc0_2 -9 public.kern2.kc0_37 -4 public.kern2.kc0_38 -26 public.kern2.kc0_8 -21 public.kern1.kc0_47 public.kern2.kc0_1 -10 public.kern2.kc0_17 -17 public.kern2.kc0_18 -20 public.kern2.kc0_2 -8 public.kern2.kc0_38 -22 public.kern2.kc0_8 -13 public.kern1.kc0_48 public.kern2.kc0_17 -28 public.kern2.kc0_18 -14 public.kern2.kc0_38 -16 public.kern2.kc0_50 11 public.kern2.kc0_8 -21 public.kern1.kc0_49 public.kern2.kc0_1 -33 public.kern2.kc0_2 -25 public.kern2.kc0_43 -17 public.kern2.kc0_8 -19 public.kern1.kc0_5 public.kern2.kc0_1 -13 public.kern2.kc0_2 -5 public.kern2.kc0_21 -5 public.kern2.kc0_23 -11 public.kern2.kc0_28 -9 public.kern2.kc0_3 -6 public.kern2.kc0_36 -10 public.kern2.kc0_4 -6 public.kern2.kc0_5 -18 public.kern2.kc0_6 -21 public.kern2.kc0_7 -7 public.kern2.kc0_8 -6 public.kern2.kc0_9 -9 public.kern1.kc0_50 public.kern2.kc0_1 -33 public.kern2.kc0_13 -10 public.kern2.kc0_17 -24 public.kern2.kc0_18 -25 public.kern2.kc0_2 -24 public.kern2.kc0_37 -6 public.kern2.kc0_38 -37 public.kern2.kc0_43 -16 public.kern2.kc0_55 -13 public.kern2.kc0_8 -18 public.kern1.kc0_51 public.kern2.kc0_12 -8 public.kern2.kc0_14 -14 public.kern2.kc0_2 -17 public.kern2.kc0_20 -7 public.kern2.kc0_21 -6 public.kern2.kc0_26 -7 public.kern2.kc0_36 -5 public.kern2.kc0_44 -7 public.kern2.kc0_45 -7 public.kern2.kc0_8 -15 public.kern1.kc0_52 public.kern2.kc0_1 -17 public.kern2.kc0_17 -27 public.kern2.kc0_18 -23 public.kern2.kc0_2 -19 public.kern2.kc0_37 -6 public.kern2.kc0_38 -32 public.kern2.kc0_55 -12 public.kern2.kc0_8 -22 public.kern1.kc0_53 public.kern2.kc0_1 -10 public.kern2.kc0_12 -18 public.kern2.kc0_17 -21 public.kern2.kc0_18 -21 public.kern2.kc0_2 -9 public.kern2.kc0_27 -4 public.kern2.kc0_35 -13 public.kern2.kc0_37 -5 public.kern2.kc0_38 -25 public.kern2.kc0_8 -21 public.kern1.kc0_54 public.kern2.kc0_25 -5 public.kern2.kc0_30 -17 public.kern1.kc0_55 public.kern2.kc0_10 -15 public.kern2.kc0_33 -20 public.kern2.kc0_34 -19 public.kern2.kc0_43 -22 public.kern1.kc0_56 public.kern2.kc0_33 -8 public.kern1.kc0_57 public.kern2.kc0_1 -52 public.kern2.kc0_13 -35 public.kern2.kc0_35 -10 public.kern2.kc0_42 -57 public.kern2.kc0_43 -81 public.kern2.kc0_44 -10 public.kern2.kc0_45 -18 public.kern2.kc0_47 -10 public.kern2.kc0_50 -27 public.kern2.kc0_56 -13 public.kern1.kc0_58 public.kern2.kc0_1 -45 public.kern2.kc0_44 -10 public.kern2.kc0_45 -12 public.kern1.kc0_59 public.kern2.kc0_1 -22 public.kern2.kc0_16 -42 public.kern2.kc0_2 -12 public.kern2.kc0_28 -12 public.kern2.kc0_3 -10 public.kern2.kc0_36 -11 public.kern2.kc0_39 -15 public.kern2.kc0_4 -17 public.kern2.kc0_40 -24 public.kern2.kc0_41 -21 public.kern2.kc0_42 -21 public.kern2.kc0_5 -37 public.kern2.kc0_6 -59 public.kern2.kc0_7 -56 public.kern2.kc0_8 -9 public.kern2.kc0_9 -13 public.kern1.kc0_6 public.kern2.kc0_21 -5 public.kern2.kc0_22 -5 public.kern2.kc0_23 -13 public.kern2.kc0_28 -6 public.kern2.kc0_30 -16 public.kern2.kc0_31 -21 public.kern2.kc0_36 -6 public.kern2.kc0_37 -9 public.kern2.kc0_9 -5 public.kern1.kc0_60 public.kern2.kc0_10 -89 public.kern2.kc0_14 -19 public.kern2.kc0_15 -19 public.kern2.kc0_16 -62 public.kern2.kc0_23 -10 public.kern2.kc0_30 -18 public.kern2.kc0_31 -24 public.kern2.kc0_33 -97 public.kern2.kc0_34 -100 public.kern2.kc0_5 -55 public.kern2.kc0_6 -33 public.kern2.kc0_7 -33 public.kern2.kc0_8 -22 public.kern1.kc0_61 public.kern2.kc0_1 -45 public.kern2.kc0_14 -13 public.kern2.kc0_20 -34 public.kern2.kc0_21 -26 public.kern2.kc0_25 -15 public.kern2.kc0_26 -35 public.kern2.kc0_28 -16 public.kern2.kc0_29 -12 public.kern2.kc0_30 -15 public.kern2.kc0_36 -26 public.kern2.kc0_44 -38 public.kern2.kc0_45 -32 public.kern2.kc0_46 -27 public.kern2.kc0_9 -13 public.kern1.kc0_62 public.kern2.kc0_16 -30 public.kern2.kc0_5 -27 public.kern2.kc0_6 -28 public.kern2.kc0_7 -19 public.kern2.kc0_8 -10 public.kern1.kc0_63 public.kern2.kc0_1 15 public.kern2.kc0_10 -34 public.kern2.kc0_5 -30 public.kern2.kc0_6 -22 public.kern2.kc0_7 -19 public.kern2.kc0_8 -15 public.kern1.kc0_64 public.kern2.kc0_1 -52 public.kern2.kc0_16 11 public.kern2.kc0_20 -11 public.kern2.kc0_26 -12 public.kern2.kc0_42 -57 public.kern2.kc0_43 -92 public.kern2.kc0_44 -17 public.kern2.kc0_45 -21 public.kern2.kc0_47 -17 public.kern2.kc0_5 9 public.kern1.kc0_65 public.kern2.kc0_1 -56 public.kern2.kc0_16 17 public.kern2.kc0_20 -16 public.kern2.kc0_21 -8 public.kern2.kc0_26 -17 public.kern2.kc0_35 -32 public.kern2.kc0_36 -8 public.kern2.kc0_42 -62 public.kern2.kc0_43 -100 public.kern2.kc0_44 -21 public.kern2.kc0_45 -21 public.kern2.kc0_47 -21 public.kern2.kc0_48 -10 public.kern2.kc0_5 15 public.kern1.kc0_66 public.kern2.kc0_16 -28 public.kern2.kc0_5 -26 public.kern2.kc0_6 -27 public.kern2.kc0_7 -32 public.kern1.kc0_67 public.kern2.kc0_1 -21 public.kern2.kc0_10 -25 public.kern2.kc0_16 -43 public.kern2.kc0_2 -13 public.kern2.kc0_3 -12 public.kern2.kc0_34 -37 public.kern2.kc0_39 -15 public.kern2.kc0_4 -16 public.kern2.kc0_40 -21 public.kern2.kc0_41 -22 public.kern2.kc0_42 -19 public.kern2.kc0_5 -38 public.kern2.kc0_6 -48 public.kern2.kc0_7 -50 public.kern1.kc0_68 public.kern2.kc0_14 -27 public.kern2.kc0_20 -29 public.kern2.kc0_21 26 public.kern2.kc0_22 -12 public.kern2.kc0_25 -21 public.kern2.kc0_26 -30 public.kern2.kc0_28 -26 public.kern2.kc0_29 -21 public.kern2.kc0_30 -26 public.kern2.kc0_31 26 public.kern2.kc0_36 -19 public.kern2.kc0_44 -27 public.kern2.kc0_45 -24 public.kern2.kc0_46 -22 public.kern2.kc0_54 -16 public.kern2.kc0_8 -12 public.kern2.kc0_9 77 public.kern1.kc0_69 public.kern2.kc0_1 -20 public.kern2.kc0_14 -21 public.kern2.kc0_2 -14 public.kern2.kc0_20 -26 public.kern2.kc0_21 7 public.kern2.kc0_25 -16 public.kern2.kc0_26 -26 public.kern2.kc0_28 -21 public.kern2.kc0_29 -13 public.kern2.kc0_30 -16 public.kern2.kc0_31 17 public.kern2.kc0_36 -23 public.kern2.kc0_4 -13 public.kern2.kc0_41 -13 public.kern2.kc0_44 -26 public.kern2.kc0_45 -23 public.kern2.kc0_46 -23 public.kern2.kc0_5 -14 public.kern2.kc0_54 -17 public.kern2.kc0_6 -13 public.kern2.kc0_7 -12 public.kern2.kc0_8 -18 public.kern2.kc0_9 70 public.kern1.kc0_7 public.kern2.kc0_1 -18 public.kern2.kc0_16 -26 public.kern2.kc0_17 -16 public.kern2.kc0_18 -21 public.kern2.kc0_2 -8 public.kern2.kc0_3 -9 public.kern2.kc0_37 -14 public.kern2.kc0_38 -26 public.kern2.kc0_39 -9 public.kern2.kc0_4 -10 public.kern2.kc0_40 -29 public.kern2.kc0_41 -5 public.kern2.kc0_42 -16 public.kern2.kc0_5 -23 public.kern2.kc0_6 -35 public.kern2.kc0_7 -6 public.kern2.kc0_8 -7 public.kern1.kc0_70 public.kern2.kc0_20 -10 public.kern2.kc0_26 -10 public.kern2.kc0_36 -10 public.kern2.kc0_44 -10 public.kern2.kc0_9 45 public.kern1.kc0_71 public.kern2.kc0_10 -8 public.kern2.kc0_12 -21 public.kern2.kc0_34 -11 public.kern2.kc0_35 -13 public.kern1.kc0_8 public.kern2.kc0_18 -12 public.kern2.kc0_21 -9 public.kern2.kc0_22 -6 public.kern2.kc0_23 -15 public.kern2.kc0_25 -6 public.kern2.kc0_27 -6 public.kern2.kc0_28 -9 public.kern2.kc0_30 -14 public.kern2.kc0_31 -12 public.kern2.kc0_36 -7 public.kern2.kc0_5 -5 public.kern2.kc0_9 -10 public.kern1.kc0_9 public.kern2.kc0_1 -37 public.kern2.kc0_12 -8 public.kern2.kc0_20 -21 public.kern2.kc0_21 -16 public.kern2.kc0_23 -7 public.kern2.kc0_26 -21 public.kern2.kc0_28 -6 public.kern2.kc0_36 -16 public.kern2.kc0_43 -36 public.kern2.kc0_44 -24 public.kern2.kc0_45 -25 public.kern2.kc0_46 -20 public.kern2.kc0_9 -8 amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/layercontents.plist000066400000000000000000000004231434272261000250720ustar00rootroot00000000000000 public.default glyphs amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/lib.plist000066400000000000000000001112021434272261000227440ustar00rootroot00000000000000 public.glyphOrder space exclam.latn quotedbl numbersign dollar percent ampersand quotesingle asterisk plus comma hyphen zero one two three four five six seven eight nine colon semicolon less equal greater question at A B C D E F G H I J K L M N O P Q R S T U V W X Y Z asciicircum underscore grave a b c d e f g h i j k l m n o p q r s t u v w x y z asciitilde uni00A0 exclamdown cent sterling currency yen brokenbar section dieresis copyright ordfeminine logicalnot uni00AD registered macron degree plusminus uni00B2 uni00B3 acute mu paragraph periodcentered cedilla uni00B9 ordmasculine onequarter onehalf threequarters questiondown Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis multiply Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn germandbls agrave aacute acircumflex atilde adieresis aring ae ccedilla egrave eacute ecircumflex edieresis igrave iacute icircumflex idieresis eth ntilde ograve oacute ocircumflex otilde odieresis divide oslash ugrave uacute ucircumflex udieresis yacute thorn ydieresis Amacron amacron Abreve abreve Aogonek aogonek Cacute cacute Ccircumflex ccircumflex Cdotaccent cdotaccent Ccaron ccaron Dcaron dcaron Dcroat dcroat Emacron emacron Ebreve ebreve Edotaccent edotaccent Eogonek eogonek Ecaron ecaron Gcircumflex gcircumflex Gbreve gbreve Gdotaccent gdotaccent uni0122 uni0123 Hcircumflex hcircumflex Hbar hbar Itilde itilde Imacron imacron Ibreve ibreve Iogonek iogonek Idotaccent dotlessi IJ ij Jcircumflex jcircumflex uni0136 uni0137 kgreenlandic Lacute lacute uni013B uni013C Lcaron lcaron Ldot ldot Lslash lslash Nacute nacute uni0145 uni0146 Ncaron ncaron napostrophe Eng eng Omacron omacron Obreve obreve Ohungarumlaut ohungarumlaut OE oe Racute racute uni0156 uni0157 Rcaron rcaron Sacute sacute Scircumflex scircumflex Scedilla scedilla Scaron scaron uni0162 uni0163 Tcaron tcaron Tbar tbar Utilde utilde Umacron umacron Ubreve ubreve Uring uring Uhungarumlaut uhungarumlaut Uogonek uogonek Wcircumflex wcircumflex Ycircumflex ycircumflex Ydieresis Zacute zacute Zdotaccent zdotaccent Zcaron zcaron longs Gcaron gcaron uni0237 uni02BB uni02BC uni02BE uni02BF circumflex caron breve dotaccent ring ogonek tilde hungarumlaut gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030C uni0312 uni0315 uni0326 uni0327 uni0328 uni1E02 uni1E03 uni1E0A uni1E0B uni1E0C uni1E0D uni1E0E uni1E0F uni1E10 uni1E11 uni1E1E uni1E1F uni1E24 uni1E25 uni1E28 uni1E29 uni1E2A uni1E2B uni1E40 uni1E41 uni1E56 uni1E57 uni1E60 uni1E61 uni1E62 uni1E63 uni1E6A uni1E6B uni1E6C uni1E6D uni1E6E uni1E6F Wgrave wgrave Wacute wacute Wdieresis wdieresis uni1E92 uni1E93 uni1E96 uni1E97 Ygrave ygrave uni2010 uni2011 figuredash endash emdash uni2015 quoteleft quoteright quotesinglbase quotereversed quotedblleft quotedblright quotedblbase uni201F dagger daggerdbl bullet onedotenleader ellipsis uni202F perthousand minute second uni2038 guilsinglleft guilsinglright uni203E uni2042 fraction uni2074 Euro minus uni2213 radical parenleft.latn parenright.latn period.latn slash.latn bracketleft.latn backslash.latn bracketright.latn braceleft.latn bar.latn braceright.latn guillemotleft.latn guillemotright.latn gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0307.cap uni0323.cap uni030B.cap uni0308.cap uni0308.narrow uni030C.cap f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j i.TRK zero.prop one.prop two.prop three.prop four.prop five.prop six.prop seven.prop eight.prop nine.prop zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr public.openTypeCategories A base AE base Aacute base Abreve base Acircumflex base Adieresis base Agrave base Amacron base Aogonek base Aring base Atilde base B base C base Cacute base Ccaron base Ccedilla base Ccircumflex base Cdotaccent base D base Dcaron base Dcroat base E base Eacute base Ebreve base Ecaron base Ecircumflex base Edieresis base Edotaccent base Egrave base Emacron base Eng base Eogonek base Eth base Euro base F base G base Gbreve base Gcaron base Gcircumflex base Gdotaccent base H base Hbar base Hcircumflex base I base IJ base Iacute base Ibreve base Icircumflex base Idieresis base Idotaccent base Igrave base Imacron base Iogonek base Itilde base J base Jcircumflex base K base L base Lacute base Lcaron base Ldot base Lslash base M base N base Nacute base Ncaron base Ntilde base O base OE base Oacute base Obreve base Ocircumflex base Odieresis base Ograve base Ohungarumlaut base Omacron base Oslash base Otilde base P base Q base R base Racute base Rcaron base S base Sacute base Scaron base Scedilla base Scircumflex base T base Tbar base Tcaron base Thorn base U base Uacute base Ubreve base Ucircumflex base Udieresis base Ugrave base Uhungarumlaut base Umacron base Uogonek base Uring base Utilde base V base W base Wacute base Wcircumflex base Wdieresis base Wgrave base X base Y base Yacute base Ycircumflex base Ydieresis base Ygrave base Z base Zacute base Zcaron base Zdotaccent base a base aacute base abreve base acircumflex base acute base acutecomb mark acutecomb.cap mark adieresis base ae base agrave base amacron base ampersand base aogonek base aring base asciicircum base asciitilde base asterisk base at base atilde base b base backslash.latn base bar.latn base braceleft.latn base braceright.latn base bracketleft.latn base bracketright.latn base breve base brokenbar base bullet base c base cacute base caron base ccaron base ccedilla base ccircumflex base cdotaccent base cedilla base cent base circumflex base colon base comma base copyright base currency base d base dagger base daggerdbl base dcaron base dcroat base degree base dieresis base divide base dollar base dotaccent base dotlessi base e base eacute base ebreve base ecaron base ecircumflex base edieresis base edotaccent base egrave base eight base eight.medium base eight.numr base eight.prop base eight.small base ellipsis base emacron base emdash base endash base eng base eogonek base equal base eth base exclam.latn base exclamdown base f base f_b base f_f base f_f_b base f_f_h base f_f_i base f_f_j base f_f_k base f_f_l base f_h base f_i base f_j base f_k base f_l base figuredash base five base five.medium base five.numr base five.prop base five.small base four base four.medium base four.numr base four.prop base four.small base fraction base g base gbreve base gcaron base gcircumflex base gdotaccent base germandbls base grave base gravecomb mark gravecomb.cap mark greater base guillemotleft.latn base guillemotright.latn base guilsinglleft base guilsinglright base h base hbar base hcircumflex base hungarumlaut base hyphen base i base i.TRK base iacute base ibreve base icircumflex base idieresis base igrave base ij base imacron base iogonek base itilde base j base jcircumflex base k base kgreenlandic base l base lacute base lcaron base ldot base less base logicalnot base longs base lslash base m base macron base minus base minute base mu base multiply base n base nacute base napostrophe base ncaron base nine base nine.medium base nine.numr base nine.prop base nine.small base ntilde base numbersign base o base oacute base obreve base ocircumflex base odieresis base oe base ogonek base ograve base ohungarumlaut base omacron base one base one.medium base one.numr base one.prop base one.small base onedotenleader base onehalf base onequarter base ordfeminine base ordmasculine base oslash base otilde base p base paragraph base parenleft.latn base parenright.latn base percent base period.latn base periodcentered base perthousand base plus base plusminus base q base question base questiondown base quotedbl base quotedblbase base quotedblleft base quotedblright base quoteleft base quotereversed base quoteright base quotesinglbase base quotesingle base r base racute base radical base rcaron base registered base ring base s base sacute base scaron base scedilla base scircumflex base second base section base semicolon base seven base seven.medium base seven.numr base seven.prop base seven.small base six base six.medium base six.numr base six.prop base six.small base slash.latn base space base sterling base t base tbar base tcaron base thorn base three base three.medium base three.numr base three.prop base three.small base threequarters base tilde base tildecomb mark tildecomb.cap mark two base two.medium base two.numr base two.prop base two.small base u base uacute base ubreve base ucircumflex base udieresis base ugrave base uhungarumlaut base umacron base underscore base uni00A0 base uni00AD base uni00B2 base uni00B3 base uni00B9 base uni0122 base uni0123 base uni0136 base uni0137 base uni013B base uni013C base uni0145 base uni0146 base uni0156 base uni0157 base uni0162 base uni0163 base uni0237 base uni02BB base uni02BC base uni02BE base uni02BF base uni0302 mark uni0302.cap mark uni0304 mark uni0304.cap mark uni0305 mark uni0306 mark uni0306.cap mark uni0307 mark uni0307.cap mark uni0308 mark uni0308.cap mark uni0308.narrow mark uni030A mark uni030A.cap mark uni030B.cap mark uni030C mark uni030C.cap mark uni0312 mark uni0315 mark uni0323.cap mark uni0326 mark uni0327 mark uni0327.cap mark uni0328 mark uni1E02 base uni1E03 base uni1E0A base uni1E0B base uni1E0C base uni1E0D base uni1E0E base uni1E0F base uni1E10 base uni1E11 base uni1E1E base uni1E1F base uni1E24 base uni1E25 base uni1E28 base uni1E29 base uni1E2A base uni1E2B base uni1E40 base uni1E41 base uni1E56 base uni1E57 base uni1E60 base uni1E61 base uni1E62 base uni1E63 base uni1E6A base uni1E6B base uni1E6C base uni1E6D base uni1E6E base uni1E6F base uni1E92 base uni1E93 base uni1E96 base uni1E97 base uni2010 base uni2011 base uni2015 base uni201F base uni202F base uni2038 base uni203E base uni2042 base uni2074 base uni2213 base uogonek base uring base utilde base v base w base wacute base wcircumflex base wdieresis base wgrave base x base y base yacute base ycircumflex base ydieresis base yen base ygrave base z base zacute base zcaron base zdotaccent base zero base zero.medium base zero.numr base zero.prop base zero.small base amiri-1.000/sources/AmiriLatin-BoldItalic.ufo/metainfo.plist000066400000000000000000000004641434272261000240070ustar00rootroot00000000000000 creator com.github.fonttools.ufoLib formatVersion 3 amiri-1.000/sources/AmiriLatin-Italic.ufo/000077500000000000000000000000001434272261000203235ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-Italic.ufo/fontinfo.plist000066400000000000000000000061431434272261000232260ustar00rootroot00000000000000 ascender 800 copyright Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org). Copyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org). This Font Software is licensed under the Open Font License, Version 1.1. descender -200 familyName Amiri Latin italicAngle -11 openTypeGaspRangeRecords rangeGaspBehavior 0 1 2 3 rangeMaxPPEM 65535 openTypeHeadCreated 2010/05/09 22:26:33 openTypeHheaAscender 700 openTypeHheaDescender -300 openTypeHheaLineGap 90 openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeOS2Selection 7 openTypeOS2StrikeoutPosition 259 openTypeOS2StrikeoutSize 50 openTypeOS2SubscriptXOffset 26 openTypeOS2SubscriptXSize 649 openTypeOS2SubscriptYOffset 140 openTypeOS2SubscriptYSize 699 openTypeOS2SuperscriptXOffset -91 openTypeOS2SuperscriptXSize 649 openTypeOS2SuperscriptYOffset 479 openTypeOS2SuperscriptYSize 699 openTypeOS2Type openTypeOS2TypoAscender 700 openTypeOS2TypoDescender -300 openTypeOS2TypoLineGap 90 openTypeOS2VendorID PfEd openTypeOS2WeightClass 400 openTypeOS2WidthClass 5 openTypeOS2WinAscent 0 openTypeOS2WinDescent 0 openTypeVheaVertTypoLineGap 0 postscriptFontName AmiriLatin-Italic postscriptFullName Amiri Latin Italic postscriptSlantAngle -11 postscriptUnderlinePosition -76.5 postscriptUnderlineThickness 51 postscriptWeightName Italic styleName Italic unitsPerEm 1000 versionMajor 0 versionMinor 8 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/000077500000000000000000000000001434272261000216315ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_.glif000066400000000000000000000045451434272261000230230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_E_.glif000066400000000000000000000115111434272261000232560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_acute.glif000066400000000000000000000003561434272261000240410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_breve.glif000066400000000000000000000003511434272261000240360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_circumflex.glif000066400000000000000000000003441434272261000250760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_dieresis.glif000066400000000000000000000003561434272261000245470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_grave.glif000066400000000000000000000003551434272261000240430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_macron.glif000066400000000000000000000003561434272261000242170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_ogonek.glif000066400000000000000000000057041434272261000242240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_ring.glif000066400000000000000000000003541434272261000236750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/A_tilde.glif000066400000000000000000000003551434272261000240400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/B_.glif000066400000000000000000000050701434272261000230160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/C_.glif000066400000000000000000000027451434272261000230250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/C_acute.glif000066400000000000000000000003561434272261000240430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/C_caron.glif000066400000000000000000000003371434272261000240430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/C_cedilla.glif000066400000000000000000000003411434272261000243310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/C_circumflex.glif000066400000000000000000000003441434272261000251000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/C_dotaccent.glif000066400000000000000000000003551434272261000247050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/D_.glif000066400000000000000000000037441434272261000230260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/D_caron.glif000066400000000000000000000003371434272261000240440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/D_croat.glif000066400000000000000000000002611434272261000240460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_.glif000066400000000000000000000074601434272261000230260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_acute.glif000066400000000000000000000003561434272261000240450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_breve.glif000066400000000000000000000003551434272261000240460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_caron.glif000066400000000000000000000003361434272261000240440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_circumflex.glif000066400000000000000000000003431434272261000251010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_dieresis.glif000066400000000000000000000003561434272261000245530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_dotaccent.glif000066400000000000000000000003551434272261000247070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_grave.glif000066400000000000000000000003551434272261000240470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_macron.glif000066400000000000000000000003551434272261000242220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_ng.glif000066400000000000000000000057641434272261000233600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_ogonek.glif000066400000000000000000000110721434272261000242230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_th.glif000066400000000000000000000014671434272261000233630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/E_uro.glif000066400000000000000000000052261434272261000235520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/F_.glif000066400000000000000000000065061434272261000230270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/G_.glif000066400000000000000000000051211434272261000230200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/G_breve.glif000066400000000000000000000003551434272261000240500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/G_caron.glif000066400000000000000000000003371434272261000240470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/G_circumflex.glif000066400000000000000000000003441434272261000251040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/G_dotaccent.glif000066400000000000000000000003551434272261000247110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/H_.glif000066400000000000000000000073121434272261000230250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/H_bar.glif000066400000000000000000000015141434272261000235100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/H_circumflex.glif000066400000000000000000000003441434272261000251050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_.glif000066400000000000000000000035441434272261000230310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_J_.glif000066400000000000000000000003211434272261000232700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_acute.glif000066400000000000000000000003551434272261000240500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_breve.glif000066400000000000000000000003541434272261000240510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_circumflex.glif000066400000000000000000000003441434272261000251060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_dieresis.glif000066400000000000000000000003541434272261000245550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_dotaccent.glif000066400000000000000000000003551434272261000247130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_grave.glif000066400000000000000000000003561434272261000240540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_macron.glif000066400000000000000000000003561434272261000242270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_ogonek.glif000066400000000000000000000051501434272261000242270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/I_tilde.glif000066400000000000000000000003561434272261000240510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/J_.glif000066400000000000000000000027741434272261000230360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/J_circumflex.glif000066400000000000000000000003441434272261000251070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/K_.glif000066400000000000000000000075301434272261000230320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/L_.glif000066400000000000000000000045161434272261000230340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/L_acute.glif000066400000000000000000000003551434272261000240530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/L_caron.glif000066400000000000000000000003501434272261000240470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/L_dot.glif000066400000000000000000000003501434272261000235330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/L_slash.glif000066400000000000000000000007751434272261000240720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/M_.glif000066400000000000000000000073151434272261000230350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/N_.glif000066400000000000000000000056131434272261000230350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/N_acute.glif000066400000000000000000000003561434272261000240560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/N_caron.glif000066400000000000000000000003371434272261000240560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/N_tilde.glif000066400000000000000000000003561434272261000240560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_.glif000066400000000000000000000020561434272261000230340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_E_.glif000066400000000000000000000077731434272261000233130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_acute.glif000066400000000000000000000003561434272261000240570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_breve.glif000066400000000000000000000003551434272261000240600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_circumflex.glif000066400000000000000000000003441434272261000251140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_dieresis.glif000066400000000000000000000003571434272261000245660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_grave.glif000066400000000000000000000003561434272261000240620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_hungarumlaut.glif000066400000000000000000000003631434272261000254700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_macron.glif000066400000000000000000000003561434272261000242350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_slash.glif000066400000000000000000000007251434272261000240700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/O_tilde.glif000066400000000000000000000003561434272261000240570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/P_.glif000066400000000000000000000051631434272261000230370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Q_.glif000066400000000000000000000030541434272261000230350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/R_.glif000066400000000000000000000057101434272261000230370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/R_acute.glif000066400000000000000000000003561434272261000240620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/R_caron.glif000066400000000000000000000003361434272261000240610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/S_.glif000066400000000000000000000040141434272261000230340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/S_acute.glif000066400000000000000000000003561434272261000240630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/S_caron.glif000066400000000000000000000003361434272261000240620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/S_cedilla.glif000066400000000000000000000003411434272261000243510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/S_circumflex.glif000066400000000000000000000003431434272261000251170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/T_.glif000066400000000000000000000046301434272261000230410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/T_bar.glif000066400000000000000000000015141434272261000235240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/T_caron.glif000066400000000000000000000003531434272261000240620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/T_horn.glif000066400000000000000000000060101434272261000237220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_.glif000066400000000000000000000051751434272261000230470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_acute.glif000066400000000000000000000003731434272261000240640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_breve.glif000066400000000000000000000003721434272261000240650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_circumflex.glif000066400000000000000000000003611434272261000251210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_dieresis.glif000066400000000000000000000003741434272261000245730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_grave.glif000066400000000000000000000003731434272261000240670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_hungarumlaut.glif000066400000000000000000000004001434272261000254660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_macron.glif000066400000000000000000000003731434272261000242420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_ogonek.glif000066400000000000000000000067461434272261000242570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_ring.glif000066400000000000000000000003711434272261000237200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/U_tilde.glif000066400000000000000000000003731434272261000240640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/V_.glif000066400000000000000000000045761434272261000230540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/W_.glif000066400000000000000000000057351434272261000230530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/W_acute.glif000066400000000000000000000003561434272261000240670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/W_circumflex.glif000066400000000000000000000003441434272261000251240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/W_dieresis.glif000066400000000000000000000003571434272261000245760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/W_grave.glif000066400000000000000000000003561434272261000240720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/X_.glif000066400000000000000000000070361434272261000230500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Y_.glif000066400000000000000000000060741434272261000230520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Y_acute.glif000066400000000000000000000003561434272261000240710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Y_circumflex.glif000066400000000000000000000003431434272261000251250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Y_dieresis.glif000066400000000000000000000003561434272261000245770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Y_grave.glif000066400000000000000000000003551434272261000240730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Z_.glif000066400000000000000000000035071434272261000230510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Z_acute.glif000066400000000000000000000003561434272261000240720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Z_caron.glif000066400000000000000000000003371434272261000240720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/Z_dotaccent.glif000066400000000000000000000003551434272261000247340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/a.glif000066400000000000000000000035001434272261000227120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/aacute.glif000066400000000000000000000003521434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/abreve.glif000066400000000000000000000003471434272261000237440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/acircumflex.glif000066400000000000000000000003541434272261000250000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/acute.glif000066400000000000000000000003041434272261000235720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/acutecomb.cap.glif000066400000000000000000000013061434272261000252000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/acutecomb.glif000066400000000000000000000013201434272261000244320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/adieresis.glif000066400000000000000000000003531434272261000244450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ae.glif000066400000000000000000000064511434272261000230670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/agrave.glif000066400000000000000000000003521434272261000237410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/amacron.glif000066400000000000000000000003511434272261000241130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ampersand.glif000066400000000000000000000062331434272261000244520ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/aogonek.glif000066400000000000000000000052651434272261000241270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/aring.glif000066400000000000000000000003461434272261000235770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/asciicircum.glif000066400000000000000000000017401434272261000247710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/asciitilde.glif000066400000000000000000000020041434272261000246020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/asterisk.glif000066400000000000000000000065161434272261000243310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/at.glif000066400000000000000000000053101434272261000230770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/atilde.glif000066400000000000000000000003521434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/b.glif000066400000000000000000000035301434272261000227160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/backslash.latn.glif000066400000000000000000000014231434272261000253640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/bar.latn.glif000066400000000000000000000014161434272261000241770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/braceleft.latn.glif000066400000000000000000000043101434272261000253560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/braceright.latn.glif000066400000000000000000000043111434272261000255420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/bracketleft.latn.glif000066400000000000000000000024531434272261000257230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/bracketright.latn.glif000066400000000000000000000024241434272261000261040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/breve.glif000066400000000000000000000003021434272261000235720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/brokenbar.glif000066400000000000000000000026551434272261000244510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/bullet.glif000066400000000000000000000011451434272261000237640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/c.glif000066400000000000000000000026401434272261000227200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/cacute.glif000066400000000000000000000003521434272261000237400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/caron.glif000066400000000000000000000003021434272261000235710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ccaron.glif000066400000000000000000000003471434272261000237450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ccedilla.glif000066400000000000000000000003511434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ccircumflex.glif000066400000000000000000000003541434272261000250020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/cdotaccent.glif000066400000000000000000000003541434272261000246050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/cedilla.glif000066400000000000000000000003041434272261000240660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/cent.glif000066400000000000000000000007421434272261000234300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/circumflex.glif000066400000000000000000000003071434272261000246350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/colon.glif000066400000000000000000000020451434272261000236070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/comma.glif000066400000000000000000000015741434272261000235770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/contents.plist000066400000000000000000000640771434272261000245610ustar00rootroot00000000000000 A A_.glif AE A_E_.glif Aacute A_acute.glif Abreve A_breve.glif Acircumflex A_circumflex.glif Adieresis A_dieresis.glif Agrave A_grave.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Atilde A_tilde.glif B B_.glif C C_.glif Cacute C_acute.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif D D_.glif Dcaron D_caron.glif Dcroat D_croat.glif E E_.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Egrave E_grave.glif Emacron E_macron.glif Eng E_ng.glif Eogonek E_ogonek.glif Eth E_th.glif Euro E_uro.glif F F_.glif G G_.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gdotaccent G_dotaccent.glif H H_.glif Hbar H_bar.glif Hcircumflex H_circumflex.glif I I_.glif IJ I_J_.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Igrave I_grave.glif Imacron I_macron.glif Iogonek I_ogonek.glif Itilde I_tilde.glif J J_.glif Jcircumflex J_circumflex.glif K K_.glif L L_.glif Lacute L_acute.glif Lcaron L_caron.glif Ldot L_dot.glif Lslash L_slash.glif M M_.glif N N_.glif Nacute N_acute.glif Ncaron N_caron.glif Ntilde N_tilde.glif O O_.glif OE O_E_.glif Oacute O_acute.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Odieresis O_dieresis.glif Ograve O_grave.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Oslash O_slash.glif Otilde O_tilde.glif P P_.glif Q Q_.glif R R_.glif Racute R_acute.glif Rcaron R_caron.glif S S_.glif Sacute S_acute.glif Scaron S_caron.glif Scedilla S_cedilla.glif Scircumflex S_circumflex.glif T T_.glif Tbar T_bar.glif Tcaron T_caron.glif Thorn T_horn.glif U U_.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Ugrave U_grave.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Uogonek U_ogonek.glif Uring U_ring.glif Utilde U_tilde.glif V V_.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif Y Y_.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ygrave Y_grave.glif Z Z_.glif Zacute Z_acute.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif a a.glif aacute aacute.glif abreve abreve.glif acircumflex acircumflex.glif acute acute.glif acutecomb acutecomb.glif acutecomb.cap acutecomb.cap.glif adieresis adieresis.glif ae ae.glif agrave agrave.glif amacron amacron.glif ampersand ampersand.glif aogonek aogonek.glif aring aring.glif asciicircum asciicircum.glif asciitilde asciitilde.glif asterisk asterisk.glif at at.glif atilde atilde.glif b b.glif backslash.latn backslash.latn.glif bar.latn bar.latn.glif braceleft.latn braceleft.latn.glif braceright.latn braceright.latn.glif bracketleft.latn bracketleft.latn.glif bracketright.latn bracketright.latn.glif breve breve.glif brokenbar brokenbar.glif bullet bullet.glif c c.glif cacute cacute.glif caron caron.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedilla cedilla.glif cent cent.glif circumflex circumflex.glif colon colon.glif comma comma.glif copyright copyright.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dcaron dcaron.glif dcroat dcroat.glif degree degree.glif dieresis dieresis.glif divide divide.glif dollar dollar.glif dotaccent dotaccent.glif dotbelowcomb dotbelowcomb.glif dotlessi dotlessi.glif e e.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif edieresis edieresis.glif edotaccent edotaccent.glif egrave egrave.glif eight eight.glif eight.medium eight.medium.glif eight.numr eight.numr.glif eight.prop eight.prop.glif eight.small eight.small.glif ellipsis ellipsis.glif emacron emacron.glif emdash emdash.glif endash endash.glif eng eng.glif eogonek eogonek.glif equal equal.glif eth eth.glif exclam.latn exclam.latn.glif exclamdown exclamdown.glif f f.glif f_b f_b.glif f_f f_f.glif f_f_b f_f_b.glif f_f_h f_f_h.glif f_f_i f_f_i.glif f_f_j f_f_j.glif f_f_k f_f_k.glif f_f_l f_f_l.glif f_h f_h.glif f_i f_i.glif f_j f_j.glif f_k f_k.glif f_l f_l.glif figuredash figuredash.glif five five.glif five.medium five.medium.glif five.numr five.numr.glif five.prop five.prop.glif five.small five.small.glif four four.glif four.medium four.medium.glif four.numr four.numr.glif four.prop four.prop.glif four.small four.small.glif fraction fraction.glif g g.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gdotaccent gdotaccent.glif germandbls germandbls.glif grave grave.glif gravecomb gravecomb.glif gravecomb.cap gravecomb.cap.glif greater greater.glif guillemotleft.latn guillemotleft.latn.glif guillemotright.latn guillemotright.latn.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif hbar hbar.glif hcircumflex hcircumflex.glif hungarumlaut hungarumlaut.glif hyphen hyphen.glif i i.glif i.TRK i.T_R_K_.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif igrave igrave.glif ij ij.glif imacron imacron.glif iogonek iogonek.glif itilde itilde.glif j j.glif jcircumflex jcircumflex.glif k k.glif kgreenlandic kgreenlandic.glif l l.glif lacute lacute.glif lcaron lcaron.glif ldot ldot.glif less less.glif logicalnot logicalnot.glif longs longs.glif lslash lslash.glif m m.glif macron macron.glif minus minus.glif minute minute.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif napostrophe napostrophe.glif ncaron ncaron.glif nine nine.glif nine.medium nine.medium.glif nine.numr nine.numr.glif nine.prop nine.prop.glif nine.small nine.small.glif ntilde ntilde.glif numbersign numbersign.glif o o.glif oacute oacute.glif obreve obreve.glif ocircumflex ocircumflex.glif odieresis odieresis.glif oe oe.glif ogonek ogonek.glif ograve ograve.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif one one.glif one.medium one.medium.glif one.numr one.numr.glif one.prop one.prop.glif one.small one.small.glif onedotenleader onedotenleader.glif onehalf onehalf.glif onequarter onequarter.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif oslash oslash.glif otilde otilde.glif p p.glif paragraph paragraph.glif parenleft.latn parenleft.latn.glif parenright.latn parenright.latn.glif percent percent.glif period.latn period.latn.glif periodcentered periodcentered.glif perthousand perthousand.glif plus plus.glif plusminus plusminus.glif q q.glif question question.glif questiondown questiondown.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif rcaron rcaron.glif registered registered.glif ring ring.glif s s.glif sacute sacute.glif scaron scaron.glif scedilla scedilla.glif scircumflex scircumflex.glif second second.glif section section.glif semicolon semicolon.glif seven seven.glif seven.medium seven.medium.glif seven.numr seven.numr.glif seven.prop seven.prop.glif seven.small seven.small.glif six six.glif six.medium six.medium.glif six.numr six.numr.glif six.prop six.prop.glif six.small six.small.glif slash.latn slash.latn.glif space space.glif sterling sterling.glif t t.glif tbar tbar.glif tcaron tcaron.glif thorn thorn.glif three three.glif three.medium three.medium.glif three.numr three.numr.glif three.prop three.prop.glif three.small three.small.glif threequarters threequarters.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.cap tildecomb.cap.glif two two.glif two.medium two.medium.glif two.numr two.numr.glif two.prop two.prop.glif two.small two.small.glif u u.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif ugrave ugrave.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif underscore underscore.glif uni00A0 uni00A_0.glif uni00AD uni00A_D_.glif uni00B2 uni00B_2.glif uni00B3 uni00B_3.glif uni00B9 uni00B_9.glif uni0122 uni0122.glif uni0123 uni0123.glif uni0136 uni0136.glif uni0137 uni0137.glif uni013B uni013B_.glif uni013C uni013C_.glif uni0145 uni0145.glif uni0146 uni0146.glif uni0156 uni0156.glif uni0157 uni0157.glif uni0162 uni0162.glif uni0163 uni0163.glif uni0237 uni0237.glif uni02BB uni02B_B_.glif uni02BC uni02B_C_.glif uni02BE uni02B_E_.glif uni02BF uni02B_F_.glif uni0302 uni0302.glif uni0302.cap uni0302.cap.glif uni0304 uni0304.glif uni0304.cap uni0304.cap.glif uni0305 uni0305.glif uni0306 uni0306.glif uni0306.cap uni0306.cap.glif uni0307 uni0307.glif uni0308 uni0308.glif uni0308.cap uni0308.cap.glif uni0308.narrow uni0308.narrow.glif uni030A uni030A_.glif uni030A.cap uni030A_.cap.glif uni030B.cap uni030B_.cap.glif uni030C uni030C_.glif uni030C.cap uni030C_.cap.glif uni0312 uni0312.glif uni0315 uni0315.glif uni0323.cap uni0323.cap.glif uni0326 uni0326.glif uni0327 uni0327.glif uni0327.cap uni0327.cap.glif uni0328 uni0328.glif uni1E02 uni1E_02.glif uni1E03 uni1E_03.glif uni1E0A uni1E_0A_.glif uni1E0B uni1E_0B_.glif uni1E0C uni1E_0C_.glif uni1E0D uni1E_0D_.glif uni1E0E uni1E_0E_.glif uni1E0F uni1E_0F_.glif uni1E10 uni1E_10.glif uni1E11 uni1E_11.glif uni1E1E uni1E_1E_.glif uni1E1F uni1E_1F_.glif uni1E24 uni1E_24.glif uni1E25 uni1E_25.glif uni1E28 uni1E_28.glif uni1E29 uni1E_29.glif uni1E2A uni1E_2A_.glif uni1E2B uni1E_2B_.glif uni1E40 uni1E_40.glif uni1E41 uni1E_41.glif uni1E56 uni1E_56.glif uni1E57 uni1E_57.glif uni1E60 uni1E_60.glif uni1E61 uni1E_61.glif uni1E62 uni1E_62.glif uni1E63 uni1E_63.glif uni1E6A uni1E_6A_.glif uni1E6B uni1E_6B_.glif uni1E6C uni1E_6C_.glif uni1E6D uni1E_6D_.glif uni1E6E uni1E_6E_.glif uni1E6F uni1E_6F_.glif uni1E92 uni1E_92.glif uni1E93 uni1E_93.glif uni1E96 uni1E_96.glif uni1E97 uni1E_97.glif uni2010 uni2010.glif uni2011 uni2011.glif uni2015 uni2015.glif uni201F uni201F_.glif uni202F uni202F_.glif uni2038 uni2038.glif uni203E uni203E_.glif uni2042 uni2042.glif uni2074 uni2074.glif uni2213 uni2213.glif uogonek uogonek.glif uring uring.glif utilde utilde.glif v v.glif w w.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif x x.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif yen yen.glif ygrave ygrave.glif z z.glif zacute zacute.glif zcaron zcaron.glif zdotaccent zdotaccent.glif zero zero.glif zero.medium zero.medium.glif zero.numr zero.numr.glif zero.prop zero.prop.glif zero.small zero.small.glif amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/copyright.glif000066400000000000000000000050461434272261000245110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/currency.glif000066400000000000000000000051421434272261000243300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/d.glif000066400000000000000000000051161434272261000227220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dagger.glif000066400000000000000000000045161434272261000237330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/daggerdbl.glif000066400000000000000000000101701434272261000244060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dcaron.glif000066400000000000000000000003501434272261000237400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dcroat.glif000066400000000000000000000015021434272261000237460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/degree.glif000066400000000000000000000020661434272261000237330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dieresis.glif000066400000000000000000000003221434272261000243000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/divide.glif000066400000000000000000000015231434272261000237410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dollar.glif000066400000000000000000000061531434272261000237560ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dotaccent.glif000066400000000000000000000003061434272261000244370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dotbelowcomb.glif000066400000000000000000000011471434272261000251570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/dotlessi.glif000066400000000000000000000033141434272261000243230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/e.glif000066400000000000000000000026501434272261000227230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eacute.glif000066400000000000000000000003521434272261000237420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ebreve.glif000066400000000000000000000003471434272261000237500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ecaron.glif000066400000000000000000000003471434272261000237470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ecircumflex.glif000066400000000000000000000003541434272261000250040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/edieresis.glif000066400000000000000000000003531434272261000244510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/edotaccent.glif000066400000000000000000000003541434272261000246070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/egrave.glif000066400000000000000000000003521434272261000237450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eight.glif000066400000000000000000000050731434272261000236010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eight.medium.glif000066400000000000000000000003271434272261000250550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eight.numr.glif000066400000000000000000000002641434272261000245560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eight.prop.glif000066400000000000000000000002561434272261000245560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eight.small.glif000066400000000000000000000003311434272261000247000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ellipsis.glif000066400000000000000000000027651434272261000243320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/emacron.glif000066400000000000000000000003511434272261000241170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/emdash.glif000066400000000000000000000012611434272261000237350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/endash.glif000066400000000000000000000012611434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eng.glif000066400000000000000000000046511434272261000232530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eogonek.glif000066400000000000000000000044231434272261000241260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/equal.glif000066400000000000000000000015261434272261000236070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/eth.glif000066400000000000000000000035071434272261000232610ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/exclam.latn.glif000066400000000000000000000023111434272261000246770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/exclamdown.glif000066400000000000000000000023541434272261000246410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f.glif000066400000000000000000000046041434272261000227250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_b.glif000066400000000000000000000075761434272261000232410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f.glif000066400000000000000000000117121434272261000232300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f_b.glif000066400000000000000000000145741434272261000235420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f_h.glif000066400000000000000000000162571434272261000235500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f_i.glif000066400000000000000000000145461434272261000235500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f_j.glif000066400000000000000000000142441434272261000235440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f_k.glif000066400000000000000000000154021434272261000235420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_f_l.glif000066400000000000000000000141611434272261000235440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_h.glif000066400000000000000000000112611434272261000232310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_i.glif000066400000000000000000000101101434272261000232220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_j.glif000066400000000000000000000072461434272261000232430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_k.glif000066400000000000000000000104041434272261000232320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/f_l.glif000066400000000000000000000071631434272261000232430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/figuredash.glif000066400000000000000000000012651434272261000246210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/five.glif000066400000000000000000000042171434272261000234310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/five.medium.glif000066400000000000000000000003251434272261000247040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/five.numr.glif000066400000000000000000000002621434272261000244050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/five.prop.glif000066400000000000000000000002541434272261000244050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/five.small.glif000066400000000000000000000003271434272261000245360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/four.glif000066400000000000000000000025151434272261000234520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/four.medium.glif000066400000000000000000000003251434272261000247260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/four.numr.glif000066400000000000000000000002621434272261000244270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/four.prop.glif000066400000000000000000000002541434272261000244270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/four.small.glif000066400000000000000000000003271434272261000245600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/fraction.glif000066400000000000000000000013021434272261000242750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/g.glif000066400000000000000000000054231434272261000227260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/gbreve.glif000066400000000000000000000003471434272261000237520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/gcaron.glif000066400000000000000000000003471434272261000237510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/gcircumflex.glif000066400000000000000000000003541434272261000250060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/gdotaccent.glif000066400000000000000000000003541434272261000246110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/germandbls.glif000066400000000000000000000064251434272261000246210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/grave.glif000066400000000000000000000003211434272261000235740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/gravecomb.cap.glif000066400000000000000000000013061434272261000252030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/gravecomb.glif000066400000000000000000000013201434272261000244350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/greater.glif000066400000000000000000000022651434272261000241320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/guillemotleft.latn.glif000066400000000000000000000033271434272261000263120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/guillemotright.latn.glif000066400000000000000000000033231434272261000264710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/guilsinglleft.glif000066400000000000000000000021601434272261000253430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/guilsinglright.glif000066400000000000000000000021521434272261000255270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/h.glif000066400000000000000000000052131434272261000227240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/hbar.glif000066400000000000000000000014701434272261000234120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/hcircumflex.glif000066400000000000000000000003441434272261000250060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/hungarumlaut.glif000066400000000000000000000003721434272261000252120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/hyphen.glif000066400000000000000000000014421434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/i.T_R_K_.glif000066400000000000000000000002271434272261000240210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/i.glif000066400000000000000000000042261434272261000227300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/iacute.glif000066400000000000000000000003751434272261000237530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ibreve.glif000066400000000000000000000003721434272261000237520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/icircumflex.glif000066400000000000000000000003771434272261000250150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/idieresis.glif000066400000000000000000000004051434272261000244530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/igrave.glif000066400000000000000000000003761434272261000237570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ij.glif000066400000000000000000000003211434272261000230720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/imacron.glif000066400000000000000000000003741434272261000241300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/iogonek.glif000066400000000000000000000057721434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/itilde.glif000066400000000000000000000003751434272261000237530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/j.glif000066400000000000000000000035451434272261000227340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/jcircumflex.glif000066400000000000000000000003761434272261000250150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/k.glif000066400000000000000000000043361434272261000227340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/kgreenlandic.glif000066400000000000000000000045421434272261000251270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/l.glif000066400000000000000000000031151434272261000227270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/lacute.glif000066400000000000000000000003541434272261000237530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/lcaron.glif000066400000000000000000000003501434272261000237500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ldot.glif000066400000000000000000000003501434272261000234340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/less.glif000066400000000000000000000022771434272261000234520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/logicalnot.glif000066400000000000000000000014441434272261000246320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/longs.glif000066400000000000000000000035741434272261000236270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/lslash.glif000066400000000000000000000007601434272261000237650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/m.glif000066400000000000000000000072071434272261000227360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/macron.glif000066400000000000000000000003031434272261000237470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/minus.glif000066400000000000000000000014211434272261000236250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/minute.glif000066400000000000000000000014671434272261000240050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/mu.glif000066400000000000000000000047071434272261000231250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/multiply.glif000066400000000000000000000032311434272261000243520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/n.glif000066400000000000000000000053331434272261000227350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/nacute.glif000066400000000000000000000003521434272261000237530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/napostrophe.glif000066400000000000000000000003551434272261000250410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ncaron.glif000066400000000000000000000003471434272261000237600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/nine.glif000066400000000000000000000030341434272261000234250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/nine.medium.glif000066400000000000000000000003251434272261000247040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/nine.numr.glif000066400000000000000000000002621434272261000244050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/nine.prop.glif000066400000000000000000000002541434272261000244050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/nine.small.glif000066400000000000000000000003271434272261000245360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ntilde.glif000066400000000000000000000003521434272261000237530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/numbersign.glif000066400000000000000000000035651434272261000246560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/o.glif000066400000000000000000000020501434272261000227270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/oacute.glif000066400000000000000000000003521434272261000237540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/obreve.glif000066400000000000000000000003471434272261000237620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ocircumflex.glif000066400000000000000000000003541434272261000250160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/odieresis.glif000066400000000000000000000003531434272261000244630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/oe.glif000066400000000000000000000044211434272261000231000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ogonek.glif000066400000000000000000000003031434272261000237520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ograve.glif000066400000000000000000000003531434272261000237600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ohungarumlaut.glif000066400000000000000000000004541434272261000253720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/omacron.glif000066400000000000000000000003511434272261000241310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/one.glif000066400000000000000000000035241434272261000232610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/one.medium.glif000066400000000000000000000003251434272261000245340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/one.numr.glif000066400000000000000000000002601434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/one.prop.glif000066400000000000000000000002531434272261000242340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/one.small.glif000066400000000000000000000003271434272261000243660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/onedotenleader.glif000066400000000000000000000011451434272261000254650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/onehalf.glif000066400000000000000000000073251434272261000241170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/onequarter.glif000066400000000000000000000071021434272261000246610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ordfeminine.glif000066400000000000000000000037231434272261000250000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ordmasculine.glif000066400000000000000000000020741434272261000251640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/oslash.glif000066400000000000000000000007201434272261000237640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/otilde.glif000066400000000000000000000003521434272261000237540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/p.glif000066400000000000000000000053401434272261000227350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/paragraph.glif000066400000000000000000000070251434272261000244450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/parenleft.latn.glif000066400000000000000000000014011434272261000254050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/parenright.latn.glif000066400000000000000000000013671434272261000256030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/percent.glif000066400000000000000000000047451434272261000241460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/period.latn.glif000066400000000000000000000011101434272261000247040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/periodcentered.glif000066400000000000000000000012401434272261000254650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/perthousand.glif000066400000000000000000000066021434272261000250340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/plus.glif000066400000000000000000000027341434272261000234650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/plusminus.glif000066400000000000000000000040311434272261000245310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/q.glif000066400000000000000000000040111434272261000227300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/question.glif000066400000000000000000000040661434272261000243510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/questiondown.glif000066400000000000000000000041321434272261000252330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotedbl.glif000066400000000000000000000025771434272261000243260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotedblbase.glif000066400000000000000000000005051434272261000251460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotedblleft.glif000066400000000000000000000003531434272261000251670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotedblright.glif000066400000000000000000000005101434272261000253450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quoteleft.glif000066400000000000000000000020011434272261000244750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotereversed.glif000066400000000000000000000020011434272261000253620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quoteright.glif000066400000000000000000000003601434272261000246660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotesinglbase.glif000066400000000000000000000003631434272261000255230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/quotesingle.glif000066400000000000000000000014111434272261000250300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/r.glif000066400000000000000000000040131434272261000227330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/racute.glif000066400000000000000000000003521434272261000237570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/radical.glif000066400000000000000000000024101434272261000240700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/rcaron.glif000066400000000000000000000003471434272261000237640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/registered.glif000066400000000000000000000101641434272261000246330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ring.glif000066400000000000000000000003051434272261000234310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/s.glif000066400000000000000000000040411434272261000227350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/sacute.glif000066400000000000000000000003521434272261000237600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/scaron.glif000066400000000000000000000003471434272261000237650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/scedilla.glif000066400000000000000000000003511434272261000242530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/scircumflex.glif000066400000000000000000000003541434272261000250220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/second.glif000066400000000000000000000027441434272261000237560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/section.glif000066400000000000000000000067011434272261000241440ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/semicolon.glif000066400000000000000000000025151434272261000244670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/seven.glif000066400000000000000000000025101434272261000236120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/seven.medium.glif000066400000000000000000000003271434272261000250750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/seven.numr.glif000066400000000000000000000002641434272261000245760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/seven.prop.glif000066400000000000000000000002561434272261000245760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/seven.small.glif000066400000000000000000000003311434272261000247200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/six.glif000066400000000000000000000030351434272261000233000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/six.medium.glif000066400000000000000000000003231434272261000245540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/six.numr.glif000066400000000000000000000002601434272261000242550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/six.prop.glif000066400000000000000000000002521434272261000242550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/six.small.glif000066400000000000000000000003251434272261000244060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/slash.latn.glif000066400000000000000000000012211434272261000245370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/space.glif000066400000000000000000000001771434272261000235740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/sterling.glif000066400000000000000000000051351434272261000243270ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/t.glif000066400000000000000000000035241434272261000227430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/tbar.glif000066400000000000000000000015031434272261000234230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/tcaron.glif000066400000000000000000000003501434272261000237600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/thorn.glif000066400000000000000000000062121434272261000236270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/three.glif000066400000000000000000000041651434272261000236110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/three.medium.glif000066400000000000000000000003271434272261000250640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/three.numr.glif000066400000000000000000000002641434272261000245650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/three.prop.glif000066400000000000000000000002561434272261000245650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/three.small.glif000066400000000000000000000003311434272261000247070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/threequarters.glif000066400000000000000000000100221434272261000253650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/tilde.glif000066400000000000000000000003041434272261000235720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/tildecomb.cap.glif000066400000000000000000000026561434272261000252110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/tildecomb.glif000066400000000000000000000027151434272261000244430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/two.glif000066400000000000000000000033351434272261000233110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/two.medium.glif000066400000000000000000000003231434272261000245620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/two.numr.glif000066400000000000000000000002601434272261000242630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/two.prop.glif000066400000000000000000000002521434272261000242630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/two.small.glif000066400000000000000000000003251434272261000244140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/u.glif000066400000000000000000000054241434272261000227450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uacute.glif000066400000000000000000000003521434272261000237620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ubreve.glif000066400000000000000000000003471434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ucircumflex.glif000066400000000000000000000003541434272261000250240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/udieresis.glif000066400000000000000000000003531434272261000244710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ugrave.glif000066400000000000000000000003531434272261000237660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uhungarumlaut.glif000066400000000000000000000004541434272261000254000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/umacron.glif000066400000000000000000000003511434272261000241370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/underscore.glif000066400000000000000000000014161434272261000246470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni00A_0.glif000066400000000000000000000002011434272261000237400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni00A_D_.glif000066400000000000000000000001511434272261000241270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni00B_2.glif000066400000000000000000000032711434272261000237550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni00B_3.glif000066400000000000000000000041671434272261000237630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni00B_9.glif000066400000000000000000000035621434272261000237670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0122.glif000066400000000000000000000003521434272261000235740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0123.glif000066400000000000000000000003501434272261000235730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0136.glif000066400000000000000000000003521434272261000236010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0137.glif000066400000000000000000000003521434272261000236020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni013B_.glif000066400000000000000000000003521434272261000237540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni013C_.glif000066400000000000000000000003671434272261000237630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0145.glif000066400000000000000000000003521434272261000236010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0146.glif000066400000000000000000000003521434272261000236020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0156.glif000066400000000000000000000003521434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0157.glif000066400000000000000000000003521434272261000236040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0162.glif000066400000000000000000000003371434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0163.glif000066400000000000000000000003501434272261000235770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0237.glif000066400000000000000000000026321434272261000236060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni02B_B_.glif000066400000000000000000000003041434272261000241300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni02B_C_.glif000066400000000000000000000003041434272261000241310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni02B_E_.glif000066400000000000000000000014071434272261000241400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni02B_F_.glif000066400000000000000000000014101434272261000241330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0302.cap.glif000066400000000000000000000017151434272261000243420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0302.glif000066400000000000000000000017401434272261000235760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0304.cap.glif000066400000000000000000000012461434272261000243430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0304.glif000066400000000000000000000012571434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0305.glif000066400000000000000000000014271434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0306.cap.glif000066400000000000000000000023521434272261000243440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0306.glif000066400000000000000000000017551434272261000236100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0307.glif000066400000000000000000000011351434272261000236010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0308.cap.glif000066400000000000000000000020471434272261000243470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0308.glif000066400000000000000000000020721434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0308.narrow.glif000066400000000000000000000020521434272261000251100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni030A_.cap.glif000066400000000000000000000020471434272261000245170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni030A_.glif000066400000000000000000000020721434272261000237530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni030B_.cap.glif000066400000000000000000000024031434272261000245140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni030C_.cap.glif000066400000000000000000000017151434272261000245220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni030C_.glif000066400000000000000000000017401434272261000237560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0312.glif000066400000000000000000000016011434272261000235730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0315.glif000066400000000000000000000017741434272261000236110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0323.cap.glif000066400000000000000000000011261434272261000243410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0326.glif000066400000000000000000000016421434272261000236050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0327.cap.glif000066400000000000000000000027151434272261000243520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0327.glif000066400000000000000000000027611434272261000236110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni0328.glif000066400000000000000000000022201434272261000236000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_02.glif000066400000000000000000000003671434272261000237640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_03.glif000066400000000000000000000003521434272261000237570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_0A_.glif000066400000000000000000000003671434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_0B_.glif000066400000000000000000000003521434272261000241350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_0C_.glif000066400000000000000000000003731434272261000241410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_0D_.glif000066400000000000000000000003571434272261000241440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_0E_.glif000066400000000000000000000003701434272261000241400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_0F_.glif000066400000000000000000000003531434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_10.glif000066400000000000000000000003531434272261000237560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_11.glif000066400000000000000000000003501434272261000237540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_1E_.glif000066400000000000000000000003521434272261000241410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_1F_.glif000066400000000000000000000003521434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_24.glif000066400000000000000000000003561434272261000237660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_25.glif000066400000000000000000000003571434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_28.glif000066400000000000000000000003541434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_29.glif000066400000000000000000000003641434272261000237720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_2A_.glif000066400000000000000000000003531434272261000241370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_2B_.glif000066400000000000000000000003531434272261000241400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_40.glif000066400000000000000000000003521434272261000237600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_41.glif000066400000000000000000000003501434272261000237570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_56.glif000066400000000000000000000003521434272261000237670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_57.glif000066400000000000000000000003501434272261000237660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_60.glif000066400000000000000000000003521434272261000237620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_61.glif000066400000000000000000000003501434272261000237610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_62.glif000066400000000000000000000003551434272261000237670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_63.glif000066400000000000000000000003571434272261000237720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_6A_.glif000066400000000000000000000003521434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_6B_.glif000066400000000000000000000003521434272261000241430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_6C_.glif000066400000000000000000000003561434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_6D_.glif000066400000000000000000000003571434272261000241520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_6E_.glif000066400000000000000000000003531434272261000241470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_6F_.glif000066400000000000000000000003531434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_92.glif000066400000000000000000000003561434272261000237730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_93.glif000066400000000000000000000003571434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_96.glif000066400000000000000000000003531434272261000237740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni1E_97.glif000066400000000000000000000003521434272261000237740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2010.glif000066400000000000000000000013141434272261000235710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2011.glif000066400000000000000000000013141434272261000235720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2015.glif000066400000000000000000000012631434272261000236010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni201F_.glif000066400000000000000000000035511434272261000237630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni202F_.glif000066400000000000000000000002011434272261000237510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2038.glif000066400000000000000000000017531434272261000236120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni203E_.glif000066400000000000000000000012711434272261000237610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2042.glif000066400000000000000000000004751434272261000236050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2074.glif000066400000000000000000000003511434272261000236030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uni2213.glif000066400000000000000000000053411434272261000236020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uogonek.glif000066400000000000000000000070351434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/uring.glif000066400000000000000000000003461434272261000236230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/utilde.glif000066400000000000000000000003521434272261000237620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/v.glif000066400000000000000000000032031434272261000227370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/w.glif000066400000000000000000000046551434272261000227540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/wacute.glif000066400000000000000000000003511434272261000237630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/wcircumflex.glif000066400000000000000000000003541434272261000250260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/wdieresis.glif000066400000000000000000000003531434272261000244730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/wgrave.glif000066400000000000000000000003531434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/x.glif000066400000000000000000000054311434272261000227460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/y.glif000066400000000000000000000033311434272261000227440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/yacute.glif000066400000000000000000000003521434272261000237660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ycircumflex.glif000066400000000000000000000003551434272261000250310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ydieresis.glif000066400000000000000000000003531434272261000244750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/yen.glif000066400000000000000000000102011434272261000232610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/ygrave.glif000066400000000000000000000003531434272261000237720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/z.glif000066400000000000000000000045711434272261000227540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zacute.glif000066400000000000000000000003521434272261000237670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zcaron.glif000066400000000000000000000003471434272261000237740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zdotaccent.glif000066400000000000000000000003541434272261000246340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zero.glif000066400000000000000000000020561434272261000234560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zero.medium.glif000066400000000000000000000003251434272261000247320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zero.numr.glif000066400000000000000000000002621434272261000244330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zero.prop.glif000066400000000000000000000002361434272261000244330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/glyphs/zero.small.glif000066400000000000000000000003271434272261000245640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Italic.ufo/groups.plist000066400000000000000000001446421434272261000227320ustar00rootroot00000000000000 public.kern1.kc0_0 ampersand public.kern1.kc0_1 at public.kern1.kc0_2 exclamdown public.kern1.kc0_3 registered public.kern1.kc0_4 questiondown public.kern1.kc0_5 uni02BC public.kern1.kc1_0 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern1.kc1_1 B uni1E02 public.kern1.kc1_10 L Lacute uni013B Lcaron Ldot Lslash public.kern1.kc1_11 M uni1E40 public.kern1.kc1_12 N Ntilde Nacute uni0145 Ncaron Eng public.kern1.kc1_13 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut public.kern1.kc1_14 P uni1E56 public.kern1.kc1_15 Q public.kern1.kc1_16 R Racute uni0156 Rcaron public.kern1.kc1_17 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern1.kc1_18 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern1.kc1_19 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern1.kc1_2 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron public.kern1.kc1_20 V public.kern1.kc1_21 W Wcircumflex Wgrave Wacute Wdieresis public.kern1.kc1_22 X public.kern1.kc1_23 Y Yacute Ycircumflex Ydieresis Ygrave public.kern1.kc1_24 Z Zacute Zdotaccent Zcaron uni1E92 public.kern1.kc1_25 Thorn public.kern1.kc1_3 D Eth Dcaron Dcroat uni1E0A uni1E0C uni1E0E uni1E10 public.kern1.kc1_4 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE public.kern1.kc1_5 F uni1E1E public.kern1.kc1_6 G Gcircumflex Gbreve Gdotaccent uni0122 public.kern1.kc1_7 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E24 uni1E28 uni1E2A public.kern1.kc1_8 J IJ Jcircumflex public.kern1.kc1_9 K uni0136 public.kern1.kc2_0 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern1.kc2_1 b uni1E03 f_b f_f_b public.kern1.kc2_10 l lacute uni013C lcaron lslash f_l f_f_l public.kern1.kc2_11 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h public.kern1.kc2_12 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut public.kern1.kc2_13 p thorn uni1E57 public.kern1.kc2_14 q public.kern1.kc2_15 r racute uni0157 rcaron public.kern1.kc2_16 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern1.kc2_17 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern1.kc2_18 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern1.kc2_19 v public.kern1.kc2_2 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern1.kc2_20 w wcircumflex wgrave wacute wdieresis public.kern1.kc2_21 x public.kern1.kc2_22 y yacute ydieresis ycircumflex public.kern1.kc2_23 z zacute zdotaccent zcaron uni1E93 public.kern1.kc2_24 germandbls public.kern1.kc2_25 ldot public.kern1.kc2_26 eng public.kern1.kc2_3 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern1.kc2_4 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe public.kern1.kc2_5 f longs uni1E1F f_f public.kern1.kc2_6 g gcircumflex gbreve gdotaccent uni0123 public.kern1.kc2_7 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i public.kern1.kc2_8 j ij jcircumflex uni0237 f_j f_f_j public.kern1.kc2_9 k uni0137 kgreenlandic f_k f_f_k public.kern1.kc3_0 quotedbl quotesingle public.kern1.kc3_1 asterisk public.kern1.kc3_10 guillemotright.latn guilsinglright public.kern1.kc3_2 hyphen endash emdash uni2015 public.kern1.kc3_3 comma period.latn quotesinglbase quotedblbase public.kern1.kc3_4 slash.latn public.kern1.kc3_5 colon semicolon public.kern1.kc3_6 backslash.latn public.kern1.kc3_7 quoteleft quotedblleft public.kern1.kc3_8 quoteright quotedblright public.kern1.kc3_9 guillemotleft.latn guilsinglleft public.kern1.kc4_0 parenleft.latn public.kern1.kc4_1 bracketleft.latn public.kern1.kc4_2 braceleft.latn public.kern2.kc0_1 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc0_10 X public.kern2.kc0_11 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc0_12 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc0_13 y yacute ydieresis ycircumflex ygrave public.kern2.kc0_14 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc0_2 V public.kern2.kc0_3 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc0_4 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc0_5 quotedbl quotesingle public.kern2.kc0_6 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc0_7 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc0_8 M uni1E40 public.kern2.kc0_9 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc1_1 quotedbl quotesingle public.kern2.kc1_10 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc1_11 V public.kern2.kc1_12 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc1_13 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc1_14 backslash.latn public.kern2.kc1_15 bracketright.latn public.kern2.kc1_16 b uni1E03 public.kern2.kc1_17 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc1_18 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc1_19 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc1_2 parenright.latn public.kern2.kc1_20 j jcircumflex uni0237 public.kern2.kc1_21 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc1_22 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc1_23 v w wcircumflex wgrave wacute wdieresis public.kern2.kc1_24 y yacute ydieresis ycircumflex ygrave public.kern2.kc1_25 registered public.kern2.kc1_26 quoteleft quotedblleft public.kern2.kc1_27 quoteright quotedblright public.kern2.kc1_28 guillemotleft.latn guilsinglleft public.kern2.kc1_29 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc1_3 asterisk public.kern2.kc1_30 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc1_31 M uni1E40 public.kern2.kc1_32 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc1_33 X public.kern2.kc1_34 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc1_35 x public.kern2.kc1_36 z zacute zdotaccent zcaron uni1E93 public.kern2.kc1_37 AE public.kern2.kc1_38 Z Zacute Zdotaccent Zcaron uni1E92 public.kern2.kc1_39 p uni1E57 public.kern2.kc1_4 hyphen endash emdash uni2015 public.kern2.kc1_40 ampersand public.kern2.kc1_41 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc1_42 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern2.kc1_43 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc1_44 q public.kern2.kc1_45 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc1_46 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc1_47 ae public.kern2.kc1_48 eth public.kern2.kc1_49 uni02BC public.kern2.kc1_5 slash.latn public.kern2.kc1_50 l lacute uni013C lcaron ldot lslash public.kern2.kc1_51 colon semicolon public.kern2.kc1_52 guillemotright.latn guilsinglright public.kern2.kc1_53 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc1_54 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc1_6 J Jcircumflex public.kern2.kc1_7 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc1_8 Q public.kern2.kc1_9 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc2_1 parenright.latn public.kern2.kc2_10 x public.kern2.kc2_11 quoteleft quotedblleft public.kern2.kc2_12 quoteright quotedblright public.kern2.kc2_13 hyphen endash emdash uni2015 public.kern2.kc2_14 p uni1E57 public.kern2.kc2_15 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc2_16 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern2.kc2_17 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc2_18 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc2_19 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc2_2 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc2_20 q public.kern2.kc2_21 eth public.kern2.kc2_22 thorn public.kern2.kc2_23 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc2_24 y yacute ydieresis ycircumflex public.kern2.kc2_25 registered public.kern2.kc2_26 J Jcircumflex public.kern2.kc2_27 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc2_28 V public.kern2.kc2_29 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc2_3 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc2_30 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc2_31 uni02BC public.kern2.kc2_32 j jcircumflex uni0237 public.kern2.kc2_33 ampersand public.kern2.kc2_34 slash.latn public.kern2.kc2_35 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc2_36 v w wcircumflex wgrave wacute wdieresis public.kern2.kc2_4 backslash.latn public.kern2.kc2_5 bracketright.latn public.kern2.kc2_6 quotedbl quotesingle public.kern2.kc2_7 asterisk public.kern2.kc2_8 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc2_9 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc3_1 ampersand public.kern2.kc3_10 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc3_11 J Jcircumflex public.kern2.kc3_12 M uni1E40 public.kern2.kc3_13 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc3_14 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc3_15 V public.kern2.kc3_16 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc3_17 X public.kern2.kc3_18 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc3_19 Z Zacute Zdotaccent Zcaron uni1E92 public.kern2.kc3_2 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc3_20 f germandbls uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc3_21 j jcircumflex uni0237 public.kern2.kc3_22 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc3_23 z zacute zdotaccent zcaron uni1E93 public.kern2.kc3_24 quotedbl quotesingle public.kern2.kc3_25 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc3_26 Q public.kern2.kc3_27 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc3_28 v w wcircumflex wgrave wacute wdieresis public.kern2.kc3_29 y yacute ydieresis ycircumflex ygrave public.kern2.kc3_3 slash.latn public.kern2.kc3_30 quoteleft quotedblleft public.kern2.kc3_31 quoteright quotedblright public.kern2.kc3_32 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc3_33 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc3_34 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc3_35 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc3_36 p uni1E57 public.kern2.kc3_37 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc3_38 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc3_39 x public.kern2.kc3_4 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc3_40 ae public.kern2.kc3_5 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern2.kc3_6 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc3_7 q public.kern2.kc3_8 AE public.kern2.kc3_9 guillemotleft.latn guilsinglleft public.kern2.kc4_1 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc4_10 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij public.kern2.kc4_11 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc4_12 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc4_13 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc4_14 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc4_15 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc4_16 v w wcircumflex wgrave wacute wdieresis public.kern2.kc4_17 x public.kern2.kc4_18 y yacute ydieresis ycircumflex public.kern2.kc4_19 z zacute zdotaccent zcaron uni1E93 public.kern2.kc4_2 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc4_20 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc4_21 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc4_3 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc4_4 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc4_5 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc4_6 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern2.kc4_7 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc4_8 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc4_9 g gcircumflex gbreve gdotaccent uni0123 amiri-1.000/sources/AmiriLatin-Italic.ufo/kerning.plist000066400000000000000000001567041434272261000230520ustar00rootroot00000000000000 public.kern1.kc0_0 public.kern2.kc0_1 -21 public.kern2.kc0_2 -16 public.kern2.kc0_3 -13 public.kern2.kc0_4 -25 public.kern1.kc0_1 public.kern2.kc0_5 -19 public.kern1.kc0_2 public.kern2.kc0_2 -34 public.kern2.kc0_3 -28 public.kern2.kc0_4 -41 public.kern2.kc0_6 -42 public.kern2.kc0_7 -16 public.kern1.kc0_3 public.kern2.kc0_1 -32 public.kern2.kc0_10 -10 public.kern2.kc0_11 -10 public.kern2.kc0_2 -10 public.kern2.kc0_3 -10 public.kern2.kc0_4 -17 public.kern2.kc0_8 -13 public.kern2.kc0_9 -11 public.kern1.kc0_4 public.kern2.kc0_1 -10 public.kern2.kc0_12 25 public.kern2.kc0_13 9 public.kern2.kc0_2 -40 public.kern2.kc0_3 -34 public.kern2.kc0_4 -48 public.kern2.kc0_6 -49 public.kern2.kc0_7 -18 public.kern1.kc0_5 public.kern2.kc0_14 137 public.kern1.kc1_0 public.kern2.kc1_1 -43 public.kern2.kc1_10 -34 public.kern2.kc1_11 -59 public.kern2.kc1_12 -50 public.kern2.kc1_13 -58 public.kern2.kc1_14 -46 public.kern2.kc1_15 -11 public.kern2.kc1_16 -11 public.kern2.kc1_17 -6 public.kern2.kc1_18 -16 public.kern2.kc1_19 -10 public.kern2.kc1_2 -10 public.kern2.kc1_20 -9 public.kern2.kc1_21 -6 public.kern2.kc1_22 -8 public.kern2.kc1_23 -22 public.kern2.kc1_24 -27 public.kern2.kc1_25 -31 public.kern2.kc1_26 -42 public.kern2.kc1_27 -38 public.kern2.kc1_28 -18 public.kern2.kc1_3 -37 public.kern2.kc1_4 -12 public.kern2.kc1_5 5 public.kern2.kc1_6 -10 public.kern2.kc1_7 -23 public.kern2.kc1_8 -20 public.kern2.kc1_9 -54 public.kern1.kc1_1 public.kern2.kc1_10 -6 public.kern2.kc1_11 -19 public.kern2.kc1_12 -16 public.kern2.kc1_13 -24 public.kern2.kc1_14 -18 public.kern2.kc1_15 -19 public.kern2.kc1_16 -5 public.kern2.kc1_18 -12 public.kern2.kc1_2 -21 public.kern2.kc1_20 -10 public.kern2.kc1_22 -7 public.kern2.kc1_23 -6 public.kern2.kc1_24 -5 public.kern2.kc1_29 -13 public.kern2.kc1_30 -5 public.kern2.kc1_31 -5 public.kern2.kc1_32 -6 public.kern2.kc1_33 -26 public.kern2.kc1_34 -5 public.kern2.kc1_35 -21 public.kern2.kc1_36 -9 public.kern2.kc1_37 -9 public.kern2.kc1_6 -6 public.kern2.kc1_9 -8 public.kern1.kc1_10 public.kern2.kc1_1 -62 public.kern2.kc1_10 -10 public.kern2.kc1_11 -64 public.kern2.kc1_12 -59 public.kern2.kc1_13 -64 public.kern2.kc1_14 -40 public.kern2.kc1_15 -12 public.kern2.kc1_18 -8 public.kern2.kc1_2 -17 public.kern2.kc1_20 -7 public.kern2.kc1_23 -21 public.kern2.kc1_24 -42 public.kern2.kc1_25 -28 public.kern2.kc1_26 -62 public.kern2.kc1_27 -64 public.kern2.kc1_3 -71 public.kern2.kc1_6 -6 public.kern2.kc1_7 -6 public.kern2.kc1_9 -62 public.kern1.kc1_11 public.kern2.kc1_17 -14 public.kern2.kc1_18 -13 public.kern2.kc1_19 -17 public.kern2.kc1_20 -7 public.kern2.kc1_21 -14 public.kern2.kc1_22 -12 public.kern2.kc1_23 -11 public.kern2.kc1_28 -13 public.kern2.kc1_34 -5 public.kern2.kc1_35 -10 public.kern2.kc1_39 -13 public.kern2.kc1_4 -9 public.kern2.kc1_42 -12 public.kern2.kc1_43 -12 public.kern2.kc1_44 -12 public.kern2.kc1_46 -5 public.kern2.kc1_7 -8 public.kern2.kc1_8 -8 public.kern1.kc1_12 public.kern2.kc1_17 -20 public.kern2.kc1_18 -16 public.kern2.kc1_19 -22 public.kern2.kc1_20 -6 public.kern2.kc1_21 -19 public.kern2.kc1_22 -17 public.kern2.kc1_23 -11 public.kern2.kc1_28 -12 public.kern2.kc1_29 -7 public.kern2.kc1_34 -18 public.kern2.kc1_35 -9 public.kern2.kc1_36 -18 public.kern2.kc1_37 -6 public.kern2.kc1_39 -20 public.kern2.kc1_4 -8 public.kern2.kc1_42 -21 public.kern2.kc1_43 -21 public.kern2.kc1_44 -21 public.kern2.kc1_45 -10 public.kern2.kc1_46 -9 public.kern2.kc1_7 -6 public.kern2.kc1_8 -7 public.kern1.kc1_13 public.kern2.kc1_10 -7 public.kern2.kc1_11 -27 public.kern2.kc1_12 -21 public.kern2.kc1_13 -39 public.kern2.kc1_14 -21 public.kern2.kc1_15 -19 public.kern2.kc1_2 -24 public.kern2.kc1_29 -14 public.kern2.kc1_30 -6 public.kern2.kc1_31 -7 public.kern2.kc1_32 -7 public.kern2.kc1_33 -33 public.kern2.kc1_35 -13 public.kern2.kc1_37 -12 public.kern2.kc1_38 -6 public.kern2.kc1_6 -8 public.kern2.kc1_9 -9 public.kern1.kc1_14 public.kern2.kc1_13 -6 public.kern2.kc1_15 -15 public.kern2.kc1_17 -29 public.kern2.kc1_19 -9 public.kern2.kc1_2 -14 public.kern2.kc1_21 -23 public.kern2.kc1_28 -17 public.kern2.kc1_29 -44 public.kern2.kc1_3 10 public.kern2.kc1_30 -5 public.kern2.kc1_31 -7 public.kern2.kc1_32 -5 public.kern2.kc1_33 -22 public.kern2.kc1_34 -7 public.kern2.kc1_35 -6 public.kern2.kc1_36 -5 public.kern2.kc1_37 -53 public.kern2.kc1_39 -11 public.kern2.kc1_4 -37 public.kern2.kc1_40 -24 public.kern2.kc1_41 -64 public.kern2.kc1_42 -39 public.kern2.kc1_43 -40 public.kern2.kc1_44 -40 public.kern2.kc1_5 -22 public.kern1.kc1_15 public.kern2.kc1_10 -6 public.kern2.kc1_11 -22 public.kern2.kc1_12 -17 public.kern2.kc1_13 -31 public.kern2.kc1_19 11 public.kern2.kc1_29 -18 public.kern2.kc1_30 -7 public.kern2.kc1_31 -8 public.kern2.kc1_32 -8 public.kern2.kc1_33 -31 public.kern2.kc1_38 -5 public.kern2.kc1_41 -11 public.kern2.kc1_6 -8 public.kern2.kc1_9 -5 public.kern1.kc1_16 public.kern2.kc1_1 -8 public.kern2.kc1_10 -18 public.kern2.kc1_11 -34 public.kern2.kc1_12 -26 public.kern2.kc1_13 -32 public.kern2.kc1_14 -27 public.kern2.kc1_16 -7 public.kern2.kc1_17 -6 public.kern2.kc1_18 -11 public.kern2.kc1_19 -9 public.kern2.kc1_20 -8 public.kern2.kc1_21 -6 public.kern2.kc1_22 -6 public.kern2.kc1_23 -18 public.kern2.kc1_24 -25 public.kern2.kc1_25 -19 public.kern2.kc1_28 -30 public.kern2.kc1_3 -12 public.kern2.kc1_39 -5 public.kern2.kc1_42 -5 public.kern2.kc1_43 -5 public.kern2.kc1_44 -5 public.kern2.kc1_5 30 public.kern2.kc1_50 -5 public.kern2.kc1_6 -6 public.kern2.kc1_7 -13 public.kern2.kc1_8 -13 public.kern2.kc1_9 -19 public.kern1.kc1_17 public.kern2.kc1_11 -6 public.kern2.kc1_12 -7 public.kern2.kc1_13 -8 public.kern2.kc1_15 -12 public.kern2.kc1_18 -12 public.kern2.kc1_2 -13 public.kern2.kc1_20 -11 public.kern2.kc1_22 -7 public.kern2.kc1_23 -11 public.kern2.kc1_24 -10 public.kern2.kc1_29 -5 public.kern2.kc1_36 -6 public.kern1.kc1_18 public.kern2.kc1_17 -81 public.kern2.kc1_18 -20 public.kern2.kc1_19 -76 public.kern2.kc1_20 -8 public.kern2.kc1_21 -79 public.kern2.kc1_22 -21 public.kern2.kc1_23 -68 public.kern2.kc1_24 -63 public.kern2.kc1_28 -55 public.kern2.kc1_29 -48 public.kern2.kc1_34 -80 public.kern2.kc1_35 -80 public.kern2.kc1_36 -84 public.kern2.kc1_37 -58 public.kern2.kc1_39 -73 public.kern2.kc1_4 -57 public.kern2.kc1_40 -35 public.kern2.kc1_41 -40 public.kern2.kc1_42 -81 public.kern2.kc1_43 -76 public.kern2.kc1_44 -81 public.kern2.kc1_45 -70 public.kern2.kc1_46 -69 public.kern2.kc1_5 -26 public.kern2.kc1_51 -27 public.kern2.kc1_52 -33 public.kern1.kc1_19 public.kern2.kc1_16 8 public.kern2.kc1_17 -21 public.kern2.kc1_18 -11 public.kern2.kc1_19 -20 public.kern2.kc1_21 -21 public.kern2.kc1_22 -13 public.kern2.kc1_23 -5 public.kern2.kc1_29 -25 public.kern2.kc1_34 -21 public.kern2.kc1_35 -10 public.kern2.kc1_36 -21 public.kern2.kc1_37 -29 public.kern2.kc1_39 -23 public.kern2.kc1_41 -18 public.kern2.kc1_42 -22 public.kern2.kc1_43 -22 public.kern2.kc1_44 -22 public.kern2.kc1_45 -5 public.kern2.kc1_5 -16 public.kern2.kc1_53 7 public.kern1.kc1_2 public.kern2.kc1_18 -5 public.kern2.kc1_19 -6 public.kern2.kc1_20 -5 public.kern2.kc1_23 -18 public.kern2.kc1_24 -29 public.kern2.kc1_35 -18 public.kern2.kc1_7 -5 public.kern1.kc1_20 public.kern2.kc1_1 5 public.kern2.kc1_15 -11 public.kern2.kc1_16 33 public.kern2.kc1_17 -65 public.kern2.kc1_18 -21 public.kern2.kc1_19 -68 public.kern2.kc1_20 -6 public.kern2.kc1_21 -63 public.kern2.kc1_22 -41 public.kern2.kc1_23 -43 public.kern2.kc1_24 -35 public.kern2.kc1_25 -12 public.kern2.kc1_28 -43 public.kern2.kc1_29 -59 public.kern2.kc1_34 -70 public.kern2.kc1_35 -53 public.kern2.kc1_36 -65 public.kern2.kc1_37 -74 public.kern2.kc1_39 -63 public.kern2.kc1_4 -44 public.kern2.kc1_40 -45 public.kern2.kc1_41 -64 public.kern2.kc1_42 -67 public.kern2.kc1_43 -67 public.kern2.kc1_44 -67 public.kern2.kc1_45 -44 public.kern2.kc1_46 -41 public.kern2.kc1_5 -40 public.kern2.kc1_50 28 public.kern2.kc1_51 -30 public.kern2.kc1_52 -31 public.kern2.kc1_53 32 public.kern2.kc1_54 -8 public.kern2.kc1_7 -16 public.kern2.kc1_8 -19 public.kern1.kc1_21 public.kern2.kc1_15 -12 public.kern2.kc1_16 28 public.kern2.kc1_17 -51 public.kern2.kc1_18 -20 public.kern2.kc1_19 -53 public.kern2.kc1_20 -7 public.kern2.kc1_21 -49 public.kern2.kc1_22 -33 public.kern2.kc1_23 -32 public.kern2.kc1_24 -22 public.kern2.kc1_25 -12 public.kern2.kc1_28 -35 public.kern2.kc1_29 -50 public.kern2.kc1_34 -52 public.kern2.kc1_35 -38 public.kern2.kc1_36 -48 public.kern2.kc1_37 -60 public.kern2.kc1_39 -49 public.kern2.kc1_4 -34 public.kern2.kc1_40 -36 public.kern2.kc1_41 -49 public.kern2.kc1_42 -53 public.kern2.kc1_43 -53 public.kern2.kc1_44 -53 public.kern2.kc1_45 -36 public.kern2.kc1_46 -34 public.kern2.kc1_5 -34 public.kern2.kc1_50 22 public.kern2.kc1_51 -25 public.kern2.kc1_52 -26 public.kern2.kc1_53 26 public.kern2.kc1_54 -8 public.kern2.kc1_7 -15 public.kern2.kc1_8 -17 public.kern1.kc1_22 public.kern2.kc1_16 11 public.kern2.kc1_17 -11 public.kern2.kc1_18 -16 public.kern2.kc1_19 -22 public.kern2.kc1_21 -13 public.kern2.kc1_22 -6 public.kern2.kc1_23 -40 public.kern2.kc1_24 -35 public.kern2.kc1_28 -24 public.kern2.kc1_4 -21 public.kern2.kc1_46 -21 public.kern2.kc1_50 5 public.kern2.kc1_53 8 public.kern2.kc1_7 -27 public.kern2.kc1_8 -26 public.kern1.kc1_23 public.kern2.kc1_15 -10 public.kern2.kc1_16 28 public.kern2.kc1_17 -74 public.kern2.kc1_18 -33 public.kern2.kc1_19 -71 public.kern2.kc1_20 -7 public.kern2.kc1_21 -73 public.kern2.kc1_22 -55 public.kern2.kc1_23 -62 public.kern2.kc1_24 -58 public.kern2.kc1_25 -11 public.kern2.kc1_28 -53 public.kern2.kc1_29 -51 public.kern2.kc1_34 -74 public.kern2.kc1_35 -68 public.kern2.kc1_36 -76 public.kern2.kc1_37 -53 public.kern2.kc1_39 -66 public.kern2.kc1_4 -53 public.kern2.kc1_40 -42 public.kern2.kc1_41 -35 public.kern2.kc1_42 -73 public.kern2.kc1_43 -70 public.kern2.kc1_44 -74 public.kern2.kc1_45 -63 public.kern2.kc1_46 -63 public.kern2.kc1_5 -28 public.kern2.kc1_50 22 public.kern2.kc1_51 -29 public.kern2.kc1_52 -35 public.kern2.kc1_53 26 public.kern2.kc1_54 -6 public.kern2.kc1_7 -19 public.kern2.kc1_8 -23 public.kern1.kc1_24 public.kern2.kc1_18 -19 public.kern2.kc1_19 -11 public.kern2.kc1_20 -11 public.kern2.kc1_22 -11 public.kern2.kc1_23 -35 public.kern2.kc1_24 -42 public.kern2.kc1_25 -12 public.kern2.kc1_3 -9 public.kern2.kc1_36 -8 public.kern2.kc1_39 -7 public.kern2.kc1_45 -10 public.kern2.kc1_46 -9 public.kern2.kc1_7 -5 public.kern1.kc1_25 public.kern2.kc1_1 -9 public.kern2.kc1_10 -5 public.kern2.kc1_11 -29 public.kern2.kc1_12 -21 public.kern2.kc1_13 -50 public.kern2.kc1_26 -17 public.kern2.kc1_27 -9 public.kern2.kc1_29 -17 public.kern2.kc1_30 -7 public.kern2.kc1_31 -8 public.kern2.kc1_32 -8 public.kern2.kc1_33 -62 public.kern2.kc1_38 -9 public.kern2.kc1_41 -37 public.kern2.kc1_6 -8 public.kern2.kc1_9 -15 public.kern1.kc1_3 public.kern2.kc1_10 -7 public.kern2.kc1_11 -23 public.kern2.kc1_12 -18 public.kern2.kc1_13 -35 public.kern2.kc1_14 -19 public.kern2.kc1_15 -20 public.kern2.kc1_2 -24 public.kern2.kc1_29 -18 public.kern2.kc1_30 -7 public.kern2.kc1_31 -8 public.kern2.kc1_32 -9 public.kern2.kc1_33 -31 public.kern2.kc1_35 -14 public.kern2.kc1_37 -20 public.kern2.kc1_38 -5 public.kern2.kc1_6 -8 public.kern2.kc1_9 -6 public.kern1.kc1_4 public.kern2.kc1_18 -10 public.kern2.kc1_19 -8 public.kern2.kc1_20 -8 public.kern2.kc1_22 -6 public.kern2.kc1_23 -12 public.kern2.kc1_24 -12 public.kern2.kc1_36 -5 public.kern2.kc1_39 -5 public.kern1.kc1_5 public.kern2.kc1_17 -21 public.kern2.kc1_18 -6 public.kern2.kc1_19 -16 public.kern2.kc1_21 -20 public.kern2.kc1_22 -6 public.kern2.kc1_29 -33 public.kern2.kc1_34 -20 public.kern2.kc1_35 -9 public.kern2.kc1_36 -17 public.kern2.kc1_37 -53 public.kern2.kc1_39 -21 public.kern2.kc1_40 -11 public.kern2.kc1_41 -39 public.kern2.kc1_42 -24 public.kern2.kc1_43 -24 public.kern2.kc1_44 -24 public.kern2.kc1_5 -20 public.kern1.kc1_6 public.kern2.kc1_11 -19 public.kern2.kc1_12 -15 public.kern2.kc1_13 -25 public.kern2.kc1_14 -17 public.kern2.kc1_15 -15 public.kern2.kc1_18 -8 public.kern2.kc1_2 -18 public.kern2.kc1_29 -8 public.kern2.kc1_9 -15 public.kern1.kc1_7 public.kern2.kc1_17 -16 public.kern2.kc1_18 -13 public.kern2.kc1_19 -19 public.kern2.kc1_20 -6 public.kern2.kc1_21 -15 public.kern2.kc1_22 -12 public.kern2.kc1_23 -10 public.kern2.kc1_28 -12 public.kern2.kc1_34 -7 public.kern2.kc1_35 -20 public.kern2.kc1_36 -5 public.kern2.kc1_39 -15 public.kern2.kc1_4 -9 public.kern2.kc1_42 -14 public.kern2.kc1_43 -14 public.kern2.kc1_44 -14 public.kern2.kc1_45 -5 public.kern2.kc1_46 -5 public.kern2.kc1_47 -8 public.kern2.kc1_48 -17 public.kern2.kc1_49 -121 public.kern2.kc1_7 -7 public.kern2.kc1_8 -7 public.kern1.kc1_8 public.kern2.kc1_17 -19 public.kern2.kc1_18 -13 public.kern2.kc1_19 -20 public.kern2.kc1_20 -7 public.kern2.kc1_21 -18 public.kern2.kc1_22 -14 public.kern2.kc1_23 -7 public.kern2.kc1_29 -6 public.kern2.kc1_34 -15 public.kern2.kc1_35 -6 public.kern2.kc1_36 -16 public.kern2.kc1_39 -19 public.kern2.kc1_42 -19 public.kern2.kc1_43 -19 public.kern2.kc1_44 -19 public.kern2.kc1_45 -6 public.kern2.kc1_46 -5 public.kern2.kc1_7 -5 public.kern2.kc1_8 -5 public.kern1.kc1_9 public.kern2.kc1_17 -16 public.kern2.kc1_18 -21 public.kern2.kc1_19 -26 public.kern2.kc1_21 -17 public.kern2.kc1_23 -53 public.kern2.kc1_24 -43 public.kern2.kc1_28 -34 public.kern2.kc1_39 -6 public.kern2.kc1_4 -33 public.kern2.kc1_42 -7 public.kern2.kc1_43 -8 public.kern2.kc1_44 -8 public.kern2.kc1_46 -25 public.kern2.kc1_7 -46 public.kern2.kc1_8 -46 public.kern1.kc2_0 public.kern2.kc2_1 -16 public.kern2.kc2_2 -6 public.kern2.kc2_3 -20 public.kern2.kc2_4 -33 public.kern2.kc2_5 -12 public.kern1.kc2_1 public.kern2.kc2_1 -30 public.kern2.kc2_10 -7 public.kern2.kc2_11 -21 public.kern2.kc2_12 -19 public.kern2.kc2_3 -19 public.kern2.kc2_4 -33 public.kern2.kc2_5 -22 public.kern2.kc2_6 -13 public.kern2.kc2_7 -8 public.kern2.kc2_8 -14 public.kern2.kc2_9 -16 public.kern1.kc2_10 public.kern2.kc2_2 -5 public.kern2.kc2_3 -13 public.kern1.kc2_11 public.kern2.kc2_1 -16 public.kern2.kc2_2 -7 public.kern2.kc2_26 -9 public.kern2.kc2_27 -57 public.kern2.kc2_28 -52 public.kern2.kc2_29 -42 public.kern2.kc2_3 -20 public.kern2.kc2_30 -63 public.kern2.kc2_31 -65 public.kern2.kc2_4 -35 public.kern2.kc2_5 -12 public.kern1.kc2_12 public.kern2.kc2_1 -32 public.kern2.kc2_10 -10 public.kern2.kc2_11 -14 public.kern2.kc2_12 -14 public.kern2.kc2_23 -4 public.kern2.kc2_3 -21 public.kern2.kc2_4 -37 public.kern2.kc2_5 -23 public.kern2.kc2_8 -12 public.kern2.kc2_9 -15 public.kern1.kc2_13 public.kern2.kc2_1 -32 public.kern2.kc2_10 -8 public.kern2.kc2_11 -11 public.kern2.kc2_12 -10 public.kern2.kc2_3 -20 public.kern2.kc2_4 -34 public.kern2.kc2_5 -23 public.kern2.kc2_8 -14 public.kern2.kc2_9 -16 public.kern1.kc2_14 public.kern2.kc2_2 -7 public.kern2.kc2_3 -21 public.kern2.kc2_32 5 public.kern2.kc2_9 -10 public.kern1.kc2_15 public.kern2.kc2_1 -28 public.kern2.kc2_13 -32 public.kern2.kc2_15 -33 public.kern2.kc2_16 -11 public.kern2.kc2_17 -7 public.kern2.kc2_18 -12 public.kern2.kc2_19 -4 public.kern2.kc2_20 -12 public.kern2.kc2_3 -12 public.kern2.kc2_33 -16 public.kern2.kc2_34 -20 public.kern2.kc2_4 -20 public.kern2.kc2_5 -21 public.kern2.kc2_8 -36 public.kern2.kc2_9 -16 public.kern1.kc2_16 public.kern2.kc2_1 -26 public.kern2.kc2_11 -8 public.kern2.kc2_13 -11 public.kern2.kc2_3 -21 public.kern2.kc2_4 -30 public.kern2.kc2_5 -21 public.kern2.kc2_9 -6 public.kern1.kc2_17 public.kern2.kc2_1 -21 public.kern2.kc2_3 -13 public.kern2.kc2_4 -22 public.kern2.kc2_5 -19 public.kern2.kc2_8 -9 public.kern2.kc2_9 -5 public.kern1.kc2_18 public.kern2.kc2_1 -16 public.kern2.kc2_2 -6 public.kern2.kc2_3 -20 public.kern2.kc2_4 -32 public.kern2.kc2_5 -12 public.kern1.kc2_19 public.kern2.kc2_1 -33 public.kern2.kc2_15 -14 public.kern2.kc2_3 -19 public.kern2.kc2_34 -13 public.kern2.kc2_4 -29 public.kern2.kc2_5 -24 public.kern2.kc2_8 -27 public.kern2.kc2_9 -21 public.kern1.kc2_2 public.kern2.kc2_1 -21 public.kern2.kc2_10 -11 public.kern2.kc2_13 -14 public.kern2.kc2_14 -5 public.kern2.kc2_2 -8 public.kern2.kc2_3 -13 public.kern2.kc2_4 -21 public.kern2.kc2_5 -16 public.kern2.kc2_9 -16 public.kern1.kc2_20 public.kern2.kc2_1 -33 public.kern2.kc2_15 -8 public.kern2.kc2_3 -18 public.kern2.kc2_34 -10 public.kern2.kc2_4 -29 public.kern2.kc2_5 -23 public.kern2.kc2_8 -21 public.kern2.kc2_9 -19 public.kern1.kc2_21 public.kern2.kc2_1 -17 public.kern2.kc2_10 -18 public.kern2.kc2_13 -12 public.kern2.kc2_16 -9 public.kern2.kc2_17 -11 public.kern2.kc2_18 -9 public.kern2.kc2_19 -10 public.kern2.kc2_2 -20 public.kern2.kc2_20 -9 public.kern2.kc2_3 -16 public.kern2.kc2_35 -13 public.kern2.kc2_4 -22 public.kern2.kc2_5 -12 public.kern2.kc2_9 -17 public.kern1.kc2_22 public.kern2.kc2_1 -30 public.kern2.kc2_3 -23 public.kern2.kc2_4 -32 public.kern2.kc2_5 -21 public.kern2.kc2_8 -15 public.kern2.kc2_9 -18 public.kern1.kc2_23 public.kern2.kc2_1 -25 public.kern2.kc2_13 -17 public.kern2.kc2_3 -20 public.kern2.kc2_4 -25 public.kern2.kc2_5 -21 public.kern2.kc2_8 -9 public.kern2.kc2_9 -7 public.kern1.kc2_24 public.kern2.kc2_23 -10 public.kern2.kc2_36 -21 public.kern1.kc2_25 public.kern2.kc2_11 -19 public.kern2.kc2_12 -19 public.kern2.kc2_15 -18 public.kern2.kc2_6 -17 public.kern1.kc2_26 public.kern2.kc2_11 -9 public.kern2.kc2_12 -9 public.kern1.kc2_3 public.kern2.kc2_2 -5 public.kern2.kc2_3 -14 public.kern1.kc2_4 public.kern2.kc2_1 -28 public.kern2.kc2_13 -8 public.kern2.kc2_3 -20 public.kern2.kc2_4 -29 public.kern2.kc2_5 -21 public.kern2.kc2_8 -10 public.kern2.kc2_9 -9 public.kern1.kc2_5 public.kern2.kc2_13 -21 public.kern2.kc2_15 -8 public.kern2.kc2_16 -10 public.kern2.kc2_17 -8 public.kern2.kc2_18 -10 public.kern2.kc2_19 -6 public.kern2.kc2_20 -10 public.kern2.kc2_21 -5 public.kern2.kc2_22 -4 public.kern2.kc2_3 19 public.kern2.kc2_30 78 public.kern2.kc2_6 17 public.kern2.kc2_8 -16 public.kern2.kc2_9 5 public.kern1.kc2_6 public.kern2.kc2_2 -5 public.kern2.kc2_23 38 public.kern2.kc2_24 27 public.kern2.kc2_3 -11 public.kern2.kc2_4 -20 public.kern2.kc2_5 18 public.kern2.kc2_8 -8 public.kern2.kc2_9 -9 public.kern1.kc2_7 public.kern2.kc2_1 -13 public.kern2.kc2_2 -8 public.kern2.kc2_3 -21 public.kern2.kc2_4 -19 public.kern2.kc2_5 -11 public.kern1.kc2_8 public.kern2.kc2_1 -13 public.kern2.kc2_2 -8 public.kern2.kc2_3 -20 public.kern2.kc2_4 -14 public.kern2.kc2_9 -9 public.kern1.kc2_9 public.kern2.kc2_1 -21 public.kern2.kc2_10 -4 public.kern2.kc2_11 -20 public.kern2.kc2_12 -19 public.kern2.kc2_2 -9 public.kern2.kc2_25 -14 public.kern2.kc2_3 -23 public.kern2.kc2_4 -40 public.kern2.kc2_5 -18 public.kern2.kc2_6 -15 public.kern2.kc2_7 -12 public.kern1.kc3_0 public.kern2.kc3_1 -23 public.kern2.kc3_2 -89 public.kern2.kc3_3 -40 public.kern2.kc3_4 -45 public.kern2.kc3_5 -10 public.kern2.kc3_6 -19 public.kern2.kc3_7 -10 public.kern2.kc3_8 -58 public.kern2.kc3_9 -10 public.kern1.kc3_1 public.kern2.kc3_4 -39 public.kern2.kc3_5 -8 public.kern2.kc3_6 -12 public.kern1.kc3_10 public.kern2.kc3_10 -12 public.kern2.kc3_11 -12 public.kern2.kc3_12 -13 public.kern2.kc3_13 -15 public.kern2.kc3_14 -56 public.kern2.kc3_15 -40 public.kern2.kc3_16 -33 public.kern2.kc3_17 -21 public.kern2.kc3_18 -58 public.kern2.kc3_19 -24 public.kern2.kc3_24 -26 public.kern2.kc3_31 -42 public.kern2.kc3_4 -19 public.kern2.kc3_8 -21 public.kern1.kc3_2 public.kern2.kc3_10 -9 public.kern2.kc3_11 -8 public.kern2.kc3_12 -10 public.kern2.kc3_13 -12 public.kern2.kc3_14 -57 public.kern2.kc3_15 -37 public.kern2.kc3_16 -29 public.kern2.kc3_17 -22 public.kern2.kc3_18 -55 public.kern2.kc3_19 -24 public.kern2.kc3_20 -15 public.kern2.kc3_21 -11 public.kern2.kc3_22 -8 public.kern2.kc3_23 -8 public.kern2.kc3_4 -18 public.kern2.kc3_8 -21 public.kern1.kc3_3 public.kern2.kc3_14 -36 public.kern2.kc3_15 -58 public.kern2.kc3_16 -48 public.kern2.kc3_18 -35 public.kern2.kc3_24 -89 public.kern2.kc3_25 -22 public.kern2.kc3_26 -18 public.kern2.kc3_27 -23 public.kern2.kc3_28 -15 public.kern2.kc3_29 -23 public.kern2.kc3_30 -90 public.kern2.kc3_31 -95 public.kern1.kc3_4 public.kern2.kc3_20 -19 public.kern2.kc3_22 -21 public.kern2.kc3_23 -31 public.kern2.kc3_25 -16 public.kern2.kc3_28 -18 public.kern2.kc3_32 -41 public.kern2.kc3_33 -34 public.kern2.kc3_34 -19 public.kern2.kc3_35 -40 public.kern2.kc3_36 -34 public.kern2.kc3_37 -33 public.kern2.kc3_38 -17 public.kern2.kc3_39 -22 public.kern2.kc3_4 -48 public.kern2.kc3_5 -44 public.kern2.kc3_6 -38 public.kern1.kc3_5 public.kern2.kc3_14 -28 public.kern2.kc3_15 -27 public.kern2.kc3_16 -22 public.kern2.kc3_18 -34 public.kern2.kc3_27 -8 public.kern1.kc3_6 public.kern2.kc3_14 -24 public.kern2.kc3_15 -36 public.kern2.kc3_16 -32 public.kern2.kc3_17 18 public.kern2.kc3_18 -28 public.kern2.kc3_24 -39 public.kern2.kc3_25 -13 public.kern2.kc3_27 -18 public.kern2.kc3_4 13 public.kern1.kc3_7 public.kern2.kc3_2 -90 public.kern2.kc3_32 -17 public.kern2.kc3_33 -8 public.kern2.kc3_35 -14 public.kern2.kc3_4 -45 public.kern2.kc3_40 -9 public.kern2.kc3_5 -20 public.kern2.kc3_6 -21 public.kern2.kc3_7 -20 public.kern2.kc3_8 -59 public.kern1.kc3_8 public.kern2.kc3_15 10 public.kern2.kc3_18 16 public.kern2.kc3_2 -95 public.kern2.kc3_23 -10 public.kern2.kc3_32 -23 public.kern2.kc3_33 -14 public.kern2.kc3_35 -21 public.kern2.kc3_36 -8 public.kern2.kc3_37 -11 public.kern2.kc3_4 -50 public.kern2.kc3_40 -16 public.kern2.kc3_5 -26 public.kern2.kc3_6 -21 public.kern2.kc3_7 -26 public.kern2.kc3_8 -62 public.kern2.kc3_9 -39 public.kern1.kc3_9 public.kern2.kc3_14 -41 public.kern2.kc3_15 -26 public.kern2.kc3_16 -21 public.kern2.kc3_18 -38 public.kern1.kc4_0 public.kern2.kc4_1 -24 public.kern2.kc4_10 -10 public.kern2.kc4_11 -17 public.kern2.kc4_12 -24 public.kern2.kc4_13 -18 public.kern2.kc4_14 -21 public.kern2.kc4_15 -18 public.kern2.kc4_16 -21 public.kern2.kc4_17 -10 public.kern2.kc4_18 -11 public.kern2.kc4_19 -15 public.kern2.kc4_2 -15 public.kern2.kc4_3 -11 public.kern2.kc4_4 -15 public.kern2.kc4_5 -10 public.kern2.kc4_6 -22 public.kern2.kc4_7 -24 public.kern2.kc4_8 -21 public.kern2.kc4_9 15 public.kern1.kc4_1 public.kern2.kc4_1 -20 public.kern2.kc4_11 -15 public.kern2.kc4_12 -24 public.kern2.kc4_13 -22 public.kern2.kc4_14 -20 public.kern2.kc4_15 -13 public.kern2.kc4_16 -15 public.kern2.kc4_17 -14 public.kern2.kc4_19 -22 public.kern2.kc4_2 -15 public.kern2.kc4_20 -20 public.kern2.kc4_21 47 public.kern2.kc4_4 -14 public.kern2.kc4_6 -25 public.kern2.kc4_7 -25 public.kern2.kc4_8 -22 public.kern1.kc4_2 public.kern2.kc4_1 -22 amiri-1.000/sources/AmiriLatin-Italic.ufo/layercontents.plist000066400000000000000000000004231434272261000242710ustar00rootroot00000000000000 public.default glyphs amiri-1.000/sources/AmiriLatin-Italic.ufo/lib.plist000066400000000000000000001112041434272261000221450ustar00rootroot00000000000000 public.glyphOrder space quotedbl numbersign dollar percent ampersand quotesingle asterisk plus comma hyphen zero one two three four five six seven eight nine colon semicolon less equal greater question at A B C D E F G H I J K L M N O P Q R S T U V W X Y Z asciicircum underscore grave a b c d e f g h i j k l m n o p q r s t u v w x y z asciitilde uni00A0 exclamdown cent sterling currency yen brokenbar section dieresis copyright ordfeminine logicalnot uni00AD registered macron degree plusminus uni00B2 uni00B3 acute mu paragraph periodcentered cedilla uni00B9 ordmasculine onequarter onehalf threequarters questiondown Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis multiply Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn germandbls agrave aacute acircumflex atilde adieresis aring ae ccedilla egrave eacute ecircumflex edieresis igrave iacute icircumflex idieresis eth ntilde ograve oacute ocircumflex otilde odieresis divide oslash ugrave uacute ucircumflex udieresis yacute thorn ydieresis Amacron amacron Abreve abreve Aogonek aogonek Cacute cacute Ccircumflex ccircumflex Cdotaccent cdotaccent Ccaron ccaron Dcaron dcaron Dcroat dcroat Emacron emacron Ebreve ebreve Edotaccent edotaccent Eogonek eogonek Ecaron ecaron Gcircumflex gcircumflex Gbreve gbreve Gdotaccent gdotaccent uni0122 uni0123 Hcircumflex hcircumflex Hbar hbar Itilde itilde Imacron imacron Ibreve ibreve Iogonek iogonek Idotaccent dotlessi IJ ij Jcircumflex jcircumflex uni0136 uni0137 kgreenlandic Lacute lacute uni013B uni013C Lcaron lcaron Ldot ldot Lslash lslash Nacute nacute uni0145 uni0146 Ncaron ncaron napostrophe Eng eng Omacron omacron Obreve obreve Ohungarumlaut ohungarumlaut OE oe Racute racute uni0156 uni0157 Rcaron rcaron Sacute sacute Scircumflex scircumflex Scedilla scedilla Scaron scaron uni0162 uni0163 Tcaron tcaron Tbar tbar Utilde utilde Umacron umacron Ubreve ubreve Uring uring Uhungarumlaut uhungarumlaut Uogonek uogonek Wcircumflex wcircumflex Ycircumflex ycircumflex Ydieresis Zacute zacute Zdotaccent zdotaccent Zcaron zcaron longs Gcaron gcaron uni0237 uni02BB uni02BC uni02BE uni02BF circumflex caron breve dotaccent ring ogonek tilde hungarumlaut gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030C uni0312 uni0315 dotbelowcomb uni0326 uni0327 uni0328 uni1E02 uni1E03 uni1E0A uni1E0B uni1E0C uni1E0D uni1E0E uni1E0F uni1E10 uni1E11 uni1E1E uni1E1F uni1E24 uni1E25 uni1E28 uni1E29 uni1E2A uni1E2B uni1E40 uni1E41 uni1E56 uni1E57 uni1E60 uni1E61 uni1E62 uni1E63 uni1E6A uni1E6B uni1E6C uni1E6D uni1E6E uni1E6F Wgrave wgrave Wacute wacute Wdieresis wdieresis uni1E92 uni1E93 uni1E96 uni1E97 Ygrave ygrave uni2010 uni2011 figuredash endash emdash uni2015 quoteleft quoteright quotesinglbase quotereversed quotedblleft quotedblright quotedblbase uni201F dagger daggerdbl bullet onedotenleader ellipsis uni202F perthousand minute second uni2038 guilsinglleft guilsinglright uni203E uni2042 fraction uni2074 Euro minus uni2213 radical exclam.latn parenleft.latn parenright.latn period.latn slash.latn bracketleft.latn backslash.latn bracketright.latn braceleft.latn bar.latn braceright.latn guillemotleft.latn guillemotright.latn f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0323.cap uni030B.cap uni0308.cap uni0308.narrow uni030C.cap i.TRK zero.prop one.prop two.prop three.prop four.prop five.prop six.prop seven.prop eight.prop nine.prop zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr public.openTypeCategories A base AE base Aacute base Abreve base Acircumflex base Adieresis base Agrave base Amacron base Aogonek base Aring base Atilde base B base C base Cacute base Ccaron base Ccedilla base Ccircumflex base Cdotaccent base D base Dcaron base Dcroat base E base Eacute base Ebreve base Ecaron base Ecircumflex base Edieresis base Edotaccent base Egrave base Emacron base Eng base Eogonek base Eth base Euro base F base G base Gbreve base Gcaron base Gcircumflex base Gdotaccent base H base Hbar base Hcircumflex base I base IJ base Iacute base Ibreve base Icircumflex base Idieresis base Idotaccent base Igrave base Imacron base Iogonek base Itilde base J base Jcircumflex base K base L base Lacute base Lcaron base Ldot base Lslash base M base N base Nacute base Ncaron base Ntilde base O base OE base Oacute base Obreve base Ocircumflex base Odieresis base Ograve base Ohungarumlaut base Omacron base Oslash base Otilde base P base Q base R base Racute base Rcaron base S base Sacute base Scaron base Scedilla base Scircumflex base T base Tbar base Tcaron base Thorn base U base Uacute base Ubreve base Ucircumflex base Udieresis base Ugrave base Uhungarumlaut base Umacron base Uogonek base Uring base Utilde base V base W base Wacute base Wcircumflex base Wdieresis base Wgrave base X base Y base Yacute base Ycircumflex base Ydieresis base Ygrave base Z base Zacute base Zcaron base Zdotaccent base a base aacute base abreve base acircumflex base acute base acutecomb mark acutecomb.cap mark adieresis base ae base agrave base amacron base ampersand base aogonek base aring base asciicircum base asciitilde base asterisk base at base atilde base b base backslash.latn base bar.latn base braceleft.latn base braceright.latn base bracketleft.latn base bracketright.latn base breve base brokenbar base bullet base c base cacute base caron base ccaron base ccedilla base ccircumflex base cdotaccent base cedilla base cent base circumflex base colon base comma base copyright base currency base d base dagger base daggerdbl base dcaron base dcroat base degree base dieresis base divide base dollar base dotaccent base dotbelowcomb mark dotlessi base e base eacute base ebreve base ecaron base ecircumflex base edieresis base edotaccent base egrave base eight base eight.medium base eight.numr base eight.prop base eight.small base ellipsis base emacron base emdash base endash base eng base eogonek base equal base eth base exclam.latn base exclamdown base f base f_b base f_f base f_f_b base f_f_h base f_f_i base f_f_j base f_f_k base f_f_l base f_h base f_i base f_j base f_k base f_l base figuredash base five base five.medium base five.numr base five.prop base five.small base four base four.medium base four.numr base four.prop base four.small base fraction base g base gbreve base gcaron base gcircumflex base gdotaccent base germandbls base grave base gravecomb mark gravecomb.cap mark greater base guillemotleft.latn base guillemotright.latn base guilsinglleft base guilsinglright base h base hbar base hcircumflex base hungarumlaut base hyphen base i base i.TRK base iacute base ibreve base icircumflex base idieresis base igrave base ij base imacron base iogonek base itilde base j base jcircumflex base k base kgreenlandic base l base lacute base lcaron base ldot base less base logicalnot base longs base lslash base m base macron base minus base minute base mu base multiply base n base nacute base napostrophe base ncaron base nine base nine.medium base nine.numr base nine.prop base nine.small base ntilde base numbersign base o base oacute base obreve base ocircumflex base odieresis base oe base ogonek base ograve base ohungarumlaut base omacron base one base one.medium base one.numr base one.prop base one.small base onedotenleader base onehalf base onequarter base ordfeminine base ordmasculine base oslash base otilde base p base paragraph base parenleft.latn base parenright.latn base percent base period.latn base periodcentered base perthousand base plus base plusminus base q base question base questiondown base quotedbl base quotedblbase base quotedblleft base quotedblright base quoteleft base quotereversed base quoteright base quotesinglbase base quotesingle base r base racute base radical base rcaron base registered base ring base s base sacute base scaron base scedilla base scircumflex base second base section base semicolon base seven base seven.medium base seven.numr base seven.prop base seven.small base six base six.medium base six.numr base six.prop base six.small base slash.latn base space base sterling base t base tbar base tcaron base thorn base three base three.medium base three.numr base three.prop base three.small base threequarters base tilde base tildecomb mark tildecomb.cap mark two base two.medium base two.numr base two.prop base two.small base u base uacute base ubreve base ucircumflex base udieresis base ugrave base uhungarumlaut base umacron base underscore base uni00A0 base uni00AD base uni00B2 base uni00B3 base uni00B9 base uni0122 base uni0123 base uni0136 base uni0137 base uni013B base uni013C base uni0145 base uni0146 base uni0156 base uni0157 base uni0162 base uni0163 base uni0237 base uni02BB base uni02BC base uni02BE base uni02BF base uni0302 mark uni0302.cap mark uni0304 mark uni0304.cap mark uni0305 mark uni0306 mark uni0306.cap mark uni0307 mark uni0308 mark uni0308.cap mark uni0308.narrow mark uni030A mark uni030A.cap mark uni030B.cap mark uni030C mark uni030C.cap mark uni0312 mark uni0315 mark uni0323.cap mark uni0326 mark uni0327 mark uni0327.cap mark uni0328 mark uni1E02 base uni1E03 base uni1E0A base uni1E0B base uni1E0C base uni1E0D base uni1E0E base uni1E0F base uni1E10 base uni1E11 base uni1E1E base uni1E1F base uni1E24 base uni1E25 base uni1E28 base uni1E29 base uni1E2A base uni1E2B base uni1E40 base uni1E41 base uni1E56 base uni1E57 base uni1E60 base uni1E61 base uni1E62 base uni1E63 base uni1E6A base uni1E6B base uni1E6C base uni1E6D base uni1E6E base uni1E6F base uni1E92 base uni1E93 base uni1E96 base uni1E97 base uni2010 base uni2011 base uni2015 base uni201F base uni202F base uni2038 base uni203E base uni2042 base uni2074 base uni2213 base uogonek base uring base utilde base v base w base wacute base wcircumflex base wdieresis base wgrave base x base y base yacute base ycircumflex base ydieresis base yen base ygrave base z base zacute base zcaron base zdotaccent base zero base zero.medium base zero.numr base zero.prop base zero.small base amiri-1.000/sources/AmiriLatin-Italic.ufo/metainfo.plist000066400000000000000000000004641434272261000232060ustar00rootroot00000000000000 creator com.github.fonttools.ufoLib formatVersion 3 amiri-1.000/sources/AmiriLatin-Regular.ufo/000077500000000000000000000000001434272261000205175ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-Regular.ufo/fontinfo.plist000066400000000000000000000063011434272261000234160ustar00rootroot00000000000000 ascender 800 copyright Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org). Copyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org). This Font Software is licensed under the Open Font License, Version 1.1. descender -200 familyName Amiri Latin italicAngle 0 openTypeGaspRangeRecords rangeGaspBehavior 0 1 2 3 rangeMaxPPEM 65535 openTypeHeadCreated 2010/04/10 19:13:09 openTypeHheaAscender 700 openTypeHheaDescender -300 openTypeHheaLineGap 90 openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeOS2FamilyClass 1 2 openTypeOS2Selection 7 openTypeOS2StrikeoutPosition 258 openTypeOS2StrikeoutSize 49 openTypeOS2SubscriptXOffset 0 openTypeOS2SubscriptXSize 650 openTypeOS2SubscriptYOffset 140 openTypeOS2SubscriptYSize 699 openTypeOS2SuperscriptXOffset 0 openTypeOS2SuperscriptXSize 650 openTypeOS2SuperscriptYOffset 479 openTypeOS2SuperscriptYSize 699 openTypeOS2Type openTypeOS2TypoAscender 700 openTypeOS2TypoDescender -300 openTypeOS2TypoLineGap 90 openTypeOS2VendorID PfEd openTypeOS2WeightClass 400 openTypeOS2WidthClass 5 openTypeOS2WinAscent 0 openTypeOS2WinDescent 0 openTypeVheaVertTypoLineGap 0 postscriptFontName AmiriLatin-Regular postscriptFullName Amiri Latin postscriptSlantAngle 0 postscriptUnderlinePosition -88.5 postscriptUnderlineThickness 47 postscriptWeightName Regular styleName Regular unitsPerEm 1000 versionMajor 0 versionMinor 8 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/000077500000000000000000000000001434272261000220255ustar00rootroot00000000000000amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_.glif000066400000000000000000000063221434272261000232120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_E_.glif000066400000000000000000000127751434272261000234670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_acute.glif000066400000000000000000000003411434272261000242270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_breve.glif000066400000000000000000000003541434272261000242350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_circumflex.glif000066400000000000000000000003611434272261000252710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_dieresis.glif000066400000000000000000000003571434272261000247440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_grave.glif000066400000000000000000000003411434272261000242320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_macron.glif000066400000000000000000000003551434272261000244120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_ogonek.glif000066400000000000000000000102471434272261000244160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_ring.glif000066400000000000000000000003541434272261000240710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/A_tilde.glif000066400000000000000000000003561434272261000242350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/B_.glif000066400000000000000000000055101434272261000232110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/C_.glif000066400000000000000000000031221434272261000232070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/C_acute.glif000066400000000000000000000003411434272261000242310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/C_caron.glif000066400000000000000000000003371434272261000242370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/C_cedilla.glif000066400000000000000000000003551434272261000245320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/C_circumflex.glif000066400000000000000000000003611434272261000252730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/C_dotaccent.glif000066400000000000000000000003551434272261000251010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/D_.glif000066400000000000000000000040471434272261000232170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/D_caron.glif000066400000000000000000000003371434272261000242400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/D_croat.glif000066400000000000000000000002611434272261000242420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_.glif000066400000000000000000000074611434272261000232230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_acute.glif000066400000000000000000000003411434272261000242330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_breve.glif000066400000000000000000000003541434272261000242410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_caron.glif000066400000000000000000000003371434272261000242410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_circumflex.glif000066400000000000000000000003611434272261000252750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_dieresis.glif000066400000000000000000000003571434272261000247500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_dotaccent.glif000066400000000000000000000003551434272261000251030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_grave.glif000066400000000000000000000003411434272261000242360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_macron.glif000066400000000000000000000003551434272261000244160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_ng.glif000066400000000000000000000065741434272261000235540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_ogonek.glif000066400000000000000000000112531434272261000244200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_th.glif000066400000000000000000000011031434272261000235420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/E_uro.glif000066400000000000000000000055351434272261000237510ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/F_.glif000066400000000000000000000065071434272261000232240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/G_.glif000066400000000000000000000051221434272261000232150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/G_breve.glif000066400000000000000000000003541434272261000242430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/G_caron.glif000066400000000000000000000003371434272261000242430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/G_circumflex.glif000066400000000000000000000003611434272261000252770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/G_dotaccent.glif000066400000000000000000000003551434272261000251050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/H_.glif000066400000000000000000000106521434272261000232220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/H_bar.glif000066400000000000000000000013771434272261000237130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/H_circumflex.glif000066400000000000000000000003611434272261000253000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_.glif000066400000000000000000000035451434272261000232260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_J_.glif000066400000000000000000000003361434272261000234720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_acute.glif000066400000000000000000000003411434272261000242370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_breve.glif000066400000000000000000000003541434272261000242450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_circumflex.glif000066400000000000000000000003621434272261000253020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_dieresis.glif000066400000000000000000000003561434272261000247530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_dotaccent.glif000066400000000000000000000003551434272261000251070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_grave.glif000066400000000000000000000003411434272261000242420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_macron.glif000066400000000000000000000003551434272261000244220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_ogonek.glif000066400000000000000000000063761434272261000244360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/I_tilde.glif000066400000000000000000000003561434272261000242450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/J_.glif000066400000000000000000000035211434272261000232210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/J_circumflex.glif000066400000000000000000000003611434272261000253020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/K_.glif000066400000000000000000000074771434272261000232400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/L_.glif000066400000000000000000000045171434272261000232310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/L_acute.glif000066400000000000000000000003411434272261000242420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/L_caron.glif000066400000000000000000000003501434272261000242430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/L_dot.glif000066400000000000000000000003501434272261000237270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/L_slash.glif000066400000000000000000000007261434272261000242620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/M_.glif000066400000000000000000000105351434272261000232270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/N_.glif000066400000000000000000000056761434272261000232420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/N_acute.glif000066400000000000000000000003411434272261000242440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/N_caron.glif000066400000000000000000000003371434272261000242520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/N_tilde.glif000066400000000000000000000003561434272261000242520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_.glif000066400000000000000000000020561434272261000232300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_E_.glif000066400000000000000000000103211434272261000234660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_acute.glif000066400000000000000000000003411434272261000242450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_breve.glif000066400000000000000000000003541434272261000242530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_circumflex.glif000066400000000000000000000003611434272261000253070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_dieresis.glif000066400000000000000000000003571434272261000247620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_grave.glif000066400000000000000000000003411434272261000242500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_hungarumlaut.glif000066400000000000000000000004621434272261000256640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_macron.glif000066400000000000000000000003551434272261000244300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_slash.glif000066400000000000000000000007271434272261000242660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/O_tilde.glif000066400000000000000000000003561434272261000242530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/P_.glif000066400000000000000000000051641434272261000232340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Q_.glif000066400000000000000000000032311434272261000232260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/R_.glif000066400000000000000000000062271434272261000232370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/R_acute.glif000066400000000000000000000003411434272261000242500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/R_caron.glif000066400000000000000000000003371434272261000242560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/S_.glif000066400000000000000000000040341434272261000232320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/S_acute.glif000066400000000000000000000003411434272261000242510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/S_caron.glif000066400000000000000000000003371434272261000242570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/S_cedilla.glif000066400000000000000000000003551434272261000245520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/S_circumflex.glif000066400000000000000000000003611434272261000253130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/T_.glif000066400000000000000000000046741434272261000232450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/T_bar.glif000066400000000000000000000011121434272261000237120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/T_caron.glif000066400000000000000000000003541434272261000242570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/T_horn.glif000066400000000000000000000060761434272261000241320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_.glif000066400000000000000000000051711434272261000232370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_acute.glif000066400000000000000000000003411434272261000242530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_breve.glif000066400000000000000000000003541434272261000242610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_circumflex.glif000066400000000000000000000003611434272261000253150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_dieresis.glif000066400000000000000000000003571434272261000247700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_grave.glif000066400000000000000000000003411434272261000242560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_hungarumlaut.glif000066400000000000000000000004621434272261000256720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_macron.glif000066400000000000000000000003551434272261000244360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_ogonek.glif000066400000000000000000000071201434272261000244360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_ring.glif000066400000000000000000000003361434272261000241150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/U_tilde.glif000066400000000000000000000003561434272261000242610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/V_.glif000066400000000000000000000046261434272261000232440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/W_.glif000066400000000000000000000062761434272261000232500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/W_acute.glif000066400000000000000000000003411434272261000242550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/W_circumflex.glif000066400000000000000000000003621434272261000253200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/W_dieresis.glif000066400000000000000000000003571434272261000247720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/W_grave.glif000066400000000000000000000003411434272261000242600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/X_.glif000066400000000000000000000073021434272261000232400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Y_.glif000066400000000000000000000063301434272261000232410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Y_acute.glif000066400000000000000000000003411434272261000242570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Y_circumflex.glif000066400000000000000000000003621434272261000253220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Y_dieresis.glif000066400000000000000000000003571434272261000247740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Y_grave.glif000066400000000000000000000003411434272261000242620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Z_.glif000066400000000000000000000035261434272261000232460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Z_acute.glif000066400000000000000000000003411434272261000242600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Z_caron.glif000066400000000000000000000003371434272261000242660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/Z_dotaccent.glif000066400000000000000000000003551434272261000251300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/a.glif000066400000000000000000000051521434272261000231130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/aacute.glif000066400000000000000000000003521434272261000241320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/abreve.glif000066400000000000000000000003331434272261000241330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/acircumflex.glif000066400000000000000000000003551434272261000251750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/acute.glif000066400000000000000000000003211434272261000237650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/acutecomb.cap.glif000066400000000000000000000012751434272261000254010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/acutecomb.glif000066400000000000000000000013201434272261000246260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/adieresis.glif000066400000000000000000000003521434272261000246400ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ae.glif000066400000000000000000000071761434272261000232700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/agrave.glif000066400000000000000000000003521434272261000241350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/amacron.glif000066400000000000000000000003511434272261000243070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ampersand.glif000066400000000000000000000061141434272261000246440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/aogonek.glif000066400000000000000000000067441434272261000243260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/aring.glif000066400000000000000000000003471434272261000237740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/asciicircum.glif000066400000000000000000000017401434272261000251650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/asciitilde.glif000066400000000000000000000023401434272261000250010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/asterisk.glif000066400000000000000000000065161434272261000245250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/at.glif000066400000000000000000000053101434272261000232730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/atilde.glif000066400000000000000000000003521434272261000241320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/b.glif000066400000000000000000000044241434272261000231150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/backslash.latn.glif000066400000000000000000000014231434272261000255600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/bar.latn.glif000066400000000000000000000014161434272261000243730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/braceleft.latn.glif000066400000000000000000000043101434272261000255520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/braceright.latn.glif000066400000000000000000000043111434272261000257360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/bracketleft.latn.glif000066400000000000000000000024531434272261000261170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/bracketright.latn.glif000066400000000000000000000024241434272261000263000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/breve.glif000066400000000000000000000003171434272261000237740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/brokenbar.glif000066400000000000000000000026551434272261000246450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/bullet.glif000066400000000000000000000011451434272261000241600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/c.glif000066400000000000000000000030121434272261000231060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/cacute.glif000066400000000000000000000003521434272261000241340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/caron.glif000066400000000000000000000003171434272261000237730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ccaron.glif000066400000000000000000000003331434272261000241340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ccedilla.glif000066400000000000000000000003511434272261000244270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ccircumflex.glif000066400000000000000000000003551434272261000251770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/cdotaccent.glif000066400000000000000000000003541434272261000250010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/cedilla.glif000066400000000000000000000003041434272261000242620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/cent.glif000066400000000000000000000007441434272261000236260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/circumflex.glif000066400000000000000000000003241434272261000250300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/colon.glif000066400000000000000000000020451434272261000240030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/comma.glif000066400000000000000000000015741434272261000237730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/contents.plist000066400000000000000000000644751434272261000247570ustar00rootroot00000000000000 A A_.glif AE A_E_.glif Aacute A_acute.glif Abreve A_breve.glif Acircumflex A_circumflex.glif Adieresis A_dieresis.glif Agrave A_grave.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Atilde A_tilde.glif B B_.glif C C_.glif Cacute C_acute.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif D D_.glif Dcaron D_caron.glif Dcroat D_croat.glif E E_.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Egrave E_grave.glif Emacron E_macron.glif Eng E_ng.glif Eogonek E_ogonek.glif Eth E_th.glif Euro E_uro.glif F F_.glif G G_.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gdotaccent G_dotaccent.glif H H_.glif Hbar H_bar.glif Hcircumflex H_circumflex.glif I I_.glif IJ I_J_.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Igrave I_grave.glif Imacron I_macron.glif Iogonek I_ogonek.glif Itilde I_tilde.glif J J_.glif Jcircumflex J_circumflex.glif K K_.glif L L_.glif Lacute L_acute.glif Lcaron L_caron.glif Ldot L_dot.glif Lslash L_slash.glif M M_.glif N N_.glif Nacute N_acute.glif Ncaron N_caron.glif Ntilde N_tilde.glif O O_.glif OE O_E_.glif Oacute O_acute.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Odieresis O_dieresis.glif Ograve O_grave.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Oslash O_slash.glif Otilde O_tilde.glif P P_.glif Q Q_.glif R R_.glif Racute R_acute.glif Rcaron R_caron.glif S S_.glif Sacute S_acute.glif Scaron S_caron.glif Scedilla S_cedilla.glif Scircumflex S_circumflex.glif T T_.glif Tbar T_bar.glif Tcaron T_caron.glif Thorn T_horn.glif U U_.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Ugrave U_grave.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Uogonek U_ogonek.glif Uring U_ring.glif Utilde U_tilde.glif V V_.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif Y Y_.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ygrave Y_grave.glif Z Z_.glif Zacute Z_acute.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif a a.glif aacute aacute.glif abreve abreve.glif acircumflex acircumflex.glif acute acute.glif acutecomb acutecomb.glif acutecomb.cap acutecomb.cap.glif adieresis adieresis.glif ae ae.glif agrave agrave.glif amacron amacron.glif ampersand ampersand.glif aogonek aogonek.glif aring aring.glif asciicircum asciicircum.glif asciitilde asciitilde.glif asterisk asterisk.glif at at.glif atilde atilde.glif b b.glif backslash.latn backslash.latn.glif bar.latn bar.latn.glif braceleft.latn braceleft.latn.glif braceright.latn braceright.latn.glif bracketleft.latn bracketleft.latn.glif bracketright.latn bracketright.latn.glif breve breve.glif brokenbar brokenbar.glif bullet bullet.glif c c.glif cacute cacute.glif caron caron.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedilla cedilla.glif cent cent.glif circumflex circumflex.glif colon colon.glif comma comma.glif copyright copyright.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dcaron dcaron.glif dcroat dcroat.glif degree degree.glif dieresis dieresis.glif divide divide.glif dollar dollar.glif dotaccent dotaccent.glif dotlessi dotlessi.glif e e.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif edieresis edieresis.glif edotaccent edotaccent.glif egrave egrave.glif eight eight.glif eight.medium eight.medium.glif eight.numr eight.numr.glif eight.prop eight.prop.glif eight.small eight.small.glif ellipsis ellipsis.glif emacron emacron.glif emdash emdash.glif endash endash.glif eng eng.glif eogonek eogonek.glif equal equal.glif eth eth.glif exclam.latn exclam.latn.glif exclamdown exclamdown.glif f f.glif f_b f_b.glif f_f f_f.glif f_f_b f_f_b.glif f_f_h f_f_h.glif f_f_i f_f_i.glif f_f_j f_f_j.glif f_f_k f_f_k.glif f_f_l f_f_l.glif f_h f_h.glif f_i f_i.glif f_j f_j.glif f_k f_k.glif f_l f_l.glif figuredash figuredash.glif five five.glif five.medium five.medium.glif five.numr five.numr.glif five.prop five.prop.glif five.small five.small.glif four four.glif four.medium four.medium.glif four.numr four.numr.glif four.prop four.prop.glif four.small four.small.glif fraction fraction.glif g g.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gdotaccent gdotaccent.glif germandbls germandbls.glif grave grave.glif gravecomb gravecomb.glif gravecomb.cap gravecomb.cap.glif greater greater.glif guillemotleft.latn guillemotleft.latn.glif guillemotright.latn guillemotright.latn.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif hbar hbar.glif hcircumflex hcircumflex.glif hungarumlaut hungarumlaut.glif hyphen hyphen.glif i i.glif i.TRK i.T_R_K_.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif igrave igrave.glif ij ij.glif imacron imacron.glif iogonek iogonek.glif iogonek.dotless iogonek.dotless.glif itilde itilde.glif j j.glif jcircumflex jcircumflex.glif k k.glif kgreenlandic kgreenlandic.glif l l.glif lacute lacute.glif lcaron lcaron.glif ldot ldot.glif less less.glif logicalnot logicalnot.glif longs longs.glif lslash lslash.glif m m.glif macron macron.glif minus minus.glif minute minute.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif napostrophe napostrophe.glif ncaron ncaron.glif nine nine.glif nine.medium nine.medium.glif nine.numr nine.numr.glif nine.prop nine.prop.glif nine.small nine.small.glif ntilde ntilde.glif numbersign numbersign.glif o o.glif oacute oacute.glif obreve obreve.glif ocircumflex ocircumflex.glif odieresis odieresis.glif oe oe.glif ogonek ogonek.glif ograve ograve.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif one one.glif one.medium one.medium.glif one.numr one.numr.glif one.prop one.prop.glif one.small one.small.glif onedotenleader onedotenleader.glif onehalf onehalf.glif onequarter onequarter.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif oslash oslash.glif otilde otilde.glif p p.glif paragraph paragraph.glif parenleft.latn parenleft.latn.glif parenright.latn parenright.latn.glif percent percent.glif period.latn period.latn.glif periodcentered periodcentered.glif perthousand perthousand.glif plus plus.glif plusminus plusminus.glif q q.glif question question.glif questiondown questiondown.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif rcaron rcaron.glif registered registered.glif ring ring.glif s s.glif sacute sacute.glif scaron scaron.glif scedilla scedilla.glif scircumflex scircumflex.glif second second.glif section section.glif semicolon semicolon.glif seven seven.glif seven.medium seven.medium.glif seven.numr seven.numr.glif seven.prop seven.prop.glif seven.small seven.small.glif six six.glif six.medium six.medium.glif six.numr six.numr.glif six.prop six.prop.glif six.small six.small.glif slash.latn slash.latn.glif space space.glif sterling sterling.glif t t.glif tbar tbar.glif tcaron tcaron.glif thorn thorn.glif three three.glif three.medium three.medium.glif three.numr three.numr.glif three.prop three.prop.glif three.small three.small.glif threequarters threequarters.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.cap tildecomb.cap.glif two two.glif two.medium two.medium.glif two.numr two.numr.glif two.prop two.prop.glif two.small two.small.glif u u.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif ugrave ugrave.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif underscore underscore.glif uni00A0 uni00A_0.glif uni00AD uni00A_D_.glif uni00B2 uni00B_2.glif uni00B3 uni00B_3.glif uni00B9 uni00B_9.glif uni0122 uni0122.glif uni0123 uni0123.glif uni0136 uni0136.glif uni0137 uni0137.glif uni013B uni013B_.glif uni013C uni013C_.glif uni0145 uni0145.glif uni0146 uni0146.glif uni0156 uni0156.glif uni0157 uni0157.glif uni0162 uni0162.glif uni0163 uni0163.glif uni0237 uni0237.glif uni02BB uni02B_B_.glif uni02BC uni02B_C_.glif uni02BE uni02B_E_.glif uni02BF uni02B_F_.glif uni0302 uni0302.glif uni0302.cap uni0302.cap.glif uni0304 uni0304.glif uni0304.cap uni0304.cap.glif uni0305 uni0305.glif uni0306 uni0306.glif uni0306.cap uni0306.cap.glif uni0307 uni0307.glif uni0308 uni0308.glif uni0308.cap uni0308.cap.glif uni0308.narrow uni0308.narrow.glif uni030A uni030A_.glif uni030A.cap uni030A_.cap.glif uni030C uni030C_.glif uni030C.cap uni030C_.cap.glif uni0312 uni0312.glif uni0315 uni0315.glif uni0325 uni0325.glif uni0326 uni0326.glif uni0327 uni0327.glif uni0327.cap uni0327.cap.glif uni0328 uni0328.glif uni1E02 uni1E_02.glif uni1E03 uni1E_03.glif uni1E0A uni1E_0A_.glif uni1E0B uni1E_0B_.glif uni1E0C uni1E_0C_.glif uni1E0D uni1E_0D_.glif uni1E0E uni1E_0E_.glif uni1E0F uni1E_0F_.glif uni1E10 uni1E_10.glif uni1E11 uni1E_11.glif uni1E1E uni1E_1E_.glif uni1E1F uni1E_1F_.glif uni1E24 uni1E_24.glif uni1E25 uni1E_25.glif uni1E28 uni1E_28.glif uni1E29 uni1E_29.glif uni1E2A uni1E_2A_.glif uni1E2B uni1E_2B_.glif uni1E40 uni1E_40.glif uni1E41 uni1E_41.glif uni1E56 uni1E_56.glif uni1E57 uni1E_57.glif uni1E60 uni1E_60.glif uni1E61 uni1E_61.glif uni1E62 uni1E_62.glif uni1E63 uni1E_63.glif uni1E6A uni1E_6A_.glif uni1E6B uni1E_6B_.glif uni1E6C uni1E_6C_.glif uni1E6D uni1E_6D_.glif uni1E6E uni1E_6E_.glif uni1E6F uni1E_6F_.glif uni1E92 uni1E_92.glif uni1E93 uni1E_93.glif uni1E96 uni1E_96.glif uni1E97 uni1E_97.glif uni2010 uni2010.glif uni2011 uni2011.glif uni2015 uni2015.glif uni201F uni201F_.glif uni202F uni202F_.glif uni2038 uni2038.glif uni203E uni203E_.glif uni2042 uni2042.glif uni2070 uni2070.glif uni2074 uni2074.glif uni2075 uni2075.glif uni2076 uni2076.glif uni2077 uni2077.glif uni2078 uni2078.glif uni2079 uni2079.glif uni2213 uni2213.glif uogonek uogonek.glif uring uring.glif utilde utilde.glif v v.glif w w.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif x x.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif yen yen.glif ygrave ygrave.glif z z.glif zacute zacute.glif zcaron zcaron.glif zdotaccent zdotaccent.glif zero zero.glif zero.medium zero.medium.glif zero.numr zero.numr.glif zero.prop zero.prop.glif zero.small zero.small.glif amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/copyright.glif000066400000000000000000000050461434272261000247050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/currency.glif000066400000000000000000000042611434272261000245250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/d.glif000066400000000000000000000052501434272261000231150ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dagger.glif000066400000000000000000000045161434272261000241270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/daggerdbl.glif000066400000000000000000000101701434272261000246020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dcaron.glif000066400000000000000000000003501434272261000241340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dcroat.glif000066400000000000000000000015021434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/degree.glif000066400000000000000000000020611434272261000241220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dieresis.glif000066400000000000000000000003231434272261000244750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/divide.glif000066400000000000000000000015231434272261000241350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dollar.glif000066400000000000000000000060131434272261000241450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dotaccent.glif000066400000000000000000000003231434272261000246320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/dotlessi.glif000066400000000000000000000033011434272261000245130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/e.glif000066400000000000000000000032211434272261000231120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eacute.glif000066400000000000000000000003521434272261000241360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ebreve.glif000066400000000000000000000003331434272261000241370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ecaron.glif000066400000000000000000000003331434272261000241360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ecircumflex.glif000066400000000000000000000003551434272261000252010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/edieresis.glif000066400000000000000000000003521434272261000246440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/edotaccent.glif000066400000000000000000000003541434272261000250030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/egrave.glif000066400000000000000000000003521434272261000241410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eight.glif000066400000000000000000000050731434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eight.medium.glif000066400000000000000000000003271434272261000252510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eight.numr.glif000066400000000000000000000002641434272261000247520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eight.prop.glif000066400000000000000000000002561434272261000247520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eight.small.glif000066400000000000000000000003311434272261000250740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ellipsis.glif000066400000000000000000000027651434272261000245260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/emacron.glif000066400000000000000000000003511434272261000243130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/emdash.glif000066400000000000000000000014371434272261000241360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/endash.glif000066400000000000000000000014371434272261000241370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eng.glif000066400000000000000000000054221434272261000234440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eogonek.glif000066400000000000000000000052221434272261000243200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/equal.glif000066400000000000000000000015261434272261000240030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/eth.glif000066400000000000000000000036611434272261000234560ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/exclam.latn.glif000066400000000000000000000023111434272261000250730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/exclamdown.glif000066400000000000000000000023541434272261000250350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f.glif000066400000000000000000000050511434272261000231160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_b.glif000066400000000000000000000115671434272261000234300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f.glif000066400000000000000000000104231434272261000234220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f_b.glif000066400000000000000000000164341434272261000237330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f_h.glif000066400000000000000000000203731434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f_i.glif000066400000000000000000000157621434272261000237450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f_j.glif000066400000000000000000000150321434272261000237340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f_k.glif000066400000000000000000000204061434272261000237360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_f_l.glif000066400000000000000000000152351434272261000237430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_h.glif000066400000000000000000000135551434272261000234350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_i.glif000066400000000000000000000076451434272261000234410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_j.glif000066400000000000000000000101211434272261000234210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_k.glif000066400000000000000000000135601434272261000234340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/f_l.glif000066400000000000000000000101161434272261000234270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/figuredash.glif000066400000000000000000000014431434272261000250130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/five.glif000066400000000000000000000042171434272261000236250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/five.medium.glif000066400000000000000000000003251434272261000251000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/five.numr.glif000066400000000000000000000002621434272261000246010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/five.prop.glif000066400000000000000000000002541434272261000246010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/five.small.glif000066400000000000000000000003271434272261000247320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/four.glif000066400000000000000000000025151434272261000236460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/four.medium.glif000066400000000000000000000003251434272261000251220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/four.numr.glif000066400000000000000000000002621434272261000246230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/four.prop.glif000066400000000000000000000002541434272261000246230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/four.small.glif000066400000000000000000000003271434272261000247540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/fraction.glif000066400000000000000000000013021434272261000244710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/g.glif000066400000000000000000000064161434272261000231250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/gbreve.glif000066400000000000000000000003331434272261000241410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/gcaron.glif000066400000000000000000000003501434272261000241370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/gcircumflex.glif000066400000000000000000000003551434272261000252030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/gdotaccent.glif000066400000000000000000000003541434272261000250050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/germandbls.glif000066400000000000000000000067651434272261000250240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/grave.glif000066400000000000000000000003211434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/gravecomb.cap.glif000066400000000000000000000012751434272261000254040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/gravecomb.glif000066400000000000000000000013201434272261000246310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/greater.glif000066400000000000000000000022651434272261000243260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/guillemotleft.latn.glif000066400000000000000000000033271434272261000265060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/guillemotright.latn.glif000066400000000000000000000033231434272261000266650ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/guilsinglleft.glif000066400000000000000000000021601434272261000255370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/guilsinglright.glif000066400000000000000000000021521434272261000257230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/h.glif000066400000000000000000000064121434272261000231220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/hbar.glif000066400000000000000000000014671434272261000236140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/hcircumflex.glif000066400000000000000000000003751434272261000252060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/hungarumlaut.glif000066400000000000000000000004231434272261000254030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/hyphen.glif000066400000000000000000000014421434272261000241640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/i.T_R_K_.glif000066400000000000000000000003271434272261000242160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/i.glif000066400000000000000000000003521434272261000231200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/iacute.glif000066400000000000000000000003611434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ibreve.glif000066400000000000000000000003561434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/icircumflex.glif000066400000000000000000000003641434272261000252050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/idieresis.glif000066400000000000000000000003711434272261000246510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/igrave.glif000066400000000000000000000003611434272261000241450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ij.glif000066400000000000000000000005201434272261000232670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/imacron.glif000066400000000000000000000003741434272261000243240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/iogonek.dotless.glif000066400000000000000000000053621434272261000260050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/iogonek.glif000066400000000000000000000003671434272261000243310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/itilde.glif000066400000000000000000000003751434272261000241470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/j.glif000066400000000000000000000003511434272261000231200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/jcircumflex.glif000066400000000000000000000003771434272261000252120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/k.glif000066400000000000000000000064151434272261000231300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/kgreenlandic.glif000066400000000000000000000064371434272261000253300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/l.glif000066400000000000000000000031761434272261000231320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/lacute.glif000066400000000000000000000003411434272261000241430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/lcaron.glif000066400000000000000000000003501434272261000241440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ldot.glif000066400000000000000000000003501434272261000236300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/less.glif000066400000000000000000000022771434272261000236460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/logicalnot.glif000066400000000000000000000014441434272261000250260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/longs.glif000066400000000000000000000044011434272261000240110ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/lslash.glif000066400000000000000000000007261434272261000241630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/m.glif000066400000000000000000000112641434272261000231300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/macron.glif000066400000000000000000000003201434272261000241420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/minus.glif000066400000000000000000000007661434272261000240340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/minute.glif000066400000000000000000000014671434272261000242010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/mu.glif000066400000000000000000000055051434272261000233160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/multiply.glif000066400000000000000000000032311434272261000245460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/n.glif000066400000000000000000000062431434272261000231320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/nacute.glif000066400000000000000000000003521434272261000241470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/napostrophe.glif000066400000000000000000000003541434272261000252340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ncaron.glif000066400000000000000000000003471434272261000241540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/nine.glif000066400000000000000000000030341434272261000236210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/nine.medium.glif000066400000000000000000000003251434272261000251000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/nine.numr.glif000066400000000000000000000002621434272261000246010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/nine.prop.glif000066400000000000000000000002541434272261000246010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/nine.small.glif000066400000000000000000000003271434272261000247320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ntilde.glif000066400000000000000000000003351434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/numbersign.glif000066400000000000000000000037251434272261000250500ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/o.glif000066400000000000000000000020511434272261000231240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/oacute.glif000066400000000000000000000003521434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/obreve.glif000066400000000000000000000003331434272261000241510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ocircumflex.glif000066400000000000000000000003551434272261000252130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/odieresis.glif000066400000000000000000000003521434272261000246560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/oe.glif000066400000000000000000000050211434272261000232710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ogonek.glif000066400000000000000000000003031434272261000241460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ograve.glif000066400000000000000000000003521434272261000241530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ohungarumlaut.glif000066400000000000000000000004541434272261000255660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/omacron.glif000066400000000000000000000003511434272261000243250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/one.glif000066400000000000000000000035241434272261000234550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/one.medium.glif000066400000000000000000000003251434272261000247300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/one.numr.glif000066400000000000000000000002601434272261000244270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/one.prop.glif000066400000000000000000000002531434272261000244300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/one.small.glif000066400000000000000000000003271434272261000245620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/onedotenleader.glif000066400000000000000000000011451434272261000256610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/onehalf.glif000066400000000000000000000073251434272261000243130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/onequarter.glif000066400000000000000000000071021434272261000250550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ordfeminine.glif000066400000000000000000000052211434272261000251670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ordmasculine.glif000066400000000000000000000020741434272261000253600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/oslash.glif000066400000000000000000000007401434272261000241620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/otilde.glif000066400000000000000000000003521434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/p.glif000066400000000000000000000056401434272261000231340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/paragraph.glif000066400000000000000000000070251434272261000246410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/parenleft.latn.glif000066400000000000000000000014011434272261000256010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/parenright.latn.glif000066400000000000000000000013671434272261000257770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/percent.glif000066400000000000000000000047451434272261000243420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/period.latn.glif000066400000000000000000000011101434272261000251000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/periodcentered.glif000066400000000000000000000012051434272261000256620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/perthousand.glif000066400000000000000000000066021434272261000252300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/plus.glif000066400000000000000000000027341434272261000236610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/plusminus.glif000066400000000000000000000040311434272261000247250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/q.glif000066400000000000000000000046661434272261000231440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/question.glif000066400000000000000000000040661434272261000245450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/questiondown.glif000066400000000000000000000041321434272261000254270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotedbl.glif000066400000000000000000000025771434272261000245220ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotedblbase.glif000066400000000000000000000005051434272261000253420ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotedblleft.glif000066400000000000000000000003531434272261000253630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotedblright.glif000066400000000000000000000005101434272261000255410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quoteleft.glif000066400000000000000000000020011434272261000246710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotereversed.glif000066400000000000000000000020011434272261000255560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quoteright.glif000066400000000000000000000003601434272261000250620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotesinglbase.glif000066400000000000000000000003631434272261000257170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/quotesingle.glif000066400000000000000000000014111434272261000252240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/r.glif000066400000000000000000000047501434272261000231370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/racute.glif000066400000000000000000000003511434272261000241520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/radical.glif000066400000000000000000000024101434272261000242640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/rcaron.glif000066400000000000000000000003471434272261000241600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/registered.glif000066400000000000000000000101641434272261000250270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ring.glif000066400000000000000000000003151434272261000236260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/s.glif000066400000000000000000000040121434272261000231270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/sacute.glif000066400000000000000000000003521434272261000241540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/scaron.glif000066400000000000000000000003471434272261000241610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/scedilla.glif000066400000000000000000000003661434272261000244550ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/scircumflex.glif000066400000000000000000000003551434272261000252170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/second.glif000066400000000000000000000027441434272261000241520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/section.glif000066400000000000000000000067011434272261000243400ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/semicolon.glif000066400000000000000000000025151434272261000246630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/seven.glif000066400000000000000000000025101434272261000240060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/seven.medium.glif000066400000000000000000000003271434272261000252710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/seven.numr.glif000066400000000000000000000002641434272261000247720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/seven.prop.glif000066400000000000000000000002561434272261000247720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/seven.small.glif000066400000000000000000000003311434272261000251140ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/six.glif000066400000000000000000000030351434272261000234740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/six.medium.glif000066400000000000000000000003231434272261000247500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/six.numr.glif000066400000000000000000000002601434272261000244510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/six.prop.glif000066400000000000000000000002521434272261000244510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/six.small.glif000066400000000000000000000003251434272261000246020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/slash.latn.glif000066400000000000000000000012211434272261000247330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/space.glif000066400000000000000000000001771434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/sterling.glif000066400000000000000000000054311434272261000245220ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/t.glif000066400000000000000000000035261434272261000231410ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/tbar.glif000066400000000000000000000014671434272261000236300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/tcaron.glif000066400000000000000000000003501434272261000241540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/thorn.glif000066400000000000000000000060141434272261000240230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/three.glif000066400000000000000000000041651434272261000240050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/three.medium.glif000066400000000000000000000003271434272261000252600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/three.numr.glif000066400000000000000000000002641434272261000247610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/three.prop.glif000066400000000000000000000002561434272261000247610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/three.small.glif000066400000000000000000000003311434272261000251030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/threequarters.glif000066400000000000000000000100221434272261000255610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/tilde.glif000066400000000000000000000003201434272261000237640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/tildecomb.cap.glif000066400000000000000000000026721434272261000254030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/tildecomb.glif000066400000000000000000000027151434272261000246370ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/two.glif000066400000000000000000000033351434272261000235050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/two.medium.glif000066400000000000000000000003231434272261000247560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/two.numr.glif000066400000000000000000000002601434272261000244570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/two.prop.glif000066400000000000000000000002521434272261000244570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/two.small.glif000066400000000000000000000003251434272261000246100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/u.glif000066400000000000000000000055351434272261000231440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uacute.glif000066400000000000000000000003521434272261000241560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ubreve.glif000066400000000000000000000003331434272261000241570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ucircumflex.glif000066400000000000000000000003551434272261000252210ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/udieresis.glif000066400000000000000000000003521434272261000246640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ugrave.glif000066400000000000000000000003521434272261000241610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uhungarumlaut.glif000066400000000000000000000004541434272261000255740ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/umacron.glif000066400000000000000000000003511434272261000243330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/underscore.glif000066400000000000000000000014161434272261000250430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni00A_0.glif000066400000000000000000000002011434272261000241340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni00A_D_.glif000066400000000000000000000001511434272261000243230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni00B_2.glif000066400000000000000000000032711434272261000241510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni00B_3.glif000066400000000000000000000041671434272261000241570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni00B_9.glif000066400000000000000000000035621434272261000241630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0122.glif000066400000000000000000000003341434272261000237700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0123.glif000066400000000000000000000003521434272261000237710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0136.glif000066400000000000000000000003341434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0137.glif000066400000000000000000000003341434272261000237760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni013B_.glif000066400000000000000000000003341434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni013C_.glif000066400000000000000000000003511434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0145.glif000066400000000000000000000003341434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0146.glif000066400000000000000000000003511434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0156.glif000066400000000000000000000003341434272261000237770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0157.glif000066400000000000000000000003511434272261000237770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0162.glif000066400000000000000000000003671434272261000240020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0163.glif000066400000000000000000000003641434272261000240000ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0237.glif000066400000000000000000000024711434272261000240030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni02B_B_.glif000066400000000000000000000003221434272261000243240ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni02B_C_.glif000066400000000000000000000003041434272261000243250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni02B_E_.glif000066400000000000000000000014071434272261000243340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni02B_F_.glif000066400000000000000000000014111434272261000243300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0302.cap.glif000066400000000000000000000017151434272261000245360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0302.glif000066400000000000000000000017401434272261000237720ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0304.cap.glif000066400000000000000000000010261434272261000245330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0304.glif000066400000000000000000000010511434272261000237670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0305.glif000066400000000000000000000014271434272261000237770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0306.cap.glif000066400000000000000000000017641434272261000245460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0306.glif000066400000000000000000000024031434272261000237730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0307.glif000066400000000000000000000011351434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0308.cap.glif000066400000000000000000000020401434272261000245340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0308.glif000066400000000000000000000020721434272261000237770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0308.narrow.glif000066400000000000000000000020411434272261000253020ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni030A_.cap.glif000066400000000000000000000020471434272261000247130ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni030A_.glif000066400000000000000000000020721434272261000241470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni030C_.cap.glif000066400000000000000000000017061434272261000247160ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni030C_.glif000066400000000000000000000017401434272261000241520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0312.glif000066400000000000000000000016431434272261000237750ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0315.glif000066400000000000000000000016111434272261000237730ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0325.glif000066400000000000000000000002551434272261000237770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0326.glif000066400000000000000000000016241434272261000240010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0327.cap.glif000066400000000000000000000027211434272261000245430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0327.glif000066400000000000000000000027611434272261000240050ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni0328.glif000066400000000000000000000022361434272261000240030ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_02.glif000066400000000000000000000003671434272261000241600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_03.glif000066400000000000000000000003521434272261000241530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_0A_.glif000066400000000000000000000003671434272261000243360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_0B_.glif000066400000000000000000000003521434272261000243310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_0C_.glif000066400000000000000000000003701434272261000243320ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_0D_.glif000066400000000000000000000003531434272261000243340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_0E_.glif000066400000000000000000000003701434272261000243340ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_0F_.glif000066400000000000000000000003531434272261000243360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_10.glif000066400000000000000000000003701434272261000241510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_11.glif000066400000000000000000000003501434272261000241500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_1E_.glif000066400000000000000000000003671434272261000243430ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_1F_.glif000066400000000000000000000003521434272261000243360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_24.glif000066400000000000000000000003531434272261000241570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_25.glif000066400000000000000000000003701434272261000241570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_28.glif000066400000000000000000000003541434272261000241640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_29.glif000066400000000000000000000003501434272261000241610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_2A_.glif000066400000000000000000000003531434272261000243330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_2B_.glif000066400000000000000000000003701434272261000243330ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_40.glif000066400000000000000000000003521434272261000241540ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_41.glif000066400000000000000000000003501434272261000241530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_56.glif000066400000000000000000000003671434272261000241710ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_57.glif000066400000000000000000000003501434272261000241620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_60.glif000066400000000000000000000003521434272261000241560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_61.glif000066400000000000000000000003341434272261000241570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_62.glif000066400000000000000000000003531434272261000241610ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_63.glif000066400000000000000000000003671434272261000241670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_6A_.glif000066400000000000000000000003521434272261000243360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_6B_.glif000066400000000000000000000003511434272261000243360ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_6C_.glif000066400000000000000000000003671434272261000243460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_6D_.glif000066400000000000000000000003671434272261000243470ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_6E_.glif000066400000000000000000000003671434272261000243500ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_6F_.glif000066400000000000000000000003671434272261000243510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_92.glif000066400000000000000000000003531434272261000241640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_93.glif000066400000000000000000000003701434272261000241640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_96.glif000066400000000000000000000003701434272261000241670ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni1E_97.glif000066400000000000000000000003671434272261000241760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2010.glif000066400000000000000000000014011434272261000237620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2011.glif000066400000000000000000000014011434272261000237630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2015.glif000066400000000000000000000014361434272261000237770ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni201F_.glif000066400000000000000000000035511434272261000241570ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni202F_.glif000066400000000000000000000002011434272261000241450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2038.glif000066400000000000000000000017371434272261000240100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni203E_.glif000066400000000000000000000003041434272261000241510ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2042.glif000066400000000000000000000004571434272261000240010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2070.glif000066400000000000000000000020671434272261000240010ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2074.glif000066400000000000000000000044061434272261000240040ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2075.glif000066400000000000000000000035621434272261000240070ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2076.glif000066400000000000000000000030761434272261000240100ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2077.glif000066400000000000000000000026771434272261000240170ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2078.glif000066400000000000000000000051151434272261000240060ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2079.glif000066400000000000000000000030751434272261000240120ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uni2213.glif000066400000000000000000000053411434272261000237760ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uogonek.glif000066400000000000000000000100031434272261000243310ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/uring.glif000066400000000000000000000003471434272261000240200ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/utilde.glif000066400000000000000000000003521434272261000241560ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/v.glif000066400000000000000000000042041434272261000231350ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/w.glif000066400000000000000000000067731434272261000231530ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/wacute.glif000066400000000000000000000003521434272261000241600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/wcircumflex.glif000066400000000000000000000003551434272261000252230ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/wdieresis.glif000066400000000000000000000003521434272261000246660ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/wgrave.glif000066400000000000000000000003521434272261000241630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/x.glif000066400000000000000000000070541434272261000231450ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/y.glif000066400000000000000000000050471434272261000231460ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/yacute.glif000066400000000000000000000003521434272261000241620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ycircumflex.glif000066400000000000000000000003551434272261000252250ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ydieresis.glif000066400000000000000000000003521434272261000246700ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/yen.glif000066400000000000000000000100021434272261000234540ustar00rootroot00000000000000 org.sfdlib.decomposeAndRemoveOverlap amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/ygrave.glif000066400000000000000000000003511434272261000241640ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/z.glif000066400000000000000000000035231434272261000231440ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zacute.glif000066400000000000000000000003521434272261000241630ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zcaron.glif000066400000000000000000000003501434272261000241620ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zdotaccent.glif000066400000000000000000000003541434272261000250300ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zero.glif000066400000000000000000000020561434272261000236520ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zero.medium.glif000066400000000000000000000003251434272261000251260ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zero.numr.glif000066400000000000000000000002621434272261000246270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zero.prop.glif000066400000000000000000000002361434272261000246270ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/glyphs/zero.small.glif000066400000000000000000000003271434272261000247600ustar00rootroot00000000000000 amiri-1.000/sources/AmiriLatin-Regular.ufo/groups.plist000066400000000000000000001600161434272261000231170ustar00rootroot00000000000000 public.kern1.kc0_0 ampersand public.kern1.kc0_1 zero zero.prop public.kern1.kc0_10 questiondown public.kern1.kc0_11 uni02BC public.kern1.kc0_12 fraction public.kern1.kc0_2 one.prop public.kern1.kc0_3 two.prop public.kern1.kc0_4 three.prop public.kern1.kc0_5 seven.prop public.kern1.kc0_6 eight.prop public.kern1.kc0_7 nine.prop public.kern1.kc0_8 exclamdown public.kern1.kc0_9 registered public.kern1.kc1_0 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern1.kc1_1 B uni1E02 public.kern1.kc1_10 M uni1E40 public.kern1.kc1_11 N Ntilde Nacute uni0145 Ncaron Eng public.kern1.kc1_12 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron Obreve Ohungarumlaut uni1E0A uni1E0C uni1E0E uni1E10 public.kern1.kc1_13 P uni1E56 public.kern1.kc1_14 R Racute uni0156 Rcaron public.kern1.kc1_15 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern1.kc1_16 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern1.kc1_17 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern1.kc1_18 V public.kern1.kc1_19 W Wcircumflex Wgrave Wacute Wdieresis public.kern1.kc1_2 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron public.kern1.kc1_20 X public.kern1.kc1_21 Y Yacute Ycircumflex Ydieresis Ygrave public.kern1.kc1_22 Z Zacute Zdotaccent Zcaron uni1E92 public.kern1.kc1_23 Thorn public.kern1.kc1_3 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE public.kern1.kc1_4 F uni1E1E public.kern1.kc1_5 G Gcircumflex Gbreve Gdotaccent uni0122 public.kern1.kc1_6 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E24 uni1E28 uni1E2A public.kern1.kc1_7 J IJ Jcircumflex public.kern1.kc1_8 K uni0136 public.kern1.kc1_9 L Lacute uni013B Lcaron Ldot Lslash public.kern1.kc2_0 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek public.kern1.kc2_1 b uni1E03 f_b f_f_b public.kern1.kc2_10 l lacute uni013C lcaron lslash f_l f_f_l public.kern1.kc2_11 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h public.kern1.kc2_12 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut public.kern1.kc2_13 p thorn uni1E57 public.kern1.kc2_14 q public.kern1.kc2_15 r racute uni0157 rcaron public.kern1.kc2_16 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern1.kc2_17 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern1.kc2_18 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern1.kc2_19 v public.kern1.kc2_2 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern1.kc2_20 w wcircumflex wgrave wacute wdieresis public.kern1.kc2_21 x public.kern1.kc2_22 y yacute ydieresis ycircumflex ygrave public.kern1.kc2_23 z zacute zdotaccent zcaron uni1E93 public.kern1.kc2_24 eth public.kern1.kc2_25 ldot public.kern1.kc2_26 eng public.kern1.kc2_3 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern1.kc2_4 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe public.kern1.kc2_5 f uni1E1F f_f public.kern1.kc2_6 g gcircumflex gbreve gdotaccent uni0123 public.kern1.kc2_7 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i public.kern1.kc2_8 j ij jcircumflex uni0237 f_j f_f_j public.kern1.kc2_9 k uni0137 kgreenlandic f_k f_f_k public.kern1.kc3_0 quotedbl quotesingle public.kern1.kc3_1 asterisk public.kern1.kc3_10 guillemotright.latn guilsinglright public.kern1.kc3_2 hyphen endash emdash uni2015 public.kern1.kc3_3 comma period.latn quotesinglbase quotedblbase public.kern1.kc3_4 slash.latn public.kern1.kc3_5 colon semicolon public.kern1.kc3_6 backslash.latn public.kern1.kc3_7 quoteleft quotedblleft public.kern1.kc3_8 quoteright quotedblright public.kern1.kc3_9 guillemotleft.latn guilsinglleft public.kern1.kc4_0 longs public.kern1.kc5_0 parenleft.latn public.kern1.kc5_1 bracketleft.latn public.kern1.kc5_2 braceleft.latn public.kern2.kc0_1 quotedbl quotesingle public.kern2.kc0_10 X public.kern2.kc0_11 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc0_12 M uni1E40 public.kern2.kc0_13 J Jcircumflex public.kern2.kc0_14 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc0_15 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc0_16 AE public.kern2.kc0_17 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc0_18 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc0_19 zero zero.prop public.kern2.kc0_2 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc0_3 V public.kern2.kc0_4 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc0_5 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc0_6 parenright.latn public.kern2.kc0_7 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc0_8 backslash.latn public.kern2.kc0_9 bracketright.latn public.kern2.kc1_1 quotedbl quotesingle public.kern2.kc1_10 V public.kern2.kc1_11 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc1_12 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc1_13 backslash.latn public.kern2.kc1_14 bracketright.latn public.kern2.kc1_15 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc1_16 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc1_17 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc1_18 q public.kern2.kc1_19 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc1_2 asterisk public.kern2.kc1_20 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc1_21 v public.kern2.kc1_22 w wcircumflex wgrave wacute wdieresis public.kern2.kc1_23 y yacute ydieresis ycircumflex ygrave public.kern2.kc1_24 registered public.kern2.kc1_25 quoteleft quotedblleft public.kern2.kc1_26 quoteright quotedblright public.kern2.kc1_27 guillemotleft.latn guilsinglleft public.kern2.kc1_28 parenright.latn public.kern2.kc1_29 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc1_3 hyphen endash emdash uni2015 public.kern2.kc1_30 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc1_31 M uni1E40 public.kern2.kc1_32 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc1_33 X public.kern2.kc1_34 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc1_35 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc1_36 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij public.kern2.kc1_37 j jcircumflex uni0237 public.kern2.kc1_38 l lacute uni013C lcaron ldot lslash public.kern2.kc1_39 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc1_4 zero zero.prop public.kern2.kc1_40 x public.kern2.kc1_41 z zacute zdotaccent zcaron uni1E93 public.kern2.kc1_42 AE public.kern2.kc1_43 ampersand public.kern2.kc1_44 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc1_45 slash.latn public.kern2.kc1_46 four.prop public.kern2.kc1_47 colon semicolon public.kern2.kc1_48 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek public.kern2.kc1_49 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc1_5 two.prop public.kern2.kc1_50 p uni1E57 public.kern2.kc1_51 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc1_52 public.kern2.kc1_53 seven seven.prop public.kern2.kc1_54 Z Zacute Zdotaccent Zcaron uni1E92 public.kern2.kc1_55 one.prop public.kern2.kc1_56 three.prop public.kern2.kc1_57 five.prop public.kern2.kc1_58 six.prop public.kern2.kc1_59 guillemotright.latn guilsinglright public.kern2.kc1_6 J Jcircumflex public.kern2.kc1_60 b thorn uni1E03 public.kern2.kc1_61 eight.prop public.kern2.kc1_62 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc1_7 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc1_8 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc1_9 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc2_1 parenright.latn public.kern2.kc2_10 quotedbl quotesingle public.kern2.kc2_11 asterisk public.kern2.kc2_12 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc2_13 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc2_14 x public.kern2.kc2_15 quoteleft quotedblleft public.kern2.kc2_16 quoteright quotedblright public.kern2.kc2_17 hyphen endash emdash uni2015 public.kern2.kc2_18 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc2_19 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc2_2 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc2_20 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc2_21 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc2_22 q public.kern2.kc2_23 guillemotleft.latn guilsinglleft public.kern2.kc2_24 J Jcircumflex public.kern2.kc2_25 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc2_26 V public.kern2.kc2_27 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc2_28 registered public.kern2.kc2_29 braceright.latn public.kern2.kc2_3 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc2_30 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc2_31 l lacute uni013C lcaron ldot lslash public.kern2.kc2_32 j jcircumflex uni0237 public.kern2.kc2_33 ampersand public.kern2.kc2_34 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc2_35 slash.latn public.kern2.kc2_36 question public.kern2.kc2_37 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek public.kern2.kc2_38 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc2_4 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc2_5 backslash.latn public.kern2.kc2_6 bracketright.latn public.kern2.kc2_7 v public.kern2.kc2_8 w wcircumflex wgrave wacute wdieresis public.kern2.kc2_9 y yacute ydieresis ycircumflex ygrave public.kern2.kc3_1 ampersand public.kern2.kc3_10 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc3_11 g gcircumflex gbreve gdotaccent uni0123 public.kern2.kc3_12 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe public.kern2.kc3_13 q public.kern2.kc3_14 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc3_15 AE public.kern2.kc3_16 guillemotleft.latn guilsinglleft public.kern2.kc3_17 v public.kern2.kc3_18 w wcircumflex wgrave wacute wdieresis public.kern2.kc3_19 y yacute ydieresis ycircumflex ygrave public.kern2.kc3_2 comma period.latn quotesinglbase quotedblbase ellipsis public.kern2.kc3_20 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 public.kern2.kc3_21 J Jcircumflex public.kern2.kc3_22 M uni1E40 public.kern2.kc3_23 N Ntilde Nacute uni0145 Ncaron Eng public.kern2.kc3_24 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E public.kern2.kc3_25 V public.kern2.kc3_26 W Wcircumflex Wgrave Wacute Wdieresis public.kern2.kc3_27 X public.kern2.kc3_28 Y Yacute Ycircumflex Ydieresis Ygrave public.kern2.kc3_29 Z Zacute Zdotaccent Zcaron uni1E92 public.kern2.kc3_3 slash.latn public.kern2.kc3_30 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc3_31 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 public.kern2.kc3_32 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij public.kern2.kc3_33 j jcircumflex uni0237 public.kern2.kc3_34 l lacute uni013C lcaron ldot lslash public.kern2.kc3_35 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc3_36 x public.kern2.kc3_37 z zacute zdotaccent zcaron uni1E93 public.kern2.kc3_38 quotedbl quotesingle public.kern2.kc3_39 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc3_4 four.prop public.kern2.kc3_40 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc3_41 quoteleft quotedblleft public.kern2.kc3_42 quoteright quotedblright public.kern2.kc3_43 zero zero.prop public.kern2.kc3_44 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc3_45 p uni1E57 public.kern2.kc3_46 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc3_47 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc3_48 hyphen endash emdash uni2015 public.kern2.kc3_5 six.prop public.kern2.kc3_6 at public.kern2.kc3_7 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc3_8 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek public.kern2.kc3_9 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc4_1 w wcircumflex wgrave wacute wdieresis public.kern2.kc4_2 y yacute ydieresis ycircumflex ygrave public.kern2.kc5_1 zero zero.prop public.kern2.kc5_10 s sacute scircumflex scedilla scaron uni1E61 uni1E63 public.kern2.kc5_11 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 public.kern2.kc5_12 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek public.kern2.kc5_13 v public.kern2.kc5_14 w wcircumflex wgrave wacute wdieresis public.kern2.kc5_15 y yacute ydieresis ycircumflex ygrave public.kern2.kc5_16 z zacute zdotaccent zcaron uni1E93 public.kern2.kc5_17 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek public.kern2.kc5_18 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek public.kern2.kc5_19 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j public.kern2.kc5_2 J Jcircumflex public.kern2.kc5_20 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij public.kern2.kc5_21 AE public.kern2.kc5_3 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE public.kern2.kc5_4 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 public.kern2.kc5_5 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek public.kern2.kc5_6 c ccedilla cacute ccircumflex cdotaccent ccaron public.kern2.kc5_7 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 public.kern2.kc5_8 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 public.kern2.kc5_9 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe amiri-1.000/sources/AmiriLatin-Regular.ufo/kerning.plist000066400000000000000000002024711434272261000232370ustar00rootroot00000000000000 public.kern1.kc0_0 public.kern2.kc0_1 -36 public.kern2.kc0_2 -29 public.kern2.kc0_3 -27 public.kern2.kc0_4 -21 public.kern2.kc0_5 -33 public.kern1.kc0_1 public.kern2.kc0_3 -17 public.kern2.kc0_4 -14 public.kern2.kc0_5 -21 public.kern2.kc0_6 -21 public.kern2.kc0_7 -10 public.kern2.kc0_8 -15 public.kern2.kc0_9 -21 public.kern1.kc0_10 public.kern2.kc0_13 82 public.kern2.kc0_14 -14 public.kern2.kc0_15 -11 public.kern2.kc0_17 -10 public.kern2.kc0_2 -45 public.kern2.kc0_3 -36 public.kern2.kc0_4 -29 public.kern2.kc0_5 -49 public.kern1.kc0_11 public.kern2.kc0_18 -14 public.kern1.kc0_12 public.kern2.kc0_19 -22 public.kern1.kc0_2 public.kern2.kc0_10 6 public.kern2.kc0_7 9 public.kern1.kc0_3 public.kern2.kc0_3 -14 public.kern2.kc0_4 -11 public.kern2.kc0_5 -16 public.kern1.kc0_4 public.kern2.kc0_3 -15 public.kern2.kc0_4 -13 public.kern2.kc0_5 -17 public.kern1.kc0_5 public.kern2.kc0_11 -56 public.kern2.kc0_3 29 public.kern2.kc0_4 27 public.kern2.kc0_5 35 public.kern2.kc0_7 -40 public.kern1.kc0_6 public.kern2.kc0_3 -13 public.kern2.kc0_4 -11 public.kern2.kc0_5 -14 public.kern1.kc0_7 public.kern2.kc0_11 -33 public.kern2.kc0_12 -11 public.kern2.kc0_3 -10 public.kern2.kc0_5 -13 public.kern2.kc0_7 -25 public.kern1.kc0_8 public.kern2.kc0_13 66 public.kern2.kc0_14 -18 public.kern2.kc0_2 -45 public.kern2.kc0_3 -40 public.kern2.kc0_4 -32 public.kern2.kc0_5 -47 public.kern1.kc0_9 public.kern2.kc0_12 -14 public.kern2.kc0_15 -11 public.kern2.kc0_16 -50 public.kern2.kc0_5 -13 public.kern2.kc0_7 -32 public.kern1.kc1_0 public.kern2.kc1_1 -50 public.kern2.kc1_10 -62 public.kern2.kc1_11 -53 public.kern2.kc1_12 -59 public.kern2.kc1_13 -47 public.kern2.kc1_14 -16 public.kern2.kc1_15 -10 public.kern2.kc1_16 -9 public.kern2.kc1_17 -11 public.kern2.kc1_18 -9 public.kern2.kc1_19 -8 public.kern2.kc1_2 -40 public.kern2.kc1_20 -12 public.kern2.kc1_21 -43 public.kern2.kc1_22 -43 public.kern2.kc1_23 -42 public.kern2.kc1_24 -33 public.kern2.kc1_25 -47 public.kern2.kc1_26 -44 public.kern2.kc1_27 -23 public.kern2.kc1_3 -16 public.kern2.kc1_4 -10 public.kern2.kc1_5 12 public.kern2.kc1_6 -10 public.kern2.kc1_7 -21 public.kern2.kc1_8 -51 public.kern2.kc1_9 -37 public.kern1.kc1_1 public.kern2.kc1_10 -21 public.kern2.kc1_11 -17 public.kern2.kc1_12 -27 public.kern2.kc1_13 -14 public.kern2.kc1_14 -21 public.kern2.kc1_19 -5 public.kern2.kc1_21 -19 public.kern2.kc1_22 -18 public.kern2.kc1_23 -18 public.kern2.kc1_28 -20 public.kern2.kc1_29 -10 public.kern2.kc1_30 -6 public.kern2.kc1_31 -7 public.kern2.kc1_32 -7 public.kern2.kc1_33 -34 public.kern2.kc1_34 -8 public.kern2.kc1_35 -7 public.kern2.kc1_36 -9 public.kern2.kc1_37 -6 public.kern2.kc1_38 -7 public.kern2.kc1_39 -8 public.kern2.kc1_40 -24 public.kern2.kc1_41 -10 public.kern2.kc1_42 -15 public.kern2.kc1_6 -6 public.kern2.kc1_8 -8 public.kern2.kc1_9 -6 public.kern1.kc1_10 public.kern2.kc1_15 -19 public.kern2.kc1_16 -18 public.kern2.kc1_17 -19 public.kern2.kc1_18 -18 public.kern2.kc1_19 -14 public.kern2.kc1_20 -13 public.kern2.kc1_21 -19 public.kern2.kc1_22 -20 public.kern2.kc1_23 -20 public.kern2.kc1_24 -10 public.kern2.kc1_27 -19 public.kern2.kc1_3 -11 public.kern2.kc1_37 -5 public.kern2.kc1_48 -7 public.kern2.kc1_49 -9 public.kern2.kc1_50 -5 public.kern2.kc1_51 -5 public.kern2.kc1_7 -10 public.kern1.kc1_11 public.kern2.kc1_15 -24 public.kern2.kc1_16 -23 public.kern2.kc1_17 -21 public.kern2.kc1_18 -23 public.kern2.kc1_19 -20 public.kern2.kc1_20 -19 public.kern2.kc1_21 -19 public.kern2.kc1_22 -19 public.kern2.kc1_23 -18 public.kern2.kc1_27 -19 public.kern2.kc1_29 -10 public.kern2.kc1_3 -11 public.kern2.kc1_34 -20 public.kern2.kc1_36 -10 public.kern2.kc1_37 -6 public.kern2.kc1_39 -19 public.kern2.kc1_40 -7 public.kern2.kc1_41 -23 public.kern2.kc1_42 -8 public.kern2.kc1_43 -12 public.kern2.kc1_44 -9 public.kern2.kc1_48 -24 public.kern2.kc1_49 -21 public.kern2.kc1_50 -14 public.kern2.kc1_51 -24 public.kern2.kc1_52 -18 public.kern2.kc1_7 -10 public.kern1.kc1_12 public.kern2.kc1_10 -24 public.kern2.kc1_11 -18 public.kern2.kc1_12 -35 public.kern2.kc1_13 -17 public.kern2.kc1_14 -21 public.kern2.kc1_28 -22 public.kern2.kc1_29 -21 public.kern2.kc1_30 -9 public.kern2.kc1_31 -11 public.kern2.kc1_32 -11 public.kern2.kc1_33 -32 public.kern2.kc1_35 -11 public.kern2.kc1_38 -11 public.kern2.kc1_40 -21 public.kern2.kc1_42 -36 public.kern2.kc1_44 -17 public.kern2.kc1_54 -5 public.kern2.kc1_6 -9 public.kern2.kc1_8 -5 public.kern2.kc1_9 -7 public.kern1.kc1_13 public.kern2.kc1_12 -6 public.kern2.kc1_14 -17 public.kern2.kc1_15 -36 public.kern2.kc1_16 -36 public.kern2.kc1_17 -32 public.kern2.kc1_18 -36 public.kern2.kc1_2 6 public.kern2.kc1_27 -24 public.kern2.kc1_28 -12 public.kern2.kc1_29 -45 public.kern2.kc1_3 -43 public.kern2.kc1_30 -5 public.kern2.kc1_31 -9 public.kern2.kc1_32 -6 public.kern2.kc1_33 -21 public.kern2.kc1_42 -79 public.kern2.kc1_43 -21 public.kern2.kc1_44 -69 public.kern2.kc1_45 -24 public.kern2.kc1_46 -19 public.kern2.kc1_48 -19 public.kern2.kc1_49 -21 public.kern2.kc1_51 -15 public.kern2.kc1_52 -9 public.kern1.kc1_14 public.kern2.kc1_10 -45 public.kern2.kc1_11 -32 public.kern2.kc1_12 -41 public.kern2.kc1_13 -27 public.kern2.kc1_14 -10 public.kern2.kc1_15 -9 public.kern2.kc1_16 -9 public.kern2.kc1_17 -11 public.kern2.kc1_18 -8 public.kern2.kc1_2 -16 public.kern2.kc1_20 -7 public.kern2.kc1_21 -35 public.kern2.kc1_22 -34 public.kern2.kc1_23 -35 public.kern2.kc1_24 -20 public.kern2.kc1_27 -35 public.kern2.kc1_3 -9 public.kern2.kc1_45 18 public.kern2.kc1_46 -10 public.kern2.kc1_49 -5 public.kern2.kc1_5 29 public.kern2.kc1_55 5 public.kern2.kc1_56 17 public.kern2.kc1_57 18 public.kern2.kc1_6 -6 public.kern2.kc1_7 -15 public.kern2.kc1_8 -22 public.kern2.kc1_9 -20 public.kern1.kc1_15 public.kern2.kc1_10 -5 public.kern2.kc1_11 -5 public.kern2.kc1_12 -7 public.kern2.kc1_14 -16 public.kern2.kc1_19 -6 public.kern2.kc1_20 -5 public.kern2.kc1_21 -21 public.kern2.kc1_22 -21 public.kern2.kc1_23 -20 public.kern2.kc1_28 -10 public.kern2.kc1_34 -6 public.kern2.kc1_36 -8 public.kern2.kc1_37 -6 public.kern2.kc1_39 -8 public.kern2.kc1_40 -13 public.kern2.kc1_41 -10 public.kern1.kc1_16 public.kern2.kc1_15 -100 public.kern2.kc1_16 -99 public.kern2.kc1_17 -97 public.kern2.kc1_18 -99 public.kern2.kc1_19 -18 public.kern2.kc1_20 -66 public.kern2.kc1_21 -56 public.kern2.kc1_22 -55 public.kern2.kc1_23 -54 public.kern2.kc1_27 -62 public.kern2.kc1_29 -51 public.kern2.kc1_3 -62 public.kern2.kc1_34 -22 public.kern2.kc1_36 -19 public.kern2.kc1_37 -7 public.kern2.kc1_39 -71 public.kern2.kc1_40 -59 public.kern2.kc1_41 -77 public.kern2.kc1_42 -74 public.kern2.kc1_43 -21 public.kern2.kc1_44 -43 public.kern2.kc1_45 -26 public.kern2.kc1_46 -40 public.kern2.kc1_47 -34 public.kern2.kc1_48 -84 public.kern2.kc1_49 -84 public.kern2.kc1_50 -65 public.kern2.kc1_51 -80 public.kern2.kc1_52 -72 public.kern2.kc1_58 -20 public.kern2.kc1_59 -39 public.kern2.kc1_7 -6 public.kern1.kc1_17 public.kern2.kc1_15 -27 public.kern2.kc1_16 -27 public.kern2.kc1_17 -25 public.kern2.kc1_18 -27 public.kern2.kc1_19 -19 public.kern2.kc1_20 -14 public.kern2.kc1_21 -12 public.kern2.kc1_22 -12 public.kern2.kc1_23 -12 public.kern2.kc1_27 -15 public.kern2.kc1_29 -36 public.kern2.kc1_3 -9 public.kern2.kc1_34 -21 public.kern2.kc1_36 -8 public.kern2.kc1_39 -22 public.kern2.kc1_40 -14 public.kern2.kc1_41 -27 public.kern2.kc1_42 -38 public.kern2.kc1_43 -12 public.kern2.kc1_44 -22 public.kern2.kc1_45 -17 public.kern2.kc1_47 -9 public.kern2.kc1_48 -29 public.kern2.kc1_49 -26 public.kern2.kc1_50 -12 public.kern2.kc1_51 -28 public.kern2.kc1_52 -21 public.kern2.kc1_60 8 public.kern2.kc1_7 -6 public.kern1.kc1_18 public.kern2.kc1_1 8 public.kern2.kc1_15 -76 public.kern2.kc1_16 -75 public.kern2.kc1_17 -69 public.kern2.kc1_18 -76 public.kern2.kc1_19 -36 public.kern2.kc1_20 -40 public.kern2.kc1_21 -37 public.kern2.kc1_22 -38 public.kern2.kc1_23 -37 public.kern2.kc1_27 -49 public.kern2.kc1_29 -62 public.kern2.kc1_3 -46 public.kern2.kc1_34 -34 public.kern2.kc1_35 21 public.kern2.kc1_36 -8 public.kern2.kc1_38 21 public.kern2.kc1_39 -62 public.kern2.kc1_4 -14 public.kern2.kc1_40 -38 public.kern2.kc1_41 -64 public.kern2.kc1_42 -91 public.kern2.kc1_43 -28 public.kern2.kc1_44 -63 public.kern2.kc1_45 -37 public.kern2.kc1_46 -38 public.kern2.kc1_47 -30 public.kern2.kc1_48 -79 public.kern2.kc1_49 -68 public.kern2.kc1_50 -47 public.kern2.kc1_51 -73 public.kern2.kc1_52 -62 public.kern2.kc1_58 -29 public.kern2.kc1_59 -30 public.kern2.kc1_60 37 public.kern2.kc1_61 -13 public.kern2.kc1_62 -8 public.kern2.kc1_7 -22 public.kern1.kc1_19 public.kern2.kc1_15 -56 public.kern2.kc1_16 -56 public.kern2.kc1_17 -53 public.kern2.kc1_18 -56 public.kern2.kc1_19 -35 public.kern2.kc1_20 -33 public.kern2.kc1_21 -27 public.kern2.kc1_22 -28 public.kern2.kc1_23 -27 public.kern2.kc1_27 -39 public.kern2.kc1_29 -52 public.kern2.kc1_3 -34 public.kern2.kc1_34 -31 public.kern2.kc1_35 15 public.kern2.kc1_36 -9 public.kern2.kc1_38 15 public.kern2.kc1_39 -43 public.kern2.kc1_4 -12 public.kern2.kc1_40 -26 public.kern2.kc1_41 -48 public.kern2.kc1_42 -80 public.kern2.kc1_43 -26 public.kern2.kc1_44 -50 public.kern2.kc1_45 -32 public.kern2.kc1_46 -29 public.kern2.kc1_47 -24 public.kern2.kc1_48 -63 public.kern2.kc1_49 -53 public.kern2.kc1_50 -30 public.kern2.kc1_51 -58 public.kern2.kc1_52 -47 public.kern2.kc1_58 -25 public.kern2.kc1_59 -24 public.kern2.kc1_60 31 public.kern2.kc1_61 -12 public.kern2.kc1_62 -7 public.kern2.kc1_7 -19 public.kern1.kc1_2 public.kern2.kc1_21 -15 public.kern2.kc1_22 -14 public.kern2.kc1_23 -14 public.kern2.kc1_36 -5 public.kern1.kc1_20 public.kern2.kc1_15 -28 public.kern2.kc1_16 -25 public.kern2.kc1_17 -31 public.kern2.kc1_18 -23 public.kern2.kc1_19 -12 public.kern2.kc1_20 -13 public.kern2.kc1_21 -60 public.kern2.kc1_22 -59 public.kern2.kc1_23 -59 public.kern2.kc1_27 -30 public.kern2.kc1_3 -23 public.kern2.kc1_5 6 public.kern2.kc1_7 -30 public.kern1.kc1_21 public.kern2.kc1_15 -90 public.kern2.kc1_16 -89 public.kern2.kc1_17 -88 public.kern2.kc1_18 -89 public.kern2.kc1_19 -60 public.kern2.kc1_20 -68 public.kern2.kc1_21 -60 public.kern2.kc1_22 -61 public.kern2.kc1_23 -61 public.kern2.kc1_27 -59 public.kern2.kc1_29 -51 public.kern2.kc1_3 -55 public.kern2.kc1_34 -36 public.kern2.kc1_35 11 public.kern2.kc1_36 -11 public.kern2.kc1_38 11 public.kern2.kc1_39 -69 public.kern2.kc1_4 -18 public.kern2.kc1_40 -57 public.kern2.kc1_41 -77 public.kern2.kc1_42 -83 public.kern2.kc1_43 -27 public.kern2.kc1_44 -35 public.kern2.kc1_45 -28 public.kern2.kc1_46 -43 public.kern2.kc1_47 -31 public.kern2.kc1_48 -79 public.kern2.kc1_49 -75 public.kern2.kc1_50 -62 public.kern2.kc1_51 -75 public.kern2.kc1_52 -64 public.kern2.kc1_58 -34 public.kern2.kc1_59 -38 public.kern2.kc1_60 27 public.kern2.kc1_61 -14 public.kern2.kc1_62 -8 public.kern2.kc1_7 -35 public.kern1.kc1_22 public.kern2.kc1_19 -10 public.kern2.kc1_2 -12 public.kern2.kc1_20 -10 public.kern2.kc1_21 -41 public.kern2.kc1_22 -41 public.kern2.kc1_23 -39 public.kern2.kc1_24 -10 public.kern2.kc1_36 -5 public.kern2.kc1_37 -8 public.kern2.kc1_39 -5 public.kern2.kc1_41 -8 public.kern2.kc1_49 -5 public.kern2.kc1_50 -7 public.kern1.kc1_23 public.kern2.kc1_1 -16 public.kern2.kc1_10 -32 public.kern2.kc1_11 -22 public.kern2.kc1_12 -44 public.kern2.kc1_25 -13 public.kern2.kc1_29 -22 public.kern2.kc1_30 -10 public.kern2.kc1_31 -12 public.kern2.kc1_32 -12 public.kern2.kc1_33 -62 public.kern2.kc1_35 -7 public.kern2.kc1_42 -39 public.kern2.kc1_44 -45 public.kern2.kc1_54 -10 public.kern2.kc1_6 -9 public.kern2.kc1_8 -15 public.kern2.kc1_9 -6 public.kern1.kc1_3 public.kern2.kc1_10 -5 public.kern2.kc1_11 -5 public.kern2.kc1_12 -6 public.kern2.kc1_14 -12 public.kern2.kc1_19 -6 public.kern2.kc1_20 -5 public.kern2.kc1_21 -25 public.kern2.kc1_22 -24 public.kern2.kc1_23 -24 public.kern2.kc1_37 -5 public.kern2.kc1_41 -6 public.kern1.kc1_4 public.kern2.kc1_15 -27 public.kern2.kc1_16 -26 public.kern2.kc1_17 -23 public.kern2.kc1_18 -26 public.kern2.kc1_19 -6 public.kern2.kc1_20 -8 public.kern2.kc1_21 -8 public.kern2.kc1_22 -8 public.kern2.kc1_23 -8 public.kern2.kc1_27 -11 public.kern2.kc1_29 -47 public.kern2.kc1_3 -9 public.kern2.kc1_34 -11 public.kern2.kc1_36 -5 public.kern2.kc1_39 -17 public.kern2.kc1_40 -14 public.kern2.kc1_41 -21 public.kern2.kc1_42 -69 public.kern2.kc1_43 -11 public.kern2.kc1_44 -47 public.kern2.kc1_45 -21 public.kern2.kc1_46 -13 public.kern2.kc1_47 -8 public.kern2.kc1_48 -30 public.kern2.kc1_49 -26 public.kern2.kc1_50 -6 public.kern2.kc1_51 -25 public.kern2.kc1_52 -20 public.kern1.kc1_5 public.kern2.kc1_10 -19 public.kern2.kc1_11 -13 public.kern2.kc1_12 -26 public.kern2.kc1_13 -10 public.kern2.kc1_14 -17 public.kern2.kc1_21 -11 public.kern2.kc1_22 -10 public.kern2.kc1_23 -11 public.kern2.kc1_28 -16 public.kern2.kc1_29 -6 public.kern2.kc1_40 -11 public.kern2.kc1_42 -5 public.kern2.kc1_8 -15 public.kern1.kc1_6 public.kern2.kc1_15 -21 public.kern2.kc1_16 -20 public.kern2.kc1_17 -20 public.kern2.kc1_18 -20 public.kern2.kc1_19 -15 public.kern2.kc1_20 -13 public.kern2.kc1_21 -17 public.kern2.kc1_22 -17 public.kern2.kc1_23 -17 public.kern2.kc1_27 -18 public.kern2.kc1_3 -11 public.kern2.kc1_37 -5 public.kern2.kc1_48 -9 public.kern2.kc1_49 -12 public.kern2.kc1_50 -7 public.kern2.kc1_51 -7 public.kern2.kc1_52 -5 public.kern2.kc1_7 -9 public.kern1.kc1_7 public.kern2.kc1_15 -24 public.kern2.kc1_16 -23 public.kern2.kc1_17 -21 public.kern2.kc1_18 -23 public.kern2.kc1_19 -20 public.kern2.kc1_20 -16 public.kern2.kc1_21 -16 public.kern2.kc1_22 -16 public.kern2.kc1_23 -16 public.kern2.kc1_27 -16 public.kern2.kc1_29 -10 public.kern2.kc1_3 -8 public.kern2.kc1_34 -19 public.kern2.kc1_36 -11 public.kern2.kc1_37 -7 public.kern2.kc1_39 -18 public.kern2.kc1_40 -6 public.kern2.kc1_41 -21 public.kern2.kc1_42 -9 public.kern2.kc1_43 -11 public.kern2.kc1_44 -8 public.kern2.kc1_48 -21 public.kern2.kc1_49 -22 public.kern2.kc1_50 -14 public.kern2.kc1_51 -21 public.kern2.kc1_52 -16 public.kern2.kc1_7 -9 public.kern1.kc1_8 public.kern2.kc1_15 -33 public.kern2.kc1_16 -30 public.kern2.kc1_17 -38 public.kern2.kc1_18 -28 public.kern2.kc1_19 -9 public.kern2.kc1_20 -13 public.kern2.kc1_21 -72 public.kern2.kc1_22 -72 public.kern2.kc1_23 -70 public.kern2.kc1_27 -38 public.kern2.kc1_3 -35 public.kern2.kc1_49 -5 public.kern2.kc1_5 12 public.kern2.kc1_7 -52 public.kern1.kc1_9 public.kern2.kc1_1 -67 public.kern2.kc1_10 -76 public.kern2.kc1_11 -55 public.kern2.kc1_12 -65 public.kern2.kc1_13 -40 public.kern2.kc1_14 -18 public.kern2.kc1_2 -77 public.kern2.kc1_21 -45 public.kern2.kc1_22 -45 public.kern2.kc1_23 -44 public.kern2.kc1_24 -24 public.kern2.kc1_25 -69 public.kern2.kc1_26 -71 public.kern2.kc1_28 -13 public.kern2.kc1_53 -13 public.kern2.kc1_6 -6 public.kern2.kc1_8 -73 public.kern2.kc1_9 -12 public.kern1.kc2_0 public.kern2.kc2_1 -13 public.kern2.kc2_2 -6 public.kern2.kc2_3 -21 public.kern2.kc2_4 -73 public.kern2.kc2_5 -38 public.kern2.kc2_6 -19 public.kern2.kc2_7 -11 public.kern2.kc2_8 -11 public.kern2.kc2_9 -11 public.kern1.kc2_1 public.kern2.kc2_1 -29 public.kern2.kc2_10 -25 public.kern2.kc2_11 -11 public.kern2.kc2_12 -14 public.kern2.kc2_13 -21 public.kern2.kc2_14 -24 public.kern2.kc2_15 -25 public.kern2.kc2_16 -23 public.kern2.kc2_3 -23 public.kern2.kc2_4 -93 public.kern2.kc2_5 -37 public.kern2.kc2_6 -26 public.kern2.kc2_7 -9 public.kern2.kc2_8 -9 public.kern2.kc2_9 -9 public.kern1.kc2_10 public.kern2.kc2_17 -8 public.kern2.kc2_2 -10 public.kern2.kc2_3 -15 public.kern2.kc2_4 -5 public.kern2.kc2_7 -5 public.kern2.kc2_8 -5 public.kern2.kc2_9 -6 public.kern1.kc2_11 public.kern2.kc2_1 -11 public.kern2.kc2_10 -10 public.kern2.kc2_15 -9 public.kern2.kc2_16 -9 public.kern2.kc2_2 -10 public.kern2.kc2_24 -19 public.kern2.kc2_25 -59 public.kern2.kc2_26 -62 public.kern2.kc2_27 -47 public.kern2.kc2_28 -10 public.kern2.kc2_3 -25 public.kern2.kc2_4 -72 public.kern2.kc2_5 -41 public.kern2.kc2_6 -20 public.kern2.kc2_7 -13 public.kern2.kc2_8 -13 public.kern2.kc2_9 -13 public.kern1.kc2_12 public.kern2.kc2_1 -30 public.kern2.kc2_10 -15 public.kern2.kc2_11 -8 public.kern2.kc2_12 -10 public.kern2.kc2_13 -20 public.kern2.kc2_14 -23 public.kern2.kc2_15 -15 public.kern2.kc2_16 -15 public.kern2.kc2_29 -10 public.kern2.kc2_3 -24 public.kern2.kc2_4 -93 public.kern2.kc2_5 -39 public.kern2.kc2_6 -27 public.kern2.kc2_7 -11 public.kern2.kc2_8 -10 public.kern2.kc2_9 -11 public.kern1.kc2_13 public.kern2.kc2_1 -31 public.kern2.kc2_10 -13 public.kern2.kc2_12 -15 public.kern2.kc2_13 -21 public.kern2.kc2_14 -24 public.kern2.kc2_15 -13 public.kern2.kc2_16 -13 public.kern2.kc2_29 -11 public.kern2.kc2_3 -24 public.kern2.kc2_30 -4 public.kern2.kc2_31 -4 public.kern2.kc2_4 -94 public.kern2.kc2_5 -38 public.kern2.kc2_6 -28 public.kern2.kc2_7 -9 public.kern2.kc2_8 -9 public.kern2.kc2_9 -8 public.kern1.kc2_14 public.kern2.kc2_13 -11 public.kern2.kc2_3 -18 public.kern2.kc2_32 42 public.kern2.kc2_4 -71 public.kern1.kc2_15 public.kern2.kc2_1 -24 public.kern2.kc2_12 -23 public.kern2.kc2_13 -17 public.kern2.kc2_17 -23 public.kern2.kc2_18 -8 public.kern2.kc2_19 -8 public.kern2.kc2_21 -4 public.kern2.kc2_22 -8 public.kern2.kc2_3 -15 public.kern2.kc2_33 -16 public.kern2.kc2_34 -12 public.kern2.kc2_35 -10 public.kern2.kc2_4 -77 public.kern2.kc2_5 -20 public.kern2.kc2_6 -22 public.kern1.kc2_16 public.kern2.kc2_1 -24 public.kern2.kc2_13 -12 public.kern2.kc2_3 -26 public.kern2.kc2_4 -73 public.kern2.kc2_5 -31 public.kern2.kc2_6 -25 public.kern1.kc2_17 public.kern2.kc2_1 -13 public.kern2.kc2_17 -19 public.kern2.kc2_23 -20 public.kern2.kc2_3 -10 public.kern2.kc2_4 -52 public.kern2.kc2_5 -15 public.kern2.kc2_6 -17 public.kern1.kc2_18 public.kern2.kc2_1 -16 public.kern2.kc2_17 -9 public.kern2.kc2_2 -8 public.kern2.kc2_3 -21 public.kern2.kc2_4 -65 public.kern2.kc2_5 -33 public.kern2.kc2_6 -21 public.kern1.kc2_19 public.kern2.kc2_1 -25 public.kern2.kc2_12 -42 public.kern2.kc2_13 -18 public.kern2.kc2_17 -22 public.kern2.kc2_18 -20 public.kern2.kc2_19 -20 public.kern2.kc2_20 -8 public.kern2.kc2_21 -13 public.kern2.kc2_22 -20 public.kern2.kc2_23 -16 public.kern2.kc2_3 -11 public.kern2.kc2_30 -5 public.kern2.kc2_31 -5 public.kern2.kc2_33 -17 public.kern2.kc2_34 -34 public.kern2.kc2_35 -20 public.kern2.kc2_36 -11 public.kern2.kc2_37 -8 public.kern2.kc2_38 -5 public.kern2.kc2_4 -65 public.kern2.kc2_5 -14 public.kern2.kc2_6 -22 public.kern1.kc2_2 public.kern2.kc2_1 -18 public.kern2.kc2_13 -19 public.kern2.kc2_17 -19 public.kern2.kc2_18 -4 public.kern2.kc2_2 -9 public.kern2.kc2_3 -20 public.kern2.kc2_4 -86 public.kern2.kc2_5 -22 public.kern2.kc2_6 -20 public.kern1.kc2_20 public.kern2.kc2_1 -25 public.kern2.kc2_12 -42 public.kern2.kc2_13 -18 public.kern2.kc2_17 -23 public.kern2.kc2_18 -21 public.kern2.kc2_19 -21 public.kern2.kc2_20 -9 public.kern2.kc2_21 -14 public.kern2.kc2_22 -21 public.kern2.kc2_23 -17 public.kern2.kc2_3 -12 public.kern2.kc2_30 -6 public.kern2.kc2_31 -6 public.kern2.kc2_33 -18 public.kern2.kc2_34 -34 public.kern2.kc2_35 -21 public.kern2.kc2_36 -12 public.kern2.kc2_37 -8 public.kern2.kc2_38 -5 public.kern2.kc2_4 -66 public.kern2.kc2_5 -14 public.kern2.kc2_6 -23 public.kern1.kc2_21 public.kern2.kc2_17 -28 public.kern2.kc2_18 -25 public.kern2.kc2_19 -25 public.kern2.kc2_2 -22 public.kern2.kc2_20 -7 public.kern2.kc2_21 -23 public.kern2.kc2_22 -26 public.kern2.kc2_23 -19 public.kern2.kc2_3 -15 public.kern2.kc2_4 -64 public.kern2.kc2_5 -12 public.kern1.kc2_22 public.kern2.kc2_1 -24 public.kern2.kc2_12 -42 public.kern2.kc2_13 -18 public.kern2.kc2_17 -22 public.kern2.kc2_18 -20 public.kern2.kc2_19 -20 public.kern2.kc2_20 -8 public.kern2.kc2_21 -13 public.kern2.kc2_22 -20 public.kern2.kc2_23 -16 public.kern2.kc2_3 -12 public.kern2.kc2_30 -6 public.kern2.kc2_31 -6 public.kern2.kc2_33 -18 public.kern2.kc2_34 -34 public.kern2.kc2_35 -20 public.kern2.kc2_36 -11 public.kern2.kc2_37 -8 public.kern2.kc2_38 -5 public.kern2.kc2_4 -66 public.kern2.kc2_5 -13 public.kern2.kc2_6 -21 public.kern1.kc2_23 public.kern2.kc2_1 -21 public.kern2.kc2_13 -8 public.kern2.kc2_17 -17 public.kern2.kc2_23 -13 public.kern2.kc2_3 -24 public.kern2.kc2_4 -79 public.kern2.kc2_5 -25 public.kern2.kc2_6 -23 public.kern1.kc2_24 public.kern2.kc2_10 -10 public.kern2.kc2_15 -9 public.kern2.kc2_16 -8 public.kern2.kc2_30 -7 public.kern1.kc2_25 public.kern2.kc2_10 -18 public.kern2.kc2_15 -18 public.kern2.kc2_16 -17 public.kern2.kc2_34 -21 public.kern1.kc2_26 public.kern2.kc2_10 -12 public.kern2.kc2_15 -12 public.kern2.kc2_16 -11 public.kern1.kc2_3 public.kern2.kc2_2 -6 public.kern2.kc2_3 -10 public.kern1.kc2_4 public.kern2.kc2_1 -23 public.kern2.kc2_13 -14 public.kern2.kc2_2 -6 public.kern2.kc2_3 -22 public.kern2.kc2_4 -85 public.kern2.kc2_5 -32 public.kern2.kc2_6 -23 public.kern1.kc2_5 public.kern2.kc2_1 19 public.kern2.kc2_17 -26 public.kern2.kc2_18 -16 public.kern2.kc2_19 -16 public.kern2.kc2_20 -4 public.kern2.kc2_21 -11 public.kern2.kc2_22 -15 public.kern2.kc2_23 -19 public.kern2.kc2_3 19 public.kern2.kc2_4 58 public.kern2.kc2_6 8 public.kern1.kc2_6 public.kern2.kc2_17 -13 public.kern2.kc2_18 -4 public.kern2.kc2_19 -4 public.kern2.kc2_22 -4 public.kern2.kc2_3 -14 public.kern2.kc2_4 -71 public.kern2.kc2_5 -18 public.kern1.kc2_7 public.kern2.kc2_17 -10 public.kern2.kc2_2 -10 public.kern2.kc2_3 -20 public.kern2.kc2_4 -12 public.kern2.kc2_5 -11 public.kern2.kc2_6 -15 public.kern1.kc2_8 public.kern2.kc2_13 -8 public.kern2.kc2_3 -12 public.kern2.kc2_4 -8 public.kern1.kc2_9 public.kern2.kc2_12 7 public.kern2.kc2_17 -42 public.kern2.kc2_18 -43 public.kern2.kc2_19 -45 public.kern2.kc2_2 -27 public.kern2.kc2_20 -8 public.kern2.kc2_21 -43 public.kern2.kc2_22 -40 public.kern2.kc2_23 -25 public.kern2.kc2_3 -21 public.kern2.kc2_4 -71 public.kern2.kc2_5 -15 public.kern1.kc3_0 public.kern2.kc3_1 -21 public.kern2.kc3_10 -27 public.kern2.kc3_11 -11 public.kern2.kc3_12 -15 public.kern2.kc3_13 -20 public.kern2.kc3_14 -8 public.kern2.kc3_15 -74 public.kern2.kc3_16 -38 public.kern2.kc3_2 -78 public.kern2.kc3_3 -40 public.kern2.kc3_4 -44 public.kern2.kc3_5 -13 public.kern2.kc3_6 -21 public.kern2.kc3_7 -49 public.kern2.kc3_8 -12 public.kern2.kc3_9 -20 public.kern1.kc3_1 public.kern2.kc3_10 -12 public.kern2.kc3_15 -65 public.kern2.kc3_17 23 public.kern2.kc3_18 22 public.kern2.kc3_19 21 public.kern2.kc3_7 -39 public.kern2.kc3_9 -8 public.kern1.kc3_10 public.kern2.kc3_15 -31 public.kern2.kc3_17 -14 public.kern2.kc3_18 -13 public.kern2.kc3_19 -13 public.kern2.kc3_20 -16 public.kern2.kc3_21 -14 public.kern2.kc3_22 -18 public.kern2.kc3_23 -19 public.kern2.kc3_24 -61 public.kern2.kc3_25 -46 public.kern2.kc3_26 -37 public.kern2.kc3_27 -30 public.kern2.kc3_28 -63 public.kern2.kc3_29 -27 public.kern2.kc3_36 -15 public.kern2.kc3_38 -39 public.kern2.kc3_40 -11 public.kern2.kc3_42 -36 public.kern2.kc3_7 -21 public.kern1.kc3_2 public.kern2.kc3_15 -31 public.kern2.kc3_17 -20 public.kern2.kc3_18 -19 public.kern2.kc3_19 -20 public.kern2.kc3_20 -10 public.kern2.kc3_21 -8 public.kern2.kc3_22 -13 public.kern2.kc3_23 -14 public.kern2.kc3_24 -61 public.kern2.kc3_25 -41 public.kern2.kc3_26 -32 public.kern2.kc3_27 -29 public.kern2.kc3_28 -60 public.kern2.kc3_29 -26 public.kern2.kc3_30 -11 public.kern2.kc3_31 -9 public.kern2.kc3_32 -13 public.kern2.kc3_33 -8 public.kern2.kc3_34 -9 public.kern2.kc3_35 -10 public.kern2.kc3_36 -25 public.kern2.kc3_37 -10 public.kern2.kc3_7 -18 public.kern1.kc3_3 public.kern2.kc3_17 -33 public.kern2.kc3_18 -33 public.kern2.kc3_19 -32 public.kern2.kc3_24 -44 public.kern2.kc3_25 -62 public.kern2.kc3_26 -52 public.kern2.kc3_28 -42 public.kern2.kc3_38 -78 public.kern2.kc3_39 -16 public.kern2.kc3_40 -22 public.kern2.kc3_41 -90 public.kern2.kc3_42 -94 public.kern1.kc3_4 public.kern2.kc3_10 -41 public.kern2.kc3_11 -39 public.kern2.kc3_12 -41 public.kern2.kc3_14 -35 public.kern2.kc3_15 -54 public.kern2.kc3_17 -15 public.kern2.kc3_18 -15 public.kern2.kc3_19 -15 public.kern2.kc3_30 -17 public.kern2.kc3_35 -24 public.kern2.kc3_36 -11 public.kern2.kc3_37 -28 public.kern2.kc3_39 -18 public.kern2.kc3_43 -16 public.kern2.kc3_44 -10 public.kern2.kc3_45 -17 public.kern2.kc3_46 -16 public.kern2.kc3_47 -17 public.kern2.kc3_7 -47 public.kern2.kc3_8 -38 public.kern2.kc3_9 -44 public.kern1.kc3_5 public.kern2.kc3_24 -34 public.kern2.kc3_25 -30 public.kern2.kc3_26 -23 public.kern2.kc3_28 -37 public.kern2.kc3_40 -8 public.kern1.kc3_6 public.kern2.kc3_15 17 public.kern2.kc3_17 -19 public.kern2.kc3_18 -18 public.kern2.kc3_19 -18 public.kern2.kc3_24 -25 public.kern2.kc3_25 -36 public.kern2.kc3_26 -31 public.kern2.kc3_27 10 public.kern2.kc3_28 -31 public.kern2.kc3_38 -40 public.kern2.kc3_40 -16 public.kern2.kc3_7 12 public.kern1.kc3_7 public.kern2.kc3_10 -29 public.kern2.kc3_11 -14 public.kern2.kc3_12 -18 public.kern2.kc3_13 -22 public.kern2.kc3_14 -10 public.kern2.kc3_15 -74 public.kern2.kc3_2 -90 public.kern2.kc3_28 8 public.kern2.kc3_7 -48 public.kern2.kc3_8 -14 public.kern2.kc3_9 -22 public.kern1.kc3_8 public.kern2.kc3_10 -29 public.kern2.kc3_11 -20 public.kern2.kc3_12 -23 public.kern2.kc3_13 -29 public.kern2.kc3_14 -17 public.kern2.kc3_15 -77 public.kern2.kc3_16 -55 public.kern2.kc3_2 -94 public.kern2.kc3_25 16 public.kern2.kc3_26 14 public.kern2.kc3_28 26 public.kern2.kc3_35 -12 public.kern2.kc3_37 -9 public.kern2.kc3_48 -18 public.kern2.kc3_7 -54 public.kern2.kc3_8 -21 public.kern2.kc3_9 -29 public.kern1.kc3_9 public.kern2.kc3_24 -39 public.kern2.kc3_25 -31 public.kern2.kc3_26 -24 public.kern2.kc3_28 -43 public.kern1.kc4_0 public.kern2.kc4_1 -5 public.kern2.kc4_2 -5 public.kern1.kc5_0 public.kern2.kc5_1 -21 public.kern2.kc5_10 -21 public.kern2.kc5_11 -21 public.kern2.kc5_12 -22 public.kern2.kc5_13 -25 public.kern2.kc5_14 -25 public.kern2.kc5_15 -16 public.kern2.kc5_16 -19 public.kern2.kc5_2 98 public.kern2.kc5_3 -22 public.kern2.kc5_4 -12 public.kern2.kc5_5 -24 public.kern2.kc5_6 -30 public.kern2.kc5_7 -28 public.kern2.kc5_8 -14 public.kern2.kc5_9 -30 public.kern1.kc5_1 public.kern2.kc5_1 -21 public.kern2.kc5_10 -24 public.kern2.kc5_11 -21 public.kern2.kc5_12 -21 public.kern2.kc5_13 -22 public.kern2.kc5_14 -22 public.kern2.kc5_15 -16 public.kern2.kc5_16 -22 public.kern2.kc5_17 -15 public.kern2.kc5_18 -12 public.kern2.kc5_19 -14 public.kern2.kc5_2 108 public.kern2.kc5_20 -13 public.kern2.kc5_21 -13 public.kern2.kc5_3 -21 public.kern2.kc5_4 -17 public.kern2.kc5_5 -25 public.kern2.kc5_6 -28 public.kern2.kc5_7 -26 public.kern2.kc5_8 -19 public.kern2.kc5_9 -27 public.kern1.kc5_2 public.kern2.kc5_2 67 public.kern2.kc5_6 -10 public.kern2.kc5_9 -10 amiri-1.000/sources/AmiriLatin-Regular.ufo/layercontents.plist000066400000000000000000000004231434272261000244650ustar00rootroot00000000000000 public.default glyphs amiri-1.000/sources/AmiriLatin-Regular.ufo/lib.plist000066400000000000000000001117611434272261000223510ustar00rootroot00000000000000 public.glyphOrder space quotedbl numbersign dollar percent ampersand quotesingle asterisk plus comma hyphen zero one two three four five six seven eight nine colon semicolon less equal greater question at A B C D E F G H I J K L M N O P Q R S T U V W X Y Z asciicircum underscore grave a b c d e f g h i j k l m n o p q r s t u v w x y z asciitilde uni00A0 exclamdown cent sterling currency yen brokenbar section dieresis copyright ordfeminine logicalnot uni00AD registered macron degree plusminus uni00B2 uni00B3 acute mu paragraph periodcentered cedilla uni00B9 ordmasculine onequarter onehalf threequarters questiondown Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis multiply Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn germandbls agrave aacute acircumflex atilde adieresis aring ae ccedilla egrave eacute ecircumflex edieresis igrave iacute icircumflex idieresis eth ntilde ograve oacute ocircumflex otilde odieresis divide oslash ugrave uacute ucircumflex udieresis yacute thorn ydieresis Amacron amacron Abreve abreve Aogonek aogonek Cacute cacute Ccircumflex ccircumflex Cdotaccent cdotaccent Ccaron ccaron Dcaron dcaron Dcroat dcroat Emacron emacron Ebreve ebreve Edotaccent edotaccent Eogonek eogonek Ecaron ecaron Gcircumflex gcircumflex Gbreve gbreve Gdotaccent gdotaccent uni0122 uni0123 Hcircumflex hcircumflex Hbar hbar Itilde itilde Imacron imacron Ibreve ibreve Iogonek iogonek Idotaccent dotlessi IJ ij Jcircumflex jcircumflex uni0136 uni0137 kgreenlandic Lacute lacute uni013B uni013C Lcaron lcaron Ldot ldot Lslash lslash Nacute nacute uni0145 uni0146 Ncaron ncaron napostrophe Eng eng Omacron omacron Obreve obreve Ohungarumlaut ohungarumlaut OE oe Racute racute uni0156 uni0157 Rcaron rcaron Sacute sacute Scircumflex scircumflex Scedilla scedilla Scaron scaron uni0162 uni0163 Tcaron tcaron Tbar tbar Utilde utilde Umacron umacron Ubreve ubreve Uring uring Uhungarumlaut uhungarumlaut Uogonek uogonek Wcircumflex wcircumflex Ycircumflex ycircumflex Ydieresis Zacute zacute Zdotaccent zdotaccent Zcaron zcaron longs Gcaron gcaron uni0237 uni02BB uni02BC uni02BE uni02BF circumflex caron breve dotaccent ring ogonek tilde hungarumlaut gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030C uni0312 uni0315 uni0325 uni0326 uni0327 uni0328 uni1E02 uni1E03 uni1E0A uni1E0B uni1E0C uni1E0D uni1E0E uni1E0F uni1E10 uni1E11 uni1E1E uni1E1F uni1E24 uni1E25 uni1E28 uni1E29 uni1E2A uni1E2B uni1E40 uni1E41 uni1E56 uni1E57 uni1E60 uni1E61 uni1E62 uni1E63 uni1E6A uni1E6B uni1E6C uni1E6D uni1E6E uni1E6F Wgrave wgrave Wacute wacute Wdieresis wdieresis uni1E92 uni1E93 uni1E96 uni1E97 Ygrave ygrave uni2010 uni2011 figuredash endash emdash uni2015 quoteleft quoteright quotesinglbase quotereversed quotedblleft quotedblright quotedblbase uni201F dagger daggerdbl bullet onedotenleader ellipsis uni202F perthousand minute second uni2038 guilsinglleft guilsinglright uni203E uni2042 fraction uni2070 uni2074 uni2075 uni2076 uni2077 uni2078 uni2079 Euro minus uni2213 radical exclam.latn parenleft.latn parenright.latn slash.latn bracketleft.latn backslash.latn bracketright.latn braceleft.latn bar.latn braceright.latn guillemotleft.latn guillemotright.latn f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j iogonek.dotless gravecomb.cap acutecomb.cap uni0302.cap uni030A.cap tildecomb.cap uni0304.cap uni0306.cap uni0327.cap uni0308.narrow uni0308.cap uni030C.cap zero.prop one.prop two.prop three.prop four.prop five.prop six.prop seven.prop eight.prop nine.prop period.latn i.TRK zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr public.openTypeCategories A base AE base Aacute base Abreve base Acircumflex base Adieresis base Agrave base Amacron base Aogonek base Aring base Atilde base B base C base Cacute base Ccaron base Ccedilla base Ccircumflex base Cdotaccent base D base Dcaron base Dcroat base E base Eacute base Ebreve base Ecaron base Ecircumflex base Edieresis base Edotaccent base Egrave base Emacron base Eng base Eogonek base Eth base Euro base F base G base Gbreve base Gcaron base Gcircumflex base Gdotaccent base H base Hbar base Hcircumflex base I base IJ base Iacute base Ibreve base Icircumflex base Idieresis base Idotaccent base Igrave base Imacron base Iogonek base Itilde base J base Jcircumflex base K base L base Lacute base Lcaron base Ldot base Lslash base M base N base Nacute base Ncaron base Ntilde base O base OE base Oacute base Obreve base Ocircumflex base Odieresis base Ograve base Ohungarumlaut base Omacron base Oslash base Otilde base P base Q base R base Racute base Rcaron base S base Sacute base Scaron base Scedilla base Scircumflex base T base Tbar base Tcaron base Thorn base U base Uacute base Ubreve base Ucircumflex base Udieresis base Ugrave base Uhungarumlaut base Umacron base Uogonek base Uring base Utilde base V base W base Wacute base Wcircumflex base Wdieresis base Wgrave base X base Y base Yacute base Ycircumflex base Ydieresis base Ygrave base Z base Zacute base Zcaron base Zdotaccent base a base aacute base abreve base acircumflex base acute base acutecomb mark acutecomb.cap mark adieresis base ae base agrave base amacron base ampersand base aogonek base aring base asciicircum base asciitilde base asterisk base at base atilde base b base backslash.latn base bar.latn base braceleft.latn base braceright.latn base bracketleft.latn base bracketright.latn base breve base brokenbar base bullet base c base cacute base caron base ccaron base ccedilla base ccircumflex base cdotaccent base cedilla base cent base circumflex base colon base comma base copyright base currency base d base dagger base daggerdbl base dcaron base dcroat base degree base dieresis base divide base dollar base dotaccent base dotlessi base e base eacute base ebreve base ecaron base ecircumflex base edieresis base edotaccent base egrave base eight base eight.medium base eight.numr base eight.prop base eight.small base ellipsis base emacron base emdash base endash base eng base eogonek base equal base eth base exclam.latn base exclamdown base f base f_b base f_f base f_f_b base f_f_h base f_f_i base f_f_j base f_f_k base f_f_l base f_h base f_i base f_j base f_k base f_l base figuredash base five base five.medium base five.numr base five.prop base five.small base four base four.medium base four.numr base four.prop base four.small base fraction base g base gbreve base gcaron base gcircumflex base gdotaccent base germandbls base grave base gravecomb mark gravecomb.cap mark greater base guillemotleft.latn base guillemotright.latn base guilsinglleft base guilsinglright base h base hbar base hcircumflex base hungarumlaut base hyphen base i base i.TRK base iacute base ibreve base icircumflex base idieresis base igrave base ij base imacron base iogonek base iogonek.dotless base itilde base j base jcircumflex base k base kgreenlandic base l base lacute base lcaron base ldot base less base logicalnot base longs base lslash base m base macron base minus base minute base mu base multiply base n base nacute base napostrophe base ncaron base nine base nine.medium base nine.numr base nine.prop base nine.small base ntilde base numbersign base o base oacute base obreve base ocircumflex base odieresis base oe base ogonek base ograve base ohungarumlaut base omacron base one base one.medium base one.numr base one.prop base one.small base onedotenleader base onehalf base onequarter base ordfeminine base ordmasculine base oslash base otilde base p base paragraph base parenleft.latn base parenright.latn base percent base period.latn base periodcentered base perthousand base plus base plusminus base q base question base questiondown base quotedbl base quotedblbase base quotedblleft base quotedblright base quoteleft base quotereversed base quoteright base quotesinglbase base quotesingle base r base racute base radical base rcaron base registered base ring base s base sacute base scaron base scedilla base scircumflex base second base section base semicolon base seven base seven.medium base seven.numr base seven.prop base seven.small base six base six.medium base six.numr base six.prop base six.small base slash.latn base space base sterling base t base tbar base tcaron base thorn base three base three.medium base three.numr base three.prop base three.small base threequarters base tilde base tildecomb mark tildecomb.cap mark two base two.medium base two.numr base two.prop base two.small base u base uacute base ubreve base ucircumflex base udieresis base ugrave base uhungarumlaut base umacron base underscore base uni00A0 base uni00AD base uni00B2 base uni00B3 base uni00B9 base uni0122 base uni0123 base uni0136 base uni0137 base uni013B base uni013C base uni0145 base uni0146 base uni0156 base uni0157 base uni0162 base uni0163 base uni0237 base uni02BB base uni02BC base uni02BE base uni02BF base uni0302 mark uni0302.cap mark uni0304 mark uni0304.cap mark uni0305 mark uni0306 mark uni0306.cap mark uni0307 mark uni0308 mark uni0308.cap mark uni0308.narrow mark uni030A mark uni030A.cap mark uni030C mark uni030C.cap mark uni0312 mark uni0315 mark uni0325 mark uni0326 mark uni0327 mark uni0327.cap mark uni0328 mark uni1E02 base uni1E03 base uni1E0A base uni1E0B base uni1E0C base uni1E0D base uni1E0E base uni1E0F base uni1E10 base uni1E11 base uni1E1E base uni1E1F base uni1E24 base uni1E25 base uni1E28 base uni1E29 base uni1E2A base uni1E2B base uni1E40 base uni1E41 base uni1E56 base uni1E57 base uni1E60 base uni1E61 base uni1E62 base uni1E63 base uni1E6A base uni1E6B base uni1E6C base uni1E6D base uni1E6E base uni1E6F base uni1E92 base uni1E93 base uni1E96 base uni1E97 base uni2010 base uni2011 base uni2015 base uni201F base uni202F base uni2038 base uni203E base uni2042 base uni2070 base uni2074 base uni2075 base uni2076 base uni2077 base uni2078 base uni2079 base uni2213 base uogonek base uring base utilde base v base w base wacute base wcircumflex base wdieresis base wgrave base x base y base yacute base ycircumflex base ydieresis base yen base ygrave base z base zacute base zcaron base zdotaccent base zero base zero.medium base zero.numr base zero.prop base zero.small base amiri-1.000/sources/AmiriLatin-Regular.ufo/metainfo.plist000066400000000000000000000004641434272261000234020ustar00rootroot00000000000000 creator com.github.fonttools.ufoLib formatVersion 3 amiri-1.000/sources/README.latin000066400000000000000000000002311434272261000162610ustar00rootroot00000000000000This is a fork of Crimson Text typeface, SVN r160, with modification for use with as a Latin companion for Amiri. http://www.aldusleaf.org/crimson.php amiri-1.000/sources/basic.fea000066400000000000000000000556701434272261000160520ustar00rootroot00000000000000feature ccmp { # Unicode discourages the use of U+0673 directly. sub alef-ar wavyhamzabelow-ar by alefWavyhamzabelow-ar; sub behMeemabove-ar by beh-ar smallmeem.above; sub pehMeemabove-ar by peh-ar smallmeem.above; sub tehTehabove-ar by behDotless-ar smallteh.above; sub rehNoonabove-ar by reh-ar smallnoon.above; sub yehTwodotsbelowNoonabove-ar by yeh-ar smallnoon.above; } ccmp; feature init { lookupflag IgnoreMarks; sub yehKashmiri-ar by yehKashmiri-ar.init; sub yehHamzaabove-ar by yehHamzaabove-ar.init; sub beh-ar by beh-ar.init; sub teh-ar by teh-ar.init; sub theh-ar by theh-ar.init; sub jeem-ar by jeem-ar.init; sub hah-ar by hah-ar.init; sub khah-ar by khah-ar.init; sub seen-ar by seen-ar.init; sub sheen-ar by sheen-ar.init; sub sad-ar by sad-ar.init; sub dad-ar by dad-ar.init; sub tah-ar by tah-ar.init; sub zah-ar by zah-ar.init; sub ain-ar by ain-ar.init; sub ghain-ar by ghain-ar.init; sub kehehTwodotshorizontalabove-ar by kehehTwodotshorizontalabove-ar.init; sub kehehThreedotsbelow-ar by kehehThreedotsbelow-ar.init; sub yehFarsiVinverted-ar by yehFarsiVinverted-ar.init; sub yehFarsiTwodotsabove-ar by yehFarsiTwodotsabove-ar.init; sub yehFarsiThreedotsabove-ar by yehFarsiThreedotsabove-ar.init; sub feh-ar by feh-ar.init; sub qaf-ar by qaf-ar.init; sub kaf-ar by kaf-ar.init; sub lam-ar by lam-ar.init; sub meem-ar by meem-ar.init; sub noon-ar by noon-ar.init; sub heh-ar by heh-ar.init; sub alefMaksura-ar by alefMaksura-ar.init; sub yeh-ar by yeh-ar.init; sub behDotless-ar by behDotless-ar.init; sub qafDotless-ar by qafDotless-ar.init; sub highhamzaYeh-ar by highhamzaYeh-ar.init; sub tteh-ar by tteh-ar.init; sub tteheh-ar by tteheh-ar.init; sub beeh-ar by beeh-ar.init; sub tehRing-ar by tehRing-ar.init; sub tehThreedotsdown-ar by tehThreedotsdown-ar.init; sub peh-ar by peh-ar.init; sub teheh-ar by teheh-ar.init; sub beheh-ar by beheh-ar.init; sub hahHamzaabove-ar by hahHamzaabove-ar.init; sub hahTwodotsverticalabove-ar by hahTwodotsverticalabove-ar.init; sub nyeh-ar by nyeh-ar.init; sub dyeh-ar by dyeh-ar.init; sub hahThreedotsabove-ar by hahThreedotsabove-ar.init; sub tcheh-ar by tcheh-ar.init; sub tcheheh-ar by tcheheh-ar.init; sub seenDotbelowDotabove-ar by seenDotbelowDotabove-ar.init; sub seenThreedotsbelow-ar by seenThreedotsbelow-ar.init; sub sheenThreedotsbelow-ar by sheenThreedotsbelow-ar.init; sub sadTwodotsbelow-ar by sadTwodotsbelow-ar.init; sub sadThreedots-ar by sadThreedots-ar.init; sub tahThreedots-ar by tahThreedots-ar.init; sub ainThreedots-ar by ainThreedots-ar.init; sub fehDotless-ar by fehDotless-ar.init; sub fehDotmovedbelow-ar by fehDotmovedbelow-ar.init; sub fehDotbelow-ar by fehDotbelow-ar.init; sub veh-ar by veh-ar.init; sub fehThreedotsbelow-ar by fehThreedotsbelow-ar.init; sub peheh-ar by peheh-ar.init; sub qafDotabove-ar by qafDotabove-ar.init; sub qafThreedotsabove-ar by qafThreedotsabove-ar.init; sub keheh-ar by keheh-ar.init; sub kafswash-ar by kafswash-ar.init; sub kafRing-ar by kafRing-ar.init; sub kafDotabove-ar by kafDotabove-ar.init; sub ng-ar by ng-ar.init; sub kafThreedotsbelow-ar by kafThreedotsbelow-ar.init; sub gaf-ar by gaf-ar.init; sub gafRing-ar by gafRing-ar.init; sub ngoeh-ar by ngoeh-ar.init; sub gafTwodotsbelow-ar by gafTwodotsbelow-ar.init; sub gueh-ar by gueh-ar.init; sub gafThreedots-ar by gafThreedots-ar.init; sub lamVabove-ar by lamVabove-ar.init; sub lamDotabove-ar by lamDotabove-ar.init; sub lamThreedotsabove-ar by lamThreedotsabove-ar.init; sub lamThreedotsbelow-ar by lamThreedotsbelow-ar.init; sub noonDotbelow-ar by noonDotbelow-ar.init; sub noonghunna-ar by noonghunna-ar.init; sub rnoon-ar by rnoon-ar.init; sub noonRing-ar by noonRing-ar.init; sub noonThreedotsabove-ar by noonThreedotsabove-ar.init; sub hehDoachashmee-ar by hehDoachashmee-ar.init; sub tchehDotabove-ar by tchehDotabove-ar.init; sub hehgoal-ar by hehgoal-ar.init; sub hehgoalHamzaabove-ar by hehgoal-ar.init hamza.above; sub yehFarsi-ar by yehFarsi-ar.init; sub yehVabove-ar by yehVabove-ar.init; sub e-ar by e-ar.init; sub yehThreedotsbelow-ar by yehThreedotsbelow-ar.init; sub sheenDotbelow-ar by sheenDotbelow-ar.init; sub dadDotbelow-ar by dadDotbelow-ar.init; sub ghainDotbelow-ar by ghainDotbelow-ar.init; sub hehVinvertedabove-ar by hehVinvertedabove-ar.init; sub behThreedotshorizontalbelow-ar by behThreedotshorizontalbelow-ar.init; sub behThreedotsupabove-ar by behThreedotsupabove-ar.init; sub behThreedotsupbelow-ar by behThreedotsupbelow-ar.init; sub tehThreedotsupbelow-ar by tehThreedotsupbelow-ar.init; sub behTwodotsbelowDotabove-ar by behTwodotsbelowDotabove-ar.init; sub behVinvertedbelow-ar by behVinvertedbelow-ar.init; sub behVabove-ar by behVabove-ar.init; sub hahTwodotshorizontalabove-ar by hahTwodotshorizontalabove-ar.init; sub hahThreedotsupbelow-ar by hahThreedotsupbelow-ar.init; sub seenFourdotsabove-ar by seenFourdotsabove-ar.init; sub ainTwodotshorizontalabove-ar by ainTwodotshorizontalabove-ar.init; sub ainThreedotsdownabove-ar by ainThreedotsdownabove-ar.init; sub ainTwodotsverticalabove-ar by ainTwodotsverticalabove-ar.init; sub fehTwodotsbelow-ar by fehTwodotsbelow-ar.init; sub fehThreedotsupbelow-ar by fehThreedotsupbelow-ar.init; sub kehehDotabove-ar by kehehDotabove-ar.init; sub kehehThreedotsabove-ar by kehehThreedotsabove-ar.init; sub kehehThreedotsupbelow-ar by kehehThreedotsupbelow-ar.init; sub meemDotabove-ar by meemDotabove-ar.init; sub meemDotbelow-ar by meemDotbelow-ar.init; sub noonTwodotsbelow-ar by noonTwodotsbelow-ar.init; sub noonTahabove-ar by noonTahabove-ar.init; sub noonVabove-ar by noonVabove-ar.init; sub lamBar-ar by lamBar-ar.init; sub seenTwodotsverticalabove-ar by seenTwodotsverticalabove-ar.init; sub hahTahbelow-ar by hahTahbelow-ar.init; sub hahTahTwodotshorizontalabove-ar by hahTahTwodotshorizontalabove-ar.init; sub seenTahTwodotshorizontalabove-ar by seenTahTwodotshorizontalabove-ar.init; sub hahTahabove-ar by hahTahabove-ar.init; sub yehFarsiTwoabove-ar by yehFarsiTwoabove-ar.init; sub yehFarsiThreeabove-ar by yehFarsiThreeabove-ar.init; sub yehFarsiFourbelow-ar by yehFarsiFourbelow-ar.init; sub yehbarreeTwoabove-ar by yehFarsiTwoabove-ar.init; sub yehbarreeThreeabove-ar by yehFarsiThreeabove-ar.init; sub hahFourbelow-ar by hahFourbelow-ar.init; sub seenFourabove-ar by seenFourabove-ar.init; sub seenVinvertedabove-ar by seenVinvertedabove-ar.init; sub kafTwodotshorizontalabove-ar by kafTwodotshorizontalabove-ar.init; sub behVbelow-ar by behVbelow-ar.init; sub fehAfrican-ar by fehDotmovedbelow-ar.init; sub qafAfrican-ar by qafDotabove-ar.init; sub noonAfrican-ar by noon-ar.init; } init; feature medi { lookupflag IgnoreMarks; sub yehKashmiri-ar by yehKashmiri-ar.medi; sub yehHamzaabove-ar by yehHamzaabove-ar.medi; sub beh-ar by beh-ar.medi; sub teh-ar by teh-ar.medi; sub theh-ar by theh-ar.medi; sub jeem-ar by jeem-ar.medi; sub hah-ar by hah-ar.medi; sub khah-ar by khah-ar.medi; sub seen-ar by seen-ar.medi; sub sheen-ar by sheen-ar.medi; sub sad-ar by sad-ar.medi; sub dad-ar by dad-ar.medi; sub tah-ar by tah-ar.medi; sub zah-ar by zah-ar.medi; sub ain-ar by ain-ar.medi; sub ghain-ar by ghain-ar.medi; sub kehehTwodotshorizontalabove-ar by kehehTwodotshorizontalabove-ar.medi; sub kehehThreedotsbelow-ar by kehehThreedotsbelow-ar.medi; sub yehFarsiVinverted-ar by yehFarsiVinverted-ar.medi; sub yehFarsiTwodotsabove-ar by yehFarsiTwodotsabove-ar.medi; sub yehFarsiThreedotsabove-ar by yehFarsiThreedotsabove-ar.medi; sub feh-ar by feh-ar.medi; sub qaf-ar by qaf-ar.medi; sub kaf-ar by kaf-ar.medi; sub lam-ar by lam-ar.medi; sub meem-ar by meem-ar.medi; sub noon-ar by noon-ar.medi; sub heh-ar by heh-ar.medi; sub alefMaksura-ar by alefMaksura-ar.medi; sub yeh-ar by yeh-ar.medi; sub behDotless-ar by behDotless-ar.medi; sub qafDotless-ar by qafDotless-ar.medi; sub tteh-ar by tteh-ar.medi; sub tteheh-ar by tteheh-ar.medi; sub beeh-ar by beeh-ar.medi; sub tehRing-ar by tehRing-ar.medi; sub tehThreedotsdown-ar by tehThreedotsdown-ar.medi; sub peh-ar by peh-ar.medi; sub teheh-ar by teheh-ar.medi; sub beheh-ar by beheh-ar.medi; sub hahHamzaabove-ar by hahHamzaabove-ar.medi; sub hahTwodotsverticalabove-ar by hahTwodotsverticalabove-ar.medi; sub nyeh-ar by nyeh-ar.medi; sub dyeh-ar by dyeh-ar.medi; sub hahThreedotsabove-ar by hahThreedotsabove-ar.medi; sub tcheh-ar by tcheh-ar.medi; sub tcheheh-ar by tcheheh-ar.medi; sub seenDotbelowDotabove-ar by seenDotbelowDotabove-ar.medi; sub seenThreedotsbelow-ar by seenThreedotsbelow-ar.medi; sub sheenThreedotsbelow-ar by sheenThreedotsbelow-ar.medi; sub sadTwodotsbelow-ar by sadTwodotsbelow-ar.medi; sub sadThreedots-ar by sadThreedots-ar.medi; sub tahThreedots-ar by tahThreedots-ar.medi; sub ainThreedots-ar by ainThreedots-ar.medi; sub fehDotless-ar by fehDotless-ar.medi; sub fehDotmovedbelow-ar by fehDotmovedbelow-ar.medi; sub fehDotbelow-ar by fehDotbelow-ar.medi; sub veh-ar by veh-ar.medi; sub fehThreedotsbelow-ar by fehThreedotsbelow-ar.medi; sub peheh-ar by peheh-ar.medi; sub qafDotabove-ar by qafDotabove-ar.medi; sub qafThreedotsabove-ar by qafThreedotsabove-ar.medi; sub keheh-ar by keheh-ar.medi; sub kafswash-ar by kafswash-ar.medi; sub kafRing-ar by kafRing-ar.medi; sub kafDotabove-ar by kafDotabove-ar.medi; sub ng-ar by ng-ar.medi; sub kafThreedotsbelow-ar by kafThreedotsbelow-ar.medi; sub gaf-ar by gaf-ar.medi; sub gafRing-ar by gafRing-ar.medi; sub ngoeh-ar by ngoeh-ar.medi; sub gafTwodotsbelow-ar by gafTwodotsbelow-ar.medi; sub gueh-ar by gueh-ar.medi; sub gafThreedots-ar by gafThreedots-ar.medi; sub lamVabove-ar by lamVabove-ar.medi; sub lamDotabove-ar by lamDotabove-ar.medi; sub lamThreedotsabove-ar by lamThreedotsabove-ar.medi; sub lamThreedotsbelow-ar by lamThreedotsbelow-ar.medi; sub noonDotbelow-ar by noonDotbelow-ar.medi; sub noonghunna-ar by noonghunna-ar.medi; sub rnoon-ar by rnoon-ar.medi; sub noonRing-ar by noonRing-ar.medi; sub noonThreedotsabove-ar by noonThreedotsabove-ar.medi; sub hehDoachashmee-ar by hehDoachashmee-ar.medi; sub tchehDotabove-ar by tchehDotabove-ar.medi; sub hehgoal-ar by hehgoal-ar.medi; sub hehgoalHamzaabove-ar by hehgoal-ar.medi hamza.above; sub yehFarsi-ar by yehFarsi-ar.medi; sub yehVabove-ar by yehVabove-ar.medi; sub e-ar by e-ar.medi; sub yehThreedotsbelow-ar by yehThreedotsbelow-ar.medi; sub sheenDotbelow-ar by sheenDotbelow-ar.medi; sub dadDotbelow-ar by dadDotbelow-ar.medi; sub ghainDotbelow-ar by ghainDotbelow-ar.medi; sub hehVinvertedabove-ar by hehVinvertedabove-ar.medi; sub behThreedotshorizontalbelow-ar by behThreedotshorizontalbelow-ar.medi; sub behThreedotsupabove-ar by behThreedotsupabove-ar.medi; sub behThreedotsupbelow-ar by behThreedotsupbelow-ar.medi; sub tehThreedotsupbelow-ar by tehThreedotsupbelow-ar.medi; sub behTwodotsbelowDotabove-ar by behTwodotsbelowDotabove-ar.medi; sub behVinvertedbelow-ar by behVinvertedbelow-ar.medi; sub behVabove-ar by behVabove-ar.medi; sub hahTwodotshorizontalabove-ar by hahTwodotshorizontalabove-ar.medi; sub hahThreedotsupbelow-ar by hahThreedotsupbelow-ar.medi; sub seenFourdotsabove-ar by seenFourdotsabove-ar.medi; sub ainTwodotshorizontalabove-ar by ainTwodotshorizontalabove-ar.medi; sub ainThreedotsdownabove-ar by ainThreedotsdownabove-ar.medi; sub ainTwodotsverticalabove-ar by ainTwodotsverticalabove-ar.medi; sub fehTwodotsbelow-ar by fehTwodotsbelow-ar.medi; sub fehThreedotsupbelow-ar by fehThreedotsupbelow-ar.medi; sub kehehDotabove-ar by kehehDotabove-ar.medi; sub kehehThreedotsabove-ar by kehehThreedotsabove-ar.medi; sub kehehThreedotsupbelow-ar by kehehThreedotsupbelow-ar.medi; sub meemDotabove-ar by meemDotabove-ar.medi; sub meemDotbelow-ar by meemDotbelow-ar.medi; sub noonTwodotsbelow-ar by noonTwodotsbelow-ar.medi; sub noonTahabove-ar by noonTahabove-ar.medi; sub noonVabove-ar by noonVabove-ar.medi; sub lamBar-ar by lamBar-ar.medi; sub seenTwodotsverticalabove-ar by seenTwodotsverticalabove-ar.medi; sub hahTahbelow-ar by hahTahbelow-ar.medi; sub hahTahTwodotshorizontalabove-ar by hahTahTwodotshorizontalabove-ar.medi; sub seenTahTwodotshorizontalabove-ar by seenTahTwodotshorizontalabove-ar.medi; sub hahTahabove-ar by hahTahabove-ar.medi; sub yehFarsiTwoabove-ar by yehFarsiTwoabove-ar.medi; sub yehFarsiThreeabove-ar by yehFarsiThreeabove-ar.medi; sub yehFarsiFourbelow-ar by yehFarsiFourbelow-ar.medi; sub yehbarreeTwoabove-ar by yehFarsiTwoabove-ar.medi; sub yehbarreeThreeabove-ar by yehFarsiThreeabove-ar.medi; sub hahFourbelow-ar by hahFourbelow-ar.medi; sub seenFourabove-ar by seenFourabove-ar.medi; sub seenVinvertedabove-ar by seenVinvertedabove-ar.medi; sub kafTwodotshorizontalabove-ar by kafTwodotshorizontalabove-ar.medi; sub behVbelow-ar by behVbelow-ar.medi; sub fehAfrican-ar by fehDotmovedbelow-ar.medi; sub qafAfrican-ar by qafDotabove-ar.medi; sub noonAfrican-ar by noon-ar.medi; } medi; feature fina { lookupflag IgnoreMarks; sub yehKashmiri-ar by yehKashmiri-ar.fina; # sub uni0622 by uni0627.fina uni0653; # decompose sub alefMadda-ar by alefMadda-ar.fina; sub alefHamzaabove-ar by alefHamzaabove-ar.fina; sub wawHamzaabove-ar by wawHamzaabove-ar.fina; sub alefHamzabelow-ar by alefHamzabelow-ar.fina; sub yehHamzaabove-ar by yehHamzaabove-ar.fina; sub alef-ar by alef-ar.fina; sub beh-ar by beh-ar.fina; sub tehMarbuta-ar by tehMarbuta-ar.fina; sub teh-ar by teh-ar.fina; sub theh-ar by theh-ar.fina; sub jeem-ar by jeem-ar.fina; sub hah-ar by hah-ar.fina; sub khah-ar by khah-ar.fina; sub dal-ar by dal-ar.fina; sub thal-ar by thal-ar.fina; sub reh-ar by reh-ar.fina; sub zain-ar by zain-ar.fina; sub seen-ar by seen-ar.fina; sub sheen-ar by sheen-ar.fina; sub sad-ar by sad-ar.fina; sub dad-ar by dad-ar.fina; sub tah-ar by tah-ar.fina; sub zah-ar by zah-ar.fina; sub ain-ar by ain-ar.fina; sub ghain-ar by ghain-ar.fina; sub kehehTwodotshorizontalabove-ar by kehehTwodotshorizontalabove-ar.fina; sub kehehThreedotsbelow-ar by kehehThreedotsbelow-ar.fina; sub yehFarsiVinverted-ar by yehFarsiVinverted-ar.fina; sub yehFarsiTwodotsabove-ar by yehFarsiTwodotsabove-ar.fina; sub yehFarsiThreedotsabove-ar by yehFarsiThreedotsabove-ar.fina; sub feh-ar by feh-ar.fina; sub qaf-ar by qaf-ar.fina; sub kaf-ar by kaf-ar.fina; sub lam-ar by lam-ar.fina; sub meem-ar by meem-ar.fina; sub noon-ar by noon-ar.fina; sub heh-ar by heh-ar.fina; sub waw-ar by waw-ar.fina; sub alefMaksura-ar by alefMaksura-ar.fina; sub yeh-ar by yeh-ar.fina; sub behDotless-ar by behDotless-ar.fina; sub qafDotless-ar by qafDotless-ar.fina; sub alefWasla-ar by alefWasla-ar.fina; sub alefWavyhamzaabove-ar by alefWavyhamzaabove-ar.fina; sub alefWavyhamzabelow-ar by alefWavyhamzabelow-ar.fina; sub tteh-ar by tteh-ar.fina; sub tteheh-ar by tteheh-ar.fina; sub beeh-ar by beeh-ar.fina; sub tehRing-ar by tehRing-ar.fina; sub tehThreedotsdown-ar by tehThreedotsdown-ar.fina; sub peh-ar by peh-ar.fina; sub teheh-ar by teheh-ar.fina; sub beheh-ar by beheh-ar.fina; sub hahHamzaabove-ar by hahHamzaabove-ar.fina; sub hahTwodotsverticalabove-ar by hahTwodotsverticalabove-ar.fina; sub nyeh-ar by nyeh-ar.fina; sub dyeh-ar by dyeh-ar.fina; sub hahThreedotsabove-ar by hahThreedotsabove-ar.fina; sub tcheh-ar by tcheh-ar.fina; sub tcheheh-ar by tcheheh-ar.fina; sub ddal-ar by ddal-ar.fina; sub dalRing-ar by dalRing-ar.fina; sub dalDotbelow-ar by dalDotbelow-ar.fina; sub dalDotbelowTah-ar by dalDotbelowTah-ar.fina; sub dahal-ar by dahal-ar.fina; sub ddahal-ar by ddahal-ar.fina; sub dul-ar by dul-ar.fina; sub dalThreedotsdown-ar by dalThreedotsdown-ar.fina; sub dalFourdots-ar by dalFourdots-ar.fina; sub rreh-ar by rreh-ar.fina; sub rehv-ar by rehv-ar.fina; sub rehRing-ar by rehRing-ar.fina; sub rehDotbelow-ar by rehDotbelow-ar.fina; sub rehVbelow-ar by rehVbelow-ar.fina; sub rehDotbelowdotabove-ar by rehDotbelowdotabove-ar.fina; sub rehTwodots-ar by rehTwodots-ar.fina; sub jeh-ar by jeh-ar.fina; sub rehFourdots-ar by rehFourdots-ar.fina; sub seenDotbelowDotabove-ar by seenDotbelowDotabove-ar.fina; sub seenThreedotsbelow-ar by seenThreedotsbelow-ar.fina; sub sheenThreedotsbelow-ar by sheenThreedotsbelow-ar.fina; sub sadTwodotsbelow-ar by sadTwodotsbelow-ar.fina; sub sadThreedots-ar by sadThreedots-ar.fina; sub tahThreedots-ar by tahThreedots-ar.fina; sub ainThreedots-ar by ainThreedots-ar.fina; sub fehDotless-ar by fehDotless-ar.fina; sub fehDotmovedbelow-ar by fehDotmovedbelow-ar.fina; sub fehDotbelow-ar by fehDotbelow-ar.fina; sub veh-ar by veh-ar.fina; sub fehThreedotsbelow-ar by fehThreedotsbelow-ar.fina; sub peheh-ar by peheh-ar.fina; sub qafDotabove-ar by qafDotabove-ar.fina; sub qafThreedotsabove-ar by qafThreedotsabove-ar.fina; sub keheh-ar by keheh-ar.fina; sub kafswash-ar by kafswash-ar.fina; sub kafRing-ar by kafRing-ar.fina; sub kafDotabove-ar by kafDotabove-ar.fina; sub ng-ar by ng-ar.fina; sub kafThreedotsbelow-ar by kafThreedotsbelow-ar.fina; sub gaf-ar by gaf-ar.fina; sub gafRing-ar by gafRing-ar.fina; sub ngoeh-ar by ngoeh-ar.fina; sub gafTwodotsbelow-ar by gafTwodotsbelow-ar.fina; sub gueh-ar by gueh-ar.fina; sub gafThreedots-ar by gafThreedots-ar.fina; sub lamVabove-ar by lamVabove-ar.fina; sub lamDotabove-ar by lamDotabove-ar.fina; sub lamThreedotsabove-ar by lamThreedotsabove-ar.fina; sub lamThreedotsbelow-ar by lamThreedotsbelow-ar.fina; sub noonDotbelow-ar by noonDotbelow-ar.fina; sub noonghunna-ar by noonghunna-ar.fina; sub rnoon-ar by rnoon-ar.fina; sub noonRing-ar by noonRing-ar.fina; sub noonThreedotsabove-ar by noonThreedotsabove-ar.fina; sub hehDoachashmee-ar by hehDoachashmee-ar.fina; sub tchehDotabove-ar by tchehDotabove-ar.fina; sub hehHamzaabove-ar by ae-ar.fina hamza.above; sub hehgoal-ar by hehgoal-ar.fina; sub hehgoalHamzaabove-ar by hehgoal-ar.fina hamza.above; sub tehMarbutagoal-ar by tehMarbutagoal-ar.fina; sub wawring-ar by wawring-ar.fina; sub kirghizoe-ar by kirghizoe-ar.fina; sub oe-ar by oe-ar.fina; sub u-ar by u-ar.fina; sub yu-ar by yu-ar.fina; sub kirghizyu-ar by kirghizyu-ar.fina; sub wawTwodots-ar by wawTwodots-ar.fina; sub ve-ar by ve-ar.fina; sub yehFarsi-ar by yehFarsi-ar.fina; sub yehTail-ar by yehTail-ar.fina; sub yehVabove-ar by yehVabove-ar.fina; sub wawDotabove-ar by wawDotabove-ar.fina; sub e-ar by e-ar.fina; sub yehThreedotsbelow-ar by yehThreedotsbelow-ar.fina; sub yehbarree-ar by yehbarree-ar.fina; # Unicode says U+06D3 is a ligature of U+06D2 U+0654, but more authentic # Urdu fonts treat it as if it was U+0626 U+06D2, and so we do. sub yehbarreeHamzaabove-ar by yehHamzaabove-ar.medi yehbarree-ar.fina; sub ae-ar by ae-ar.fina; sub dalVinvertedabove-ar by dalVinvertedabove-ar.fina; sub rehVinvertedabove-ar by rehVinvertedabove-ar.fina; sub sheenDotbelow-ar by sheenDotbelow-ar.fina; sub dadDotbelow-ar by dadDotbelow-ar.fina; sub ghainDotbelow-ar by ghainDotbelow-ar.fina; sub hehVinvertedabove-ar by hehVinvertedabove-ar.fina; sub behThreedotshorizontalbelow-ar by behThreedotshorizontalbelow-ar.fina; sub behThreedotsupabove-ar by behThreedotsupabove-ar.fina; sub behThreedotsupbelow-ar by behThreedotsupbelow-ar.fina; sub tehThreedotsupbelow-ar by tehThreedotsupbelow-ar.fina; sub behTwodotsbelowDotabove-ar by behTwodotsbelowDotabove-ar.fina; sub behVinvertedbelow-ar by behVinvertedbelow-ar.fina; sub behVabove-ar by behVabove-ar.fina; sub hahTwodotshorizontalabove-ar by hahTwodotshorizontalabove-ar.fina; sub hahThreedotsupbelow-ar by hahThreedotsupbelow-ar.fina; sub dalTwodotsverticalbelowTah-ar by dalTwodotsverticalbelowTah-ar.fina; sub dalVinvertedbelow-ar by dalVinvertedbelow-ar.fina; sub rehStroke-ar by rehStroke-ar.fina; sub seenFourdotsabove-ar by seenFourdotsabove-ar.fina; sub ainTwodotshorizontalabove-ar by ainTwodotshorizontalabove-ar.fina; sub ainThreedotsdownabove-ar by ainThreedotsdownabove-ar.fina; sub ainTwodotsverticalabove-ar by ainTwodotsverticalabove-ar.fina; sub fehTwodotsbelow-ar by fehTwodotsbelow-ar.fina; sub fehThreedotsupbelow-ar by fehThreedotsupbelow-ar.fina; sub kehehDotabove-ar by kehehDotabove-ar.fina; sub kehehThreedotsabove-ar by kehehThreedotsabove-ar.fina; sub kehehThreedotsupbelow-ar by kehehThreedotsupbelow-ar.fina; sub meemDotabove-ar by meemDotabove-ar.fina; sub meemDotbelow-ar by meemDotbelow-ar.fina; sub noonTwodotsbelow-ar by noonTwodotsbelow-ar.fina; sub noonTahabove-ar by noonTahabove-ar.fina; sub noonVabove-ar by noonVabove-ar.fina; sub lamBar-ar by lamBar-ar.fina; sub rehTwodotsverticalabove-ar by rehTwodotsverticalabove-ar.fina; sub rehHamzaabove-ar by rehHamzaabove-ar.fina; sub seenTwodotsverticalabove-ar by seenTwodotsverticalabove-ar.fina; sub hahTahbelow-ar by hahTahbelow-ar.fina; sub hahTahTwodotshorizontalabove-ar by hahTahTwodotshorizontalabove-ar.fina; sub seenTahTwodotshorizontalabove-ar by seenTahTwodotshorizontalabove-ar.fina; sub rehTwodotshorizontalaboveTahabove-ar by rehTwodotshorizontalaboveTahabove-ar.fina; sub hahTahabove-ar by hahTahabove-ar.fina; sub alefTwoabove-ar by alefTwoabove-ar.fina; sub alefThreeabove-ar by alefThreeabove-ar.fina; sub yehFarsiTwoabove-ar by yehFarsiTwoabove-ar.fina; sub yehFarsiThreeabove-ar by yehFarsiThreeabove-ar.fina; sub yehFarsiFourbelow-ar by yehFarsiFourbelow-ar.fina; sub wawTwoabove-ar by wawTwoabove-ar.fina; sub wawThreeAbove-ar by wawThreeAbove-ar.fina; sub yehbarreeTwoabove-ar by yehbarreeTwoabove-ar.fina; sub yehbarreeThreeabove-ar by yehbarreeThreeabove-ar.fina; sub hahFourbelow-ar by hahFourbelow-ar.fina; sub seenFourabove-ar by seenFourabove-ar.fina; sub seenVinvertedabove-ar by seenVinvertedabove-ar.fina; sub kafTwodotshorizontalabove-ar by kafTwodotshorizontalabove-ar.fina; sub behVbelow-ar by behVbelow-ar.fina; sub fehAfrican-ar by fehDotless-ar.fina; sub qafAfrican-ar by qafDotless-ar.fina; sub noonAfrican-ar by noonghunna-ar.fina; } fina; amiri-1.000/sources/classes.fea000066400000000000000000005130711434272261000164200ustar00rootroot00000000000000@aAlf.fina = [alefHamzabelow-ar.fina alef-ar.fina alefThreeabove-ar.fina alefTwoabove-ar.fina alefHamzaabove-ar.fina alefMadda-ar.fina alefWavyhamzaabove-ar.fina alefWavyhamzabelow-ar.fina alefWasla-ar.fina]; @aAlf.isol = [alefHamzabelow-ar alef-ar alefThreeabove-ar alefTwoabove-ar alefHamzaabove-ar alefMadda-ar alefWavyhamzaabove-ar alefWavyhamzabelow-ar alefWasla-ar]; @aAyn.fina = [ghainDotbelow-ar.fina ghain-ar.fina ainThreedotsdownabove-ar.fina ainTwodotshorizontalabove-ar.fina ainTwodotsverticalabove-ar.fina ainThreedots-ar.fina ain-ar.fina]; @aAyn.init = [ghainDotbelow-ar.init ghain-ar.init ainThreedotsdownabove-ar.init ainTwodotshorizontalabove-ar.init ainTwodotsverticalabove-ar.init ainThreedots-ar.init ain-ar.init]; @aAyn.isol = [ghainDotbelow-ar ghain-ar ainThreedotsdownabove-ar ainTwodotshorizontalabove-ar ainTwodotsverticalabove-ar ainThreedots-ar ain-ar]; @aAyn.medi = [ghainDotbelow-ar.medi ghain-ar.medi ainThreedotsdownabove-ar.medi ainTwodotshorizontalabove-ar.medi ainTwodotsverticalabove-ar.medi ainThreedots-ar.medi ain-ar.medi]; @aBaa.fina = [behThreedotsupabove-ar.fina behThreedotshorizontalbelow-ar.fina tehThreedotsupbelow-ar.fina beheh-ar.fina teh-ar.fina behTwodotsbelowDotabove-ar.fina theh-ar.fina tteh-ar.fina tehRing-ar.fina behVabove-ar.fina behThreedotsupbelow-ar.fina behDotless-ar.fina teheh-ar.fina behVinvertedbelow-ar.fina behVbelow-ar.fina tehThreedotsdown-ar.fina peh-ar.fina beeh-ar.fina beh-ar.fina tteheh-ar.fina]; @aBaa.init = [yehFarsiFourbelow-ar.init beheh-ar.init yehFarsiThreeabove-ar.init noonRing-ar.init behThreedotshorizontalbelow-ar.init behVabove-ar.init noonTahabove-ar.init yehVabove-ar.init yehFarsiTwoabove-ar.init noonThreedotsabove-ar.init yehHamzaabove-ar.init behDotless-ar.init yehKashmiri-ar.init yeh-ar.init rnoon-ar.init teheh-ar.init behVinvertedbelow-ar.init behVbelow-ar.init tehThreedotsdown-ar.init peh-ar.init beeh-ar.init beh-ar.init tteheh-ar.init behThreedotsupabove-ar.init noon-ar.init tehThreedotsupbelow-ar.init behThreedotsupbelow-ar.init teh-ar.init highhamzaYeh-ar.init yehFarsiVinverted-ar.init yehFarsiTwodotsabove-ar.init yehFarsiThreedotsabove-ar.init theh-ar.init tteh-ar.init noonDotbelow-ar.init noonVabove-ar.init alefMaksura-ar.init tehRing-ar.init behTwodotsbelowDotabove-ar.init yehThreedotsbelow-ar.init e-ar.init noonghunna-ar.init yehFarsi-ar.init noonTwodotsbelow-ar.init]; @aBaa.isol = [behThreedotsupabove-ar behThreedotshorizontalbelow-ar tehThreedotsupbelow-ar beheh-ar teh-ar behTwodotsbelowDotabove-ar theh-ar tteh-ar tehRing-ar behVabove-ar behThreedotsupbelow-ar behDotless-ar teheh-ar behVinvertedbelow-ar behVbelow-ar tehThreedotsdown-ar peh-ar beeh-ar beh-ar tteheh-ar]; @aBaa.medi = [yehFarsiFourbelow-ar.medi beheh-ar.medi yehFarsiThreeabove-ar.medi noonRing-ar.medi behThreedotshorizontalbelow-ar.medi behVabove-ar.medi noonTahabove-ar.medi yehVabove-ar.medi yehFarsiTwoabove-ar.medi noonThreedotsabove-ar.medi yehHamzaabove-ar.medi behDotless-ar.medi yehKashmiri-ar.medi yeh-ar.medi rnoon-ar.medi teheh-ar.medi behVinvertedbelow-ar.medi behVbelow-ar.medi tehThreedotsdown-ar.medi peh-ar.medi beeh-ar.medi beh-ar.medi tteheh-ar.medi behThreedotsupabove-ar.medi noon-ar.medi tehThreedotsupbelow-ar.medi behThreedotsupbelow-ar.medi teh-ar.medi yehFarsiVinverted-ar.medi yehFarsiTwodotsabove-ar.medi yehFarsiThreedotsabove-ar.medi theh-ar.medi tteh-ar.medi noonDotbelow-ar.medi noonVabove-ar.medi alefMaksura-ar.medi tehRing-ar.medi behTwodotsbelowDotabove-ar.medi yehThreedotsbelow-ar.medi e-ar.medi noonghunna-ar.medi yehFarsi-ar.medi noonTwodotsbelow-ar.medi]; @aDal.fina = [dalFourdots-ar.fina dalVinvertedabove-ar.fina dalRing-ar.fina ddal-ar.fina dalVinvertedbelow-ar.fina thal-ar.fina dal-ar.fina dalTwodotsverticalbelowTah-ar.fina dahal-ar.fina dalDotbelowTah-ar.fina dalDotbelow-ar.fina dalThreedotsdown-ar.fina dul-ar.fina ddahal-ar.fina]; @aDal.isol = [dalFourdots-ar dalVinvertedabove-ar dalRing-ar ddal-ar dalVinvertedbelow-ar thal-ar dal-ar dalTwodotsverticalbelowTah-ar dahal-ar dalDotbelowTah-ar dalDotbelow-ar dalThreedotsdown-ar dul-ar ddahal-ar]; @aFaa.fina = [fehTwodotsbelow-ar.fina fehThreedotsupbelow-ar.fina feh-ar.fina fehDotless-ar.fina fehDotmovedbelow-ar.fina fehDotbelow-ar.fina veh-ar.fina fehThreedotsbelow-ar.fina peheh-ar.fina]; @aFaa.init = [qafDotless-ar.init fehThreedotsupbelow-ar.init fehTwodotsbelow-ar.init qaf-ar.init feh-ar.init qafThreedotsabove-ar.init fehDotless-ar.init fehDotmovedbelow-ar.init fehDotbelow-ar.init veh-ar.init fehThreedotsbelow-ar.init peheh-ar.init qafDotabove-ar.init]; @aFaa.isol = [fehTwodotsbelow-ar fehThreedotsupbelow-ar feh-ar fehDotless-ar fehDotmovedbelow-ar fehDotbelow-ar veh-ar fehThreedotsbelow-ar peheh-ar]; @aFaa.medi = [qafDotless-ar.medi fehThreedotsupbelow-ar.medi fehTwodotsbelow-ar.medi qaf-ar.medi feh-ar.medi qafThreedotsabove-ar.medi fehDotless-ar.medi fehDotmovedbelow-ar.medi fehDotbelow-ar.medi veh-ar.medi fehThreedotsbelow-ar.medi peheh-ar.medi qafDotabove-ar.medi]; @aHaa.fina = [khah-ar.fina hah-ar.fina hahHamzaabove-ar.fina tcheheh-ar.fina hahThreedotsabove-ar.fina jeem-ar.fina hahTwodotsverticalabove-ar.fina hahTwodotshorizontalabove-ar.fina dyeh-ar.fina hahTahTwodotshorizontalabove-ar.fina hahTahbelow-ar.fina nyeh-ar.fina tchehDotabove-ar.fina hahFourbelow-ar.fina hahThreedotsupbelow-ar.fina hahTahabove-ar.fina tcheh-ar.fina]; @aHaa.init = [khah-ar.init hah-ar.init hahHamzaabove-ar.init tcheheh-ar.init hahThreedotsabove-ar.init jeem-ar.init hahTwodotsverticalabove-ar.init hahTwodotshorizontalabove-ar.init dyeh-ar.init hahTahTwodotshorizontalabove-ar.init hahTahbelow-ar.init nyeh-ar.init tchehDotabove-ar.init hahFourbelow-ar.init hahThreedotsupbelow-ar.init hahTahabove-ar.init tcheh-ar.init]; @aHaa.isol = [khah-ar hah-ar hahHamzaabove-ar tcheheh-ar hahThreedotsabove-ar jeem-ar hahTwodotsverticalabove-ar hahTwodotshorizontalabove-ar dyeh-ar hahTahTwodotshorizontalabove-ar hahTahbelow-ar nyeh-ar tchehDotabove-ar hahFourbelow-ar hahThreedotsupbelow-ar hahTahabove-ar tcheh-ar]; @aHaa.medi = [khah-ar.medi hah-ar.medi hahHamzaabove-ar.medi tcheheh-ar.medi hahThreedotsabove-ar.medi jeem-ar.medi hahTwodotsverticalabove-ar.medi hahTwodotshorizontalabove-ar.medi dyeh-ar.medi hahTahTwodotshorizontalabove-ar.medi hahTahbelow-ar.medi nyeh-ar.medi tchehDotabove-ar.medi hahFourbelow-ar.medi hahThreedotsupbelow-ar.medi hahTahabove-ar.medi tcheh-ar.medi]; @aHeh.fina = [heh-ar.fina hehgoal-ar.fina tehMarbutagoal-ar.fina ae-ar.fina tehMarbuta-ar.fina]; @aHeh.init = [heh-ar.init hehgoal-ar.init]; @aHeh.isol = [heh-ar hehgoal-ar tehMarbutagoal-ar ae-ar tehMarbuta-ar]; @aHeh.medi = [heh-ar.medi hehgoal-ar.medi]; @aKaf.fina = [kafTwodotshorizontalabove-ar.fina kaf-ar.fina kafDotabove-ar.fina ng-ar.fina kafThreedotsbelow-ar.fina]; @aKaf.init = [kehehTwodotshorizontalabove-ar.init kehehThreedotsbelow-ar.init kafTwodotshorizontalabove-ar.init kehehThreedotsupbelow-ar.init kaf-ar.init gafRing-ar.init gueh-ar.init gafTwodotsbelow-ar.init kafRing-ar.init kafDotabove-ar.init ng-ar.init kafThreedotsbelow-ar.init gaf-ar.init keheh-ar.init gafThreedots-ar.init kehehThreedotsabove-ar.init kehehDotabove-ar.init ngoeh-ar.init]; @aKaf.isol = [kehehTwodotshorizontalabove-ar kehehThreedotsbelow-ar kafTwodotshorizontalabove-ar kehehThreedotsupbelow-ar kaf-ar gafRing-ar gueh-ar gafTwodotsbelow-ar kafRing-ar kafDotabove-ar ng-ar kafThreedotsbelow-ar gaf-ar keheh-ar gafThreedots-ar kehehThreedotsabove-ar kehehDotabove-ar ngoeh-ar]; @aGaf.isol = [keheh-ar kafRing-ar gaf-ar gafRing-ar ngoeh-ar gafTwodotsbelow-ar gueh-ar gafThreedots-ar kehehDotabove-ar kehehThreedotsabove-ar kehehThreedotsupbelow-ar kehehTwodotshorizontalabove-ar kehehThreedotsbelow-ar]; @aGaf.fina = [keheh-ar.fina kafRing-ar.fina gaf-ar.fina gafRing-ar.fina ngoeh-ar.fina gafTwodotsbelow-ar.fina gueh-ar.fina gafThreedots-ar.fina kehehDotabove-ar.fina kehehThreedotsabove-ar.fina kehehThreedotsupbelow-ar.fina kehehTwodotshorizontalabove-ar.fina kehehThreedotsbelow-ar.fina]; @aGaf.medi = [keheh-ar.medi gaf-ar.medi gafRing-ar.medi ngoeh-ar.medi gafTwodotsbelow-ar.medi gueh-ar.medi gafThreedots-ar.medi kehehDotabove-ar.medi kehehThreedotsabove-ar.medi kehehThreedotsupbelow-ar.medi kehehTwodotshorizontalabove-ar.medi kehehThreedotsbelow-ar.medi]; @aKaf.medi = [kehehTwodotshorizontalabove-ar.medi kehehThreedotsbelow-ar.medi kafTwodotshorizontalabove-ar.medi kehehThreedotsupbelow-ar.medi kaf-ar.medi gafRing-ar.medi gueh-ar.medi gafTwodotsbelow-ar.medi kafRing-ar.medi kafDotabove-ar.medi ng-ar.medi kafThreedotsbelow-ar.medi gaf-ar.medi keheh-ar.medi gafThreedots-ar.medi kehehThreedotsabove-ar.medi kehehDotabove-ar.medi ngoeh-ar.medi]; @aLam.fina = [lamVabove-ar.fina lamThreedotsabove-ar.fina lam-ar.fina lamThreedotsbelow-ar.fina lamDotabove-ar.fina lamBar-ar.fina]; # XXX: sync with contextuals.fea @aLam.init = [lamVabove-ar.init lamThreedotsabove-ar.init lam-ar.init lamThreedotsbelow-ar.init lamDotabove-ar.init lamBar-ar.init]; @aLam.isol = [lamVabove-ar lamThreedotsabove-ar lam-ar lamThreedotsbelow-ar lamDotabove-ar lamBar-ar]; @aLam.medi = [lamVabove-ar.medi lamThreedotsabove-ar.medi lam-ar.medi lamThreedotsbelow-ar.medi lamDotabove-ar.medi lamBar-ar.medi]; @aMem.fina = [meem-ar.fina]; @aMem.init = [meem-ar.init]; @aMem.medi = [meem-ar.medi]; @aMem.isol = [meemDotabove-ar meem-ar meemDotbelow-ar]; @aMem.init.dots = [meemDotabove-ar.init meem-ar.init meemDotbelow-ar.init]; @aMem.medi.dots = [meemDotabove-ar.medi meem-ar.medi meemDotbelow-ar.medi]; @aNon.fina = [noon-ar.fina noonTwodotsbelow-ar.fina noonghunna-ar.fina noonRing-ar.fina rnoon-ar.fina noonTahabove-ar.fina noonDotbelow-ar.fina noonVabove-ar.fina noonThreedotsabove-ar.fina]; @aNon.isol = [noon-ar noonTwodotsbelow-ar noonghunna-ar noonRing-ar rnoon-ar noonTahabove-ar noonDotbelow-ar noonVabove-ar noonThreedotsabove-ar]; @aQaf.fina = [qafThreedotsabove-ar.fina qafDotabove-ar.fina qaf-ar.fina qafDotless-ar.fina]; @aQaf.isol = [qafThreedotsabove-ar qafDotabove-ar qaf-ar qafDotless-ar]; @aRaa.fina = [rreh-ar.fina rehv-ar.fina rehRing-ar.fina rehDotbelow-ar.fina rehVbelow-ar.fina rehDotbelowdotabove-ar.fina rehTwodots-ar.fina jeh-ar.fina rehFourdots-ar.fina rehStroke-ar.fina rehVinvertedabove-ar.fina zain-ar.fina rehTwodotshorizontalaboveTahabove-ar.fina reh-ar.fina rehTwodotsverticalabove-ar.fina rehHamzaabove-ar.fina]; @aRaa.isol = [rreh-ar rehv-ar rehRing-ar rehDotbelow-ar rehVbelow-ar rehDotbelowdotabove-ar rehTwodots-ar jeh-ar rehFourdots-ar rehStroke-ar rehVinvertedabove-ar zain-ar rehTwodotshorizontalaboveTahabove-ar reh-ar rehTwodotsverticalabove-ar rehHamzaabove-ar]; @aSad.fina = [sadTwodotsbelow-ar.fina dadDotbelow-ar.fina dad-ar.fina sadThreedots-ar.fina sad-ar.fina]; @aSad.init = [sadTwodotsbelow-ar.init dadDotbelow-ar.init dad-ar.init sadThreedots-ar.init sad-ar.init]; @aSad.isol = [sadTwodotsbelow-ar dadDotbelow-ar dad-ar sadThreedots-ar sad-ar]; @aSad.medi = [sadTwodotsbelow-ar.medi dadDotbelow-ar.medi dad-ar.medi sadThreedots-ar.medi sad-ar.medi]; @aSen.fina = [sheenDotbelow-ar.fina seenTwodotsverticalabove-ar.fina seen-ar.fina seenVinvertedabove-ar.fina seenFourabove-ar.fina sheen-ar.fina seenTahTwodotshorizontalabove-ar.fina seenFourdotsabove-ar.fina seenDotbelowDotabove-ar.fina seenThreedotsbelow-ar.fina sheenThreedotsbelow-ar.fina]; @aSen.init = [sheenDotbelow-ar.init seenTwodotsverticalabove-ar.init seen-ar.init seenVinvertedabove-ar.init seenFourabove-ar.init sheen-ar.init seenTahTwodotshorizontalabove-ar.init seenFourdotsabove-ar.init seenDotbelowDotabove-ar.init seenThreedotsbelow-ar.init sheenThreedotsbelow-ar.init]; @aSen.isol = [sheenDotbelow-ar seenTwodotsverticalabove-ar seen-ar seenVinvertedabove-ar seenFourabove-ar sheen-ar seenTahTwodotshorizontalabove-ar seenFourdotsabove-ar seenDotbelowDotabove-ar seenThreedotsbelow-ar sheenThreedotsbelow-ar]; @aSen.medi = [sheenDotbelow-ar.medi seenTwodotsverticalabove-ar.medi seen-ar.medi seenVinvertedabove-ar.medi seenFourabove-ar.medi sheen-ar.medi seenTahTwodotshorizontalabove-ar.medi seenFourdotsabove-ar.medi seenDotbelowDotabove-ar.medi seenThreedotsbelow-ar.medi sheenThreedotsbelow-ar.medi]; @aTaa.fina = [zah-ar.fina tah-ar.fina tahThreedots-ar.fina]; @aTaa.init = [zah-ar.init tah-ar.init tahThreedots-ar.init]; @aTaa.isol = [zah-ar tah-ar tahThreedots-ar]; @aTaa.medi = [zah-ar.medi tah-ar.medi tahThreedots-ar.medi]; @aWaw.fina = [ve-ar.fina wawHamzaabove-ar.fina wawTwodots-ar.fina wawDotabove-ar.fina wawTwoabove-ar.fina oe-ar.fina u-ar.fina wawring-ar.fina kirghizoe-ar.fina yu-ar.fina kirghizyu-ar.fina wawThreeAbove-ar.fina waw-ar.fina]; @aWaw.isol = [ve-ar wawHamzaabove-ar wawTwodots-ar wawDotabove-ar wawTwoabove-ar oe-ar u-ar wawring-ar kirghizoe-ar uHamzaabove-ar yu-ar kirghizyu-ar wawThreeAbove-ar waw-ar]; # only initial yaa with dots below @aYaa.init = [yehFarsiFourbelow-ar.init yehThreedotsbelow-ar.init yehFarsiTwoabove-ar.init yehFarsiVinverted-ar.init yehFarsiTwodotsabove-ar.init yehFarsiThreedotsabove-ar.init e-ar.init yehFarsiThreeabove-ar.init yehFarsi-ar.init yeh-ar.init yehVabove-ar.init]; @aYaa.fina = [yehFarsiFourbelow-ar.fina yehThreedotsbelow-ar.fina yehFarsiTwoabove-ar.fina yehFarsiThreedotsabove-ar.fina yehFarsiVinverted-ar.fina yehFarsiTwodotsabove-ar.fina e-ar.fina alefMaksura-ar.fina yehFarsiThreeabove-ar.fina yehTail-ar.fina yehFarsi-ar.fina yehHamzaabove-ar.fina yehKashmiri-ar.fina yeh-ar.fina yehVabove-ar.fina]; @aYaa.isol = [yehFarsiFourbelow-ar yehThreedotsbelow-ar yehFarsiTwoabove-ar yehFarsiThreedotsabove-ar highhamzaYeh-ar yehFarsiVinverted-ar yehFarsiTwodotsabove-ar e-ar alefMaksura-ar yehFarsiThreeabove-ar yehTail-ar yehFarsi-ar yehHamzaabove-ar yehKashmiri-ar yeh-ar yehVabove-ar]; @aYaaBari.fina = [yehbarreeThreeabove-ar.fina yehbarreeTwoabove-ar.fina yehbarree-ar.fina]; @aYaaBari.isol = [yehbarreeThreeabove-ar yehbarreeTwoabove-ar yehbarree-ar]; @aAlf.fina.KafAlf = [alefHamzabelow-ar.fina.KafAlf alef-ar.fina.KafAlf alefThreeabove-ar.fina.KafAlf alefTwoabove-ar.fina.KafAlf alefHamzaabove-ar.fina.KafAlf alefMadda-ar.fina.KafAlf alefWavyhamzaabove-ar.fina.KafAlf alefWavyhamzabelow-ar.fina.KafAlf alefWasla-ar.fina.KafAlf]; @aAlf.fina.KafMemAlf = [alefHamzabelow-ar.fina.KafMemAlf alef-ar.fina.KafMemAlf alefThreeabove-ar.fina.KafMemAlf alefTwoabove-ar.fina.KafMemAlf alefHamzaabove-ar.fina.KafMemAlf alefMadda-ar.fina.KafMemAlf alefWavyhamzaabove-ar.fina.KafMemAlf alefWavyhamzabelow-ar.fina.KafMemAlf alefWasla-ar.fina.KafMemAlf]; @aAlf.fina.LamAlfFina = [alefHamzabelow-ar.fina.LamAlfFina alef-ar.fina.LamAlfFina alefThreeabove-ar.fina.LamAlfFina alefTwoabove-ar.fina.LamAlfFina alefHamzaabove-ar.fina.LamAlfFina alefMadda-ar.fina.LamAlfFina alefWavyhamzaabove-ar.fina.LamAlfFina alefWavyhamzabelow-ar.fina.LamAlfFina alefWasla-ar.fina.LamAlfFina]; @aAlf.fina.LamAlfIsol = [alefHamzabelow-ar.fina.LamAlfIsol alef-ar.fina.LamAlfIsol alefThreeabove-ar.fina.LamAlfIsol alefTwoabove-ar.fina.LamAlfIsol alefHamzaabove-ar.fina.LamAlfIsol alefMadda-ar.fina.LamAlfIsol alefWavyhamzaabove-ar.fina.LamAlfIsol alefWavyhamzabelow-ar.fina.LamAlfIsol alefWasla-ar.fina.LamAlfIsol]; @aAlf.fina.MemAlfFina = [alefHamzabelow-ar.fina.MemAlfFina alef-ar.fina.MemAlfFina alefThreeabove-ar.fina.MemAlfFina alefTwoabove-ar.fina.MemAlfFina alefHamzaabove-ar.fina.MemAlfFina alefMadda-ar.fina.MemAlfFina alefWavyhamzaabove-ar.fina.MemAlfFina alefWavyhamzabelow-ar.fina.MemAlfFina alefWasla-ar.fina.MemAlfFina]; @aAyn.init.AboveHaa = [ghainDotbelow-ar.init.AboveHaa ghain-ar.init.AboveHaa ainThreedotsdownabove-ar.init.AboveHaa ainTwodotshorizontalabove-ar.init.AboveHaa ainTwodotsverticalabove-ar.init.AboveHaa ainThreedots-ar.init.AboveHaa ain-ar.init.AboveHaa]; @aAyn.init.AynHaaInit = [ghainDotbelow-ar.init.AynHaaInit ghain-ar.init.AynHaaInit ainThreedotsdownabove-ar.init.AynHaaInit ainTwodotshorizontalabove-ar.init.AynHaaInit ainTwodotsverticalabove-ar.init.AynHaaInit ainThreedots-ar.init.AynHaaInit ain-ar.init.AynHaaInit]; @aAyn.init.AynMemInit = [ghainDotbelow-ar.init.AynMemInit ghain-ar.init.AynMemInit ainThreedotsdownabove-ar.init.AynMemInit ainTwodotshorizontalabove-ar.init.AynMemInit ainTwodotsverticalabove-ar.init.AynMemInit ainThreedots-ar.init.AynMemInit ain-ar.init.AynMemInit]; @aAyn.init.AynYaaIsol = [ghainDotbelow-ar.init.AynYaaIsol ghain-ar.init.AynYaaIsol ainThreedotsdownabove-ar.init.AynYaaIsol ainTwodotshorizontalabove-ar.init.AynYaaIsol ainTwodotsverticalabove-ar.init.AynYaaIsol ainThreedots-ar.init.AynYaaIsol ain-ar.init.AynYaaIsol]; @aAyn.init.Finjani = [ghainDotbelow-ar.init.Finjani ghain-ar.init.Finjani ainThreedotsdownabove-ar.init.Finjani ainTwodotshorizontalabove-ar.init.Finjani ainTwodotsverticalabove-ar.init.Finjani ainThreedots-ar.init.Finjani ain-ar.init.Finjani]; @aAyn.init.YaaBari = [ghainDotbelow-ar.init.YaaBari ghain-ar.init.YaaBari ainThreedotsdownabove-ar.init.YaaBari ainTwodotshorizontalabove-ar.init.YaaBari ainTwodotsverticalabove-ar.init.YaaBari ainThreedots-ar.init.YaaBari ain-ar.init.YaaBari]; @aAyn.medi.AynYaaFina = [ghainDotbelow-ar.medi.AynYaaFina ghain-ar.medi.AynYaaFina ainThreedotsdownabove-ar.medi.AynYaaFina ainTwodotshorizontalabove-ar.medi.AynYaaFina ainTwodotsverticalabove-ar.medi.AynYaaFina ainThreedots-ar.medi.AynYaaFina ain-ar.medi.AynYaaFina]; @aBaa.fina.BaaBaaIsol = [behThreedotsupabove-ar.fina.BaaBaaIsol behThreedotshorizontalbelow-ar.fina.BaaBaaIsol tehThreedotsupbelow-ar.fina.BaaBaaIsol beheh-ar.fina.BaaBaaIsol teh-ar.fina.BaaBaaIsol behTwodotsbelowDotabove-ar.fina.BaaBaaIsol theh-ar.fina.BaaBaaIsol tteh-ar.fina.BaaBaaIsol tehRing-ar.fina.BaaBaaIsol behVabove-ar.fina.BaaBaaIsol behThreedotsupbelow-ar.fina.BaaBaaIsol behDotless-ar.fina.BaaBaaIsol teheh-ar.fina.BaaBaaIsol behVinvertedbelow-ar.fina.BaaBaaIsol behVbelow-ar.fina.BaaBaaIsol tehThreedotsdown-ar.fina.BaaBaaIsol peh-ar.fina.BaaBaaIsol beeh-ar.fina.BaaBaaIsol beh-ar.fina.BaaBaaIsol tteheh-ar.fina.BaaBaaIsol]; @aBaa.init.AboveHaa = [yehFarsiFourbelow-ar.init.AboveHaa beheh-ar.init.AboveHaa yehFarsiThreeabove-ar.init.AboveHaa noonRing-ar.init.AboveHaa behThreedotshorizontalbelow-ar.init.AboveHaa behVabove-ar.init.AboveHaa noonTahabove-ar.init.AboveHaa yehVabove-ar.init.AboveHaa yehFarsiTwoabove-ar.init.AboveHaa noonThreedotsabove-ar.init.AboveHaa yehHamzaabove-ar.init.AboveHaa behDotless-ar.init.AboveHaa yehKashmiri-ar.init.AboveHaa yeh-ar.init.AboveHaa rnoon-ar.init.AboveHaa teheh-ar.init.AboveHaa behVinvertedbelow-ar.init.AboveHaa behVbelow-ar.init.AboveHaa tehThreedotsdown-ar.init.AboveHaa peh-ar.init.AboveHaa beeh-ar.init.AboveHaa beh-ar.init.AboveHaa tteheh-ar.init.AboveHaa behThreedotsupabove-ar.init.AboveHaa noon-ar.init.AboveHaa tehThreedotsupbelow-ar.init.AboveHaa behThreedotsupbelow-ar.init.AboveHaa teh-ar.init.AboveHaa highhamzaYeh-ar.init.AboveHaa yehFarsiVinverted-ar.init.AboveHaa yehFarsiTwodotsabove-ar.init.AboveHaa yehFarsiThreedotsabove-ar.init.AboveHaa theh-ar.init.AboveHaa tteh-ar.init.AboveHaa noonDotbelow-ar.init.AboveHaa noonVabove-ar.init.AboveHaa alefMaksura-ar.init.AboveHaa tehRing-ar.init.AboveHaa behTwodotsbelowDotabove-ar.init.AboveHaa yehThreedotsbelow-ar.init.AboveHaa e-ar.init.AboveHaa noonghunna-ar.init.AboveHaa yehFarsi-ar.init.AboveHaa noonTwodotsbelow-ar.init.AboveHaa]; @aBaa.init.BaaBaaHaaInit = [yehFarsiFourbelow-ar.init.BaaBaaHaaInit beheh-ar.init.BaaBaaHaaInit yehFarsiThreeabove-ar.init.BaaBaaHaaInit noonRing-ar.init.BaaBaaHaaInit behThreedotshorizontalbelow-ar.init.BaaBaaHaaInit behVabove-ar.init.BaaBaaHaaInit noonTahabove-ar.init.BaaBaaHaaInit yehVabove-ar.init.BaaBaaHaaInit yehFarsiTwoabove-ar.init.BaaBaaHaaInit noonThreedotsabove-ar.init.BaaBaaHaaInit yehHamzaabove-ar.init.BaaBaaHaaInit behDotless-ar.init.BaaBaaHaaInit yehKashmiri-ar.init.BaaBaaHaaInit yeh-ar.init.BaaBaaHaaInit rnoon-ar.init.BaaBaaHaaInit teheh-ar.init.BaaBaaHaaInit behVinvertedbelow-ar.init.BaaBaaHaaInit behVbelow-ar.init.BaaBaaHaaInit tehThreedotsdown-ar.init.BaaBaaHaaInit peh-ar.init.BaaBaaHaaInit beeh-ar.init.BaaBaaHaaInit beh-ar.init.BaaBaaHaaInit tteheh-ar.init.BaaBaaHaaInit behThreedotsupabove-ar.init.BaaBaaHaaInit noon-ar.init.BaaBaaHaaInit tehThreedotsupbelow-ar.init.BaaBaaHaaInit behThreedotsupbelow-ar.init.BaaBaaHaaInit teh-ar.init.BaaBaaHaaInit highhamzaYeh-ar.init.BaaBaaHaaInit yehFarsiVinverted-ar.init.BaaBaaHaaInit yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit theh-ar.init.BaaBaaHaaInit tteh-ar.init.BaaBaaHaaInit noonDotbelow-ar.init.BaaBaaHaaInit noonVabove-ar.init.BaaBaaHaaInit alefMaksura-ar.init.BaaBaaHaaInit tehRing-ar.init.BaaBaaHaaInit behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit yehThreedotsbelow-ar.init.BaaBaaHaaInit e-ar.init.BaaBaaHaaInit noonghunna-ar.init.BaaBaaHaaInit yehFarsi-ar.init.BaaBaaHaaInit noonTwodotsbelow-ar.init.BaaBaaHaaInit]; @aBaa.init.BaaBaaHeh = [yehFarsiFourbelow-ar.init.BaaBaaHeh beheh-ar.init.BaaBaaHeh yehFarsiThreeabove-ar.init.BaaBaaHeh noonRing-ar.init.BaaBaaHeh behThreedotshorizontalbelow-ar.init.BaaBaaHeh behVabove-ar.init.BaaBaaHeh noonTahabove-ar.init.BaaBaaHeh yehVabove-ar.init.BaaBaaHeh yehFarsiTwoabove-ar.init.BaaBaaHeh noonThreedotsabove-ar.init.BaaBaaHeh yehHamzaabove-ar.init.BaaBaaHeh behDotless-ar.init.BaaBaaHeh yehKashmiri-ar.init.BaaBaaHeh yeh-ar.init.BaaBaaHeh rnoon-ar.init.BaaBaaHeh teheh-ar.init.BaaBaaHeh behVinvertedbelow-ar.init.BaaBaaHeh behVbelow-ar.init.BaaBaaHeh tehThreedotsdown-ar.init.BaaBaaHeh peh-ar.init.BaaBaaHeh beeh-ar.init.BaaBaaHeh beh-ar.init.BaaBaaHeh tteheh-ar.init.BaaBaaHeh behThreedotsupabove-ar.init.BaaBaaHeh noon-ar.init.BaaBaaHeh tehThreedotsupbelow-ar.init.BaaBaaHeh behThreedotsupbelow-ar.init.BaaBaaHeh teh-ar.init.BaaBaaHeh highhamzaYeh-ar.init.BaaBaaHeh yehFarsiVinverted-ar.init.BaaBaaHeh yehFarsiTwodotsabove-ar.init.BaaBaaHeh yehFarsiThreedotsabove-ar.init.BaaBaaHeh theh-ar.init.BaaBaaHeh tteh-ar.init.BaaBaaHeh noonDotbelow-ar.init.BaaBaaHeh noonVabove-ar.init.BaaBaaHeh alefMaksura-ar.init.BaaBaaHeh tehRing-ar.init.BaaBaaHeh behTwodotsbelowDotabove-ar.init.BaaBaaHeh yehThreedotsbelow-ar.init.BaaBaaHeh e-ar.init.BaaBaaHeh noonghunna-ar.init.BaaBaaHeh yehFarsi-ar.init.BaaBaaHeh noonTwodotsbelow-ar.init.BaaBaaHeh]; @aBaa.init.BaaBaaIsol = [yehFarsiFourbelow-ar.init.BaaBaaIsol beheh-ar.init.BaaBaaIsol yehFarsiThreeabove-ar.init.BaaBaaIsol noonRing-ar.init.BaaBaaIsol behThreedotshorizontalbelow-ar.init.BaaBaaIsol behVabove-ar.init.BaaBaaIsol noonTahabove-ar.init.BaaBaaIsol yehVabove-ar.init.BaaBaaIsol yehFarsiTwoabove-ar.init.BaaBaaIsol noonThreedotsabove-ar.init.BaaBaaIsol yehHamzaabove-ar.init.BaaBaaIsol behDotless-ar.init.BaaBaaIsol yehKashmiri-ar.init.BaaBaaIsol yeh-ar.init.BaaBaaIsol rnoon-ar.init.BaaBaaIsol teheh-ar.init.BaaBaaIsol behVinvertedbelow-ar.init.BaaBaaIsol behVbelow-ar.init.BaaBaaIsol tehThreedotsdown-ar.init.BaaBaaIsol peh-ar.init.BaaBaaIsol beeh-ar.init.BaaBaaIsol beh-ar.init.BaaBaaIsol tteheh-ar.init.BaaBaaIsol behThreedotsupabove-ar.init.BaaBaaIsol noon-ar.init.BaaBaaIsol tehThreedotsupbelow-ar.init.BaaBaaIsol behThreedotsupbelow-ar.init.BaaBaaIsol teh-ar.init.BaaBaaIsol highhamzaYeh-ar.init.BaaBaaIsol yehFarsiVinverted-ar.init.BaaBaaIsol yehFarsiTwodotsabove-ar.init.BaaBaaIsol yehFarsiThreedotsabove-ar.init.BaaBaaIsol theh-ar.init.BaaBaaIsol tteh-ar.init.BaaBaaIsol noonDotbelow-ar.init.BaaBaaIsol noonVabove-ar.init.BaaBaaIsol alefMaksura-ar.init.BaaBaaIsol tehRing-ar.init.BaaBaaIsol behTwodotsbelowDotabove-ar.init.BaaBaaIsol yehThreedotsbelow-ar.init.BaaBaaIsol e-ar.init.BaaBaaIsol noonghunna-ar.init.BaaBaaIsol yehFarsi-ar.init.BaaBaaIsol noonTwodotsbelow-ar.init.BaaBaaIsol]; @aBaa.init.BaaBaaMemInit = [yehFarsiFourbelow-ar.init.BaaBaaMemInit beheh-ar.init.BaaBaaMemInit yehFarsiThreeabove-ar.init.BaaBaaMemInit noonRing-ar.init.BaaBaaMemInit behThreedotshorizontalbelow-ar.init.BaaBaaMemInit behVabove-ar.init.BaaBaaMemInit noonTahabove-ar.init.BaaBaaMemInit yehVabove-ar.init.BaaBaaMemInit yehFarsiTwoabove-ar.init.BaaBaaMemInit noonThreedotsabove-ar.init.BaaBaaMemInit yehHamzaabove-ar.init.BaaBaaMemInit behDotless-ar.init.BaaBaaMemInit yehKashmiri-ar.init.BaaBaaMemInit yeh-ar.init.BaaBaaMemInit rnoon-ar.init.BaaBaaMemInit teheh-ar.init.BaaBaaMemInit behVinvertedbelow-ar.init.BaaBaaMemInit behVbelow-ar.init.BaaBaaMemInit tehThreedotsdown-ar.init.BaaBaaMemInit peh-ar.init.BaaBaaMemInit beeh-ar.init.BaaBaaMemInit beh-ar.init.BaaBaaMemInit tteheh-ar.init.BaaBaaMemInit behThreedotsupabove-ar.init.BaaBaaMemInit noon-ar.init.BaaBaaMemInit tehThreedotsupbelow-ar.init.BaaBaaMemInit behThreedotsupbelow-ar.init.BaaBaaMemInit teh-ar.init.BaaBaaMemInit highhamzaYeh-ar.init.BaaBaaMemInit yehFarsiVinverted-ar.init.BaaBaaMemInit yehFarsiTwodotsabove-ar.init.BaaBaaMemInit yehFarsiThreedotsabove-ar.init.BaaBaaMemInit theh-ar.init.BaaBaaMemInit tteh-ar.init.BaaBaaMemInit noonDotbelow-ar.init.BaaBaaMemInit noonVabove-ar.init.BaaBaaMemInit alefMaksura-ar.init.BaaBaaMemInit tehRing-ar.init.BaaBaaMemInit behTwodotsbelowDotabove-ar.init.BaaBaaMemInit yehThreedotsbelow-ar.init.BaaBaaMemInit e-ar.init.BaaBaaMemInit noonghunna-ar.init.BaaBaaMemInit yehFarsi-ar.init.BaaBaaMemInit noonTwodotsbelow-ar.init.BaaBaaMemInit]; @aBaa.init.BaaBaaYaa = [yehFarsiFourbelow-ar.init.BaaBaaYaa beheh-ar.init.BaaBaaYaa yehFarsiThreeabove-ar.init.BaaBaaYaa noonRing-ar.init.BaaBaaYaa behThreedotshorizontalbelow-ar.init.BaaBaaYaa behVabove-ar.init.BaaBaaYaa noonTahabove-ar.init.BaaBaaYaa yehVabove-ar.init.BaaBaaYaa yehFarsiTwoabove-ar.init.BaaBaaYaa noonThreedotsabove-ar.init.BaaBaaYaa yehHamzaabove-ar.init.BaaBaaYaa behDotless-ar.init.BaaBaaYaa yehKashmiri-ar.init.BaaBaaYaa yeh-ar.init.BaaBaaYaa rnoon-ar.init.BaaBaaYaa teheh-ar.init.BaaBaaYaa behVinvertedbelow-ar.init.BaaBaaYaa behVbelow-ar.init.BaaBaaYaa tehThreedotsdown-ar.init.BaaBaaYaa peh-ar.init.BaaBaaYaa beeh-ar.init.BaaBaaYaa beh-ar.init.BaaBaaYaa tteheh-ar.init.BaaBaaYaa behThreedotsupabove-ar.init.BaaBaaYaa noon-ar.init.BaaBaaYaa tehThreedotsupbelow-ar.init.BaaBaaYaa behThreedotsupbelow-ar.init.BaaBaaYaa teh-ar.init.BaaBaaYaa highhamzaYeh-ar.init.BaaBaaYaa yehFarsiVinverted-ar.init.BaaBaaYaa yehFarsiTwodotsabove-ar.init.BaaBaaYaa yehFarsiThreedotsabove-ar.init.BaaBaaYaa theh-ar.init.BaaBaaYaa tteh-ar.init.BaaBaaYaa noonDotbelow-ar.init.BaaBaaYaa noonVabove-ar.init.BaaBaaYaa alefMaksura-ar.init.BaaBaaYaa tehRing-ar.init.BaaBaaYaa behTwodotsbelowDotabove-ar.init.BaaBaaYaa yehThreedotsbelow-ar.init.BaaBaaYaa e-ar.init.BaaBaaYaa noonghunna-ar.init.BaaBaaYaa yehFarsi-ar.init.BaaBaaYaa noonTwodotsbelow-ar.init.BaaBaaYaa]; @aBaa.init.BaaDal = [yehFarsiFourbelow-ar.init.BaaDal beheh-ar.init.BaaDal yehFarsiThreeabove-ar.init.BaaDal noonRing-ar.init.BaaDal behThreedotshorizontalbelow-ar.init.BaaDal behVabove-ar.init.BaaDal noonTahabove-ar.init.BaaDal yehVabove-ar.init.BaaDal yehFarsiTwoabove-ar.init.BaaDal noonThreedotsabove-ar.init.BaaDal yehHamzaabove-ar.init.BaaDal behDotless-ar.init.BaaDal yehKashmiri-ar.init.BaaDal yeh-ar.init.BaaDal rnoon-ar.init.BaaDal teheh-ar.init.BaaDal behVinvertedbelow-ar.init.BaaDal behVbelow-ar.init.BaaDal tehThreedotsdown-ar.init.BaaDal peh-ar.init.BaaDal beeh-ar.init.BaaDal beh-ar.init.BaaDal tteheh-ar.init.BaaDal behThreedotsupabove-ar.init.BaaDal noon-ar.init.BaaDal tehThreedotsupbelow-ar.init.BaaDal behThreedotsupbelow-ar.init.BaaDal teh-ar.init.BaaDal highhamzaYeh-ar.init.BaaDal yehFarsiVinverted-ar.init.BaaDal yehFarsiTwodotsabove-ar.init.BaaDal yehFarsiThreedotsabove-ar.init.BaaDal theh-ar.init.BaaDal tteh-ar.init.BaaDal noonDotbelow-ar.init.BaaDal noonVabove-ar.init.BaaDal alefMaksura-ar.init.BaaDal tehRing-ar.init.BaaDal behTwodotsbelowDotabove-ar.init.BaaDal yehThreedotsbelow-ar.init.BaaDal e-ar.init.BaaDal noonghunna-ar.init.BaaDal yehFarsi-ar.init.BaaDal noonTwodotsbelow-ar.init.BaaDal]; @aBaa.init.BaaHaaInit = [yehFarsiFourbelow-ar.init.BaaHaaInit beheh-ar.init.BaaHaaInit yehFarsiThreeabove-ar.init.BaaHaaInit noonRing-ar.init.BaaHaaInit behThreedotshorizontalbelow-ar.init.BaaHaaInit behVabove-ar.init.BaaHaaInit noonTahabove-ar.init.BaaHaaInit yehVabove-ar.init.BaaHaaInit yehFarsiTwoabove-ar.init.BaaHaaInit noonThreedotsabove-ar.init.BaaHaaInit yehHamzaabove-ar.init.BaaHaaInit behDotless-ar.init.BaaHaaInit yehKashmiri-ar.init.BaaHaaInit yeh-ar.init.BaaHaaInit rnoon-ar.init.BaaHaaInit teheh-ar.init.BaaHaaInit behVinvertedbelow-ar.init.BaaHaaInit behVbelow-ar.init.BaaHaaInit tehThreedotsdown-ar.init.BaaHaaInit peh-ar.init.BaaHaaInit beeh-ar.init.BaaHaaInit beh-ar.init.BaaHaaInit tteheh-ar.init.BaaHaaInit behThreedotsupabove-ar.init.BaaHaaInit noon-ar.init.BaaHaaInit tehThreedotsupbelow-ar.init.BaaHaaInit behThreedotsupbelow-ar.init.BaaHaaInit teh-ar.init.BaaHaaInit highhamzaYeh-ar.init.BaaHaaInit yehFarsiVinverted-ar.init.BaaHaaInit yehFarsiTwodotsabove-ar.init.BaaHaaInit yehFarsiThreedotsabove-ar.init.BaaHaaInit theh-ar.init.BaaHaaInit tteh-ar.init.BaaHaaInit noonDotbelow-ar.init.BaaHaaInit noonVabove-ar.init.BaaHaaInit alefMaksura-ar.init.BaaHaaInit tehRing-ar.init.BaaHaaInit behTwodotsbelowDotabove-ar.init.BaaHaaInit yehThreedotsbelow-ar.init.BaaHaaInit e-ar.init.BaaHaaInit noonghunna-ar.init.BaaHaaInit yehFarsi-ar.init.BaaHaaInit noonTwodotsbelow-ar.init.BaaHaaInit]; @aBaa.init.BaaHaaMemInit = [yehFarsiFourbelow-ar.init.BaaHaaMemInit beheh-ar.init.BaaHaaMemInit yehFarsiThreeabove-ar.init.BaaHaaMemInit noonRing-ar.init.BaaHaaMemInit behThreedotshorizontalbelow-ar.init.BaaHaaMemInit behVabove-ar.init.BaaHaaMemInit noonTahabove-ar.init.BaaHaaMemInit yehVabove-ar.init.BaaHaaMemInit yehFarsiTwoabove-ar.init.BaaHaaMemInit noonThreedotsabove-ar.init.BaaHaaMemInit yehHamzaabove-ar.init.BaaHaaMemInit behDotless-ar.init.BaaHaaMemInit yehKashmiri-ar.init.BaaHaaMemInit yeh-ar.init.BaaHaaMemInit rnoon-ar.init.BaaHaaMemInit teheh-ar.init.BaaHaaMemInit behVinvertedbelow-ar.init.BaaHaaMemInit behVbelow-ar.init.BaaHaaMemInit tehThreedotsdown-ar.init.BaaHaaMemInit peh-ar.init.BaaHaaMemInit beeh-ar.init.BaaHaaMemInit beh-ar.init.BaaHaaMemInit tteheh-ar.init.BaaHaaMemInit behThreedotsupabove-ar.init.BaaHaaMemInit noon-ar.init.BaaHaaMemInit tehThreedotsupbelow-ar.init.BaaHaaMemInit behThreedotsupbelow-ar.init.BaaHaaMemInit teh-ar.init.BaaHaaMemInit highhamzaYeh-ar.init.BaaHaaMemInit yehFarsiVinverted-ar.init.BaaHaaMemInit yehFarsiTwodotsabove-ar.init.BaaHaaMemInit yehFarsiThreedotsabove-ar.init.BaaHaaMemInit theh-ar.init.BaaHaaMemInit tteh-ar.init.BaaHaaMemInit noonDotbelow-ar.init.BaaHaaMemInit noonVabove-ar.init.BaaHaaMemInit alefMaksura-ar.init.BaaHaaMemInit tehRing-ar.init.BaaHaaMemInit behTwodotsbelowDotabove-ar.init.BaaHaaMemInit yehThreedotsbelow-ar.init.BaaHaaMemInit e-ar.init.BaaHaaMemInit noonghunna-ar.init.BaaHaaMemInit yehFarsi-ar.init.BaaHaaMemInit noonTwodotsbelow-ar.init.BaaHaaMemInit]; @aBaa.init.BaaHehInit = [yehFarsiFourbelow-ar.init.BaaHehInit beheh-ar.init.BaaHehInit yehFarsiThreeabove-ar.init.BaaHehInit noonRing-ar.init.BaaHehInit behThreedotshorizontalbelow-ar.init.BaaHehInit behVabove-ar.init.BaaHehInit noonTahabove-ar.init.BaaHehInit yehVabove-ar.init.BaaHehInit yehFarsiTwoabove-ar.init.BaaHehInit noonThreedotsabove-ar.init.BaaHehInit yehHamzaabove-ar.init.BaaHehInit behDotless-ar.init.BaaHehInit yehKashmiri-ar.init.BaaHehInit yeh-ar.init.BaaHehInit rnoon-ar.init.BaaHehInit teheh-ar.init.BaaHehInit behVinvertedbelow-ar.init.BaaHehInit behVbelow-ar.init.BaaHehInit tehThreedotsdown-ar.init.BaaHehInit peh-ar.init.BaaHehInit beeh-ar.init.BaaHehInit beh-ar.init.BaaHehInit tteheh-ar.init.BaaHehInit behThreedotsupabove-ar.init.BaaHehInit noon-ar.init.BaaHehInit tehThreedotsupbelow-ar.init.BaaHehInit behThreedotsupbelow-ar.init.BaaHehInit teh-ar.init.BaaHehInit highhamzaYeh-ar.init.BaaHehInit yehFarsiVinverted-ar.init.BaaHehInit yehFarsiTwodotsabove-ar.init.BaaHehInit yehFarsiThreedotsabove-ar.init.BaaHehInit theh-ar.init.BaaHehInit tteh-ar.init.BaaHehInit noonDotbelow-ar.init.BaaHehInit noonVabove-ar.init.BaaHehInit alefMaksura-ar.init.BaaHehInit tehRing-ar.init.BaaHehInit behTwodotsbelowDotabove-ar.init.BaaHehInit yehThreedotsbelow-ar.init.BaaHehInit e-ar.init.BaaHehInit noonghunna-ar.init.BaaHehInit yehFarsi-ar.init.BaaHehInit noonTwodotsbelow-ar.init.BaaHehInit]; @aBaa.init.BaaMemHaaInit = [yehFarsiFourbelow-ar.init.BaaMemHaaInit beheh-ar.init.BaaMemHaaInit yehFarsiThreeabove-ar.init.BaaMemHaaInit noonRing-ar.init.BaaMemHaaInit behThreedotshorizontalbelow-ar.init.BaaMemHaaInit behVabove-ar.init.BaaMemHaaInit noonTahabove-ar.init.BaaMemHaaInit yehVabove-ar.init.BaaMemHaaInit yehFarsiTwoabove-ar.init.BaaMemHaaInit noonThreedotsabove-ar.init.BaaMemHaaInit yehHamzaabove-ar.init.BaaMemHaaInit behDotless-ar.init.BaaMemHaaInit yehKashmiri-ar.init.BaaMemHaaInit yeh-ar.init.BaaMemHaaInit rnoon-ar.init.BaaMemHaaInit teheh-ar.init.BaaMemHaaInit behVinvertedbelow-ar.init.BaaMemHaaInit behVbelow-ar.init.BaaMemHaaInit tehThreedotsdown-ar.init.BaaMemHaaInit peh-ar.init.BaaMemHaaInit beeh-ar.init.BaaMemHaaInit beh-ar.init.BaaMemHaaInit tteheh-ar.init.BaaMemHaaInit behThreedotsupabove-ar.init.BaaMemHaaInit noon-ar.init.BaaMemHaaInit tehThreedotsupbelow-ar.init.BaaMemHaaInit behThreedotsupbelow-ar.init.BaaMemHaaInit teh-ar.init.BaaMemHaaInit highhamzaYeh-ar.init.BaaMemHaaInit yehFarsiVinverted-ar.init.BaaMemHaaInit yehFarsiTwodotsabove-ar.init.BaaMemHaaInit yehFarsiThreedotsabove-ar.init.BaaMemHaaInit theh-ar.init.BaaMemHaaInit tteh-ar.init.BaaMemHaaInit noonDotbelow-ar.init.BaaMemHaaInit noonVabove-ar.init.BaaMemHaaInit alefMaksura-ar.init.BaaMemHaaInit tehRing-ar.init.BaaMemHaaInit behTwodotsbelowDotabove-ar.init.BaaMemHaaInit yehThreedotsbelow-ar.init.BaaMemHaaInit e-ar.init.BaaMemHaaInit noonghunna-ar.init.BaaMemHaaInit yehFarsi-ar.init.BaaMemHaaInit noonTwodotsbelow-ar.init.BaaMemHaaInit]; @aBaa.init.BaaMemInit = [yehFarsiFourbelow-ar.init.BaaMemInit beheh-ar.init.BaaMemInit yehFarsiThreeabove-ar.init.BaaMemInit noonRing-ar.init.BaaMemInit behThreedotshorizontalbelow-ar.init.BaaMemInit behVabove-ar.init.BaaMemInit noonTahabove-ar.init.BaaMemInit yehVabove-ar.init.BaaMemInit yehFarsiTwoabove-ar.init.BaaMemInit noonThreedotsabove-ar.init.BaaMemInit yehHamzaabove-ar.init.BaaMemInit behDotless-ar.init.BaaMemInit yehKashmiri-ar.init.BaaMemInit yeh-ar.init.BaaMemInit rnoon-ar.init.BaaMemInit teheh-ar.init.BaaMemInit behVinvertedbelow-ar.init.BaaMemInit behVbelow-ar.init.BaaMemInit tehThreedotsdown-ar.init.BaaMemInit peh-ar.init.BaaMemInit beeh-ar.init.BaaMemInit beh-ar.init.BaaMemInit tteheh-ar.init.BaaMemInit behThreedotsupabove-ar.init.BaaMemInit noon-ar.init.BaaMemInit tehThreedotsupbelow-ar.init.BaaMemInit behThreedotsupbelow-ar.init.BaaMemInit teh-ar.init.BaaMemInit highhamzaYeh-ar.init.BaaMemInit yehFarsiVinverted-ar.init.BaaMemInit yehFarsiTwodotsabove-ar.init.BaaMemInit yehFarsiThreedotsabove-ar.init.BaaMemInit theh-ar.init.BaaMemInit tteh-ar.init.BaaMemInit noonDotbelow-ar.init.BaaMemInit noonVabove-ar.init.BaaMemInit alefMaksura-ar.init.BaaMemInit tehRing-ar.init.BaaMemInit behTwodotsbelowDotabove-ar.init.BaaMemInit yehThreedotsbelow-ar.init.BaaMemInit e-ar.init.BaaMemInit noonghunna-ar.init.BaaMemInit yehFarsi-ar.init.BaaMemInit noonTwodotsbelow-ar.init.BaaMemInit]; @aBaa.init.BaaMemIsol = [yehFarsiFourbelow-ar.init.BaaMemIsol beheh-ar.init.BaaMemIsol yehFarsiThreeabove-ar.init.BaaMemIsol noonRing-ar.init.BaaMemIsol behThreedotshorizontalbelow-ar.init.BaaMemIsol behVabove-ar.init.BaaMemIsol noonTahabove-ar.init.BaaMemIsol yehVabove-ar.init.BaaMemIsol yehFarsiTwoabove-ar.init.BaaMemIsol noonThreedotsabove-ar.init.BaaMemIsol yehHamzaabove-ar.init.BaaMemIsol behDotless-ar.init.BaaMemIsol yehKashmiri-ar.init.BaaMemIsol yeh-ar.init.BaaMemIsol rnoon-ar.init.BaaMemIsol teheh-ar.init.BaaMemIsol behVinvertedbelow-ar.init.BaaMemIsol behVbelow-ar.init.BaaMemIsol tehThreedotsdown-ar.init.BaaMemIsol peh-ar.init.BaaMemIsol beeh-ar.init.BaaMemIsol beh-ar.init.BaaMemIsol tteheh-ar.init.BaaMemIsol behThreedotsupabove-ar.init.BaaMemIsol noon-ar.init.BaaMemIsol tehThreedotsupbelow-ar.init.BaaMemIsol behThreedotsupbelow-ar.init.BaaMemIsol teh-ar.init.BaaMemIsol highhamzaYeh-ar.init.BaaMemIsol yehFarsiVinverted-ar.init.BaaMemIsol yehFarsiTwodotsabove-ar.init.BaaMemIsol yehFarsiThreedotsabove-ar.init.BaaMemIsol theh-ar.init.BaaMemIsol tteh-ar.init.BaaMemIsol noonDotbelow-ar.init.BaaMemIsol noonVabove-ar.init.BaaMemIsol alefMaksura-ar.init.BaaMemIsol tehRing-ar.init.BaaMemIsol behTwodotsbelowDotabove-ar.init.BaaMemIsol yehThreedotsbelow-ar.init.BaaMemIsol e-ar.init.BaaMemIsol noonghunna-ar.init.BaaMemIsol yehFarsi-ar.init.BaaMemIsol noonTwodotsbelow-ar.init.BaaMemIsol]; @aBaa.init.BaaNonIsol = [yehFarsiFourbelow-ar.init.BaaNonIsol beheh-ar.init.BaaNonIsol yehFarsiThreeabove-ar.init.BaaNonIsol noonRing-ar.init.BaaNonIsol behThreedotshorizontalbelow-ar.init.BaaNonIsol behVabove-ar.init.BaaNonIsol noonTahabove-ar.init.BaaNonIsol yehVabove-ar.init.BaaNonIsol yehFarsiTwoabove-ar.init.BaaNonIsol noonThreedotsabove-ar.init.BaaNonIsol yehHamzaabove-ar.init.BaaNonIsol behDotless-ar.init.BaaNonIsol yehKashmiri-ar.init.BaaNonIsol yeh-ar.init.BaaNonIsol rnoon-ar.init.BaaNonIsol teheh-ar.init.BaaNonIsol behVinvertedbelow-ar.init.BaaNonIsol behVbelow-ar.init.BaaNonIsol tehThreedotsdown-ar.init.BaaNonIsol peh-ar.init.BaaNonIsol beeh-ar.init.BaaNonIsol beh-ar.init.BaaNonIsol tteheh-ar.init.BaaNonIsol behThreedotsupabove-ar.init.BaaNonIsol noon-ar.init.BaaNonIsol tehThreedotsupbelow-ar.init.BaaNonIsol behThreedotsupbelow-ar.init.BaaNonIsol teh-ar.init.BaaNonIsol highhamzaYeh-ar.init.BaaNonIsol yehFarsiVinverted-ar.init.BaaNonIsol yehFarsiTwodotsabove-ar.init.BaaNonIsol yehFarsiThreedotsabove-ar.init.BaaNonIsol theh-ar.init.BaaNonIsol tteh-ar.init.BaaNonIsol noonDotbelow-ar.init.BaaNonIsol noonVabove-ar.init.BaaNonIsol alefMaksura-ar.init.BaaNonIsol tehRing-ar.init.BaaNonIsol behTwodotsbelowDotabove-ar.init.BaaNonIsol yehThreedotsbelow-ar.init.BaaNonIsol e-ar.init.BaaNonIsol noonghunna-ar.init.BaaNonIsol yehFarsi-ar.init.BaaNonIsol noonTwodotsbelow-ar.init.BaaNonIsol]; @aBaa.init.BaaRaaIsol = [yehFarsiFourbelow-ar.init.BaaRaaIsol beheh-ar.init.BaaRaaIsol yehFarsiThreeabove-ar.init.BaaRaaIsol noonRing-ar.init.BaaRaaIsol behThreedotshorizontalbelow-ar.init.BaaRaaIsol behVabove-ar.init.BaaRaaIsol noonTahabove-ar.init.BaaRaaIsol yehVabove-ar.init.BaaRaaIsol yehFarsiTwoabove-ar.init.BaaRaaIsol noonThreedotsabove-ar.init.BaaRaaIsol yehHamzaabove-ar.init.BaaRaaIsol behDotless-ar.init.BaaRaaIsol yehKashmiri-ar.init.BaaRaaIsol yeh-ar.init.BaaRaaIsol rnoon-ar.init.BaaRaaIsol teheh-ar.init.BaaRaaIsol behVinvertedbelow-ar.init.BaaRaaIsol behVbelow-ar.init.BaaRaaIsol tehThreedotsdown-ar.init.BaaRaaIsol peh-ar.init.BaaRaaIsol beeh-ar.init.BaaRaaIsol beh-ar.init.BaaRaaIsol tteheh-ar.init.BaaRaaIsol behThreedotsupabove-ar.init.BaaRaaIsol noon-ar.init.BaaRaaIsol tehThreedotsupbelow-ar.init.BaaRaaIsol behThreedotsupbelow-ar.init.BaaRaaIsol teh-ar.init.BaaRaaIsol highhamzaYeh-ar.init.BaaRaaIsol yehFarsiVinverted-ar.init.BaaRaaIsol yehFarsiTwodotsabove-ar.init.BaaRaaIsol yehFarsiThreedotsabove-ar.init.BaaRaaIsol theh-ar.init.BaaRaaIsol tteh-ar.init.BaaRaaIsol noonDotbelow-ar.init.BaaRaaIsol noonVabove-ar.init.BaaRaaIsol alefMaksura-ar.init.BaaRaaIsol tehRing-ar.init.BaaRaaIsol behTwodotsbelowDotabove-ar.init.BaaRaaIsol yehThreedotsbelow-ar.init.BaaRaaIsol e-ar.init.BaaRaaIsol noonghunna-ar.init.BaaRaaIsol yehFarsi-ar.init.BaaRaaIsol noonTwodotsbelow-ar.init.BaaRaaIsol]; @aBaa.init.BaaSenAltInit = [yehFarsiFourbelow-ar.init.BaaSenAltInit beheh-ar.init.BaaSenAltInit yehFarsiThreeabove-ar.init.BaaSenAltInit noonRing-ar.init.BaaSenAltInit behThreedotshorizontalbelow-ar.init.BaaSenAltInit behVabove-ar.init.BaaSenAltInit noonTahabove-ar.init.BaaSenAltInit yehVabove-ar.init.BaaSenAltInit yehFarsiTwoabove-ar.init.BaaSenAltInit noonThreedotsabove-ar.init.BaaSenAltInit yehHamzaabove-ar.init.BaaSenAltInit behDotless-ar.init.BaaSenAltInit yehKashmiri-ar.init.BaaSenAltInit yeh-ar.init.BaaSenAltInit rnoon-ar.init.BaaSenAltInit teheh-ar.init.BaaSenAltInit behVinvertedbelow-ar.init.BaaSenAltInit behVbelow-ar.init.BaaSenAltInit tehThreedotsdown-ar.init.BaaSenAltInit peh-ar.init.BaaSenAltInit beeh-ar.init.BaaSenAltInit beh-ar.init.BaaSenAltInit tteheh-ar.init.BaaSenAltInit behThreedotsupabove-ar.init.BaaSenAltInit noon-ar.init.BaaSenAltInit tehThreedotsupbelow-ar.init.BaaSenAltInit behThreedotsupbelow-ar.init.BaaSenAltInit teh-ar.init.BaaSenAltInit highhamzaYeh-ar.init.BaaSenAltInit yehFarsiVinverted-ar.init.BaaSenAltInit yehFarsiTwodotsabove-ar.init.BaaSenAltInit yehFarsiThreedotsabove-ar.init.BaaSenAltInit theh-ar.init.BaaSenAltInit tteh-ar.init.BaaSenAltInit noonDotbelow-ar.init.BaaSenAltInit noonVabove-ar.init.BaaSenAltInit alefMaksura-ar.init.BaaSenAltInit tehRing-ar.init.BaaSenAltInit behTwodotsbelowDotabove-ar.init.BaaSenAltInit yehThreedotsbelow-ar.init.BaaSenAltInit e-ar.init.BaaSenAltInit noonghunna-ar.init.BaaSenAltInit yehFarsi-ar.init.BaaSenAltInit noonTwodotsbelow-ar.init.BaaSenAltInit]; @aBaa.init.BaaSenInit = [yehFarsiFourbelow-ar.init.BaaSenInit beheh-ar.init.BaaSenInit yehFarsiThreeabove-ar.init.BaaSenInit noonRing-ar.init.BaaSenInit behThreedotshorizontalbelow-ar.init.BaaSenInit behVabove-ar.init.BaaSenInit noonTahabove-ar.init.BaaSenInit yehVabove-ar.init.BaaSenInit yehFarsiTwoabove-ar.init.BaaSenInit noonThreedotsabove-ar.init.BaaSenInit yehHamzaabove-ar.init.BaaSenInit behDotless-ar.init.BaaSenInit yehKashmiri-ar.init.BaaSenInit yeh-ar.init.BaaSenInit rnoon-ar.init.BaaSenInit teheh-ar.init.BaaSenInit behVinvertedbelow-ar.init.BaaSenInit behVbelow-ar.init.BaaSenInit tehThreedotsdown-ar.init.BaaSenInit peh-ar.init.BaaSenInit beeh-ar.init.BaaSenInit beh-ar.init.BaaSenInit tteheh-ar.init.BaaSenInit behThreedotsupabove-ar.init.BaaSenInit noon-ar.init.BaaSenInit tehThreedotsupbelow-ar.init.BaaSenInit behThreedotsupbelow-ar.init.BaaSenInit teh-ar.init.BaaSenInit highhamzaYeh-ar.init.BaaSenInit yehFarsiVinverted-ar.init.BaaSenInit yehFarsiTwodotsabove-ar.init.BaaSenInit yehFarsiThreedotsabove-ar.init.BaaSenInit theh-ar.init.BaaSenInit tteh-ar.init.BaaSenInit noonDotbelow-ar.init.BaaSenInit noonVabove-ar.init.BaaSenInit alefMaksura-ar.init.BaaSenInit tehRing-ar.init.BaaSenInit behTwodotsbelowDotabove-ar.init.BaaSenInit yehThreedotsbelow-ar.init.BaaSenInit e-ar.init.BaaSenInit noonghunna-ar.init.BaaSenInit yehFarsi-ar.init.BaaSenInit noonTwodotsbelow-ar.init.BaaSenInit]; @aBaa.init.BaaYaaIsol = [yehFarsiFourbelow-ar.init.BaaYaaIsol beheh-ar.init.BaaYaaIsol yehFarsiThreeabove-ar.init.BaaYaaIsol noonRing-ar.init.BaaYaaIsol behThreedotshorizontalbelow-ar.init.BaaYaaIsol behVabove-ar.init.BaaYaaIsol noonTahabove-ar.init.BaaYaaIsol yehVabove-ar.init.BaaYaaIsol yehFarsiTwoabove-ar.init.BaaYaaIsol noonThreedotsabove-ar.init.BaaYaaIsol yehHamzaabove-ar.init.BaaYaaIsol behDotless-ar.init.BaaYaaIsol yehKashmiri-ar.init.BaaYaaIsol yeh-ar.init.BaaYaaIsol rnoon-ar.init.BaaYaaIsol teheh-ar.init.BaaYaaIsol behVinvertedbelow-ar.init.BaaYaaIsol behVbelow-ar.init.BaaYaaIsol tehThreedotsdown-ar.init.BaaYaaIsol peh-ar.init.BaaYaaIsol beeh-ar.init.BaaYaaIsol beh-ar.init.BaaYaaIsol tteheh-ar.init.BaaYaaIsol behThreedotsupabove-ar.init.BaaYaaIsol noon-ar.init.BaaYaaIsol tehThreedotsupbelow-ar.init.BaaYaaIsol behThreedotsupbelow-ar.init.BaaYaaIsol teh-ar.init.BaaYaaIsol highhamzaYeh-ar.init.BaaYaaIsol yehFarsiVinverted-ar.init.BaaYaaIsol yehFarsiTwodotsabove-ar.init.BaaYaaIsol yehFarsiThreedotsabove-ar.init.BaaYaaIsol theh-ar.init.BaaYaaIsol tteh-ar.init.BaaYaaIsol noonDotbelow-ar.init.BaaYaaIsol noonVabove-ar.init.BaaYaaIsol alefMaksura-ar.init.BaaYaaIsol tehRing-ar.init.BaaYaaIsol behTwodotsbelowDotabove-ar.init.BaaYaaIsol yehThreedotsbelow-ar.init.BaaYaaIsol e-ar.init.BaaYaaIsol noonghunna-ar.init.BaaYaaIsol yehFarsi-ar.init.BaaYaaIsol noonTwodotsbelow-ar.init.BaaYaaIsol]; @aBaa.init.High = [yehFarsiFourbelow-ar.init.High beheh-ar.init.High yehFarsiThreeabove-ar.init.High noonRing-ar.init.High behThreedotshorizontalbelow-ar.init.High behVabove-ar.init.High noonTahabove-ar.init.High yehVabove-ar.init.High yehFarsiTwoabove-ar.init.High noonThreedotsabove-ar.init.High yehHamzaabove-ar.init.High behDotless-ar.init.High yehKashmiri-ar.init.High yeh-ar.init.High rnoon-ar.init.High teheh-ar.init.High behVinvertedbelow-ar.init.High behVbelow-ar.init.High tehThreedotsdown-ar.init.High peh-ar.init.High beeh-ar.init.High beh-ar.init.High tteheh-ar.init.High behThreedotsupabove-ar.init.High noon-ar.init.High tehThreedotsupbelow-ar.init.High behThreedotsupbelow-ar.init.High teh-ar.init.High highhamzaYeh-ar.init.High yehFarsiVinverted-ar.init.High yehFarsiTwodotsabove-ar.init.High yehFarsiThreedotsabove-ar.init.High theh-ar.init.High tteh-ar.init.High noonDotbelow-ar.init.High noonVabove-ar.init.High alefMaksura-ar.init.High tehRing-ar.init.High behTwodotsbelowDotabove-ar.init.High yehThreedotsbelow-ar.init.High e-ar.init.High noonghunna-ar.init.High yehFarsi-ar.init.High noonTwodotsbelow-ar.init.High]; @aBaa.init.Wide = [yehFarsiFourbelow-ar.init.Wide beheh-ar.init.Wide yehFarsiThreeabove-ar.init.Wide noonRing-ar.init.Wide behThreedotshorizontalbelow-ar.init.Wide behVabove-ar.init.Wide noonTahabove-ar.init.Wide yehVabove-ar.init.Wide yehFarsiTwoabove-ar.init.Wide noonThreedotsabove-ar.init.Wide yehHamzaabove-ar.init.Wide behDotless-ar.init.Wide yehKashmiri-ar.init.Wide yeh-ar.init.Wide rnoon-ar.init.Wide teheh-ar.init.Wide behVinvertedbelow-ar.init.Wide behVbelow-ar.init.Wide tehThreedotsdown-ar.init.Wide peh-ar.init.Wide beeh-ar.init.Wide beh-ar.init.Wide tteheh-ar.init.Wide behThreedotsupabove-ar.init.Wide noon-ar.init.Wide tehThreedotsupbelow-ar.init.Wide behThreedotsupbelow-ar.init.Wide teh-ar.init.Wide highhamzaYeh-ar.init.Wide yehFarsiVinverted-ar.init.Wide yehFarsiTwodotsabove-ar.init.Wide yehFarsiThreedotsabove-ar.init.Wide theh-ar.init.Wide tteh-ar.init.Wide noonDotbelow-ar.init.Wide noonVabove-ar.init.Wide alefMaksura-ar.init.Wide tehRing-ar.init.Wide behTwodotsbelowDotabove-ar.init.Wide yehThreedotsbelow-ar.init.Wide e-ar.init.Wide noonghunna-ar.init.Wide yehFarsi-ar.init.Wide noonTwodotsbelow-ar.init.Wide]; @aBaa.init.YaaBari = [yehFarsiFourbelow-ar.init.YaaBari beheh-ar.init.YaaBari yehFarsiThreeabove-ar.init.YaaBari noonRing-ar.init.YaaBari behThreedotshorizontalbelow-ar.init.YaaBari behVabove-ar.init.YaaBari noonTahabove-ar.init.YaaBari yehVabove-ar.init.YaaBari yehFarsiTwoabove-ar.init.YaaBari noonThreedotsabove-ar.init.YaaBari yehHamzaabove-ar.init.YaaBari behDotless-ar.init.YaaBari yehKashmiri-ar.init.YaaBari yeh-ar.init.YaaBari rnoon-ar.init.YaaBari teheh-ar.init.YaaBari behVinvertedbelow-ar.init.YaaBari behVbelow-ar.init.YaaBari tehThreedotsdown-ar.init.YaaBari peh-ar.init.YaaBari beeh-ar.init.YaaBari beh-ar.init.YaaBari tteheh-ar.init.YaaBari behThreedotsupabove-ar.init.YaaBari noon-ar.init.YaaBari tehThreedotsupbelow-ar.init.YaaBari behThreedotsupbelow-ar.init.YaaBari teh-ar.init.YaaBari highhamzaYeh-ar.init.YaaBari yehFarsiVinverted-ar.init.YaaBari yehFarsiTwodotsabove-ar.init.YaaBari yehFarsiThreedotsabove-ar.init.YaaBari theh-ar.init.YaaBari tteh-ar.init.YaaBari noonDotbelow-ar.init.YaaBari noonVabove-ar.init.YaaBari alefMaksura-ar.init.YaaBari tehRing-ar.init.YaaBari behTwodotsbelowDotabove-ar.init.YaaBari yehThreedotsbelow-ar.init.YaaBari e-ar.init.YaaBari noonghunna-ar.init.YaaBari yehFarsi-ar.init.YaaBari noonTwodotsbelow-ar.init.YaaBari]; @aBaa.init.BaaBaaYaaBari = [yehFarsiFourbelow-ar.init.BaaBaaYaaBari beheh-ar.init.BaaBaaYaaBari yehFarsiThreeabove-ar.init.BaaBaaYaaBari noonRing-ar.init.BaaBaaYaaBari behThreedotshorizontalbelow-ar.init.BaaBaaYaaBari behVabove-ar.init.BaaBaaYaaBari noonTahabove-ar.init.BaaBaaYaaBari yehVabove-ar.init.BaaBaaYaaBari yehFarsiTwoabove-ar.init.BaaBaaYaaBari noonThreedotsabove-ar.init.BaaBaaYaaBari yehHamzaabove-ar.init.BaaBaaYaaBari behDotless-ar.init.BaaBaaYaaBari yehKashmiri-ar.init.BaaBaaYaaBari yeh-ar.init.BaaBaaYaaBari rnoon-ar.init.BaaBaaYaaBari teheh-ar.init.BaaBaaYaaBari behVinvertedbelow-ar.init.BaaBaaYaaBari behVbelow-ar.init.BaaBaaYaaBari tehThreedotsdown-ar.init.BaaBaaYaaBari peh-ar.init.BaaBaaYaaBari beeh-ar.init.BaaBaaYaaBari beh-ar.init.BaaBaaYaaBari tteheh-ar.init.BaaBaaYaaBari behThreedotsupabove-ar.init.BaaBaaYaaBari noon-ar.init.BaaBaaYaaBari tehThreedotsupbelow-ar.init.BaaBaaYaaBari behThreedotsupbelow-ar.init.BaaBaaYaaBari teh-ar.init.BaaBaaYaaBari highhamzaYeh-ar.init.BaaBaaYaaBari yehFarsiVinverted-ar.init.BaaBaaYaaBari yehFarsiTwodotsabove-ar.init.BaaBaaYaaBari yehFarsiThreedotsabove-ar.init.BaaBaaYaaBari theh-ar.init.BaaBaaYaaBari tteh-ar.init.BaaBaaYaaBari noonDotbelow-ar.init.BaaBaaYaaBari noonVabove-ar.init.BaaBaaYaaBari alefMaksura-ar.init.BaaBaaYaaBari tehRing-ar.init.BaaBaaYaaBari behTwodotsbelowDotabove-ar.init.BaaBaaYaaBari yehThreedotsbelow-ar.init.BaaBaaYaaBari e-ar.init.BaaBaaYaaBari noonghunna-ar.init.BaaBaaYaaBari yehFarsi-ar.init.BaaBaaYaaBari noonTwodotsbelow-ar.init.BaaBaaYaaBari]; @aBaa.medi.YaaBari = [yehFarsiFourbelow-ar.medi.YaaBari beheh-ar.medi.YaaBari yehFarsiThreeabove-ar.medi.YaaBari noonRing-ar.medi.YaaBari behThreedotshorizontalbelow-ar.medi.YaaBari behVabove-ar.medi.YaaBari noonTahabove-ar.medi.YaaBari yehVabove-ar.medi.YaaBari yehFarsiTwoabove-ar.medi.YaaBari noonThreedotsabove-ar.medi.YaaBari yehHamzaabove-ar.medi.YaaBari behDotless-ar.medi.YaaBari yehKashmiri-ar.medi.YaaBari yeh-ar.medi.YaaBari rnoon-ar.medi.YaaBari teheh-ar.medi.YaaBari behVinvertedbelow-ar.medi.YaaBari behVbelow-ar.medi.YaaBari tehThreedotsdown-ar.medi.YaaBari peh-ar.medi.YaaBari beeh-ar.medi.YaaBari beh-ar.medi.YaaBari tteheh-ar.medi.YaaBari behThreedotsupabove-ar.medi.YaaBari noon-ar.medi.YaaBari tehThreedotsupbelow-ar.medi.YaaBari behThreedotsupbelow-ar.medi.YaaBari teh-ar.medi.YaaBari yehFarsiVinverted-ar.medi.YaaBari yehFarsiTwodotsabove-ar.medi.YaaBari yehFarsiThreedotsabove-ar.medi.YaaBari theh-ar.medi.YaaBari tteh-ar.medi.YaaBari noonDotbelow-ar.medi.YaaBari noonVabove-ar.medi.YaaBari alefMaksura-ar.medi.YaaBari tehRing-ar.medi.YaaBari behTwodotsbelowDotabove-ar.medi.YaaBari yehThreedotsbelow-ar.medi.YaaBari e-ar.medi.YaaBari noonghunna-ar.medi.YaaBari yehFarsi-ar.medi.YaaBari noonTwodotsbelow-ar.medi.YaaBari]; @aBaa.medi.BaaBaaHaaInit = [yehFarsiFourbelow-ar.medi.BaaBaaHaaInit beheh-ar.medi.BaaBaaHaaInit yehFarsiThreeabove-ar.medi.BaaBaaHaaInit noonRing-ar.medi.BaaBaaHaaInit behThreedotshorizontalbelow-ar.medi.BaaBaaHaaInit behVabove-ar.medi.BaaBaaHaaInit noonTahabove-ar.medi.BaaBaaHaaInit yehVabove-ar.medi.BaaBaaHaaInit yehFarsiTwoabove-ar.medi.BaaBaaHaaInit noonThreedotsabove-ar.medi.BaaBaaHaaInit yehHamzaabove-ar.medi.BaaBaaHaaInit behDotless-ar.medi.BaaBaaHaaInit yehKashmiri-ar.medi.BaaBaaHaaInit yeh-ar.medi.BaaBaaHaaInit rnoon-ar.medi.BaaBaaHaaInit teheh-ar.medi.BaaBaaHaaInit behVinvertedbelow-ar.medi.BaaBaaHaaInit behVbelow-ar.medi.BaaBaaHaaInit tehThreedotsdown-ar.medi.BaaBaaHaaInit peh-ar.medi.BaaBaaHaaInit beeh-ar.medi.BaaBaaHaaInit beh-ar.medi.BaaBaaHaaInit tteheh-ar.medi.BaaBaaHaaInit behThreedotsupabove-ar.medi.BaaBaaHaaInit noon-ar.medi.BaaBaaHaaInit tehThreedotsupbelow-ar.medi.BaaBaaHaaInit behThreedotsupbelow-ar.medi.BaaBaaHaaInit teh-ar.medi.BaaBaaHaaInit yehFarsiVinverted-ar.medi.BaaBaaHaaInit yehFarsiTwodotsabove-ar.medi.BaaBaaHaaInit yehFarsiThreedotsabove-ar.medi.BaaBaaHaaInit theh-ar.medi.BaaBaaHaaInit tteh-ar.medi.BaaBaaHaaInit noonDotbelow-ar.medi.BaaBaaHaaInit noonVabove-ar.medi.BaaBaaHaaInit alefMaksura-ar.medi.BaaBaaHaaInit tehRing-ar.medi.BaaBaaHaaInit behTwodotsbelowDotabove-ar.medi.BaaBaaHaaInit yehThreedotsbelow-ar.medi.BaaBaaHaaInit e-ar.medi.BaaBaaHaaInit noonghunna-ar.medi.BaaBaaHaaInit yehFarsi-ar.medi.BaaBaaHaaInit noonTwodotsbelow-ar.medi.BaaBaaHaaInit]; @aBaa.medi.BaaBaaInit = [yehFarsiFourbelow-ar.medi.BaaBaaInit beheh-ar.medi.BaaBaaInit yehFarsiThreeabove-ar.medi.BaaBaaInit noonRing-ar.medi.BaaBaaInit behThreedotshorizontalbelow-ar.medi.BaaBaaInit behVabove-ar.medi.BaaBaaInit noonTahabove-ar.medi.BaaBaaInit yehVabove-ar.medi.BaaBaaInit yehFarsiTwoabove-ar.medi.BaaBaaInit noonThreedotsabove-ar.medi.BaaBaaInit yehHamzaabove-ar.medi.BaaBaaInit behDotless-ar.medi.BaaBaaInit yehKashmiri-ar.medi.BaaBaaInit yeh-ar.medi.BaaBaaInit rnoon-ar.medi.BaaBaaInit teheh-ar.medi.BaaBaaInit behVinvertedbelow-ar.medi.BaaBaaInit behVbelow-ar.medi.BaaBaaInit tehThreedotsdown-ar.medi.BaaBaaInit peh-ar.medi.BaaBaaInit beeh-ar.medi.BaaBaaInit beh-ar.medi.BaaBaaInit tteheh-ar.medi.BaaBaaInit behThreedotsupabove-ar.medi.BaaBaaInit noon-ar.medi.BaaBaaInit tehThreedotsupbelow-ar.medi.BaaBaaInit behThreedotsupbelow-ar.medi.BaaBaaInit teh-ar.medi.BaaBaaInit yehFarsiVinverted-ar.medi.BaaBaaInit yehFarsiTwodotsabove-ar.medi.BaaBaaInit yehFarsiThreedotsabove-ar.medi.BaaBaaInit theh-ar.medi.BaaBaaInit tteh-ar.medi.BaaBaaInit noonDotbelow-ar.medi.BaaBaaInit noonVabove-ar.medi.BaaBaaInit alefMaksura-ar.medi.BaaBaaInit tehRing-ar.medi.BaaBaaInit behTwodotsbelowDotabove-ar.medi.BaaBaaInit yehThreedotsbelow-ar.medi.BaaBaaInit e-ar.medi.BaaBaaInit noonghunna-ar.medi.BaaBaaInit yehFarsi-ar.medi.BaaBaaInit noonTwodotsbelow-ar.medi.BaaBaaInit]; @aBaa.medi.BaaBaaMemInit = [yehFarsiFourbelow-ar.medi.BaaBaaMemInit beheh-ar.medi.BaaBaaMemInit yehFarsiThreeabove-ar.medi.BaaBaaMemInit noonRing-ar.medi.BaaBaaMemInit behThreedotshorizontalbelow-ar.medi.BaaBaaMemInit behVabove-ar.medi.BaaBaaMemInit noonTahabove-ar.medi.BaaBaaMemInit yehVabove-ar.medi.BaaBaaMemInit yehFarsiTwoabove-ar.medi.BaaBaaMemInit noonThreedotsabove-ar.medi.BaaBaaMemInit yehHamzaabove-ar.medi.BaaBaaMemInit behDotless-ar.medi.BaaBaaMemInit yehKashmiri-ar.medi.BaaBaaMemInit yeh-ar.medi.BaaBaaMemInit rnoon-ar.medi.BaaBaaMemInit teheh-ar.medi.BaaBaaMemInit behVinvertedbelow-ar.medi.BaaBaaMemInit behVbelow-ar.medi.BaaBaaMemInit tehThreedotsdown-ar.medi.BaaBaaMemInit peh-ar.medi.BaaBaaMemInit beeh-ar.medi.BaaBaaMemInit beh-ar.medi.BaaBaaMemInit tteheh-ar.medi.BaaBaaMemInit behThreedotsupabove-ar.medi.BaaBaaMemInit noon-ar.medi.BaaBaaMemInit tehThreedotsupbelow-ar.medi.BaaBaaMemInit behThreedotsupbelow-ar.medi.BaaBaaMemInit teh-ar.medi.BaaBaaMemInit yehFarsiVinverted-ar.medi.BaaBaaMemInit yehFarsiTwodotsabove-ar.medi.BaaBaaMemInit yehFarsiThreedotsabove-ar.medi.BaaBaaMemInit theh-ar.medi.BaaBaaMemInit tteh-ar.medi.BaaBaaMemInit noonDotbelow-ar.medi.BaaBaaMemInit noonVabove-ar.medi.BaaBaaMemInit alefMaksura-ar.medi.BaaBaaMemInit tehRing-ar.medi.BaaBaaMemInit behTwodotsbelowDotabove-ar.medi.BaaBaaMemInit yehThreedotsbelow-ar.medi.BaaBaaMemInit e-ar.medi.BaaBaaMemInit noonghunna-ar.medi.BaaBaaMemInit yehFarsi-ar.medi.BaaBaaMemInit noonTwodotsbelow-ar.medi.BaaBaaMemInit]; @aBaa.medi.BaaBaaYaa = [yehFarsiFourbelow-ar.medi.BaaBaaYaa beheh-ar.medi.BaaBaaYaa yehFarsiThreeabove-ar.medi.BaaBaaYaa noonRing-ar.medi.BaaBaaYaa behThreedotshorizontalbelow-ar.medi.BaaBaaYaa behVabove-ar.medi.BaaBaaYaa noonTahabove-ar.medi.BaaBaaYaa yehVabove-ar.medi.BaaBaaYaa yehFarsiTwoabove-ar.medi.BaaBaaYaa noonThreedotsabove-ar.medi.BaaBaaYaa yehHamzaabove-ar.medi.BaaBaaYaa behDotless-ar.medi.BaaBaaYaa yehKashmiri-ar.medi.BaaBaaYaa yeh-ar.medi.BaaBaaYaa rnoon-ar.medi.BaaBaaYaa teheh-ar.medi.BaaBaaYaa behVinvertedbelow-ar.medi.BaaBaaYaa behVbelow-ar.medi.BaaBaaYaa tehThreedotsdown-ar.medi.BaaBaaYaa peh-ar.medi.BaaBaaYaa beeh-ar.medi.BaaBaaYaa beh-ar.medi.BaaBaaYaa tteheh-ar.medi.BaaBaaYaa behThreedotsupabove-ar.medi.BaaBaaYaa noon-ar.medi.BaaBaaYaa tehThreedotsupbelow-ar.medi.BaaBaaYaa behThreedotsupbelow-ar.medi.BaaBaaYaa teh-ar.medi.BaaBaaYaa yehFarsiVinverted-ar.medi.BaaBaaYaa yehFarsiTwodotsabove-ar.medi.BaaBaaYaa yehFarsiThreedotsabove-ar.medi.BaaBaaYaa theh-ar.medi.BaaBaaYaa tteh-ar.medi.BaaBaaYaa noonDotbelow-ar.medi.BaaBaaYaa noonVabove-ar.medi.BaaBaaYaa alefMaksura-ar.medi.BaaBaaYaa tehRing-ar.medi.BaaBaaYaa behTwodotsbelowDotabove-ar.medi.BaaBaaYaa yehThreedotsbelow-ar.medi.BaaBaaYaa e-ar.medi.BaaBaaYaa noonghunna-ar.medi.BaaBaaYaa yehFarsi-ar.medi.BaaBaaYaa noonTwodotsbelow-ar.medi.BaaBaaYaa]; @aBaa.medi.BaaHehMedi = [yehFarsiFourbelow-ar.medi.BaaHehMedi beheh-ar.medi.BaaHehMedi yehFarsiThreeabove-ar.medi.BaaHehMedi noonRing-ar.medi.BaaHehMedi behThreedotshorizontalbelow-ar.medi.BaaHehMedi behVabove-ar.medi.BaaHehMedi noonTahabove-ar.medi.BaaHehMedi yehVabove-ar.medi.BaaHehMedi yehFarsiTwoabove-ar.medi.BaaHehMedi noonThreedotsabove-ar.medi.BaaHehMedi yehHamzaabove-ar.medi.BaaHehMedi behDotless-ar.medi.BaaHehMedi yehKashmiri-ar.medi.BaaHehMedi yeh-ar.medi.BaaHehMedi rnoon-ar.medi.BaaHehMedi teheh-ar.medi.BaaHehMedi behVinvertedbelow-ar.medi.BaaHehMedi behVbelow-ar.medi.BaaHehMedi tehThreedotsdown-ar.medi.BaaHehMedi peh-ar.medi.BaaHehMedi beeh-ar.medi.BaaHehMedi beh-ar.medi.BaaHehMedi tteheh-ar.medi.BaaHehMedi behThreedotsupabove-ar.medi.BaaHehMedi noon-ar.medi.BaaHehMedi tehThreedotsupbelow-ar.medi.BaaHehMedi behThreedotsupbelow-ar.medi.BaaHehMedi teh-ar.medi.BaaHehMedi yehFarsiVinverted-ar.medi.BaaHehMedi yehFarsiTwodotsabove-ar.medi.BaaHehMedi yehFarsiThreedotsabove-ar.medi.BaaHehMedi theh-ar.medi.BaaHehMedi tteh-ar.medi.BaaHehMedi noonDotbelow-ar.medi.BaaHehMedi noonVabove-ar.medi.BaaHehMedi alefMaksura-ar.medi.BaaHehMedi tehRing-ar.medi.BaaHehMedi behTwodotsbelowDotabove-ar.medi.BaaHehMedi yehThreedotsbelow-ar.medi.BaaHehMedi e-ar.medi.BaaHehMedi noonghunna-ar.medi.BaaHehMedi yehFarsi-ar.medi.BaaHehMedi noonTwodotsbelow-ar.medi.BaaHehMedi]; @aBaa.medi.BaaMemAlfFina = [yehFarsiFourbelow-ar.medi.BaaMemAlfFina beheh-ar.medi.BaaMemAlfFina yehFarsiThreeabove-ar.medi.BaaMemAlfFina noonRing-ar.medi.BaaMemAlfFina behThreedotshorizontalbelow-ar.medi.BaaMemAlfFina behVabove-ar.medi.BaaMemAlfFina noonTahabove-ar.medi.BaaMemAlfFina yehVabove-ar.medi.BaaMemAlfFina yehFarsiTwoabove-ar.medi.BaaMemAlfFina noonThreedotsabove-ar.medi.BaaMemAlfFina yehHamzaabove-ar.medi.BaaMemAlfFina behDotless-ar.medi.BaaMemAlfFina yehKashmiri-ar.medi.BaaMemAlfFina yeh-ar.medi.BaaMemAlfFina rnoon-ar.medi.BaaMemAlfFina teheh-ar.medi.BaaMemAlfFina behVinvertedbelow-ar.medi.BaaMemAlfFina behVbelow-ar.medi.BaaMemAlfFina tehThreedotsdown-ar.medi.BaaMemAlfFina peh-ar.medi.BaaMemAlfFina beeh-ar.medi.BaaMemAlfFina beh-ar.medi.BaaMemAlfFina tteheh-ar.medi.BaaMemAlfFina behThreedotsupabove-ar.medi.BaaMemAlfFina noon-ar.medi.BaaMemAlfFina tehThreedotsupbelow-ar.medi.BaaMemAlfFina behThreedotsupbelow-ar.medi.BaaMemAlfFina teh-ar.medi.BaaMemAlfFina yehFarsiVinverted-ar.medi.BaaMemAlfFina yehFarsiTwodotsabove-ar.medi.BaaMemAlfFina yehFarsiThreedotsabove-ar.medi.BaaMemAlfFina theh-ar.medi.BaaMemAlfFina tteh-ar.medi.BaaMemAlfFina noonDotbelow-ar.medi.BaaMemAlfFina noonVabove-ar.medi.BaaMemAlfFina alefMaksura-ar.medi.BaaMemAlfFina tehRing-ar.medi.BaaMemAlfFina behTwodotsbelowDotabove-ar.medi.BaaMemAlfFina yehThreedotsbelow-ar.medi.BaaMemAlfFina e-ar.medi.BaaMemAlfFina noonghunna-ar.medi.BaaMemAlfFina yehFarsi-ar.medi.BaaMemAlfFina noonTwodotsbelow-ar.medi.BaaMemAlfFina]; @aBaa.medi.BaaMemFina = [yehFarsiFourbelow-ar.medi.BaaMemFina beheh-ar.medi.BaaMemFina yehFarsiThreeabove-ar.medi.BaaMemFina noonRing-ar.medi.BaaMemFina behThreedotshorizontalbelow-ar.medi.BaaMemFina behVabove-ar.medi.BaaMemFina noonTahabove-ar.medi.BaaMemFina yehVabove-ar.medi.BaaMemFina yehFarsiTwoabove-ar.medi.BaaMemFina noonThreedotsabove-ar.medi.BaaMemFina yehHamzaabove-ar.medi.BaaMemFina behDotless-ar.medi.BaaMemFina yehKashmiri-ar.medi.BaaMemFina yeh-ar.medi.BaaMemFina rnoon-ar.medi.BaaMemFina teheh-ar.medi.BaaMemFina behVinvertedbelow-ar.medi.BaaMemFina behVbelow-ar.medi.BaaMemFina tehThreedotsdown-ar.medi.BaaMemFina peh-ar.medi.BaaMemFina beeh-ar.medi.BaaMemFina beh-ar.medi.BaaMemFina tteheh-ar.medi.BaaMemFina behThreedotsupabove-ar.medi.BaaMemFina noon-ar.medi.BaaMemFina tehThreedotsupbelow-ar.medi.BaaMemFina behThreedotsupbelow-ar.medi.BaaMemFina teh-ar.medi.BaaMemFina yehFarsiVinverted-ar.medi.BaaMemFina yehFarsiTwodotsabove-ar.medi.BaaMemFina yehFarsiThreedotsabove-ar.medi.BaaMemFina theh-ar.medi.BaaMemFina tteh-ar.medi.BaaMemFina noonDotbelow-ar.medi.BaaMemFina noonVabove-ar.medi.BaaMemFina alefMaksura-ar.medi.BaaMemFina tehRing-ar.medi.BaaMemFina behTwodotsbelowDotabove-ar.medi.BaaMemFina yehThreedotsbelow-ar.medi.BaaMemFina e-ar.medi.BaaMemFina noonghunna-ar.medi.BaaMemFina yehFarsi-ar.medi.BaaMemFina noonTwodotsbelow-ar.medi.BaaMemFina]; @aBaa.medi.BaaNonFina = [yehFarsiFourbelow-ar.medi.BaaNonFina beheh-ar.medi.BaaNonFina yehFarsiThreeabove-ar.medi.BaaNonFina noonRing-ar.medi.BaaNonFina behThreedotshorizontalbelow-ar.medi.BaaNonFina behVabove-ar.medi.BaaNonFina noonTahabove-ar.medi.BaaNonFina yehVabove-ar.medi.BaaNonFina yehFarsiTwoabove-ar.medi.BaaNonFina noonThreedotsabove-ar.medi.BaaNonFina yehHamzaabove-ar.medi.BaaNonFina behDotless-ar.medi.BaaNonFina yehKashmiri-ar.medi.BaaNonFina yeh-ar.medi.BaaNonFina rnoon-ar.medi.BaaNonFina teheh-ar.medi.BaaNonFina behVinvertedbelow-ar.medi.BaaNonFina behVbelow-ar.medi.BaaNonFina tehThreedotsdown-ar.medi.BaaNonFina peh-ar.medi.BaaNonFina beeh-ar.medi.BaaNonFina beh-ar.medi.BaaNonFina tteheh-ar.medi.BaaNonFina behThreedotsupabove-ar.medi.BaaNonFina noon-ar.medi.BaaNonFina tehThreedotsupbelow-ar.medi.BaaNonFina behThreedotsupbelow-ar.medi.BaaNonFina teh-ar.medi.BaaNonFina yehFarsiVinverted-ar.medi.BaaNonFina yehFarsiTwodotsabove-ar.medi.BaaNonFina yehFarsiThreedotsabove-ar.medi.BaaNonFina theh-ar.medi.BaaNonFina tteh-ar.medi.BaaNonFina noonDotbelow-ar.medi.BaaNonFina noonVabove-ar.medi.BaaNonFina alefMaksura-ar.medi.BaaNonFina tehRing-ar.medi.BaaNonFina behTwodotsbelowDotabove-ar.medi.BaaNonFina yehThreedotsbelow-ar.medi.BaaNonFina e-ar.medi.BaaNonFina noonghunna-ar.medi.BaaNonFina yehFarsi-ar.medi.BaaNonFina noonTwodotsbelow-ar.medi.BaaNonFina]; @aBaa.medi.BaaRaaFina = [yehFarsiFourbelow-ar.medi.BaaRaaFina beheh-ar.medi.BaaRaaFina yehFarsiThreeabove-ar.medi.BaaRaaFina noonRing-ar.medi.BaaRaaFina behThreedotshorizontalbelow-ar.medi.BaaRaaFina behVabove-ar.medi.BaaRaaFina noonTahabove-ar.medi.BaaRaaFina yehVabove-ar.medi.BaaRaaFina yehFarsiTwoabove-ar.medi.BaaRaaFina noonThreedotsabove-ar.medi.BaaRaaFina yehHamzaabove-ar.medi.BaaRaaFina behDotless-ar.medi.BaaRaaFina yehKashmiri-ar.medi.BaaRaaFina yeh-ar.medi.BaaRaaFina rnoon-ar.medi.BaaRaaFina teheh-ar.medi.BaaRaaFina behVinvertedbelow-ar.medi.BaaRaaFina behVbelow-ar.medi.BaaRaaFina tehThreedotsdown-ar.medi.BaaRaaFina peh-ar.medi.BaaRaaFina beeh-ar.medi.BaaRaaFina beh-ar.medi.BaaRaaFina tteheh-ar.medi.BaaRaaFina behThreedotsupabove-ar.medi.BaaRaaFina noon-ar.medi.BaaRaaFina tehThreedotsupbelow-ar.medi.BaaRaaFina behThreedotsupbelow-ar.medi.BaaRaaFina teh-ar.medi.BaaRaaFina yehFarsiVinverted-ar.medi.BaaRaaFina yehFarsiTwodotsabove-ar.medi.BaaRaaFina yehFarsiThreedotsabove-ar.medi.BaaRaaFina theh-ar.medi.BaaRaaFina tteh-ar.medi.BaaRaaFina noonDotbelow-ar.medi.BaaRaaFina noonVabove-ar.medi.BaaRaaFina alefMaksura-ar.medi.BaaRaaFina tehRing-ar.medi.BaaRaaFina behTwodotsbelowDotabove-ar.medi.BaaRaaFina yehThreedotsbelow-ar.medi.BaaRaaFina e-ar.medi.BaaRaaFina noonghunna-ar.medi.BaaRaaFina yehFarsi-ar.medi.BaaRaaFina noonTwodotsbelow-ar.medi.BaaRaaFina]; @aBaa.medi.BaaYaaFina = [yehFarsiFourbelow-ar.medi.BaaYaaFina beheh-ar.medi.BaaYaaFina yehFarsiThreeabove-ar.medi.BaaYaaFina noonRing-ar.medi.BaaYaaFina behThreedotshorizontalbelow-ar.medi.BaaYaaFina behVabove-ar.medi.BaaYaaFina noonTahabove-ar.medi.BaaYaaFina yehVabove-ar.medi.BaaYaaFina yehFarsiTwoabove-ar.medi.BaaYaaFina noonThreedotsabove-ar.medi.BaaYaaFina yehHamzaabove-ar.medi.BaaYaaFina behDotless-ar.medi.BaaYaaFina yehKashmiri-ar.medi.BaaYaaFina yeh-ar.medi.BaaYaaFina rnoon-ar.medi.BaaYaaFina teheh-ar.medi.BaaYaaFina behVinvertedbelow-ar.medi.BaaYaaFina behVbelow-ar.medi.BaaYaaFina tehThreedotsdown-ar.medi.BaaYaaFina peh-ar.medi.BaaYaaFina beeh-ar.medi.BaaYaaFina beh-ar.medi.BaaYaaFina tteheh-ar.medi.BaaYaaFina behThreedotsupabove-ar.medi.BaaYaaFina noon-ar.medi.BaaYaaFina tehThreedotsupbelow-ar.medi.BaaYaaFina behThreedotsupbelow-ar.medi.BaaYaaFina teh-ar.medi.BaaYaaFina yehFarsiVinverted-ar.medi.BaaYaaFina yehFarsiTwodotsabove-ar.medi.BaaYaaFina yehFarsiThreedotsabove-ar.medi.BaaYaaFina theh-ar.medi.BaaYaaFina tteh-ar.medi.BaaYaaFina noonDotbelow-ar.medi.BaaYaaFina noonVabove-ar.medi.BaaYaaFina alefMaksura-ar.medi.BaaYaaFina tehRing-ar.medi.BaaYaaFina behTwodotsbelowDotabove-ar.medi.BaaYaaFina yehThreedotsbelow-ar.medi.BaaYaaFina e-ar.medi.BaaYaaFina noonghunna-ar.medi.BaaYaaFina yehFarsi-ar.medi.BaaYaaFina noonTwodotsbelow-ar.medi.BaaYaaFina]; @aBaa.medi.High = [yehFarsiFourbelow-ar.medi.High beheh-ar.medi.High yehFarsiThreeabove-ar.medi.High noonRing-ar.medi.High behThreedotshorizontalbelow-ar.medi.High behVabove-ar.medi.High noonTahabove-ar.medi.High yehVabove-ar.medi.High yehFarsiTwoabove-ar.medi.High noonThreedotsabove-ar.medi.High yehHamzaabove-ar.medi.High behDotless-ar.medi.High yehKashmiri-ar.medi.High yeh-ar.medi.High rnoon-ar.medi.High teheh-ar.medi.High behVinvertedbelow-ar.medi.High behVbelow-ar.medi.High tehThreedotsdown-ar.medi.High peh-ar.medi.High beeh-ar.medi.High beh-ar.medi.High tteheh-ar.medi.High behThreedotsupabove-ar.medi.High noon-ar.medi.High tehThreedotsupbelow-ar.medi.High behThreedotsupbelow-ar.medi.High teh-ar.medi.High yehFarsiVinverted-ar.medi.High yehFarsiTwodotsabove-ar.medi.High yehFarsiThreedotsabove-ar.medi.High theh-ar.medi.High tteh-ar.medi.High noonDotbelow-ar.medi.High noonVabove-ar.medi.High alefMaksura-ar.medi.High tehRing-ar.medi.High behTwodotsbelowDotabove-ar.medi.High yehThreedotsbelow-ar.medi.High e-ar.medi.High noonghunna-ar.medi.High yehFarsi-ar.medi.High noonTwodotsbelow-ar.medi.High]; @aBaa.medi.KafBaaInit = [yehFarsiFourbelow-ar.medi.KafBaaInit beheh-ar.medi.KafBaaInit yehFarsiThreeabove-ar.medi.KafBaaInit noonRing-ar.medi.KafBaaInit behThreedotshorizontalbelow-ar.medi.KafBaaInit behVabove-ar.medi.KafBaaInit noonTahabove-ar.medi.KafBaaInit yehVabove-ar.medi.KafBaaInit yehFarsiTwoabove-ar.medi.KafBaaInit noonThreedotsabove-ar.medi.KafBaaInit yehHamzaabove-ar.medi.KafBaaInit behDotless-ar.medi.KafBaaInit yehKashmiri-ar.medi.KafBaaInit yeh-ar.medi.KafBaaInit rnoon-ar.medi.KafBaaInit teheh-ar.medi.KafBaaInit behVinvertedbelow-ar.medi.KafBaaInit behVbelow-ar.medi.KafBaaInit tehThreedotsdown-ar.medi.KafBaaInit peh-ar.medi.KafBaaInit beeh-ar.medi.KafBaaInit beh-ar.medi.KafBaaInit tteheh-ar.medi.KafBaaInit behThreedotsupabove-ar.medi.KafBaaInit noon-ar.medi.KafBaaInit tehThreedotsupbelow-ar.medi.KafBaaInit behThreedotsupbelow-ar.medi.KafBaaInit teh-ar.medi.KafBaaInit yehFarsiVinverted-ar.medi.KafBaaInit yehFarsiTwodotsabove-ar.medi.KafBaaInit yehFarsiThreedotsabove-ar.medi.KafBaaInit theh-ar.medi.KafBaaInit tteh-ar.medi.KafBaaInit noonDotbelow-ar.medi.KafBaaInit noonVabove-ar.medi.KafBaaInit alefMaksura-ar.medi.KafBaaInit tehRing-ar.medi.KafBaaInit behTwodotsbelowDotabove-ar.medi.KafBaaInit yehThreedotsbelow-ar.medi.KafBaaInit e-ar.medi.KafBaaInit noonghunna-ar.medi.KafBaaInit yehFarsi-ar.medi.KafBaaInit noonTwodotsbelow-ar.medi.KafBaaInit]; @aBaa.medi.KafBaaMedi = [yehFarsiFourbelow-ar.medi.KafBaaMedi beheh-ar.medi.KafBaaMedi yehFarsiThreeabove-ar.medi.KafBaaMedi noonRing-ar.medi.KafBaaMedi behThreedotshorizontalbelow-ar.medi.KafBaaMedi behVabove-ar.medi.KafBaaMedi noonTahabove-ar.medi.KafBaaMedi yehVabove-ar.medi.KafBaaMedi yehFarsiTwoabove-ar.medi.KafBaaMedi noonThreedotsabove-ar.medi.KafBaaMedi yehHamzaabove-ar.medi.KafBaaMedi behDotless-ar.medi.KafBaaMedi yehKashmiri-ar.medi.KafBaaMedi yeh-ar.medi.KafBaaMedi rnoon-ar.medi.KafBaaMedi teheh-ar.medi.KafBaaMedi behVinvertedbelow-ar.medi.KafBaaMedi behVbelow-ar.medi.KafBaaMedi tehThreedotsdown-ar.medi.KafBaaMedi peh-ar.medi.KafBaaMedi beeh-ar.medi.KafBaaMedi beh-ar.medi.KafBaaMedi tteheh-ar.medi.KafBaaMedi behThreedotsupabove-ar.medi.KafBaaMedi noon-ar.medi.KafBaaMedi tehThreedotsupbelow-ar.medi.KafBaaMedi behThreedotsupbelow-ar.medi.KafBaaMedi teh-ar.medi.KafBaaMedi yehFarsiVinverted-ar.medi.KafBaaMedi yehFarsiTwodotsabove-ar.medi.KafBaaMedi yehFarsiThreedotsabove-ar.medi.KafBaaMedi theh-ar.medi.KafBaaMedi tteh-ar.medi.KafBaaMedi noonDotbelow-ar.medi.KafBaaMedi noonVabove-ar.medi.KafBaaMedi alefMaksura-ar.medi.KafBaaMedi tehRing-ar.medi.KafBaaMedi behTwodotsbelowDotabove-ar.medi.KafBaaMedi yehThreedotsbelow-ar.medi.KafBaaMedi e-ar.medi.KafBaaMedi noonghunna-ar.medi.KafBaaMedi yehFarsi-ar.medi.KafBaaMedi noonTwodotsbelow-ar.medi.KafBaaMedi]; @aBaa.medi.LamBaaMemInit = [yehFarsiFourbelow-ar.medi.LamBaaMemInit beheh-ar.medi.LamBaaMemInit yehFarsiThreeabove-ar.medi.LamBaaMemInit noonRing-ar.medi.LamBaaMemInit behThreedotshorizontalbelow-ar.medi.LamBaaMemInit behVabove-ar.medi.LamBaaMemInit noonTahabove-ar.medi.LamBaaMemInit yehVabove-ar.medi.LamBaaMemInit yehFarsiTwoabove-ar.medi.LamBaaMemInit noonThreedotsabove-ar.medi.LamBaaMemInit yehHamzaabove-ar.medi.LamBaaMemInit behDotless-ar.medi.LamBaaMemInit yehKashmiri-ar.medi.LamBaaMemInit yeh-ar.medi.LamBaaMemInit rnoon-ar.medi.LamBaaMemInit teheh-ar.medi.LamBaaMemInit behVinvertedbelow-ar.medi.LamBaaMemInit behVbelow-ar.medi.LamBaaMemInit tehThreedotsdown-ar.medi.LamBaaMemInit peh-ar.medi.LamBaaMemInit beeh-ar.medi.LamBaaMemInit beh-ar.medi.LamBaaMemInit tteheh-ar.medi.LamBaaMemInit behThreedotsupabove-ar.medi.LamBaaMemInit noon-ar.medi.LamBaaMemInit tehThreedotsupbelow-ar.medi.LamBaaMemInit behThreedotsupbelow-ar.medi.LamBaaMemInit teh-ar.medi.LamBaaMemInit yehFarsiVinverted-ar.medi.LamBaaMemInit yehFarsiTwodotsabove-ar.medi.LamBaaMemInit yehFarsiThreedotsabove-ar.medi.LamBaaMemInit theh-ar.medi.LamBaaMemInit tteh-ar.medi.LamBaaMemInit noonDotbelow-ar.medi.LamBaaMemInit noonVabove-ar.medi.LamBaaMemInit alefMaksura-ar.medi.LamBaaMemInit tehRing-ar.medi.LamBaaMemInit behTwodotsbelowDotabove-ar.medi.LamBaaMemInit yehThreedotsbelow-ar.medi.LamBaaMemInit e-ar.medi.LamBaaMemInit noonghunna-ar.medi.LamBaaMemInit yehFarsi-ar.medi.LamBaaMemInit noonTwodotsbelow-ar.medi.LamBaaMemInit]; @aBaa.medi.SenBaaMemInit = [yehFarsiFourbelow-ar.medi.SenBaaMemInit beheh-ar.medi.SenBaaMemInit yehFarsiThreeabove-ar.medi.SenBaaMemInit noonRing-ar.medi.SenBaaMemInit behThreedotshorizontalbelow-ar.medi.SenBaaMemInit behVabove-ar.medi.SenBaaMemInit noonTahabove-ar.medi.SenBaaMemInit yehVabove-ar.medi.SenBaaMemInit yehFarsiTwoabove-ar.medi.SenBaaMemInit noonThreedotsabove-ar.medi.SenBaaMemInit yehHamzaabove-ar.medi.SenBaaMemInit behDotless-ar.medi.SenBaaMemInit yehKashmiri-ar.medi.SenBaaMemInit yeh-ar.medi.SenBaaMemInit rnoon-ar.medi.SenBaaMemInit teheh-ar.medi.SenBaaMemInit behVinvertedbelow-ar.medi.SenBaaMemInit behVbelow-ar.medi.SenBaaMemInit tehThreedotsdown-ar.medi.SenBaaMemInit peh-ar.medi.SenBaaMemInit beeh-ar.medi.SenBaaMemInit beh-ar.medi.SenBaaMemInit tteheh-ar.medi.SenBaaMemInit behThreedotsupabove-ar.medi.SenBaaMemInit noon-ar.medi.SenBaaMemInit tehThreedotsupbelow-ar.medi.SenBaaMemInit behThreedotsupbelow-ar.medi.SenBaaMemInit teh-ar.medi.SenBaaMemInit yehFarsiVinverted-ar.medi.SenBaaMemInit yehFarsiTwodotsabove-ar.medi.SenBaaMemInit yehFarsiThreedotsabove-ar.medi.SenBaaMemInit theh-ar.medi.SenBaaMemInit tteh-ar.medi.SenBaaMemInit noonDotbelow-ar.medi.SenBaaMemInit noonVabove-ar.medi.SenBaaMemInit alefMaksura-ar.medi.SenBaaMemInit tehRing-ar.medi.SenBaaMemInit behTwodotsbelowDotabove-ar.medi.SenBaaMemInit yehThreedotsbelow-ar.medi.SenBaaMemInit e-ar.medi.SenBaaMemInit noonghunna-ar.medi.SenBaaMemInit yehFarsi-ar.medi.SenBaaMemInit noonTwodotsbelow-ar.medi.SenBaaMemInit]; @aDal.fina.BaaDal = [dalFourdots-ar.fina.BaaDal dalVinvertedabove-ar.fina.BaaDal dalRing-ar.fina.BaaDal ddal-ar.fina.BaaDal dalVinvertedbelow-ar.fina.BaaDal thal-ar.fina.BaaDal dal-ar.fina.BaaDal dalTwodotsverticalbelowTah-ar.fina.BaaDal dahal-ar.fina.BaaDal dalDotbelowTah-ar.fina.BaaDal dalDotbelow-ar.fina.BaaDal dalThreedotsdown-ar.fina.BaaDal dul-ar.fina.BaaDal ddahal-ar.fina.BaaDal]; @aDal.fina.KafDal = [dalFourdots-ar.fina.KafDal dalVinvertedabove-ar.fina.KafDal dalRing-ar.fina.KafDal ddal-ar.fina.KafDal dalVinvertedbelow-ar.fina.KafDal thal-ar.fina.KafDal dal-ar.fina.KafDal dalTwodotsverticalbelowTah-ar.fina.KafDal dahal-ar.fina.KafDal dalDotbelowTah-ar.fina.KafDal dalDotbelow-ar.fina.KafDal dalThreedotsdown-ar.fina.KafDal dul-ar.fina.KafDal ddahal-ar.fina.KafDal]; @aDal.fina.LamDal = [dalFourdots-ar.fina.LamDal dalVinvertedabove-ar.fina.LamDal dalRing-ar.fina.LamDal ddal-ar.fina.LamDal dalVinvertedbelow-ar.fina.LamDal thal-ar.fina.LamDal dal-ar.fina.LamDal dalTwodotsverticalbelowTah-ar.fina.LamDal dahal-ar.fina.LamDal dalDotbelowTah-ar.fina.LamDal dalDotbelow-ar.fina.LamDal dalThreedotsdown-ar.fina.LamDal dul-ar.fina.LamDal ddahal-ar.fina.LamDal]; @aFaa.init.FaaHaaInit = [qafDotless-ar.init.FaaHaaInit fehThreedotsupbelow-ar.init.FaaHaaInit fehTwodotsbelow-ar.init.FaaHaaInit qaf-ar.init.FaaHaaInit feh-ar.init.FaaHaaInit qafThreedotsabove-ar.init.FaaHaaInit fehDotless-ar.init.FaaHaaInit fehDotmovedbelow-ar.init.FaaHaaInit fehDotbelow-ar.init.FaaHaaInit veh-ar.init.FaaHaaInit fehThreedotsbelow-ar.init.FaaHaaInit peheh-ar.init.FaaHaaInit qafDotabove-ar.init.FaaHaaInit]; @aFaa.init.FaaMemInit = [qafDotless-ar.init.FaaMemInit fehThreedotsupbelow-ar.init.FaaMemInit fehTwodotsbelow-ar.init.FaaMemInit qaf-ar.init.FaaMemInit feh-ar.init.FaaMemInit qafThreedotsabove-ar.init.FaaMemInit fehDotless-ar.init.FaaMemInit fehDotmovedbelow-ar.init.FaaMemInit fehDotbelow-ar.init.FaaMemInit veh-ar.init.FaaMemInit fehThreedotsbelow-ar.init.FaaMemInit peheh-ar.init.FaaMemInit qafDotabove-ar.init.FaaMemInit]; @aFaa.init.FaaYaaIsol = [qafDotless-ar.init.FaaYaaIsol fehThreedotsupbelow-ar.init.FaaYaaIsol fehTwodotsbelow-ar.init.FaaYaaIsol qaf-ar.init.FaaYaaIsol feh-ar.init.FaaYaaIsol qafThreedotsabove-ar.init.FaaYaaIsol fehDotless-ar.init.FaaYaaIsol fehDotmovedbelow-ar.init.FaaYaaIsol fehDotbelow-ar.init.FaaYaaIsol veh-ar.init.FaaYaaIsol fehThreedotsbelow-ar.init.FaaYaaIsol peheh-ar.init.FaaYaaIsol qafDotabove-ar.init.FaaYaaIsol]; @aFaa.init.YaaBari = [qafDotless-ar.init.YaaBari fehThreedotsupbelow-ar.init.YaaBari fehTwodotsbelow-ar.init.YaaBari qaf-ar.init.YaaBari feh-ar.init.YaaBari qafThreedotsabove-ar.init.YaaBari fehDotless-ar.init.YaaBari fehDotmovedbelow-ar.init.YaaBari fehDotbelow-ar.init.YaaBari veh-ar.init.YaaBari fehThreedotsbelow-ar.init.YaaBari peheh-ar.init.YaaBari qafDotabove-ar.init.YaaBari]; @aFaa.medi.FaaYaaFina = [qafDotless-ar.medi.FaaYaaFina fehThreedotsupbelow-ar.medi.FaaYaaFina fehTwodotsbelow-ar.medi.FaaYaaFina qaf-ar.medi.FaaYaaFina feh-ar.medi.FaaYaaFina qafThreedotsabove-ar.medi.FaaYaaFina fehDotless-ar.medi.FaaYaaFina fehDotmovedbelow-ar.medi.FaaYaaFina fehDotbelow-ar.medi.FaaYaaFina veh-ar.medi.FaaYaaFina fehThreedotsbelow-ar.medi.FaaYaaFina peheh-ar.medi.FaaYaaFina qafDotabove-ar.medi.FaaYaaFina]; @aHaa.fina.AboveHaaIsol2 = [khah-ar.fina.AboveHaaIsol2 hah-ar.fina.AboveHaaIsol2 hahHamzaabove-ar.fina.AboveHaaIsol2 tcheheh-ar.fina.AboveHaaIsol2 hahThreedotsabove-ar.fina.AboveHaaIsol2 jeem-ar.fina.AboveHaaIsol2 hahTwodotsverticalabove-ar.fina.AboveHaaIsol2 hahTwodotshorizontalabove-ar.fina.AboveHaaIsol2 dyeh-ar.fina.AboveHaaIsol2 hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol2 hahTahbelow-ar.fina.AboveHaaIsol2 nyeh-ar.fina.AboveHaaIsol2 tchehDotabove-ar.fina.AboveHaaIsol2 hahFourbelow-ar.fina.AboveHaaIsol2 hahThreedotsupbelow-ar.fina.AboveHaaIsol2 hahTahabove-ar.fina.AboveHaaIsol2 tcheh-ar.fina.AboveHaaIsol2]; @aHaa.fina.AboveHaaIsol = [khah-ar.fina.AboveHaaIsol hah-ar.fina.AboveHaaIsol hahHamzaabove-ar.fina.AboveHaaIsol tcheheh-ar.fina.AboveHaaIsol hahThreedotsabove-ar.fina.AboveHaaIsol jeem-ar.fina.AboveHaaIsol hahTwodotsverticalabove-ar.fina.AboveHaaIsol hahTwodotshorizontalabove-ar.fina.AboveHaaIsol dyeh-ar.fina.AboveHaaIsol hahTahTwodotshorizontalabove-ar.fina.AboveHaaIsol hahTahbelow-ar.fina.AboveHaaIsol nyeh-ar.fina.AboveHaaIsol tchehDotabove-ar.fina.AboveHaaIsol hahFourbelow-ar.fina.AboveHaaIsol hahThreedotsupbelow-ar.fina.AboveHaaIsol hahTahabove-ar.fina.AboveHaaIsol tcheh-ar.fina.AboveHaaIsol]; @aHaa.init.AboveHaa = [khah-ar.init.AboveHaa hah-ar.init.AboveHaa hahHamzaabove-ar.init.AboveHaa tcheheh-ar.init.AboveHaa hahThreedotsabove-ar.init.AboveHaa jeem-ar.init.AboveHaa hahTwodotsverticalabove-ar.init.AboveHaa hahTwodotshorizontalabove-ar.init.AboveHaa dyeh-ar.init.AboveHaa hahTahTwodotshorizontalabove-ar.init.AboveHaa hahTahbelow-ar.init.AboveHaa nyeh-ar.init.AboveHaa tchehDotabove-ar.init.AboveHaa hahFourbelow-ar.init.AboveHaa hahThreedotsupbelow-ar.init.AboveHaa hahTahabove-ar.init.AboveHaa tcheh-ar.init.AboveHaa]; @aHaa.init.Finjani = [khah-ar.init.Finjani hah-ar.init.Finjani hahHamzaabove-ar.init.Finjani tcheheh-ar.init.Finjani hahThreedotsabove-ar.init.Finjani jeem-ar.init.Finjani hahTwodotsverticalabove-ar.init.Finjani hahTwodotshorizontalabove-ar.init.Finjani dyeh-ar.init.Finjani hahTahTwodotshorizontalabove-ar.init.Finjani hahTahbelow-ar.init.Finjani nyeh-ar.init.Finjani tchehDotabove-ar.init.Finjani hahFourbelow-ar.init.Finjani hahThreedotsupbelow-ar.init.Finjani hahTahabove-ar.init.Finjani tcheh-ar.init.Finjani]; @aHaa.init.HaaHaaInit = [khah-ar.init.HaaHaaInit hah-ar.init.HaaHaaInit hahHamzaabove-ar.init.HaaHaaInit tcheheh-ar.init.HaaHaaInit hahThreedotsabove-ar.init.HaaHaaInit jeem-ar.init.HaaHaaInit hahTwodotsverticalabove-ar.init.HaaHaaInit hahTwodotshorizontalabove-ar.init.HaaHaaInit dyeh-ar.init.HaaHaaInit hahTahTwodotshorizontalabove-ar.init.HaaHaaInit hahTahbelow-ar.init.HaaHaaInit nyeh-ar.init.HaaHaaInit tchehDotabove-ar.init.HaaHaaInit hahFourbelow-ar.init.HaaHaaInit hahThreedotsupbelow-ar.init.HaaHaaInit hahTahabove-ar.init.HaaHaaInit tcheh-ar.init.HaaHaaInit]; @aHaa.init.HaaMemInit = [khah-ar.init.HaaMemInit hah-ar.init.HaaMemInit hahHamzaabove-ar.init.HaaMemInit tcheheh-ar.init.HaaMemInit hahThreedotsabove-ar.init.HaaMemInit jeem-ar.init.HaaMemInit hahTwodotsverticalabove-ar.init.HaaMemInit hahTwodotshorizontalabove-ar.init.HaaMemInit dyeh-ar.init.HaaMemInit hahTahTwodotshorizontalabove-ar.init.HaaMemInit hahTahbelow-ar.init.HaaMemInit nyeh-ar.init.HaaMemInit tchehDotabove-ar.init.HaaMemInit hahFourbelow-ar.init.HaaMemInit hahThreedotsupbelow-ar.init.HaaMemInit hahTahabove-ar.init.HaaMemInit tcheh-ar.init.HaaMemInit]; @aHaa.init.HaaRaaIsol = [khah-ar.init.HaaRaaIsol hah-ar.init.HaaRaaIsol hahHamzaabove-ar.init.HaaRaaIsol tcheheh-ar.init.HaaRaaIsol hahThreedotsabove-ar.init.HaaRaaIsol jeem-ar.init.HaaRaaIsol hahTwodotsverticalabove-ar.init.HaaRaaIsol hahTwodotshorizontalabove-ar.init.HaaRaaIsol dyeh-ar.init.HaaRaaIsol hahTahTwodotshorizontalabove-ar.init.HaaRaaIsol hahTahbelow-ar.init.HaaRaaIsol nyeh-ar.init.HaaRaaIsol tchehDotabove-ar.init.HaaRaaIsol hahFourbelow-ar.init.HaaRaaIsol hahThreedotsupbelow-ar.init.HaaRaaIsol hahTahabove-ar.init.HaaRaaIsol tcheh-ar.init.HaaRaaIsol]; @aHaa.init.HaaYaaIsol = [khah-ar.init.HaaYaaIsol hah-ar.init.HaaYaaIsol hahHamzaabove-ar.init.HaaYaaIsol tcheheh-ar.init.HaaYaaIsol hahThreedotsabove-ar.init.HaaYaaIsol jeem-ar.init.HaaYaaIsol hahTwodotsverticalabove-ar.init.HaaYaaIsol hahTwodotshorizontalabove-ar.init.HaaYaaIsol dyeh-ar.init.HaaYaaIsol hahTahTwodotshorizontalabove-ar.init.HaaYaaIsol hahTahbelow-ar.init.HaaYaaIsol nyeh-ar.init.HaaYaaIsol tchehDotabove-ar.init.HaaYaaIsol hahFourbelow-ar.init.HaaYaaIsol hahThreedotsupbelow-ar.init.HaaYaaIsol hahTahabove-ar.init.HaaYaaIsol tcheh-ar.init.HaaYaaIsol]; @aHaa.init.YaaBari = [khah-ar.init.YaaBari hah-ar.init.YaaBari hahHamzaabove-ar.init.YaaBari tcheheh-ar.init.YaaBari hahThreedotsabove-ar.init.YaaBari jeem-ar.init.YaaBari hahTwodotsverticalabove-ar.init.YaaBari hahTwodotshorizontalabove-ar.init.YaaBari dyeh-ar.init.YaaBari hahTahTwodotshorizontalabove-ar.init.YaaBari hahTahbelow-ar.init.YaaBari nyeh-ar.init.YaaBari tchehDotabove-ar.init.YaaBari hahFourbelow-ar.init.YaaBari hahThreedotsupbelow-ar.init.YaaBari hahTahabove-ar.init.YaaBari tcheh-ar.init.YaaBari]; @aHaa.init.DotBelow = [tcheheh-ar.init jeem-ar.init dyeh-ar.init hahTahTwodotshorizontalabove-ar.init hahTahbelow-ar.init nyeh-ar.init tchehDotabove-ar.init hahFourbelow-ar.init hahThreedotsupbelow-ar.init tcheh-ar.init]; @aHaa.init.BaaYaaBari = [tcheheh-ar.init.BaaYaaBari jeem-ar.init.BaaYaaBari dyeh-ar.init.BaaYaaBari hahTahTwodotshorizontalabove-ar.init.BaaYaaBari hahTahbelow-ar.init.BaaYaaBari nyeh-ar.init.BaaYaaBari tchehDotabove-ar.init.BaaYaaBari hahFourbelow-ar.init.BaaYaaBari hahThreedotsupbelow-ar.init.BaaYaaBari tcheh-ar.init.BaaYaaBari]; @aHaa.medi.1LamHaaHaaInit = [khah-ar.medi.1LamHaaHaaInit hah-ar.medi.1LamHaaHaaInit hahHamzaabove-ar.medi.1LamHaaHaaInit tcheheh-ar.medi.1LamHaaHaaInit hahThreedotsabove-ar.medi.1LamHaaHaaInit jeem-ar.medi.1LamHaaHaaInit hahTwodotsverticalabove-ar.medi.1LamHaaHaaInit hahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit dyeh-ar.medi.1LamHaaHaaInit hahTahTwodotshorizontalabove-ar.medi.1LamHaaHaaInit hahTahbelow-ar.medi.1LamHaaHaaInit nyeh-ar.medi.1LamHaaHaaInit tchehDotabove-ar.medi.1LamHaaHaaInit hahFourbelow-ar.medi.1LamHaaHaaInit hahThreedotsupbelow-ar.medi.1LamHaaHaaInit hahTahabove-ar.medi.1LamHaaHaaInit tcheh-ar.medi.1LamHaaHaaInit]; @aHaa.medi.2LamHaaHaaInit = [khah-ar.medi.2LamHaaHaaInit hah-ar.medi.2LamHaaHaaInit hahHamzaabove-ar.medi.2LamHaaHaaInit tcheheh-ar.medi.2LamHaaHaaInit hahThreedotsabove-ar.medi.2LamHaaHaaInit jeem-ar.medi.2LamHaaHaaInit hahTwodotsverticalabove-ar.medi.2LamHaaHaaInit hahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit dyeh-ar.medi.2LamHaaHaaInit hahTahTwodotshorizontalabove-ar.medi.2LamHaaHaaInit hahTahbelow-ar.medi.2LamHaaHaaInit nyeh-ar.medi.2LamHaaHaaInit tchehDotabove-ar.medi.2LamHaaHaaInit hahFourbelow-ar.medi.2LamHaaHaaInit hahThreedotsupbelow-ar.medi.2LamHaaHaaInit hahTahabove-ar.medi.2LamHaaHaaInit tcheh-ar.medi.2LamHaaHaaInit]; @aHaa.medi.AynHaaInit = [khah-ar.medi.AynHaaInit hah-ar.medi.AynHaaInit hahHamzaabove-ar.medi.AynHaaInit tcheheh-ar.medi.AynHaaInit hahThreedotsabove-ar.medi.AynHaaInit jeem-ar.medi.AynHaaInit hahTwodotsverticalabove-ar.medi.AynHaaInit hahTwodotshorizontalabove-ar.medi.AynHaaInit dyeh-ar.medi.AynHaaInit hahTahTwodotshorizontalabove-ar.medi.AynHaaInit hahTahbelow-ar.medi.AynHaaInit nyeh-ar.medi.AynHaaInit tchehDotabove-ar.medi.AynHaaInit hahFourbelow-ar.medi.AynHaaInit hahThreedotsupbelow-ar.medi.AynHaaInit hahTahabove-ar.medi.AynHaaInit tcheh-ar.medi.AynHaaInit]; @aHaa.medi.BaaBaaHaaInit = [khah-ar.medi.BaaBaaHaaInit hah-ar.medi.BaaBaaHaaInit hahHamzaabove-ar.medi.BaaBaaHaaInit tcheheh-ar.medi.BaaBaaHaaInit hahThreedotsabove-ar.medi.BaaBaaHaaInit jeem-ar.medi.BaaBaaHaaInit hahTwodotsverticalabove-ar.medi.BaaBaaHaaInit hahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit dyeh-ar.medi.BaaBaaHaaInit hahTahTwodotshorizontalabove-ar.medi.BaaBaaHaaInit hahTahbelow-ar.medi.BaaBaaHaaInit nyeh-ar.medi.BaaBaaHaaInit tchehDotabove-ar.medi.BaaBaaHaaInit hahFourbelow-ar.medi.BaaBaaHaaInit hahThreedotsupbelow-ar.medi.BaaBaaHaaInit hahTahabove-ar.medi.BaaBaaHaaInit tcheh-ar.medi.BaaBaaHaaInit]; @aHaa.medi.BaaHaaMemInit = [khah-ar.medi.BaaHaaMemInit hah-ar.medi.BaaHaaMemInit hahHamzaabove-ar.medi.BaaHaaMemInit tcheheh-ar.medi.BaaHaaMemInit hahThreedotsabove-ar.medi.BaaHaaMemInit jeem-ar.medi.BaaHaaMemInit hahTwodotsverticalabove-ar.medi.BaaHaaMemInit hahTwodotshorizontalabove-ar.medi.BaaHaaMemInit dyeh-ar.medi.BaaHaaMemInit hahTahTwodotshorizontalabove-ar.medi.BaaHaaMemInit hahTahbelow-ar.medi.BaaHaaMemInit nyeh-ar.medi.BaaHaaMemInit tchehDotabove-ar.medi.BaaHaaMemInit hahFourbelow-ar.medi.BaaHaaMemInit hahThreedotsupbelow-ar.medi.BaaHaaMemInit hahTahabove-ar.medi.BaaHaaMemInit tcheh-ar.medi.BaaHaaMemInit]; @aHaa.medi.BaaMemHaaInit = [khah-ar.medi.BaaMemHaaInit hah-ar.medi.BaaMemHaaInit hahHamzaabove-ar.medi.BaaMemHaaInit tcheheh-ar.medi.BaaMemHaaInit hahThreedotsabove-ar.medi.BaaMemHaaInit jeem-ar.medi.BaaMemHaaInit hahTwodotsverticalabove-ar.medi.BaaMemHaaInit hahTwodotshorizontalabove-ar.medi.BaaMemHaaInit dyeh-ar.medi.BaaMemHaaInit hahTahTwodotshorizontalabove-ar.medi.BaaMemHaaInit hahTahbelow-ar.medi.BaaMemHaaInit nyeh-ar.medi.BaaMemHaaInit tchehDotabove-ar.medi.BaaMemHaaInit hahFourbelow-ar.medi.BaaMemHaaInit hahThreedotsupbelow-ar.medi.BaaMemHaaInit hahTahabove-ar.medi.BaaMemHaaInit tcheh-ar.medi.BaaMemHaaInit]; # XXX: sync with contextuals.fea @aHaa.medi.FaaHaaInit = [khah-ar.medi.FaaHaaInit hah-ar.medi.FaaHaaInit hahHamzaabove-ar.medi.FaaHaaInit tcheheh-ar.medi.FaaHaaInit hahThreedotsabove-ar.medi.FaaHaaInit jeem-ar.medi.FaaHaaInit hahTwodotsverticalabove-ar.medi.FaaHaaInit hahTwodotshorizontalabove-ar.medi.FaaHaaInit dyeh-ar.medi.FaaHaaInit hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit hahTahbelow-ar.medi.FaaHaaInit nyeh-ar.medi.FaaHaaInit tchehDotabove-ar.medi.FaaHaaInit hahFourbelow-ar.medi.FaaHaaInit hahThreedotsupbelow-ar.medi.FaaHaaInit hahTahabove-ar.medi.FaaHaaInit tcheh-ar.medi.FaaHaaInit]; @aHaa.medi.Finjani = [khah-ar.medi.Finjani hah-ar.medi.Finjani hahHamzaabove-ar.medi.Finjani tcheheh-ar.medi.Finjani hahThreedotsabove-ar.medi.Finjani jeem-ar.medi.Finjani hahTwodotsverticalabove-ar.medi.Finjani hahTwodotshorizontalabove-ar.medi.Finjani dyeh-ar.medi.Finjani hahTahTwodotshorizontalabove-ar.medi.Finjani hahTahbelow-ar.medi.Finjani nyeh-ar.medi.Finjani tchehDotabove-ar.medi.Finjani hahFourbelow-ar.medi.Finjani hahThreedotsupbelow-ar.medi.Finjani hahTahabove-ar.medi.Finjani tcheh-ar.medi.Finjani]; @aHaa.medi.HaaHaaInit = [khah-ar.medi.HaaHaaInit hah-ar.medi.HaaHaaInit hahHamzaabove-ar.medi.HaaHaaInit tcheheh-ar.medi.HaaHaaInit hahThreedotsabove-ar.medi.HaaHaaInit jeem-ar.medi.HaaHaaInit hahTwodotsverticalabove-ar.medi.HaaHaaInit hahTwodotshorizontalabove-ar.medi.HaaHaaInit dyeh-ar.medi.HaaHaaInit hahTahTwodotshorizontalabove-ar.medi.HaaHaaInit hahTahbelow-ar.medi.HaaHaaInit nyeh-ar.medi.HaaHaaInit tchehDotabove-ar.medi.HaaHaaInit hahFourbelow-ar.medi.HaaHaaInit hahThreedotsupbelow-ar.medi.HaaHaaInit hahTahabove-ar.medi.HaaHaaInit tcheh-ar.medi.HaaHaaInit]; @aHaa.medi.LamHaaMemInit = [khah-ar.medi.LamHaaMemInit hah-ar.medi.LamHaaMemInit hahHamzaabove-ar.medi.LamHaaMemInit tcheheh-ar.medi.LamHaaMemInit hahThreedotsabove-ar.medi.LamHaaMemInit jeem-ar.medi.LamHaaMemInit hahTwodotsverticalabove-ar.medi.LamHaaMemInit hahTwodotshorizontalabove-ar.medi.LamHaaMemInit dyeh-ar.medi.LamHaaMemInit hahTahTwodotshorizontalabove-ar.medi.LamHaaMemInit hahTahbelow-ar.medi.LamHaaMemInit nyeh-ar.medi.LamHaaMemInit tchehDotabove-ar.medi.LamHaaMemInit hahFourbelow-ar.medi.LamHaaMemInit hahThreedotsupbelow-ar.medi.LamHaaMemInit hahTahabove-ar.medi.LamHaaMemInit tcheh-ar.medi.LamHaaMemInit]; @aHaa.medi.LamLamHaaInit = [khah-ar.medi.LamLamHaaInit hah-ar.medi.LamLamHaaInit hahHamzaabove-ar.medi.LamLamHaaInit tcheheh-ar.medi.LamLamHaaInit hahThreedotsabove-ar.medi.LamLamHaaInit jeem-ar.medi.LamLamHaaInit hahTwodotsverticalabove-ar.medi.LamLamHaaInit hahTwodotshorizontalabove-ar.medi.LamLamHaaInit dyeh-ar.medi.LamLamHaaInit hahTahTwodotshorizontalabove-ar.medi.LamLamHaaInit hahTahbelow-ar.medi.LamLamHaaInit nyeh-ar.medi.LamLamHaaInit tchehDotabove-ar.medi.LamLamHaaInit hahFourbelow-ar.medi.LamLamHaaInit hahThreedotsupbelow-ar.medi.LamLamHaaInit hahTahabove-ar.medi.LamLamHaaInit tcheh-ar.medi.LamLamHaaInit]; @aHaa.medi.LamMemHaaInit = [khah-ar.medi.LamMemHaaInit hah-ar.medi.LamMemHaaInit hahHamzaabove-ar.medi.LamMemHaaInit tcheheh-ar.medi.LamMemHaaInit hahThreedotsabove-ar.medi.LamMemHaaInit jeem-ar.medi.LamMemHaaInit hahTwodotsverticalabove-ar.medi.LamMemHaaInit hahTwodotshorizontalabove-ar.medi.LamMemHaaInit dyeh-ar.medi.LamMemHaaInit hahTahTwodotshorizontalabove-ar.medi.LamMemHaaInit hahTahbelow-ar.medi.LamMemHaaInit nyeh-ar.medi.LamMemHaaInit tchehDotabove-ar.medi.LamMemHaaInit hahFourbelow-ar.medi.LamMemHaaInit hahThreedotsupbelow-ar.medi.LamMemHaaInit hahTahabove-ar.medi.LamMemHaaInit tcheh-ar.medi.LamMemHaaInit]; @aHaa.medi.MemHaaMemInit = [khah-ar.medi.MemHaaMemInit hah-ar.medi.MemHaaMemInit hahHamzaabove-ar.medi.MemHaaMemInit tcheheh-ar.medi.MemHaaMemInit hahThreedotsabove-ar.medi.MemHaaMemInit jeem-ar.medi.MemHaaMemInit hahTwodotsverticalabove-ar.medi.MemHaaMemInit hahTwodotshorizontalabove-ar.medi.MemHaaMemInit dyeh-ar.medi.MemHaaMemInit hahTahTwodotshorizontalabove-ar.medi.MemHaaMemInit hahTahbelow-ar.medi.MemHaaMemInit nyeh-ar.medi.MemHaaMemInit tchehDotabove-ar.medi.MemHaaMemInit hahFourbelow-ar.medi.MemHaaMemInit hahThreedotsupbelow-ar.medi.MemHaaMemInit hahTahabove-ar.medi.MemHaaMemInit tcheh-ar.medi.MemHaaMemInit]; @aHaa.medi.SadHaaInit = [khah-ar.medi.SadHaaInit hah-ar.medi.SadHaaInit hahHamzaabove-ar.medi.SadHaaInit tcheheh-ar.medi.SadHaaInit hahThreedotsabove-ar.medi.SadHaaInit jeem-ar.medi.SadHaaInit hahTwodotsverticalabove-ar.medi.SadHaaInit hahTwodotshorizontalabove-ar.medi.SadHaaInit dyeh-ar.medi.SadHaaInit hahTahTwodotshorizontalabove-ar.medi.SadHaaInit hahTahbelow-ar.medi.SadHaaInit nyeh-ar.medi.SadHaaInit tchehDotabove-ar.medi.SadHaaInit hahFourbelow-ar.medi.SadHaaInit hahThreedotsupbelow-ar.medi.SadHaaInit hahTahabove-ar.medi.SadHaaInit tcheh-ar.medi.SadHaaInit]; @aHeh.fina.KafHeh = [heh-ar.fina.KafHeh hehgoal-ar.fina.KafHeh tehMarbutagoal-ar.fina.KafHeh ae-ar.fina.KafHeh tehMarbuta-ar.fina.KafHeh]; @aHeh.fina.LamHeh = [heh-ar.fina.LamHeh hehgoal-ar.fina.LamHeh tehMarbutagoal-ar.fina.LamHeh ae-ar.fina.LamHeh tehMarbuta-ar.fina.LamHeh]; @aHeh.init.AboveHaa = [heh-ar.init.AboveHaa hehgoal-ar.init.AboveHaa]; @aHeh.init.HehHaaInit = [heh-ar.init.HehHaaInit hehgoal-ar.init.HehHaaInit]; @aHeh.init.HehMemInit = [heh-ar.init.HehMemInit hehgoal-ar.init.HehMemInit]; @aHeh.init.HehYaaIsol = [heh-ar.init.HehYaaIsol hehgoal-ar.init.HehYaaIsol]; @aHeh.init.YaaBari = [heh-ar.init.YaaBari hehgoal-ar.init.YaaBari]; @aHeh.medi.BaaHehMedi = [heh-ar.medi.BaaHehMedi hehgoal-ar.medi.BaaHehMedi]; @aHeh.medi.LamHehInit = [heh-ar.medi.LamHehInit hehgoal-ar.medi.LamHehInit]; @aHeh.medi.PostTooth = [heh-ar.medi.PostTooth hehgoal-ar.medi.PostTooth]; @aHeh.medi.PostToothHehYaa = [heh-ar.medi.PostToothHehYaa hehgoal-ar.medi.PostToothHehYaa]; @aHeh.medi.HehYaaFina = [heh-ar.medi.HehYaaFina hehgoal-ar.medi.HehYaaFina]; @aKaf.fina.KafKafFina = [kafTwodotshorizontalabove-ar.fina.KafKafFina kaf-ar.fina.KafKafFina kafDotabove-ar.fina.KafKafFina ng-ar.fina.KafKafFina kafThreedotsbelow-ar.fina.KafKafFina]; @aKaf.fina.LamKafFina = [kafTwodotshorizontalabove-ar.fina.LamKafFina kaf-ar.fina.LamKafFina kafDotabove-ar.fina.LamKafFina ng-ar.fina.LamKafFina kafThreedotsbelow-ar.fina.LamKafFina]; @aKaf.fina.LamKafIsol = [kafTwodotshorizontalabove-ar.fina.LamKafIsol kaf-ar.fina.LamKafIsol kafDotabove-ar.fina.LamKafIsol ng-ar.fina.LamKafIsol kafThreedotsbelow-ar.fina.LamKafIsol]; @aGaf.fina.KafKafFina = [keheh-ar.fina.KafKafFina kafRing-ar.fina.KafKafFina gaf-ar.fina.KafKafFina gafRing-ar.fina.KafKafFina ngoeh-ar.fina.KafKafFina gafTwodotsbelow-ar.fina.KafKafFina gueh-ar.fina.KafKafFina gafThreedots-ar.fina.KafKafFina kehehDotabove-ar.fina.KafKafFina kehehThreedotsabove-ar.fina.KafKafFina kehehThreedotsupbelow-ar.fina.KafKafFina kehehTwodotshorizontalabove-ar.fina.KafKafFina kehehThreedotsbelow-ar.fina.KafKafFina]; @aGaf.fina.LamKafFina = [keheh-ar.fina.LamKafFina kafRing-ar.fina.LamKafFina gaf-ar.fina.LamKafFina gafRing-ar.fina.LamKafFina ngoeh-ar.fina.LamKafFina gafTwodotsbelow-ar.fina.LamKafFina gueh-ar.fina.LamKafFina gafThreedots-ar.fina.LamKafFina kehehDotabove-ar.fina.LamKafFina kehehThreedotsabove-ar.fina.LamKafFina kehehThreedotsupbelow-ar.fina.LamKafFina kehehTwodotshorizontalabove-ar.fina.LamKafFina kehehThreedotsbelow-ar.fina.LamKafFina]; @aGaf.fina.LamKafIsol = [keheh-ar.fina.LamKafIsol kafRing-ar.fina.LamKafIsol gaf-ar.fina.LamKafIsol gafRing-ar.fina.LamKafIsol ngoeh-ar.fina.LamKafIsol gafTwodotsbelow-ar.fina.LamKafIsol gueh-ar.fina.LamKafIsol gafThreedots-ar.fina.LamKafIsol kehehDotabove-ar.fina.LamKafIsol kehehThreedotsabove-ar.fina.LamKafIsol kehehThreedotsupbelow-ar.fina.LamKafIsol kehehTwodotshorizontalabove-ar.fina.LamKafIsol kehehThreedotsbelow-ar.fina.LamKafIsol]; @aKaf.init.PreHeh = [kehehTwodotshorizontalabove-ar.init.PreHeh kehehThreedotsbelow-ar.init.PreHeh kafTwodotshorizontalabove-ar.init.PreHeh kehehThreedotsupbelow-ar.init.PreHeh kaf-ar.init.PreHeh gafRing-ar.init.PreHeh gueh-ar.init.PreHeh gafTwodotsbelow-ar.init.PreHeh kafRing-ar.init.PreHeh kafDotabove-ar.init.PreHeh ng-ar.init.PreHeh kafThreedotsbelow-ar.init.PreHeh gaf-ar.init.PreHeh keheh-ar.init.PreHeh gafThreedots-ar.init.PreHeh kehehThreedotsabove-ar.init.PreHeh kehehDotabove-ar.init.PreHeh ngoeh-ar.init.PreHeh]; @aKaf.init.AboveHaa = [kehehTwodotshorizontalabove-ar.init.AboveHaa kehehThreedotsbelow-ar.init.AboveHaa kafTwodotshorizontalabove-ar.init.AboveHaa kehehThreedotsupbelow-ar.init.AboveHaa kaf-ar.init.AboveHaa gafRing-ar.init.AboveHaa gueh-ar.init.AboveHaa gafTwodotsbelow-ar.init.AboveHaa kafRing-ar.init.AboveHaa kafDotabove-ar.init.AboveHaa ng-ar.init.AboveHaa kafThreedotsbelow-ar.init.AboveHaa gaf-ar.init.AboveHaa keheh-ar.init.AboveHaa gafThreedots-ar.init.AboveHaa kehehThreedotsabove-ar.init.AboveHaa kehehDotabove-ar.init.AboveHaa ngoeh-ar.init.AboveHaa]; @aKaf.init.KafBaaInit = [kehehTwodotshorizontalabove-ar.init.KafBaaInit kehehThreedotsbelow-ar.init.KafBaaInit kafTwodotshorizontalabove-ar.init.KafBaaInit kehehThreedotsupbelow-ar.init.KafBaaInit kaf-ar.init.KafBaaInit gafRing-ar.init.KafBaaInit gueh-ar.init.KafBaaInit gafTwodotsbelow-ar.init.KafBaaInit kafRing-ar.init.KafBaaInit kafDotabove-ar.init.KafBaaInit ng-ar.init.KafBaaInit kafThreedotsbelow-ar.init.KafBaaInit gaf-ar.init.KafBaaInit keheh-ar.init.KafBaaInit gafThreedots-ar.init.KafBaaInit kehehThreedotsabove-ar.init.KafBaaInit kehehDotabove-ar.init.KafBaaInit ngoeh-ar.init.KafBaaInit]; @aKaf.init.KafHeh = [kehehTwodotshorizontalabove-ar.init.KafHeh kehehThreedotsbelow-ar.init.KafHeh kafTwodotshorizontalabove-ar.init.KafHeh kehehThreedotsupbelow-ar.init.KafHeh kaf-ar.init.KafHeh gafRing-ar.init.KafHeh gueh-ar.init.KafHeh gafTwodotsbelow-ar.init.KafHeh kafRing-ar.init.KafHeh kafDotabove-ar.init.KafHeh ng-ar.init.KafHeh kafThreedotsbelow-ar.init.KafHeh gaf-ar.init.KafHeh keheh-ar.init.KafHeh gafThreedots-ar.init.KafHeh kehehThreedotsabove-ar.init.KafHeh kehehDotabove-ar.init.KafHeh ngoeh-ar.init.KafHeh]; @aKaf.init.KafLam = [kehehTwodotshorizontalabove-ar.init.KafLam kehehThreedotsbelow-ar.init.KafLam kafTwodotshorizontalabove-ar.init.KafLam kehehThreedotsupbelow-ar.init.KafLam kaf-ar.init.KafLam gafRing-ar.init.KafLam gueh-ar.init.KafLam gafTwodotsbelow-ar.init.KafLam kafRing-ar.init.KafLam kafDotabove-ar.init.KafLam ng-ar.init.KafLam kafThreedotsbelow-ar.init.KafLam gaf-ar.init.KafLam keheh-ar.init.KafLam gafThreedots-ar.init.KafLam kehehThreedotsabove-ar.init.KafLam kehehDotabove-ar.init.KafLam ngoeh-ar.init.KafLam]; @aKaf.init.KafMemAlf = [kehehTwodotshorizontalabove-ar.init.KafMemAlf kehehThreedotsbelow-ar.init.KafMemAlf kafTwodotshorizontalabove-ar.init.KafMemAlf kehehThreedotsupbelow-ar.init.KafMemAlf kaf-ar.init.KafMemAlf gafRing-ar.init.KafMemAlf gueh-ar.init.KafMemAlf gafTwodotsbelow-ar.init.KafMemAlf kafRing-ar.init.KafMemAlf kafDotabove-ar.init.KafMemAlf ng-ar.init.KafMemAlf kafThreedotsbelow-ar.init.KafMemAlf gaf-ar.init.KafMemAlf keheh-ar.init.KafMemAlf gafThreedots-ar.init.KafMemAlf kehehThreedotsabove-ar.init.KafMemAlf kehehDotabove-ar.init.KafMemAlf ngoeh-ar.init.KafMemAlf]; @aKaf.init.KafMemInit = [kehehTwodotshorizontalabove-ar.init.KafMemInit kehehThreedotsbelow-ar.init.KafMemInit kafTwodotshorizontalabove-ar.init.KafMemInit kehehThreedotsupbelow-ar.init.KafMemInit kaf-ar.init.KafMemInit gafRing-ar.init.KafMemInit gueh-ar.init.KafMemInit gafTwodotsbelow-ar.init.KafMemInit kafRing-ar.init.KafMemInit kafDotabove-ar.init.KafMemInit ng-ar.init.KafMemInit kafThreedotsbelow-ar.init.KafMemInit gaf-ar.init.KafMemInit keheh-ar.init.KafMemInit gafThreedots-ar.init.KafMemInit kehehThreedotsabove-ar.init.KafMemInit kehehDotabove-ar.init.KafMemInit ngoeh-ar.init.KafMemInit]; @aKaf.init.KafMemIsol = [kehehTwodotshorizontalabove-ar.init.KafMemIsol kehehThreedotsbelow-ar.init.KafMemIsol kafTwodotshorizontalabove-ar.init.KafMemIsol kehehThreedotsupbelow-ar.init.KafMemIsol kaf-ar.init.KafMemIsol gafRing-ar.init.KafMemIsol gueh-ar.init.KafMemIsol gafTwodotsbelow-ar.init.KafMemIsol kafRing-ar.init.KafMemIsol kafDotabove-ar.init.KafMemIsol ng-ar.init.KafMemIsol kafThreedotsbelow-ar.init.KafMemIsol gaf-ar.init.KafMemIsol keheh-ar.init.KafMemIsol gafThreedots-ar.init.KafMemIsol kehehThreedotsabove-ar.init.KafMemIsol kehehDotabove-ar.init.KafMemIsol ngoeh-ar.init.KafMemIsol]; @aKaf.init.KafRaaIsol = [kehehTwodotshorizontalabove-ar.init.KafRaaIsol kehehThreedotsbelow-ar.init.KafRaaIsol kafTwodotshorizontalabove-ar.init.KafRaaIsol kehehThreedotsupbelow-ar.init.KafRaaIsol kaf-ar.init.KafRaaIsol gafRing-ar.init.KafRaaIsol gueh-ar.init.KafRaaIsol gafTwodotsbelow-ar.init.KafRaaIsol kafRing-ar.init.KafRaaIsol kafDotabove-ar.init.KafRaaIsol ng-ar.init.KafRaaIsol kafThreedotsbelow-ar.init.KafRaaIsol gaf-ar.init.KafRaaIsol keheh-ar.init.KafRaaIsol gafThreedots-ar.init.KafRaaIsol kehehThreedotsabove-ar.init.KafRaaIsol kehehDotabove-ar.init.KafRaaIsol ngoeh-ar.init.KafRaaIsol]; @aKaf.init.KafYaaIsol = [kehehTwodotshorizontalabove-ar.init.KafYaaIsol kehehThreedotsbelow-ar.init.KafYaaIsol kafTwodotshorizontalabove-ar.init.KafYaaIsol kehehThreedotsupbelow-ar.init.KafYaaIsol kaf-ar.init.KafYaaIsol gafRing-ar.init.KafYaaIsol gueh-ar.init.KafYaaIsol gafTwodotsbelow-ar.init.KafYaaIsol kafRing-ar.init.KafYaaIsol kafDotabove-ar.init.KafYaaIsol ng-ar.init.KafYaaIsol kafThreedotsbelow-ar.init.KafYaaIsol gaf-ar.init.KafYaaIsol keheh-ar.init.KafYaaIsol gafThreedots-ar.init.KafYaaIsol kehehThreedotsabove-ar.init.KafYaaIsol kehehDotabove-ar.init.KafYaaIsol ngoeh-ar.init.KafYaaIsol]; @aKaf.init.YaaBari = [kehehTwodotshorizontalabove-ar.init.YaaBari kehehThreedotsbelow-ar.init.YaaBari kafTwodotshorizontalabove-ar.init.YaaBari kehehThreedotsupbelow-ar.init.YaaBari kaf-ar.init.YaaBari gafRing-ar.init.YaaBari gueh-ar.init.YaaBari gafTwodotsbelow-ar.init.YaaBari kafRing-ar.init.YaaBari kafDotabove-ar.init.YaaBari ng-ar.init.YaaBari kafThreedotsbelow-ar.init.YaaBari gaf-ar.init.YaaBari keheh-ar.init.YaaBari gafThreedots-ar.init.YaaBari kehehThreedotsabove-ar.init.YaaBari kehehDotabove-ar.init.YaaBari ngoeh-ar.init.YaaBari]; @aKaf.medi.PreHeh = [kehehTwodotshorizontalabove-ar.medi.PreHeh kehehThreedotsbelow-ar.medi.PreHeh kafTwodotshorizontalabove-ar.medi.PreHeh kehehThreedotsupbelow-ar.medi.PreHeh kaf-ar.medi.PreHeh gafRing-ar.medi.PreHeh gueh-ar.medi.PreHeh gafTwodotsbelow-ar.medi.PreHeh kafRing-ar.medi.PreHeh kafDotabove-ar.medi.PreHeh ng-ar.medi.PreHeh kafThreedotsbelow-ar.medi.PreHeh gaf-ar.medi.PreHeh keheh-ar.medi.PreHeh gafThreedots-ar.medi.PreHeh kehehThreedotsabove-ar.medi.PreHeh kehehDotabove-ar.medi.PreHeh ngoeh-ar.medi.PreHeh]; @aKaf.medi.KafBaaMedi = [kehehTwodotshorizontalabove-ar.medi.KafBaaMedi kehehThreedotsbelow-ar.medi.KafBaaMedi kafTwodotshorizontalabove-ar.medi.KafBaaMedi kehehThreedotsupbelow-ar.medi.KafBaaMedi kaf-ar.medi.KafBaaMedi gafRing-ar.medi.KafBaaMedi gueh-ar.medi.KafBaaMedi gafTwodotsbelow-ar.medi.KafBaaMedi kafRing-ar.medi.KafBaaMedi kafDotabove-ar.medi.KafBaaMedi ng-ar.medi.KafBaaMedi kafThreedotsbelow-ar.medi.KafBaaMedi gaf-ar.medi.KafBaaMedi keheh-ar.medi.KafBaaMedi gafThreedots-ar.medi.KafBaaMedi kehehThreedotsabove-ar.medi.KafBaaMedi kehehDotabove-ar.medi.KafBaaMedi ngoeh-ar.medi.KafBaaMedi]; @aKaf.medi.KafHeh = [kehehTwodotshorizontalabove-ar.medi.KafHeh kehehThreedotsbelow-ar.medi.KafHeh kafTwodotshorizontalabove-ar.medi.KafHeh kehehThreedotsupbelow-ar.medi.KafHeh kaf-ar.medi.KafHeh gafRing-ar.medi.KafHeh gueh-ar.medi.KafHeh gafTwodotsbelow-ar.medi.KafHeh kafRing-ar.medi.KafHeh kafDotabove-ar.medi.KafHeh ng-ar.medi.KafHeh kafThreedotsbelow-ar.medi.KafHeh gaf-ar.medi.KafHeh keheh-ar.medi.KafHeh gafThreedots-ar.medi.KafHeh kehehThreedotsabove-ar.medi.KafHeh kehehDotabove-ar.medi.KafHeh ngoeh-ar.medi.KafHeh]; @aKaf.medi.KafLam = [kehehTwodotshorizontalabove-ar.medi.KafLam kehehThreedotsbelow-ar.medi.KafLam kafTwodotshorizontalabove-ar.medi.KafLam kehehThreedotsupbelow-ar.medi.KafLam kaf-ar.medi.KafLam gafRing-ar.medi.KafLam gueh-ar.medi.KafLam gafTwodotsbelow-ar.medi.KafLam kafRing-ar.medi.KafLam kafDotabove-ar.medi.KafLam ng-ar.medi.KafLam kafThreedotsbelow-ar.medi.KafLam gaf-ar.medi.KafLam keheh-ar.medi.KafLam gafThreedots-ar.medi.KafLam kehehThreedotsabove-ar.medi.KafLam kehehDotabove-ar.medi.KafLam ngoeh-ar.medi.KafLam]; @aKaf.medi.KafMemAlf = [kehehTwodotshorizontalabove-ar.medi.KafMemAlf kehehThreedotsbelow-ar.medi.KafMemAlf kafTwodotshorizontalabove-ar.medi.KafMemAlf kehehThreedotsupbelow-ar.medi.KafMemAlf kaf-ar.medi.KafMemAlf gafRing-ar.medi.KafMemAlf gueh-ar.medi.KafMemAlf gafTwodotsbelow-ar.medi.KafMemAlf kafRing-ar.medi.KafMemAlf kafDotabove-ar.medi.KafMemAlf ng-ar.medi.KafMemAlf kafThreedotsbelow-ar.medi.KafMemAlf gaf-ar.medi.KafMemAlf keheh-ar.medi.KafMemAlf gafThreedots-ar.medi.KafMemAlf kehehThreedotsabove-ar.medi.KafMemAlf kehehDotabove-ar.medi.KafMemAlf ngoeh-ar.medi.KafMemAlf]; @aKaf.medi.KafMemFina = [kehehTwodotshorizontalabove-ar.medi.KafMemFina kehehThreedotsbelow-ar.medi.KafMemFina kafTwodotshorizontalabove-ar.medi.KafMemFina kehehThreedotsupbelow-ar.medi.KafMemFina kaf-ar.medi.KafMemFina gafRing-ar.medi.KafMemFina gueh-ar.medi.KafMemFina gafTwodotsbelow-ar.medi.KafMemFina kafRing-ar.medi.KafMemFina kafDotabove-ar.medi.KafMemFina ng-ar.medi.KafMemFina kafThreedotsbelow-ar.medi.KafMemFina gaf-ar.medi.KafMemFina keheh-ar.medi.KafMemFina gafThreedots-ar.medi.KafMemFina kehehThreedotsabove-ar.medi.KafMemFina kehehDotabove-ar.medi.KafMemFina ngoeh-ar.medi.KafMemFina]; @aKaf.medi.KafMemMedi = [kehehTwodotshorizontalabove-ar.medi.KafMemMedi kehehThreedotsbelow-ar.medi.KafMemMedi kafTwodotshorizontalabove-ar.medi.KafMemMedi kehehThreedotsupbelow-ar.medi.KafMemMedi kaf-ar.medi.KafMemMedi gafRing-ar.medi.KafMemMedi gueh-ar.medi.KafMemMedi gafTwodotsbelow-ar.medi.KafMemMedi kafRing-ar.medi.KafMemMedi kafDotabove-ar.medi.KafMemMedi ng-ar.medi.KafMemMedi kafThreedotsbelow-ar.medi.KafMemMedi gaf-ar.medi.KafMemMedi keheh-ar.medi.KafMemMedi gafThreedots-ar.medi.KafMemMedi kehehThreedotsabove-ar.medi.KafMemMedi kehehDotabove-ar.medi.KafMemMedi ngoeh-ar.medi.KafMemMedi]; @aKaf.medi.KafRaaFina = [kehehTwodotshorizontalabove-ar.medi.KafRaaFina kehehThreedotsbelow-ar.medi.KafRaaFina kafTwodotshorizontalabove-ar.medi.KafRaaFina kehehThreedotsupbelow-ar.medi.KafRaaFina kaf-ar.medi.KafRaaFina gafRing-ar.medi.KafRaaFina gueh-ar.medi.KafRaaFina gafTwodotsbelow-ar.medi.KafRaaFina kafRing-ar.medi.KafRaaFina kafDotabove-ar.medi.KafRaaFina ng-ar.medi.KafRaaFina kafThreedotsbelow-ar.medi.KafRaaFina gaf-ar.medi.KafRaaFina keheh-ar.medi.KafRaaFina gafThreedots-ar.medi.KafRaaFina kehehThreedotsabove-ar.medi.KafRaaFina kehehDotabove-ar.medi.KafRaaFina ngoeh-ar.medi.KafRaaFina]; @aKaf.medi.KafYaaFina = [kehehTwodotshorizontalabove-ar.medi.KafYaaFina kehehThreedotsbelow-ar.medi.KafYaaFina kafTwodotshorizontalabove-ar.medi.KafYaaFina kehehThreedotsupbelow-ar.medi.KafYaaFina kaf-ar.medi.KafYaaFina gafRing-ar.medi.KafYaaFina gueh-ar.medi.KafYaaFina gafTwodotsbelow-ar.medi.KafYaaFina kafRing-ar.medi.KafYaaFina kafDotabove-ar.medi.KafYaaFina ng-ar.medi.KafYaaFina kafThreedotsbelow-ar.medi.KafYaaFina gaf-ar.medi.KafYaaFina keheh-ar.medi.KafYaaFina gafThreedots-ar.medi.KafYaaFina kehehThreedotsabove-ar.medi.KafYaaFina kehehDotabove-ar.medi.KafYaaFina ngoeh-ar.medi.KafYaaFina]; @aLam.fina.KafLam = [lamVabove-ar.fina.KafLam lamThreedotsabove-ar.fina.KafLam lam-ar.fina.KafLam lamThreedotsbelow-ar.fina.KafLam lamDotabove-ar.fina.KafLam lamBar-ar.fina.KafLam]; @aLam.fina.KafMemLam = [lamVabove-ar.fina.KafMemLam lamThreedotsabove-ar.fina.KafMemLam lam-ar.fina.KafMemLam lamThreedotsbelow-ar.fina.KafMemLam lamDotabove-ar.fina.KafMemLam lamBar-ar.fina.KafMemLam]; @aLam.fina.LamLamFina = [lamVabove-ar.fina.LamLamFina lamThreedotsabove-ar.fina.LamLamFina lam-ar.fina.LamLamFina lamThreedotsbelow-ar.fina.LamLamFina lamDotabove-ar.fina.LamLamFina lamBar-ar.fina.LamLamFina]; @aLam.fina.LamLamIsol = [lamVabove-ar.fina.LamLamIsol lamThreedotsabove-ar.fina.LamLamIsol lam-ar.fina.LamLamIsol lamThreedotsbelow-ar.fina.LamLamIsol lamDotabove-ar.fina.LamLamIsol lamBar-ar.fina.LamLamIsol]; @aLam.init.LamAlfIsol = [lamVabove-ar.init.LamAlfIsol lamThreedotsabove-ar.init.LamAlfIsol lam-ar.init.LamAlfIsol lamThreedotsbelow-ar.init.LamAlfIsol lamDotabove-ar.init.LamAlfIsol lamBar-ar.init.LamAlfIsol]; @aLam.init.LamBaaMemInit = [lamVabove-ar.init.LamBaaMemInit lamThreedotsabove-ar.init.LamBaaMemInit lam-ar.init.LamBaaMemInit lamThreedotsbelow-ar.init.LamBaaMemInit lamDotabove-ar.init.LamBaaMemInit lamBar-ar.init.LamBaaMemInit]; @aLam.init.LamHaaHaaInit = [lamVabove-ar.init.LamHaaHaaInit lamThreedotsabove-ar.init.LamHaaHaaInit lam-ar.init.LamHaaHaaInit lamThreedotsbelow-ar.init.LamHaaHaaInit lamDotabove-ar.init.LamHaaHaaInit lamBar-ar.init.LamHaaHaaInit]; @aLam.init.LamHaaInit = [lamVabove-ar.init.LamHaaInit lamThreedotsabove-ar.init.LamHaaInit lam-ar.init.LamHaaInit lamThreedotsbelow-ar.init.LamHaaInit lamDotabove-ar.init.LamHaaInit lamBar-ar.init.LamHaaInit]; @aLam.init.LamHaaMemInit = [lamVabove-ar.init.LamHaaMemInit lamThreedotsabove-ar.init.LamHaaMemInit lam-ar.init.LamHaaMemInit lamThreedotsbelow-ar.init.LamHaaMemInit lamDotabove-ar.init.LamHaaMemInit lamBar-ar.init.LamHaaMemInit]; @aLam.init.LamHehInit = [lamVabove-ar.init.LamHehInit lamThreedotsabove-ar.init.LamHehInit lam-ar.init.LamHehInit lamThreedotsbelow-ar.init.LamHehInit lamDotabove-ar.init.LamHehInit lamBar-ar.init.LamHehInit]; @aLam.init.LamHeh = [lamVabove-ar.init.LamHeh lamThreedotsabove-ar.init.LamHeh lam-ar.init.LamHeh lamThreedotsbelow-ar.init.LamHeh lamDotabove-ar.init.LamHeh lamBar-ar.init.LamHeh]; @aLam.init.LamLamHaaInit = [lamVabove-ar.init.LamLamHaaInit lamThreedotsabove-ar.init.LamLamHaaInit lam-ar.init.LamLamHaaInit lamThreedotsbelow-ar.init.LamLamHaaInit lamDotabove-ar.init.LamLamHaaInit lamBar-ar.init.LamLamHaaInit]; @aLam.init.LamLamInit = [lamVabove-ar.init.LamLamInit lamThreedotsabove-ar.init.LamLamInit lam-ar.init.LamLamInit lamThreedotsbelow-ar.init.LamLamInit lamDotabove-ar.init.LamLamInit lamBar-ar.init.LamLamInit]; @aLam.init.LamMemHaaInit = [lamVabove-ar.init.LamMemHaaInit lamThreedotsabove-ar.init.LamMemHaaInit lam-ar.init.LamMemHaaInit lamThreedotsbelow-ar.init.LamMemHaaInit lamDotabove-ar.init.LamMemHaaInit lamBar-ar.init.LamMemHaaInit]; @aLam.init.LamMemInit = [lamVabove-ar.init.LamMemInit lamThreedotsabove-ar.init.LamMemInit lam-ar.init.LamMemInit lamThreedotsbelow-ar.init.LamMemInit lamDotabove-ar.init.LamMemInit lamBar-ar.init.LamMemInit]; @aLam.init.LamMemIsol = [lamVabove-ar.init.LamMemIsol lamThreedotsabove-ar.init.LamMemIsol lam-ar.init.LamMemIsol lamThreedotsbelow-ar.init.LamMemIsol lamDotabove-ar.init.LamMemIsol lamBar-ar.init.LamMemIsol]; @aLam.init.LamRaaIsol = [lamVabove-ar.init.LamRaaIsol lamThreedotsabove-ar.init.LamRaaIsol lam-ar.init.LamRaaIsol lamThreedotsbelow-ar.init.LamRaaIsol lamDotabove-ar.init.LamRaaIsol lamBar-ar.init.LamRaaIsol]; @aLam.init.LamYaaIsol = [lamVabove-ar.init.LamYaaIsol lamThreedotsabove-ar.init.LamYaaIsol lam-ar.init.LamYaaIsol lamThreedotsbelow-ar.init.LamYaaIsol lamDotabove-ar.init.LamYaaIsol lamBar-ar.init.LamYaaIsol]; @aLam.init.YaaBari = [lamVabove-ar.init.YaaBari lamThreedotsabove-ar.init.YaaBari lam-ar.init.YaaBari lamThreedotsbelow-ar.init.YaaBari lamDotabove-ar.init.YaaBari lamBar-ar.init.YaaBari]; @aLam.medi.KafLamAlf = [lamVabove-ar.medi.KafLamAlf lamThreedotsabove-ar.medi.KafLamAlf lam-ar.medi.KafLamAlf lamThreedotsbelow-ar.medi.KafLamAlf lamDotabove-ar.medi.KafLamAlf lamBar-ar.medi.KafLamAlf]; @aLam.medi.KafLamHehIsol = [lamVabove-ar.medi.KafLamHehIsol lamThreedotsabove-ar.medi.KafLamHehIsol lam-ar.medi.KafLamHehIsol lamThreedotsbelow-ar.medi.KafLamHehIsol lamDotabove-ar.medi.KafLamHehIsol lamBar-ar.medi.KafLamHehIsol]; @aLam.medi.KafLamMemFina = [lamVabove-ar.medi.KafLamMemFina lamThreedotsabove-ar.medi.KafLamMemFina lam-ar.medi.KafLamMemFina lamThreedotsbelow-ar.medi.KafLamMemFina lamDotabove-ar.medi.KafLamMemFina lamBar-ar.medi.KafLamMemFina]; @aLam.medi.KafLamMemMedi = [lamVabove-ar.medi.KafLamMemMedi lamThreedotsabove-ar.medi.KafLamMemMedi lam-ar.medi.KafLamMemMedi lamThreedotsbelow-ar.medi.KafLamMemMedi lamDotabove-ar.medi.KafLamMemMedi lamBar-ar.medi.KafLamMemMedi]; @aLam.medi.KafLam = [lamVabove-ar.medi.KafLam lamThreedotsabove-ar.medi.KafLam lam-ar.medi.KafLam lamThreedotsbelow-ar.medi.KafLam lamDotabove-ar.medi.KafLam lamBar-ar.medi.KafLam]; @aLam.medi.KafLamYaa = [lamVabove-ar.medi.KafLamYaa lamThreedotsabove-ar.medi.KafLamYaa lam-ar.medi.KafLamYaa lamThreedotsbelow-ar.medi.KafLamYaa lamDotabove-ar.medi.KafLamYaa lamBar-ar.medi.KafLamYaa]; @aLam.medi.KafMemLam = [lamVabove-ar.medi.KafMemLam lamThreedotsabove-ar.medi.KafMemLam lam-ar.medi.KafMemLam lamThreedotsbelow-ar.medi.KafMemLam lamDotabove-ar.medi.KafMemLam lamBar-ar.medi.KafMemLam]; @aLam.medi.LamAlfFina = [lamVabove-ar.medi.LamAlfFina lamThreedotsabove-ar.medi.LamAlfFina lam-ar.medi.LamAlfFina lamThreedotsbelow-ar.medi.LamAlfFina lamDotabove-ar.medi.LamAlfFina lamBar-ar.medi.LamAlfFina]; @aLam.medi.LamHeh = [lamVabove-ar.medi.LamHeh lamThreedotsabove-ar.medi.LamHeh lam-ar.medi.LamHeh lamThreedotsbelow-ar.medi.LamHeh lamDotabove-ar.medi.LamHeh lamBar-ar.medi.LamHeh]; @aLam.medi.LamLamAlefFina = [lamVabove-ar.medi.LamLamAlefFina lamThreedotsabove-ar.medi.LamLamAlefFina lam-ar.medi.LamLamAlefFina lamThreedotsbelow-ar.medi.LamLamAlefFina lamDotabove-ar.medi.LamLamAlefFina lamBar-ar.medi.LamLamAlefFina]; @aLam.medi.LamLamAlfIsol = [lamVabove-ar.medi.LamLamAlfIsol lamThreedotsabove-ar.medi.LamLamAlfIsol lam-ar.medi.LamLamAlfIsol lamThreedotsbelow-ar.medi.LamLamAlfIsol lamDotabove-ar.medi.LamLamAlfIsol lamBar-ar.medi.LamLamAlfIsol]; @aLam.medi.LamLamHaaInit = [lamVabove-ar.medi.LamLamHaaInit lamThreedotsabove-ar.medi.LamLamHaaInit lam-ar.medi.LamLamHaaInit lamThreedotsbelow-ar.medi.LamLamHaaInit lamDotabove-ar.medi.LamLamHaaInit lamBar-ar.medi.LamLamHaaInit]; @aLam.medi.LamLamHehFina = [lamVabove-ar.medi.LamLamHehFina lamThreedotsabove-ar.medi.LamLamHehFina lam-ar.medi.LamLamHehFina lamThreedotsbelow-ar.medi.LamLamHehFina lamDotabove-ar.medi.LamLamHehFina lamBar-ar.medi.LamLamHehFina]; @aLam.medi.LamLamHehIsol = [lamVabove-ar.medi.LamLamHehIsol lamThreedotsabove-ar.medi.LamLamHehIsol lam-ar.medi.LamLamHehIsol lamThreedotsbelow-ar.medi.LamLamHehIsol lamDotabove-ar.medi.LamLamHehIsol lamBar-ar.medi.LamLamHehIsol]; @aLam.medi.LamLamInit = [lamVabove-ar.medi.LamLamInit lamThreedotsabove-ar.medi.LamLamInit lam-ar.medi.LamLamInit lamThreedotsbelow-ar.medi.LamLamInit lamDotabove-ar.medi.LamLamInit lamBar-ar.medi.LamLamInit]; @aLam.medi.LamLamMedi2 = [lamVabove-ar.medi.LamLamMedi2 lamThreedotsabove-ar.medi.LamLamMedi2 lam-ar.medi.LamLamMedi2 lamThreedotsbelow-ar.medi.LamLamMedi2 lamDotabove-ar.medi.LamLamMedi2 lamBar-ar.medi.LamLamMedi2]; @aLam.medi.LamLamMedi = [lamVabove-ar.medi.LamLamMedi lamThreedotsabove-ar.medi.LamLamMedi lam-ar.medi.LamLamMedi lamThreedotsbelow-ar.medi.LamLamMedi lamDotabove-ar.medi.LamLamMedi lamBar-ar.medi.LamLamMedi]; @aLam.medi.LamLamMemInit = [lamVabove-ar.medi.LamLamMemInit lamThreedotsabove-ar.medi.LamLamMemInit lam-ar.medi.LamLamMemInit lamThreedotsbelow-ar.medi.LamLamMemInit lamDotabove-ar.medi.LamLamMemInit lamBar-ar.medi.LamLamMemInit]; @aLam.medi.LamLamMemMedi = [lamVabove-ar.medi.LamLamMemMedi lamThreedotsabove-ar.medi.LamLamMemMedi lam-ar.medi.LamLamMemMedi lamThreedotsbelow-ar.medi.LamLamMemMedi lamDotabove-ar.medi.LamLamMemMedi lamBar-ar.medi.LamLamMemMedi]; @aLam.medi.LamLamYaaFina = [lamVabove-ar.medi.LamLamYaaFina lamThreedotsabove-ar.medi.LamLamYaaFina lam-ar.medi.LamLamYaaFina lamThreedotsbelow-ar.medi.LamLamYaaFina lamDotabove-ar.medi.LamLamYaaFina lamBar-ar.medi.LamLamYaaFina]; @aLam.medi.LamLamYaaIsol = [lamVabove-ar.medi.LamLamYaaIsol lamThreedotsabove-ar.medi.LamLamYaaIsol lam-ar.medi.LamLamYaaIsol lamThreedotsbelow-ar.medi.LamLamYaaIsol lamDotabove-ar.medi.LamLamYaaIsol lamBar-ar.medi.LamLamYaaIsol]; @aLam.medi.LamMemFina = [lamVabove-ar.medi.LamMemFina lamThreedotsabove-ar.medi.LamMemFina lam-ar.medi.LamMemFina lamThreedotsbelow-ar.medi.LamMemFina lamDotabove-ar.medi.LamMemFina lamBar-ar.medi.LamMemFina]; @aLam.medi.LamMemMedi = [lamVabove-ar.medi.LamMemMedi lamThreedotsabove-ar.medi.LamMemMedi lam-ar.medi.LamMemMedi lamThreedotsbelow-ar.medi.LamMemMedi lamDotabove-ar.medi.LamMemMedi lamBar-ar.medi.LamMemMedi]; @aLam.medi.LamQafFina = [lamVabove-ar.medi.LamQafFina lamThreedotsabove-ar.medi.LamQafFina lam-ar.medi.LamQafFina lamThreedotsbelow-ar.medi.LamQafFina lamDotabove-ar.medi.LamQafFina lamBar-ar.medi.LamQafFina]; @aLam.medi.LamWawFina = [lamVabove-ar.medi.LamWawFina lamThreedotsabove-ar.medi.LamWawFina lam-ar.medi.LamWawFina lamThreedotsbelow-ar.medi.LamWawFina lamDotabove-ar.medi.LamWawFina lamBar-ar.medi.LamWawFina]; @aLam.medi.LamYaaFina = [lamVabove-ar.medi.LamYaaFina lamThreedotsabove-ar.medi.LamYaaFina lam-ar.medi.LamYaaFina lamThreedotsbelow-ar.medi.LamYaaFina lamDotabove-ar.medi.LamYaaFina lamBar-ar.medi.LamYaaFina]; @aMem.fina.BaaMemFina = [meem-ar.fina.BaaMemFina]; @aMem.fina.KafMemFina = [meem-ar.fina.KafMemFina]; @aMem.fina.KafMemIsol = [meem-ar.fina.KafMemIsol]; @aMem.fina.LamMemFina = [meem-ar.fina.LamMemFina]; @aMem.fina.PostTooth = [meem-ar.fina.PostTooth]; @aMem.init.AboveHaa = [meem-ar.init.AboveHaa]; @aMem.init.MemHaaInit = [meem-ar.init.MemHaaInit]; @aMem.init.MemHaaMemInit = [meem-ar.init.MemHaaMemInit]; @aMem.init.MemMemInit = [meem-ar.init.MemMemInit]; @aMem.init.MemRaaIsol = [meem-ar.init.MemRaaIsol]; @aMem.init.MemHehInit = [meemDotabove-ar.init.MemHehInit meem-ar.init.MemHehInit meemDotbelow-ar.init.MemHehInit]; @aMem.init.MemYaaIsol = [meemDotabove-ar.init.MemYaaIsol meem-ar.init.MemYaaIsol meemDotbelow-ar.init.MemYaaIsol]; @aMem.init.YaaBari = [meemDotabove-ar.init.YaaBari meem-ar.init.YaaBari meemDotbelow-ar.init.YaaBari]; @aMem.medi.AlfPostTooth = [meem-ar.medi.AlfPostTooth]; @aMem.medi.BaaBaaMemInit = [meem-ar.medi.BaaBaaMemInit]; @aMem.medi.BaaMemAlfFina = [meem-ar.medi.BaaMemAlfFina]; @aMem.medi.BaaMemHaaInit = [meem-ar.medi.BaaMemHaaInit]; @aMem.medi.BaaMemInit = [meem-ar.medi.BaaMemInit]; @aMem.medi.KafMemAlf = [meem-ar.medi.KafMemAlf]; @aMem.medi.KafMemMedi = [meem-ar.medi.KafMemMedi]; @aMem.medi.LamBaaMemInit = [meem-ar.medi.LamBaaMemInit]; @aMem.medi.LamHaaMemInit = [meem-ar.medi.LamHaaMemInit]; @aMem.medi.LamMemHaaInit = [meem-ar.medi.LamMemHaaInit]; @aMem.medi.LamMemInit = [meem-ar.medi.LamMemInit]; @aMem.medi.LamMemMedi = [meemDotabove-ar.medi.LamMemMedi meem-ar.medi.LamMemMedi meemDotbelow-ar.medi.LamMemMedi]; @aMem.medi.MemAlfFina = [meem-ar.medi.MemAlfFina]; @aMem.medi.SenBaaMemInit = [meem-ar.medi.SenBaaMemInit]; @aMem.medi.SenMemInit = [meem-ar.medi.SenMemInit]; @aMem.medi.LamMemInitTatweel = [meem-ar.medi.LamMemInitTatweel]; @aMem.medi.KafMemMediTatweel = [meem-ar.medi.KafMemMediTatweel]; @aMem.fina.LamMemFinaExtended = [meem-ar.fina.LamMemFinaExtended]; @aMem.fina.KafMemFinaExtended = [meem-ar.fina.KafMemFinaExtended]; @aMem.fina.KafMemIsolExtended = [meem-ar.fina.KafMemIsolExtended]; @aNon.fina.BaaNonFina = [noon-ar.fina.BaaNonFina noonTwodotsbelow-ar.fina.BaaNonFina noonghunna-ar.fina.BaaNonFina noonRing-ar.fina.BaaNonFina rnoon-ar.fina.BaaNonFina noonTahabove-ar.fina.BaaNonFina noonDotbelow-ar.fina.BaaNonFina noonVabove-ar.fina.BaaNonFina noonThreedotsabove-ar.fina.BaaNonFina]; @aNon.fina.BaaNonIsol = [noon-ar.fina.BaaNonIsol noonTwodotsbelow-ar.fina.BaaNonIsol noonghunna-ar.fina.BaaNonIsol noonRing-ar.fina.BaaNonIsol rnoon-ar.fina.BaaNonIsol noonTahabove-ar.fina.BaaNonIsol noonDotbelow-ar.fina.BaaNonIsol noonVabove-ar.fina.BaaNonIsol noonThreedotsabove-ar.fina.BaaNonIsol]; @aQaf.fina.LamQafFina = [qafThreedotsabove-ar.fina.LamQafFina qafDotabove-ar.fina.LamQafFina qaf-ar.fina.LamQafFina qafDotless-ar.fina.LamQafFina]; @aRaa.fina.BaaRaaFina = [rreh-ar.fina.BaaRaaFina rehv-ar.fina.BaaRaaFina rehRing-ar.fina.BaaRaaFina rehDotbelow-ar.fina.BaaRaaFina rehVbelow-ar.fina.BaaRaaFina rehDotbelowdotabove-ar.fina.BaaRaaFina rehTwodots-ar.fina.BaaRaaFina jeh-ar.fina.BaaRaaFina rehFourdots-ar.fina.BaaRaaFina rehStroke-ar.fina.BaaRaaFina rehVinvertedabove-ar.fina.BaaRaaFina zain-ar.fina.BaaRaaFina rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaFina reh-ar.fina.BaaRaaFina rehTwodotsverticalabove-ar.fina.BaaRaaFina rehHamzaabove-ar.fina.BaaRaaFina]; @aRaa.fina.BaaRaaIsol = [rreh-ar.fina.BaaRaaIsol rehv-ar.fina.BaaRaaIsol rehRing-ar.fina.BaaRaaIsol rehDotbelow-ar.fina.BaaRaaIsol rehVbelow-ar.fina.BaaRaaIsol rehDotbelowdotabove-ar.fina.BaaRaaIsol rehTwodots-ar.fina.BaaRaaIsol jeh-ar.fina.BaaRaaIsol rehFourdots-ar.fina.BaaRaaIsol rehStroke-ar.fina.BaaRaaIsol rehVinvertedabove-ar.fina.BaaRaaIsol zain-ar.fina.BaaRaaIsol rehTwodotshorizontalaboveTahabove-ar.fina.BaaRaaIsol reh-ar.fina.BaaRaaIsol rehTwodotsverticalabove-ar.fina.BaaRaaIsol rehHamzaabove-ar.fina.BaaRaaIsol]; @aRaa.fina.HaaRaaIsol = [rreh-ar.fina.HaaRaaIsol rehv-ar.fina.HaaRaaIsol rehRing-ar.fina.HaaRaaIsol rehDotbelow-ar.fina.HaaRaaIsol rehVbelow-ar.fina.HaaRaaIsol rehDotbelowdotabove-ar.fina.HaaRaaIsol rehTwodots-ar.fina.HaaRaaIsol jeh-ar.fina.HaaRaaIsol rehFourdots-ar.fina.HaaRaaIsol rehStroke-ar.fina.HaaRaaIsol rehVinvertedabove-ar.fina.HaaRaaIsol zain-ar.fina.HaaRaaIsol rehTwodotshorizontalaboveTahabove-ar.fina.HaaRaaIsol reh-ar.fina.HaaRaaIsol rehTwodotsverticalabove-ar.fina.HaaRaaIsol rehHamzaabove-ar.fina.HaaRaaIsol]; @aRaa.fina.KafRaaFina = [rreh-ar.fina.KafRaaFina rehv-ar.fina.KafRaaFina rehRing-ar.fina.KafRaaFina rehDotbelow-ar.fina.KafRaaFina rehVbelow-ar.fina.KafRaaFina rehDotbelowdotabove-ar.fina.KafRaaFina rehTwodots-ar.fina.KafRaaFina jeh-ar.fina.KafRaaFina rehFourdots-ar.fina.KafRaaFina rehStroke-ar.fina.KafRaaFina rehVinvertedabove-ar.fina.KafRaaFina zain-ar.fina.KafRaaFina rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaFina reh-ar.fina.KafRaaFina rehTwodotsverticalabove-ar.fina.KafRaaFina rehHamzaabove-ar.fina.KafRaaFina]; @aRaa.fina.KafRaaIsol = [rreh-ar.fina.KafRaaIsol rehv-ar.fina.KafRaaIsol rehRing-ar.fina.KafRaaIsol rehDotbelow-ar.fina.KafRaaIsol rehVbelow-ar.fina.KafRaaIsol rehDotbelowdotabove-ar.fina.KafRaaIsol rehTwodots-ar.fina.KafRaaIsol jeh-ar.fina.KafRaaIsol rehFourdots-ar.fina.KafRaaIsol rehStroke-ar.fina.KafRaaIsol rehVinvertedabove-ar.fina.KafRaaIsol zain-ar.fina.KafRaaIsol rehTwodotshorizontalaboveTahabove-ar.fina.KafRaaIsol reh-ar.fina.KafRaaIsol rehTwodotsverticalabove-ar.fina.KafRaaIsol rehHamzaabove-ar.fina.KafRaaIsol]; @aRaa.fina.LamRaaIsol = [rreh-ar.fina.LamRaaIsol rehv-ar.fina.LamRaaIsol rehRing-ar.fina.LamRaaIsol rehDotbelow-ar.fina.LamRaaIsol rehVbelow-ar.fina.LamRaaIsol rehDotbelowdotabove-ar.fina.LamRaaIsol rehTwodots-ar.fina.LamRaaIsol jeh-ar.fina.LamRaaIsol rehFourdots-ar.fina.LamRaaIsol rehStroke-ar.fina.LamRaaIsol rehVinvertedabove-ar.fina.LamRaaIsol zain-ar.fina.LamRaaIsol rehTwodotshorizontalaboveTahabove-ar.fina.LamRaaIsol reh-ar.fina.LamRaaIsol rehTwodotsverticalabove-ar.fina.LamRaaIsol rehHamzaabove-ar.fina.LamRaaIsol]; @aRaa.fina.MemRaaIsol = [rreh-ar.fina.MemRaaIsol rehv-ar.fina.MemRaaIsol rehRing-ar.fina.MemRaaIsol rehDotbelow-ar.fina.MemRaaIsol rehVbelow-ar.fina.MemRaaIsol rehDotbelowdotabove-ar.fina.MemRaaIsol rehTwodots-ar.fina.MemRaaIsol jeh-ar.fina.MemRaaIsol rehFourdots-ar.fina.MemRaaIsol rehStroke-ar.fina.MemRaaIsol rehVinvertedabove-ar.fina.MemRaaIsol zain-ar.fina.MemRaaIsol rehTwodotshorizontalaboveTahabove-ar.fina.MemRaaIsol reh-ar.fina.MemRaaIsol rehTwodotsverticalabove-ar.fina.MemRaaIsol rehHamzaabove-ar.fina.MemRaaIsol]; @aRaa.fina.PostTooth = [rreh-ar.fina.PostTooth rehv-ar.fina.PostTooth rehRing-ar.fina.PostTooth rehDotbelow-ar.fina.PostTooth rehVbelow-ar.fina.PostTooth rehDotbelowdotabove-ar.fina.PostTooth rehTwodots-ar.fina.PostTooth jeh-ar.fina.PostTooth rehFourdots-ar.fina.PostTooth rehStroke-ar.fina.PostTooth rehVinvertedabove-ar.fina.PostTooth zain-ar.fina.PostTooth rehTwodotshorizontalaboveTahabove-ar.fina.PostTooth reh-ar.fina.PostTooth rehTwodotsverticalabove-ar.fina.PostTooth rehHamzaabove-ar.fina.PostTooth]; @aSad.init.AboveHaa = [sadTwodotsbelow-ar.init.AboveHaa dadDotbelow-ar.init.AboveHaa dad-ar.init.AboveHaa sadThreedots-ar.init.AboveHaa sad-ar.init.AboveHaa]; @aSad.init.PreYaa = [sadTwodotsbelow-ar.init.PreYaa dadDotbelow-ar.init.PreYaa dad-ar.init.PreYaa sadThreedots-ar.init.PreYaa sad-ar.init.PreYaa]; @aSad.init.SadHaaInit = [sadTwodotsbelow-ar.init.SadHaaInit dadDotbelow-ar.init.SadHaaInit dad-ar.init.SadHaaInit sadThreedots-ar.init.SadHaaInit sad-ar.init.SadHaaInit]; @aSad.init.SadMemInit = [sadTwodotsbelow-ar.init.SadMemInit dadDotbelow-ar.init.SadMemInit dad-ar.init.SadMemInit sadThreedots-ar.init.SadMemInit sad-ar.init.SadMemInit]; @aSad.init.SenBaaMemInit = [sadTwodotsbelow-ar.init.SenBaaMemInit dadDotbelow-ar.init.SenBaaMemInit dad-ar.init.SenBaaMemInit sadThreedots-ar.init.SenBaaMemInit sad-ar.init.SenBaaMemInit]; @aSad.init.YaaBari = [sadTwodotsbelow-ar.init.YaaBari dadDotbelow-ar.init.YaaBari dad-ar.init.YaaBari sadThreedots-ar.init.YaaBari sad-ar.init.YaaBari]; @aSad.medi.PreYaa = [sadTwodotsbelow-ar.medi.PreYaa dadDotbelow-ar.medi.PreYaa dad-ar.medi.PreYaa sadThreedots-ar.medi.PreYaa sad-ar.medi.PreYaa]; @aSen.fina.BaaSen = [sheenDotbelow-ar.fina.BaaSen seenTwodotsverticalabove-ar.fina.BaaSen seen-ar.fina.BaaSen seenVinvertedabove-ar.fina.BaaSen seenFourabove-ar.fina.BaaSen sheen-ar.fina.BaaSen seenTahTwodotshorizontalabove-ar.fina.BaaSen seenFourdotsabove-ar.fina.BaaSen seenDotbelowDotabove-ar.fina.BaaSen seenThreedotsbelow-ar.fina.BaaSen sheenThreedotsbelow-ar.fina.BaaSen]; @aSen.init.AboveHaa = [sheenDotbelow-ar.init.AboveHaa seenTwodotsverticalabove-ar.init.AboveHaa seen-ar.init.AboveHaa seenVinvertedabove-ar.init.AboveHaa seenFourabove-ar.init.AboveHaa sheen-ar.init.AboveHaa seenTahTwodotshorizontalabove-ar.init.AboveHaa seenFourdotsabove-ar.init.AboveHaa seenDotbelowDotabove-ar.init.AboveHaa seenThreedotsbelow-ar.init.AboveHaa sheenThreedotsbelow-ar.init.AboveHaa]; @aSen.init.PreYaa = [sheenDotbelow-ar.init.PreYaa seenTwodotsverticalabove-ar.init.PreYaa seen-ar.init.PreYaa seenVinvertedabove-ar.init.PreYaa seenFourabove-ar.init.PreYaa sheen-ar.init.PreYaa seenTahTwodotshorizontalabove-ar.init.PreYaa seenFourdotsabove-ar.init.PreYaa seenDotbelowDotabove-ar.init.PreYaa seenThreedotsbelow-ar.init.PreYaa sheenThreedotsbelow-ar.init.PreYaa]; @aSen.init.SenHaaInit = [sheenDotbelow-ar.init.SenHaaInit seenTwodotsverticalabove-ar.init.SenHaaInit seen-ar.init.SenHaaInit seenVinvertedabove-ar.init.SenHaaInit seenFourabove-ar.init.SenHaaInit sheen-ar.init.SenHaaInit seenTahTwodotshorizontalabove-ar.init.SenHaaInit seenFourdotsabove-ar.init.SenHaaInit seenDotbelowDotabove-ar.init.SenHaaInit seenThreedotsbelow-ar.init.SenHaaInit sheenThreedotsbelow-ar.init.SenHaaInit]; @aSen.init.SenMemInit = [sheenDotbelow-ar.init.SenMemInit seenTwodotsverticalabove-ar.init.SenMemInit seen-ar.init.SenMemInit seenVinvertedabove-ar.init.SenMemInit seenFourabove-ar.init.SenMemInit sheen-ar.init.SenMemInit seenTahTwodotshorizontalabove-ar.init.SenMemInit seenFourdotsabove-ar.init.SenMemInit seenDotbelowDotabove-ar.init.SenMemInit seenThreedotsbelow-ar.init.SenMemInit sheenThreedotsbelow-ar.init.SenMemInit]; @aSen.init.SenBaaMemInit = [sheenDotbelow-ar.init.SenBaaMemInit seenTwodotsverticalabove-ar.init.SenBaaMemInit seen-ar.init.SenBaaMemInit seenVinvertedabove-ar.init.SenBaaMemInit seenFourabove-ar.init.SenBaaMemInit sheen-ar.init.SenBaaMemInit seenTahTwodotshorizontalabove-ar.init.SenBaaMemInit seenFourdotsabove-ar.init.SenBaaMemInit seenDotbelowDotabove-ar.init.SenBaaMemInit seenThreedotsbelow-ar.init.SenBaaMemInit sheenThreedotsbelow-ar.init.SenBaaMemInit]; @aSen.init.YaaBari = [sheenDotbelow-ar.init.YaaBari seenTwodotsverticalabove-ar.init.YaaBari seen-ar.init.YaaBari seenVinvertedabove-ar.init.YaaBari seenFourabove-ar.init.YaaBari sheen-ar.init.YaaBari seenTahTwodotshorizontalabove-ar.init.YaaBari seenFourdotsabove-ar.init.YaaBari seenDotbelowDotabove-ar.init.YaaBari seenThreedotsbelow-ar.init.YaaBari sheenThreedotsbelow-ar.init.YaaBari]; @aSen.medi.BaaSenAltInit = [sheenDotbelow-ar.medi.BaaSenAltInit seenTwodotsverticalabove-ar.medi.BaaSenAltInit seen-ar.medi.BaaSenAltInit seenVinvertedabove-ar.medi.BaaSenAltInit seenFourabove-ar.medi.BaaSenAltInit sheen-ar.medi.BaaSenAltInit seenTahTwodotshorizontalabove-ar.medi.BaaSenAltInit seenFourdotsabove-ar.medi.BaaSenAltInit seenDotbelowDotabove-ar.medi.BaaSenAltInit seenThreedotsbelow-ar.medi.BaaSenAltInit sheenThreedotsbelow-ar.medi.BaaSenAltInit]; @aSen.medi.BaaSenInit = [sheenDotbelow-ar.medi.BaaSenInit seenTwodotsverticalabove-ar.medi.BaaSenInit seen-ar.medi.BaaSenInit seenVinvertedabove-ar.medi.BaaSenInit seenFourabove-ar.medi.BaaSenInit sheen-ar.medi.BaaSenInit seenTahTwodotshorizontalabove-ar.medi.BaaSenInit seenFourdotsabove-ar.medi.BaaSenInit seenDotbelowDotabove-ar.medi.BaaSenInit seenThreedotsbelow-ar.medi.BaaSenInit sheenThreedotsbelow-ar.medi.BaaSenInit]; @aSen.medi.PreYaa = [sheenDotbelow-ar.medi.PreYaa seenTwodotsverticalabove-ar.medi.PreYaa seen-ar.medi.PreYaa seenVinvertedabove-ar.medi.PreYaa seenFourabove-ar.medi.PreYaa sheen-ar.medi.PreYaa seenTahTwodotshorizontalabove-ar.medi.PreYaa seenFourdotsabove-ar.medi.PreYaa seenDotbelowDotabove-ar.medi.PreYaa seenThreedotsbelow-ar.medi.PreYaa sheenThreedotsbelow-ar.medi.PreYaa]; @aTaa.init.YaaBari = [zah-ar.init.YaaBari tah-ar.init.YaaBari tahThreedots-ar.init.YaaBari]; @aWaw.fina.LamWawFina = [ve-ar.fina.LamWawFina wawHamzaabove-ar.fina.LamWawFina wawTwodots-ar.fina.LamWawFina wawDotabove-ar.fina.LamWawFina wawTwoabove-ar.fina.LamWawFina oe-ar.fina.LamWawFina u-ar.fina.LamWawFina wawring-ar.fina.LamWawFina kirghizoe-ar.fina.LamWawFina yu-ar.fina.LamWawFina kirghizyu-ar.fina.LamWawFina wawThreeAbove-ar.fina.LamWawFina waw-ar.fina.LamWawFina]; @aYaa.fina.BaaBaaYaa = [yehFarsiFourbelow-ar.fina.BaaBaaYaa yehThreedotsbelow-ar.fina.BaaBaaYaa yehFarsiTwoabove-ar.fina.BaaBaaYaa yehFarsiThreedotsabove-ar.fina.BaaBaaYaa yehFarsiVinverted-ar.fina.BaaBaaYaa yehFarsiTwodotsabove-ar.fina.BaaBaaYaa e-ar.fina.BaaBaaYaa alefMaksura-ar.fina.BaaBaaYaa yehFarsiThreeabove-ar.fina.BaaBaaYaa yehTail-ar.fina.BaaBaaYaa yehFarsi-ar.fina.BaaBaaYaa yehHamzaabove-ar.fina.BaaBaaYaa yehKashmiri-ar.fina.BaaBaaYaa yeh-ar.fina.BaaBaaYaa yehVabove-ar.fina.BaaBaaYaa]; @aYaa.fina.BaaYaaFina = [yehFarsiFourbelow-ar.fina.BaaYaaFina yehThreedotsbelow-ar.fina.BaaYaaFina yehFarsiTwoabove-ar.fina.BaaYaaFina yehFarsiThreedotsabove-ar.fina.BaaYaaFina yehFarsiVinverted-ar.fina.BaaYaaFina yehFarsiTwodotsabove-ar.fina.BaaYaaFina e-ar.fina.BaaYaaFina alefMaksura-ar.fina.BaaYaaFina yehFarsiThreeabove-ar.fina.BaaYaaFina yehTail-ar.fina.BaaYaaFina yehFarsi-ar.fina.BaaYaaFina yehHamzaabove-ar.fina.BaaYaaFina yehKashmiri-ar.fina.BaaYaaFina yeh-ar.fina.BaaYaaFina yehVabove-ar.fina.BaaYaaFina]; @aYaa.fina.FaaYaaFina = [yehFarsiFourbelow-ar.fina.FaaYaaFina yehThreedotsbelow-ar.fina.FaaYaaFina yehFarsiTwoabove-ar.fina.FaaYaaFina yehFarsiThreedotsabove-ar.fina.FaaYaaFina yehFarsiVinverted-ar.fina.FaaYaaFina yehFarsiTwodotsabove-ar.fina.FaaYaaFina e-ar.fina.FaaYaaFina alefMaksura-ar.fina.FaaYaaFina yehFarsiThreeabove-ar.fina.FaaYaaFina yehTail-ar.fina.FaaYaaFina yehFarsi-ar.fina.FaaYaaFina yehHamzaabove-ar.fina.FaaYaaFina yehKashmiri-ar.fina.FaaYaaFina yeh-ar.fina.FaaYaaFina yehVabove-ar.fina.FaaYaaFina]; @aYaa.fina.KafYaaFina = [yehFarsiFourbelow-ar.fina.KafYaaFina yehThreedotsbelow-ar.fina.KafYaaFina yehFarsiTwoabove-ar.fina.KafYaaFina yehFarsiThreedotsabove-ar.fina.KafYaaFina yehFarsiVinverted-ar.fina.KafYaaFina yehFarsiTwodotsabove-ar.fina.KafYaaFina e-ar.fina.KafYaaFina alefMaksura-ar.fina.KafYaaFina yehFarsiThreeabove-ar.fina.KafYaaFina yehTail-ar.fina.KafYaaFina yehFarsi-ar.fina.KafYaaFina yehHamzaabove-ar.fina.KafYaaFina yehKashmiri-ar.fina.KafYaaFina yeh-ar.fina.KafYaaFina yehVabove-ar.fina.KafYaaFina]; @aYaa.fina.KafYaaIsol = [yehFarsiFourbelow-ar.fina.KafYaaIsol yehThreedotsbelow-ar.fina.KafYaaIsol yehFarsiTwoabove-ar.fina.KafYaaIsol yehFarsiThreedotsabove-ar.fina.KafYaaIsol yehFarsiVinverted-ar.fina.KafYaaIsol yehFarsiTwodotsabove-ar.fina.KafYaaIsol e-ar.fina.KafYaaIsol alefMaksura-ar.fina.KafYaaIsol yehFarsiThreeabove-ar.fina.KafYaaIsol yehTail-ar.fina.KafYaaIsol yehFarsi-ar.fina.KafYaaIsol yehHamzaabove-ar.fina.KafYaaIsol yehKashmiri-ar.fina.KafYaaIsol yeh-ar.fina.KafYaaIsol yehVabove-ar.fina.KafYaaIsol]; @aYaa.fina.LamYaaFina = [yehFarsiFourbelow-ar.fina.LamYaaFina yehThreedotsbelow-ar.fina.LamYaaFina yehFarsiTwoabove-ar.fina.LamYaaFina yehFarsiThreedotsabove-ar.fina.LamYaaFina yehFarsiVinverted-ar.fina.LamYaaFina yehFarsiTwodotsabove-ar.fina.LamYaaFina e-ar.fina.LamYaaFina alefMaksura-ar.fina.LamYaaFina yehFarsiThreeabove-ar.fina.LamYaaFina yehTail-ar.fina.LamYaaFina yehFarsi-ar.fina.LamYaaFina yehHamzaabove-ar.fina.LamYaaFina yehKashmiri-ar.fina.LamYaaFina yeh-ar.fina.LamYaaFina yehVabove-ar.fina.LamYaaFina]; @aYaa.fina.PostTooth = [yehFarsiFourbelow-ar.fina.PostTooth yehThreedotsbelow-ar.fina.PostTooth yehFarsiTwoabove-ar.fina.PostTooth yehFarsiThreedotsabove-ar.fina.PostTooth yehFarsiVinverted-ar.fina.PostTooth yehFarsiTwodotsabove-ar.fina.PostTooth e-ar.fina.PostTooth alefMaksura-ar.fina.PostTooth yehFarsiThreeabove-ar.fina.PostTooth yehTail-ar.fina.PostTooth yehFarsi-ar.fina.PostTooth yehHamzaabove-ar.fina.PostTooth yehKashmiri-ar.fina.PostTooth yeh-ar.fina.PostTooth yehVabove-ar.fina.PostTooth]; @aYaaBari.fina.PostTooth = [yehbarreeThreeabove-ar.fina.PostTooth yehbarreeTwoabove-ar.fina.PostTooth yehbarree-ar.fina.PostTooth]; @aYaaBari.fina.PostToothFina = [yehbarreeThreeabove-ar.fina.PostToothFina yehbarreeTwoabove-ar.fina.PostToothFina yehbarree-ar.fina.PostToothFina]; @aYaaBari.fina.PostAscender = [yehbarreeThreeabove-ar.fina.PostAscender yehbarreeTwoabove-ar.fina.PostAscender yehbarree-ar.fina.PostAscender]; @aYaaBari.fina.PostAyn = [yehbarreeThreeabove-ar.fina.PostAyn yehbarreeTwoabove-ar.fina.PostAyn yehbarree-ar.fina.PostAyn]; @aAlf.isol.LowHamza = [alefHamzabelow-ar.LowHamza alefWavyhamzabelow-ar.LowHamza]; @aBaa.init.LD = [beheh-ar.init.LD noonThreedotsabove-ar.init.LD peh-ar.init.LD beeh-ar.init.LD beh-ar.init.LD noonTwodotsbelow-ar.init.LD yehFarsiVinverted-ar.init.LD yehFarsiTwodotsabove-ar.init.LD yehFarsiThreedotsabove-ar.init.LD yehFarsiFourbelow-ar.init.LD yehFarsiThreeabove-ar.init.LD yehFarsiTwoabove-ar.init.LD yehFarsi-ar.init.LD yeh-ar.init.LD yehVabove-ar.init.LD behThreedotsupabove-ar.init.LD behThreedotshorizontalbelow-ar.init.LD tehThreedotsupbelow-ar.init.LD behThreedotsupbelow-ar.init.LD behVinvertedbelow-ar.init.LD behVbelow-ar.init.LD behTwodotsbelowDotabove-ar.init.LD noonDotbelow-ar.init.LD yehThreedotsbelow-ar.init.LD e-ar.init.LD]; @aBaa.init.BaaRaaIsolLD = [beheh-ar.init.BaaRaaIsolLD noonThreedotsabove-ar.init.BaaRaaIsolLD peh-ar.init.BaaRaaIsolLD beeh-ar.init.BaaRaaIsolLD beh-ar.init.BaaRaaIsolLD noonTwodotsbelow-ar.init.BaaRaaIsolLD yehFarsiVinverted-ar.init.BaaRaaIsolLD yehFarsiTwodotsabove-ar.init.BaaRaaIsolLD yehFarsiThreedotsabove-ar.init.BaaRaaIsolLD yehFarsiFourbelow-ar.init.BaaRaaIsolLD yehFarsiThreeabove-ar.init.BaaRaaIsolLD yehFarsiTwoabove-ar.init.BaaRaaIsolLD yehFarsi-ar.init.BaaRaaIsolLD yeh-ar.init.BaaRaaIsolLD yehVabove-ar.init.BaaRaaIsolLD behThreedotsupabove-ar.init.BaaRaaIsolLD behThreedotshorizontalbelow-ar.init.BaaRaaIsolLD tehThreedotsupbelow-ar.init.BaaRaaIsolLD behThreedotsupbelow-ar.init.BaaRaaIsolLD behVinvertedbelow-ar.init.BaaRaaIsolLD behVbelow-ar.init.BaaRaaIsolLD behTwodotsbelowDotabove-ar.init.BaaRaaIsolLD noonDotbelow-ar.init.BaaRaaIsolLD yehThreedotsbelow-ar.init.BaaRaaIsolLD e-ar.init.BaaRaaIsolLD yehKashmiri-ar.init.BaaRaaIsolLD]; @aBaa.init.BaaDalLD = [beheh-ar.init.BaaDalLD noonThreedotsabove-ar.init.BaaDalLD peh-ar.init.BaaDalLD beeh-ar.init.BaaDalLD beh-ar.init.BaaDalLD noonTwodotsbelow-ar.init.BaaDalLD yehFarsiVinverted-ar.init.BaaDalLD yehFarsiTwodotsabove-ar.init.BaaDalLD yehFarsiThreedotsabove-ar.init.BaaDalLD yehFarsiFourbelow-ar.init.BaaDalLD yehFarsiThreeabove-ar.init.BaaDalLD yehFarsiTwoabove-ar.init.BaaDalLD yehFarsi-ar.init.BaaDalLD yeh-ar.init.BaaDalLD yehVabove-ar.init.BaaDalLD behThreedotsupabove-ar.init.BaaDalLD behThreedotshorizontalbelow-ar.init.BaaDalLD tehThreedotsupbelow-ar.init.BaaDalLD behThreedotsupbelow-ar.init.BaaDalLD behVinvertedbelow-ar.init.BaaDalLD behVbelow-ar.init.BaaDalLD behTwodotsbelowDotabove-ar.init.BaaDalLD noonDotbelow-ar.init.BaaDalLD yehThreedotsbelow-ar.init.BaaDalLD e-ar.init.BaaDalLD yehKashmiri-ar.init.BaaDalLD]; @aBaa.init.BaaMemHaaInitLD = [beheh-ar.init.BaaMemHaaInitLD noonThreedotsabove-ar.init.BaaMemHaaInitLD peh-ar.init.BaaMemHaaInitLD beeh-ar.init.BaaMemHaaInitLD beh-ar.init.BaaMemHaaInitLD noonTwodotsbelow-ar.init.BaaMemHaaInitLD yehFarsiVinverted-ar.init.BaaMemHaaInitLD yehFarsiTwodotsabove-ar.init.BaaMemHaaInitLD yehFarsiThreedotsabove-ar.init.BaaMemHaaInitLD yehFarsiFourbelow-ar.init.BaaMemHaaInitLD yehFarsiThreeabove-ar.init.BaaMemHaaInitLD yehFarsiTwoabove-ar.init.BaaMemHaaInitLD yehFarsi-ar.init.BaaMemHaaInitLD yeh-ar.init.BaaMemHaaInitLD yehVabove-ar.init.BaaMemHaaInitLD behThreedotsupabove-ar.init.BaaMemHaaInitLD behThreedotshorizontalbelow-ar.init.BaaMemHaaInitLD tehThreedotsupbelow-ar.init.BaaMemHaaInitLD behThreedotsupbelow-ar.init.BaaMemHaaInitLD behVinvertedbelow-ar.init.BaaMemHaaInitLD behVbelow-ar.init.BaaMemHaaInitLD behTwodotsbelowDotabove-ar.init.BaaMemHaaInitLD noonDotbelow-ar.init.BaaMemHaaInitLD yehThreedotsbelow-ar.init.BaaMemHaaInitLD e-ar.init.BaaMemHaaInitLD yehKashmiri-ar.init.BaaMemHaaInitLD]; @aBaa.init.BaaBaaYaaLD = [beheh-ar.init.BaaBaaYaaLD noonThreedotsabove-ar.init.BaaBaaYaaLD peh-ar.init.BaaBaaYaaLD beeh-ar.init.BaaBaaYaaLD beh-ar.init.BaaBaaYaaLD noonTwodotsbelow-ar.init.BaaBaaYaaLD yehFarsiVinverted-ar.init.BaaBaaYaaLD yehFarsiTwodotsabove-ar.init.BaaBaaYaaLD yehFarsiThreedotsabove-ar.init.BaaBaaYaaLD yehFarsiFourbelow-ar.init.BaaBaaYaaLD yehFarsiThreeabove-ar.init.BaaBaaYaaLD yehFarsiTwoabove-ar.init.BaaBaaYaaLD yehFarsi-ar.init.BaaBaaYaaLD yeh-ar.init.BaaBaaYaaLD yehVabove-ar.init.BaaBaaYaaLD behThreedotsupabove-ar.init.BaaBaaYaaLD behThreedotshorizontalbelow-ar.init.BaaBaaYaaLD tehThreedotsupbelow-ar.init.BaaBaaYaaLD behThreedotsupbelow-ar.init.BaaBaaYaaLD behVinvertedbelow-ar.init.BaaBaaYaaLD behVbelow-ar.init.BaaBaaYaaLD behTwodotsbelowDotabove-ar.init.BaaBaaYaaLD noonDotbelow-ar.init.BaaBaaYaaLD yehThreedotsbelow-ar.init.BaaBaaYaaLD e-ar.init.BaaBaaYaaLD yehKashmiri-ar.init.BaaBaaYaaLD]; @aBaa.init.BaaNonIsolLD = [beheh-ar.init.BaaNonIsolLD noonThreedotsabove-ar.init.BaaNonIsolLD peh-ar.init.BaaNonIsolLD beeh-ar.init.BaaNonIsolLD beh-ar.init.BaaNonIsolLD noonTwodotsbelow-ar.init.BaaNonIsolLD yehFarsiVinverted-ar.init.BaaNonIsolLD yehFarsiTwodotsabove-ar.init.BaaNonIsolLD yehFarsiThreedotsabove-ar.init.BaaNonIsolLD yehFarsiFourbelow-ar.init.BaaNonIsolLD yehFarsiThreeabove-ar.init.BaaNonIsolLD yehFarsiTwoabove-ar.init.BaaNonIsolLD yehFarsi-ar.init.BaaNonIsolLD yeh-ar.init.BaaNonIsolLD yehVabove-ar.init.BaaNonIsolLD behThreedotsupabove-ar.init.BaaNonIsolLD behThreedotshorizontalbelow-ar.init.BaaNonIsolLD tehThreedotsupbelow-ar.init.BaaNonIsolLD behThreedotsupbelow-ar.init.BaaNonIsolLD behVinvertedbelow-ar.init.BaaNonIsolLD behVbelow-ar.init.BaaNonIsolLD behTwodotsbelowDotabove-ar.init.BaaNonIsolLD noonDotbelow-ar.init.BaaNonIsolLD yehThreedotsbelow-ar.init.BaaNonIsolLD e-ar.init.BaaNonIsolLD yehKashmiri-ar.init.BaaNonIsolLD]; @aBaa.init.BaaSenInitLD = [beheh-ar.init.BaaSenInitLD noonThreedotsabove-ar.init.BaaSenInitLD peh-ar.init.BaaSenInitLD beeh-ar.init.BaaSenInitLD beh-ar.init.BaaSenInitLD noonTwodotsbelow-ar.init.BaaSenInitLD yehFarsiVinverted-ar.init.BaaSenInitLD yehFarsiTwodotsabove-ar.init.BaaSenInitLD yehFarsiThreedotsabove-ar.init.BaaSenInitLD yehFarsiFourbelow-ar.init.BaaSenInitLD yehFarsiThreeabove-ar.init.BaaSenInitLD yehFarsiTwoabove-ar.init.BaaSenInitLD yehFarsi-ar.init.BaaSenInitLD yeh-ar.init.BaaSenInitLD yehVabove-ar.init.BaaSenInitLD behThreedotsupabove-ar.init.BaaSenInitLD behThreedotshorizontalbelow-ar.init.BaaSenInitLD tehThreedotsupbelow-ar.init.BaaSenInitLD behThreedotsupbelow-ar.init.BaaSenInitLD behVinvertedbelow-ar.init.BaaSenInitLD behVbelow-ar.init.BaaSenInitLD behTwodotsbelowDotabove-ar.init.BaaSenInitLD noonDotbelow-ar.init.BaaSenInitLD yehThreedotsbelow-ar.init.BaaSenInitLD e-ar.init.BaaSenInitLD yehKashmiri-ar.init.BaaSenInitLD]; @aBaa.init.BaaMemInitLD = [beheh-ar.init.BaaMemInitLD noonThreedotsabove-ar.init.BaaMemInitLD peh-ar.init.BaaMemInitLD beeh-ar.init.BaaMemInitLD beh-ar.init.BaaMemInitLD noonTwodotsbelow-ar.init.BaaMemInitLD yehFarsiVinverted-ar.init.BaaMemInitLD yehFarsiTwodotsabove-ar.init.BaaMemInitLD yehFarsiThreedotsabove-ar.init.BaaMemInitLD yehFarsiFourbelow-ar.init.BaaMemInitLD yehFarsiThreeabove-ar.init.BaaMemInitLD yehFarsiTwoabove-ar.init.BaaMemInitLD yehFarsi-ar.init.BaaMemInitLD yeh-ar.init.BaaMemInitLD yehVabove-ar.init.BaaMemInitLD behThreedotsupabove-ar.init.BaaMemInitLD behThreedotshorizontalbelow-ar.init.BaaMemInitLD tehThreedotsupbelow-ar.init.BaaMemInitLD behThreedotsupbelow-ar.init.BaaMemInitLD behVinvertedbelow-ar.init.BaaMemInitLD behVbelow-ar.init.BaaMemInitLD behTwodotsbelowDotabove-ar.init.BaaMemInitLD noonDotbelow-ar.init.BaaMemInitLD yehThreedotsbelow-ar.init.BaaMemInitLD e-ar.init.BaaMemInitLD yehKashmiri-ar.init.BaaMemInitLD]; @aBaa.init.BaaBaaHaaInitLD = [beheh-ar.init.BaaBaaHaaInitLD noonThreedotsabove-ar.init.BaaBaaHaaInitLD peh-ar.init.BaaBaaHaaInitLD beeh-ar.init.BaaBaaHaaInitLD beh-ar.init.BaaBaaHaaInitLD noonTwodotsbelow-ar.init.BaaBaaHaaInitLD yehFarsiVinverted-ar.init.BaaBaaHaaInitLD yehFarsiTwodotsabove-ar.init.BaaBaaHaaInitLD yehFarsiThreedotsabove-ar.init.BaaBaaHaaInitLD yehFarsiFourbelow-ar.init.BaaBaaHaaInitLD yehFarsiThreeabove-ar.init.BaaBaaHaaInitLD yehFarsiTwoabove-ar.init.BaaBaaHaaInitLD yehFarsi-ar.init.BaaBaaHaaInitLD yeh-ar.init.BaaBaaHaaInitLD yehVabove-ar.init.BaaBaaHaaInitLD behThreedotsupabove-ar.init.BaaBaaHaaInitLD behThreedotshorizontalbelow-ar.init.BaaBaaHaaInitLD tehThreedotsupbelow-ar.init.BaaBaaHaaInitLD behThreedotsupbelow-ar.init.BaaBaaHaaInitLD behVinvertedbelow-ar.init.BaaBaaHaaInitLD behVbelow-ar.init.BaaBaaHaaInitLD behTwodotsbelowDotabove-ar.init.BaaBaaHaaInitLD noonDotbelow-ar.init.BaaBaaHaaInitLD yehThreedotsbelow-ar.init.BaaBaaHaaInitLD e-ar.init.BaaBaaHaaInitLD yehKashmiri-ar.init.BaaBaaHaaInitLD]; @aBaa.init.BaaBaaHehLD = [beheh-ar.init.BaaBaaHehLD noonThreedotsabove-ar.init.BaaBaaHehLD peh-ar.init.BaaBaaHehLD beeh-ar.init.BaaBaaHehLD beh-ar.init.BaaBaaHehLD noonTwodotsbelow-ar.init.BaaBaaHehLD yehFarsiVinverted-ar.init.BaaBaaHehLD yehFarsiTwodotsabove-ar.init.BaaBaaHehLD yehFarsiThreedotsabove-ar.init.BaaBaaHehLD yehFarsiFourbelow-ar.init.BaaBaaHehLD yehFarsiThreeabove-ar.init.BaaBaaHehLD yehFarsiTwoabove-ar.init.BaaBaaHehLD yehFarsi-ar.init.BaaBaaHehLD yeh-ar.init.BaaBaaHehLD yehVabove-ar.init.BaaBaaHehLD behThreedotsupabove-ar.init.BaaBaaHehLD behThreedotshorizontalbelow-ar.init.BaaBaaHehLD tehThreedotsupbelow-ar.init.BaaBaaHehLD behThreedotsupbelow-ar.init.BaaBaaHehLD behVinvertedbelow-ar.init.BaaBaaHehLD behVbelow-ar.init.BaaBaaHehLD behTwodotsbelowDotabove-ar.init.BaaBaaHehLD noonDotbelow-ar.init.BaaBaaHehLD yehThreedotsbelow-ar.init.BaaBaaHehLD e-ar.init.BaaBaaHehLD yehKashmiri-ar.init.BaaBaaHehLD]; @aBaa.init.BaaBaaIsolLD = [beheh-ar.init.BaaBaaIsolLD noonThreedotsabove-ar.init.BaaBaaIsolLD peh-ar.init.BaaBaaIsolLD beeh-ar.init.BaaBaaIsolLD beh-ar.init.BaaBaaIsolLD noonTwodotsbelow-ar.init.BaaBaaIsolLD yehFarsiVinverted-ar.init.BaaBaaIsolLD yehFarsiTwodotsabove-ar.init.BaaBaaIsolLD yehFarsiThreedotsabove-ar.init.BaaBaaIsolLD yehFarsiFourbelow-ar.init.BaaBaaIsolLD yehFarsiThreeabove-ar.init.BaaBaaIsolLD yehFarsiTwoabove-ar.init.BaaBaaIsolLD yehFarsi-ar.init.BaaBaaIsolLD yeh-ar.init.BaaBaaIsolLD yehVabove-ar.init.BaaBaaIsolLD behThreedotsupabove-ar.init.BaaBaaIsolLD behThreedotshorizontalbelow-ar.init.BaaBaaIsolLD tehThreedotsupbelow-ar.init.BaaBaaIsolLD behThreedotsupbelow-ar.init.BaaBaaIsolLD behVinvertedbelow-ar.init.BaaBaaIsolLD behVbelow-ar.init.BaaBaaIsolLD behTwodotsbelowDotabove-ar.init.BaaBaaIsolLD noonDotbelow-ar.init.BaaBaaIsolLD yehThreedotsbelow-ar.init.BaaBaaIsolLD e-ar.init.BaaBaaIsolLD yehKashmiri-ar.init.BaaBaaIsolLD]; @aBaa.init.BaaBaaMemInitLD = [beheh-ar.init.BaaBaaMemInitLD noonThreedotsabove-ar.init.BaaBaaMemInitLD peh-ar.init.BaaBaaMemInitLD beeh-ar.init.BaaBaaMemInitLD beh-ar.init.BaaBaaMemInitLD noonTwodotsbelow-ar.init.BaaBaaMemInitLD yehFarsiVinverted-ar.init.BaaBaaMemInitLD yehFarsiTwodotsabove-ar.init.BaaBaaMemInitLD yehFarsiThreedotsabove-ar.init.BaaBaaMemInitLD yehFarsiFourbelow-ar.init.BaaBaaMemInitLD yehFarsiThreeabove-ar.init.BaaBaaMemInitLD yehFarsiTwoabove-ar.init.BaaBaaMemInitLD yehFarsi-ar.init.BaaBaaMemInitLD yeh-ar.init.BaaBaaMemInitLD yehVabove-ar.init.BaaBaaMemInitLD behThreedotsupabove-ar.init.BaaBaaMemInitLD behThreedotshorizontalbelow-ar.init.BaaBaaMemInitLD tehThreedotsupbelow-ar.init.BaaBaaMemInitLD behThreedotsupbelow-ar.init.BaaBaaMemInitLD behVinvertedbelow-ar.init.BaaBaaMemInitLD behVbelow-ar.init.BaaBaaMemInitLD behTwodotsbelowDotabove-ar.init.BaaBaaMemInitLD noonDotbelow-ar.init.BaaBaaMemInitLD yehThreedotsbelow-ar.init.BaaBaaMemInitLD e-ar.init.BaaBaaMemInitLD yehKashmiri-ar.init.BaaBaaMemInitLD]; @aBaa.init.BaaSenAltInitLD = [beheh-ar.init.BaaSenAltInitLD noonThreedotsabove-ar.init.BaaSenAltInitLD peh-ar.init.BaaSenAltInitLD beeh-ar.init.BaaSenAltInitLD beh-ar.init.BaaSenAltInitLD noonTwodotsbelow-ar.init.BaaSenAltInitLD yehFarsiVinverted-ar.init.BaaSenAltInitLD yehFarsiTwodotsabove-ar.init.BaaSenAltInitLD yehFarsiThreedotsabove-ar.init.BaaSenAltInitLD yehFarsiFourbelow-ar.init.BaaSenAltInitLD yehFarsiThreeabove-ar.init.BaaSenAltInitLD yehFarsiTwoabove-ar.init.BaaSenAltInitLD yehFarsi-ar.init.BaaSenAltInitLD yeh-ar.init.BaaSenAltInitLD yehVabove-ar.init.BaaSenAltInitLD behThreedotsupabove-ar.init.BaaSenAltInitLD behThreedotshorizontalbelow-ar.init.BaaSenAltInitLD tehThreedotsupbelow-ar.init.BaaSenAltInitLD behThreedotsupbelow-ar.init.BaaSenAltInitLD behVinvertedbelow-ar.init.BaaSenAltInitLD behVbelow-ar.init.BaaSenAltInitLD behTwodotsbelowDotabove-ar.init.BaaSenAltInitLD noonDotbelow-ar.init.BaaSenAltInitLD yehThreedotsbelow-ar.init.BaaSenAltInitLD e-ar.init.BaaSenAltInitLD yehKashmiri-ar.init.BaaSenAltInitLD]; @aBaa.init.BaaHaaInitLD = [beheh-ar.init.BaaHaaInitLD noonThreedotsabove-ar.init.BaaHaaInitLD peh-ar.init.BaaHaaInitLD beeh-ar.init.BaaHaaInitLD beh-ar.init.BaaHaaInitLD noonTwodotsbelow-ar.init.BaaHaaInitLD yehFarsiVinverted-ar.init.BaaHaaInitLD yehFarsiTwodotsabove-ar.init.BaaHaaInitLD yehFarsiThreedotsabove-ar.init.BaaHaaInitLD yehFarsiFourbelow-ar.init.BaaHaaInitLD yehFarsiThreeabove-ar.init.BaaHaaInitLD yehFarsiTwoabove-ar.init.BaaHaaInitLD yehFarsi-ar.init.BaaHaaInitLD yeh-ar.init.BaaHaaInitLD yehVabove-ar.init.BaaHaaInitLD behThreedotsupabove-ar.init.BaaHaaInitLD behThreedotshorizontalbelow-ar.init.BaaHaaInitLD tehThreedotsupbelow-ar.init.BaaHaaInitLD behThreedotsupbelow-ar.init.BaaHaaInitLD behVinvertedbelow-ar.init.BaaHaaInitLD behVbelow-ar.init.BaaHaaInitLD behTwodotsbelowDotabove-ar.init.BaaHaaInitLD noonDotbelow-ar.init.BaaHaaInitLD yehThreedotsbelow-ar.init.BaaHaaInitLD e-ar.init.BaaHaaInitLD yehKashmiri-ar.init.BaaHaaInitLD]; @aBaa.init.BaaHaaMemInitLD = [beheh-ar.init.BaaHaaMemInitLD noonThreedotsabove-ar.init.BaaHaaMemInitLD peh-ar.init.BaaHaaMemInitLD beeh-ar.init.BaaHaaMemInitLD beh-ar.init.BaaHaaMemInitLD noonTwodotsbelow-ar.init.BaaHaaMemInitLD yehFarsiVinverted-ar.init.BaaHaaMemInitLD yehFarsiTwodotsabove-ar.init.BaaHaaMemInitLD yehFarsiThreedotsabove-ar.init.BaaHaaMemInitLD yehFarsiFourbelow-ar.init.BaaHaaMemInitLD yehFarsiThreeabove-ar.init.BaaHaaMemInitLD yehFarsiTwoabove-ar.init.BaaHaaMemInitLD yehFarsi-ar.init.BaaHaaMemInitLD yeh-ar.init.BaaHaaMemInitLD yehVabove-ar.init.BaaHaaMemInitLD behThreedotsupabove-ar.init.BaaHaaMemInitLD behThreedotshorizontalbelow-ar.init.BaaHaaMemInitLD tehThreedotsupbelow-ar.init.BaaHaaMemInitLD behThreedotsupbelow-ar.init.BaaHaaMemInitLD behVinvertedbelow-ar.init.BaaHaaMemInitLD behVbelow-ar.init.BaaHaaMemInitLD behTwodotsbelowDotabove-ar.init.BaaHaaMemInitLD noonDotbelow-ar.init.BaaHaaMemInitLD yehThreedotsbelow-ar.init.BaaHaaMemInitLD e-ar.init.BaaHaaMemInitLD yehKashmiri-ar.init.BaaHaaMemInitLD]; @aBaa.init.HighLD = [beheh-ar.init.HighLD noonThreedotsabove-ar.init.HighLD peh-ar.init.HighLD beeh-ar.init.HighLD beh-ar.init.HighLD noonTwodotsbelow-ar.init.HighLD yehFarsiVinverted-ar.init.HighLD yehFarsiTwodotsabove-ar.init.HighLD yehFarsiThreedotsabove-ar.init.HighLD yehFarsiFourbelow-ar.init.HighLD yehFarsiThreeabove-ar.init.HighLD yehFarsiTwoabove-ar.init.HighLD yehFarsi-ar.init.HighLD yeh-ar.init.HighLD yehVabove-ar.init.HighLD behThreedotsupabove-ar.init.HighLD behThreedotshorizontalbelow-ar.init.HighLD tehThreedotsupbelow-ar.init.HighLD behThreedotsupbelow-ar.init.HighLD behVinvertedbelow-ar.init.HighLD behVbelow-ar.init.HighLD behTwodotsbelowDotabove-ar.init.HighLD noonDotbelow-ar.init.HighLD yehThreedotsbelow-ar.init.HighLD e-ar.init.HighLD yehKashmiri-ar.init.HighLD]; @aBaa.init.WideLD = [beheh-ar.init.WideLD noonThreedotsabove-ar.init.WideLD peh-ar.init.WideLD beeh-ar.init.WideLD beh-ar.init.WideLD noonTwodotsbelow-ar.init.WideLD yehFarsiVinverted-ar.init.WideLD yehFarsiTwodotsabove-ar.init.WideLD yehFarsiThreedotsabove-ar.init.WideLD yehFarsiFourbelow-ar.init.WideLD yehFarsiThreeabove-ar.init.WideLD yehFarsiTwoabove-ar.init.WideLD yehFarsi-ar.init.WideLD yeh-ar.init.WideLD yehVabove-ar.init.WideLD behThreedotsupabove-ar.init.WideLD behThreedotshorizontalbelow-ar.init.WideLD tehThreedotsupbelow-ar.init.WideLD behThreedotsupbelow-ar.init.WideLD behVinvertedbelow-ar.init.WideLD behVbelow-ar.init.WideLD behTwodotsbelowDotabove-ar.init.WideLD noonDotbelow-ar.init.WideLD yehThreedotsbelow-ar.init.WideLD e-ar.init.WideLD yehKashmiri-ar.init.WideLD]; @aBaa.init.BaaYaaIsolLD = [beheh-ar.init.BaaYaaIsolLD noonThreedotsabove-ar.init.BaaYaaIsolLD peh-ar.init.BaaYaaIsolLD beeh-ar.init.BaaYaaIsolLD beh-ar.init.BaaYaaIsolLD noonTwodotsbelow-ar.init.BaaYaaIsolLD yehFarsiVinverted-ar.init.BaaYaaIsolLD yehFarsiTwodotsabove-ar.init.BaaYaaIsolLD yehFarsiThreedotsabove-ar.init.BaaYaaIsolLD yehFarsiFourbelow-ar.init.BaaYaaIsolLD yehFarsiThreeabove-ar.init.BaaYaaIsolLD yehFarsiTwoabove-ar.init.BaaYaaIsolLD yehFarsi-ar.init.BaaYaaIsolLD yeh-ar.init.BaaYaaIsolLD yehVabove-ar.init.BaaYaaIsolLD behThreedotsupabove-ar.init.BaaYaaIsolLD behThreedotshorizontalbelow-ar.init.BaaYaaIsolLD tehThreedotsupbelow-ar.init.BaaYaaIsolLD behThreedotsupbelow-ar.init.BaaYaaIsolLD behVinvertedbelow-ar.init.BaaYaaIsolLD behVbelow-ar.init.BaaYaaIsolLD behTwodotsbelowDotabove-ar.init.BaaYaaIsolLD noonDotbelow-ar.init.BaaYaaIsolLD yehThreedotsbelow-ar.init.BaaYaaIsolLD e-ar.init.BaaYaaIsolLD yehKashmiri-ar.init.BaaYaaIsolLD]; @aBaa.init.BaaMemIsolLD = [beheh-ar.init.BaaMemIsolLD noonThreedotsabove-ar.init.BaaMemIsolLD peh-ar.init.BaaMemIsolLD beeh-ar.init.BaaMemIsolLD beh-ar.init.BaaMemIsolLD noonTwodotsbelow-ar.init.BaaMemIsolLD yehFarsiVinverted-ar.init.BaaMemIsolLD yehFarsiTwodotsabove-ar.init.BaaMemIsolLD yehFarsiThreedotsabove-ar.init.BaaMemIsolLD yehFarsiFourbelow-ar.init.BaaMemIsolLD yehFarsiThreeabove-ar.init.BaaMemIsolLD yehFarsiTwoabove-ar.init.BaaMemIsolLD yehFarsi-ar.init.BaaMemIsolLD yeh-ar.init.BaaMemIsolLD yehVabove-ar.init.BaaMemIsolLD behThreedotsupabove-ar.init.BaaMemIsolLD behThreedotshorizontalbelow-ar.init.BaaMemIsolLD tehThreedotsupbelow-ar.init.BaaMemIsolLD behThreedotsupbelow-ar.init.BaaMemIsolLD behVinvertedbelow-ar.init.BaaMemIsolLD behVbelow-ar.init.BaaMemIsolLD behTwodotsbelowDotabove-ar.init.BaaMemIsolLD noonDotbelow-ar.init.BaaMemIsolLD yehThreedotsbelow-ar.init.BaaMemIsolLD e-ar.init.BaaMemIsolLD yehKashmiri-ar.init.BaaMemIsolLD]; @aBaa.init.BaaHehInitLD = [beheh-ar.init.BaaHehInitLD noonThreedotsabove-ar.init.BaaHehInitLD peh-ar.init.BaaHehInitLD beeh-ar.init.BaaHehInitLD beh-ar.init.BaaHehInitLD noonTwodotsbelow-ar.init.BaaHehInitLD yehFarsiVinverted-ar.init.BaaHehInitLD yehFarsiTwodotsabove-ar.init.BaaHehInitLD yehFarsiThreedotsabove-ar.init.BaaHehInitLD yehFarsiFourbelow-ar.init.BaaHehInitLD yehFarsiThreeabove-ar.init.BaaHehInitLD yehFarsiTwoabove-ar.init.BaaHehInitLD yehFarsi-ar.init.BaaHehInitLD yeh-ar.init.BaaHehInitLD yehVabove-ar.init.BaaHehInitLD behThreedotsupabove-ar.init.BaaHehInitLD behThreedotshorizontalbelow-ar.init.BaaHehInitLD tehThreedotsupbelow-ar.init.BaaHehInitLD behThreedotsupbelow-ar.init.BaaHehInitLD behVinvertedbelow-ar.init.BaaHehInitLD behVbelow-ar.init.BaaHehInitLD behTwodotsbelowDotabove-ar.init.BaaHehInitLD noonDotbelow-ar.init.BaaHehInitLD yehThreedotsbelow-ar.init.BaaHehInitLD e-ar.init.BaaHehInitLD yehKashmiri-ar.init.BaaHehInitLD]; @aBaaDotBelow = [beheh-ar.init noonThreedotsabove-ar.init peh-ar.init beeh-ar.init beh-ar.init noonTwodotsbelow-ar.init yehFarsiVinverted-ar.init yehFarsiTwodotsabove-ar.init yehFarsiThreedotsabove-ar.init yehFarsiFourbelow-ar.init yehFarsiThreeabove-ar.init yehFarsiTwoabove-ar.init yehFarsi-ar.init yeh-ar.init yehVabove-ar.init behThreedotsupabove-ar.init behThreedotshorizontalbelow-ar.init tehThreedotsupbelow-ar.init behThreedotsupbelow-ar.init behVinvertedbelow-ar.init behVbelow-ar.init behTwodotsbelowDotabove-ar.init noonDotbelow-ar.init yehThreedotsbelow-ar.init e-ar.init beheh-ar.init.BaaRaaIsol noonThreedotsabove-ar.init.BaaRaaIsol peh-ar.init.BaaRaaIsol beeh-ar.init.BaaRaaIsol beh-ar.init.BaaRaaIsol noonTwodotsbelow-ar.init.BaaRaaIsol yehFarsiVinverted-ar.init.BaaRaaIsol yehFarsiTwodotsabove-ar.init.BaaRaaIsol yehFarsiThreedotsabove-ar.init.BaaRaaIsol yehFarsiFourbelow-ar.init.BaaRaaIsol yehFarsiThreeabove-ar.init.BaaRaaIsol yehFarsiTwoabove-ar.init.BaaRaaIsol yehFarsi-ar.init.BaaRaaIsol yeh-ar.init.BaaRaaIsol yehVabove-ar.init.BaaRaaIsol behThreedotsupabove-ar.init.BaaRaaIsol behThreedotshorizontalbelow-ar.init.BaaRaaIsol tehThreedotsupbelow-ar.init.BaaRaaIsol behThreedotsupbelow-ar.init.BaaRaaIsol behVinvertedbelow-ar.init.BaaRaaIsol behVbelow-ar.init.BaaRaaIsol behTwodotsbelowDotabove-ar.init.BaaRaaIsol noonDotbelow-ar.init.BaaRaaIsol yehThreedotsbelow-ar.init.BaaRaaIsol e-ar.init.BaaRaaIsol yehKashmiri-ar.init.BaaRaaIsol beheh-ar.init.BaaDal noonThreedotsabove-ar.init.BaaDal peh-ar.init.BaaDal beeh-ar.init.BaaDal beh-ar.init.BaaDal noonTwodotsbelow-ar.init.BaaDal yehFarsiVinverted-ar.init.BaaDal yehFarsiTwodotsabove-ar.init.BaaDal yehFarsiThreedotsabove-ar.init.BaaDal yehFarsiFourbelow-ar.init.BaaDal yehFarsiThreeabove-ar.init.BaaDal yehFarsiTwoabove-ar.init.BaaDal yehFarsi-ar.init.BaaDal yeh-ar.init.BaaDal yehVabove-ar.init.BaaDal behThreedotsupabove-ar.init.BaaDal behThreedotshorizontalbelow-ar.init.BaaDal tehThreedotsupbelow-ar.init.BaaDal behThreedotsupbelow-ar.init.BaaDal behVinvertedbelow-ar.init.BaaDal behVbelow-ar.init.BaaDal behTwodotsbelowDotabove-ar.init.BaaDal noonDotbelow-ar.init.BaaDal yehThreedotsbelow-ar.init.BaaDal e-ar.init.BaaDal yehKashmiri-ar.init.BaaDal beheh-ar.init.BaaMemHaaInit noonThreedotsabove-ar.init.BaaMemHaaInit peh-ar.init.BaaMemHaaInit beeh-ar.init.BaaMemHaaInit beh-ar.init.BaaMemHaaInit noonTwodotsbelow-ar.init.BaaMemHaaInit yehFarsiVinverted-ar.init.BaaMemHaaInit yehFarsiTwodotsabove-ar.init.BaaMemHaaInit yehFarsiThreedotsabove-ar.init.BaaMemHaaInit yehFarsiFourbelow-ar.init.BaaMemHaaInit yehFarsiThreeabove-ar.init.BaaMemHaaInit yehFarsiTwoabove-ar.init.BaaMemHaaInit yehFarsi-ar.init.BaaMemHaaInit yeh-ar.init.BaaMemHaaInit yehVabove-ar.init.BaaMemHaaInit behThreedotsupabove-ar.init.BaaMemHaaInit behThreedotshorizontalbelow-ar.init.BaaMemHaaInit tehThreedotsupbelow-ar.init.BaaMemHaaInit behThreedotsupbelow-ar.init.BaaMemHaaInit behVinvertedbelow-ar.init.BaaMemHaaInit behVbelow-ar.init.BaaMemHaaInit behTwodotsbelowDotabove-ar.init.BaaMemHaaInit noonDotbelow-ar.init.BaaMemHaaInit yehThreedotsbelow-ar.init.BaaMemHaaInit e-ar.init.BaaMemHaaInit yehKashmiri-ar.init.BaaMemHaaInit beheh-ar.init.BaaBaaYaa noonThreedotsabove-ar.init.BaaBaaYaa peh-ar.init.BaaBaaYaa beeh-ar.init.BaaBaaYaa beh-ar.init.BaaBaaYaa noonTwodotsbelow-ar.init.BaaBaaYaa yehFarsiVinverted-ar.init.BaaBaaYaa yehFarsiTwodotsabove-ar.init.BaaBaaYaa yehFarsiThreedotsabove-ar.init.BaaBaaYaa yehFarsiFourbelow-ar.init.BaaBaaYaa yehFarsiThreeabove-ar.init.BaaBaaYaa yehFarsiTwoabove-ar.init.BaaBaaYaa yehFarsi-ar.init.BaaBaaYaa yeh-ar.init.BaaBaaYaa yehVabove-ar.init.BaaBaaYaa behThreedotsupabove-ar.init.BaaBaaYaa behThreedotshorizontalbelow-ar.init.BaaBaaYaa tehThreedotsupbelow-ar.init.BaaBaaYaa behThreedotsupbelow-ar.init.BaaBaaYaa behVinvertedbelow-ar.init.BaaBaaYaa behVbelow-ar.init.BaaBaaYaa behTwodotsbelowDotabove-ar.init.BaaBaaYaa noonDotbelow-ar.init.BaaBaaYaa yehThreedotsbelow-ar.init.BaaBaaYaa e-ar.init.BaaBaaYaa yehKashmiri-ar.init.BaaBaaYaa beheh-ar.init.BaaNonIsol noonThreedotsabove-ar.init.BaaNonIsol peh-ar.init.BaaNonIsol beeh-ar.init.BaaNonIsol beh-ar.init.BaaNonIsol noonTwodotsbelow-ar.init.BaaNonIsol yehFarsiVinverted-ar.init.BaaNonIsol yehFarsiTwodotsabove-ar.init.BaaNonIsol yehFarsiThreedotsabove-ar.init.BaaNonIsol yehFarsiFourbelow-ar.init.BaaNonIsol yehFarsiThreeabove-ar.init.BaaNonIsol yehFarsiTwoabove-ar.init.BaaNonIsol yehFarsi-ar.init.BaaNonIsol yeh-ar.init.BaaNonIsol yehVabove-ar.init.BaaNonIsol behThreedotsupabove-ar.init.BaaNonIsol behThreedotshorizontalbelow-ar.init.BaaNonIsol tehThreedotsupbelow-ar.init.BaaNonIsol behThreedotsupbelow-ar.init.BaaNonIsol behVinvertedbelow-ar.init.BaaNonIsol behVbelow-ar.init.BaaNonIsol behTwodotsbelowDotabove-ar.init.BaaNonIsol noonDotbelow-ar.init.BaaNonIsol yehThreedotsbelow-ar.init.BaaNonIsol e-ar.init.BaaNonIsol yehKashmiri-ar.init.BaaNonIsol beheh-ar.init.BaaSenInit noonThreedotsabove-ar.init.BaaSenInit peh-ar.init.BaaSenInit beeh-ar.init.BaaSenInit beh-ar.init.BaaSenInit noonTwodotsbelow-ar.init.BaaSenInit yehFarsiVinverted-ar.init.BaaSenInit yehFarsiTwodotsabove-ar.init.BaaSenInit yehFarsiThreedotsabove-ar.init.BaaSenInit yehFarsiFourbelow-ar.init.BaaSenInit yehFarsiThreeabove-ar.init.BaaSenInit yehFarsiTwoabove-ar.init.BaaSenInit yehFarsi-ar.init.BaaSenInit yeh-ar.init.BaaSenInit yehVabove-ar.init.BaaSenInit behThreedotsupabove-ar.init.BaaSenInit behThreedotshorizontalbelow-ar.init.BaaSenInit tehThreedotsupbelow-ar.init.BaaSenInit behThreedotsupbelow-ar.init.BaaSenInit behVinvertedbelow-ar.init.BaaSenInit behVbelow-ar.init.BaaSenInit behTwodotsbelowDotabove-ar.init.BaaSenInit noonDotbelow-ar.init.BaaSenInit yehThreedotsbelow-ar.init.BaaSenInit e-ar.init.BaaSenInit yehKashmiri-ar.init.BaaSenInit beheh-ar.init.BaaMemInit noonThreedotsabove-ar.init.BaaMemInit peh-ar.init.BaaMemInit beeh-ar.init.BaaMemInit beh-ar.init.BaaMemInit noonTwodotsbelow-ar.init.BaaMemInit yehFarsiVinverted-ar.init.BaaMemInit yehFarsiTwodotsabove-ar.init.BaaMemInit yehFarsiThreedotsabove-ar.init.BaaMemInit yehFarsiFourbelow-ar.init.BaaMemInit yehFarsiThreeabove-ar.init.BaaMemInit yehFarsiTwoabove-ar.init.BaaMemInit yehFarsi-ar.init.BaaMemInit yeh-ar.init.BaaMemInit yehVabove-ar.init.BaaMemInit behThreedotsupabove-ar.init.BaaMemInit behThreedotshorizontalbelow-ar.init.BaaMemInit tehThreedotsupbelow-ar.init.BaaMemInit behThreedotsupbelow-ar.init.BaaMemInit behVinvertedbelow-ar.init.BaaMemInit behVbelow-ar.init.BaaMemInit behTwodotsbelowDotabove-ar.init.BaaMemInit noonDotbelow-ar.init.BaaMemInit yehThreedotsbelow-ar.init.BaaMemInit e-ar.init.BaaMemInit yehKashmiri-ar.init.BaaMemInit beheh-ar.init.BaaBaaHaaInit noonThreedotsabove-ar.init.BaaBaaHaaInit peh-ar.init.BaaBaaHaaInit beeh-ar.init.BaaBaaHaaInit beh-ar.init.BaaBaaHaaInit noonTwodotsbelow-ar.init.BaaBaaHaaInit yehFarsiVinverted-ar.init.BaaBaaHaaInit yehFarsiTwodotsabove-ar.init.BaaBaaHaaInit yehFarsiThreedotsabove-ar.init.BaaBaaHaaInit yehFarsiFourbelow-ar.init.BaaBaaHaaInit yehFarsiThreeabove-ar.init.BaaBaaHaaInit yehFarsiTwoabove-ar.init.BaaBaaHaaInit yehFarsi-ar.init.BaaBaaHaaInit yeh-ar.init.BaaBaaHaaInit yehVabove-ar.init.BaaBaaHaaInit behThreedotsupabove-ar.init.BaaBaaHaaInit behThreedotshorizontalbelow-ar.init.BaaBaaHaaInit tehThreedotsupbelow-ar.init.BaaBaaHaaInit behThreedotsupbelow-ar.init.BaaBaaHaaInit behVinvertedbelow-ar.init.BaaBaaHaaInit behVbelow-ar.init.BaaBaaHaaInit behTwodotsbelowDotabove-ar.init.BaaBaaHaaInit noonDotbelow-ar.init.BaaBaaHaaInit yehThreedotsbelow-ar.init.BaaBaaHaaInit e-ar.init.BaaBaaHaaInit yehKashmiri-ar.init.BaaBaaHaaInit beheh-ar.init.BaaBaaHeh noonThreedotsabove-ar.init.BaaBaaHeh peh-ar.init.BaaBaaHeh beeh-ar.init.BaaBaaHeh beh-ar.init.BaaBaaHeh noonTwodotsbelow-ar.init.BaaBaaHeh yehFarsiVinverted-ar.init.BaaBaaHeh yehFarsiTwodotsabove-ar.init.BaaBaaHeh yehFarsiThreedotsabove-ar.init.BaaBaaHeh yehFarsiFourbelow-ar.init.BaaBaaHeh yehFarsiThreeabove-ar.init.BaaBaaHeh yehFarsiTwoabove-ar.init.BaaBaaHeh yehFarsi-ar.init.BaaBaaHeh yeh-ar.init.BaaBaaHeh yehVabove-ar.init.BaaBaaHeh behThreedotsupabove-ar.init.BaaBaaHeh behThreedotshorizontalbelow-ar.init.BaaBaaHeh tehThreedotsupbelow-ar.init.BaaBaaHeh behThreedotsupbelow-ar.init.BaaBaaHeh behVinvertedbelow-ar.init.BaaBaaHeh behVbelow-ar.init.BaaBaaHeh behTwodotsbelowDotabove-ar.init.BaaBaaHeh noonDotbelow-ar.init.BaaBaaHeh yehThreedotsbelow-ar.init.BaaBaaHeh e-ar.init.BaaBaaHeh yehKashmiri-ar.init.BaaBaaHeh beheh-ar.init.BaaBaaIsol noonThreedotsabove-ar.init.BaaBaaIsol peh-ar.init.BaaBaaIsol beeh-ar.init.BaaBaaIsol beh-ar.init.BaaBaaIsol noonTwodotsbelow-ar.init.BaaBaaIsol yehFarsiVinverted-ar.init.BaaBaaIsol yehFarsiTwodotsabove-ar.init.BaaBaaIsol yehFarsiThreedotsabove-ar.init.BaaBaaIsol yehFarsiFourbelow-ar.init.BaaBaaIsol yehFarsiThreeabove-ar.init.BaaBaaIsol yehFarsiTwoabove-ar.init.BaaBaaIsol yehFarsi-ar.init.BaaBaaIsol yeh-ar.init.BaaBaaIsol yehVabove-ar.init.BaaBaaIsol behThreedotsupabove-ar.init.BaaBaaIsol behThreedotshorizontalbelow-ar.init.BaaBaaIsol tehThreedotsupbelow-ar.init.BaaBaaIsol behThreedotsupbelow-ar.init.BaaBaaIsol behVinvertedbelow-ar.init.BaaBaaIsol behVbelow-ar.init.BaaBaaIsol behTwodotsbelowDotabove-ar.init.BaaBaaIsol noonDotbelow-ar.init.BaaBaaIsol yehThreedotsbelow-ar.init.BaaBaaIsol e-ar.init.BaaBaaIsol yehKashmiri-ar.init.BaaBaaIsol beheh-ar.init.BaaBaaMemInit noonThreedotsabove-ar.init.BaaBaaMemInit peh-ar.init.BaaBaaMemInit beeh-ar.init.BaaBaaMemInit beh-ar.init.BaaBaaMemInit noonTwodotsbelow-ar.init.BaaBaaMemInit yehFarsiVinverted-ar.init.BaaBaaMemInit yehFarsiTwodotsabove-ar.init.BaaBaaMemInit yehFarsiThreedotsabove-ar.init.BaaBaaMemInit yehFarsiFourbelow-ar.init.BaaBaaMemInit yehFarsiThreeabove-ar.init.BaaBaaMemInit yehFarsiTwoabove-ar.init.BaaBaaMemInit yehFarsi-ar.init.BaaBaaMemInit yeh-ar.init.BaaBaaMemInit yehVabove-ar.init.BaaBaaMemInit behThreedotsupabove-ar.init.BaaBaaMemInit behThreedotshorizontalbelow-ar.init.BaaBaaMemInit tehThreedotsupbelow-ar.init.BaaBaaMemInit behThreedotsupbelow-ar.init.BaaBaaMemInit behVinvertedbelow-ar.init.BaaBaaMemInit behVbelow-ar.init.BaaBaaMemInit behTwodotsbelowDotabove-ar.init.BaaBaaMemInit noonDotbelow-ar.init.BaaBaaMemInit yehThreedotsbelow-ar.init.BaaBaaMemInit e-ar.init.BaaBaaMemInit yehKashmiri-ar.init.BaaBaaMemInit beheh-ar.init.BaaSenAltInit noonThreedotsabove-ar.init.BaaSenAltInit peh-ar.init.BaaSenAltInit beeh-ar.init.BaaSenAltInit beh-ar.init.BaaSenAltInit noonTwodotsbelow-ar.init.BaaSenAltInit yehFarsiVinverted-ar.init.BaaSenAltInit yehFarsiTwodotsabove-ar.init.BaaSenAltInit yehFarsiThreedotsabove-ar.init.BaaSenAltInit yehFarsiFourbelow-ar.init.BaaSenAltInit yehFarsiThreeabove-ar.init.BaaSenAltInit yehFarsiTwoabove-ar.init.BaaSenAltInit yehFarsi-ar.init.BaaSenAltInit yeh-ar.init.BaaSenAltInit yehVabove-ar.init.BaaSenAltInit behThreedotsupabove-ar.init.BaaSenAltInit behThreedotshorizontalbelow-ar.init.BaaSenAltInit tehThreedotsupbelow-ar.init.BaaSenAltInit behThreedotsupbelow-ar.init.BaaSenAltInit behVinvertedbelow-ar.init.BaaSenAltInit behVbelow-ar.init.BaaSenAltInit behTwodotsbelowDotabove-ar.init.BaaSenAltInit noonDotbelow-ar.init.BaaSenAltInit yehThreedotsbelow-ar.init.BaaSenAltInit e-ar.init.BaaSenAltInit yehKashmiri-ar.init.BaaSenAltInit beheh-ar.init.BaaHaaInit noonThreedotsabove-ar.init.BaaHaaInit peh-ar.init.BaaHaaInit beeh-ar.init.BaaHaaInit beh-ar.init.BaaHaaInit noonTwodotsbelow-ar.init.BaaHaaInit yehFarsiVinverted-ar.init.BaaHaaInit yehFarsiTwodotsabove-ar.init.BaaHaaInit yehFarsiThreedotsabove-ar.init.BaaHaaInit yehFarsiFourbelow-ar.init.BaaHaaInit yehFarsiThreeabove-ar.init.BaaHaaInit yehFarsiTwoabove-ar.init.BaaHaaInit yehFarsi-ar.init.BaaHaaInit yeh-ar.init.BaaHaaInit yehVabove-ar.init.BaaHaaInit behThreedotsupabove-ar.init.BaaHaaInit behThreedotshorizontalbelow-ar.init.BaaHaaInit tehThreedotsupbelow-ar.init.BaaHaaInit behThreedotsupbelow-ar.init.BaaHaaInit behVinvertedbelow-ar.init.BaaHaaInit behVbelow-ar.init.BaaHaaInit behTwodotsbelowDotabove-ar.init.BaaHaaInit noonDotbelow-ar.init.BaaHaaInit yehThreedotsbelow-ar.init.BaaHaaInit e-ar.init.BaaHaaInit yehKashmiri-ar.init.BaaHaaInit beheh-ar.init.BaaHaaMemInit noonThreedotsabove-ar.init.BaaHaaMemInit peh-ar.init.BaaHaaMemInit beeh-ar.init.BaaHaaMemInit beh-ar.init.BaaHaaMemInit noonTwodotsbelow-ar.init.BaaHaaMemInit yehFarsiVinverted-ar.init.BaaHaaMemInit yehFarsiTwodotsabove-ar.init.BaaHaaMemInit yehFarsiThreedotsabove-ar.init.BaaHaaMemInit yehFarsiFourbelow-ar.init.BaaHaaMemInit yehFarsiThreeabove-ar.init.BaaHaaMemInit yehFarsiTwoabove-ar.init.BaaHaaMemInit yehFarsi-ar.init.BaaHaaMemInit yeh-ar.init.BaaHaaMemInit yehVabove-ar.init.BaaHaaMemInit behThreedotsupabove-ar.init.BaaHaaMemInit behThreedotshorizontalbelow-ar.init.BaaHaaMemInit tehThreedotsupbelow-ar.init.BaaHaaMemInit behThreedotsupbelow-ar.init.BaaHaaMemInit behVinvertedbelow-ar.init.BaaHaaMemInit behVbelow-ar.init.BaaHaaMemInit behTwodotsbelowDotabove-ar.init.BaaHaaMemInit noonDotbelow-ar.init.BaaHaaMemInit yehThreedotsbelow-ar.init.BaaHaaMemInit e-ar.init.BaaHaaMemInit yehKashmiri-ar.init.BaaHaaMemInit beheh-ar.init.High noonThreedotsabove-ar.init.High peh-ar.init.High beeh-ar.init.High beh-ar.init.High noonTwodotsbelow-ar.init.High yehFarsiVinverted-ar.init.High yehFarsiTwodotsabove-ar.init.High yehFarsiThreedotsabove-ar.init.High yehFarsiFourbelow-ar.init.High yehFarsiThreeabove-ar.init.High yehFarsiTwoabove-ar.init.High yehFarsi-ar.init.High yeh-ar.init.High yehVabove-ar.init.High behThreedotsupabove-ar.init.High behThreedotshorizontalbelow-ar.init.High tehThreedotsupbelow-ar.init.High behThreedotsupbelow-ar.init.High behVinvertedbelow-ar.init.High behVbelow-ar.init.High behTwodotsbelowDotabove-ar.init.High noonDotbelow-ar.init.High yehThreedotsbelow-ar.init.High e-ar.init.High yehKashmiri-ar.init.High beheh-ar.init.Wide noonThreedotsabove-ar.init.Wide peh-ar.init.Wide beeh-ar.init.Wide beh-ar.init.Wide noonTwodotsbelow-ar.init.Wide yehFarsiVinverted-ar.init.Wide yehFarsiTwodotsabove-ar.init.Wide yehFarsiThreedotsabove-ar.init.Wide yehFarsiFourbelow-ar.init.Wide yehFarsiThreeabove-ar.init.Wide yehFarsiTwoabove-ar.init.Wide yehFarsi-ar.init.Wide yeh-ar.init.Wide yehVabove-ar.init.Wide behThreedotsupabove-ar.init.Wide behThreedotshorizontalbelow-ar.init.Wide tehThreedotsupbelow-ar.init.Wide behThreedotsupbelow-ar.init.Wide behVinvertedbelow-ar.init.Wide behVbelow-ar.init.Wide behTwodotsbelowDotabove-ar.init.Wide noonDotbelow-ar.init.Wide yehThreedotsbelow-ar.init.Wide e-ar.init.Wide yehKashmiri-ar.init.Wide beheh-ar.init.BaaYaaIsol noonThreedotsabove-ar.init.BaaYaaIsol peh-ar.init.BaaYaaIsol beeh-ar.init.BaaYaaIsol beh-ar.init.BaaYaaIsol noonTwodotsbelow-ar.init.BaaYaaIsol yehFarsiVinverted-ar.init.BaaYaaIsol yehFarsiTwodotsabove-ar.init.BaaYaaIsol yehFarsiThreedotsabove-ar.init.BaaYaaIsol yehFarsiFourbelow-ar.init.BaaYaaIsol yehFarsiThreeabove-ar.init.BaaYaaIsol yehFarsiTwoabove-ar.init.BaaYaaIsol yehFarsi-ar.init.BaaYaaIsol yeh-ar.init.BaaYaaIsol yehVabove-ar.init.BaaYaaIsol behThreedotsupabove-ar.init.BaaYaaIsol behThreedotshorizontalbelow-ar.init.BaaYaaIsol tehThreedotsupbelow-ar.init.BaaYaaIsol behThreedotsupbelow-ar.init.BaaYaaIsol behVinvertedbelow-ar.init.BaaYaaIsol behVbelow-ar.init.BaaYaaIsol behTwodotsbelowDotabove-ar.init.BaaYaaIsol noonDotbelow-ar.init.BaaYaaIsol yehThreedotsbelow-ar.init.BaaYaaIsol e-ar.init.BaaYaaIsol yehKashmiri-ar.init.BaaYaaIsol beheh-ar.init.BaaMemIsol noonThreedotsabove-ar.init.BaaMemIsol peh-ar.init.BaaMemIsol beeh-ar.init.BaaMemIsol beh-ar.init.BaaMemIsol noonTwodotsbelow-ar.init.BaaMemIsol yehFarsiVinverted-ar.init.BaaMemIsol yehFarsiTwodotsabove-ar.init.BaaMemIsol yehFarsiThreedotsabove-ar.init.BaaMemIsol yehFarsiFourbelow-ar.init.BaaMemIsol yehFarsiThreeabove-ar.init.BaaMemIsol yehFarsiTwoabove-ar.init.BaaMemIsol yehFarsi-ar.init.BaaMemIsol yeh-ar.init.BaaMemIsol yehVabove-ar.init.BaaMemIsol behThreedotsupabove-ar.init.BaaMemIsol behThreedotshorizontalbelow-ar.init.BaaMemIsol tehThreedotsupbelow-ar.init.BaaMemIsol behThreedotsupbelow-ar.init.BaaMemIsol behVinvertedbelow-ar.init.BaaMemIsol behVbelow-ar.init.BaaMemIsol behTwodotsbelowDotabove-ar.init.BaaMemIsol noonDotbelow-ar.init.BaaMemIsol yehThreedotsbelow-ar.init.BaaMemIsol e-ar.init.BaaMemIsol yehKashmiri-ar.init.BaaMemIsol beheh-ar.init.BaaHehInit noonThreedotsabove-ar.init.BaaHehInit peh-ar.init.BaaHehInit beeh-ar.init.BaaHehInit beh-ar.init.BaaHehInit noonTwodotsbelow-ar.init.BaaHehInit yehFarsiVinverted-ar.init.BaaHehInit yehFarsiTwodotsabove-ar.init.BaaHehInit yehFarsiThreedotsabove-ar.init.BaaHehInit yehFarsiFourbelow-ar.init.BaaHehInit yehFarsiThreeabove-ar.init.BaaHehInit yehFarsiTwoabove-ar.init.BaaHehInit yehFarsi-ar.init.BaaHehInit yeh-ar.init.BaaHehInit yehVabove-ar.init.BaaHehInit behThreedotsupabove-ar.init.BaaHehInit behThreedotshorizontalbelow-ar.init.BaaHehInit tehThreedotsupbelow-ar.init.BaaHehInit behThreedotsupbelow-ar.init.BaaHehInit behVinvertedbelow-ar.init.BaaHehInit behVbelow-ar.init.BaaHehInit behTwodotsbelowDotabove-ar.init.BaaHehInit noonDotbelow-ar.init.BaaHehInit yehThreedotsbelow-ar.init.BaaHehInit e-ar.init.BaaHehInit yehKashmiri-ar.init.BaaHehInit]; @aBaaLowDotBelow = [@aBaa.init.LD @aBaa.init.BaaRaaIsolLD @aBaa.init.BaaDalLD @aBaa.init.BaaMemHaaInitLD @aBaa.init.BaaBaaYaaLD @aBaa.init.BaaNonIsolLD @aBaa.init.BaaSenInitLD @aBaa.init.BaaMemInitLD @aBaa.init.BaaBaaHaaInitLD @aBaa.init.BaaBaaHehLD @aBaa.init.BaaBaaIsolLD @aBaa.init.BaaBaaMemInitLD @aBaa.init.BaaSenAltInitLD @aBaa.init.BaaHaaInitLD @aBaa.init.BaaHaaMemInitLD @aBaa.init.HighLD @aBaa.init.WideLD @aBaa.init.BaaYaaIsolLD @aBaa.init.BaaMemIsolLD @aBaa.init.BaaHehInitLD]; @AlefHamzaAbove = [alefHamzaabove-ar alefWavyhamzaabove-ar highhamzaAlef-ar alefHamzaabove-ar.fina alefWavyhamzaabove-ar.fina alefHamzaabove-ar.fina.LamAlfIsol alefWavyhamzaabove-ar.fina.LamAlfIsol alefHamzaabove-ar.fina.LamAlfFina alefWavyhamzaabove-ar.fina.LamAlfFina alefHamzaabove-ar.fina.KafAlf alefWavyhamzaabove-ar.fina.KafAlf alefHamzaabove-ar.fina.KafMemAlf alefWavyhamzaabove-ar.fina.KafMemAlf alefHamzaabove-ar.fina.MemAlfFina alefWavyhamzaabove-ar.fina.MemAlfFina]; @AlefHamzaBelow = [alefHamzabelow-ar alefWavyhamzabelow-ar alefHamzabelow-ar.fina alefWavyhamzabelow-ar.fina alefHamzabelow-ar.fina.LamAlfIsol alefWavyhamzabelow-ar.fina.LamAlfIsol alefHamzabelow-ar.fina.LamAlfFina alefWavyhamzabelow-ar.fina.LamAlfFina alefHamzabelow-ar.fina.KafAlf alefWavyhamzabelow-ar.fina.KafAlf alefHamzabelow-ar.fina.KafMemAlf alefWavyhamzabelow-ar.fina.KafMemAlf alefHamzabelow-ar.fina.MemAlfFina alefWavyhamzabelow-ar.fina.MemAlfFina]; @aGaf.alt = [keheh-ar.alt kafRing-ar.alt gaf-ar.alt gafRing-ar.alt ngoeh-ar.alt gafTwodotsbelow-ar.alt gueh-ar.alt gafThreedots-ar.alt kehehDotabove-ar.alt kehehThreedotsabove-ar.alt kehehThreedotsupbelow-ar.alt kehehTwodotshorizontalabove-ar.alt kehehThreedotsbelow-ar.alt]; @aGaf.alt.fina = [keheh-ar.alt.fina kafRing-ar.alt.fina gaf-ar.alt.fina gafRing-ar.alt.fina ngoeh-ar.alt.fina gafTwodotsbelow-ar.alt.fina gueh-ar.alt.fina gafThreedots-ar.alt.fina kehehDotabove-ar.alt.fina kehehThreedotsabove-ar.alt.fina kehehThreedotsupbelow-ar.alt.fina kehehTwodotshorizontalabove-ar.alt.fina kehehThreedotsbelow-ar.alt.fina]; @Digits = [zero one two three four five six seven eight nine zero-ar one-ar two-ar three-ar four-ar five-ar six-ar seven-ar eight-ar nine-ar zeroFarsi-ar oneFarsi-ar twoFarsi-ar threeFarsi-ar fourFarsi-ar fiveFarsi-ar sixFarsi-ar sevenFarsi-ar eightFarsi-ar nineFarsi-ar fourFarsi-ar.urd sixFarsi-ar.urd sevenFarsi-ar.urd]; @Digits.small = [zero.small one.small two.small three.small four.small five.small six.small seven.small eight.small nine.small zero-ar.small one-ar.small two-ar.small three-ar.small four-ar.small five-ar.small six-ar.small seven-ar.small eight-ar.small nine-ar.small zeroFarsi-ar.small oneFarsi-ar.small twoFarsi-ar.small threeFarsi-ar.small fourFarsi-ar.small fiveFarsi-ar.small sixFarsi-ar.small sevenFarsi-ar.small eightFarsi-ar.small nineFarsi-ar.small fourFarsi-ar.urd.small sixFarsi-ar.urd.small sevenFarsi-ar.urd.small]; @Digits.medium = [zero.medium one.medium two.medium three.medium four.medium five.medium six.medium seven.medium eight.medium nine.medium zero-ar.medium one-ar.medium two-ar.medium three-ar.medium four-ar.medium five-ar.medium six-ar.medium seven-ar.medium eight-ar.medium nine-ar.medium zeroFarsi-ar.medium oneFarsi-ar.medium twoFarsi-ar.medium threeFarsi-ar.medium fourFarsi-ar.medium fiveFarsi-ar.medium sixFarsi-ar.medium sevenFarsi-ar.medium eightFarsi-ar.medium nineFarsi-ar.medium fourFarsi-ar.urd.medium sixFarsi-ar.urd.medium sevenFarsi-ar.urd.medium]; @Tashkil.above = [fathasmall-ar dammasmall-ar kasrasmall-ar fathatan-ar dammatan-ar fatha-ar damma-ar shadda-ar sukun-ar dammainverted-ar noonghunnaabove-ar fathaHorizont-ar vabove-ar vinvertedabove-ar dammareversed-ar fathatwodots-ar sukunround-ar sukunoval-ar hahabove-ar meemStopabove-ar maddalong-ar noonabove-ar rhombusStopabove-ar dotStopabove-ar openfathatan-ar opendammatan-ar openfathatan-ar.small fathatan-ar.small fatha-ar.small opendammatan-ar.small damma-ar.small fatha-ar.small2 sukun-ar.small2 dammatan-ar.small]; @Tashkil.below = [kasratan-ar kasra-ar dotvowelbelow-ar rhombusStopbelow-ar meembelow-ar openkasratan-ar kasra-ar.small2]; @RaaWaw = [@aRaa.fina @aRaa.isol @aWaw.fina @aWaw.isol @aRaa.fina.BaaRaaIsol @aWaw.fina.LamWawFina @aRaa.fina.BaaRaaFina @aRaa.fina.KafRaaFina @aRaa.fina.KafRaaIsol @aRaa.fina.HaaRaaIsol @aRaa.fina.LamRaaIsol @aRaa.fina.PostTooth]; @aCurvedKashida = [kashida-ar.1 kashida-ar.2 kashida-ar.3 kashida-ar.4 kashida-ar.5 kashida-ar.6 kashida-ar.7]; @aKashida = [kashida-ar @aCurvedKashida];amiri-1.000/sources/contextuals.fea000066400000000000000000001323551434272261000173360ustar00rootroot00000000000000# replace tashkil following shadda by smaller alternates @ShaddaTashkil = [fatha-ar fathatan-ar dammatan-ar damma-ar openfathatan-ar opendammatan-ar dammainverted-ar]; @ShaddaTashkil.small = [fatha-ar.small fathatan-ar.small dammatan-ar.small damma-ar.small openfathatan-ar.small opendammatan-ar.small dammainverted-ar.small]; lookup SamallTashkil { sub @ShaddaTashkil by @ShaddaTashkil.small; } SamallTashkil; feature calt { sub [shadda-ar dotStopabove-ar] @ShaddaTashkil' lookup SamallTashkil; sub @ShaddaTashkil.small @ShaddaTashkil' lookup SamallTashkil; sub @ShaddaTashkil' lookup SamallTashkil @ShaddaTashkil' lookup SamallTashkil; } calt; #ifdef QURAN feature calt { sub [dotvowelbelow-ar] [kasra-ar]' by [kasra-ar.small2]; } calt; #endif # replace tashkil following hamza by smaller alternates feature calt { sub [@AlefHamzaAbove hamzaabove-ar] [fatha-ar fatha-ar.small damma-ar sukun-ar]' by [fatha-ar.small2 fatha-ar.small2 damma-ar.small sukun-ar.small2]; sub [@AlefHamzaBelow hamzabelow-ar] [kasra-ar]' by [kasra-ar.small2]; } calt; # replace hamza mark when following a heh by a glyph that has only a # HamzaAbove mark so it will be positioned correctly feature ccmp { sub [heh-ar ae-ar hehgoal-ar] [hamzaabove-ar]' by hamza.above; } ccmp; lookup BaaInitWide { sub @aBaa.init by @aBaa.init.Wide; } BaaInitWide; feature calt { sub @aBaa.init' lookup BaaInitWide @Tashkil.above' [@aGaf.medi @aGaf.fina]'; sub @aBaa.init' lookup BaaInitWide @Tashkil.above' @Tashkil.above' [@aGaf.medi @aGaf.fina]'; sub @aBaa.init' lookup BaaInitWide @Tashkil.above' @Tashkil.above' @Tashkil.above' [@aGaf.medi @aGaf.fina]'; } calt; lookup AboveHaaInit { sub @aBaa.init by @aBaa.init.BaaHaaInit; sub @aHaa.medi by @aHaa.medi.SadHaaInit; sub @aHeh.init by @aHeh.init.HehHaaInit; sub @aMem.init by @aMem.init.MemHaaInit; sub @aSad.init by @aSad.init.SadHaaInit; sub @aSen.init by @aSen.init.SenHaaInit; } AboveHaaInit; feature calt { lookupflag IgnoreMarks; sub [@aBaa.init @aHeh.init @aMem.init @aSad.init @aSen.init]' lookup AboveHaaInit [@aHaa.medi]' lookup AboveHaaInit; } calt; lookup BaaRaaFina { sub @aBaa.medi by @aBaa.medi.BaaRaaFina; sub @aRaa.fina by @aRaa.fina.BaaRaaFina; } BaaRaaFina; feature calt { lookupflag IgnoreMarks; sub [@aBaa.medi]' lookup BaaRaaFina [@aRaa.fina]' lookup BaaRaaFina; } calt; lookup BaaNonFina { sub @aBaa.medi by @aBaa.medi.BaaNonFina; sub @aNon.fina by @aNon.fina.BaaNonFina; } BaaNonFina; feature calt { lookupflag IgnoreMarks; sub [@aBaa.medi]' lookup BaaNonFina [@aNon.fina]' lookup BaaNonFina; } calt; lookup BaaMemFina { sub @aBaa.medi by @aBaa.medi.BaaMemFina; sub @aMem.fina by @aMem.fina.BaaMemFina; } BaaMemFina; feature calt { lookupflag IgnoreMarks; sub [@aBaa.medi]' lookup BaaMemFina [@aMem.fina]' lookup BaaMemFina; } calt; lookup KafBaaAlfIsol { sub @aBaa.medi by @aBaa.medi.KafBaaInit; sub @aKaf.init by @aKaf.init.KafBaaInit; } KafBaaAlfIsol; lookup KafBaaAlfFina { sub @aBaa.medi by @aBaa.medi.KafBaaMedi; sub @aKaf.medi by @aKaf.medi.KafBaaMedi; } KafBaaAlfFina; feature calt { lookupflag IgnoreMarks; sub [@aKaf.init]' lookup KafBaaAlfIsol [@aBaa.medi]' lookup KafBaaAlfIsol [@aAlf.fina @aLam.medi @aLam.fina]; sub [@aKaf.medi]' lookup KafBaaAlfFina [@aBaa.medi]' lookup KafBaaAlfFina [@aAlf.fina @aLam.medi @aLam.fina]; } calt; lookup BaaBaa { sub @aBaa.medi by @aBaa.medi.BaaBaaInit; sub @aBaa.fina by @aBaa.fina.BaaBaaIsol; sub @aBaa.init by @aBaa.init.BaaBaaIsol; } BaaBaa; lookup HighBaa { sub @aBaa.init by @aBaa.init.High; sub @aBaa.medi by @aBaa.medi.High; } HighBaa; feature calt { lookupflag IgnoreMarks; # hack to prevent double high baa in سببس and likes sub [@aSen.init @aSen.medi]' [@aBaa.medi]' [@aBaa.medi]' lookup HighBaa [@aSen.medi @aSen.fina]'; # جرينتش sub [@aBaa.init]' lookup BaaBaa [@aBaa.medi]' lookup BaaBaa [@aBaa.medi]' lookup HighBaa [@aSen.fina @aSen.medi @aSen.medi.PreYaa]; sub [@aBaa.medi @aSad.init @aSad.medi @aSen.init @aSen.medi @aBaa.medi.BaaBaaInit] [@aBaa.medi]' lookup HighBaa [@aBaa.fina @aBaa.medi @aSen.fina @aBaa.medi.BaaHehMedi @aSen.medi @aSen.medi.PreYaa]; sub [@aBaa.medi]' lookup HighBaa [@aSen.fina @aSen.medi @aSen.medi.PreYaa]; sub [@aBaa.init]' lookup HighBaa [@aBaa.medi]' lookup HighBaa [@aBaa.medi @aBaa.fina @aSen.medi @aSen.fina]; } calt; lookup BaaHeh { sub @aBaa.init by @aBaa.init.BaaHehInit; sub @aMem.init.dots by @aMem.init.MemHehInit; sub @aBaa.medi by @aBaa.medi.BaaHehMedi; sub @aHeh.medi by @aHeh.medi.BaaHehMedi; } BaaHeh; feature calt { #ifdef QURAN # https://github.com/aliftype/quran-data/issues/1 lookupflag UseMarkFilteringSet [alefabove-ar]; #else lookupflag IgnoreMarks; #endif sub [@aBaa.init @aBaa.medi @aMem.init.dots]' lookup BaaHeh [@aHeh.medi]' lookup BaaHeh; } calt; lookup BaaBaaHeh { sub @aBaa.init by @aBaa.init.BaaBaaHeh; } BaaBaaHeh; feature calt { lookupflag IgnoreMarks; sub @aBaa.init' lookup BaaBaaHeh @aBaa.medi.BaaHehMedi; } calt; lookup LamAlfFina { sub @aAlf.fina by @aAlf.fina.LamAlfFina; sub @aLam.medi by @aLam.medi.LamAlfFina; } LamAlfFina; feature calt { lookupflag IgnoreMarks; sub [@aLam.medi]' lookup LamAlfFina [@aAlf.fina]' lookup LamAlfFina; sub [@aLam.medi]' lookup LamAlfFina hamza-ar.float' [@aAlf.fina]' lookup LamAlfFina; } calt; lookup KafLamHeh { sub @aLam.medi by @aLam.medi.KafLamHehIsol; } KafLamHeh; lookup BaaSenAltInit { sub @aBaa.init by @aBaa.init.BaaSenAltInit; sub @aRaa.fina by @aRaa.fina.PostTooth; sub @aSen.medi by @aSen.medi.BaaSenAltInit; sub @aHeh.medi by @aHeh.medi.PostTooth; sub @aYaa.fina by @aYaa.fina.PostTooth; sub @aMem.fina by @aMem.fina.PostTooth; } BaaSenAltInit; lookup LamHaaHaaInit { sub @aHaa.medi by @aHaa.medi.1LamHaaHaaInit; sub @aLam.init by @aLam.init.LamHaaHaaInit; } LamHaaHaaInit; lookup LamHaaHaaInit2 { sub @aHaa.medi by @aHaa.medi.2LamHaaHaaInit; } LamHaaHaaInit2; lookup KafHeh { sub @aKaf.init by @aKaf.init.KafHeh; sub @aKaf.medi by @aKaf.medi.KafHeh; sub @aHeh.fina by @aHeh.fina.KafHeh; sub @aDal.fina by @aDal.fina.KafDal; } KafHeh; lookup LamMemFina { sub @aLam.medi by @aLam.medi.LamMemFina; sub @aMem.fina by @aMem.fina.LamMemFina; } LamMemFina; lookup SenMemInit { sub @aSen.init by @aSen.init.SenMemInit; sub @aSad.init by @aSad.init.SadMemInit; sub @aMem.init by @aMem.init.MemMemInit; sub @aMem.medi by @aMem.medi.SenMemInit; } SenMemInit; lookup AllYaaIsol { sub @aKaf.init by @aKaf.init.KafYaaIsol; sub @aBaa.init by @aBaa.init.BaaYaaIsol; sub @aFaa.init by @aFaa.init.FaaYaaIsol; sub @aLam.init by @aLam.init.LamYaaIsol; sub @aAyn.init by @aAyn.init.AynYaaIsol; sub @aHaa.init by @aHaa.init.HaaYaaIsol; sub @aHeh.init by @aHeh.init.HehYaaIsol; sub @aMem.init.dots by @aMem.init.MemYaaIsol; sub @aYaa.fina by @aYaa.fina.KafYaaIsol; } AllYaaIsol; lookup BaaRaaIsol { sub @aBaa.init by @aBaa.init.BaaRaaIsol; sub @aRaa.fina by @aRaa.fina.BaaRaaIsol; } BaaRaaIsol; lookup LamHehIsol { sub @aLam.init by @aLam.init.LamHeh; sub @aLam.medi by @aLam.medi.LamHeh; sub @aLam.medi.LamLamInit by @aLam.medi.LamLamHehIsol; sub @aHeh.fina by @aHeh.fina.LamHeh; sub @aDal.fina by @aDal.fina.LamDal; } LamHehIsol; lookup LamWawFina { sub @aLam.medi by @aLam.medi.LamWawFina; sub @aWaw.fina by @aWaw.fina.LamWawFina; } LamWawFina; lookup FaaYaaFina { sub @aFaa.medi by @aFaa.medi.FaaYaaFina; sub @aYaa.fina by @aYaa.fina.FaaYaaFina; } FaaYaaFina; lookup LamLamHaaInit { sub @aHaa.medi by @aHaa.medi.LamLamHaaInit; sub @aLam.init by @aLam.init.LamLamHaaInit; sub @aLam.medi by @aLam.medi.LamLamHaaInit; } LamLamHaaInit; lookup LamBaaMemInit { sub @aBaa.medi by @aBaa.medi.LamBaaMemInit; sub @aLam.init by @aLam.init.LamBaaMemInit; sub @aMem.medi by @aMem.medi.LamBaaMemInit; } LamBaaMemInit; lookup KafLamMemMedi { sub @aLam.medi by @aLam.medi.KafLamMemMedi; } KafLamMemMedi; lookup KafLamMemFina { sub @aLam.medi by @aLam.medi.KafLamMemFina; sub @aLam.medi.LamMemFina by @aLam.medi.KafLamMemFina; } KafLamMemFina; lookup BaaDalIsol { sub @aBaa.init by @aBaa.init.BaaDal; sub @aDal.fina by @aDal.fina.BaaDal; } BaaDalIsol; lookup BaaMemHaaInit { sub @aBaa.init by @aBaa.init.BaaMemHaaInit; sub @aHaa.medi by @aHaa.medi.BaaMemHaaInit; sub @aMem.medi by @aMem.medi.BaaMemHaaInit; } BaaMemHaaInit; lookup BaaBaaYaa { sub @aBaa.init by @aBaa.init.BaaBaaYaa; sub @aBaa.medi by @aBaa.medi.BaaBaaYaa; sub @aYaa.fina by @aYaa.fina.BaaBaaYaa; } BaaBaaYaa; @LamLamFoo = [@aLam.medi.LamMemMedi @aLam.medi.LamHeh @aLam.medi.LamYaaFina]; lookup LamLamInit { sub @aLam.init by @aLam.init.LamLamInit; sub @aLam.medi by @aLam.medi.LamLamInit; sub @aLam.fina by @aLam.fina.LamLamIsol; sub @aKaf.fina by @aKaf.fina.LamKafIsol; sub @aGaf.alt.fina by @aGaf.fina.LamKafIsol; sub @aLam.medi.LamAlfFina by @aLam.medi.LamLamAlfIsol; sub @LamLamFoo by [@aLam.medi.LamLamMemInit @aLam.medi.LamLamHehIsol @aLam.medi.LamLamYaaIsol]; } LamLamInit; lookup LamLamMedi { sub @aLam.medi by @aLam.medi.LamLamMedi2; sub @aLam.fina by @aLam.fina.LamLamFina; sub @aKaf.fina by @aKaf.fina.LamKafFina; sub @aGaf.alt.fina by @aGaf.fina.LamKafFina; sub @aLam.medi.LamAlfFina by @aLam.medi.LamLamAlefFina; sub @LamLamFoo by [@aLam.medi.LamLamMemMedi @aLam.medi.LamLamHehFina @aLam.medi.LamLamYaaFina]; } LamLamMedi; lookup LamLamMedi2 { sub @aLam.medi by @aLam.medi.LamLamMedi; } LamLamMedi2; lookup LamYaaFina { sub @aLam.medi by @aLam.medi.LamYaaFina; sub @aYaa.fina by @aYaa.fina.LamYaaFina; } LamYaaFina; lookup LamMemHaaInit { sub @aHaa.medi by @aHaa.medi.LamMemHaaInit; sub @aLam.init by @aLam.init.LamMemHaaInit; sub @aMem.medi by @aMem.medi.LamMemHaaInit; } LamMemHaaInit; #ifndef QURAN lookup LamMemInit { sub @aLam.init by @aLam.init.LamMemInit; sub @aMem.medi by @aMem.medi.LamMemInit; } LamMemInit; #endif # lookup LamAlfIsol { sub @aAlf.fina by @aAlf.fina.LamAlfIsol; sub @aLam.init by @aLam.init.LamAlfIsol; } LamAlfIsol; #ifndef QURAN lookup LamHaaMemInit { sub @aHaa.medi by @aHaa.medi.LamHaaMemInit; sub @aLam.init by @aLam.init.LamHaaMemInit; sub @aMem.medi by @aMem.medi.LamHaaMemInit; } LamHaaMemInit; #endif # lookup BaaBaaMemInit { sub @aBaa.init by @aBaa.init.BaaBaaMemInit; sub @aBaa.medi by @aBaa.medi.BaaBaaMemInit; sub @aMem.medi by @aMem.medi.BaaBaaMemInit; } BaaBaaMemInit; lookup BaaBaaHaaInit { sub @aBaa.init by @aBaa.init.BaaBaaHaaInit; sub @aBaa.medi by @aBaa.medi.BaaBaaHaaInit; sub @aHaa.medi by @aHaa.medi.BaaBaaHaaInit; } BaaBaaHaaInit; lookup MemRaaIsol { sub @aMem.init by @aMem.init.MemRaaIsol; sub @aRaa.fina by @aRaa.fina.MemRaaIsol; } MemRaaIsol; lookup HaaHaaInit { sub @aHaa.init by @aHaa.init.HaaHaaInit; sub @aHaa.medi by @aHaa.medi.HaaHaaInit; } HaaHaaInit; lookup KafMemIsol { sub @aKaf.init by @aKaf.init.KafMemIsol; sub @aLam.init by @aLam.init.LamMemIsol; sub @aBaa.init by @aBaa.init.BaaMemIsol; sub @aMem.fina by @aMem.fina.KafMemIsol; } KafMemIsol; lookup LamQafFina { sub @aLam.medi by @aLam.medi.LamQafFina; sub @aQaf.fina by @aQaf.fina.LamQafFina; } LamQafFina; lookup MemHaaMemInit { sub @aHaa.medi by @aHaa.medi.MemHaaMemInit; sub @aMem.init by @aMem.init.MemHaaMemInit; sub @aMem.init.MemHaaInit by @aMem.init.MemHaaMemInit; sub @aHaa.medi.SadHaaInit by @aHaa.medi.MemHaaMemInit; } MemHaaMemInit; lookup BaaNonIsol { sub @aBaa.init by @aBaa.init.BaaNonIsol; sub @aNon.fina by @aNon.fina.BaaNonIsol; } BaaNonIsol; lookup KafMemFina { sub @aKaf.medi by @aKaf.medi.KafMemFina; sub @aMem.fina by @aMem.fina.KafMemFina; } KafMemFina; lookup KafLamAlf { sub @aLam.medi by @aLam.medi.KafLamAlf; sub @aLam.medi.LamAlfFina by @aLam.medi.KafLamAlf; } KafLamAlf; lookup BaaSenInit { sub @aBaa.init by @aBaa.init.BaaSenInit; sub @aSen.fina by @aSen.fina.BaaSen; sub @aSen.medi by @aSen.medi.BaaSenInit; } BaaSenInit; lookup KafRaaFina { sub @aKaf.medi by @aKaf.medi.KafRaaFina; sub @aRaa.fina by @aRaa.fina.KafRaaFina; } KafRaaFina; lookup LamHehInit { sub @aHeh.medi by @aHeh.medi.LamHehInit; sub @aLam.init by @aLam.init.LamHehInit; } LamHehInit; lookup BaaMemInit { sub @aBaa.init by @aBaa.init.BaaMemInit; sub @aMem.medi by @aMem.medi.BaaMemInit; } BaaMemInit; lookup KafLam { sub @aKaf.init by @aKaf.init.KafLam; sub @aKaf.medi by @aKaf.medi.KafLam; sub @aKaf.fina by @aKaf.fina.KafKafFina; sub @aGaf.alt.fina by @aGaf.fina.KafKafFina; sub @aLam.medi by @aLam.medi.KafLam; sub @aLam.fina by @aLam.fina.KafLam; sub @aAlf.fina by @aAlf.fina.KafAlf; } KafLam; lookup KafRaaIsol { sub @aKaf.init by @aKaf.init.KafRaaIsol; sub @aRaa.fina by @aRaa.fina.KafRaaIsol; } KafRaaIsol; lookup AynHaaInit { sub @aAyn.init by @aAyn.init.AynHaaInit; sub @aHaa.medi by @aHaa.medi.AynHaaInit; } AynHaaInit; lookup KafYaaFina { sub @aKaf.medi by @aKaf.medi.KafYaaFina; sub @aAyn.medi by @aAyn.medi.AynYaaFina; sub @aYaa.fina by @aYaa.fina.KafYaaFina; } KafYaaFina; lookup LamMemMedi { sub @aLam.medi by @aLam.medi.LamMemMedi; sub @aMem.medi.dots by @aMem.medi.LamMemMedi; } LamMemMedi; lookup SenBaaMemInit { sub @aSen.init by @aSen.init.SenBaaMemInit; sub @aSad.init by @aSad.init.SenBaaMemInit; sub @aBaa.medi by @aBaa.medi.SenBaaMemInit; sub @aMem.medi by @aMem.medi.SenBaaMemInit; } SenBaaMemInit; lookup HaaRaaIsol { sub @aHaa.init by @aHaa.init.HaaRaaIsol; sub @aRaa.fina by @aRaa.fina.HaaRaaIsol; } HaaRaaIsol; lookup LamRaaIsol { sub @aLam.init by @aLam.init.LamRaaIsol; sub @aRaa.fina by @aRaa.fina.LamRaaIsol; } LamRaaIsol; lookup KafMemAlf { sub @aKaf.medi by @aKaf.medi.KafMemAlf; sub @aKaf.init by @aKaf.init.KafMemAlf; sub @aMem.medi by @aMem.medi.KafMemAlf; sub @aAlf.fina by @aAlf.fina.KafMemAlf; sub @aLam.fina by @aLam.fina.KafMemLam; sub @aLam.medi by @aLam.medi.KafMemLam; } KafMemAlf; lookup BaaHaaMemInit { sub @aBaa.init by @aBaa.init.BaaHaaMemInit; sub @aHaa.medi by @aHaa.medi.BaaHaaMemInit; sub @aHaa.medi.SadHaaInit by @aHaa.medi.BaaHaaMemInit; sub @aBaa.init.BaaHaaInit by @aBaa.init.BaaHaaMemInit; } BaaHaaMemInit; lookup AboveHaaIsol { sub @aAyn.init by @aAyn.init.AboveHaa; sub @aBaa.init by @aBaa.init.AboveHaa; sub @aFaa.init by @aFaa.init.FaaHaaInit; sub @aHaa.init by @aHaa.init.AboveHaa; sub @aHeh.init by @aHeh.init.AboveHaa; sub @aKaf.init by @aKaf.init.AboveHaa; sub @aLam.init by @aLam.init.LamHaaInit; sub @aMem.init by @aMem.init.AboveHaa; sub @aSad.init by @aSad.init.AboveHaa; sub @aSen.init by @aSen.init.AboveHaa; sub @aHaa.fina by @aHaa.fina.AboveHaaIsol; } AboveHaaIsol; lookup AboveHaaIsol2 { sub @aHaa.fina by @aHaa.fina.AboveHaaIsol2; sub @aHaa.medi by @aHaa.medi.FaaHaaInit; } AboveHaaIsol2; lookup SenYaaFina { sub @aRaa.fina by @aRaa.fina.PostTooth; sub @aSad.init by @aSad.init.PreYaa; sub @aSad.medi by @aSad.medi.PreYaa; sub @aSen.init by @aSen.init.PreYaa; sub @aSen.medi by @aSen.medi.PreYaa; sub @aYaa.fina by @aYaa.fina.PostTooth; } SenYaaFina; lookup KafMemInit { sub @aKaf.init by @aKaf.init.KafMemInit; sub @aKaf.medi by @aKaf.medi.KafMemMedi; sub @aAyn.init by @aAyn.init.AynMemInit; sub @aFaa.init by @aFaa.init.FaaMemInit; sub @aHaa.init by @aHaa.init.HaaMemInit; sub @aHeh.init by @aHeh.init.HehMemInit; sub @aMem.medi by @aMem.medi.KafMemMedi; } KafMemInit; # the Lam.medi+Mem.fina is too narrow for tashkil, so we use a wider (extended) # meem when tashkil clash is anticipated. lookup LamMemFinaExtended { sub @aMem.fina by @aMem.fina.LamMemFinaExtended; } LamMemFinaExtended; feature calt { sub @aLam.medi' lookup LamMemFina @Tashkil.above' @aMem.fina' lookup LamMemFinaExtended @Tashkil.above'; sub @aLam.medi' lookup LamMemFina @Tashkil.above' @Tashkil.above' @aMem.fina' lookup LamMemFinaExtended @Tashkil.above'; sub @aLam.medi' lookup LamMemFina @Tashkil.above' @Tashkil.above' @aMem.fina' lookup LamMemFinaExtended @Tashkil.above' @Tashkil.above'; sub @aLam.medi' lookup LamMemFina @Tashkil.above' @aMem.fina' lookup LamMemFinaExtended @Tashkil.above' @Tashkil.above'; sub @aLam.medi' lookup LamMemFina @Tashkil.below' @Tashkil.above' @aMem.fina' lookup LamMemFinaExtended @Tashkil.above'; sub @aLam.medi' lookup LamMemFina @Tashkil.above' @Tashkil.below' @aMem.fina' lookup LamMemFinaExtended @Tashkil.above'; sub @aLam.medi' lookup LamMemFina @Tashkil.below' @aMem.fina' lookup LamMemFinaExtended @Tashkil.below'; } calt; # ditto lookup MemExtended { sub @aMem.fina by @aMem.fina.KafMemIsolExtended; } MemExtended; feature calt { sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.above' @aMem.fina' lookup MemExtended @Tashkil.above'; sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.above' @Tashkil.above' @aMem.fina' lookup MemExtended @Tashkil.above'; sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.above' @Tashkil.above' @aMem.fina' lookup MemExtended @Tashkil.above' @Tashkil.above'; sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.above' @aMem.fina' lookup MemExtended @Tashkil.above' @Tashkil.above'; sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.below' @Tashkil.above' @aMem.fina' lookup MemExtended @Tashkil.above'; sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.above' @Tashkil.below' @aMem.fina' lookup MemExtended @Tashkil.above'; sub [@aLam.init @aKaf.init]' lookup KafMemIsol @Tashkil.below' @aMem.fina' lookup MemExtended @Tashkil.below'; } calt; #ditto, but we don't have LamMemInit in Quran font #ifndef QURAN lookup LamMemInitTatweel { sub @aMem.medi by @aMem.medi.LamMemInitTatweel; } LamMemInitTatweel; feature calt { sub @aLam.init' lookup LamMemInit @Tashkil.above' @aMem.medi' lookup LamMemInitTatweel @Tashkil.above'; sub @aLam.init' lookup LamMemInit @Tashkil.above' @Tashkil.above' @aMem.medi' lookup LamMemInitTatweel @Tashkil.above'; sub @aLam.init' lookup LamMemInit @Tashkil.above' @Tashkil.above' @aMem.medi' lookup LamMemInitTatweel @Tashkil.above' @Tashkil.above'; sub @aLam.init' lookup LamMemInit @Tashkil.above' @aMem.medi' lookup LamMemInitTatweel @Tashkil.above' @Tashkil.above'; sub @aLam.init' lookup LamMemInit @Tashkil.below' @Tashkil.above' @aMem.medi' lookup LamMemInitTatweel @Tashkil.above'; sub @aLam.init' lookup LamMemInit @Tashkil.above' @Tashkil.below' @aMem.medi' lookup LamMemInitTatweel @Tashkil.above'; sub @aLam.init' lookup LamMemInit @Tashkil.below' @aMem.medi' lookup LamMemInitTatweel @Tashkil.below'; } calt; #endif # ditto lookup KafMemFinaExtended { sub @aMem.fina by @aMem.fina.KafMemFinaExtended; } KafMemFinaExtended; feature calt { sub @aKaf.medi' lookup KafMemFina @Tashkil.above' @aMem.fina' lookup KafMemFinaExtended @Tashkil.above'; sub @aKaf.medi' lookup KafMemFina @Tashkil.above' @Tashkil.above' @aMem.fina' lookup KafMemFinaExtended @Tashkil.above'; sub @aKaf.medi' lookup KafMemFina @Tashkil.above' @Tashkil.above' @aMem.fina' lookup KafMemFinaExtended @Tashkil.above' @Tashkil.above'; sub @aKaf.medi' lookup KafMemFina @Tashkil.above' @aMem.fina' lookup KafMemFinaExtended @Tashkil.above' @Tashkil.above'; sub @aKaf.medi' lookup KafMemFina @Tashkil.below' @Tashkil.above' @aMem.fina' lookup KafMemFinaExtended @Tashkil.above; sub @aKaf.medi' lookup KafMemFina @Tashkil.above' @Tashkil.below' @aMem.fina' lookup KafMemFinaExtended @Tashkil.above'; sub @aKaf.medi' lookup KafMemFina @Tashkil.below' @aMem.fina' lookup KafMemFinaExtended @Tashkil.below'; } calt; # No IgnoreMarks here, to narrow to carry vowels feature calt { sub [@aBaa.init]' lookup BaaMemHaaInit [@aMem.medi]' lookup BaaMemHaaInit [@aHaa.medi]' lookup BaaMemHaaInit; } calt; feature calt { lookupflag IgnoreMarks; sub [@aKaf.init @aKaf.medi]' lookup KafLam [@aLam.medi]' lookup KafLamHeh [@aHeh.fina @aDal.fina]' lookup LamHehIsol; sub [@aKaf.init @aKaf.medi]' lookup KafMemAlf [@aMem.medi]' lookup KafMemAlf [@aLam.medi @aLam.fina @aAlf.fina]' lookup KafMemAlf; sub [@aBaa.init]' lookup BaaSenAltInit [@aSen.medi]' lookup BaaSenAltInit [@aHeh.medi @aRaa.fina @aYaa.fina @aMem.fina]' lookup BaaSenAltInit; sub [@aLam.init]' lookup LamHaaHaaInit [@aHaa.medi]' lookup LamHaaHaaInit [@aHaa.medi]' lookup LamHaaHaaInit2; sub [@aKaf.init @aKaf.medi]' lookup KafHeh [@aHeh.fina @aDal.fina]' lookup KafHeh; sub [@aLam.medi]' lookup LamMemFina [@aMem.fina]' lookup LamMemFina; sub [@aSen.init @aSad.init @aMem.init]' lookup SenMemInit [@aMem.medi]' lookup SenMemInit; sub [@aKaf.init @aBaa.init @aFaa.init @aLam.init @aAyn.init @aHaa.init @aHeh.init @aMem.init.dots]' lookup AllYaaIsol [@aYaa.fina]' lookup AllYaaIsol; sub [@aBaa.init]' lookup BaaRaaIsol [@aRaa.fina]' lookup BaaRaaIsol; sub [@aLam.init @aLam.medi @aLam.medi.LamLamInit]' lookup LamHehIsol [@aHeh.fina @aDal.fina]' lookup LamHehIsol; sub [@aLam.medi]' lookup LamWawFina [@aWaw.fina]' lookup LamWawFina; sub [@aFaa.medi]' lookup FaaYaaFina [@aYaa.fina]' lookup FaaYaaFina; sub [@aLam.init]' lookup LamLamHaaInit [@aLam.medi]' lookup LamLamHaaInit [@aHaa.medi]' lookup LamLamHaaInit; #ifndef QURAN sub [@aLam.init]' lookup LamBaaMemInit [@aBaa.medi]' lookup LamBaaMemInit [@aMem.medi]' lookup LamBaaMemInit; #endif sub [@aKaf.init @aKaf.medi]' lookup KafLam [@aLam.medi]' lookup KafLamMemMedi [@aMem.medi.dots]' lookup LamMemMedi; sub [@aKaf.init @aKaf.medi]' lookup KafLam [@aLam.medi @aLam.medi.LamMemFina]' lookup KafLamMemFina [@aMem.fina @aMem.fina.LamMemFinaExtended]' lookup LamMemFina; sub [@aBaa.init]' lookup BaaDalIsol [@aDal.fina]' lookup BaaDalIsol; sub [@aBaa.init]' lookup BaaBaaYaa [@aBaa.medi]' lookup BaaBaaYaa [@aYaa.fina]' lookup BaaBaaYaa; sub [@aLam.medi]' lookup LamYaaFina [@aYaa.fina]' lookup LamYaaFina; sub [@aLam.init]' lookup LamMemHaaInit [@aMem.medi]' lookup LamMemHaaInit [@aHaa.medi]' lookup LamMemHaaInit; #ifndef QURAN sub [@aLam.init]' lookup LamMemInit [@aMem.medi]' lookup LamMemInit; #endif sub [@aLam.init]' lookup LamAlfIsol [@aAlf.fina]' lookup LamAlfIsol; sub [@aLam.init]' lookup LamAlfIsol hamza-ar.float' [@aAlf.fina]' lookup LamAlfIsol; #ifndef QURAN sub [@aLam.init]' lookup LamHaaMemInit [@aHaa.medi]' lookup LamHaaMemInit [@aMem.medi]' lookup LamHaaMemInit; #endif sub [@aBaa.init]' lookup BaaBaaMemInit [@aBaa.medi]' lookup BaaBaaMemInit [@aMem.medi]' lookup BaaBaaMemInit; #ifndef QURAN sub [@aBaa.init]' lookup BaaBaaHaaInit [@aBaa.medi]' lookup BaaBaaHaaInit [@aHaa.medi]' lookup BaaBaaHaaInit; #endif sub [@aMem.init]' lookup MemRaaIsol [@aRaa.fina]' lookup MemRaaIsol; sub [@aAyn.init]' [@aRaa.fina]' lookup MemRaaIsol; sub [@aHaa.init]' lookup HaaHaaInit [@aHaa.medi]' lookup HaaHaaInit; sub [@aKaf.init @aLam.init @aBaa.init]' lookup KafMemIsol [@aMem.fina]' lookup KafMemIsol; sub [@aLam.medi]' lookup LamQafFina [@aQaf.fina]' lookup LamQafFina; sub [@aMem.init @aMem.init.MemHaaInit]' lookup MemHaaMemInit [@aHaa.medi @aHaa.medi.SadHaaInit]' lookup MemHaaMemInit [@aMem.medi]' lookup KafMemInit; sub [@aBaa.init]' lookup BaaNonIsol [@aNon.fina]' lookup BaaNonIsol; sub [@aKaf.medi]' lookup KafMemFina [@aMem.fina]' lookup KafMemFina; sub [@aKaf.init @aKaf.medi]' lookup KafLam [@aLam.medi @aLam.medi.LamAlfFina]' lookup KafLamAlf [@aAlf.fina @aAlf.fina.LamAlfFina]; sub [@aKaf.init @aKaf.medi]' lookup KafLam [@aLam.medi @aLam.medi.LamAlfFina]' lookup KafLamAlf hamza-ar.float' [@aAlf.fina @aAlf.fina.LamAlfFina]; # see float hamza in quran.fea sub [@aBaa.init]' lookup BaaSenInit [@aSen.medi]' lookup BaaSenInit; sub [@aBaa.init]' lookup BaaSenAltInit [@aSen.fina]' lookup BaaSenInit; sub [@aKaf.medi]' lookup KafRaaFina [@aRaa.fina]' lookup KafRaaFina; ignore sub [@aLam.init] [hehgoal-ar.medi]; sub [@aLam.init]' lookup LamHehInit [@aHeh.medi]' lookup LamHehInit; sub [@aBaa.init]' lookup BaaMemInit [@aMem.medi]' lookup BaaMemInit; sub [@aKaf.init @aKaf.medi]' lookup KafLam [@aLam.medi @aLam.fina @aAlf.fina @aKaf.fina]' lookup KafLam; sub [@aKaf.init]' lookup KafRaaIsol [@aRaa.fina]' lookup KafRaaIsol; sub [@aAyn.init]' lookup AynHaaInit [@aHaa.medi]' lookup AynHaaInit; sub [@aKaf.medi @aAyn.medi]' lookup KafYaaFina [@aYaa.fina]' lookup KafYaaFina; sub [@aLam.medi]' lookup LamMemMedi [@aMem.medi.dots]' lookup LamMemMedi; sub [@aSen.init @aSad.init]' lookup SenBaaMemInit [@aBaa.medi]' lookup SenBaaMemInit [@aMem.medi]' lookup SenBaaMemInit; sub [@aBaa.init]' lookup BaaBaa [@aBaa.medi @aBaa.fina]' lookup BaaBaa; sub [@aHaa.init]' lookup HaaRaaIsol [@aRaa.fina]' lookup HaaRaaIsol; sub [@aLam.init]' lookup LamRaaIsol [@aRaa.fina]' lookup LamRaaIsol; sub [@aBaa.init @aBaa.init.BaaHaaInit]' lookup BaaHaaMemInit [@aHaa.medi @aHaa.medi.SadHaaInit]' lookup BaaHaaMemInit [@aMem.medi]' lookup KafMemInit; sub [@aAyn.init @aBaa.init @aHaa.init @aHeh.init @aMem.init @aSad.init @aSen.init]' lookup AboveHaaIsol [@aHaa.fina]' lookup AboveHaaIsol; sub [@aFaa.init @aLam.init @aKaf.init]' lookup AboveHaaIsol [@aHaa.medi @aHaa.fina]' lookup AboveHaaIsol2; sub [@aSen.init @aSad.init @aSen.medi @aSad.medi]' lookup SenYaaFina [@aYaa.fina @aRaa.fina]' lookup SenYaaFina; } calt; feature calt { lookupflag IgnoreMarks; sub [@aKaf.init @aKaf.medi]' @aHeh.medi by [@aKaf.init.PreHeh @aKaf.medi.PreHeh]; } calt; lookup ToothYaaBari { sub @aSen.init by @aSen.init.YaaBari; sub @aSad.init by @aSad.init.YaaBari; sub @aYaaBari.fina by @aYaaBari.fina.PostTooth; } ToothYaaBari; feature calt { lookupflag IgnoreMarks; sub [@aSen.init @aSad.init]' lookup ToothYaaBari [@aYaaBari.fina]' lookup ToothYaaBari; } calt; lookup ToothYaaBariFina { sub @aBaa.medi by @aBaa.medi.YaaBari; sub @aBaa.init.BaaBaaIsol by @aBaa.init.BaaBaaYaaBari; sub @aBaa.medi.BaaBaaInit by @aBaa.medi.YaaBari; sub @aHaa.init.DotBelow by @aHaa.init.BaaYaaBari; sub @aYaaBari.fina by @aYaaBari.fina.PostToothFina; } ToothYaaBariFina; feature calt { lookupflag IgnoreMarks; sub [@aHaa.init.DotBelow]' lookup ToothYaaBariFina [@aBaa.medi]' lookup ToothYaaBariFina [@aYaaBari.fina]' lookup ToothYaaBariFina; sub [@aBaa.medi]' lookup ToothYaaBariFina [@aYaaBari.fina]' lookup ToothYaaBariFina; sub [@aBaa.init.BaaBaaIsol]' lookup ToothYaaBariFina [@aBaa.medi.BaaBaaInit]' lookup ToothYaaBariFina [@aYaaBari.fina]' lookup ToothYaaBariFina; } calt; lookup AscenderYaaBari { sub @aBaa.init by @aBaa.init.YaaBari; sub @aFaa.init by @aFaa.init.YaaBari; sub @aLam.init by @aLam.init.YaaBari; sub @aKaf.init by @aKaf.init.YaaBari; sub @aYaaBari.fina by @aYaaBari.fina.PostAscender; } AscenderYaaBari; feature calt { lookupflag IgnoreMarks; sub [@aBaa.init @aFaa.init @aLam.init @aKaf.init]' lookup AscenderYaaBari [@aYaaBari.fina]' lookup AscenderYaaBari; } calt; lookup AynYaaBari { sub @aHaa.init by @aHaa.init.YaaBari; sub @aHeh.init by @aHeh.init.YaaBari; sub hehDoachashmee-ar.init by hehDoachashmee-ar.init.YaaBari; sub @aAyn.init by @aAyn.init.YaaBari; sub @aTaa.init by @aTaa.init.YaaBari; sub @aMem.init.dots by @aMem.init.YaaBari; sub @aYaaBari.fina by @aYaaBari.fina.PostAyn; } AynYaaBari; feature calt { lookupflag IgnoreMarks; sub [@aHaa.init @aHeh.init @aAyn.init @aTaa.init @aMem.init.dots hehDoachashmee-ar.init]' lookup AynYaaBari @aYaaBari.fina' lookup AynYaaBari; } calt; # default Faa.init+Mem.medi ligature is too narrow leading to mark clash of # both glyphs have marks above or both have marks bellow at the same time. So # we use an alternate wider Meem in such cases. # This covers فَمَا فَّمَا فَمَّا فَّمَّا فِّمَا فِمِا. lookup FaaMemTatweel { sub @aMem.medi by @aMem.medi.KafMemMediTatweel; } FaaMemTatweel; feature calt { sub @aFaa.init' lookup KafMemInit @Tashkil.above' @aMem.medi' lookup FaaMemTatweel @Tashkil.above'; sub @aFaa.init' lookup KafMemInit @Tashkil.above' @Tashkil.above' @aMem.medi' lookup FaaMemTatweel @Tashkil.above'; sub @aFaa.init' lookup KafMemInit @Tashkil.above' @Tashkil.above' @aMem.medi' lookup FaaMemTatweel @Tashkil.above' @Tashkil.above'; sub @aFaa.init' lookup KafMemInit @Tashkil.above' @aMem.medi' lookup FaaMemTatweel @Tashkil.above' @Tashkil.above'; sub @aFaa.init' lookup KafMemInit @Tashkil.below' @Tashkil.above' @aMem.medi' lookup FaaMemTatweel @Tashkil.above'; sub @aFaa.init' lookup KafMemInit @Tashkil.above' @Tashkil.below' @aMem.medi' lookup FaaMemTatweel @Tashkil.above'; sub @aFaa.init' lookup KafMemInit @Tashkil.below' @aMem.medi' lookup FaaMemTatweel @Tashkil.below'; } calt; feature calt { lookupflag IgnoreMarks; sub [@aKaf.init @aKaf.medi @aAyn.init @aFaa.init @aHaa.init @aHeh.init]' lookup KafMemInit [@aMem.medi]' lookup KafMemInit; } calt; feature calt { lookupflag IgnoreMarks; sub [@aLam.init]' lookup LamLamInit [@LamLamFoo @aLam.medi @aKaf.fina @aLam.fina @aLam.medi.LamAlfFina]' lookup LamLamInit; sub [@aLam.medi]' lookup LamLamMedi2 [@LamLamFoo @aLam.medi @aKaf.fina @aLam.fina @aLam.medi.LamAlfFina]' lookup LamLamMedi; } calt; lookup HehMediTooth { sub @aHeh.medi by @aHeh.medi.PostTooth; sub @aSad.init by @aSad.init.PreYaa; sub @aSad.medi by @aSad.medi.PreYaa; sub @aSen.init by @aSen.init.PreYaa; sub @aSen.medi by @aSen.medi.PreYaa; } HehMediTooth; feature calt { lookupflag IgnoreMarks; sub [@aSad.init @aSad.medi @aSen.init @aSen.medi]' lookup HehMediTooth [@aHeh.medi]' lookup HehMediTooth; } calt; # replace final alef followed by madda by a wider one feature calt { sub @Tashkil.above [alef-ar.fina]' [madda-ar maddalong-ar] by [alef-ar.fina.Wide]; } calt; # Wider alef wasl and alef with hamza above after faa feature calt { lookupflag IgnoreMarks; sub @aFaa.init [alefWasla-ar.fina alefHamzaabove-ar.fina]' by [alefWasla-ar.fina.Wide alefHamzaabove-ar.fina.Wide]; } calt; # If there are no marks, revert the above substitution feature calt { sub @aFaa.init [alefWasla-ar.fina.Wide alefHamzaabove-ar.fina.Wide]' by [alefWasla-ar.fina alefHamzaabove-ar.fina]; } calt; feature calt { lookupflag IgnoreMarks; sub [@aAyn.init @aHaa.init @aHaa.medi]' [@aAlf.fina @aDal.fina @aHeh.fina @aLam.fina @aLam.medi @aLam.medi.LamMemFina @aLam.medi.LamWawFina @aLam.medi.LamHeh @aLam.medi.LamYaaFina @aKaf.fina @aLam.medi.LamQafFina @aBaa.medi.BaaRaaFina @aLam.medi.LamAlfFina @aLam.medi.LamMemMedi @aLam.medi.LamLamMedi @aBaa.medi.BaaNonFina @aBaa.medi.High @aKaf.medi @aKaf.medi.KafMemAlf @aKaf.medi.KafMemMedi @aKaf.medi.KafMemFina @aKaf.medi.KafLam @aKaf.medi.KafHeh @aKaf.medi.KafBaaMedi @aKaf.medi.KafRaaFina @aKaf.medi.KafYaaFina @aKaf.medi.PreHeh] by [@aAyn.init.Finjani @aHaa.init.Finjani @aHaa.medi.Finjani]; } calt; lookup BaaYaaFina { sub @aBaa.medi by @aBaa.medi.BaaYaaFina; sub @aYaa.fina by @aYaa.fina.BaaYaaFina; } BaaYaaFina; feature calt { lookupflag IgnoreMarks; sub [@aBaa.medi]' lookup BaaYaaFina [@aYaa.fina]' lookup BaaYaaFina; } calt; lookup ToothMem { sub @aMem.fina by @aMem.fina.PostTooth; sub @aSad.init by @aSad.init.PreYaa; sub @aSad.medi by @aSad.medi.PreYaa; sub @aSen.init by @aSen.init.PreYaa; sub @aSen.medi by @aSen.medi.PreYaa; } ToothMem; feature calt { lookupflag IgnoreMarks; sub [@aSen.init @aSen.medi @aSad.init @aSad.medi]' lookup ToothMem [@aMem.fina]' lookup ToothMem; } calt; lookup KafLamYaa { sub @aLam.medi.KafLam by @aLam.medi.KafLamYaa; } KafLamYaa; feature calt { lookupflag IgnoreMarks; sub [@aLam.medi.KafLam]' lookup KafLamYaa [@aYaa.fina]' lookup LamYaaFina; } calt; lookup LamKafInit { # XXX: sync with classes.fea # @aLam.init sub lamVabove-ar.init by lamVabove-ar.init kashida-ar.1; sub lamThreedotsabove-ar.init by lamThreedotsabove-ar.init kashida-ar.1; sub lam-ar.init by lam-ar.init kashida-ar.1; sub lamThreedotsbelow-ar.init by lamThreedotsbelow-ar.init kashida-ar.1; sub lamDotabove-ar.init by lamDotabove-ar.init kashida-ar.1; sub lamBar-ar.init by lamBar-ar.init kashida-ar.1; # @aLam.medi by sub lamVabove-ar.medi by lamVabove-ar.medi kashida-ar.1; sub lamThreedotsabove-ar.medi by lamThreedotsabove-ar.medi kashida-ar.1; sub lam-ar.medi by lam-ar.medi kashida-ar.1; sub lamThreedotsbelow-ar.medi by lamThreedotsbelow-ar.medi kashida-ar.1; sub lamDotabove-ar.medi by lamDotabove-ar.medi kashida-ar.1; sub lamBar-ar.medi by lamBar-ar.medi kashida-ar.1; # @aLam.medi.KafLam sub lamVabove-ar.medi.KafLam by lamVabove-ar.medi.KafLam kashida-ar.1; sub lamThreedotsabove-ar.medi.KafLam by lamThreedotsabove-ar.medi.KafLam kashida-ar.1; sub lam-ar.medi.KafLam by lam-ar.medi.KafLam kashida-ar.1; sub lamThreedotsbelow-ar.medi.KafLam by lamThreedotsbelow-ar.medi.KafLam kashida-ar.1; sub lamDotabove-ar.medi.KafLam by lamDotabove-ar.medi.KafLam kashida-ar.1; sub lamBar-ar.medi.KafLam by lamBar-ar.medi.KafLam kashida-ar.1; # @aLam.medi.KafMemLam sub lamVabove-ar.medi.KafMemLam by lamVabove-ar.medi.KafMemLam kashida-ar.1; sub lamThreedotsabove-ar.medi.KafMemLam by lamThreedotsabove-ar.medi.KafMemLam kashida-ar.1; sub lam-ar.medi.KafMemLam by lam-ar.medi.KafMemLam kashida-ar.1; sub lamThreedotsbelow-ar.medi.KafMemLam by lamThreedotsbelow-ar.medi.KafMemLam kashida-ar.1; sub lamDotabove-ar.medi.KafMemLam by lamDotabove-ar.medi.KafMemLam kashida-ar.1; sub lamBar-ar.medi.KafMemLam by lamBar-ar.medi.KafMemLam kashida-ar.1; # @aLam.medi.LamLamInit sub lamVabove-ar.medi.LamLamInit by lamVabove-ar.medi.LamLamInit kashida-ar.1; sub lamThreedotsabove-ar.medi.LamLamInit by lamThreedotsabove-ar.medi.LamLamInit kashida-ar.1; sub lam-ar.medi.LamLamInit by lam-ar.medi.LamLamInit kashida-ar.1; sub lamThreedotsbelow-ar.medi.LamLamInit by lamThreedotsbelow-ar.medi.LamLamInit kashida-ar.1; sub lamDotabove-ar.medi.LamLamInit by lamDotabove-ar.medi.LamLamInit kashida-ar.1; sub lamBar-ar.medi.LamLamInit by lamBar-ar.medi.LamLamInit kashida-ar.1; sub meem-ar.medi.LamMemInit by meem-ar.medi.LamMemInitTatweel; } LamKafInit; feature calt { lookupflag IgnoreMarks; sub [@aLam.init @aLam.medi @aLam.medi.KafLam @aLam.medi.KafMemLam @aLam.medi.LamLamInit @aMem.medi.LamMemInit]' lookup LamKafInit [@aKaf.medi @aKaf.medi.KafHeh @aKaf.medi.KafMemFina @aKaf.medi.KafRaaFina @aKaf.medi.KafYaaFina @aKaf.medi.KafMemAlf @aKaf.medi.PreHeh @aGaf.fina]; } calt; lookup LamAynTatweel { # XXX: sync with classes.fea # @aLam.init sub lamVabove-ar.init by lamVabove-ar.init kashida-ar.2; sub lamThreedotsabove-ar.init by lamThreedotsabove-ar.init kashida-ar.2; sub lam-ar.init by lam-ar.init kashida-ar.2; sub lamThreedotsbelow-ar.init by lamThreedotsbelow-ar.init kashida-ar.2; sub lamDotabove-ar.init by lamDotabove-ar.init kashida-ar.2; sub lamBar-ar.init by lamBar-ar.init kashida-ar.2; # @aLam.medi by sub lamVabove-ar.medi by lamVabove-ar.medi kashida-ar.2; sub lamThreedotsabove-ar.medi by lamThreedotsabove-ar.medi kashida-ar.2; sub lam-ar.medi by lam-ar.medi kashida-ar.2; sub lamThreedotsbelow-ar.medi by lamThreedotsbelow-ar.medi kashida-ar.2; sub lamDotabove-ar.medi by lamDotabove-ar.medi kashida-ar.2; sub lamBar-ar.medi by lamBar-ar.medi kashida-ar.2; # @aLam.medi.KafLam sub lamVabove-ar.medi.KafLam by lamVabove-ar.medi.KafLam kashida-ar.2; sub lamThreedotsabove-ar.medi.KafLam by lamThreedotsabove-ar.medi.KafLam kashida-ar.2; sub lam-ar.medi.KafLam by lam-ar.medi.KafLam kashida-ar.2; sub lamThreedotsbelow-ar.medi.KafLam by lamThreedotsbelow-ar.medi.KafLam kashida-ar.2; sub lamDotabove-ar.medi.KafLam by lamDotabove-ar.medi.KafLam kashida-ar.2; sub lamBar-ar.medi.KafLam by lamBar-ar.medi.KafLam kashida-ar.2; # @aLam.medi.KafMemLam sub lamVabove-ar.medi.KafMemLam by lamVabove-ar.medi.KafMemLam kashida-ar.2; sub lamThreedotsabove-ar.medi.KafMemLam by lamThreedotsabove-ar.medi.KafMemLam kashida-ar.2; sub lam-ar.medi.KafMemLam by lam-ar.medi.KafMemLam kashida-ar.2; sub lamThreedotsbelow-ar.medi.KafMemLam by lamThreedotsbelow-ar.medi.KafMemLam kashida-ar.2; sub lamDotabove-ar.medi.KafMemLam by lamDotabove-ar.medi.KafMemLam kashida-ar.2; sub lamBar-ar.medi.KafMemLam by lamBar-ar.medi.KafMemLam kashida-ar.2; # @aLam.medi.LamLamInit sub lamVabove-ar.medi.LamLamInit by lamVabove-ar.medi.LamLamInit kashida-ar.2; sub lamThreedotsabove-ar.medi.LamLamInit by lamThreedotsabove-ar.medi.LamLamInit kashida-ar.2; sub lam-ar.medi.LamLamInit by lam-ar.medi.LamLamInit kashida-ar.2; sub lamThreedotsbelow-ar.medi.LamLamInit by lamThreedotsbelow-ar.medi.LamLamInit kashida-ar.2; sub lamDotabove-ar.medi.LamLamInit by lamDotabove-ar.medi.LamLamInit kashida-ar.2; sub lamBar-ar.medi.LamLamInit by lamBar-ar.medi.LamLamInit kashida-ar.2; sub meem-ar.medi.LamMemInit by meem-ar.medi.LamMemInitTatweel; } LamAynTatweel; # lam [shadda] kasra ayn.fina feature calt { sub [@aLam.init @aLam.medi @aLam.medi.KafLam @aLam.medi.KafMemLam @aLam.medi.LamLamInit @aMem.medi.LamMemInit]' lookup LamAynTatweel [kasratan-ar kasra-ar dotvowelbelow-ar] @aAyn.fina; sub [@aLam.init @aLam.medi @aLam.medi.KafLam @aLam.medi.KafMemLam @aLam.medi.LamLamInit @aMem.medi.LamMemInit]' lookup LamAynTatweel [shadda-ar] [kasratan-ar kasra-ar dotvowelbelow-ar] @aAyn.fina; } calt; #ifdef QURAN # alef lam meem raa (with madda) # we don't get plain aLam.init aMem.fina except in Quran font feature calt { sub @aLam.init' lookup LamKafInit [madda-ar maddalong-ar] @aMem.medi [madda-ar maddalong-ar]; } calt; #endif lookup HehYaaFina { sub @aHeh.medi.BaaHehMedi by @aHeh.medi.HehYaaFina; sub @aHeh.medi.PostTooth by @aHeh.medi.PostToothHehYaa; } HehYaaFina; feature calt { lookupflag IgnoreMarks; sub [@aHeh.medi.PostTooth @aHeh.medi.BaaHehMedi]' lookup HehYaaFina [@aYaa.fina]' lookup BaaYaaFina; } calt; feature calt { lookupflag IgnoreMarks; sub @RaaWaw [alefHamzabelow-ar alefWavyhamzabelow-ar]' by @aAlf.isol.LowHamza; } calt; # insert tatweel between ح and ك in فحك[ملير] lookup FaaHaaKaf { # XXX: sync with classes.fea # sub @aHaa.medi.FaaHaaInit by @aHaa.medi.FaaHaaInit uni0640.1; sub khah-ar.medi.FaaHaaInit by khah-ar.medi.FaaHaaInit kashida-ar.1; sub hah-ar.medi.FaaHaaInit by hah-ar.medi.FaaHaaInit kashida-ar.1; sub hahHamzaabove-ar.medi.FaaHaaInit by hahHamzaabove-ar.medi.FaaHaaInit kashida-ar.1; sub tcheheh-ar.medi.FaaHaaInit by tcheheh-ar.medi.FaaHaaInit kashida-ar.1; sub hahThreedotsabove-ar.medi.FaaHaaInit by hahThreedotsabove-ar.medi.FaaHaaInit kashida-ar.1; sub jeem-ar.medi.FaaHaaInit by jeem-ar.medi.FaaHaaInit kashida-ar.1; sub hahTwodotsverticalabove-ar.medi.FaaHaaInit by hahTwodotsverticalabove-ar.medi.FaaHaaInit kashida-ar.1; sub hahTwodotshorizontalabove-ar.medi.FaaHaaInit by hahTwodotshorizontalabove-ar.medi.FaaHaaInit kashida-ar.1; sub dyeh-ar.medi.FaaHaaInit by dyeh-ar.medi.FaaHaaInit kashida-ar.1; sub hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit by hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit kashida-ar.1; sub hahTahbelow-ar.medi.FaaHaaInit by hahTahbelow-ar.medi.FaaHaaInit kashida-ar.1; sub nyeh-ar.medi.FaaHaaInit by nyeh-ar.medi.FaaHaaInit kashida-ar.1; sub tchehDotabove-ar.medi.FaaHaaInit by tchehDotabove-ar.medi.FaaHaaInit kashida-ar.1; sub hahFourbelow-ar.medi.FaaHaaInit by hahFourbelow-ar.medi.FaaHaaInit kashida-ar.1; sub hahThreedotsupbelow-ar.medi.FaaHaaInit by hahThreedotsupbelow-ar.medi.FaaHaaInit kashida-ar.1; sub hahTahabove-ar.medi.FaaHaaInit by hahTahabove-ar.medi.FaaHaaInit kashida-ar.1; sub tcheh-ar.medi.FaaHaaInit by tcheh-ar.medi.FaaHaaInit kashida-ar.1; } FaaHaaKaf; feature calt { lookupflag IgnoreMarks; sub @aFaa.init.FaaHaaInit @aHaa.medi.FaaHaaInit' lookup FaaHaaKaf [@aKaf.medi.KafHeh @aKaf.medi.KafMemFina @aKaf.medi.KafRaaFina @aKaf.medi.KafYaaFina @aKaf.medi.PreHeh]; } calt; # insert tatweel between ح and ت in [بمسصف]حت[رن] lookup AboveHaaTatweel { # XXX: sync with classes.fea # sub @aHaa.medi.FaaHaaInit by @aHaa.medi.FaaHaaInit uni0640.05; sub khah-ar.medi.FaaHaaInit by khah-ar.medi.FaaHaaInit kashida-ar.05; sub hah-ar.medi.FaaHaaInit by hah-ar.medi.FaaHaaInit kashida-ar.05; sub hahHamzaabove-ar.medi.FaaHaaInit by hahHamzaabove-ar.medi.FaaHaaInit kashida-ar.05; sub tcheheh-ar.medi.FaaHaaInit by tcheheh-ar.medi.FaaHaaInit kashida-ar.05; sub hahThreedotsabove-ar.medi.FaaHaaInit by hahThreedotsabove-ar.medi.FaaHaaInit kashida-ar.05; sub jeem-ar.medi.FaaHaaInit by jeem-ar.medi.FaaHaaInit kashida-ar.05; sub hahTwodotsverticalabove-ar.medi.FaaHaaInit by hahTwodotsverticalabove-ar.medi.FaaHaaInit kashida-ar.05; sub hahTwodotshorizontalabove-ar.medi.FaaHaaInit by hahTwodotshorizontalabove-ar.medi.FaaHaaInit kashida-ar.05; sub dyeh-ar.medi.FaaHaaInit by dyeh-ar.medi.FaaHaaInit kashida-ar.05; sub hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit by hahTahTwodotshorizontalabove-ar.medi.FaaHaaInit kashida-ar.05; sub hahTahbelow-ar.medi.FaaHaaInit by hahTahbelow-ar.medi.FaaHaaInit kashida-ar.05; sub nyeh-ar.medi.FaaHaaInit by nyeh-ar.medi.FaaHaaInit kashida-ar.05; sub tchehDotabove-ar.medi.FaaHaaInit by tchehDotabove-ar.medi.FaaHaaInit kashida-ar.05; sub hahFourbelow-ar.medi.FaaHaaInit by hahFourbelow-ar.medi.FaaHaaInit kashida-ar.05; sub hahThreedotsupbelow-ar.medi.FaaHaaInit by hahThreedotsupbelow-ar.medi.FaaHaaInit kashida-ar.05; sub hahTahabove-ar.medi.FaaHaaInit by hahTahabove-ar.medi.FaaHaaInit kashida-ar.05; sub tcheh-ar.medi.FaaHaaInit by tcheh-ar.medi.FaaHaaInit kashida-ar.05; # sub @aHaa.medi.SadHaaInit by @aHaa.medi.SadHaaInit uni0640.05; sub khah-ar.medi.SadHaaInit by khah-ar.medi.SadHaaInit kashida-ar.05; sub hah-ar.medi.SadHaaInit by hah-ar.medi.SadHaaInit kashida-ar.05; sub hahHamzaabove-ar.medi.SadHaaInit by hahHamzaabove-ar.medi.SadHaaInit kashida-ar.05; sub tcheheh-ar.medi.SadHaaInit by tcheheh-ar.medi.SadHaaInit kashida-ar.05; sub hahThreedotsabove-ar.medi.SadHaaInit by hahThreedotsabove-ar.medi.SadHaaInit kashida-ar.05; sub jeem-ar.medi.SadHaaInit by jeem-ar.medi.SadHaaInit kashida-ar.05; sub hahTwodotsverticalabove-ar.medi.SadHaaInit by hahTwodotsverticalabove-ar.medi.SadHaaInit kashida-ar.05; sub hahTwodotshorizontalabove-ar.medi.SadHaaInit by hahTwodotshorizontalabove-ar.medi.SadHaaInit kashida-ar.05; sub dyeh-ar.medi.SadHaaInit by dyeh-ar.medi.SadHaaInit kashida-ar.05; sub hahTahTwodotshorizontalabove-ar.medi.SadHaaInit by hahTahTwodotshorizontalabove-ar.medi.SadHaaInit kashida-ar.05; sub hahTahbelow-ar.medi.SadHaaInit by hahTahbelow-ar.medi.SadHaaInit kashida-ar.05; sub nyeh-ar.medi.SadHaaInit by nyeh-ar.medi.SadHaaInit kashida-ar.05; sub tchehDotabove-ar.medi.SadHaaInit by tchehDotabove-ar.medi.SadHaaInit kashida-ar.05; sub hahFourbelow-ar.medi.SadHaaInit by hahFourbelow-ar.medi.SadHaaInit kashida-ar.05; sub hahThreedotsupbelow-ar.medi.SadHaaInit by hahThreedotsupbelow-ar.medi.SadHaaInit kashida-ar.05; sub hahTahabove-ar.medi.SadHaaInit by hahTahabove-ar.medi.SadHaaInit kashida-ar.05; sub tcheh-ar.medi.SadHaaInit by tcheh-ar.medi.SadHaaInit kashida-ar.05; } AboveHaaTatweel; feature calt { lookupflag IgnoreMarks; sub [@aHaa.medi.FaaHaaInit @aHaa.medi.SadHaaInit]' lookup AboveHaaTatweel [@aBaa.medi.BaaNonFina @aBaa.medi.BaaRaaFina]; } calt; # When an initial Baa is followed by Alef, the dot clashes with the Hamza below # Alef, Also the marks above the Baa clash with the Alef, so we replace the Baa # with a wider variant. feature calt { lookupflag IgnoreMarks; sub @aBaa.init' lookup BaaInitWide @aAlf.fina; } calt; # If the Alef has no Hamza below, or there is no marks above the Baa, revert to # the original, non-wide form (notice there is no IgnoreMarks flag). feature calt { sub [@aBaa.init.Wide]' [alefMadda-ar.fina alefHamzaabove-ar.fina alef-ar.fina alefWasla-ar.fina alefWavyhamzaabove-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina] by [@aBaa.init]; } calt; # XXX: use a different glyph for PDF text extraction feature calt { script arab; language ARA; lookupflag IgnoreMarks; # Replace teh init following teh/theh medi by a teh init with two vertical # dots. sub teh-ar.init.BaaBaaIsol' [teh-ar.medi.BaaBaaInit theh-ar.medi.BaaBaaInit] by tteheh-ar.init.BaaBaaIsol; sub teh-ar.init.High' [teh-ar.medi.High theh-ar.medi.High] by tteheh-ar.init.High; # Ditto for يبين and co. sub [beh-ar.medi.BaaBaaInit yeh-ar.medi.BaaBaaInit] [yeh-ar.medi.BaaNonFina yeh-ar.medi.BaaRaaFina]' by [e-ar.medi.BaaNonFina e-ar.medi.BaaRaaFina]; } calt; # Insert kashida between final ع and the kasra below the preceding letter # see https://github.com/khaledhosny/quran-data/issues/4 lookup KasraAynFina { sub kasratan-ar by kasratan-ar kashida-ar.2; sub kasra-ar by kasra-ar kashida-ar.2; sub openkasratan-ar by openkasratan-ar kashida-ar.2; sub meembelow-ar by meembelow-ar kashida-ar.3; } KasraAynFina; # and final ح # see https://github.com/aliftype/amiri/issues/162#issuecomment-421769913 lookup KasraHaaFina { sub kasratan-ar by kasratan-ar kashida-ar.1; sub kasra-ar by kasra-ar kashida-ar.1; sub openkasratan-ar by openkasratan-ar kashida-ar.1; sub meembelow-ar by meembelow-ar kashida-ar.2; } KasraHaaFina; feature calt { sub @Tashkil.below' lookup KasraAynFina @aAyn.fina; sub @Tashkil.below' lookup KasraHaaFina @aHaa.fina; } calt; amiri-1.000/sources/digits.fea000066400000000000000000000071051434272261000162420ustar00rootroot00000000000000feature pnum { sub zero by zero.prop; sub one by one.prop; sub two by two.prop; sub three by three.prop; sub four by four.prop; sub five by five.prop; sub six by six.prop; sub seven by seven.prop; sub eight by eight.prop; sub nine by nine.prop; sub zero-ar by zero-ar.prop; sub one-ar by one-ar.prop; sub two-ar by two-ar.prop; sub three-ar by three-ar.prop; sub four-ar by four-ar.prop; sub five-ar by five-ar.prop; sub six-ar by six-ar.prop; sub seven-ar by seven-ar.prop; sub eight-ar by eight-ar.prop; sub nine-ar by nine-ar.prop; sub zeroFarsi-ar by zeroFarsi-ar.prop; sub oneFarsi-ar by oneFarsi-ar.prop; sub twoFarsi-ar by twoFarsi-ar.prop; sub threeFarsi-ar by threeFarsi-ar.prop; sub fourFarsi-ar by fourFarsi-ar.prop; sub fiveFarsi-ar by fiveFarsi-ar.prop; sub sixFarsi-ar by sixFarsi-ar.prop; sub sevenFarsi-ar by sevenFarsi-ar.prop; sub eightFarsi-ar by eightFarsi-ar.prop; sub nineFarsi-ar by nineFarsi-ar.prop; sub fourFarsi-ar.urd by fourFarsi-ar.urd.prop; sub sixFarsi-ar.urd by sixFarsi-ar.urd.prop; sub sevenFarsi-ar.urd by sevenFarsi-ar.urd.prop; } pnum; feature numr { sub zero by zero.numr; sub one by one.numr; sub two by two.numr; sub three by three.numr; sub four by four.numr; sub five by five.numr; sub six by six.numr; sub seven by seven.numr; sub eight by eight.numr; sub nine by nine.numr; sub zero-ar by zero-ar.numr; sub one-ar by one-ar.numr; sub two-ar by two-ar.numr; sub three-ar by three-ar.numr; sub four-ar by four-ar.numr; sub five-ar by five-ar.numr; sub six-ar by six-ar.numr; sub seven-ar by seven-ar.numr; sub eight-ar by eight-ar.numr; sub nine-ar by nine-ar.numr; sub zeroFarsi-ar by zeroFarsi-ar.numr; sub oneFarsi-ar by oneFarsi-ar.numr; sub twoFarsi-ar by twoFarsi-ar.numr; sub threeFarsi-ar by threeFarsi-ar.numr; sub fourFarsi-ar by fourFarsi-ar.numr; sub fiveFarsi-ar by fiveFarsi-ar.numr; sub sixFarsi-ar by sixFarsi-ar.numr; sub sevenFarsi-ar by sevenFarsi-ar.numr; sub eightFarsi-ar by eightFarsi-ar.numr; sub nineFarsi-ar by nineFarsi-ar.numr; sub fourFarsi-ar.urd by fourFarsi-ar.urd.numr; sub sixFarsi-ar.urd by sixFarsi-ar.urd.numr; sub sevenFarsi-ar.urd by sevenFarsi-ar.urd.numr; } numr; feature dnom { sub zero by zero.small; sub one by one.small; sub two by two.small; sub three by three.small; sub four by four.small; sub five by five.small; sub six by six.small; sub seven by seven.small; sub eight by eight.small; sub nine by nine.small; sub zero-ar by zero-ar.small; sub one-ar by one-ar.small; sub two-ar by two-ar.small; sub three-ar by three-ar.small; sub four-ar by four-ar.small; sub five-ar by five-ar.small; sub six-ar by six-ar.small; sub seven-ar by seven-ar.small; sub eight-ar by eight-ar.small; sub nine-ar by nine-ar.small; sub zeroFarsi-ar by zeroFarsi-ar.small; sub oneFarsi-ar by oneFarsi-ar.small; sub twoFarsi-ar by twoFarsi-ar.small; sub threeFarsi-ar by threeFarsi-ar.small; sub fourFarsi-ar by fourFarsi-ar.small; sub fiveFarsi-ar by fiveFarsi-ar.small; sub sixFarsi-ar by sixFarsi-ar.small; sub sevenFarsi-ar by sevenFarsi-ar.small; sub eightFarsi-ar by eightFarsi-ar.small; sub nineFarsi-ar by nineFarsi-ar.small; sub fourFarsi-ar.urd by fourFarsi-ar.urd.small; sub sixFarsi-ar.urd by sixFarsi-ar.urd.small; sub sevenFarsi-ar.urd by sevenFarsi-ar.urd.small; } dnom; amiri-1.000/sources/enclosing.fea000066400000000000000000000077561434272261000167540ustar00rootroot00000000000000# # subtending signs # @Pound = [pound-ar piastre-ar]; lookup digit2small { sub @Digits by @Digits.small; } digit2small; lookup digit2medi { sub @Digits by @Digits.medium; } digit2medi; lookup Sign3 { sub number-ar by number-ar.3; sub pagenumber-ar by pagenumber-ar.3; } Sign3; lookup Sign4 { sub number-ar by number-ar.4; } Sign4; # first we replace any sequence of digits (up to two, three or four places) # following a subtending sign by smaller alternates feature calt { sub [endofayah-ar] @Digits' lookup digit2small @Digits' lookup digit2small @Digits' lookup digit2small; sub [endofayah-ar footnotemarker-ar] @Digits' lookup digit2small @Digits' lookup digit2small; sub [endofayah-ar footnotemarker-ar] @Digits' lookup digit2small; sub [number-ar year-ar samvat-ar]' lookup Sign4 @Digits' lookup digit2medi @Digits' lookup digit2medi @Digits' lookup digit2medi @Digits' lookup digit2medi; sub [number-ar year-ar pagenumber-ar samvat-ar]' lookup Sign3 @Digits' lookup digit2medi @Digits' lookup digit2medi @Digits' lookup digit2medi; sub [number-ar year-ar pagenumber-ar samvat-ar] @Digits' lookup digit2medi @Digits' lookup digit2medi; sub [number-ar year-ar pagenumber-ar samvat-ar] @Digits' lookup digit2medi; } calt; # Then we contextually kern the sign with the digits so that they get enclosed by it # # The kerning amount is calculated this way: # * 1st digit: (sign advance + (digit advance * number of digits)) / 2 # * Subsequent digits subtract digit advance from the position of previous digit # * Δx is is always digit advance. # * If part of the sign (like in number sign) needs to be excluded from the # centering, add it to the sign advance. # feature kern { pos endofayah-ar @Digits.small' <-1079 0 -292 0> @Digits.small' <-786 0 -292 0> @Digits.small' <-493 0 -292 0>; pos endofayah-ar @Digits.small' <-933 0 -292 0> @Digits.small' <-640 0 -292 0>; pos endofayah-ar @Digits.small' <-786 0 -292 0>; pos footnotemarker-ar @Digits.small' <-679 0 -292 0> @Digits.small' <-386 0 -292 0>; pos footnotemarker-ar @Digits.small' <-532 0 -292 0>; pos number-ar.4 @Digits.medium' <-1964 0 -439 0> @Digits.medium' <-1524 0 -439 0> @Digits.medium' <-1085 0 -439 0> @Digits.medium' <-646 0 -439 0>; pos number-ar.3 @Digits.medium' <-1524 0 -439 0> @Digits.medium' <-1085 0 -439 0> @Digits.medium' <-646 0 -439 0>; pos number-ar @Digits.medium' <-1109 0 -439 0> @Digits.medium' <-670 0 -439 0>; pos number-ar @Digits.medium' <-890 0 -439 0>; pos year-ar @Digits.medium' <-1770 0 -439 0> @Digits.medium' <-1331 0 -439 0> @Digits.medium' <-891 0 -439 0> @Digits.medium' <-452 0 -439 0>; pos year-ar @Digits.medium' <-1550 0 -439 0> @Digits.medium' <-1111 0 -439 0> @Digits.medium' <-671 0 -439 0>; pos year-ar @Digits.medium' <-1331 0 -439 0> @Digits.medium' <-891 0 -439 0>; pos year-ar @Digits.medium' <-1111 0 -439 0>; pos pagenumber-ar.3 @Digits.medium' <-1599 0 -439 0> @Digits.medium' <-1160 0 -439 0> @Digits.medium' <-720 0 -439 0>; pos pagenumber-ar @Digits.medium' <-1086 0 -439 0> @Digits.medium' <-647 0 -439 0>; pos pagenumber-ar @Digits.medium' <-867 0 -439 0>; pos samvat-ar @Digits.medium' <-2215 0 -439 0> @Digits.medium' <-1775 0 -439 0> @Digits.medium' <-1336 0 -439 0> @Digits.medium' <-896 0 -439 0>; pos samvat-ar @Digits.medium' <-1995 0 -439 0> @Digits.medium' <-1556 0 -439 0> @Digits.medium' <-1116 0 -439 0>; pos samvat-ar @Digits.medium' <-1775 0 -439 0> @Digits.medium' <-1336 0 -439 0>; pos samvat-ar @Digits.medium' <-1556 0 -439 0>; # pos @Pound @Digits' <-1995 0 -585 0> @Digits' <-1410 0 -585 0> @Digits' <-825 0 -585 0> @Digits' <-240 0 -585 0>; pos @Pound @Digits' <-1702 0 -585 0> @Digits' <-1117 0 -585 0> @Digits' <-532 0 -585 0>; pos @Pound @Digits' <-1410 0 -585 0> @Digits' <-825 0 -585 0>; pos @Pound @Digits' <-1117 0 -585 0>; } kern; amiri-1.000/sources/italic_kerning.fea000066400000000000000000000005201434272261000177330ustar00rootroot00000000000000feature kern { pos [f f_f] [parenright bracketright] 146; pos [f_l f_f_l f_j f_f_j j] [parenright bracketright] 49; pos [F] [parenright bracketright] 49; pos parenleft [f f_f f_i f_j f_l f_b f_k f_f_i f_f_j f_f_l f_f_b f_f_k j y] 98; pos bracketleft [f f_f f_i f_j f_l f_b f_k f_f_i f_f_j f_f_l f_f_b f_f_k j y] 59; } kern; amiri-1.000/sources/kashida.fea000066400000000000000000000045371434272261000163710ustar00rootroot00000000000000feature rlig { lookupflag IgnoreMarks; sub kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar by kashida-ar.7; sub kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar by kashida-ar.6; sub kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar by kashida-ar.5; sub kashida-ar kashida-ar kashida-ar kashida-ar by kashida-ar.4; sub kashida-ar kashida-ar kashida-ar by kashida-ar.3; sub kashida-ar kashida-ar by kashida-ar.2; sub kashida-ar by kashida-ar.1; } rlig; # If we got more kashidas than we have curved variants, break it back into # individual glyphs and replace them by a straight variant to avoid ugly bumps. lookup break_kashida { sub kashida-ar.7 by kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.6 by kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.5 by kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.4 by kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.3 by kashida-ar kashida-ar kashida-ar; sub kashida-ar.2 by kashida-ar kashida-ar; sub kashida-ar.1 by kashida-ar; } break_kashida; @kashida = [kashida-ar @aCurvedKashida]; feature rlig { lookupflag IgnoreMarks; sub @kashida @aCurvedKashida' lookup break_kashida; } rlig; feature rlig { lookupflag IgnoreMarks; sub @aCurvedKashida' lookup break_kashida @kashida; } rlig; # We have a ligature for 3 kashidas followed by alef. feature rlig { lookupflag IgnoreMarks; sub kashida-ar.3 alef-ar.fina by alef-ar.fina.Tatweel; } rlig; feature ss07 { featureNames { name 3 1 0x0409 "Disable curvilinear Kashida"; name 3 1 0x0C01 "تعطيل الكشيدة المقوسة"; }; lookupflag IgnoreMarks; sub kashida-ar.7 by kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.6 by kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.5 by kashida-ar kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.4 by kashida-ar kashida-ar kashida-ar kashida-ar; sub kashida-ar.3 by kashida-ar kashida-ar kashida-ar; sub kashida-ar.2 by kashida-ar kashida-ar; sub kashida-ar.1 by kashida-ar; sub alef-ar.fina.Tatweel by kashida-ar kashida-ar kashida-ar alef-ar.fina; } ss07; amiri-1.000/sources/kerning.fea000066400000000000000000000131061434272261000164120ustar00rootroot00000000000000@Dal_1 = [@aDal.fina @aDal.fina.BaaDal @aDal.fina.KafDal @aDal.fina.LamDal @aDal.isol]; @1st_4 = [@aHeh.isol @aHeh.fina @aHeh.fina.KafHeh @aHeh.fina.LamHeh]; # final alef with no hamza above @Alf_1 = [alef-ar.fina.LamAlfFina alefHamzabelow-ar.fina.LamAlfFina]; @Alf_2 = [@aAlf.fina @aAlf.fina.KafAlf @aAlf.fina.KafMemAlf @aAlf.fina.LamAlfFina @aAlf.fina.LamAlfIsol @aAlf.fina.MemAlfFina]; @Kaf_1 = [@aKaf.init.KafHeh @aKaf.init.KafMemIsol]; @Kaf_2 = [@aKaf.init.KafBaaInit @aKaf.init.KafMemAlf]; @Kaf_3 = [@aKaf.init @aKaf.init.KafLam @aKaf.init.PreHeh @aGaf.isol]; @Kaf_4 = [@aKaf.init.KafYaaIsol]; @Kaf_5 = [@aKaf.init.KafMemInit @aKaf.init.KafRaaIsol]; @Raa_1 = [@RaaWaw @aDal.fina @aDal.isol @aDal.fina.BaaDal @aDal.fina.KafDal @aDal.fina.LamDal]; @Raa_2 = [@aRaa.fina.MemRaaIsol]; @2nd_3 = [@aSen.init.SenHaaInit @aSad.init.SadHaaInit @aLam.init.LamHaaHaaInit]; @2nd_4 = [@aSad.init.AboveHaa @aSen.init.AboveHaa @aHeh.init.AboveHaa @aHaa.init.AboveHaa @aMem.init.AboveHaa @aKaf.init.AboveHaa @aAyn.init.AboveHaa]; @Teh_m = [tehMarbuta-ar.fina.LamHeh tehMarbuta-ar.fina.KafHeh tehMarbutagoal-ar.fina.LamHeh tehMarbutagoal-ar.fina.KafHeh]; # teh marbuta feature kern { # we don't want to kern those if there is tashkil as it touches the kaf pos @RaaWaw @Kaf_1 <-293 0 -293 0>; pos @RaaWaw @Kaf_4 <-146 0 -146 0>; pos @Dal_1 @Kaf_1 <-293 0 -293 0>; pos @Dal_1 @Kaf_4 <-195 0 -195 0>; } kern; feature kern { lookupflag IgnoreMarks; pos @RaaWaw @Kaf_5 <-293 0 -293 0>; pos @RaaWaw [@Kaf_2 @Kaf_3] <-146 0 -146 0>; pos @RaaWaw @2nd_3 <-49 0 -49 0>; pos @RaaWaw @aYaa.init <39 0 39 0>; pos @RaaWaw semicolon-ar <59 0 59 0>; # Arabic semicolon pos @Dal_1 @Kaf_5 <-293 0 -293 0>; pos @Dal_1 [@Kaf_2 @Kaf_3] <-195 0 -195 0>; pos @Raa_2 [@Kaf_2 @Kaf_3 @Kaf_4] <-195 0 -195 0>; pos @Raa_2 [@Kaf_1 @Kaf_5] <-391 0 -391 0>; pos @Raa_2 @2nd_3 <-98 0 -98 0>; pos @Raa_2 @2nd_4 <-195 0 -195 0>; pos @Raa_2 @aBaaDotBelow <88 0 88 0>; # the dots of teh marbuta are very close to exclamation mark pos @Teh_m exclam <73 0 73 0>; } kern; lookup YaaBari3Kern { pos @aAyn.init <0 0 215 0>; pos @aFaa.init <0 0 347 0>; pos @aHeh.init <0 0 195 0>; pos @aLam.init <0 0 466 0>; pos @aMem.init <0 0 254 0>; pos @aSen.init <0 0 73 0>; pos @aTaa.init <0 0 73 0>; pos hehDoachashmee-ar.init <0 0 195 0>; } YaaBari3Kern; feature kern { lookupflag IgnoreMarks; # +ve kern so that the tail of raa/waw does not touch the dot of baa pos [@RaaWaw @AlefHamzaBelow] @aBaaDotBelow <83 0 83 0>; # increase advance width for first glyph in 3-letter Baree Yaa ligatures pos [@aAyn.init @aFaa.init @aHeh.init @aLam.init @aMem.init @aSen.init @aTaa.init hehDoachashmee-ar.init]' lookup YaaBari3Kern @aBaa.medi.YaaBari; } kern; # we don't want to ignore marks here feature kern { pos @Alf_1 [@Kaf_1 @Kaf_5] <-244 0 -244 0>; pos @Alf_1 @Kaf_2 <-98 0 -98 0>; pos @Alf_1 @Kaf_3 <-122 0 -122 0>; pos @Alf_1 @Kaf_4 <-146 0 -146 0>; # raa/waw/dal followed by isolated dagger alef followed by madda needs some # space to avoid fatha/madda clash pos @Raa_1' <98 0 98 0> fatha-ar alefabove-ar.isol [madda-ar maddalong-ar]; pos [hamza-ar]' <98 0 98 0> fatha-ar alefabove-ar.isol; } kern; feature kern { lookupflag IgnoreMarks; # kern heh isol/final followed by kaf, does not happen in Arabic but can be # seen in Kurdish or Persian using ZWNJ between them. pos @1st_4 zerowidthnonjoiner [@Kaf_1 @Kaf_2 @Kaf_3 @Kaf_4 @Kaf_5]' -244; # Uniscribe replace ZWNJ with space pos @1st_4 space [@Kaf_1 @Kaf_2 @Kaf_3 @Kaf_4 @Kaf_5]' -244; # some applications might just remove it pos @1st_4 [@Kaf_1 @Kaf_2 @Kaf_3 @Kaf_4 @Kaf_5]' -244; } kern; #ifndef QURAN feature kern { lookupflag IgnoreMarks; pos period [quotedblleft quoteleft] <-146 0 -146 0>; pos period.latn [quotedblright quoteright] -73; } kern; #endif #ifdef ITALIC feature kern { lookupflag IgnoreMarks; pos @Alf_2 [parenleft bracketleft braceleft] <146 0 146 0>; pos [parenright bracketright braceright] [@Kaf_1 @Kaf_2 @Kaf_4 @Kaf_5] <-49 0 -49 0>; pos [parenright bracketright braceright] [@Kaf_3] <-98 0 -98 0>; pos [braceright] [@Kaf_1 @Kaf_2 @Kaf_4 @Kaf_5] <-98 0 -98 0>; pos [braceright] [@Kaf_3] <-146 0 -146 0>; } kern; #endif # proportional digits feature kern { pos one-ar.prop two-ar.prop -49; pos one-ar.prop three-ar.prop -49; pos one-ar.prop six-ar.prop -98; pos one-ar.prop nine-ar.prop -49; pos two-ar.prop seven-ar.prop 49; pos two-ar.prop eight-ar.prop -24; pos three-ar.prop seven-ar.prop 49; pos four-ar.prop one-ar.prop -24; pos four-ar.prop eight-ar.prop 24; pos six-ar.prop one-ar.prop -24; pos seven-ar.prop one-ar.prop -24; pos seven-ar.prop eight-ar.prop -24; pos eight-ar.prop one-ar.prop -49; pos eight-ar.prop two-ar.prop -49; pos eight-ar.prop three-ar.prop -49; pos eight-ar.prop six-ar.prop -49; pos eight-ar.prop seven-ar.prop -49; pos nine-ar.prop eight-ar.prop 24; pos nine-ar.prop zero-ar.prop 24; pos zero-ar.prop seven-ar.prop 24; pos zero-ar.prop eight-ar.prop 24; } kern; # generated features for anchor points will be inserted here by build script feature curs { # Automatic Code } curs; feature kern { # Automatic Code } kern; feature mark { # Automatic Code } mark; feature mkmk { # Automatic Code } mkmk; # With ss05 on, kasra is below shadda, so move the shadda up a bit to # compensate for the kasra. feature ss05 { pos shadda-ar [kasra-ar.small] <0 103 0 0>; pos shadda-ar [kasratan-ar.small] <0 171 0 0>; } ss05; amiri-1.000/sources/latin.fea000066400000000000000000000014671434272261000160730ustar00rootroot00000000000000feature locl { script latn; sub period by period.latn; sub guillemotleft by guillemotleft.latn; sub guillemotright by guillemotright.latn; sub exclam by exclam.latn; sub parenleft by parenleft.latn; sub parenright by parenright.latn; sub slash by slash.latn; sub bracketleft by bracketleft.latn; sub backslash by backslash.latn; sub bracketright by bracketright.latn; sub braceleft by braceleft.latn; sub bar by bar.latn; sub braceright by braceright.latn; language TRK; sub i by i.TRK; } locl; feature liga { sub f f by f_f; sub f i by f_i; sub f f i by f_f_i; sub f l by f_l; sub f f l by f_f_l; sub f b by f_b; sub f f b by f_f_b; sub f k by f_k; sub f f k by f_f_k; sub f h by f_h; sub f f h by f_f_h; sub f j by f_j; sub f f j by f_f_j; } liga; amiri-1.000/sources/lellah.fea000066400000000000000000000173351434272261000162260ustar00rootroot00000000000000# This code is kind of a big hack. We want to support a special form of name of # Allah, but the sequence can occur in many unrelated # words, showing the special form for those wards is very confusing and can # even be offending to some people. Thus we define explicit contexts, # including Tashkil marks that can't but be the name of Allah and ignore the # special form for any other occurrences, but this is far from being simple. # # The first calt substitutes any [] preceded by a letter # that is known not to be part of any of the allowed words by a regular non # special form. The next block will then substitute the allowed context, given # it meets a certain criteria. # # The idea originated from this forum thread: # https://web.archive.org/web/20120724090018/http://graphics4arab.com/showthread.php?t=3975 # and I just adapted it for Amiri. lookup HehFinaLellah { sub heh-ar.fina by heh-ar.fina.Lellah; sub hehgoal-ar.fina by heh-ar.fina.Lellah; } HehFinaLellah; lookup LamMediFaLellah { sub lam-ar.medi by lam-ar.medi.FaLellah; } LamMediFaLellah; lookup LamInitLellah { sub lam-ar.init by lam-ar.init.Lellah; } LamInitLellah; lookup LamMediLellah { sub lam-ar.medi by lam-ar.medi.Lellah; } LamMediLellah; # [اآٱ] @Ai = [alef-ar alefMadda-ar alefWasla-ar]; # [ا] @Af = [alef-ar.fina alefWasla-ar.fina]; @Hf = [heh-ar.fina hehgoal-ar.fina]; @xF = [fatha-ar alefabove-ar]; #ifdef QURAN # This a stripped down version of the above for use in Amiri Quran, # because here we can safely assume the [] sequence always # mean the name of Allah. feature calt { lookupflag IgnoreMarks; # لله sub lam-ar.init' lookup LamInitLellah lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; # فلله sub [feh-ar.init]' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; } calt; #else lookup LamLamInitX { sub lam-ar.init by lam-ar.init.LamLamInit; sub lam-ar.medi by lam-ar.medi.LamLamInit; } LamLamInitX; # [بت] @aBaa_init = [beh-ar.init teh-ar.init]; @aBaa_medi = [beh-ar.medi teh-ar.medi]; @Ignore = [@aAyn.fina @aAyn.isol @aAlf.isol @aAlf.fina @aBaa.fina @aBaa.isol @aDal.fina @aDal.isol @aFaa.fina @aFaa.isol @aHaa.fina @aHaa.isol @aHeh.fina @aHeh.isol @aKaf.fina @aKaf.isol @aLam.fina @aLam.isol @aMem.fina @aMem.isol @aNon.fina @aNon.isol @aQaf.fina @aQaf.isol @aRaa.fina @aRaa.isol @aSad.fina @aSad.isol @aSen.fina @aSen.isol @aTaa.fina @aTaa.isol @aWaw.fina @aWaw.isol @aYaa.fina @aYaa.isol]; feature calt { lookupflag IgnoreMarks; # Allow الله/ولله/ـالله ignore sub [@Ai @Af waw-ar] lam-ar.init' lam-ar.medi' @Hf; # Supress any remaining *لله sub @Ignore lam-ar.init' lookup LamLamInitX lam-ar.medi' lookup LamLamInitX @Hf; # Allow فوالله ignore sub feh-ar.init waw-ar.fina @Ai' lam-ar.init' lam-ar.medi' @Hf; # Allow والله ignore sub waw-ar @Ai' lam-ar.init' lam-ar.medi' @Hf; # Supress any remaining *الله sub @Ignore @Ai' lam-ar.init' lookup LamLamInitX lam-ar.medi' lookup LamLamInitX @Hf; # Allow فتالله/فبالله ignore sub feh-ar.init @aBaa_medi @Af' lam-ar.init' lam-ar.medi' @Hf; # Allow تالله/بالله/كالله/فالله ignore sub [@aBaa_init kaf-ar.init feh-ar.init] @Af' lam-ar.init' lam-ar.medi' @Hf; # Supress any remaining *ـالله sub @Af' lam-ar.init' lookup LamLamInitX lam-ar.medi' lookup LamLamInitX @Hf; } calt; feature calt { # لله sub lam-ar.init' lookup LamInitLellah lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; # لَلهُ ignore sub @Ai lam-ar.init' fatha-ar' lam-ar.medi' @Hf'; ignore sub @Ai lam-ar.init' fatha-ar' lam-ar.medi' shadda-ar' @Hf'; ignore sub @Ai lam-ar.init' fatha-ar' lam-ar.medi' shadda-ar' @xF' @Hf'; sub lam-ar.init' lookup LamInitLellah fatha-ar' lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah fatha-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah fatha-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; # لِله ignore sub @Ai lam-ar.init' shadda-ar' lam-ar.medi' @Hf'; ignore sub @Ai lam-ar.init' shadda-ar' lam-ar.medi' shadda-ar' @Hf'; ignore sub @Ai lam-ar.init' shadda-ar' lam-ar.medi' shadda-ar' @xF' @Hf'; sub lam-ar.init' lookup LamInitLellah kasra-ar' lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; # لِّله ignore sub @Ai lam-ar.init' shadda-ar' kasra-ar' lam-ar.medi' @Hf'; ignore sub @Ai lam-ar.init' shadda-ar' kasra-ar' lam-ar.medi' shadda-ar' @Hf'; ignore sub @Ai lam-ar.init' shadda-ar' kasra-ar' lam-ar.medi' shadda-ar' @xF' @Hf'; sub lam-ar.init' lookup LamInitLellah shadda-ar' kasra-ar' lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah shadda-ar' kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub lam-ar.init' lookup LamInitLellah shadda-ar' kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; # فلله sub feh-ar.init' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub feh-ar.init' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub feh-ar.init' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; sub feh-ar.init' fatha-ar' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub feh-ar.init' fatha-ar' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub feh-ar.init' fatha-ar' lam-ar.medi' lookup LamMediFaLellah lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; sub feh-ar.init' lam-ar.medi' lookup LamMediFaLellah kasra-ar' lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub feh-ar.init' lam-ar.medi' lookup LamMediFaLellah kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub feh-ar.init' lam-ar.medi' lookup LamMediFaLellah kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; sub feh-ar.init' fatha-ar' lam-ar.medi' lookup LamMediFaLellah kasra-ar' lam-ar.medi' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub feh-ar.init' fatha-ar' lam-ar.medi' lookup LamMediFaLellah kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @Hf' lookup HehFinaLellah; sub feh-ar.init' fatha-ar' lam-ar.medi' lookup LamMediFaLellah kasra-ar' lam-ar.medi' lookup LamMediLellah shadda-ar' @xF' @Hf' lookup HehFinaLellah; } calt; # Now put shadda+dagger alef above the medial lam if there are no marks on it. feature calt { sub lam-ar.medi.Lellah' heh-ar.fina.Lellah by lam-ar.medi.Lellah2; } calt; # This stylistic set removes them. feature ss06 { featureNames { name 3 1 0x0409 "No automatic vowel insertion above name of God"; name 3 1 0x0C01 "لفظ الجلالة بدون شدة وألف صغيرة"; }; sub lam-ar.medi.Lellah2' by lam-ar.medi.Lellah; } ss06; #endifamiri-1.000/sources/local.fea000066400000000000000000000016501434272261000160500ustar00rootroot00000000000000@comma = [comma-ar semicolon-ar]; @comma.alt = [commareversed reversedsemicolon]; feature locl { script arab; language URD exclude_dflt; sub [fourFarsi-ar sixFarsi-ar sevenFarsi-ar] by [fourFarsi-ar.urd sixFarsi-ar.urd sevenFarsi-ar.urd]; sub dammainverted-ar by dammainverted-ar.urd; language KSH exclude_dflt; sub [fourFarsi-ar sixFarsi-ar sevenFarsi-ar] by [fourFarsi-ar.urd sixFarsi-ar.urd sevenFarsi-ar.urd]; sub dammainverted-ar by dammainverted-ar.urd; language SND exclude_dflt; sub [sixFarsi-ar sevenFarsi-ar] by [sixFarsi-ar.urd sevenFarsi-ar.urd]; sub dammainverted-ar by dammainverted-ar.urd; sub @comma by @comma.alt; language MLY exclude_dflt; sub @comma by @comma.alt; } locl; feature ss08 { featureNames { name 3 1 0x0409 "Inverted Arabic comma"; name 3 1 0x0C01 "فاصلة عربية مقلوبة"; }; sub @comma by @comma.alt; } ss08; amiri-1.000/sources/post_mark.fea000066400000000000000000000001141434272261000167470ustar00rootroot00000000000000feature mark { pos [hamza-ar] [dotvowelbelow-ar]' <0 -195 0 0>; } mark; amiri-1.000/sources/quran.fea000066400000000000000000000143341434272261000161070ustar00rootroot00000000000000# # Small letters # # In Quranic orthography, there are two forms of dagger alef; a superscript one # that is a combining mark and a spacing one that is regular alef letter, the # later is represented in Unicode by using NBSP (for isolated) or Kashida (for # medial) before the combining mark. # # Other small letters have an encoded isolated form and only need medial form # with kashida. # Substitute combining small letters by the spacing ones. feature ccmp { sub [nbspace narrownbspace] alefabove-ar by alefabove-ar.isol; sub kashida-ar alefabove-ar by alefabove-ar.medi; sub kashida-ar yehabove-ar by yehabove-ar.medi; sub kashida-ar highwaw-ar by highwaw-ar.medi; sub kashida-ar hamzaabove-ar by hamza-ar.medi; } ccmp; # # Medial hamza # # Hamza should be shaping transparent, just like combining marks, while still # not a combining marks, I call t medial hamza because it "floats" between # adjacent letters. When a hamza comes between two letters that would normally # join, it will be placed between them over a connecting stroke, else it will # just set on the baseline. # # This is not recognized by Unicode, so we have to hack our way in the font to # override shaping decisions by OpenType engine. # # Since the layout engine considers hamza non-joiner, it will break joining # around it, so we simply override this by replacing glyphs around the hamza # with the forms that they would normally take if it was not there, and replace # the hamza wit its medial glyph that has a connecting stroke. @before.isol = [yehHamzaabove-ar beh-ar teh-ar theh-ar jeem-ar hah-ar khah-ar seen-ar sheen-ar sad-ar dad-ar tah-ar zah-ar ain-ar ghain-ar feh-ar qaf-ar kaf-ar lam-ar meem-ar noon-ar heh-ar alefMaksura-ar yeh-ar yehFarsi-ar]; @before.init = [yehHamzaabove-ar.init beh-ar.init teh-ar.init theh-ar.init jeem-ar.init hah-ar.init khah-ar.init seen-ar.init sheen-ar.init sad-ar.init dad-ar.init tah-ar.init zah-ar.init ain-ar.init ghain-ar.init feh-ar.init qaf-ar.init kaf-ar.init lam-ar.init meem-ar.init noon-ar.init heh-ar.init alefMaksura-ar.init yeh-ar.init yehFarsi-ar.init]; @before.medi = [yehHamzaabove-ar.medi beh-ar.medi teh-ar.medi theh-ar.medi jeem-ar.medi hah-ar.medi khah-ar.medi seen-ar.medi sheen-ar.medi sad-ar.medi dad-ar.medi tah-ar.medi zah-ar.medi ain-ar.medi ghain-ar.medi feh-ar.medi qaf-ar.medi kaf-ar.medi lam-ar.medi meem-ar.medi noon-ar.medi heh-ar.medi alefMaksura-ar.medi yeh-ar.medi yehFarsi-ar.medi]; @before.fina = [yehHamzaabove-ar.fina beh-ar.fina teh-ar.fina theh-ar.fina jeem-ar.fina hah-ar.fina khah-ar.fina seen-ar.fina sheen-ar.fina sad-ar.fina dad-ar.fina tah-ar.fina zah-ar.fina ain-ar.fina ghain-ar.fina feh-ar.fina qaf-ar.fina kaf-ar.fina lam-ar.fina meem-ar.fina noon-ar.fina heh-ar.fina alefMaksura-ar.fina yeh-ar.fina yehFarsi-ar.fina]; @after.isol = [alefMadda-ar alefHamzaabove-ar wawHamzaabove-ar alefHamzabelow-ar alef-ar tehMarbuta-ar dal-ar thal-ar reh-ar zain-ar waw-ar]; @after.fina = [alefMadda-ar.fina alefHamzaabove-ar.fina wawHamzaabove-ar.fina alefHamzabelow-ar.fina alef-ar.fina tehMarbuta-ar.fina dal-ar.fina thal-ar.fina reh-ar.fina zain-ar.fina waw-ar.fina]; @before = [@aKashida alefabove-ar.medi yehabove-ar.medi highwaw-ar.medi @before.isol @before.fina]; @after = [@aKashida alefabove-ar.medi yehabove-ar.medi highwaw-ar.medi alef-ar.fina.Tatweel @after.isol @before.isol @before.init]; lookup Before { sub @before.isol by @before.init; sub @before.fina by @before.medi; } Before; lookup After { sub @before.isol by @before.fina; sub @after.isol by @after.fina; sub @before.init by @before.medi; } After; lookup MedialHamza { sub hamza-ar by hamza-ar.medi; } MedialHamza; lookup FloatingHamza { sub hamza-ar by hamza-ar.float; sub hamza-ar.medi by hamza-ar.float; } FloatingHamza; lookup LamAlefIsol { sub lam-ar by lam-ar.init.LamAlfIsol; sub alef-ar by alef-ar.fina.LamAlfIsol; } LamAlefIsol; lookup LamAlefFina { sub lam-ar.fina by lam-ar.medi.LamAlfFina; sub alef-ar by alef-ar.fina.LamAlfFina; } LamAlefFina; feature calt { lookupflag IgnoreMarks; # hamza between lam and alef needs special treatment as it should not have # a connecting stroke to avoid breaking lam-alef. sub lam-ar' lookup LamAlefIsol hamza-ar' lookup FloatingHamza alef-ar' lookup LamAlefIsol; sub lam-ar.fina' lookup LamAlefFina hamza-ar' lookup FloatingHamza alef-ar' lookup LamAlefFina; # Medial hamza. sub @before' lookup Before hamza-ar' lookup MedialHamza @after' lookup After; } calt; # This is the Unicode-sanctioned way of lam-alef with medial hamza. feature ccmp { lookupflag IgnoreMarks; sub lam-ar hamza-ar.medi' lookup FloatingHamza alef-ar; } ccmp; # kern medial hamza between final lam-alef to avoid glyph overlap feature kern { lookupflag IgnoreMarks; pos hamza-ar.float @aAlf.fina.LamAlfFina <-146 0 0 0>; } kern; #ifdef QURAN # If a hamza on yaa or waw is followed by kasra, the hamza goes bellow lookup hamzakasra { sub yehHamzaabove-ar.init by alefMaksura-ar.init hamzabelow-ar; # yaa sub yehHamzaabove-ar.medi by alefMaksura-ar.medi hamzabelow-ar; sub yehHamzaabove-ar.fina by alefMaksura-ar.fina hamzabelow-ar; sub yehHamzaabove-ar by alefMaksura-ar hamzabelow-ar; sub wawHamzaabove-ar.fina by waw-ar.fina hamzabelow-ar; # waw sub wawHamzaabove-ar by waw-ar hamzabelow-ar; } hamzakasra; feature calt { # lookupflag IgnoreMarks; sub [yehHamzaabove-ar yehHamzaabove-ar.init yehHamzaabove-ar.medi yehHamzaabove-ar.fina wawHamzaabove-ar wawHamzaabove-ar.fina]' lookup hamzakasra [kasra-ar kasratan-ar openkasratan-ar]; } calt; #endif # small waw after isolated/final heh is lower than usual, so we use an # alternate glyph for that feature calt { lookupflag IgnoreMarks; sub [@aHeh.isol @aHeh.fina] [wawSmall-ar]' by [wawSmall-ar.low]; } calt; # some glyphs need more room to accommodate madda mark, so we change the advance # width on fly. feature mark { # small waw pos [wawSmall-ar.low] [maddalong-ar] <24 0 122 0>; # alef pos [alef-ar.fina alef-ar.fina.Wide alef-ar.fina.KafMemAlf alef-ar.fina.MemAlfFina] [maddalong-ar] <122 0 122 0>; pos [alef-ar.fina alef-ar.fina.Wide alef-ar.fina.KafMemAlf alef-ar.fina.MemAlfFina] [madda-ar] <171 0 171 0>; pos [alef-ar] [maddalong-ar] <73 0 146 0>; } mark; amiri-1.000/sources/rtlm.fea000066400000000000000000000000661434272261000157340ustar00rootroot00000000000000feature rtlm { sub radical by radical.rtlm; } rtlm; amiri-1.000/sources/stylisticsets.fea000066400000000000000000000065421434272261000177110ustar00rootroot00000000000000# Replace baa glyphs with dot below following a raa or waw by an alternate ones # with low dots. feature ss01 { featureNames { name 3 1 0x0409 "Low Baa dot following a Raa or Waw"; name 3 1 0x0C01 "خفض نقطة الباء المسبوقة براء أو واو"; }; lookupflag IgnoreMarks; sub @RaaWaw @aBaaDotBelow' by @aBaaLowDotBelow; } ss01; # lookup MemAlfFina { sub @aAlf.fina by @aAlf.fina.MemAlfFina; sub @aMem.medi by @aMem.medi.MemAlfFina; sub @aSad.medi by @aSad.medi.PreYaa; sub @aSen.medi by @aSen.medi.PreYaa; sub @aBaa.init.BaaSenInit by @aBaa.init.BaaSenAltInit; sub @aSen.medi.BaaSenInit by @aSen.medi.BaaSenAltInit; } MemAlfFina; lookup MemAlfFinaPostTooth { sub @aMem.medi by @aMem.medi.AlfPostTooth; } MemAlfFinaPostTooth; lookup BaaMemAlfFina { sub @aBaa.medi by @aBaa.medi.BaaMemAlfFina; sub @aMem.medi by @aMem.medi.BaaMemAlfFina; } BaaMemAlfFina; @NoMemAlfFina = [ @aMem.medi @aMem.medi.LamBaaMemInit @aMem.medi.LamMemInit @aMem.medi.LamHaaMemInit @aMem.medi.BaaMemInit @aMem.medi.LamMemMedi @aMem.medi.SenBaaMemInit @aMem.medi.BaaBaaMemInit @aMem.medi.LamMemInitTatweel @aMem.medi.KafMemMedi @aMem.medi.SenMemInit @aHeh.medi.BaaHehMedi @aHeh.medi.PostTooth ]; feature ss02 { featureNames { name 3 1 0x0409 "Alternate medial Meem and final Alef combination"; name 3 1 0x0C01 "شكل بديل للميم المتوسطة مع الألف المنتهية"; }; lookupflag IgnoreMarks; ignore sub @NoMemAlfFina @aMem.medi' @aAlf.fina'; sub @aBaa.medi' lookup BaaMemAlfFina @aMem.medi' lookup BaaMemAlfFina @aAlf.fina' lookup MemAlfFina; sub [@aSad.medi @aSen.medi]' lookup MemAlfFina @aMem.medi' lookup MemAlfFinaPostTooth @aAlf.fina' lookup MemAlfFina; sub @aBaa.init.BaaSenInit' lookup MemAlfFina @aSen.medi.BaaSenInit' lookup MemAlfFina @aMem.medi' lookup MemAlfFinaPostTooth @aAlf.fina' lookup MemAlfFina; sub @aMem.medi' lookup MemAlfFina @aAlf.fina' lookup MemAlfFina; } ss02; #ifndef QURAN feature ss03 { featureNames { name 3 1 0x0409 "Localised @ and & symbols"; name 3 1 0x0C01 "شكل عربي لعلامتي @ و &"; }; sub at by at.ara; sub ampersand by ampersand.ara; } ss03; # alternate Gaf form feature ss04 { featureNames { name 3 1 0x0409 "Alternate, more naskh-like, Gaf form"; name 3 1 0x0C01 "شكل بديل –نسخي– للگاف"; }; sub @aGaf.isol by @aGaf.alt; sub @aGaf.fina by @aGaf.alt.fina; } ss04; lookup dummy { sub kashida-ar.1 by kashida-ar; } dummy; feature ss04 { sub @aLam.init' lookup LamLamInit [kashida-ar.1]' lookup dummy @aGaf.alt.fina' lookup LamLamInit; sub @aLam.medi' lookup LamLamMedi2 [kashida-ar.1]' lookup dummy @aGaf.alt.fina' lookup LamLamMedi; sub [@aKaf.init @aKaf.medi]' lookup KafLam @aGaf.alt.fina' lookup KafLam; } ss04; #endif lookup SSShaddaKasra { sub kasratan-ar by kasratan-ar.small; sub kasra-ar by kasra-ar.small; } SSShaddaKasra; feature ss05 { featureNames { name 3 1 0x0409 "Kasra is placed below Shadda instead of base glyph"; name 3 1 0x0C01 "وضع الكسرة تحت الشدة بدلا من تحت الحرف"; }; sub shadda-ar [kasratan-ar kasra-ar]' lookup SSShaddaKasra; } ss05; # ss06 is used in lellah.fea # ss07 is used in kashida.fea # ss08 is used in local.fea