2
0
visuddhinanda 2 сар өмнө
parent
commit
3bf9c72840

+ 99 - 0
api-v12/app/Http/Controllers/PageIndexController.php

@@ -0,0 +1,99 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use Illuminate\Http\Request;
+
+class PageIndexController extends Controller
+{
+    public function index(){
+        $nav = [
+                [
+                    'title'=>'最新',
+                    'id'=>'new',
+                    'link'=>config('mint.server.dashboard_base_path').'/community/list',
+                ],
+                [
+                    'title'=>'圣典',
+                    'id'=>'pali',
+                    'link'=>config('mint.server.dashboard_base_path').'/palicanon/list',
+                ],
+                [
+                    'title'=>'课程',
+                    'id'=>'course',
+                    'link'=>config('mint.server.dashboard_base_path').'/course/list',
+                ],
+                [
+                    'title'=>'字典',
+                    'id'=>'dict',
+                    'link'=>config('mint.server.dashboard_base_path').'/dict/recent',
+                ],
+                [
+                    'title'=>'文集',
+                    'id'=>'anthology',
+                    'link'=>config('mint.server.dashboard_base_path').'/anthology/list',
+                ],
+                [
+                    'title'=>'注册/登录',
+                    'id'=>'sign_in',
+                    'link'=>config('mint.server.dashboard_base_path').'/anonymous/users/sign-in',
+                ],
+            ];
+        $wish = [
+            [
+                'title'=>'翻译一套三藏',
+                'description'=>'我们希望把完整的巴利三藏、义注、复注、nissaya都翻译成为中文。',
+            ],
+            [
+                'title'=>'整理一本词典',
+                'description'=>'我们希望借助沉淀下来的数据,整理一套完整的巴中字典。这项工作将在整个三藏翻译的过程中逐渐完成。',
+            ],
+            [
+                'title'=>'开发一个平台',
+                'description'=>'我们会持续开发和维护wikipali平台,并不断发展新的功能,令其越来越方便与巴利翻译和研究。',
+            ],
+        ];
+
+        $Gallery = [
+            [
+                'image'=>'/assets/gallery/02.jpg',
+                'title'=>'云台翻译中心',
+                'id'=>'desc_01',
+                'description'=>'远眺翻译中心',
+            ],
+            [
+                'image'=>'/assets/gallery/01.jpg',
+                'title'=>'翻译人才培养',
+                'id'=>'desc_02',
+                'description'=>'翻译中还不断地培养翻译人才,加入到翻译工作中。',
+            ],
+            [
+                'image'=>'/assets/gallery/03.jpg',
+                'title'=>'云台翻译中心',
+                'id'=>'desc_03',
+                'description'=>'外景',
+            ],
+            [
+                'image'=>'/assets/gallery/04.jpg',
+                'title'=>'翻译中心接待室',
+                'id'=>'desc_04',
+                'description'=>'人工湖畔的接待室,访客活动中心',
+            ],
+            [
+                'image'=>'/assets/gallery/05.jpg',
+                'title'=>'办公环境',
+                'id'=>'desc_05',
+                'description'=>'27寸竖屏保证翻译的效率和质量,站坐交替的升降台,保证翻译者的健康。',
+            ],
+        ];
+        return view('typhoon',[
+            'nav'=>$nav,
+            'title' => '巴 利 圣 典 文 库',
+            'subtitle' => '巴利圣典翻译计划欢迎您的参与',
+            'description' => '巴利语学习与翻译工具',
+            'gallery' => $Gallery,
+            'api' => config('app.url').'/api/v2',
+        ]);
+    }
+
+}

+ 81 - 0
api-v12/app/Http/Middleware/SetLocale.php

@@ -0,0 +1,81 @@
+<?php
+
+namespace App\Http\Middleware;
+
+use Closure;
+use Illuminate\Http\Request;
+use Symfony\Component\HttpFoundation\Response;
+use Illuminate\Support\Facades\App;
+use Illuminate\Support\Facades\Cookie;
+
+class SetLocale
+{
+    /**
+     * Handle an incoming request.
+     * @param  \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response)  $next
+     */
+    public function handle(Request $request, Closure $next): Response
+    {
+        // 支持的语言(Laravel 推荐小写 + 标准化)
+        $supportedLocales = ['en', 'zh-hans', 'zh-hant'];
+        $defaultLocale = config('app.locale', 'en');
+
+        // 1️⃣ URL 参数 ?lang=
+        $locale = $request->query('lang');
+
+        // 2️⃣ Cookie
+        if (!$locale) {
+            $locale = Cookie::get('language');
+        }
+
+        // 3️⃣ 浏览器语言
+        if (!$locale) {
+            $locale = $this->getBrowserLocale($request, $supportedLocales);
+        }
+
+        // 4️⃣ 校验
+        if (!in_array($locale, $supportedLocales, true)) {
+            $locale = $defaultLocale;
+        }
+
+        // 5️⃣ 应用语言
+        App::setLocale($locale);
+
+        // 6️⃣ 持久化(可选)
+        session()->put('locale', $locale);
+        Cookie::queue('language', $locale, 60 * 24 * 365); // 1 年
+
+        return $next($request);
+    }
+
+    /**
+     * 从 Accept-Language 头中解析浏览器语言
+     */
+    protected function getBrowserLocale(Request $request, array $supportedLocales): string
+    {
+        $acceptLanguage = $request->header('Accept-Language');
+
+        if (!$acceptLanguage) {
+            return config('app.locale', 'en');
+        }
+
+        // zh-CN,zh;q=0.9,en;q=0.8
+        $languages = array_map(
+            fn($lang) => strtolower(trim(explode(';', $lang)[0])),
+            explode(',', $acceptLanguage)
+        );
+
+        foreach ($languages as $lang) {
+            // zh-cn → zh-hans / zh-hant
+            if (str_starts_with($lang, 'zh')) {
+                return str_contains($lang, 'hant') ? 'zh-hant' : 'zh-hans';
+            }
+
+            if (in_array($lang, $supportedLocales, true)) {
+                return $lang;
+            }
+        }
+
+        return config('app.locale', 'en');
+    }
+}

+ 3228 - 0
api-v12/app/Tools/CaseEnding.php

@@ -0,0 +1,3228 @@
+<?php
+
+namespace App\Tools;
+
+
+class CaseEnding
+{
+    public $ending = [
+        ["ti", "tuṃ", ".v:ind.", ".inf.", 0.99],
+        ["ati", "ituṃ", ".v:ind.", ".inf.", 0.99],
+        ["ati", "itvā", ".v:ind.", ".abs.", 0.99],
+        ["ati", "atvā", ".v:ind.", ".abs.", 0.99],
+        ["ti", "tvā", ".v:ind.", ".abs.", 0.99],
+        ["ant", "antā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["ant", "antā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["ant", "antā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "anta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "antā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "anta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["ant", "antā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["ant", "anta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["ant", "antā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["ant", "anta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["ant", "antā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["ant", "antā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "anta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "antā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "antaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["ant", "antaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["ant", "antaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["ant", "antaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["ant", "antaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["ant", "antaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["ant", "antamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "antamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "antamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "antamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "antamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "antamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "antamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "antamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "antānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["ant", "antānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["ant", "antānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["ant", "antānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["ant", "antānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["ant", "antānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["ant", "antani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["ant", "antāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["ant", "antani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["ant", "antāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["ant", "antani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["ant", "antāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["ant", "antasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "antasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "antasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "antasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "antasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "antasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "antasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "antasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "antassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["ant", "antassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["ant", "antassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["ant", "antassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["ant", "antassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["ant", "antassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["ant", "antassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["ant", "antassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["ant", "ante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["ant", "ante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "ante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["ant", "ante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "antebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["ant", "antebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["ant", "antebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["ant", "antebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["ant", "antehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["ant", "antehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["ant", "antehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["ant", "antehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["ant", "antesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["ant", "antesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["ant", "antesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["ant", "antī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["ant", "antī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["ant", "antī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["ant", "antī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["ant", "antī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["ant", "antībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["ant", "antībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["ant", "antīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["ant", "antīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["ant", "antiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["ant", "antīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["ant", "antīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["ant", "antīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["ant", "antiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["ant", "antiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["ant", "antiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["ant", "antiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["ant", "antiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["ant", "antiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["ant", "antiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["ant", "antiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["ant", "antiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["ant", "anto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["ant", "anto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["ant", "anto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["ant", "anto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["ant", "anto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["ant", "anto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["ant", "atā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "atā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["ant", "atā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "atā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["ant", "atā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["ant", "atā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["ant", "atā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["ant", "atā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["ant", "ataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["ant", "ataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["ant", "ataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["ant", "ataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["ant", "ataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["ant", "ataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["ant", "atena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["ant", "atena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["ant", "atena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["ant", "atena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["ant", "atī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["ant", "atī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["ant", "atī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["ant", "atī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["ant", "atī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["ant", "ati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "ati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "ati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["ant", "ati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["ant", "atībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["ant", "atībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["ant", "atīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["ant", "atīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["ant", "atiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["ant", "atīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["ant", "atīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["ant", "atīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["ant", "atiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["ant", "atiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["ant", "atiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["ant", "atiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["ant", "atiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["ant", "atiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["ant", "atiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["ant", "atiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["ant", "atiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["ant", "ato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["ant", "ato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["ant", "ato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["ant", "ato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["ant", "ato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["ant", "ato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["ant", "ato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["ant", "ato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["anta", "antā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["anta", "antā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["anta", "antā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "anta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "antā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "anta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["anta", "antā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["anta", "anta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["anta", "antā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["anta", "anta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["anta", "antā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["anta", "antā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "anta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "antā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "antaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["anta", "antaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["anta", "antaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["anta", "antaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["anta", "antaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["anta", "antaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["anta", "antamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "antamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "antamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "antamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "antamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "antamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "antamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "antamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "antānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["anta", "antānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["anta", "antānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["anta", "antānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["anta", "antānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["anta", "antānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["anta", "antani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["anta", "antāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["anta", "antani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["anta", "antāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["anta", "antani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["anta", "antāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["anta", "antasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "antasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "antasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "antasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "antasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "antasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "antasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "antasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "antassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["anta", "antassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["anta", "antassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["anta", "antassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["anta", "antassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["anta", "antassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["anta", "antassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["anta", "antassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["anta", "ante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["anta", "ante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "ante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["anta", "ante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "antebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["anta", "antebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["anta", "antebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["anta", "antebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["anta", "antehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["anta", "antehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["anta", "antehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["anta", "antehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["anta", "antesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["anta", "antesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["anta", "antesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["anta", "antī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["anta", "antī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["anta", "antī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["anta", "antī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["anta", "antī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["anta", "antībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["anta", "antībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["anta", "antīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["anta", "antīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["anta", "antiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["anta", "antīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["anta", "antīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["anta", "antīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["anta", "antiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["anta", "antiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["anta", "antiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["anta", "antiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["anta", "antiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["anta", "antiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["anta", "antiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["anta", "antiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["anta", "antiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["anta", "anto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["anta", "anto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["anta", "anto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["anta", "anto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["anta", "anto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["anta", "anto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["anta", "atā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "atā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["anta", "atā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "atā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["anta", "atā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["anta", "atā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["anta", "atā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["anta", "atā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["anta", "ataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["anta", "ataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["anta", "ataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["anta", "ataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["anta", "ataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["anta", "ataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["anta", "atena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["anta", "atena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["anta", "atena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["anta", "atena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["anta", "atī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["anta", "atī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["anta", "atī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["anta", "atī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["anta", "atī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["anta", "ati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "ati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "ati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["anta", "ati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["anta", "atībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["anta", "atībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["anta", "atīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["anta", "atīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["anta", "atiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["anta", "atīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["anta", "atīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["anta", "atīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["anta", "atiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["anta", "atiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["anta", "atiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["anta", "atiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["anta", "atiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["anta", "atiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["anta", "atiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["anta", "atiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["anta", "atiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["anta", "ato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["anta", "ato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["anta", "ato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["anta", "ato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["anta", "ato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["anta", "ato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["anta", "ato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["anta", "ato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mant", "mā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mant", "mā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mant", "mā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mant", "ma", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "mā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mant", "mā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mant", "ma", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "maṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mant", "maṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mant", "maṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mant", "maṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mant", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "mānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mant", "mānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mant", "mantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mant", "mantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mant", "mantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "manta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "mantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mant", "manta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mant", "mantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mant", "manta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mant", "mantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mant", "manta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mant", "mantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mant", "mantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "manta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "mantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mant", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mant", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mant", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mant", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mant", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mant", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mant", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "mantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mant", "mantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mant", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mant", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mant", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mant", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mant", "mantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mant", "mantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mant", "mantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mant", "mantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mant", "mantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mant", "mantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mant", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mant", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mant", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mant", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mant", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mant", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mant", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mant", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mant", "mante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["mant", "mante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mant", "mante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "mantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mant", "mantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mant", "mantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["mant", "mantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["mant", "mantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mant", "mantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mant", "mantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["mant", "mantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["mant", "mantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["mant", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["mant", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["mant", "mantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mant", "mantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mant", "mantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mant", "mantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["mant", "mantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["mant", "mantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mant", "mantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mant", "mantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mant", "mantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mant", "mantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["mant", "mantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["mant", "mantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["mant", "mantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["mant", "mantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["mant", "mantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["mant", "mantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["mant", "mantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["mant", "mantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mant", "mantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mant", "mantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mant", "mantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mant", "mantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mant", "manto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mant", "manto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mant", "manto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mant", "manto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mant", "manto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mant", "manto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mant", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mant", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mant", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mant", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mant", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mant", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mant", "mataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mant", "mataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mant", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mant", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mant", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mant", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mant", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mant", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mant", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mant", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mant", "matī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mant", "matī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mant", "matī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mant", "matī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["mant", "matī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["mant", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mant", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mant", "matībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mant", "matībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mant", "matīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mant", "matīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mant", "matiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["mant", "matīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["mant", "matīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["mant", "matīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["mant", "matiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["mant", "matiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["mant", "matiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["mant", "matiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["mant", "matiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mant", "matiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mant", "matiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mant", "matiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mant", "matiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mant", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mant", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mant", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mant", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mant", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mant", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mant", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mant", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mant", "me", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["mant", "mebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mant", "mebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mant", "mehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mant", "mehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mant", "mesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vant", "vā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vant", "vā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vant", "vā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vant", "va", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vant", "vā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vant", "va", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vant", "vaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vant", "vaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vant", "vaṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vant", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vant", "vānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vant", "vantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vant", "vantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vant", "vantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vanta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vant", "vanta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vant", "vantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vant", "vanta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vant", "vantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vant", "vanta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vant", "vantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vant", "vantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vanta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vant", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vant", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vant", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vant", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vant", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vant", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vant", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vant", "vantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vant", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vant", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vant", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vant", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vant", "vantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vant", "vantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vant", "vantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vant", "vantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vant", "vantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vant", "vantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vant", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vant", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vant", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vant", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vant", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vant", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vant", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vant", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vant", "vante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vant", "vante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vant", "vante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vant", "vantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vant", "vantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vant", "vantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vant", "vantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vant", "vantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vant", "vantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vant", "vantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vant", "vantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vant", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vant", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vant", "vantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vant", "vantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vant", "vantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vant", "vantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vant", "vantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vant", "vantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vant", "vantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vant", "vantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vant", "vantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vant", "vantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vant", "vantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vant", "vantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vant", "vantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vant", "vantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vant", "vantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vant", "vantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vant", "vantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vant", "vantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vant", "vantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vant", "vantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vant", "vantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vant", "vantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vant", "vanto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vant", "vanto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vant", "vanto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vant", "vanto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vant", "vanto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vant", "vanto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vant", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vant", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vant", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vant", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vant", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vant", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vant", "vataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vant", "vataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vant", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vant", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vant", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vant", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vant", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vant", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vant", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vant", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vant", "vatī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vant", "vatī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vant", "vatī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vant", "vatī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vant", "vatī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vant", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vant", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vant", "vatībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vant", "vatībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vant", "vatīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vant", "vatīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vant", "vatiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vant", "vatīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vant", "vatīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vant", "vatīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vant", "vatiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vant", "vatiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vant", "vatiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vant", "vatiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vant", "vatiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vant", "vatiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vant", "vatiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vant", "vatiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vant", "vatiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vant", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vant", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vant", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vant", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vant", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vant", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vant", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vant", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vant", "ve", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vant", "vebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vant", "vebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vant", "vehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vant", "vehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vant", "vesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["mantu", "mā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mantu", "mā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mantu", "mā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mantu", "ma", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "mā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mantu", "mā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mantu", "ma", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "maṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mantu", "maṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mantu", "maṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mantu", "maṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mantu", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "mānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mantu", "mānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mantu", "mantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mantu", "mantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mantu", "mantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "manta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "mantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mantu", "manta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mantu", "mantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mantu", "manta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mantu", "mantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mantu", "manta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mantu", "mantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mantu", "mantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "manta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "mantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mantu", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mantu", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mantu", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mantu", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mantu", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mantu", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mantu", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "mantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mantu", "mantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mantu", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mantu", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mantu", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mantu", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mantu", "mantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mantu", "mantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mantu", "mantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mantu", "mantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mantu", "mantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mantu", "mantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mantu", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mantu", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mantu", "mante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["mantu", "mante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mantu", "mante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "mantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mantu", "mantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mantu", "mantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["mantu", "mantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["mantu", "mantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mantu", "mantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mantu", "mantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["mantu", "mantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["mantu", "mantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["mantu", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["mantu", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["mantu", "mantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mantu", "mantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mantu", "mantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mantu", "mantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["mantu", "mantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["mantu", "mantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mantu", "mantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mantu", "mantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mantu", "mantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mantu", "mantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["mantu", "mantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["mantu", "mantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["mantu", "mantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["mantu", "mantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["mantu", "mantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["mantu", "mantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["mantu", "mantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["mantu", "mantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mantu", "mantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mantu", "mantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mantu", "mantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mantu", "mantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mantu", "manto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mantu", "manto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mantu", "manto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mantu", "manto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mantu", "manto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mantu", "manto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mantu", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mantu", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mantu", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mantu", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mantu", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mantu", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mantu", "mataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mantu", "mataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mantu", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mantu", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mantu", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mantu", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mantu", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mantu", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mantu", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mantu", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mantu", "matī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mantu", "matī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mantu", "matī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mantu", "matī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["mantu", "matī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["mantu", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mantu", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mantu", "matībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mantu", "matībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mantu", "matīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mantu", "matīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mantu", "matiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["mantu", "matīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["mantu", "matīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["mantu", "matīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["mantu", "matiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["mantu", "matiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["mantu", "matiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["mantu", "matiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["mantu", "matiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mantu", "matiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mantu", "matiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mantu", "matiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mantu", "matiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mantu", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mantu", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mantu", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mantu", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mantu", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mantu", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mantu", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mantu", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mantu", "me", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["mantu", "mebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mantu", "mebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mantu", "mehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mantu", "mehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mantu", "mesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vantu", "vā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vantu", "vā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vantu", "vā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vantu", "va", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vantu", "vā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vantu", "va", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vantu", "vaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vantu", "vaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vantu", "vaṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vantu", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vantu", "vānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vantu", "vantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vantu", "vantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vantu", "vantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vanta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vantu", "vanta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vantu", "vantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vantu", "vanta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vantu", "vantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vantu", "vanta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vantu", "vantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vantu", "vantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vanta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vantu", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vantu", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vantu", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vantu", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vantu", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vantu", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vantu", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vantu", "vantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vantu", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vantu", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vantu", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vantu", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vantu", "vantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vantu", "vantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vantu", "vantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vantu", "vantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vantu", "vantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vantu", "vantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vantu", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vantu", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vantu", "vante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vantu", "vante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vantu", "vante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vantu", "vantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vantu", "vantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vantu", "vantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vantu", "vantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vantu", "vantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vantu", "vantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vantu", "vantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vantu", "vantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vantu", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vantu", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vantu", "vantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vantu", "vantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vantu", "vantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vantu", "vantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vantu", "vantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vantu", "vantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vantu", "vantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vantu", "vantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vantu", "vantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vantu", "vantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vantu", "vantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vantu", "vantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vantu", "vantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vantu", "vantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vantu", "vantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vantu", "vantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vantu", "vantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vantu", "vantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vantu", "vantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vantu", "vantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vantu", "vantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vantu", "vantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vantu", "vanto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vantu", "vanto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vantu", "vanto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vantu", "vanto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vantu", "vanto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vantu", "vanto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vantu", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vantu", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vantu", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vantu", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vantu", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vantu", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vantu", "vataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vantu", "vataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vantu", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vantu", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vantu", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vantu", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vantu", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vantu", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vantu", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vantu", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vantu", "vatī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vantu", "vatī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vantu", "vatī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vantu", "vatī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vantu", "vatī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vantu", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vantu", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vantu", "vatībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vantu", "vatībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vantu", "vatīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vantu", "vatīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vantu", "vatiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vantu", "vatīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vantu", "vatīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vantu", "vatīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vantu", "vatiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vantu", "vatiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vantu", "vatiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vantu", "vatiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vantu", "vatiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vantu", "vatiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vantu", "vatiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vantu", "vatiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vantu", "vatiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vantu", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vantu", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vantu", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vantu", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vantu", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vantu", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vantu", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vantu", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vantu", "ve", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vantu", "vebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vantu", "vebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vantu", "vehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vantu", "vehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vantu", "vesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["mat", "mā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mat", "mā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mat", "mā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mat", "ma", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "mā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mat", "mā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mat", "ma", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "maṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mat", "maṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mat", "maṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mat", "maṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mat", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "mānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mat", "mānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mat", "mantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mat", "mantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mat", "mantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "manta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "mantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["mat", "manta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mat", "mantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mat", "manta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mat", "mantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mat", "manta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mat", "mantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mat", "mantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "manta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "mantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["mat", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mat", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mat", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mat", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mat", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["mat", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["mat", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "mantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mat", "mantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mat", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mat", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mat", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mat", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mat", "mantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mat", "mantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mat", "mantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mat", "mantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mat", "mantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mat", "mantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mat", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mat", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mat", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mat", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mat", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mat", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mat", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mat", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mat", "mante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["mat", "mante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["mat", "mante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "mantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mat", "mantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mat", "mantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["mat", "mantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["mat", "mantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mat", "mantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mat", "mantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["mat", "mantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["mat", "mantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["mat", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["mat", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["mat", "mantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mat", "mantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mat", "mantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mat", "mantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["mat", "mantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["mat", "mantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mat", "mantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mat", "mantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mat", "mantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mat", "mantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["mat", "mantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["mat", "mantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["mat", "mantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["mat", "mantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["mat", "mantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["mat", "mantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["mat", "mantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["mat", "mantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mat", "mantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mat", "mantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mat", "mantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mat", "mantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mat", "manto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["mat", "manto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["mat", "manto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["mat", "manto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["mat", "manto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["mat", "manto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["mat", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mat", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mat", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["mat", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mat", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["mat", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mat", "mataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["mat", "mataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["mat", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mat", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mat", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["mat", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["mat", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mat", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mat", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["mat", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["mat", "matī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mat", "matī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mat", "matī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mat", "matī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["mat", "matī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["mat", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["mat", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["mat", "matībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mat", "matībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mat", "matīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["mat", "matīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["mat", "matiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["mat", "matīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["mat", "matīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["mat", "matīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["mat", "matiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["mat", "matiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["mat", "matiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["mat", "matiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["mat", "matiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mat", "matiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["mat", "matiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["mat", "matiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["mat", "matiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["mat", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mat", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mat", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mat", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mat", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["mat", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["mat", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["mat", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["mat", "me", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["mat", "mebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mat", "mebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mat", "mehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["mat", "mehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["mat", "mesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vat", "vā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vat", "vā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vat", "vā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vat", "va", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vat", "vā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vat", "va", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vat", "vaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vat", "vaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vat", "vaṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vat", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vat", "vānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vat", "vantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vat", "vantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vat", "vantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vanta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vat", "vanta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vat", "vantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vat", "vanta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vat", "vantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vat", "vanta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vat", "vantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vat", "vantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vanta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vat", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vat", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vat", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vat", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vat", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vat", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vat", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vat", "vantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vat", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vat", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vat", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vat", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vat", "vantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vat", "vantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vat", "vantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vat", "vantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vat", "vantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vat", "vantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vat", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vat", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vat", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vat", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vat", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vat", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vat", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vat", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vat", "vante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vat", "vante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vat", "vante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vat", "vantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vat", "vantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vat", "vantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vat", "vantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vat", "vantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vat", "vantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vat", "vantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vat", "vantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vat", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vat", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vat", "vantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vat", "vantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vat", "vantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vat", "vantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vat", "vantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vat", "vantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vat", "vantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vat", "vantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vat", "vantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vat", "vantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vat", "vantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vat", "vantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vat", "vantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vat", "vantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vat", "vantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vat", "vantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vat", "vantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vat", "vantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vat", "vantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vat", "vantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vat", "vantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vat", "vantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vat", "vanto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vat", "vanto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vat", "vanto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vat", "vanto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vat", "vanto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vat", "vanto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vat", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vat", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vat", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vat", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vat", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vat", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vat", "vataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vat", "vataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vat", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vat", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vat", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vat", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vat", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vat", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vat", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vat", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vat", "vatī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vat", "vatī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vat", "vatī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vat", "vatī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vat", "vatī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vat", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vat", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vat", "vatībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vat", "vatībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vat", "vatīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vat", "vatīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vat", "vatiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vat", "vatīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vat", "vatīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vat", "vatīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vat", "vatiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vat", "vatiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vat", "vatiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vat", "vatiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vat", "vatiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vat", "vatiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vat", "vatiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vat", "vatiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vat", "vatiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vat", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vat", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vat", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vat", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vat", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vat", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vat", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vat", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vat", "ve", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vat", "vebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vat", "vebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vat", "vehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vat", "vehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vat", "vesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["manta", "mā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["manta", "mā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["manta", "mā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["manta", "ma", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "mā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["manta", "mā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["manta", "ma", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "mā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "mā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "maṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["manta", "maṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["manta", "maṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["manta", "maṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["manta", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "maṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "maṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "mānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["manta", "mānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["manta", "mantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["manta", "mantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["manta", "mantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "manta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "mantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["manta", "manta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["manta", "mantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["manta", "manta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["manta", "mantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["manta", "manta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["manta", "mantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["manta", "mantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "manta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "mantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["manta", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["manta", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["manta", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["manta", "mantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["manta", "mantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["manta", "mantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["manta", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "mantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "mantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "mantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "mantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["manta", "mantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["manta", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["manta", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["manta", "mantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["manta", "mantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["manta", "mantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["manta", "mantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["manta", "mantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["manta", "mantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["manta", "mantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["manta", "mantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["manta", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "mantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "mantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "mantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["manta", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["manta", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["manta", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["manta", "mantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["manta", "mantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["manta", "mantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["manta", "mantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["manta", "mante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["manta", "mante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["manta", "mante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "mantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["manta", "mantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["manta", "mantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["manta", "mantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["manta", "mantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["manta", "mantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["manta", "mantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["manta", "mantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["manta", "mantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["manta", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["manta", "mantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["manta", "mantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["manta", "mantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["manta", "mantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["manta", "mantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["manta", "mantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["manta", "mantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["manta", "mantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["manta", "mantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["manta", "mantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["manta", "mantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["manta", "mantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["manta", "mantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["manta", "mantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["manta", "mantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["manta", "mantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["manta", "mantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["manta", "mantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["manta", "mantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["manta", "mantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["manta", "mantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["manta", "mantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["manta", "mantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["manta", "manto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["manta", "manto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["manta", "manto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["manta", "manto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["manta", "manto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["manta", "manto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["manta", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["manta", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["manta", "matā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["manta", "matā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["manta", "matā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["manta", "matā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["manta", "mataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["manta", "mataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["manta", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["manta", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["manta", "mataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["manta", "mataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["manta", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["manta", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["manta", "matena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["manta", "matena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["manta", "matī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["manta", "matī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["manta", "matī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["manta", "matī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["manta", "matī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["manta", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "mati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["manta", "mati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["manta", "matībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["manta", "matībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["manta", "matīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["manta", "matīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["manta", "matiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["manta", "matīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["manta", "matīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["manta", "matīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["manta", "matiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["manta", "matiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["manta", "matiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["manta", "matiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["manta", "matiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["manta", "matiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["manta", "matiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["manta", "matiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["manta", "matiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["manta", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["manta", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["manta", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["manta", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["manta", "mato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["manta", "mato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["manta", "mato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["manta", "mato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["manta", "me", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["manta", "mebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["manta", "mebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["manta", "mehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["manta", "mehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["manta", "mesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vanta", "vā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vanta", "vā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vanta", "vā", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vanta", "va", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vanta", "vā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vanta", "va", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vanta", "vaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vanta", "vaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vanta", "vaṃ", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vanta", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vaṃ", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vaṃ", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vanta", "vānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vanta", "vantā", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vanta", "vantā", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vanta", "vantā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vanta", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vantā", ".ti.", ".m.$.sg.$.voc.", 0.3],
+        ["vanta", "vanta", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vanta", "vantā", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vanta", "vanta", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vanta", "vantā", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vanta", "vanta", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vanta", "vantā", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vanta", "vantā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vanta", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vantā", ".ti.", ".nt.$.sg.$.voc.", 0.3],
+        ["vanta", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vanta", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vanta", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vanta", "vantaṃ", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vanta", "vantaṃ", ".ti.", ".m.$.sg.$.acc.", 0.99],
+        ["vanta", "vantaṃ", ".ti.", ".nt.$.sg.$.acc.", 0.99],
+        ["vanta", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vantamhā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vantamhā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vantamhi", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vantamhi", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vantānaṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vanta", "vantānaṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vanta", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vanta", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vanta", "vantānaṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vanta", "vantānaṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vanta", "vantani", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vanta", "vantāni", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vanta", "vantani", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vanta", "vantāni", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vanta", "vantani", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vanta", "vantāni", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vanta", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vantasmā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vantasmā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vantasmiṃ", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vantasmiṃ", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vanta", "vantassa", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vanta", "vante", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vanta", "vante", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vante", ".ti.", ".nt.$.pl.$.acc.", 0.99],
+        ["vanta", "vante", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vantebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vanta", "vantebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vanta", "vantebhi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vanta", "vantebhi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vanta", "vantehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vanta", "vantehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vanta", "vantehi", ".ti.", ".nt.$.pl.$.abl.", 0.99],
+        ["vanta", "vantehi", ".ti.", ".nt.$.pl.$.inst.", 0.99],
+        ["vanta", "vantesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["vanta", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vanta", "vantesu", ".ti.", ".nt.$.pl.$.loc.", 0.99],
+        ["vanta", "vantī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vanta", "vantī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vanta", "vantī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vanta", "vantī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vanta", "vantī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vanta", "vantībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vanta", "vantībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vanta", "vantīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vanta", "vantīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vanta", "vantiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vanta", "vantīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vanta", "vantīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vanta", "vantīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vanta", "vantiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vanta", "vantiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vanta", "vantiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vanta", "vantiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vanta", "vantiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vanta", "vantiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vanta", "vantiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vanta", "vantiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vanta", "vantiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vanta", "vanto", ".ti.", ".m.$.pl.$.nom.", 0.99],
+        ["vanta", "vanto", ".ti.", ".m.$.pl.$.voc.", 0.3],
+        ["vanta", "vanto", ".ti.", ".m.$.sg.$.nom.", 0.99],
+        ["vanta", "vanto", ".ti.", ".nt.$.pl.$.nom.", 0.99],
+        ["vanta", "vanto", ".ti.", ".nt.$.pl.$.voc.", 0.3],
+        ["vanta", "vanto", ".ti.", ".nt.$.sg.$.nom.", 0.99],
+        ["vanta", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vanta", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vanta", "vatā", ".ti.", ".m.$.sg.$.abl.", 0.99],
+        ["vanta", "vatā", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vanta", "vatā", ".ti.", ".nt.$.sg.$.abl.", 0.99],
+        ["vanta", "vatā", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vanta", "vataṃ", ".ti.", ".m.$.pl.$.dat.", 0.99],
+        ["vanta", "vataṃ", ".ti.", ".m.$.pl.$.gen.", 0.99],
+        ["vanta", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vanta", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vanta", "vataṃ", ".ti.", ".nt.$.pl.$.dat.", 0.99],
+        ["vanta", "vataṃ", ".ti.", ".nt.$.pl.$.gen.", 0.99],
+        ["vanta", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vanta", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vanta", "vatena", ".ti.", ".m.$.sg.$.inst.", 0.99],
+        ["vanta", "vatena", ".ti.", ".nt.$.sg.$.inst.", 0.99],
+        ["vanta", "vatī", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vanta", "vatī", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vanta", "vatī", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vanta", "vatī", ".ti.", ".f.$.sg.$.nom.", 0.99],
+        ["vanta", "vatī", ".ti.", ".f.$.sg.$.voc.", 0.3],
+        ["vanta", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vati", ".ti.", ".m.$.sg.$.loc.", 0.99],
+        ["vanta", "vati", ".ti.", ".nt.$.sg.$.loc.", 0.99],
+        ["vanta", "vatībhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vanta", "vatībhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vanta", "vatīhi", ".ti.", ".f.$.pl.$.abl.", 0.99],
+        ["vanta", "vatīhi", ".ti.", ".f.$.pl.$.inst.", 0.99],
+        ["vanta", "vatiṃ", ".ti.", ".f.$.sg.$.acc.", 0.99],
+        ["vanta", "vatīnaṃ", ".ti.", ".f.$.pl.$.dat.", 0.99],
+        ["vanta", "vatīnaṃ", ".ti.", ".f.$.pl.$.gen.", 0.99],
+        ["vanta", "vatīsu", ".ti.", ".f.$.pl.$.loc.", 0.99],
+        ["vanta", "vatiyā", ".ti.", ".f.$.sg.$.abl.", 0.99],
+        ["vanta", "vatiyā", ".ti.", ".f.$.sg.$.dat.", 0.99],
+        ["vanta", "vatiyā", ".ti.", ".f.$.sg.$.gen.", 0.99],
+        ["vanta", "vatiyā", ".ti.", ".f.$.sg.$.inst.", 0.99],
+        ["vanta", "vatiyā", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vanta", "vatiyaṃ", ".ti.", ".f.$.sg.$.loc.", 0.99],
+        ["vanta", "vatiyo", ".ti.", ".f.$.pl.$.acc.", 0.99],
+        ["vanta", "vatiyo", ".ti.", ".f.$.pl.$.nom.", 0.99],
+        ["vanta", "vatiyo", ".ti.", ".f.$.pl.$.voc.", 0.3],
+        ["vanta", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vanta", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vanta", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vanta", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vanta", "vato", ".ti.", ".m.$.sg.$.dat.", 0.99],
+        ["vanta", "vato", ".ti.", ".m.$.sg.$.gen.", 0.99],
+        ["vanta", "vato", ".ti.", ".nt.$.sg.$.dat.", 0.99],
+        ["vanta", "vato", ".ti.", ".nt.$.sg.$.gen.", 0.99],
+        ["vanta", "ve", ".ti.", ".m.$.pl.$.acc.", 0.99],
+        ["vanta", "vebhi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vanta", "vebhi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vanta", "vehi", ".ti.", ".m.$.pl.$.abl.", 0.99],
+        ["vanta", "vehi", ".ti.", ".m.$.pl.$.inst.", 0.99],
+        ["vanta", "vesu", ".ti.", ".m.$.pl.$.loc.", 0.99],
+        ["a", "o", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["a", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["a", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["a", "aṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["a", "assa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["a", "assa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["a", "āya", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["a", "ena", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["a", "ā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["a", "asmā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["a", "amhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["a", "ato", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["a", "e", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["a", "asmiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["a", "amhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["a", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["a", "āse", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["a", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["a", "e", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["a", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["a", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["a", "ehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["a", "ebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["a", "ehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["a", "ebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["a", "esu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["a", "aṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["a", "a", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["a", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["a", "assa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["a", "assa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["a", "āya", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["a", "ena", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["a", "ā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["a", "asmā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["a", "amhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["a", "ato", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["a", "e", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["a", "asmiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["a", "amhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["a", "āni", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["a", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["a", "āni", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["a", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["a", "āni", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["a", "e", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["a", "ānaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["a", "ānaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["a", "ehi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["a", "ebhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["a", "ehi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["a", "ebhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["a", "esu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["a", "esaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["a", "esaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["a", "esaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["a", "esaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["ā", "ā", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["ā", "ā", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ā", "e", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ā", "aṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["ā", "āya", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ā", "āya", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ā", "āya", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ā", "āya", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ā", "ato", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ā", "āya", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ā", "āyaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ā", "ā", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ā", "āyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ā", "ā", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ā", "āyo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ā", "ā", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ā", "āyo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ā", "ānaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ā", "ānaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ā", "āhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ā", "ābhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ā", "āhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ā", "ābhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ā", "āsu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["i", "i", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["i", "i", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["i", "iṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["i", "issa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["i", "ino", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["i", "issa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["i", "ino", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["i", "inā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["i", "inā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["i", "ismā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["i", "imhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["i", "ismiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["i", "imhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["i", "ī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["i", "ayo", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["i", "ī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["i", "ayo", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["i", "ī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["i", "ayo", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["i", "īnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["i", "īnaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["i", "īhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "ībhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "īhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "ībhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "īsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["i", "i", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["i", "i", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["i", "iṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["i", "assa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["i", "ino", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["i", "assa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["i", "ino", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["i", "inā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["i", "inā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["i", "ismā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["i", "imhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["i", "ismiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["i", "imhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["i", "īni", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["i", "ī", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["i", "īni", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["i", "ī", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["i", "īni", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["i", "ī", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["i", "īnaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["i", "īnaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["i", "īhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "ībhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "īhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "ībhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "īsu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["i", "i", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["i", "i", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["i", "iṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["i", "iyā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["i", "yā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["i", "iyā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["i", "yā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["i", "iyā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["i", "yā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["i", "iyā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["i", "yā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["i", "iyā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["i", "yā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["i", "iyaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["i", "yaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["i", "ī", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["i", "iyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["i", "yo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["i", "ī", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["i", "iyo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["i", "yo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["i", "ī", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["i", "iyo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["i", "yo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["i", "īnaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["i", "īnaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["i", "īhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["i", "ībhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["i", "īhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["i", "ībhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["i", "īsu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ī", "ī", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["in", "ī", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["ī", "ī", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ī", "inī", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["in", "ī", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["in", "inī", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ī", "iṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ī", "inaṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["in", "iṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["in", "inaṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ī", "issa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ī", "ino", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["in", "issa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["in", "ino", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ī", "issa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ī", "ino", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["in", "issa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["in", "ino", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ī", "inā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["in", "inā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ī", "inā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ī", "ismā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ī", "imhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["in", "inā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["in", "ismā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["in", "imhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ī", "ismiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ī", "imhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["in", "ismiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["in", "imhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ī", "ī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ī", "ino", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["in", "ī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["in", "ino", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ī", "ī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ī", "ino", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["in", "ī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["in", "ino", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ī", "ī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ī", "ino", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["in", "ī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["in", "ino", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ī", "inaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["in", "inaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ī", "inaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["in", "inaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ī", "īhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ī", "ībhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["in", "īhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["in", "ībhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ī", "īhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ī", "ībhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["in", "īhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["in", "ībhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ī", "īsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["in", "īsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ī", "ī", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["ī", "ī", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ī", "iṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["ī", "iyā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ī", "ayā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ī", "yā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ī", "iyā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ī", "ayā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ī", "yā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ī", "iyā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ī", "ayā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ī", "yā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ī", "iyā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ī", "ayā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ī", "yā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ī", "iyā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ī", "ayā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ī", "yā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ī", "iyaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ī", "ayaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ī", "yaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ī", "ī", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ī", "iyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ī", "yo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ī", "ī", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ī", "iyo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ī", "yo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ī", "ī", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ī", "iyo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ī", "yo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ī", "īnaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ī", "īnaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ī", "īhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ī", "ībhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ī", "īhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ī", "ībhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ī", "īsu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["u", "u", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["u", "u", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["u", "uṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["u", "ussa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["u", "uno", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["u", "ussa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["u", "uno", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["u", "unā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["u", "unā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["u", "usmā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["u", "umhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["u", "usmiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["u", "umhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["u", "ū", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["u", "avo", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["u", "ū", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["u", "avo", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["u", "ave", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["u", "ū", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["u", "avo", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["u", "ūnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["u", "ūnaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["u", "ūhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["u", "ūbhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["u", "ūhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["u", "ūbhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["u", "ūsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["u", "u", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["u", "u", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["u", "uṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["u", "ussa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["u", "uno", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["u", "ussa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["u", "uno", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["u", "unā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["u", "unā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["u", "usmā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["u", "umhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["u", "usmiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["u", "umhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["u", "ū", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["u", "ūni", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["u", "ū", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["u", "ūni", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["u", "ū", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["u", "ūni", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["u", "ūnaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["u", "ūnaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["u", "ūhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["u", "ūbhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["u", "ūhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["u", "ūbhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["u", "ūsu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["u", "u", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["u", "u", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["u", "uṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["u", "uyā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["u", "uyā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["u", "uyā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["u", "uyā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["u", "uto", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["u", "uyā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["u", "uyaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["u", "ū", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["u", "uyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["u", "ūvo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["u", "ū", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["u", "uyo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["u", "ū", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["u", "uyo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["u", "ūnaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["u", "ūnaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["u", "ūhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["u", "ūbhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["u", "ūhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["u", "ūbhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["u", "ūsu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ū", "ū", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["ū", "ū", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ū", "uṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ū", "ussa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ū", "uno", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ū", "ussa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ū", "uno", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ū", "unā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ū", "unā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ū", "usmā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ū", "umhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ū", "usmiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ū", "umhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ū", "ū", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ū", "avo", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ū", "ū", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ū", "avo", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ū", "ave", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ū", "ū", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ū", "avo", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ū", "ūnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ū", "ūnaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ū", "ūhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ū", "ūbhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ū", "ūhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ū", "ūbhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ū", "ūsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ū", "ū", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["ū", "ū", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ū", "uṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["ū", "uyā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ū", "uyā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ū", "uyā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ū", "uyā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ū", "uto", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ū", "uyā", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ū", "uyaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ū", "ū", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ū", "uyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ū", "ū", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ū", "uyo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ū", "ū", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ū", "uyo", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ū", "ūnaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ū", "ūnaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ū", "ūhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ū", "ūbhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ū", "ūhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ū", "ūbhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ū", "ūsu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["as", "o", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["as", "aṃ", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["o", "o", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["o", "aṃ", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["as", "o", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["as", "aṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["as", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["as", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["o", "o", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["o", "aṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["o", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["o", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["as", "o", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["as", "aṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["o", "o", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["o", "aṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["as", "aso", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["as", "assa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["o", "aso", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["o", "assa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["as", "aso", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["as", "assa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["o", "aso", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["o", "assa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["as", "asā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["as", "ena", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["o", "asā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["o", "ena", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["as", "asā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["as", "asmā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["as", "amhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["as", "ā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["o", "asā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["o", "asmā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["o", "amhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["o", "ā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["as", "asi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["as", "e", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["as", "asmiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["as", "amhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["o", "asi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["o", "e", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["o", "asmiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["o", "amhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["as", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["o", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["o", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["as", "e", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["o", "e", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["o", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["as", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["o", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["as", "ehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["as", "ebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["o", "ehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["o", "ebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["as", "ehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["as", "ebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["o", "ehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["o", "ebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["as", "esu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["o", "esu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["as", "o", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["as", "aṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["o", "o", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["o", "aṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["as", "o", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["as", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["as", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["as", "a", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["o", "o", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["o", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["o", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["o", "a", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["as", "o", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["as", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["o", "o", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["o", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["as", "aso", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["as", "assa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["o", "aso", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["o", "assa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["as", "aso", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["as", "assa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["o", "aso", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["o", "assa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["as", "asā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["as", "ena", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["o", "asā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["o", "ena", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["as", "asā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["as", "asmā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["as", "amhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["as", "ā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["o", "asā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["o", "asmā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["o", "amhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["o", "ā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["as", "asi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "e", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "asmiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "amhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["o", "asi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["o", "e", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["o", "asmiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["o", "amhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["o", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["as", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["o", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["as", "e", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["o", "e", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["as", "ānaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["o", "ānaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["as", "ānaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["o", "ānaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["as", "ehi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["as", "ebhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["o", "ehi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["o", "ebhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["as", "ehi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["as", "ebhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["o", "ehi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["o", "ebhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["as", "esu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["o", "esu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["an", "ā", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["an", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["an", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["an", "aṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["an", "ānaṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["an", "anaṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["an", "assa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["an", "ano", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["an", "assa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["an", "ano", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["an", "ena", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["an", "anā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["an", "anā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["an", "asmā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["an", "amhā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["an", "ani", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["an", "asmiṃ", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["an", "amhi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["an", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["an", "āno", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["an", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["an", "āno", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["an", "āno", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["an", "e", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["an", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["an", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["an", "anehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "anebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "anehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["an", "anebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["an", "anesu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "aṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["an", "a", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["an", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["an", "assa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["an", "assa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["an", "āya", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["an", "ena", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["an", "ā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["an", "asmā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["an", "amhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["an", "ato", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["an", "e", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["an", "asmiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["an", "amhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["an", "āni", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["an", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["an", "āni", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["an", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["an", "āni", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["an", "e", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["an", "ānaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["an", "ānaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["an", "ehi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["an", "ebhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["an", "ehi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["an", "ebhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["an", "esu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["ar", "ā", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["ar", "ā", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ar", "aṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["ar", "assa", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ar", "ino", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ar", "assa", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ar", "ino", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ar", "ena", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ar", "inā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ar", "asmā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ar", "amhā", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ar", "ini", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ar", "asmiṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ar", "amhi", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ar", "ā", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ar", "āno", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ar", "ā", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ar", "āno", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["ar", "ā", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ar", "āno", ".n.", ".f.$.pl.$.acc.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ar", "ehi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ar", "āhi", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ar", "ehi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ar", "āhi", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ar", "esu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ar", "āsu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ar", "ā", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["ar", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["ar", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["ar", "assa", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["ar", "ino", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["ar", "assa", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["ar", "ino", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["ar", "ena", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["ar", "inā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["ar", "asmā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["ar", "amhā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["ar", "ini", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["ar", "asmiṃ", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["ar", "amhi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["ar", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["ar", "āno", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["ar", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["ar", "āno", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["ar", "ā", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["ar", "āno", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["ar", "ehi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["ar", "āhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["ar", "ehi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["ar", "āhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["ar", "esu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["ar", "āsu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["a", "e", ".n.", ".m.$.sg.$.nom.", 0.3],
+        ["a", "ā", ".n.", ".m.$.sg.$.inst.", 0.2],
+        ["a", "asā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["a", "ā", ".n.", ".m.$.sg.$.dat.", 0.2],
+        ["a", "āya", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["a", "ā", ".n.", ".m.$.sg.$.gen.", 0.2],
+        ["a", "asi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["a", "e", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["a", "āse", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["a", "o", ".n.", ".m.$.pl.$.nom.", 0.3],
+        ["a", "ān", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["a", "e", ".n.", ".m.$.pl.$.inst.", 0.3],
+        ["a", "ato", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["a", "e", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["a", "ā", ".n.", ".nt.$.sg.$.inst.", 0.2],
+        ["a", "asā", ".n.", ".nt.$.sg.$.inst.", 0.2],
+        ["a", "ā", ".n.", ".nt.$.sg.$.dat.", 0.2],
+        ["a", "asi", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["a", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["a", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["a", "āya", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["a", "ā", ".n.", ".nt.$.sg.$.gen.", 0.2],
+        ["a", "o", ".n.", ".nt.$.pl.$.acc.", 0.3],
+        ["a", "ato", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["ā", "ā", ".n.", ".f.$.sg.$.inst.", 0.2],
+        ["ā", "āto", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ā", "a", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ā", "iyo", ".n.", ".f.$.pl.$.voc.", 0.3],
+        ["i", "e", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["i", "ito", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["i", "e", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["i", "ini", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["i", "e", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["i", "iyo", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["i", "ino", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["i", "iyo", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["i", "ihi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "ibhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "inaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["i", "ihi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "ibhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "inaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["i", "isu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["i", "iyo", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["i", "ihi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "ibhi", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "ihi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "ibhi", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "inaṃ", ".n.", ".nt.$.pl.$.gen.", 0.99],
+        ["i", "inaṃ", ".n.", ".nt.$.pl.$.dat.", 0.99],
+        ["i", "isu", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["i", "iṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["i", "i", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["i", "e", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["i", "ito", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["i", "e", ".n.", ".nt.$.sg.$.gen.", 0.2],
+        ["i", "ini", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["i", "e", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["i", "iṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["i", "ī", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["i", "ito", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["i", "myā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["i", "āyaṃ", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["i", "u", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["i", "ī", ".n.", ".f.$.sg.$.voc.", 0.3],
+        ["ī", "ini", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ī", "īnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ī", "īnaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ī", "īsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ī", "i", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["ī", "iyo", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ī", "iye", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ī", "iyaṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ī", "ito", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ī", "i", ".n.", ".f.$.sg.$.nom.", 0.99],
+        ["ī", "iyaṃ", ".n.", ".f.$.sg.$.acc.", 0.99],
+        ["ī", "ito", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ī", "īto", ".n.", ".f.$.sg.$.abl.", 0.99],
+        ["ī", "āyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ī", "āyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ī", "āyo", ".n.", ".f.$.pl.$.nom.", 0.99],
+        ["ī", "inaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ī", "inaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ī", "īyanaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ī", "īyanaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ī", "iyanaṃ", ".n.", ".f.$.pl.$.gen.", 0.99],
+        ["ī", "iyanaṃ", ".n.", ".f.$.pl.$.dat.", 0.99],
+        ["ī", "isu", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ar", "ā", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["ar", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ar", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ar", "araṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ar", "āraṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ar", "u", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ar", "ussa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ar", "uno", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ar", "u", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ar", "ussa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ar", "uno", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ar", "arā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ar", "ara", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ar", "āra", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ar", "ārā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ar", "unā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["ar", "arā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ar", "ara", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ar", "āra", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ar", "ārā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ar", "unā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["ar", "ari", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ar", "āro", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ar", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ar", "āro", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ar", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ar", "āro", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ar", "āre", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ar", "ārānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ar", "ūnaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ar", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ar", "ārānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ar", "ūnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ar", "ārehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ar", "ārebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ar", "ārehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ar", "ārebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ar", "āresu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ar", "ūsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ar", "āyo", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ar", "iyo", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["an", "ane", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["an", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["an", "ubhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "ūbhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "uhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "ūhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "ūnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["an", "ūnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["an", "esu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "ūsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "usu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "a", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["an", "a", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["an", "anā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["an", "unā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["an", "no", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["an", "unā", ".n.", ".nt.$.sg.$.abl.", 0.99],
+        ["an", "no", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["an", "ani", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["an", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["as", "āni", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ā", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "āni", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "āni", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["as", "āni", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ā", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "āni", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "āni", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["as", "āni", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ā", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "āni", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "āni", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["us", "u", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["us", "uṃ", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["us", "u", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["us", "uṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["us", "u", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["us", "uṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["us", "ussa", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["us", "uno", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["us", "ussa", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["us", "uno", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["us", "unā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["us", "usā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["us", "unā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["us", "usā", ".n.", ".m.$.sg.$.abl.", 0.99],
+        ["us", "uni", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["us", "usi", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["us", "ū", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["us", "ūni", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["us", "ū", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["us", "ūni", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["us", "ū", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["us", "ūni", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["us", "ūnaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["us", "ūsaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["us", "ūnaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["us", "ūsaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["us", "ūhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["us", "ūbhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["us", "ūhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["us", "ūbhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["us", "ūsu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["a", "assā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["a", "assā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["a", "enā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["a", "amhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["a", "ehī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["a", "ebhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["a", "ehī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["a", "ebhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["a", "esū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["a", "assā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["a", "assā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["a", "enā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["a", "amhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["a", "ānī", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["a", "ānī", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["a", "ānī", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["a", "ehī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["a", "ebhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["a", "ehī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["a", "ebhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["a", "esū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["ā", "āhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ā", "ābhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ā", "āhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ā", "ābhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ā", "āsū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["i", "issā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["i", "issā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["i", "imhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["i", "īhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "ībhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "īhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "ībhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "īsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["i", "assā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["i", "assā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["i", "imhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["i", "īnī", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["i", "īnī", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["i", "īnī", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["i", "īhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "ībhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "īhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "ībhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "īsū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["i", "īhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["i", "ībhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["i", "īhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["i", "ībhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["i", "īsū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ī", "issā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["in", "issā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ī", "issā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["in", "issā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ī", "imhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["in", "imhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ī", "īhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ī", "ībhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["in", "īhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["in", "ībhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ī", "īhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ī", "ībhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["in", "īhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["in", "ībhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ī", "īsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["in", "īsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ī", "īhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ī", "ībhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ī", "īhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ī", "ībhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ī", "īsū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["u", "ussā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["u", "ussā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["u", "umhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["u", "ūhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["u", "ūbhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["u", "ūhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["u", "ūbhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["u", "ūsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["u", "ussā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["u", "ussā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["u", "umhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["u", "ūnī", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["u", "ūnī", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["u", "ūnī", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["u", "ūhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["u", "ūbhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["u", "ūhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["u", "ūbhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["u", "ūsū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["u", "ūhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["u", "ūbhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["u", "ūhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["u", "ūbhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["u", "ūsū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ū", "ussā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ū", "ussā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ū", "umhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ū", "ūhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ū", "ūbhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ū", "ūhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ū", "ūbhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ū", "ūsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ū", "ūhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ū", "ūbhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ū", "ūhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ū", "ūbhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ū", "ūsū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["as", "assā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["o", "assā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["as", "assā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["o", "assā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["as", "enā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["o", "enā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["as", "asī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["as", "amhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["o", "asī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["o", "amhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["as", "ehī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["as", "ebhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["o", "ehī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["o", "ebhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["as", "ehī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["as", "ebhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["o", "ehī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["o", "ebhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["as", "esū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["o", "esū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["as", "assā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["o", "assā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["as", "assā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["o", "assā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["as", "enā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["o", "enā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["as", "asī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "amhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["o", "asī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["o", "amhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "ehī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["as", "ebhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["o", "ehī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["o", "ebhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["as", "ehī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["as", "ebhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["o", "ehī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["o", "ebhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["as", "esū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["o", "esū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["an", "assā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["an", "assā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["an", "enā", ".n.", ".m.$.sg.$.inst.", 0.99],
+        ["an", "anī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["an", "amhī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["an", "anehī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "anebhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "anehī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["an", "anebhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["an", "anesū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "assā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["an", "assā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["an", "enā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["an", "amhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["an", "ānī", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["an", "ānī", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["an", "ānī", ".n.", ".nt.$.pl.$.acc.", 0.99],
+        ["an", "ehī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["an", "ebhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["an", "ehī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["an", "ebhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["an", "esū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["ar", "assā", ".n.", ".f.$.sg.$.gen.", 0.99],
+        ["ar", "assā", ".n.", ".f.$.sg.$.dat.", 0.99],
+        ["ar", "enā", ".n.", ".f.$.sg.$.inst.", 0.99],
+        ["ar", "amhī", ".n.", ".f.$.sg.$.loc.", 0.99],
+        ["ar", "ehī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ar", "āhī", ".n.", ".f.$.pl.$.inst.", 0.99],
+        ["ar", "ehī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ar", "āhī", ".n.", ".f.$.pl.$.abl.", 0.99],
+        ["ar", "esū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ar", "āsū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ar", "assā", ".n.", ".nt.$.sg.$.gen.", 0.99],
+        ["ar", "assā", ".n.", ".nt.$.sg.$.dat.", 0.99],
+        ["ar", "enā", ".n.", ".nt.$.sg.$.inst.", 0.99],
+        ["ar", "amhī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["ar", "ehī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["ar", "āhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["ar", "ehī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["ar", "āhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["ar", "esū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["ar", "āsū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["a", "asī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["a", "asī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["i", "ihī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "ibhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["i", "ihī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "ibhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["i", "isū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["i", "ihī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "ibhī", ".n.", ".nt.$.pl.$.inst.", 0.99],
+        ["i", "ihī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "ibhī", ".n.", ".nt.$.pl.$.abl.", 0.99],
+        ["i", "isū", ".n.", ".nt.$.pl.$.loc.", 0.99],
+        ["ī", "īsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ī", "isū", ".n.", ".f.$.pl.$.loc.", 0.99],
+        ["ar", "ussā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["ar", "ussā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["ar", "arī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["ar", "ārehī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ar", "ārebhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ar", "ārehī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ar", "ārebhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ar", "āresū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ar", "ūsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "ubhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "ūbhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "uhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "ūhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["an", "esū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "ūsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "usū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["an", "anī", ".n.", ".nt.$.sg.$.loc.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["as", "ānī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["as", "ānī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["as", "ānī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["us", "ussā", ".n.", ".m.$.sg.$.dat.", 0.99],
+        ["us", "ussā", ".n.", ".m.$.sg.$.gen.", 0.99],
+        ["us", "unī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["us", "usī", ".n.", ".m.$.sg.$.loc.", 0.99],
+        ["us", "ūnī", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["us", "ūnī", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["us", "ūnī", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["us", "ūhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["us", "ūbhī", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["us", "ūhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["us", "ūbhī", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["us", "ūsū", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ant", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["ant", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["ant", "ā", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["ant", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["ant", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["ant", "a", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "aṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["ant", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["ant", "aṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["ant", "aṃ", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["ant", "aṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "aṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["ant", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["ant", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["ant", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["ant", "e", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["ant", "ebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ant", "ebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ant", "ehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["ant", "ehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["ant", "esu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["anta", "ā", ".n.", ".m.$.pl.$.nom.", 0.99],
+        ["anta", "ā", ".n.", ".m.$.pl.$.voc.", 0.3],
+        ["anta", "ā", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["anta", "a", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "ā", ".n.", ".nt.$.pl.$.nom.", 0.99],
+        ["anta", "ā", ".n.", ".nt.$.pl.$.voc.", 0.3],
+        ["anta", "a", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "ā", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "ā", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "aṃ", ".n.", ".m.$.sg.$.acc.", 0.99],
+        ["anta", "aṃ", ".n.", ".nt.$.sg.$.acc.", 0.99],
+        ["anta", "aṃ", ".n.", ".nt.$.sg.$.nom.", 0.99],
+        ["anta", "aṃ", ".n.", ".m.$.sg.$.nom.", 0.99],
+        ["anta", "aṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "aṃ", ".n.", ".m.$.sg.$.voc.", 0.3],
+        ["anta", "aṃ", ".n.", ".nt.$.sg.$.voc.", 0.3],
+        ["anta", "ānaṃ", ".n.", ".m.$.pl.$.dat.", 0.99],
+        ["anta", "ānaṃ", ".n.", ".m.$.pl.$.gen.", 0.99],
+        ["anta", "e", ".n.", ".m.$.pl.$.acc.", 0.99],
+        ["anta", "ebhi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["anta", "ebhi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["anta", "ehi", ".n.", ".m.$.pl.$.abl.", 0.99],
+        ["anta", "ehi", ".n.", ".m.$.pl.$.inst.", 0.99],
+        ["anta", "esu", ".n.", ".m.$.pl.$.loc.", 0.99],
+        ["ti", "ti", ".v.", ".3p.$.sg.$.pres.", 0.99],
+        ["ti", "nti", ".v.", ".3p.$.pl.$.pres.", 0.99],
+        ["ti", "te", ".v.", ".3p.$.sg.$.pres.", 0.99],
+        ["ti", "nte", ".v.", ".3p.$.pl.$.pres.", 0.99],
+        ["ti", "re", ".v.", ".3p.$.pl.$.pres.", 0.99],
+        ["ti", "ssati", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["ti", "ssanti", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["ti", "ssate", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["ti", "ssante", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["ti", "ssare", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["ti", "tu", ".v.", ".3p.$.sg.$.imp.", 0.99],
+        ["ti", "ntu", ".v.", ".3p.$.pl.$.imp.", 0.99],
+        ["ti", "taṃ", ".v.", ".3p.$.sg.$.imp.", 0.99],
+        ["ti", "ntaṃ", ".v.", ".3p.$.pl.$.imp.", 0.99],
+        ["ti", "sā", ".v.", ".3p.$.sg.$.cond.", 0.99],
+        ["ti", "ssa", ".v.", ".3p.$.sg.$.cond.", 0.99],
+        ["ti", "ssati", ".v.", ".3p.$.sg.$.cond.", 0.99],
+        ["ti", "ssaṃsu", ".v.", ".3p.$.pl.$.cond.", 0.99],
+        ["ti", "ssatha", ".v.", ".3p.$.sg.$.cond.", 0.99],
+        ["ti", "ssiṃsu", ".v.", ".3p.$.pl.$.cond.", 0.99],
+        ["ti", "si", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ti", "sī", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ti", "sā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ti", "siṃsu", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ti", "sṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ti", "suṃū", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ti", "sā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ti", "sa", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ti", "stthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ti", "satthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ti", "mi", ".v.", ".1p.$.sg.$.pres.", 0.99],
+        ["ti", "ma", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ti", "e", ".v.", ".1p.$.sg.$.pres.", 0.99],
+        ["ti", "mhe", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ti", "mahe", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ti", "mha", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ti", "mase", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ti", "mhase", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ti", "ssāmi", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["ti", "ssāma", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["ti", "ssaṃ", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["ti", "ssāmhe", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["ti", "ssāmase", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["ti", "mi", ".v.", ".1p.$.sg.$.imp.", 0.99],
+        ["ti", "ma", ".v.", ".1p.$.pl.$.imp.", 0.99],
+        ["ti", "ssa", ".v.", ".1p.$.sg.$.cond.", 0.99],
+        ["ti", "ssamhā", ".v.", ".1p.$.pl.$.cond.", 0.99],
+        ["ti", "ssaṃ", ".v.", ".1p.$.sg.$.cond.", 0.99],
+        ["ti", "ssāmhase", ".v.", ".1p.$.pl.$.cond.", 0.99],
+        ["ti", "siṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ti", "saṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ti", "sṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ti", "sa", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ti", "sā", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ti", "simha", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["ti", "simhā", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["ti", "sa", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ti", "simhe", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["ti", "si", ".v.", ".2p.$.sg.$.pres.", 0.99],
+        ["ti", "tha", ".v.", ".2p.$.pl.$.pres.", 0.99],
+        ["ti", "se", ".v.", ".2p.$.sg.$.pres.", 0.99],
+        ["ti", "vhe", ".v.", ".2p.$.pl.$.pres.", 0.99],
+        ["ti", "ssasi", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["ti", "ssatha", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["ti", "ssase", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["ti", "ssavhe", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["ti", "hi", ".v.", ".2p.$.sg.$.imp.", 0.99],
+        ["ti", "ta", ".v.", ".2p.$.pl.$.imp.", 0.99],
+        ["ti", "ssu", ".v.", ".2p.$.sg.$.imp.", 0.99],
+        ["ti", "vho", ".v.", ".2p.$.pl.$.imp.", 0.99],
+        ["ti", "se", ".v.", ".2p.$.sg.$.cond.", 0.99],
+        ["ti", "ssa", ".v.", ".2p.$.sg.$.cond.", 0.99],
+        ["ti", "ssasi", ".v.", ".2p.$.sg.$.cond.", 0.99],
+        ["ti", "ssatha", ".v.", ".2p.$.pl.$.cond.", 0.99],
+        ["ti", "ssase", ".v.", ".2p.$.sg.$.cond.", 0.99],
+        ["ti", "ssavhe", ".v.", ".2p.$.pl.$.cond.", 0.99],
+        ["ti", "si", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ti", "so", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ti", "sā", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ti", "sttha", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["ti", "sse", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ti", "svhaṃ", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["ti", "eyya", ".v.", ".3p.$.sg.$.opt.", 0.99],
+        ["ati", "eyyuṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["ati", "etha", ".v.", ".3p.$.sg.$.opt.", 0.99],
+        ["ati", "eraṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["ati", "issati", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["ati", "issanti", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["ati", "issate", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["ati", "issante", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["ati", "issare", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["ati", "i", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ati", "ī", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ati", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ati", "iṃsu", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ati", "ṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ati", "uṃū", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ati", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ati", "a", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["ati", "tthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ati", "atthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["ati", "āmi", ".v.", ".1p.$.sg.$.pres.", 0.99],
+        ["ati", "āma", ".v.", ".1p.$.pl.$.pres.", 0.99],
+        ["ati", "e", ".v.", ".1p.$.sg.$.imp.", 0.99],
+        ["ati", "āmase", ".v.", ".1p.$.pl.$.imp.", 0.99],
+        ["ati", "eyyāmi", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["ati", "eyyāma", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["ati", "eyyaṃ", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["ati", "eyyāmhe", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["ati", "issāmi", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["ati", "issāma", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["ati", "issaṃ", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["ati", "issāmhe", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["ati", "issāmase", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["ati", "iṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ati", "aṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ati", "ṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ati", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ati", "ā", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ati", "imha", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["ati", "imhā", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["ati", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["ati", "imhe", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["ati", "eyyāsi", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["ati", "eyyātha", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["ati", "etho", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["ati", "eyyavho", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["ati", "issasi", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["ati", "issatha", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["ati", "issase", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["ati", "issavhe", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["ati", "i", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ati", "o", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ati", "ā", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ati", "ttha", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["ati", "se", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["ati", "vhaṃ", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["āti", "etha", ".v.", ".3p.$.sg.$.opt.", 0.99],
+        ["āti", "eraṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["āti", "issati", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["āti", "issanti", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["āti", "issate", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["āti", "issante", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["āti", "issare", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["āti", "i", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["āti", "ī", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["āti", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["āti", "iṃsu", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["āti", "ṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["āti", "uṃū", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["āti", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["āti", "a", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["āti", "tthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["āti", "atthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["āti", "e", ".v.", ".1p.$.sg.$.imp.", 0.99],
+        ["āti", "āmase", ".v.", ".1p.$.pl.$.imp.", 0.99],
+        ["āti", "eyyuṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["āti", "eyyāmi", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["āti", "eyyāma", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["āti", "eyyaṃ", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["āti", "eyyāmhe", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["āti", "issāmi", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["āti", "issāma", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["āti", "issaṃ", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["āti", "issāmhe", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["āti", "issāmase", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["āti", "iṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["āti", "aṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["āti", "ṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["āti", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["āti", "ā", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["āti", "imha", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["āti", "imhā", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["āti", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["āti", "imhe", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["āti", "eyyāsi", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["āti", "eyyātha", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["āti", "etho", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["āti", "eyyavho", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["āti", "issasi", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["āti", "issatha", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["āti", "issase", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["āti", "issavhe", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["āti", "i", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["āti", "o", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["āti", "ā", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["āti", "ttha", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["āti", "se", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["āti", "vhaṃ", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["eti", "etha", ".v.", ".3p.$.sg.$.opt.", 0.99],
+        ["eti", "eraṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["eti", "issati", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["eti", "issanti", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["eti", "issate", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["eti", "issante", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["eti", "issare", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["eti", "i", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["eti", "ī", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["eti", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["eti", "iṃsu", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["eti", "ṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["eti", "uṃū", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["eti", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["eti", "a", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["eti", "tthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["eti", "atthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["eti", "e", ".v.", ".1p.$.sg.$.imp.", 0.99],
+        ["eti", "āmase", ".v.", ".1p.$.pl.$.imp.", 0.99],
+        ["eti", "eyyāmi", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["eti", "eyyuṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["eti", "eyyāma", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["eti", "eyyaṃ", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["eti", "eyyāmhe", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["eti", "issāmi", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["eti", "issāma", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["eti", "issaṃ", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["eti", "issāmhe", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["eti", "issāmase", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["eti", "iṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["eti", "aṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["eti", "ṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["eti", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["eti", "ā", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["eti", "imha", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["eti", "imhā", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["eti", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["eti", "imhe", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["eti", "eyyāsi", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["eti", "eyyātha", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["eti", "etho", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["eti", "eyyavho", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["eti", "issasi", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["eti", "issatha", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["eti", "issase", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["eti", "issavhe", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["eti", "i", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["eti", "o", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["eti", "ā", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["eti", "ttha", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["eti", "se", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["eti", "vhaṃ", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["oti", "etha", ".v.", ".3p.$.sg.$.opt.", 0.99],
+        ["oti", "eraṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["oti", "issati", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["oti", "issanti", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["oti", "issate", ".v.", ".3p.$.sg.$.fut.", 0.99],
+        ["oti", "issante", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["oti", "issare", ".v.", ".3p.$.pl.$.fut.", 0.99],
+        ["oti", "i", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["oti", "ī", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["oti", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["oti", "iṃsu", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["oti", "ṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["oti", "uṃū", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["oti", "ā", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["oti", "a", ".v.", ".3p.$.sg.$.aor.", 0.99],
+        ["oti", "tthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["oti", "atthuṃ", ".v.", ".3p.$.pl.$.aor.", 0.99],
+        ["oti", "e", ".v.", ".1p.$.sg.$.imp.", 0.99],
+        ["oti", "āmase", ".v.", ".1p.$.pl.$.imp.", 0.99],
+        ["oti", "eyyuṃ", ".v.", ".3p.$.pl.$.opt.", 0.99],
+        ["oti", "eyyāmi", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["oti", "eyyāma", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["oti", "eyyaṃ", ".v.", ".1p.$.sg.$.opt.", 0.99],
+        ["oti", "eyyāmhe", ".v.", ".1p.$.pl.$.opt.", 0.99],
+        ["oti", "issāmi", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["oti", "issāma", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["oti", "issaṃ", ".v.", ".1p.$.sg.$.fut.", 0.99],
+        ["oti", "issāmhe", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["oti", "issāmase", ".v.", ".1p.$.pl.$.fut.", 0.99],
+        ["oti", "iṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["oti", "aṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["oti", "ṃ", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["oti", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["oti", "ā", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["oti", "imha", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["oti", "imhā", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["oti", "a", ".v.", ".1p.$.sg.$.aor.", 0.99],
+        ["oti", "imhe", ".v.", ".1p.$.pl.$.aor.", 0.99],
+        ["oti", "eyyāsi", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["oti", "eyyātha", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["oti", "etho", ".v.", ".2p.$.sg.$.opt.", 0.99],
+        ["oti", "eyyavho", ".v.", ".2p.$.pl.$.opt.", 0.99],
+        ["oti", "issasi", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["oti", "issatha", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["oti", "issase", ".v.", ".2p.$.sg.$.fut.", 0.99],
+        ["oti", "issavhe", ".v.", ".2p.$.pl.$.fut.", 0.99],
+        ["oti", "i", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["oti", "o", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["oti", "ā", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["oti", "ttha", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["oti", "se", ".v.", ".2p.$.sg.$.aor.", 0.99],
+        ["oti", "vhaṃ", ".v.", ".2p.$.pl.$.aor.", 0.99],
+        ["ati", "ittha", ".v.", ".2p.$.pl.$.aor.", 0.99],
+
+        ["ti", "māna", ".ti:base.", ".prp.", 0.99],
+        ["ati", "anta", ".ti:base.", ".prp.", 0.99],
+        ["ti", "ta", ".ti:base.", ".pp.", 0.99],
+        ["ti", "na", ".ti:base.", ".pp.", 0.99],
+        ["eti", "enta", ".ti:base.", ".prp.", 0.99],
+        ["ati", "eyya", ".ti:base.", ".fpp.", 0.99],
+        ["eti", "eyya", ".ti:base.", ".fpp.", 0.99],
+        ["oti", "eyya", ".ti:base.", ".fpp.", 0.99],
+        ["ti", "tabba", ".ti:base.", ".fpp.", 0.99],
+        ["ati", "itabba", ".ti:base.", ".fpp.", 0.99],
+        ["eti", "itabba", ".ti:base.", ".fpp.", 0.99],
+        ["oti", "itabba", ".ti:base.", ".fpp.", 0.99],
+        ["ati", "anīya", ".ti:base.", ".fpp.", 0.99],
+        ["eti", "anīya", ".ti:base.", ".fpp.", 0.99],
+        ["oti", "anīya", ".ti:base.", ".fpp.", 0.99],
+        ["ati", "āpeti", ".v:base.", ".caus.", 0.99],
+        ["ati", "yati", ".v:base.", ".pp.", 0.99],
+        ["oti", "āpeti", ".v:base.", ".caus.", 0.99],
+        ["oti", "yati", ".v:base.", ".pp.", 0.99],
+    ];
+
+    public $derivatives = [
+        ["ti", "māna", ".ti:base.", ".prp.", 0.99],
+        ["ati", "anta", ".ti:base.", ".prp.", 0.99],
+        ["eti", "anta", ".ti:base.", ".prp.", 0.99],
+        ["oti", "anta", ".ti:base.", ".prp.", 0.99],
+        ["ti", "ta", ".ti:base.", ".pp.", 0.99],
+        ["ti", "na", ".ti:base.", ".pp.", 0.99],
+        ["ati", "eyya", ".ti:base.", ".fpp.", 0.99],
+        ["eti", "eyya", ".ti:base.", ".fpp.", 0.99],
+        ["oti", "eyya", ".ti:base.", ".fpp.", 0.99],
+        ["ti", "tabba", ".ti:base.", ".fpp.", 0.99],
+        ["ati", "itabba", ".ti:base.", ".fpp.", 0.99],
+        ["eti", "itabba", ".ti:base.", ".fpp.", 0.99],
+        ["oti", "itabba", ".ti:base.", ".fpp.", 0.99],
+        ["ati", "anīya", ".ti:base.", ".fpp.", 0.99],
+        ["eti", "anīya", ".ti:base.", ".fpp.", 0.99],
+        ["oti", "anīya", ".ti:base.", ".fpp.", 0.99],
+        ["ati", "āpeti", ".v:base.", ".caus.", 0.99],
+        ["ati", "yati", ".v:base.", ".pass.", 0.99],
+        ["oti", "āpeti", ".v:base.", ".caus.", 0.99],
+        ["oti", "yati", ".v:base.", ".pass.", 0.99],
+    ];
+
+    public $union = [
+        ["ssa", "ssāpi", 'api'],
+        ["ssa", "ssāti", 'iti'],
+        ["ena", "enāti", 'iti'],
+        ["ena", "enāpi", 'api'],
+        ["ṃ", "ñca", 'ca'],
+        ["ṃ", "ñhi", 'hi'],
+        ["ṃ", "nti", 'iti'],
+        ["a", "āti", 'iti'],
+        ["ā", "āti", 'iti'],
+        ["e", "eti", 'iti'],
+        ["ī", "īti", 'iti'],
+        ["i", "īti", 'iti'],
+        ["o", "oti", 'iti'],
+        ["u", "ūti", 'iti'],
+        ["ū", "ūti", 'iti'],
+        ["ā", "āpi", 'api'],
+        ["a", "āpi", 'api'],
+        ["e", "epi", 'api'],
+        ["ī", "īpi", 'api'],
+        ["i", "īpi", 'api'],
+        ["o", "opi", 'api'],
+        ["ū", "upi", 'api'],
+        ["u", "upi", 'api'],
+        ["ṃ", "mpi", 'api'],
+        ["a", "eva", 'eva'],
+        ["e", "eva", 'eva'],
+        ["i", "yeva", 'eva'],
+        ["o", "ova", 'eva'],
+        ["u", "veva", 'eva'],
+        ["ṃ", "meva", 'eva'],
+    ];
+}

+ 375 - 0
api-v12/app/Tools/CaseMan.php

@@ -0,0 +1,375 @@
+<?php
+
+namespace App\Tools;
+
+use Illuminate\Support\Facades\Cache;
+use Illuminate\Support\Facades\Log;
+use App\Models\UserDict;
+use App\Models\WordIndex;
+
+
+class CaseMan
+{
+    /**
+     * Create a new class instance.
+     *
+     * @return void
+     */
+    public function __construct()
+    {
+        return;
+    }
+
+    /**
+     * 从词干到单词的变化
+     *
+     * @return void
+     */
+    public function Declension($base, $type = null, $grammar = '', $confidence = 0.5)
+    {
+        $newWord = array();
+        $case = new CaseEnding();
+        foreach ($case->ending as  $ending) {
+            # code...
+            if ($ending[4] < $confidence) {
+                continue;
+            }
+
+            switch ($type) {
+                case '.n:base.':
+                    if ($ending[2] !== '.n.' || strpos($ending[3], $grammar) !== 0) {
+                        continue 2;
+                    }
+                    break;
+                case '.ti:base.':
+                    if ($ending[2] !== '.ti.' && $ending[2] !== '.n.') {
+                        continue 2;
+                    }
+                    break;
+                case '.adj:base.':
+                    if ($ending[2] !== '.ti.' && $ending[2] !== '.n.') {
+                        continue 2;
+                    }
+                    break;
+                case '.v:base.':
+                    if ($ending[2] !== '.v.') {
+                        continue 2;
+                    }
+                    break;
+                default:
+                    continue 2;
+                    break;
+            }
+
+            $endingLen = mb_strlen($ending[0], "UTF-8");
+            $wordEnd = mb_substr($base, 0 - $endingLen, null, "UTF-8");
+            if ($wordEnd === $ending[0]) {
+                //匹配成功
+                $word = mb_substr($base, 0, mb_strlen($base, "UTF-8") - $endingLen, "UTF-8") . $ending[1];
+                //尝试sandhi
+                //TODO 加两个sandhi
+                $hasSandhi = false;
+                foreach ($case->union as $sandhi) {
+                    $sandhiLen = mb_strlen($sandhi[0], 'UTF-8');
+                    $sandhiEnd = mb_substr($word, 0 - $sandhiLen, null, "UTF-8");
+                    if ($sandhiEnd === $sandhi[0]) {
+                        $sandhiWord = mb_substr($word, 0, mb_strlen($word, "UTF-8") - $sandhiLen, "UTF-8") . $sandhi[1];
+                        $count = WordIndex::where('word', $sandhiWord)->select(['count', 'bold'])->first();
+                        if ($count) {
+                            $hasSandhi = true;
+                            $newWord[] = [
+                                'word' => $sandhiWord,
+                                'ending' => $ending[1],
+                                'type' => '.un.',
+                                'grammar' => '',
+                                'factors' => "{$word}+{$sandhi[2]}",
+                                'count' => $count->count,
+                                'bold' => $count->bold
+                            ];
+                            //添加一个去掉ti的数据
+                            if ($sandhi[2] === 'iti') {
+                                $newWord[] = [
+                                    'word' => mb_substr($sandhiWord, 0, -2, 'UTF-8'),
+                                    'ending' => $ending[1],
+                                    'grammar' => $ending[3],
+                                    'factors' => "{$base}+[{$ending[1]}]",
+                                    'count' => $count->count,
+                                    'bold' => $count->bold
+                                ];
+                            }
+                        }
+                    }
+                }
+                $count = WordIndex::where('word', $word)->select(['count', 'bold'])->first();
+                if ($count || $hasSandhi) {
+                    $newWord[] = [
+                        'word' => $word,
+                        'ending' => $ending[1],
+                        'grammar' => $ending[3],
+                        'factors' => "{$base}+[{$ending[1]}]",
+                        'count' => $count ? $count->count : 0,
+                        'bold' => $count ? $count->bold : 0
+                    ];
+                }
+            }
+        }
+
+        return $newWord;
+    }
+
+    private function endingMatch($base, $ending, $array = null)
+    {
+        $case = new CaseEnding();
+        $output = array();
+        $endingLen = mb_strlen($ending[0], "UTF-8");
+        $wordEnd = mb_substr($base, 0 - $endingLen, null, "UTF-8");
+        if ($wordEnd === $ending[0]) {
+            //匹配成功
+            $word = mb_substr($base, 0, mb_strlen($base, "UTF-8") - $endingLen, "UTF-8") . $ending[1];
+            if (is_array($array)) {
+                if (!isset($array[$word])) {
+                    $count = WordIndex::where('word', $word)->select(['count', 'bold'])->first();
+                }
+            } else {
+                $count = WordIndex::where('word', $word)->select(['count', 'bold'])->first();
+            }
+            if (isset($count) && $count) {
+                $output[$word] = ["count" => $count->count, "bold" => $count->bold];
+            } else {
+                $output[$word] = false;
+            }
+
+            //尝试sandhi
+            //TODO 加两个sandhi
+            foreach ($case->union as $sandhi) {
+                $sandhiLen = strlen($sandhi[0]);
+                $sandhiEnd = mb_substr($word, 0 - $sandhiLen, null, "UTF-8");
+                if ($sandhiEnd === $sandhi[0]) {
+                    $sandhiWord = mb_substr($word, 0, mb_strlen($word, "UTF-8") - $sandhiLen, "UTF-8") . $sandhi[1];
+                    if (is_array($array)) {
+                        if (!isset($array[$sandhiWord])) {
+                            $count = WordIndex::where('word', $sandhiWord)->select(['count', 'bold'])->first();
+                        }
+                    } else {
+                        $count = WordIndex::where('word', $sandhiWord)->select(['count', 'bold'])->first();
+                    }
+                    if (isset($count) && $count) {
+                        $output[$sandhiWord] = ["count" => $count->count, "bold" => $count->bold];
+                    } else {
+                        $output[$sandhiWord] = false;
+                    }
+                }
+            }
+        }
+        return $output;
+    }
+    /**
+     * 从词干到单词的变化
+     *
+     * @return array
+     */
+    public function BaseToWord($base, $confidence = 0.5)
+    {
+        $newWord = array();
+        $case = new CaseEnding();
+        foreach ($case->ending as  $ending) {
+            # code...
+            if ($ending[4] < $confidence) {
+                continue;
+            }
+            /*
+            $matched = $this->endingMatch($base,$ending,$newWord);
+            foreach ($matched as $key => $new) {
+                $newWord[$key] = $new;
+            }
+            */
+
+            $endingLen = mb_strlen($ending[0], "UTF-8");
+            $wordEnd = mb_substr($base, 0 - $endingLen, null, "UTF-8");
+            if ($wordEnd === $ending[0]) {
+                //匹配成功
+                $word = mb_substr($base, 0, mb_strlen($base, "UTF-8") - $endingLen, "UTF-8") . $ending[1];
+                if (!isset($newWord[$word])) {
+                    $count = WordIndex::where('word', $word)->select(['count', 'bold'])->first();
+                    if ($count) {
+                        $newWord[$word] = ["count" => $count->count, "bold" => $count->bold];
+                    } else {
+                        $newWord[$word] = false;
+                    }
+                }
+                //尝试sandhi
+                //TODO 加两个sandhi
+                foreach ($case->union as $sandhi) {
+                    $sandhiLen = mb_strlen($sandhi[0], 'UTF-8');
+                    $sandhiEnd = mb_substr($word, 0 - $sandhiLen, null, "UTF-8");
+                    if ($sandhiEnd === $sandhi[0]) {
+                        $sandhiWord = mb_substr($word, 0, mb_strlen($word, "UTF-8") - $sandhiLen, "UTF-8") . $sandhi[1];
+                        if (!isset($newWord[$sandhiWord])) {
+                            $count = WordIndex::where('word', $sandhiWord)->select(['count', 'bold'])->first();
+                            if ($count) {
+                                $newWord[$sandhiWord] = ["count" => $count->count, "bold" => $count->bold];
+                            } else {
+                                $newWord[$sandhiWord] = false;
+                            }
+                        }
+                    }
+                }
+            }
+        }
+        $result = [];
+        foreach ($newWord as $key => $value) {
+            # code...
+            if ($value !== false) {
+                $result[] = ['word' => $key, 'ending', "count" => $value["count"], "bold" => $value["bold"]];
+            }
+        }
+        return $result;
+    }
+
+    /**
+     * 从单词到词干的变化
+     * 小蝌蚪找妈妈
+     * @param  string  $word 输入
+     * @param  int  $deep 搜索深度
+     * @param  boolean  $verify 是否验证单词存在
+     * @return array
+     */
+    public function WordToBase($word, $deep = 1, $verify = true)
+    {
+        $newWords = array();
+        $newBase = array();
+        $input[$word] = true;
+        $case = new CaseEnding();
+        for ($i = 0; $i < $deep; $i++) {
+            # code...
+            foreach ($input as $currWord => $status) {
+                # code...
+                if ($status) {
+                    $input[$currWord] = false;
+                    foreach ($case->ending as  $ending) {
+                        # code...
+                        if ($ending[4] < 0.5) {
+                            continue;
+                        }
+                        $endingLen = mb_strlen($ending[1], "UTF-8");
+                        $wordEnd = mb_substr($currWord, 0 - $endingLen, null, "UTF-8");
+                        if ($wordEnd === $ending[1]) {
+                            //匹配成功
+                            $base = mb_substr($currWord, 0, mb_strlen($currWord, "UTF-8") - $endingLen, "UTF-8") . $ending[0];
+                            if (!isset($newBase[$base])) {
+                                $newBase[$base] = array();
+                            }
+                            $info = [
+                                'word' => $currWord,
+                                'type' => $ending[2],
+                                'grammar' => $ending[3],
+                                'parent' => $base,
+                                'factors' => "{$base}+[{$ending[1]}]",
+                                'confidence' => $ending[4],
+                            ];
+                            array_push($newBase[$base], $info);
+                            if ($ending[2] === '.n.') {
+                                $info['type'] = '.ti.';
+                                array_push($newBase[$base], $info);
+                                $info['type'] = '.adj.';
+                                array_push($newBase[$base], $info);
+                            }
+                            if ($ending[2] === '.ti.') {
+                                $info['type'] = '.adj.';
+                                array_push($newBase[$base], $info);
+                            }
+                        }
+                    }
+                }
+            }
+            foreach ($newBase as $currWord => $value) {
+                # 把新词加入列表
+                if (!isset($input[$currWord])) {
+                    $input[$currWord] = true;
+                }
+            }
+        }
+
+        if ($verify) {
+            $output = array();
+            foreach ($newBase as $base => $rows) {
+                # code...
+                if (($verify = $this->VerifyBase($base, $rows)) !== false) {
+                    $output[$base] = $verify;
+                }
+            }
+            if (count($output) == 0) {
+                //如果验证失败 输出最可能的结果
+                $short = 10000;
+                $shortBase = "";
+                foreach ($newBase as $base => $rows) {
+                    if (mb_strlen($base, "UTF-8") < $short) {
+                        $short = mb_strlen($base, "UTF-8");
+                        $shortBase = $base;
+                    }
+                }
+                foreach ($newBase as $base => $rows) {
+                    if ($base == $shortBase) {
+                        $output[$base] = $rows;
+                    }
+                }
+            }
+            return $output;
+        } else {
+            return $newBase;
+        }
+    }
+    /**
+     * 验证base在字典中是否存在
+     */
+    public function VerifyBase($base, $rows)
+    {
+        #
+        $output = array();
+        $dictWords = UserDict::where('word', $base)
+            ->select(['type', 'grammar'])
+            ->groupBy(['type', 'grammar'])
+            ->get();
+        if (count($dictWords) > 0) {
+            $newBase[$base] = 1;
+            $case = array();
+            //字典中这个拼写的单词的语法信息
+            foreach ($dictWords as $value) {
+                if ($value->type === '.n.') {
+                    $arrGrammar = explode('$', $value->grammar);
+                    $case[$value->type . $arrGrammar[0]] = 1;
+                } else {
+                    $case[$value->type] = 1;
+                }
+            }
+            foreach ($rows as $value) {
+                //根据输入的猜测的type,grammar拼接合理的 parent 语法信息
+                switch ($value['type']) {
+                    case '.n.':
+                        $parentType = '.n:base.';
+                        break;
+                    case '.ti.':
+                        $parentType = '.ti:base.';
+                        break;
+                    case '.v.':
+                        $parentType = '.v:base.';
+                        break;
+                    default:
+                        $parentType = '';
+                        break;
+                }
+                if (!empty($value['grammar']) && $value['type'] === ".n.") {
+                    $arrGrammar = explode('$', $value['grammar']);
+                    $parentType .=  $arrGrammar[0];
+                }
+                # 只保存语法信息合理的数据
+                if (isset($case[$parentType])) {
+                    array_push($output, $value);
+                }
+            }
+            return $output;
+        } else {
+            return false;
+        }
+    }
+}

+ 38 - 0
api-v12/app/Tools/Export.php

@@ -0,0 +1,38 @@
+<?php
+namespace App\Tools;
+use Illuminate\Support\Str;
+use Illuminate\Support\Facades\Log;
+
+class Export
+{
+    public static function ToPdf($tex){
+        return Export::tex2pdf_lily($tex);
+    }
+
+    private static function tex2pdf_lily($tex)
+    {
+        $request = new \Palm\Lily\V1\TexToRequest();
+        foreach ($tex as $key => $value) {
+            $request->getFiles()[$value['name']] = $value['content'];
+            //Log::info($value['name']);
+            //Log::info($value['content']);
+        }
+        $host = config('mint.server.rpc.lily.host') . ':' . config('mint.server.rpc.lily.port');
+        $client = new \Palm\Lily\V1\TexClient($host, [
+            'credentials' => \Grpc\ChannelCredentials::createInsecure(),
+        ]);
+
+        list($response, $status) = $client->ToPdf($request)->wait();
+        if ($status->code !== \Grpc\STATUS_OK) {
+            echo "ERROR: " . $status->code . ", " . $status->details . PHP_EOL;
+            return ['ok'=>false,
+                    'code'=>$status->code,
+                    'message'=>$status->details
+                    ];
+        }
+        return ['ok'=>true,
+                'content-type'=>$response->getContentType(),
+                'data'=>$response->getPayload()
+                ];
+    }
+}

+ 229 - 0
api-v12/app/Tools/ExportDownload.php

@@ -0,0 +1,229 @@
+<?php
+namespace App\Tools;
+
+use Illuminate\Support\Str;
+use Illuminate\Support\Facades\Log;
+use Illuminate\Support\Facades\Storage;
+use Illuminate\Support\Facades\App;
+
+use Symfony\Component\Process\Process;
+use Symfony\Component\Process\Exception\ProcessFailedException;
+
+use App\Tools\RedisClusters;
+use App\Tools\Export;
+
+class ExportDownload
+{
+    protected $statusKey = 'export/status';
+    protected $statusExpiry = 3600;
+    protected $currStatusKey = '';
+
+    protected $queryId = 'id';
+    protected $realFilename = 'index';//压缩包里的文件名
+    protected $zipFilename = 'file.zip';
+    protected $downloadUrl = null;
+
+    protected $format = 'tex';
+    protected $debug = false;
+
+    protected $logs = [];
+
+    /**
+     * Create a new command instance.
+     *
+     * @return void
+     */
+    public function __construct($options=[])
+    {
+        if(isset($options['format'])){
+            $this->format = $options['format'];
+        }
+        if(isset($options['debug'])){
+            $this->debug = $options['debug'];
+        }
+        if(isset($options['filename'])){
+            $this->realFilename = $options['filename'];
+        }
+        $this->queryId = $options['queryId'];
+        $this->zipFilename = $this->queryId.'.zip';
+
+        $this->currStatusKey = $this->statusKey . '/' . $this->queryId;
+    }
+
+    /**
+     * progress: 0-1, error -1
+     * message: string
+     */
+    public function setStatus($progress,$message=''){
+        $this->logs[] = $message;
+        $data = [
+                    'progress'=>$progress,
+                    'message'=>$message,
+                    'log'=>$this->logs,
+                    'content-type'=>'application/zip',
+                ];
+        if($this->downloadUrl){
+            $data['url'] = $this->downloadUrl;
+        }
+        RedisClusters::put($this->currStatusKey,
+                           $data,
+                           $this->statusExpiry);
+        $percent = (int)($progress * 100);
+        return "[{$percent}%]".$message;
+    }
+
+
+    public function getStatus(){
+        return RedisClusters::get($this->currStatusKey);
+    }
+
+    public function upload(string $type,$sections,$bookMeta){
+        $outputFilename = Str::uuid();
+
+        $m = new \Mustache_Engine(array('entity_flags'=>ENT_QUOTES,
+                    'delimiters' => '[[ ]]',
+                    'escape'=>function ($value){
+                        return $value;
+                    }));
+
+        $tex = array();
+
+        $_format = 'md';
+        $tplFile = resource_path("mustache/".$type.'/'.$_format."/main.".$_format);
+        $tpl = file_get_contents($tplFile);
+        $texContent = $m->render($tpl,$bookMeta);
+        $tex[] = [
+            'name' => 'main.'.$_format,
+            'content' => $texContent
+            ];
+        foreach ($sections as $key => $section) {
+            $tplFile = resource_path("mustache/".$type.'/'.$_format."/section.".$_format);
+            $tpl = file_get_contents($tplFile);
+            $texContent = $m->render($tpl,$section['body']);
+            $tex[] = [
+                'name'=>$section['name'],
+                'content'=>$texContent
+                ];
+        }
+
+        Log::debug('footnote start');
+        //footnote
+        $tplFile = resource_path("mustache/".$_format."/footnote.".$_format);
+        if(isset($GLOBALS['note']) &&
+            is_array($GLOBALS['note']) &&
+            count($GLOBALS['note'])>0 &&
+            file_exists($tplFile)){
+            $tpl = file_get_contents($tplFile);
+            $texContent = $m->render($tpl,['footnote'=>$GLOBALS['note']]);
+            $tex[] = [
+                'name'=>'footnote.'.$_format,
+                'content'=>$texContent
+                ];
+        }
+        Log::debug('footnote finished');
+
+        $this->setStatus(0.95,'export content done. tex count='.count($tex));
+        Log::debug('export content done.',['tex_count'=>count($tex)]);
+
+        //upload
+        $fileDate = '';
+        switch ($this->format) {
+            case 'tex':
+                $data = Export::ToPdf($tex);
+                if($data['ok']){
+                    $this->info($data['content-type']);
+                    $fileDate = $data['data'];
+                }else{
+                    $this->error($data['code'].'-'.$data['message']);
+                }
+                break;
+            default:
+                $file = array();
+                foreach ($tex as $key => $section) {
+                    $file[] = $section['content'];
+                }
+                $fileDate = implode('',$file);
+                break;
+        }
+
+
+        $dir = "tmp/export/{$type}/".$this->format."/";
+        $mdFilename = $dir.$outputFilename.'.md';
+        Storage::disk('local')->put($mdFilename, $fileDate);
+        Log::debug('markdown saved',['filename'=>$mdFilename]);
+        if($this->format === 'markdown'){
+            $filename = $mdFilename;
+        }else{
+            $filename = $dir.$outputFilename.'.'.$this->format;
+
+            Log::debug('tmp saved',['filename'=>$filename]);
+            $absoluteMdPath = Storage::disk('local')->path($mdFilename);
+            $absoluteOutputPath = Storage::disk('local')->path($filename);
+            //$command = "pandoc pandoc1.md --reference-doc tpl.docx -o pandoc1.docx";
+            $command = ['pandoc', $absoluteMdPath, '-o', $absoluteOutputPath];
+            if($this->format === 'docx'){
+                 $tplFile = resource_path("template/docx/paper.docx");
+                 array_push($command,'--reference-doc');
+                 array_push($command,$tplFile);
+            }
+            Log::debug('pandoc start',['command'=>$command,'format'=>$this->format]);
+            $process = new Process($command);
+            $process->run();
+
+            if (!$process->isSuccessful()) {
+                throw new ProcessFailedException($process);
+            }
+
+            echo $process->getOutput();
+            Log::debug('pandoc end',['command'=>$command]);
+        }
+
+        $zipDir = storage_path('app/export/zip');
+        if(!is_dir($zipDir)){
+            $res = mkdir($zipDir,0755,true);
+            if(!$res){
+                Log::error('mkdir fail path='.$zipDir);
+                return 1;
+            }
+        }
+
+        $zipFile = $zipDir.'/'. $outputFilename .'.zip';
+
+        Log::debug('export chapter start zip  file='.$zipFile);
+        //zip压缩包里面的文件名
+        $realFilename = $this->realFilename.".".$this->format;
+        $fileContent = Storage::disk('local')->get($filename);
+        $zipOk = \App\Tools\Tools::zip($zipFile,[$realFilename=>$fileContent]);
+        if(!$zipOk){
+            Log::error('export chapter zip fail zip file='.$zipFile);
+            $this->setStatus(0.99,'export chapter zip fail');
+            $this->error('export chapter zip fail zip file='.$zipFile);
+            //TODO 给客户端返回错误状态
+            return 1;
+        }
+        $this->setStatus(0.96,'export chapter zip success');
+
+        $bucket = config('mint.attachments.bucket_name.temporary');
+        $tmpFile =  $bucket.'/'. $this->zipFilename ;
+        Log::debug('upload start filename='.$tmpFile);
+        $this->setStatus(0.97,'upload start ');
+        $zipData = file_get_contents($zipFile);
+        Storage::put($tmpFile, $zipData);
+
+        if (App::environment('local')) {
+            $s3Link = Storage::url($tmpFile);
+        }else{
+            try{
+                $s3Link = Storage::temporaryUrl($tmpFile, now()->addDays(7));
+            }catch(\Exception $e){
+                Log::error('export {Exception}',['exception'=>$e]);
+                return false;
+            }
+        }
+        $this->downloadUrl = $s3Link;
+        $this->setStatus(1,'export chapter done');
+        Log::debug('export chapter done, upload',['filename'=>$tmpFile,'url'=>$s3Link] );
+        unlink($zipFile);
+        return true;
+    }
+}

+ 63 - 0
api-v12/app/Tools/Markdown.php

@@ -0,0 +1,63 @@
+<?php
+namespace App\Tools;
+use Illuminate\Support\Str;
+use Illuminate\Support\Facades\Log;
+use Illuminate\Support\Facades\Http;
+
+class Markdown
+{
+    public static function driver($driver){
+        $GLOBALS['markdown.driver'] = $driver;
+    }
+    public static function render($text){
+        if(isset($GLOBALS['markdown.driver']) &&
+            $GLOBALS['markdown.driver'] === 'str'){
+            return Markdown::strdown($text);
+        }else{
+            return Markdown::strdown($text);
+        }
+    }
+    public static function morus_restful($text){
+        $host = config('mint.server.rpc.morus.host');
+        Log::debug('morus host='.$host);
+
+        $response = Http::post($host, [
+            'text'=>$text
+        ]);
+        if($response->successful()){
+            return $response->json('data');
+        }else{
+            Log::error('morus_restful fail markdown='.$text);
+            return Str::markdown($text);
+        }
+    }
+
+    public static function morus($text){
+
+        if(isset($GLOBALS['morus_client'])){
+            $client = $GLOBALS['morus_client'];
+        }else{
+            $host = config('mint.server.rpc.morus.host') . ':'. config('mint.server.rpc.morus.port');
+            Log::debug('morus host='.$host);
+            $client = new \Mint\Morus\V1\MarkdownClient($host, [
+                    'credentials' => \Grpc\ChannelCredentials::createInsecure(),
+                ]);
+            $GLOBALS['morus_client'] = $client;
+        }
+
+        $request = new \Mint\Morus\V1\MarkdownToHtmlRequest();
+        $request->setPayload($text);
+        $request->setSanitize(true);
+        list($response, $status) = $client->ToHtml($request)->wait();
+        if ($status->code !== \Grpc\STATUS_OK) {
+            Log::error("ERROR: " . $status->code . ", " . $status->details);
+            return Str::markdown($text);
+        }
+        return $response->getPayload();
+    }
+
+    public static function strdown($text){
+        $text = str_replace("** ","**\r\n ",$text);
+        return Str::markdown($text);
+    }
+}

+ 21 - 0
api-v12/app/Tools/OpsLog.php

@@ -0,0 +1,21 @@
+<?php
+namespace App\Tools;
+use App\Http\Api\UserApi;
+
+use Illuminate\Support\Facades\Log;
+
+class OpsLog{
+    public static function debug($user_uid,$content){
+        try{
+            $user = UserApi::getByUuid($user_uid);
+            if($user){
+                $json = json_encode($content, JSON_UNESCAPED_UNICODE);
+                Log::debug("user({$user_uid},{$user['nickName']}, {$user['userName']},) {$json}");
+            }else{
+                Log::error('no user uuid ,',$user_uid);
+            }
+        }catch(\Exception $e){
+            Log::error($e);
+        }
+    }
+}

+ 100 - 0
api-v12/app/Tools/PaliSearch.php

@@ -0,0 +1,100 @@
+<?php
+namespace App\Tools;
+use Illuminate\Support\Str;
+use Illuminate\Support\Facades\Log;
+
+class PaliSearch
+{
+    public static function connect(){
+        $host = config('mint.server.rpc.tulip.host') . ':' . config('mint.server.rpc.tulip.port');
+        Log::debug('tulip host='.$host);
+        $client = new \Mint\Tulip\V1\SearchClient($host, [
+            'credentials' => \Grpc\ChannelCredentials::createInsecure(),
+        ]);
+        return $client;
+    }
+    public static function search($words,$books,$matchMode='case',$index=0,$size=10){
+        $client = PaliSearch::connect();
+        $request = new \Mint\Tulip\V1\SearchRequest();
+        $request->setKeywords($words);
+        $request->setBooks($books);
+        $request->setMatchMode($matchMode);
+        $page = new \Mint\Tulip\V1\SearchRequest\Page;
+        $page->setIndex($index);
+        $page->setSize($size);
+        $request->setPage($page);
+
+        list($response, $status) = $client->Pali($request)->wait();
+        if ($status->code !== \Grpc\STATUS_OK) {
+            Log::error("ERROR: " . $status->code . ", " . $status->details);
+            return false;
+        }
+        $output = [];
+        $output['total'] = $response->getTotal();
+        $output['page'] = $response->getPage();
+        $output['rows'] = [];
+        foreach ($response->getItems() as $key => $value) {
+            $output['rows'][] = (object)[
+                'rank' => $value->getRank(),
+                'highlight' => $value->getHighlight(),
+                'book' => $value->getBook(),
+                'paragraph' => $value->getParagraph(),
+                'content' => $value->getContent(),
+            ];
+        }
+        return $output;
+    }
+
+    public static function book_list($words,$books,$matchMode='case',$index=0,$size=10){
+        $client = PaliSearch::connect();
+
+        $request = new \Mint\Tulip\V1\SearchRequest();
+        $request->setKeywords($words);
+        $request->setBooks($books);
+        $request->setMatchMode($matchMode);
+        $page = new \Mint\Tulip\V1\SearchRequest\Page;
+        $page->setIndex($index);
+        $page->setSize($size);
+        $request->setPage($page);
+
+        list($response, $status) = $client->BookList($request)->wait();
+        if ($status->code !== \Grpc\STATUS_OK) {
+            Log::error("ERROR: " . $status->code . ", " . $status->details);
+            return false;
+        }
+        $output = [];
+        $output['rows'] = [];
+        foreach ($response->getItems() as $key => $value) {
+            $output['rows'][] = (object)[
+                'pcd_book_id' => $value->getBook(),
+                'co' => $value->getCount(),
+            ];
+        }
+        return $output;
+    }
+
+
+    public static function update($book,$paragraph,
+                                  $bold1,$bold2,$bold3,
+                                  $content,$pcd_book_id){
+        $client = PaliSearch::connect();
+        Log::debug('tulip update',['book'=>$book,'paragraph'=>$paragraph]);
+        $request = new \Mint\Tulip\V1\UpdateRequest();
+        $request->setBook($book);
+        $request->setParagraph($paragraph);
+        $request->setLevel(0);
+        $request->setBold1($bold1);
+        $request->setBold2($bold2);
+        $request->setBold3($bold3);
+        $request->setContent($content);
+        $request->setPcdBookId($pcd_book_id);
+
+        list($response, $status) = $client->Update($request)->wait();
+        if ($status->code !== \Grpc\STATUS_OK) {
+            Log::error("ERROR: " . $status->code . ", " . $status->details);
+            return false;
+        }
+        Log::debug('tulip update success',['book'=>$book,'paragraph'=>$paragraph]);
+        return $response->getCount();
+    }
+}

+ 76 - 0
api-v12/app/Tools/QueryBuilderMacro.php

@@ -0,0 +1,76 @@
+<?php
+/**
+ * 作者:guanguans
+ * 链接:https://juejin.cn/post/7116779474783305735
+ * 来源:稀土掘金
+ * 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
+ */
+namespace App\Tools;
+
+use Illuminate\Contracts\Support\Arrayable;
+
+class QueryBuilderMacro
+{
+    public function whereIns(): callable
+    {
+        /* @var Arrayable|array[] $values */
+        return function (array $columns, $values, string $boolean = 'and', bool $not = false) {
+            /** @var \Illuminate\Database\Eloquent\Builder $this */
+            $type = $not ? 'not in' : 'in';
+
+            $rawColumns = implode(',', $columns);
+
+            $values instanceof Arrayable and $values = $values->toArray();
+            $values = array_map(function ($value) use ($columns) {
+                if (array_is_list($value)) {
+                    return $value;
+                }
+
+                return array_reduce($columns, function ($sortedValue, $column) use ($value) {
+                    $sortedValue[$column] = $value[$column] ?? trigger_error(
+                        sprintf(
+                            '%s: %s',
+                            'The value of the column is not found in the array.',
+                            $column
+                        ),
+                        E_USER_ERROR
+                    );
+
+                    return $sortedValue;
+                }, []);
+            }, $values);
+
+            $rawValue = sprintf('(%s)', implode(',', array_fill(0, count($columns), '?')));
+            $rawValues = implode(',', array_fill(0, count($values), $rawValue));
+
+            $raw = "($rawColumns) $type ($rawValues)";
+
+            return $this->whereRaw($raw, $values, $boolean);
+        };
+    }
+
+    public function whereNotIns(): callable
+    {
+        return function (array $columns, $values) {
+            /** @var \Illuminate\Database\Eloquent\Builder $this */
+            return $this->whereIns($columns, $values, 'and', true);
+        };
+    }
+
+    public function orWhereIns(): callable
+    {
+        return function (array $columns, $values) {
+            /** @var \Illuminate\Database\Eloquent\Builder $this */
+            return $this->whereIns($columns, $values, 'or');
+        };
+    }
+
+    public function orWhereNotIns(): callable
+    {
+        return function (array $columns, $values) {
+            /** @var \Illuminate\Database\Eloquent\Builder $this */
+            return $this->whereIns($columns, $values, 'or', true);
+        };
+    }
+}
+

+ 54 - 0
api-v12/app/Tools/RedisClusters.php

@@ -0,0 +1,54 @@
+<?php
+
+namespace App\Tools;
+
+use Illuminate\Support\Facades\Redis;
+use Illuminate\Support\Facades\Log;
+
+class RedisClusters
+{
+    public static function remember($key, $expire, $callback)
+    {
+        if (Redis::exists($key)) {
+            return json_decode(Redis::get($key), true);
+        } else {
+            $valueOrg = $callback();
+            if ($valueOrg === null) {
+                $value = null;
+            } else {
+                $value = json_encode($valueOrg, JSON_UNESCAPED_UNICODE);
+            }
+            Redis::set($key, $value);
+            Redis::expire($key, $expire);
+            return $valueOrg;
+        }
+    }
+
+    public static function put($key, $value, $expire = null)
+    {
+        $value = json_encode($value, JSON_UNESCAPED_UNICODE);
+        Redis::set($key, $value);
+        if ($expire) {
+            Redis::expire($key, $expire);
+        }
+        return $value;
+    }
+
+    public static function get($key)
+    {
+        return json_decode(Redis::get($key), true);
+    }
+
+    public static function forget($key)
+    {
+        Log::debug('forget start redis key=' . $key . ' has=' . Redis::exists($key));
+        $del = Redis::del($key);
+        Log::debug('forget end redis key=' . $key . ' has=' . Redis::exists($key) . ' del=' . $del);
+        return $del;
+    }
+
+    public static function has($key)
+    {
+        return Redis::exists($key);
+    }
+}

+ 94 - 0
api-v12/app/Tools/Tools.php

@@ -0,0 +1,94 @@
+<?php
+
+namespace App\Tools;
+
+use Illuminate\Support\Facades\Log;
+
+class Tools
+{
+    public static function zip($zipFile, $files)
+    {
+        $zip = new \ZipArchive;
+        $res = $zip->open($zipFile, \ZipArchive::CREATE);
+        if ($res === TRUE) {
+            foreach ($files as $key => $value) {
+                $zip->addFromString($key, $value);
+            }
+            $zip->close();
+            return true;
+        } else {
+            return false;
+        }
+    }
+    public static function isStop()
+    {
+        if (file_exists(base_path('.stop'))) {
+            Log::debug('.stop exists');
+            return true;
+        } else {
+            return false;
+        }
+    }
+
+    public static function getWordEn($strIn)
+    {
+        $out = str_replace(
+            ["ā", "ī", "ū", "ṅ", "ñ", "ṭ", "ḍ", "ṇ", "ḷ", "ṃ"],
+            ["a", "i", "u", "n", "n", "t", "d", "n", "l", "m"],
+            $strIn
+        );
+        return ($out);
+    }
+    public static function PaliReal($inStr): string
+    {
+        if (!is_string($inStr)) {
+            return "";
+        }
+        $paliLetter = "abcdefghijklmnoprstuvyāīūṅñṭḍṇḷṃ";
+        $output = [];
+        $inStr = strtolower($inStr);
+        for ($i = 0; $i < mb_strlen($inStr, "UTF-8"); $i++) {
+            # code...
+            if (strstr($paliLetter, $inStr[$i]) !== FALSE) {
+                $output[] = $inStr[$i];
+            }
+        }
+        return implode('', $output);
+    }
+    private static function convert($array, $xml)
+    {
+        foreach ($array as $key => $line) {
+            # code...
+            if (!is_array($line)) {
+                $data = $xml->addChild($key, $line);
+            } else {
+                if (isset($line['value'])) {
+                    $value = $line['value'];
+                    unset($line['value']);
+                } else {
+                    $value = "";
+                }
+                $obj = $xml->addChild($key, $value);
+                if (isset($line['status'])) {
+                    $obj->addAttribute('status', $line['status']);
+                    unset($line['status']);
+                }
+                Tools::convert($line, $obj);
+            }
+        }
+        return $xml;
+    }
+    public static function JsonToXml($inArray)
+    {
+        $xmlObj = simplexml_load_string("<word></word>");
+        $xmlDoc = Tools::convert($inArray, $xmlObj);
+        return $xmlDoc->asXml();
+    }
+
+    public static function MyToRm($input)
+    {
+        $my = ["ႁႏၵ", "ခ္", "ဃ္", "ဆ္", "ဈ္", "ည္", "ဌ္", "ဎ္", "ထ္", "ဓ္", "ဖ္", "ဘ္", "က္", "ဂ္", "စ္", "ဇ္", "ဉ္", "ဠ္", "ဋ္", "ဍ္", "ဏ္", "တ္", "ဒ္", "န္", "ဟ္", "ပ္", "ဗ္", "မ္", "ယ္", "ရ္", "လ္", "ဝ္", "သ္", "င္", "င်္", "ဿ", "ခ", "ဃ", "ဆ", "ဈ", "စျ", "ည", "ဌ", "ဎ", "ထ", "ဓ", "ဖ", "ဘ", "က", "ဂ", "စ", "ဇ", "ဉ", "ဠ", "ဋ", "ဍ", "ဏ", "တ", "ဒ", "န", "ဟ", "ပ", "ဗ", "မ", "ယ", "ရ", "႐", "လ", "ဝ", "သ", "aျ္", "aွ္", "aြ္", "aြ", "ၱ", "ၳ", "ၵ", "ၶ", "ၬ", "ၭ", "ၠ", "ၡ", "ၢ", "ၣ", "ၸ", "ၹ", "ၺ", "႓", "ၥ", "ၧ", "ၨ", "ၩ", "်", "ျ", "ႅ", "ၼ", "ွ", "ႇ", "ႆ", "ၷ", "ၲ", "႒", "႗", "ၯ", "ၮ", "႑", "kaၤ", "gaၤ", "khaၤ", "ghaၤ", "aှ", "aိံ", "aုံ", "aော", "aေါ", "aအံ", "aဣံ", "aဥံ", "aံ", "aာ", "aါ", "aိ", "aီ", "aု", "aဳ", "aူ", "aေ", "အါ", "အာ", "အ", "ဣ", "ဤ", "ဥ", "ဦ", "ဧ", "ဩ", "ႏ", "ၪ", "a္", "္", "aံ", "ေss", "ေkh", "ေgh", "ေch", "ေjh", "ေññ", "ေṭh", "ေḍh", "ေth", "ေdh", "ေph", "ေbh", "ေk", "ေg", "ေc", "ေj", "ေñ", "ေḷ", "ေṭ", "ေḍ", "ေṇ", "ေt", "ေd", "ေn", "ေh", "ေp", "ေb", "ေm", "ေy", "ေr", "ေl", "ေv", "ေs", "ေy", "ေv", "ေr", "ea", "eā", "၁", "၂", "၃", "၄", "၅", "၆", "၇", "၈", "၉", "၀", "း", "့", "။", "၊"];
+        $en = ["ndra", "kh", "gh", "ch", "jh", "ññ", "ṭh", "ḍh", "th", "dh", "ph", "bh", "k", "g", "c", "j", "ñ", "ḷ", "ṭ", "ḍ", "ṇ", "t", "d", "n", "h", "p", "b", "m", "y", "r", "l", "v", "s", "ṅ", "ṅ", "ssa", "kha", "gha", "cha", "jha", "jha", "ñña", "ṭha", "ḍha", "tha", "dha", "pha", "bha", "ka", "ga", "ca", "ja", "ña", "ḷa", "ṭa", "ḍa", "ṇa", "ta", "da", "na", "ha", "pa", "ba", "ma", "ya", "ra", "ra", "la", "va", "sa", "ya", "va", "ra", "ra", "္ta", "္tha", "္da", "္dha", "္ṭa", "္ṭha", "္ka", "္kha", "္ga", "္gha", "္pa", "္pha", "္ba", "္bha", "္ca", "္cha", "္ja", "္jha", "္a", "္ya", "္la", "္ma", "္va", "္ha", "ssa", "na", "ta", "ṭṭha", "ṭṭa", "ḍḍha", "ḍḍa", "ṇḍa", "ṅka", "ṅga", "ṅkha", "ṅgha", "ha", "iṃ", "uṃ", "o", "o", "aṃ", "iṃ", "uṃ", "aṃ", "ā", "ā", "i", "ī", "u", "u", "ū", "e", "ā", "ā", "a", "i", "ī", "u", "ū", "e", "o", "n", "ñ", "", "", "aṃ", "sse", "khe", "ghe", "che", "jhe", "ññe", "ṭhe", "ḍhe", "the", "dhe", "phe", "bhe", "ke", "ge", "ce", "je", "ñe", "ḷe", "ṭe", "ḍe", "ṇe", "te", "de", "ne", "he", "pe", "be", "me", "ye", "re", "le", "ve", "se", "ye", "ve", "re", "e", "o", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "”", "’", ".", ","];
+        return str_replace($my, $en, $input);
+    }
+}

+ 803 - 0
api-v12/app/Tools/TurboSplit.php

@@ -0,0 +1,803 @@
+<?php
+
+namespace App\Tools;
+
+require_once __DIR__ . '/../../public/app/public/casesuf.inc';
+
+use Illuminate\Support\Facades\Log;
+use App\Models\WordPart;
+use App\Models\UserDict;
+use App\Tools\RedisClusters;
+
+class TurboSplit
+{
+    protected $options = [
+        "express" => false,
+        "c_threshhold" => 0.8,
+        "w_threshhold" => 0.8,
+        "forward" => true,
+        "sandhi_advance" => false,
+        "lookup_declension" => true,
+        'timeout' => 1000, //超时放弃
+        /**快速查字典-不去尾 */
+    ];
+    protected $started_at = null;
+    protected $node = [];
+    protected $path = array();
+    protected $isDebug = false;
+    #当前搜索路径信心指数,如果过低,马上终止这个路径的搜索
+    protected $currPathCf;
+    //结果数组
+    protected $result = array();
+    //过程中最大结果数量
+    protected $MAX_RESULT = 100;
+    //返回值最大结果数量
+    protected $MAX_RESULT2 = 8;
+    //最大递归深度
+    protected $MAX_DEEP = 16;
+    //连音规则表
+    protected $sandhi = [
+        ["a" => "", "b" => "", "c" => "", "len" => 0, "adj_len" => 0, "advance" => false, "cf" => 1.0],
+        ["a" => "a", "b" => "a", "c" => "ā", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "ā", "b" => "ā", "c" => "ā", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "ā", "c" => "ā", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ā", "b" => "a", "c" => "ā", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "e", "c" => "e", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "i", "c" => "i", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "o", "c" => "o", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "u", "c" => "o", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "a", "c" => "o", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "u", "c" => "ū", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "u", "c" => "u", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "ī", "c" => "ī", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "ū", "c" => "ū", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "i", "c" => "e", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "e", "b" => "a", "c" => "e", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "i", "b" => "i", "c" => "ī", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "i", "b" => "e", "c" => "e", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "i", "b" => "a", "c" => "ya", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "atth", "c" => "atth", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "taṃ", "b" => "n", "c" => "tann", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[ṃ]", "b" => "api", "c" => "mpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[ṃ]", "b" => "eva", "c" => "meva", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[o]", "b" => "iva", "c" => "ova", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "o", "b" => "a", "c" => "o", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "ādi", "c" => "ādi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a[ānaṃ]", "b" => "a", "c" => "ānama", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "iti", "c" => "āti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[ṃ]", "b" => "ca", "c" => "ñca", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[ṃ]", "b" => "iti", "c" => "nti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[ṃ]", "b" => "a", "c" => "ma", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ṃ", "b" => "a", "c" => "m", "len" => 1, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "[ṃ]", "b" => "ā", "c" => "mā", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.8],
+        ["a" => "ṃ", "b" => "ā", "c" => "mā", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "[ṃ]", "b" => "u", "c" => "mu", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.8],
+        ["a" => "[ṃ]", "b" => "h", "c" => "ñh", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.8],
+        ["a" => "ā", "b" => "[ṃ]", "c" => "am", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.8],
+        ["a" => "a", "b" => "[ṃ]", "c" => "am", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.8],
+        ["a" => "ī", "b" => "[ṃ]", "c" => "im", "len" => 2, "adj_len" => 0, "advance" => false, "cf" => 0.8],
+        ["a" => "ati", "b" => "tabba", "c" => "atabba", "len" => 6, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ati", "b" => "tabba", "c" => "itabba", "len" => 6, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "iti", "b" => "a", "c" => "icca", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "uṃ", "b" => "a", "c" => "uma", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u[ūnaṃ]", "b" => "a", "c" => "ūnama", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ī[īnaṃ]", "b" => "a", "c" => "īnama", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "su", "b" => "a", "c" => "sva", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ā", "b" => "iti", "c" => "āti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "iti", "c" => "āti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "e", "b" => "iti", "c" => "eti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "ī", "b" => "iti", "c" => "īti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "i", "b" => "iti", "c" => "īti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "o", "b" => "iti", "c" => "oti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "ū", "b" => "iti", "c" => "ūti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "iti", "c" => "ūti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "ṃ", "b" => "iti", "c" => "nti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "ṃ", "b" => "ca", "c" => "ñca", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 1.0],
+        ["a" => "ṃ", "b" => "cāti", "c" => "ñcāti", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 1.0],
+        ["a" => "ṃ", "b" => "cet", "c" => "ñcet", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ṃ", "b" => "ev", "c" => "mev", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.99999],
+        ["a" => "a", "b" => "a", "c" => "a", "len" => 1, "adj_len" => -1, "advance" => true, "cf" => 0.99],
+        ["a" => "ī", "b" => "", "c" => "i", "len" => 1, "adj_len" => 0, "advance" => true, "cf" => 0.9],
+    ];
+
+    protected $sandhi2 = [
+        ["a" => "ṃ", "b" => "ca", "c" => "ñca", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 1.0],
+        ["a" => "ṃ", "b" => "hi", "c" => "ñhi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 1.0],
+        ["a" => "ena", "b" => "iti", "c" => "enāti", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 1.0],
+        ["a" => "a", "b" => "iti", "c" => "āti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "ā", "b" => "iti", "c" => "āti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.6],
+        ["a" => "e", "b" => "iti", "c" => "eti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "i", "b" => "iti", "c" => "īti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "o", "b" => "iti", "c" => "oti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "u", "b" => "iti", "c" => "ūti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "ṃ", "b" => "iti", "c" => "nti", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "ī", "b" => "eva", "c" => "iyeva", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9],
+        ["a" => "ī", "b" => "eva", "c" => "īyeva", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "eva", "c" => "uyeva", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ṃ", "b" => "eva", "c" => "ṃyeva", "len" => 5, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "i", "b" => "eva", "c" => "yeva", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "o", "b" => "eva", "c" => "ova", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ṃ", "b" => "eva", "c" => "meva", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "eva", "c" => "veva", "len" => 4, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "eva", "c" => "eva", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "e", "b" => "eva", "c" => "eva", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "a", "b" => "api", "c" => "āpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ā", "b" => "api", "c" => "āpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "e", "b" => "api", "c" => "epi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "i", "b" => "api", "c" => "īpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ī", "b" => "api", "c" => "īpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "o", "b" => "api", "c" => "opi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "api", "c" => "ūpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ū", "b" => "api", "c" => "ūpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "u", "b" => "api", "c" => "upi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+        ["a" => "ṃ", "b" => "api", "c" => "mpi", "len" => 3, "adj_len" => 0, "advance" => false, "cf" => 0.9999],
+    ];
+
+    /**
+     * Create a new class instance.
+     *
+     * @return void
+     */
+    public function __construct($options = [])
+    {
+        for ($i = 0; $i < $this->MAX_DEEP; $i++) {
+            array_push($this->path, array("", 0));
+        }
+        foreach ($options as $key => $value) {
+            $this->options[$key] = $value;
+        }
+        return;
+    }
+
+    /**
+     * 从双元音处切开
+     * @param  string  $word
+     * @return array
+     */
+    public function splitDiphthong($word)
+    {
+        //diphthong table双元音表
+        $search = array('aa', 'ae', 'ai', 'ao', 'au', 'aā', 'aī', 'aū', 'ea', 'ee', 'ei', 'eo', 'eu', 'eā', 'eī', 'eū', 'ia', 'ie', 'ii', 'io', 'iu', 'iā', 'iī', 'iū', 'oa', 'oe', 'oi', 'oo', 'ou', 'oā', 'oī', 'oū', 'ua', 'ue', 'ui', 'uo', 'uu', 'uā', 'uī', 'uū', 'āa', 'āe', 'āi', 'āo', 'āu', 'āā', 'āī', 'āū', 'īa', 'īe', 'īi', 'īo', 'īu', 'īā', 'īī', 'īū', 'ūa', 'ūe', 'ūi', 'ūo', 'ūu', 'ūā', 'ūī', 'ūū');
+        $replace = array('a-a', 'a-e', 'a-i', 'a-o', 'a-u', 'a-ā', 'a-ī', 'a-ū', 'e-a', 'e-e', 'e-i', 'e-o', 'e-u', 'e-ā', 'e-ī', 'e-ū', 'i-a', 'i-e', 'i-i', 'i-o', 'i-u', 'i-ā', 'i-ī', 'i-ū', 'o-a', 'o-e', 'o-i', 'o-o', 'o-u', 'o-ā', 'o-ī', 'o-ū', 'u-a', 'u-e', 'u-i', 'u-o', 'u-u', 'u-ā', 'u-ī', 'u-ū', 'ā-a', 'ā-e', 'ā-i', 'ā-o', 'ā-u', 'ā-ā', 'ā-ī', 'ā-ū', 'ī-a', 'ī-e', 'ī-i', 'ī-o', 'ī-u', 'ī-ā', 'ī-ī', 'ī-ū', 'ū-a', 'ū-e', 'ū-i', 'ū-o', 'ū-u', 'ū-ā', 'ū-ī', 'ū-ū');
+        //将双元音拆开
+        //step 1 : split at diphthong . ~aa~ -> ~a-a~
+        $word1 = str_replace($search, $replace, $word);
+        //按连字符拆开处理
+        $arrword = str_getcsv($word1, "-");
+        return $arrword;
+    }
+
+    /**
+     * 查询单词是否存在于词干表
+     * 如果存在,返回单词权重
+     * 如果不存在,变格后返回权重和语尾长度
+     *
+     * @param  string  $word
+     * @return array(int $wordWeight, int $endingLength)
+     */
+    public function dict_lookup($word)
+    {
+        global $case;        //语尾表
+        if (strlen($word) <= 1) {
+            return array(0, 0);
+        }
+        $search = $word;
+
+        //获取单词权重
+        $weight = RedisClusters::remember(
+            'palicanon/wordpart/weight/' . $search,
+            config('mint.cache.expire'),
+            function () use ($search) {
+                return WordPart::where('word', $search)->value('weight');
+            }
+        );
+        if ($weight) {
+            //找到
+            $this->log($search . '=' . $weight);
+            return array($weight, 0);
+        } else {
+            //没找到
+            if ($this->options["lookup_declension"]) {
+                return array(0, 0);
+            }
+            //去除尾查
+            $newWord = array();
+            for ($row = 0; $row < count($case); $row++) {
+                $len = mb_strlen($case[$row][1], "UTF-8");
+                $end = mb_substr($search, 0 - $len, null, "UTF-8");
+                if ($end == $case[$row][1]) {
+                    $base = mb_substr($search, 0, mb_strlen($search, "UTF-8") - $len, "UTF-8") . $case[$row][0];
+                    if ($base != $search) {
+                        $newWord[$base] = mb_strlen($case[$row][1], "UTF-8");
+                    }
+                }
+            }
+            #找到权重最高的base
+            $base_weight = 0;
+            $len = 0;
+            foreach ($newWord as $x => $x_len) {
+                $weight = RedisClusters::remember(
+                    'palicanon/wordpart/weight/' . $x,
+                    config('mint.cache.expire'),
+                    function () use ($x) {
+                        return WordPart::where('word', $x)->value('weight');
+                    }
+                );
+                if ($weight) {
+                    if ($weight > $base_weight) {
+                        $base_weight = $weight;
+                        $len = $x_len;
+                    }
+                }
+            }
+            return array($base_weight, $len);
+        }
+    }
+
+    /**
+     * 查找某个单词是否在现有词典出现
+     * 返回信心指数
+     * look up single word in dictionary vocabulary
+     * return the confidence value
+     *
+     *
+     *
+     */
+    public function isExist($word, $adj_len = 0)
+    {
+        $this->log("正在查询:{$word}");
+
+        $isFound = false;
+        $count = 0;
+        $wordPart  = RedisClusters::remember(
+            "turbosplit/part/{$word}",
+            config('mint.cache.expire'),
+            function () use ($word) {
+                return implode(',', $this->dict_lookup($word));
+            }
+        );
+        $arrWordPart = explode(',', $wordPart);
+        $word_count = $arrWordPart[0];
+        if (isset($arrWordPart[1])) {
+            $case_len = $arrWordPart[1];
+        } else {
+            $case_len = 0;
+            Log::error('wordPart error value=' . $wordPart);
+        }
+
+        if ($word_count > 0) {
+            $this->log("查到:{$word}:{$word_count}个");
+            $isFound = true;
+            $count = $word_count + 1;
+        }
+
+        //fomular of confidence value 信心值计算公式
+        if ($isFound) {
+            $cf  = RedisClusters::remember(
+                "turbosplit/confidence/" . $word,
+                config('mint.cache.expire'),
+                function () use ($word, $count, $case_len) {
+                    $len = mb_strlen($word, "UTF-8") - $case_len;
+                    $len_correct = 1.2;
+                    $count2 = 1.1 + pow($count, 1.18);
+                    $conf_num = pow(1 / $count2, pow(($len - 0.5), $len_correct));
+                    return round(1 / (1 + 640 * $conf_num), 9);
+                }
+            );
+            return ($cf);
+        } else {
+            return (-1);
+        }
+    }
+
+    /**
+     * 判断是否超时
+     * @return boolean
+     */
+    private function isTimeOut()
+    {
+        if ($this->started_at) {
+            $time = time() - $this->started_at;
+            if ($time > $this->options['timeout']) {
+                Log::warning('split timeout');
+                return true;
+            }
+        }
+        return false;
+    }
+
+    /**
+     * 核心拆分函数
+     *
+     * @param  array  $node word to be look up 要查询的词
+     * @param  int  $deep  当前递归深度
+     * @param  boolean  $forward 搜索方向 true 正向  false 反向
+     * @param  boolean  $express=true, 快速查询
+     * @param  int  $adj_len=0 长度校正系数
+     * @param  int  $c_threshhold 信心指数阈值
+     * @return void
+     */
+    private function split(&$node, $deep = 0, $express = false, $adj_len = 0, $c_threshhold = 0.8, $w_threshhold = 0.8, $forward = true, $sandhi_advance = false)
+    {
+        $strWord = $node["remain"];
+        $this->log("spliting word={$strWord} deep={$deep}");
+        $output = array();
+        #currPathCf是当前搜索路径信心指数,如果过低,马上终止这个路径的搜索
+        if ($deep == 0) {
+            $this->currPathCf = 1;
+        }
+        //达到最大搜索深度,返回
+        if ($deep >= $this->MAX_DEEP) {
+            return;
+        }
+        //直接找到
+
+        $confidence = $this->isExist($strWord, $adj_len);
+        if ($confidence > $c_threshhold) {
+            array_push($output, array($strWord, "", $confidence));
+            if (isset($node['sum_cf'])) {
+                $parent_sum_cf = $node['sum_cf'];
+            } else {
+                $parent_sum_cf = 1;
+            }
+            $sum_cf = $parent_sum_cf * $confidence;
+            $node['children'][] = ['word' => $strWord, 'remain' => "", 'cf' => $confidence, "sum_cf" => $sum_cf];
+            $this->log("直接找到{$strWord}-{$confidence}");
+        } else if (mb_strlen($strWord, "UTF-8") < 6) {
+            //按照语尾查询
+            $search = "[{$strWord}]";
+            $confidence = $this->isExist($search);
+            $this->log("查询:{$search}-信心指数{$confidence}");
+            if ($confidence > $c_threshhold) {
+                array_push($output, array($search, "", $confidence));
+                if (isset($node['sum_cf'])) {
+                    $parent_sum_cf = $node['sum_cf'];
+                } else {
+                    $parent_sum_cf = 1;
+                }
+                $sum_cf = $parent_sum_cf * $confidence;
+                $node['children'][] = ['word' => $search, 'remain' => "", 'cf' => $confidence, "sum_cf" => $sum_cf];
+                $this->log("直接找到{$strWord}-{$confidence}");
+            }
+        }
+
+        //如果开头有双辅音,去掉第一个辅音。因为巴利语中没有以双辅音开头的单词。
+        $doubleword = "kkggccjjṭṭḍḍttddppbb";
+        if (mb_strlen($strWord, "UTF-8") > 2) {
+            $left2 = mb_substr($strWord, 0, 2, "UTF-8");
+            if (mb_strpos($doubleword, $left2, 0, "UTF-8") !== false) {
+                $strWord = mb_substr($strWord, 1, null, "UTF-8");
+            }
+        }
+
+        $len = mb_strlen($strWord, "UTF-8");
+        if ($len > 2) {
+            if ($forward) {
+                #正向切
+                $this->log("正向切");
+                for ($i = $len; $i > 1; $i--) {
+                    if ($this->isTimeOut()) {
+                        Log::warning('line ' . __LINE__);
+                        return;
+                    }
+                    //应用连音规则切分单词
+                    foreach ($this->sandhi as $key => $row) {
+                        if ($sandhi_advance == false && $row["advance"] == true) {
+                            //continue;
+                        }
+                        if (mb_substr($strWord, $i - $row["len"], $row["len"], "UTF-8") == $row["c"]) {
+                            $str1 = mb_substr($strWord, 0, $i - $row["len"], "UTF-8") . $row["a"];
+                            $str2 = $row["b"] . mb_substr($strWord, $i, null, "UTF-8");
+                            $confidence = $this->isExist($str1, $adj_len) * $row["cf"];
+                            if ($confidence > $c_threshhold) {
+                                //信心指数大于预设的阈值,插入
+                                array_push($output, array($str1, $str2, $confidence, $row["adj_len"]));
+                                if (isset($node['sum_cf'])) {
+                                    $parent_sum_cf = $node['sum_cf'];
+                                } else {
+                                    $parent_sum_cf = 1;
+                                }
+                                $sum_cf = $parent_sum_cf * $confidence;
+                                if ($sum_cf > $c_threshhold) {
+                                    $node['children'][] = [
+                                        'word' => $str1,
+                                        'remain' => $str2,
+                                        'cf' => $confidence,
+                                        'sum_cf' => $sum_cf,
+                                        'children' => []
+                                    ];
+                                }
+
+                                $this->log("插入结构数组:{$str1} 剩余{$str2} 应用:{$row["a"]}-{$row["b"]}-{$row["c"]}");
+                                if ($express) {
+                                    break;
+                                }
+                            }
+                        }
+                    }
+                }
+            } else {
+                #反向切
+                for ($i = 1; $i < $len - 1; $i++) {
+                    foreach ($this->sandhi as $key => $row) {
+                        if ($this->isTimeOut()) {
+                            Log::warning('line ' . __LINE__);
+                            return;
+                        }
+                        if ($sandhi_advance == false && $row["advance"] == true) {
+                            //continue;
+                        }
+                        if (mb_substr($strWord, $i, $row["len"], "UTF-8") == $row["c"]) {
+                            $str1 = mb_substr($strWord, 0, $i, "UTF-8") . $row["a"];
+                            $str2 = $row["b"] . mb_substr($strWord, $i + $row["len"], null, "UTF-8");
+                            $confidence = $this->isExist($str2, $adj_len) * $row["cf"];
+                            if ($confidence > $c_threshhold) {
+                                array_push($output, array($str2, $str1, $confidence, $row["adj_len"]));
+                                if (isset($node['sum_cf'])) {
+                                    $parent_sum_cf = $node['sum_cf'];
+                                } else {
+                                    $parent_sum_cf = 1;
+                                }
+                                $sum_cf = $parent_sum_cf * $confidence;
+                                if ($sum_cf > $c_threshhold) {
+                                    $node['children'][] = [
+                                        'word' => $str2,
+                                        'remain' => $str1,
+                                        'cf' => $confidence,
+                                        'sum_cf' => $sum_cf,
+                                        'children' => [],
+                                    ];
+                                }
+                                $this->log("将此次结果插入结果数组:剩余={$str2}");
+                                if ($express) {
+                                    break;
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+        }
+
+        $word = "";
+        $this->log("结果数组个数:" . count($output));
+        //print_r($node);
+        //遍历children
+        foreach ($node['children'] as $key => $child) {
+            if ($this->isTimeOut()) {
+                Log::warning('line ' . __LINE__);
+                return;
+            }
+            # code...
+            if (isset($child) && !empty($child['remain'])) {
+                $this->split($node['children'][$key], ($deep + 1), $express, $adj_len, $c_threshhold, $w_threshhold, $forward, $sandhi_advance);
+            }
+        }
+    }
+
+    /**
+     * 遍历树状结构,获取结果
+     */
+    private function get_result($node, &$path)
+    {
+
+        # code...
+        $path[] = $node['word'];
+        if (isset($node['children']) && count($node['children']) > 0) {
+            foreach ($node['children'] as $key => $value) {
+                $this->get_result($value, $path);
+            }
+        } else {
+            if (empty($node['remain'])) {
+                $factors = trim(implode("+", $path), '+');
+                $this->result[$factors] = $node['sum_cf'];
+            } else {
+            }
+        }
+        array_pop($path);
+    }
+    /**
+     * 颠倒词序
+     */
+    public function word_reverse($word)
+    {
+        $reverse = array();
+        $newword = explode("+", $word);
+        $len = count($newword);
+        if ($len > 0) {
+            for ($i = $len - 1; $i >= 0; $i--) {
+                # code...
+                $reverse[] = $newword[$i];
+            }
+            $output = implode("+", $reverse);
+            return $output;
+        } else {
+            return $word;
+        }
+    }
+
+    /**
+     * 拆分后的处理
+     */
+    public function split2($word)
+    {
+        $input = explode("+", $word);
+        $newword = array();
+        foreach ($input as $value) {
+            //去掉带小括号的调试信息
+            $word = strstr($value, "(", true);
+            if ($word == false) {
+                $word = $value;
+            }
+            if (mb_strlen($word, "UTF-8") > 4) {
+                # 先看有没有中文意思
+                //$this->log("先看有没有中文意思");
+                if (UserDict::where('word', $word)->where('mean', '<>', '')->where('language', '<>', 'my')->exists()) {
+                    $newword[] = $word;
+                } else {
+                    //$this->log("如果没有查巴缅替换拆分");
+                    #如果没有查巴缅替换拆分
+                    if (UserDict::where('word', $word)->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->exists()) {
+                        $pmPart = explode("+", UserDict::where('word', $word)->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->value('factors'));
+                        foreach ($pmPart as  $pm) {
+                            # code...
+                            $newword[] = $pm;
+                        }
+                    } else {
+                        //$this->log("如果没有查规则变形");
+                        #如果没有查规则变形
+                        if (UserDict::where('word', $word)->where('source', '_SYS_REGULAR_')->exists()) {
+                            $rglPart = explode("+", UserDict::where('word', $word)->where('source', '_SYS_REGULAR_')->value('factors'));
+                            #看巴缅有没有第一部分
+                            //$this->log("看巴缅有没有第一部分");
+                            if (UserDict::where('word', $rglPart[0])->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->exists()) {
+                                $pmPart = explode("+", UserDict::where('word', $rglPart[0])->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->value('factors'));
+                                foreach ($pmPart as  $pm) {
+                                    # code...
+                                    $newword[] = $pm;
+                                }
+                            } else {
+                                #没有
+                                $newword[] = $rglPart[0];
+                            }
+                            $newword[] = $rglPart[1];
+                        } else {
+                            #还没有就认命了
+                            //$this->log("还没有就认命了");
+                            $newword[] = $word;
+                        }
+                    }
+                }
+            } else {
+                $newword[] = $word;
+            }
+        }
+        return implode("+", $newword);
+    }
+
+
+    /**
+     * 预处理连音词
+     */
+    public function splitSandhi($word)
+    {
+        $newWord = "";
+        $firstWord = $word;
+        do {
+            $isFound = false;
+            foreach ($this->sandhi2 as $key => $sandhi) {
+                # code...
+                $len = $sandhi["len"];
+                $end = mb_substr($firstWord, 0 - $len, null, "UTF-8");
+                if ($end == $sandhi["c"]) {
+                    $word1 = mb_substr($firstWord, 0, mb_strlen($firstWord, "UTF-8") - $len, "UTF-8") . $sandhi["a"];
+                    $word2 = $sandhi["b"];
+                    $newWord = $word2 . "-" . $newWord;
+                    $firstWord = $word1;
+                    $isFound = true;
+                    break;
+                }
+            }
+        } while ($isFound);
+        $newWord = $firstWord . "-" . $newWord;
+        return mb_substr($newWord, 0, -1, "UTF-8");
+    }
+
+    /**
+     * 切分函数
+     * @param  string $word 需要切分的单词
+     * @return array
+     */
+    public function splitA($word)
+    {
+        $this->started_at = time();
+        $caseman = new CaseMan();
+        $output = array();
+        //预处理连音词
+        $word1 = $this->splitSandhi($word);
+        # 处理双元音
+        $this->log("处理双元音");
+        $arrword = $this->splitDiphthong($word1);
+        if (count($arrword) > 1) {
+            array_push($output, [
+                'word' => $word,
+                'type' => '.un.',
+                'grammar' => '',
+                'parent' => '',
+                'factors' => implode("+", $arrword),
+                'confidence' => 0.9999
+            ]);
+        }
+
+        foreach ($arrword as $oneword) {
+            if (mb_strlen($oneword) < 5) {
+                continue;
+            }
+            $this->result = array(); //清空递归程序的输出容器
+            $node = ['word' => "", 'remain' => $oneword, 'children' => []];
+            if (mb_strlen($oneword) > 35) {
+                //长词使用快速切分 正向切分 不使用少见sandi规则
+                $this->split($node, 0, true, 0.8, 0.9, 0, true, false);
+                $min_result = 1;
+            } else {
+                $this->split($node, 0, false, 0.8, 0.9, 0, true, false);
+                $min_result = 2;
+            }
+            $path = [];
+            $this->log($node);
+            $this->get_result($node, $path);
+
+            $this->log("正向切分结束 结果数量" . count($this->result));
+
+            if (count($this->result) < $min_result) {
+                //有效结果过少
+                $node = ['word' => "", 'remain' => $oneword, 'children' => []];
+                $this->split($node, 0, false, 0.2, 0.8, 0, true, true);
+                $this->log("有效结果过少 再次正切" . count($this->result));
+                if (count($this->result) < 2) {
+                    $node = ['word' => "", 'remain' => $oneword, 'children' => []];
+                    $this->split($node, 0, false, 0.2, 0.8, 0, false, true);
+                    $this->log("有效结果过少 再次反切:结果数量" . count($this->result));
+                }
+            }
+
+            $this->log("{$oneword}:" . count($this->result));
+            if (count($this->result) > 0) {
+                arsort($this->result); //按信心指数升序排序
+                $iCount = 0;
+                foreach ($this->result as $row => $value) {
+                    $factors = $row;
+                    if (strpos($row, ']+') !== FALSE) {
+                        $type = '.un.';
+                        $factors = \str_replace(['+[ṃ]+', '[ṃ]+'], 'ṃ+', $row);
+                    } else {
+                        $type = '.cp.';
+                    }
+                    $newword = ['word' => $oneword, 'type' => $type, 'grammar' => '', 'parent' => '', 'factors' => $factors, 'confidence' => $value];
+                    array_push($output, $newword);
+
+                    if ($iCount == 0) {
+                        //对于最优结果进行处理 找到base
+                        $wordWithType = ['word' => $oneword, 'type' => '', 'grammar' => '', 'parent' => '', 'factors' => $factors, 'confidence' => $value];
+
+                        $this->log("查找base");
+
+                        $factors = explode('+', $row);
+                        $endOfFactor = end($factors);
+                        if (strpos($endOfFactor, "[") !== FALSE) {
+                            if (count($factors) >= 2) {
+                                $endOfFactor = $factors[count($factors) - 2];
+                            }
+                        }
+                        $this->log("结尾词:" . $endOfFactor);
+
+                        //猜测单词的base
+                        $parents = $caseman->WordToBase($oneword, 1, false);
+                        //找到结尾单词的base
+                        $end_parents = $caseman->WordToBase($endOfFactor);
+
+                        if (count($parents) > 0) {
+                            foreach ($parents as $base => $case) {
+                                # code...
+                                if (count($end_parents) > 0) {
+                                    foreach ($end_parents as $base2 => $case2) {
+                                        if (\mb_substr($base2, -2) === \mb_substr($base, -2)) {
+                                            $this->log("{$base} ok");
+                                            foreach ($case as $value) {
+                                                # code...
+                                                foreach ($case2 as $value2) {
+                                                    //验证语法信息是否正确
+                                                    if (
+                                                        $value['type'] == $value2['type'] &&
+                                                        substr($value['grammar'], 0, 3) === substr($value2['grammar'], 0, 3) &&
+                                                        $value['confidence'] > 0.5
+                                                    ) {
+                                                        $wordWithType['type'] = $value['type'];
+                                                        $wordWithType['grammar'] = $value['grammar'];
+                                                        $wordWithType['factors'] = $value['factors'];
+                                                        $wordWithType['parent'] = $base;
+                                                        $wordWithType['confidence'] = $value2['confidence'];
+                                                        $this->log("word:{$wordWithType['word']} ; type:{$wordWithType['type']}; grammar:{$wordWithType['grammar']};parent:{$wordWithType['parent']}");
+                                                        array_push($output, $wordWithType);
+                                                    }
+                                                }
+                                            }
+                                        }
+                                    }
+                                } else {
+                                    foreach ($case as $value) {
+                                        $wordWithType['type'] = $value['type'];
+                                        $wordWithType['grammar'] = $value['grammar'];
+                                        $wordWithType['factors'] = $value['factors'];
+                                        $wordWithType['parent'] = $base;
+                                        $wordWithType['confidence'] = 0.1;
+                                        array_push($output, $wordWithType);
+                                    }
+                                }
+                            }
+                        }
+                    }
+                    //后处理 进一步切分没有意思的长词
+                    $this->log("后处理 进一步切分没有意思的长词");
+                    $new = $this->split2($row);
+                    if ($new !== $row) {
+                        $newword['factors'] = $new;
+                        array_push($output, $newword);
+                        #再处理一次
+                        $new2 = $this->split2($new);
+                        if ($new2 !== $new) {
+                            $newword['factors'] = $new2;
+                            array_push($output, $newword);
+                        }
+                    }
+                    $iCount++;
+                    if ($iCount > $this->MAX_RESULT2) {
+                        break;
+                    }
+                }
+            } else {
+                $this->log("{$oneword} 切分失败");
+                $this->log("猜测可能的格位");
+                //猜测单词的base
+                $wordWithType = ['word' => $oneword, 'type' => '', 'grammar' => '', 'parent' => '', 'factors' => '', 'confidence' => 0];
+                $parents = $caseman->WordToBase($oneword, 1, false);
+                foreach ($parents as $base => $case) {
+                    foreach ($case as $value) {
+                        $wordWithType['type'] = $value['type'];
+                        $wordWithType['grammar'] = $value['grammar'];
+                        $wordWithType['factors'] = $value['factors'];
+                        $wordWithType['parent'] = $base;
+                        $wordWithType['confidence'] = $value['confidence'];
+                        $this->log("word:{$wordWithType['word']} ; type:{$wordWithType['type']}; grammar:{$wordWithType['grammar']};parent:{$wordWithType['parent']}");
+                        array_push($output, $wordWithType);
+                    }
+                }
+            }
+        }
+        return $output;
+    }
+
+    public function setting($param = null) {}
+
+    public function getResult()
+    {
+        return $this->result;
+    }
+
+    public function debug($debug)
+    {
+        $this->isDebug = $debug;
+    }
+
+    private function log($message)
+    {
+        if ($this->isDebug) {
+            Log::info($message);
+        }
+    }
+
+    private function pushResult($word, $cf)
+    {
+        array_push($this->result, array($word => $cf));
+    }
+}

+ 71 - 0
api-v12/app/Tools/WebHook.php

@@ -0,0 +1,71 @@
+<?php
+namespace App\Tools;
+use Illuminate\Support\Facades\Log;
+use Illuminate\Support\Facades\Http;
+
+class WebHook{
+        /**
+     * Create a new command instance.
+     *
+     * @return void
+     */
+    public function __construct()
+    {
+
+    }
+    public function wechat($url, $title=null, $message=null)
+    {
+
+        $param["msgtype"]="markdown";
+        if(empty($title) &&  empty($message) ){
+            return 0;
+        }
+        if($title !== null){
+            $param["markdown"]['title'] = $title;
+        }
+        if($message !== null){
+            $param["markdown"]['content'] = $message;
+        }
+        return $this->send($url, $param);
+    }
+    public function dingtalk($url, $title=null, $message=null){
+        $param = array();
+        $param["msgtype"]="markdown";
+        if(empty($title) &&  empty($message) ){
+            return 0;
+        }
+        if($title !== null){
+            $param["markdown"]['title'] = $title;
+        }
+        if($message !== null){
+            $param["markdown"]['text'] = $message;
+        }
+
+        return $this->send($url, $param);
+    }
+
+    private function send($url, $param){
+        try{
+            $response = Http::post($url, $param);
+            $logResponse = [
+                'status'=>$response->status(),
+                'headers'=>$response->headers(),
+                'body'=>$response->body(),
+            ];
+            if($response->successful()){
+                Log::info('webhook send to:{url} message:{message} response:{response} ',
+                        ['url'=>$url,'message'=>$param,'response'=>$logResponse]);
+                return 0;
+            }else{
+                Log::error('webhook send to:{url} message:{message} ',
+                            ['url'=>$url,'message'=>$param,'response'=>$logResponse]);
+                return 1;
+            }
+        }catch(\Exception $e){
+            Log::error('webhook send to:{url} message:{message} error:{error} ',
+                        ['url'=>$url,'message'=>$param,$error=>$e]);
+            return 1;
+        }
+        return 0;
+    }
+}

+ 3147 - 0
api-v12/app/Tools/ending.csv

@@ -0,0 +1,3147 @@
+a","b","c","","d","","e"
+[,"ti","tuṃ",".v:ind.",".inf.","0.99",],
+[,"ati","ituṃ",".v:ind.",".inf.","0.99",],
+[,"ati","itvā",".v:ind.",".abs.","0.99",],
+[,"ati","atvā",".v:ind.",".abs.","0.99",],
+[,"ti","tvā",".v:ind.",".abs.","0.99",],
+[,"ant","antā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"ant","antā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"ant","antā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","anta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"ant","antā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"ant","anta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","antā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","anta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","antā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","anta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","anta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","antā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"ant","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"ant","antānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","antani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","antāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","antani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","antāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","antani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"ant","ante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"ant","ante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","ante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","ante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"ant","antebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"ant","antebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"ant","antebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"ant","antehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"ant","antehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"ant","antehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"ant","antehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"ant","antesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"ant","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"ant","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"ant","antī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","antī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","antī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","antī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"ant","antī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"ant","antībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","antībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","antīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","antīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","antiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"ant","antīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"ant","antīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"ant","antīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","antiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","antiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","antiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","antiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","anto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"ant","anto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"ant","anto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"ant","anto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","anto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","anto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","ataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"ant","ataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","atī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","atī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","atī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","atī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"ant","atī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"ant","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","atībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","atībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","atīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","atīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","atiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"ant","atīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"ant","atīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"ant","atīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","atiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","atiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","atiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","atiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"ant","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","antā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"anta","antā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"anta","antā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","anta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"anta","antā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"anta","anta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","antā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","anta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","antā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","anta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","anta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","antā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"anta","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"anta","antānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","antani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","antāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","antani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","antāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","antani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","ante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"anta","ante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","ante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","ante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"anta","antebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"anta","antebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"anta","antebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"anta","antehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"anta","antehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"anta","antehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"anta","antehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"anta","antesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"anta","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"anta","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"anta","antī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","antī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","antī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","antī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"anta","antī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"anta","antībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","antībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","antīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","antīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","antiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"anta","antīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"anta","antīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"anta","antīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","antiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","antiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","antiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","antiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","anto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"anta","anto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"anta","anto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"anta","anto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","anto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","anto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","ataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"anta","ataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","atī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","atī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","atī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","atī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"anta","atī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"anta","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","atībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","atībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","atīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","atīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","atiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"anta","atīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"anta","atīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"anta","atīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","atiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","atiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","atiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","atiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mant","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mant","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mant","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mant","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mant","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mant","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mant","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mant","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mant","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mant","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mant","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mant","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mant","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mant","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mant","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mant","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mant","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mant","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mant","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mant","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mant","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mant","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mant","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mant","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mant","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mant","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mant","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mant","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mant","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mant","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mant","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vant","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vant","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vant","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vant","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vant","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vant","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vant","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vant","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vant","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vant","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vant","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vant","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vant","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vant","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vant","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vant","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vant","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vant","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vant","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vant","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vant","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vant","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vant","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vant","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vant","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vant","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vant","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vant","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vant","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vant","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vant","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vant","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mantu","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mantu","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mantu","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mantu","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mantu","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mantu","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mantu","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mantu","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mantu","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mantu","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mantu","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mantu","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mantu","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mantu","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mantu","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mantu","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mantu","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mantu","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mantu","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mantu","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mantu","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mantu","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mantu","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mantu","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mantu","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mantu","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mantu","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mantu","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vantu","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vantu","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vantu","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vantu","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vantu","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vantu","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vantu","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vantu","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vantu","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vantu","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vantu","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vantu","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vantu","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vantu","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vantu","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vantu","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vantu","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vantu","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vantu","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vantu","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vantu","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vantu","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vantu","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vantu","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vantu","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vantu","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vantu","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mat","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mat","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mat","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mat","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mat","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mat","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mat","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mat","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mat","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mat","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mat","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mat","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mat","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mat","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mat","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mat","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mat","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mat","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mat","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mat","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mat","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mat","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mat","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mat","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mat","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mat","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mat","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mat","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mat","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mat","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mat","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mat","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vat","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vat","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vat","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vat","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vat","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vat","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vat","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vat","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vat","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vat","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vat","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vat","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vat","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vat","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vat","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vat","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vat","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vat","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vat","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vat","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vat","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vat","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vat","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vat","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vat","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vat","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vat","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vat","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vat","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vat","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vat","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vat","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"manta","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"manta","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"manta","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"manta","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"manta","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"manta","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"manta","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"manta","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"manta","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"manta","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"manta","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"manta","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"manta","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"manta","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"manta","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"manta","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"manta","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"manta","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"manta","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"manta","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"manta","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"manta","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"manta","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"manta","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"manta","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"manta","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"manta","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"manta","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"manta","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"manta","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"manta","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"manta","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vanta","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vanta","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vanta","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vanta","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vanta","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vanta","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vanta","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vanta","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vanta","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vanta","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vanta","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vanta","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vanta","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vanta","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vanta","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vanta","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vanta","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vanta","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vanta","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vanta","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vanta","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vanta","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vanta","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vanta","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vanta","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vanta","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vanta","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"a","o",".n.",".m.$.sg.$.nom.","0.99",],
+[,"a","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"a","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","āya",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","ato",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","āse",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"a","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"a","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"a","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"a","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"a","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"a","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"a","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"a","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","āya",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","ato",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","āni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"a","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"a","āni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"a","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"a","āni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"a","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"a","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"a","esaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"a","esaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"a","esaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"a","esaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"ā","ā",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ā","ā",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ā","e",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ā","aṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ā","ato",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ā","āyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ā","ā",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ā","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ā","ā",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ā","āyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ā","ā",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ā","āyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ā","ānaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ā","ānaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ā","āhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","ābhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","āhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","ābhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","āsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"i","i",".n.",".m.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".m.$.sg.$.voc.","0.3",],
+[,"i","iṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"i","issa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","ino",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","issa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","ino",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","inā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"i","inā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","ismā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","imhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","ismiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","imhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","ī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","ayo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","ī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"i","ayo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"i","ī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"i","ayo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"i","īnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"i","īnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"i","īhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ībhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","īhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ībhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","i",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"i","iṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"i","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","ino",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","ino",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","inā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"i","inā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","ismā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","imhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","ismiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","imhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","īni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"i","ī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"i","īni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"i","ī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"i","īni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"i","ī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"i","īnaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"i","īnaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"i","īhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ībhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","īhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ībhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","īsu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"i","i",".n.",".f.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".f.$.sg.$.voc.","0.3",],
+[,"i","iṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","iyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","yaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","ī",".n.",".f.$.pl.$.nom.","0.99",],
+[,"i","iyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"i","yo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"i","ī",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","iyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","yo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","ī",".n.",".f.$.pl.$.acc.","0.99",],
+[,"i","iyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"i","yo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"i","īnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"i","īnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"i","īhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","ībhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","īhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","ībhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","īsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ī","ī",".n.",".m.$.sg.$.nom.","0.99",],
+[,"in","ī",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ī","ī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ī","inī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"in","ī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"in","inī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ī","iṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ī","inaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"in","iṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"in","inaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ī","issa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ī","ino",".n.",".m.$.sg.$.gen.","0.99",],
+[,"in","issa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"in","ino",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ī","issa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ī","ino",".n.",".m.$.sg.$.dat.","0.99",],
+[,"in","issa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"in","ino",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ī","inā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"in","inā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ī","inā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","ismā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","imhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"in","inā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"in","ismā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"in","imhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","ismiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","imhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"in","ismiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"in","imhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","ī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ī","ino",".n.",".m.$.pl.$.nom.","0.99",],
+[,"in","ī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"in","ino",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ī","ī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ī","ino",".n.",".m.$.pl.$.voc.","0.3",],
+[,"in","ī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"in","ino",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ī","ī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ī","ino",".n.",".m.$.pl.$.acc.","0.99",],
+[,"in","ī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"in","ino",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ī","inaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"in","inaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ī","inaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"in","inaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ī","īhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","ībhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","īhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","ībhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","īhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","ībhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","īhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","ībhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"in","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","ī",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ī","ī",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ī","iṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","iyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","ayaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","yaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","ī",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","iyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","yo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","ī",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ī","iyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ī","yo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ī","ī",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ī","iyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ī","yo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ī","īnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","īnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","īhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","ībhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","īhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","ībhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","īsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"u","u",".n.",".m.$.sg.$.nom.","0.99",],
+[,"u","u",".n.",".m.$.sg.$.voc.","0.3",],
+[,"u","uṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"u","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"u","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"u","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"u","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"u","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"u","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"u","usmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"u","umhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"u","usmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"u","umhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"u","ū",".n.",".m.$.pl.$.nom.","0.99",],
+[,"u","avo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"u","ū",".n.",".m.$.pl.$.voc.","0.3",],
+[,"u","avo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"u","ave",".n.",".m.$.pl.$.voc.","0.3",],
+[,"u","ū",".n.",".m.$.pl.$.acc.","0.99",],
+[,"u","avo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"u","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"u","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"u","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūbhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"u","u",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"u","u",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"u","uṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"u","ussa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"u","uno",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"u","ussa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"u","uno",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"u","unā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"u","unā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"u","usmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"u","umhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"u","usmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"u","umhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"u","ū",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"u","ūni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"u","ū",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"u","ūni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"u","ū",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"u","ūni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"u","ūnaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"u","ūnaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"u","ūhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūbhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūbhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūsu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"u","u",".n.",".f.$.sg.$.nom.","0.99",],
+[,"u","u",".n.",".f.$.sg.$.voc.","0.3",],
+[,"u","uṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"u","uto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"u","uyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"u","ū",".n.",".f.$.pl.$.nom.","0.99",],
+[,"u","uyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"u","ūvo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"u","ū",".n.",".f.$.pl.$.voc.","0.3",],
+[,"u","uyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"u","ū",".n.",".f.$.pl.$.acc.","0.99",],
+[,"u","uyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"u","ūnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"u","ūnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"u","ūhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūbhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūbhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ū","ū",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ū","ū",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ū","uṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ū","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ū","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ū","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ū","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ū","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ū","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ū","usmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ū","umhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ū","usmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ū","umhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ū","ū",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ū","avo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ū","ū",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ū","avo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ū","ave",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ū","ū",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ū","avo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ū","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ū","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ū","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūbhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ū","ū",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ū","ū",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ū","uṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ū","uto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ū","uyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ū","ū",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ū","uyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ū","ū",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ū","uyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ū","ū",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ū","uyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ū","ūnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ū","ūnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ū","ūhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūbhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūbhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"as","o",".n.",".m.$.sg.$.nom.","0.99",],
+[,"as","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"o","o",".n.",".m.$.sg.$.nom.","0.99",],
+[,"o","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"as","o",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","o",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","o",".n.",".m.$.sg.$.acc.","0.99",],
+[,"as","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"o","o",".n.",".m.$.sg.$.acc.","0.99",],
+[,"o","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"as","aso",".n.",".m.$.sg.$.gen.","0.99",],
+[,"as","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"o","aso",".n.",".m.$.sg.$.gen.","0.99",],
+[,"o","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"as","aso",".n.",".m.$.sg.$.dat.","0.99",],
+[,"as","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"o","aso",".n.",".m.$.sg.$.dat.","0.99",],
+[,"o","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"as","asā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"as","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"o","asā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"o","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"as","asā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","ā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","asā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","ā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","asi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","asi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"o","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"o","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"o","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"o","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"as","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"o","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"as","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"o","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"as","o",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"as","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"o","o",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"o","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"as","o",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","o",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","o",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"as","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"o","o",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"o","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"as","aso",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"as","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"o","aso",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"o","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"as","aso",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"as","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"o","aso",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"o","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"as","asā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"as","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"o","asā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"o","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"as","asā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","asā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","asi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","asi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"o","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"o","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"as","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"o","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"as","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"o","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"as","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"o","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"as","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"o","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"an","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"an","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"an","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"an","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"an","ānaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"an","anaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"an","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"an","ano",".n.",".m.$.sg.$.gen.","0.99",],
+[,"an","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"an","ano",".n.",".m.$.sg.$.dat.","0.99",],
+[,"an","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"an","anā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"an","anā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"an","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"an","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"an","ani",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"an","āno",".n.",".m.$.pl.$.nom.","0.99",],
+[,"an","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"an","āno",".n.",".m.$.pl.$.voc.","0.3",],
+[,"an","āno",".n.",".m.$.pl.$.acc.","0.99",],
+[,"an","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"an","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"an","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"an","anehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anesu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"an","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"an","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"an","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"an","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","āya",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","ato",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","āni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"an","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"an","āni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"an","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"an","āni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"an","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"an","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"an","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"an","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","ā",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ar","ā",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ar","aṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ar","assa",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ar","ino",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ar","assa",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ar","ino",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ar","ena",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ar","inā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ar","asmā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ar","amhā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ar","ini",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","asmiṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","amhi",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","ā",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ar","āno",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ar","ā",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ar","āno",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ar","ā",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ar","āno",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ar","ānaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ar","ehi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","āhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","ehi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","āhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","esu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","āsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","ā",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"ar","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ar","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"ar","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"ar","ino",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"ar","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"ar","ino",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"ar","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"ar","inā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"ar","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"ar","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"ar","ini",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"ar","āno",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"ar","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"ar","āno",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"ar","ā",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"ar","āno",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"ar","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"ar","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","āhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","āhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","āsu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"a","e",".n.",".m.$.sg.$.nom.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","asā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","āya",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","asi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","e",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","o",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","āse",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","o",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","ān",".n.",".m.$.pl.$.acc.","0.99",],
+[,"a","e",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ato",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","e",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","asā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","asi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"a","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"a","āya",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","o",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","ato",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ā","ā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ā","āto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ā","a",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ā","iyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","e",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","ito",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","e",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","ini",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","o",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","iyo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","ino",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","iyo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"i","ihi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ibhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","inaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"i","ihi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ibhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","inaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"i","isu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","iyo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"i","ihi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ibhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ihi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ibhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","inaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"i","inaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"i","isu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"i","iṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"i","e",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","ito",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","e",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","ini",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","o",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","iṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"i","ī",".n.",".f.$.sg.$.nom.","0.99",],
+[,"i","ito",".n.",".f.$.sg.$.abl.","0.99",],
+[,"i","myā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"i","o",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","āyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","u",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","ī",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ī","ini",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","īnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ī","īnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ī","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","i",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ī","iyo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ī","iye",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ī","iyaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ī","ito",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","i",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ī","iyaṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ī","ito",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","īto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","inaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","inaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","īyanaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","īyanaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","iyanaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","iyanaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","isu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ar","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ar","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ar","araṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ar","āraṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ar","u",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","u",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","arā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","ara",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","āra",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","ārā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","arā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","ara",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","āra",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","ārā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","ari",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ar","āro",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ar","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ar","āro",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ar","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ar","āro",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ar","āre",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ar","ārānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ar","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ar","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ar","ārānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ar","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ar","ārehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","ārebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","āresu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ar","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ar","āyo",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ar","iyo",".n.",".m.$.sg.$.voc.","0.3",],
+[,"an","ane",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"an","ubhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","uhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"an","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"an","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","usu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","a",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"an","a",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"an","anā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","unā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","no",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","unā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","no",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","ani",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"as","āni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","āni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","āni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","u",".n.",".m.$.sg.$.nom.","0.99",],
+[,"us","uṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"us","u",".n.",".m.$.sg.$.voc.","0.3",],
+[,"us","uṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"us","u",".n.",".m.$.sg.$.acc.","0.99",],
+[,"us","uṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"us","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"us","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"us","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"us","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"us","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"us","usā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"us","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"us","usā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"us","uni",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","usi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","ū",".n.",".m.$.pl.$.nom.","0.99",],
+[,"us","ūni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"us","ū",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ūni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ū",".n.",".m.$.pl.$.acc.","0.99",],
+[,"us","ūni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"us","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"us","ūsaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"us","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"us","ūsaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"us","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūbhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"a","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","ehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","ebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"a","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","ānī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"a","ānī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"a","ānī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ā","āhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","ābhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","āhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","ābhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","āsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"i","issā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","issā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","imhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","īhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ībhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","īhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ībhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","imhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","īnī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"i","īnī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"i","īnī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"i","īhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ībhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","īhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ībhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","īsū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"i","īhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","ībhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","īhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","ībhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","īsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ī","issā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"in","issā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ī","issā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"in","issā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ī","imhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"in","imhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","īhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","ībhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","īhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","ībhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","īhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","ībhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","īhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","ībhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"in","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","īhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","ībhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","īhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","ībhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","īsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"u","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"u","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"u","umhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"u","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūbhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"u","ussā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"u","ussā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"u","umhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"u","ūnī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"u","ūnī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"u","ūnī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"u","ūhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūbhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūbhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūsū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"u","ūhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūbhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūbhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ū","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ū","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ū","umhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ū","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūbhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ū","ūhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūbhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūbhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"as","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"o","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"as","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"o","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"as","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"o","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"as","asī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","asī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","ehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","ebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"o","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"as","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"o","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"as","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"o","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"as","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"o","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"as","asī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","asī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"o","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"an","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"an","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"an","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"an","anī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","anehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anesū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"an","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","ānī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"an","ānī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"an","ānī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"an","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","assā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ar","assā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ar","enā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ar","amhī",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","ehī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","āhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","ehī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","āhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","esū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","āsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"ar","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"ar","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"ar","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","āhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","āhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","āsū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"a","asī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","asī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","ihī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ibhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ihī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ibhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","isū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","ihī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ibhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ihī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ibhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","isū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ī","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","isū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","arī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ar","ārehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","ārebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","āresū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ar","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","ubhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","uhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","usū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","anī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","ānī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","ānī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"us","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"us","unī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","usī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","ūnī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"us","ūnī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ūnī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"us","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūbhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ant","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ant","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ant","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ant","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ant","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ant","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ant","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ant","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ant","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ant","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ant","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ant","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"anta","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"anta","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"anta","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"anta","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"anta","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"anta","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"anta","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"anta","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"anta","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"anta","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"anta","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"anta","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ti","ti",".v.",".3p.$.sg.$.pres.","0.99",],
+[,"ti","nti",".v.",".3p.$.pl.$.pres.","0.99",],
+[,"ti","te",".v.",".3p.$.sg.$.pres.","0.99",],
+[,"ti","nte",".v.",".3p.$.pl.$.pres.","0.99",],
+[,"ti","re",".v.",".3p.$.pl.$.pres.","0.99",],
+[,"ti","ssati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ti","ssanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ti","ssate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ti","ssante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ti","ssare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ti","tu",".v.",".3p.$.sg.$.imp.","0.99",],
+[,"ti","ntu",".v.",".3p.$.pl.$.imp.","0.99",],
+[,"ti","taṃ",".v.",".3p.$.sg.$.imp.","0.99",],
+[,"ti","ntaṃ",".v.",".3p.$.pl.$.imp.","0.99",],
+[,"ti","sā",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssa",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssati",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssaṃsu",".v.",".3p.$.pl.$.cond.","0.99",],
+[,"ti","ssatha",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssiṃsu",".v.",".3p.$.pl.$.cond.","0.99",],
+[,"ti","si",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","sī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","sā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","siṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","sṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","suṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","sā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","sa",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","stthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","satthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","mi",".v.",".1p.$.sg.$.pres.","0.99",],
+[,"ti","ma",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","e",".v.",".1p.$.sg.$.pres.","0.99",],
+[,"ti","mhe",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mahe",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mha",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mase",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mhase",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","ssāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ti","ssāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ti","ssaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ti","ssāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ti","ssāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ti","mi",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"ti","ma",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"ti","ssa",".v.",".1p.$.sg.$.cond.","0.99",],
+[,"ti","ssamhā",".v.",".1p.$.pl.$.cond.","0.99",],
+[,"ti","ssaṃ",".v.",".1p.$.sg.$.cond.","0.99",],
+[,"ti","ssāmhase",".v.",".1p.$.pl.$.cond.","0.99",],
+[,"ti","siṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","saṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","sṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","sa",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","sā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","simha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ti","simhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ti","sa",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","simhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ti","si",".v.",".2p.$.sg.$.pres.","0.99",],
+[,"ti","tha",".v.",".2p.$.pl.$.pres.","0.99",],
+[,"ti","se",".v.",".2p.$.sg.$.pres.","0.99",],
+[,"ti","vhe",".v.",".2p.$.pl.$.pres.","0.99",],
+[,"ti","ssasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ti","ssatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ti","ssase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ti","ssavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ti","hi",".v.",".2p.$.sg.$.imp.","0.99",],
+[,"ti","ta",".v.",".2p.$.pl.$.imp.","0.99",],
+[,"ti","ssu",".v.",".2p.$.sg.$.imp.","0.99",],
+[,"ti","vho",".v.",".2p.$.pl.$.imp.","0.99",],
+[,"ti","se",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssa",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssasi",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssatha",".v.",".2p.$.pl.$.cond.","0.99",],
+[,"ti","ssase",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssavhe",".v.",".2p.$.pl.$.cond.","0.99",],
+[,"ti","si",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","so",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","sā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","sttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ti","sse",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","svhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ti","eyya",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"ati","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"ati","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"ati","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"ati","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ati","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ati","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ati","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ati","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ati","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","āmi",".v.",".1p.$.sg.$.pres.","0.99",],
+[,"ati","āma",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ati","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"ati","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"ati","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"ati","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"ati","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"ati","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"ati","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ati","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ati","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ati","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ati","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ati","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ati","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ati","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ati","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"ati","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"ati","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"ati","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"ati","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ati","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ati","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ati","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ati","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ati","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"āti","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"āti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"āti","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"āti","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"āti","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"āti","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"āti","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"āti","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"āti","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"āti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"āti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"āti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"āti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"āti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"āti","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"āti","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"āti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"āti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"āti","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"āti","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"āti","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"āti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"āti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"āti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"āti","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"āti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"āti","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"āti","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"āti","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"āti","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"āti","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"āti","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"eti","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"eti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"eti","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"eti","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"eti","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"eti","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"eti","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"eti","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"eti","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"eti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"eti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"eti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"eti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"eti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"eti","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"eti","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"eti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"eti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"eti","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"eti","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"eti","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"eti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"eti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"eti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"eti","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"eti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"eti","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"eti","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"eti","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"eti","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"eti","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"eti","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"oti","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"oti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"oti","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"oti","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"oti","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"oti","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"oti","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"oti","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"oti","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"oti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"oti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"oti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"oti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"oti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"oti","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"oti","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"oti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"oti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"oti","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"oti","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"oti","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"oti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"oti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"oti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"oti","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"oti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"oti","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"oti","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"oti","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"oti","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"oti","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"oti","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ati","ittha",".v.",".2p.$.pl.$.aor.","0.99",],

+ 2104 - 0
api-v12/app/Tools/ending/adj.csv

@@ -0,0 +1,2104 @@
+type,end,end1,end2,grammar,endlen
+.f.,a,ābhi,bhi,.f.$.pl.$.abl.,1
+.f.,a,āhi,hi,.f.$.pl.$.abl.,1
+.f.,a,ā,ā,.f.$.pl.$.acc.,1
+.f.,a,āyo,yo,.f.$.pl.$.acc.,1
+.f.,a,ānaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,a,ānaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,a,ābhi,bhi,.f.$.pl.$.inst.,1
+.f.,a,āhi,hi,.f.$.pl.$.inst.,1
+.f.,a,āsu,su,.f.$.pl.$.loc.,1
+.f.,a,ā,ā,.f.$.pl.$.nom.,1
+.f.,a,āyo,yo,.f.$.pl.$.nom.,1
+.f.,a,ā,ā,.f.$.pl.$.voc.,1
+.f.,a,āyo,yo,.f.$.pl.$.voc.,1
+.f.,a,ato,to,.f.$.sg.$.abl.,1
+.f.,a,āya,ya,.f.$.sg.$.abl.,1
+.f.,a,aṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,a,āya,ya,.f.$.sg.$.dat.,1
+.f.,a,āya,ya,.f.$.sg.$.gen.,1
+.f.,a,āya,ya,.f.$.sg.$.inst.,1
+.f.,a,āya,ya,.f.$.sg.$.loc.,1
+.f.,a,āyaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,a,ā,a,.f.$.sg.$.nom.,1
+.f.,a,ā,a,.f.$.sg.$.voc.,1
+.f.,a,e,e,.f.$.sg.$.voc.,1
+.m.,a,ebhi,ebhi,.m.$.pl.$.abl.,1
+.m.,a,ehi,ehi,.m.$.pl.$.abl.,1
+.m.,a,e,e,.m.$.pl.$.acc.,1
+.m.,a,anaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,a,anaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,a,ebhi,ebhi,.m.$.pl.$.inst.,1
+.m.,a,ehi,ehi,.m.$.pl.$.inst.,1
+.m.,a,esu,su,.m.$.pl.$.loc.,1
+.m.,a,ā,ā,.m.$.pl.$.nom.,1
+.m.,a,āse,āse,.m.$.pl.$.nom.,1
+.m.,a,ā,ā,.m.$.pl.$.voc.,1
+.m.,a,ā,ā,.m.$.sg.$.abl.,1
+.m.,a,amhā,mhā,.m.$.sg.$.abl.,1
+.m.,a,asmā,smā,.m.$.sg.$.abl.,1
+.m.,a,ato,to,.m.$.sg.$.abl.,1
+.m.,a,aṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,a,assa,ssa,.m.$.sg.$.dat.,1
+.m.,a,āya,ya,.m.$.sg.$.dat.,1
+.m.,a,assa,ssa,.m.$.sg.$.gen.,1
+.m.,a,ena,ina,.m.$.sg.$.inst.,1
+.m.,a,amhi,mhi,.m.$.sg.$.loc.,1
+.m.,a,asmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,a,e,e,.m.$.sg.$.loc.,1
+.m.,a,o,o,.m.$.sg.$.nom.,1
+.m.,a,a,a,.m.$.sg.$.voc.,1
+.m.,a,ā,ā,.m.$.sg.$.voc.,1
+.nt.,a,ebhi,ebhi,.nt.$.pl.$.abl.,1
+.nt.,a,ehi,ehi,.nt.$.pl.$.abl.,1
+.nt.,a,āni,ni,.nt.$.pl.$.acc.,1
+.nt.,a,e,e,.nt.$.pl.$.acc.,1
+.nt.,a,ānaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,a,ānaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,a,ebhi,ebhi,.nt.$.pl.$.inst.,1
+.nt.,a,ehi,ehi,.nt.$.pl.$.inst.,1
+.nt.,a,esu,su,.nt.$.pl.$.loc.,1
+.nt.,a,ā,a,.nt.$.pl.$.nom.,1
+.nt.,a,āni,ni,.nt.$.pl.$.nom.,1
+.nt.,a,ā,ā,.nt.$.pl.$.voc.,1
+.nt.,a,āni,ni,.nt.$.pl.$.voc.,1
+.nt.,a,ā,ā,.nt.$.sg.$.abl.,1
+.nt.,a,amhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,a,asmā,smā,.nt.$.sg.$.abl.,1
+.nt.,a,ato,to,.nt.$.sg.$.abl.,1
+.nt.,a,aṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,a,assa,ssa,.nt.$.sg.$.dat.,1
+.nt.,a,āya,āya,.nt.$.sg.$.dat.,1
+.nt.,a,assa,ssa,.nt.$.sg.$.gen.,1
+.nt.,a,ena,ina,.nt.$.sg.$.inst.,1
+.nt.,a,amhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,a,asmiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,a,e,i,.nt.$.sg.$.loc.,1
+.nt.,a,aṃ,ṃ,.nt.$.sg.$.nom.,1
+.nt.,a,a,a,.nt.$.sg.$.voc.,1
+.f.,ant,antībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,ant,antīhi,īhi,.f.$.pl.$.abl.,3
+.f.,ant,atībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,ant,atīhi,īhi,.f.$.pl.$.abl.,3
+.f.,ant,antī,ī,.f.$.pl.$.acc.,3
+.f.,ant,antiyo,iyo,.f.$.pl.$.acc.,3
+.f.,ant,atī,ī,.f.$.pl.$.acc.,3
+.f.,ant,atiyo,iyo,.f.$.pl.$.acc.,3
+.f.,ant,antīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,ant,atīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,ant,antīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,ant,atīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,ant,antībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,ant,antīhi,īhi,.f.$.pl.$.inst.,3
+.f.,ant,atībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,ant,atīhi,īhi,.f.$.pl.$.inst.,3
+.f.,ant,antīsu,īsu,.f.$.pl.$.loc.,3
+.f.,ant,atīsu,īsu,.f.$.pl.$.loc.,3
+.f.,ant,antī,ī,.f.$.pl.$.nom.,3
+.f.,ant,antiyo,iyo,.f.$.pl.$.nom.,3
+.f.,ant,atī,ī,.f.$.pl.$.nom.,3
+.f.,ant,atiyo,iyo,.f.$.pl.$.nom.,3
+.f.,ant,antī,ī,.f.$.pl.$.voc.,3
+.f.,ant,antiyo,iyo,.f.$.pl.$.voc.,3
+.f.,ant,atī,ī,.f.$.pl.$.voc.,3
+.f.,ant,atiyo,iyo,.f.$.pl.$.voc.,3
+.f.,ant,antiyā,iyā,.f.$.sg.$.abl.,3
+.f.,ant,atiyā,iyā,.f.$.sg.$.abl.,3
+.f.,ant,antiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,ant,atiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,ant,antiyā,iyā,.f.$.sg.$.dat.,3
+.f.,ant,atiyā,iyā,.f.$.sg.$.dat.,3
+.f.,ant,antiyā,iyā,.f.$.sg.$.gen.,3
+.f.,ant,atiyā,iyā,.f.$.sg.$.gen.,3
+.f.,ant,antiyā,iyā,.f.$.sg.$.inst.,3
+.f.,ant,atiyā,iyā,.f.$.sg.$.inst.,3
+.f.,ant,antiyā,iyā,.f.$.sg.$.loc.,3
+.f.,ant,antiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,ant,atiyā,iyā,.f.$.sg.$.loc.,3
+.f.,ant,atiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,ant,antī,ī,.f.$.sg.$.nom.,3
+.f.,ant,atī,ī,.f.$.sg.$.nom.,3
+.f.,ant,antī,ī,.f.$.sg.$.voc.,3
+.f.,ant,atī,ī,.f.$.sg.$.voc.,3
+.m.,ant,ebhi,ebhi,.m.$.pl.$.abl.,3
+.m.,ant,ehi,ehi,.m.$.pl.$.abl.,3
+.m.,ant,e,e,.m.$.pl.$.acc.,3
+.m.,ant,ānaṃ,naṃ,.m.$.pl.$.dat.,3
+.m.,ant,ānaṃ,naṃ,.m.$.pl.$.gen.,3
+.m.,ant,ebhi,ebhi,.m.$.pl.$.inst.,3
+.m.,ant,ehi,ehi,.m.$.pl.$.inst.,3
+.m.,ant,esu,su,.m.$.pl.$.loc.,3
+.m.,ant,ā,ā,.m.$.pl.$.nom.,3
+.m.,ant,ā,ā,.m.$.pl.$.voc.,3
+.m.,ant,antamhā,mhā,.m.$.sg.$.abl.,3
+.m.,ant,antasmā,smā,.m.$.sg.$.abl.,3
+.m.,ant,atā,sā,.m.$.sg.$.abl.,3
+.m.,ant,antaṃ,o,.m.$.sg.$.acc.,3
+.m.,ant,antassa,so,.m.$.sg.$.dat.,3
+.m.,ant,ato,ssa,.m.$.sg.$.dat.,3
+.m.,ant,antassa,so,.m.$.sg.$.gen.,3
+.m.,ant,ato,ssa,.m.$.sg.$.gen.,3
+.m.,ant,atā,sā,.m.$.sg.$.inst.,3
+.m.,ant,atena,na,.m.$.sg.$.inst.,3
+.m.,ant,antamhi,mhi,.m.$.sg.$.loc.,3
+.m.,ant,antasmiṃ,smiṃ,.m.$.sg.$.loc.,3
+.m.,ant,ante,e,.m.$.sg.$.loc.,3
+.m.,ant,ati,si,.m.$.sg.$.loc.,3
+.m.,ant,aṃ,ṃ,.m.$.sg.$.nom.,3
+.m.,ant,anto,o,.m.$.sg.$.nom.,3
+.m.,ant,a,ā,.m.$.sg.$.voc.,3
+.m.,ant,ā,ṃ,.m.$.sg.$.voc.,3
+.m.,ant,aṃ,o,.m.$.sg.$.voc.,3
+.nt.,ant,antebhi,ebhi,.nt.$.pl.$.abl.,3
+.nt.,ant,antehi,ehi,.nt.$.pl.$.abl.,3
+.nt.,ant,antã,ā,.nt.$.pl.$.acc.,3
+.nt.,ant,antãni,āni,.nt.$.pl.$.acc.,3
+.nt.,ant,antānaṃ,naṃ,.nt.$.pl.$.dat.,3
+.nt.,ant,ataṃ,ṃ,.nt.$.pl.$.dat.,3
+.nt.,ant,antānaṃ,naṃ,.nt.$.pl.$.gen.,3
+.nt.,ant,ataṃ,ṃ,.nt.$.pl.$.gen.,3
+.nt.,ant,antebhi,ebhi,.nt.$.pl.$.inst.,3
+.nt.,ant,antehi,ehi,.nt.$.pl.$.inst.,3
+.nt.,ant,antesu,su,.nt.$.pl.$.loc.,3
+.nt.,ant,antã,ā,.nt.$.pl.$.nom.,3
+.nt.,ant,antãni,āni,.nt.$.pl.$.nom.,3
+.nt.,ant,antã,ā,.nt.$.pl.$.voc.,3
+.nt.,ant,antãni,āni,.nt.$.pl.$.voc.,3
+.nt.,ant,antamhā,mhā,.nt.$.sg.$.abl.,3
+.nt.,ant,antasmā,smā,.nt.$.sg.$.abl.,3
+.nt.,ant,atā,sā,.nt.$.sg.$.abl.,3
+.nt.,ant,antaṃ,o,.nt.$.sg.$.acc.,3
+.nt.,ant,antassa,so,.nt.$.sg.$.dat.,3
+.nt.,ant,ato,ssa,.nt.$.sg.$.dat.,3
+.nt.,ant,antassa,so,.nt.$.sg.$.gen.,3
+.nt.,ant,ato,ssa,.nt.$.sg.$.gen.,3
+.nt.,ant,atā,sā,.nt.$.sg.$.inst.,3
+.nt.,ant,atena,na,.nt.$.sg.$.inst.,3
+.nt.,ant,antamhi,mhi,.nt.$.sg.$.loc.,3
+.nt.,ant,antasmiṃ,smiṃ,.nt.$.sg.$.loc.,3
+.nt.,ant,ante,e,.nt.$.sg.$.loc.,3
+.nt.,ant,ati,si,.nt.$.sg.$.loc.,3
+.nt.,ant,antaṃ,ṃ,.nt.$.sg.$.nom.,3
+.nt.,ant,anto,o,.nt.$.sg.$.nom.,3
+.nt.,ant,a,ā,.nt.$.sg.$.voc.,3
+.nt.,ant,ā,ṃ,.nt.$.sg.$.voc.,3
+.nt.,ant,aṃ,o,.nt.$.sg.$.voc.,3
+.f.,anta,antībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,anta,antīhi,īhi,.f.$.pl.$.abl.,4
+.f.,anta,atībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,anta,atīhi,īhi,.f.$.pl.$.abl.,4
+.f.,anta,antī,ī,.f.$.pl.$.acc.,4
+.f.,anta,antiyo,iyo,.f.$.pl.$.acc.,4
+.f.,anta,atī,ī,.f.$.pl.$.acc.,4
+.f.,anta,atiyo,iyo,.f.$.pl.$.acc.,4
+.f.,anta,antīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,anta,atīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,anta,antīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,anta,atīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,anta,antībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,anta,antīhi,īhi,.f.$.pl.$.inst.,4
+.f.,anta,atībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,anta,atīhi,īhi,.f.$.pl.$.inst.,4
+.f.,anta,antīsu,īsu,.f.$.pl.$.loc.,4
+.f.,anta,atīsu,īsu,.f.$.pl.$.loc.,4
+.f.,anta,antī,ī,.f.$.pl.$.nom.,4
+.f.,anta,antiyo,iyo,.f.$.pl.$.nom.,4
+.f.,anta,atī,ī,.f.$.pl.$.nom.,4
+.f.,anta,atiyo,iyo,.f.$.pl.$.nom.,4
+.f.,anta,antī,ī,.f.$.pl.$.voc.,4
+.f.,anta,antiyo,iyo,.f.$.pl.$.voc.,4
+.f.,anta,atī,ī,.f.$.pl.$.voc.,4
+.f.,anta,atiyo,iyo,.f.$.pl.$.voc.,4
+.f.,anta,antiyā,iyā,.f.$.sg.$.abl.,4
+.f.,anta,atiyā,iyā,.f.$.sg.$.abl.,4
+.f.,anta,antiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,anta,atiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,anta,antiyā,iyā,.f.$.sg.$.dat.,4
+.f.,anta,atiyā,iyā,.f.$.sg.$.dat.,4
+.f.,anta,antiyā,iyā,.f.$.sg.$.gen.,4
+.f.,anta,atiyā,iyā,.f.$.sg.$.gen.,4
+.f.,anta,antiyā,iyā,.f.$.sg.$.inst.,4
+.f.,anta,atiyā,iyā,.f.$.sg.$.inst.,4
+.f.,anta,antiyā,iyā,.f.$.sg.$.loc.,4
+.f.,anta,antiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,anta,atiyā,iyā,.f.$.sg.$.loc.,4
+.f.,anta,atiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,anta,antī,ī,.f.$.sg.$.nom.,4
+.f.,anta,atī,ī,.f.$.sg.$.nom.,4
+.f.,anta,antī,ī,.f.$.sg.$.voc.,4
+.f.,anta,atī,ī,.f.$.sg.$.voc.,4
+.m.,anta,ebhi,ebhi,.m.$.pl.$.abl.,4
+.m.,anta,ehi,ehi,.m.$.pl.$.abl.,4
+.m.,anta,e,e,.m.$.pl.$.acc.,4
+.m.,anta,ānaṃ,naṃ,.m.$.pl.$.dat.,4
+.m.,anta,ānaṃ,naṃ,.m.$.pl.$.gen.,4
+.m.,anta,ebhi,ebhi,.m.$.pl.$.inst.,4
+.m.,anta,ehi,ehi,.m.$.pl.$.inst.,4
+.m.,anta,esu,su,.m.$.pl.$.loc.,4
+.m.,anta,ā,ā,.m.$.pl.$.nom.,4
+.m.,anta,ā,ā,.m.$.pl.$.voc.,4
+.m.,anta,antamhā,mhā,.m.$.sg.$.abl.,4
+.m.,anta,antasmā,smā,.m.$.sg.$.abl.,4
+.m.,anta,atā,sā,.m.$.sg.$.abl.,4
+.m.,anta,antaṃ,o,.m.$.sg.$.acc.,4
+.m.,anta,antassa,so,.m.$.sg.$.dat.,4
+.m.,anta,ato,ssa,.m.$.sg.$.dat.,4
+.m.,anta,antassa,so,.m.$.sg.$.gen.,4
+.m.,anta,ato,ssa,.m.$.sg.$.gen.,4
+.m.,anta,atā,sā,.m.$.sg.$.inst.,4
+.m.,anta,atena,na,.m.$.sg.$.inst.,4
+.m.,anta,antamhi,mhi,.m.$.sg.$.loc.,4
+.m.,anta,antasmiṃ,smiṃ,.m.$.sg.$.loc.,4
+.m.,anta,ante,e,.m.$.sg.$.loc.,4
+.m.,anta,ati,si,.m.$.sg.$.loc.,4
+.m.,anta,aṃ,ṃ,.m.$.sg.$.nom.,4
+.m.,anta,anto,o,.m.$.sg.$.nom.,4
+.m.,anta,a,ā,.m.$.sg.$.voc.,4
+.m.,anta,ā,ṃ,.m.$.sg.$.voc.,4
+.m.,anta,aṃ,o,.m.$.sg.$.voc.,4
+.nt.,anta,antebhi,ebhi,.nt.$.pl.$.abl.,4
+.nt.,anta,antehi,ehi,.nt.$.pl.$.abl.,4
+.nt.,anta,antã,ā,.nt.$.pl.$.acc.,4
+.nt.,anta,antãni,āni,.nt.$.pl.$.acc.,4
+.nt.,anta,antānaṃ,naṃ,.nt.$.pl.$.dat.,4
+.nt.,anta,ataṃ,ṃ,.nt.$.pl.$.dat.,4
+.nt.,anta,antānaṃ,naṃ,.nt.$.pl.$.gen.,4
+.nt.,anta,ataṃ,ṃ,.nt.$.pl.$.gen.,4
+.nt.,anta,antebhi,ebhi,.nt.$.pl.$.inst.,4
+.nt.,anta,antehi,ehi,.nt.$.pl.$.inst.,4
+.nt.,anta,antesu,su,.nt.$.pl.$.loc.,4
+.nt.,anta,antã,ā,.nt.$.pl.$.nom.,4
+.nt.,anta,antãni,āni,.nt.$.pl.$.nom.,4
+.nt.,anta,antã,ā,.nt.$.pl.$.voc.,4
+.nt.,anta,antãni,āni,.nt.$.pl.$.voc.,4
+.nt.,anta,antamhā,mhā,.nt.$.sg.$.abl.,4
+.nt.,anta,antasmā,smā,.nt.$.sg.$.abl.,4
+.nt.,anta,atā,sā,.nt.$.sg.$.abl.,4
+.nt.,anta,antaṃ,o,.nt.$.sg.$.acc.,4
+.nt.,anta,antassa,so,.nt.$.sg.$.dat.,4
+.nt.,anta,ato,ssa,.nt.$.sg.$.dat.,4
+.nt.,anta,antassa,so,.nt.$.sg.$.gen.,4
+.nt.,anta,ato,ssa,.nt.$.sg.$.gen.,4
+.nt.,anta,atā,sā,.nt.$.sg.$.inst.,4
+.nt.,anta,atena,na,.nt.$.sg.$.inst.,4
+.nt.,anta,antamhi,mhi,.nt.$.sg.$.loc.,4
+.nt.,anta,antasmiṃ,smiṃ,.nt.$.sg.$.loc.,4
+.nt.,anta,ante,e,.nt.$.sg.$.loc.,4
+.nt.,anta,ati,si,.nt.$.sg.$.loc.,4
+.nt.,anta,antaṃ,ṃ,.nt.$.sg.$.nom.,4
+.nt.,anta,anto,o,.nt.$.sg.$.nom.,4
+.nt.,anta,a,ā,.nt.$.sg.$.voc.,4
+.nt.,anta,ā,ṃ,.nt.$.sg.$.voc.,4
+.nt.,anta,aṃ,o,.nt.$.sg.$.voc.,4
+.f.,at,antībhi,ībhi,.f.$.pl.$.abl.,2
+.f.,at,antīhi,īhi,.f.$.pl.$.abl.,2
+.f.,at,atībhi,ībhi,.f.$.pl.$.abl.,2
+.f.,at,atīhi,īhi,.f.$.pl.$.abl.,2
+.f.,at,antī,ī,.f.$.pl.$.acc.,2
+.f.,at,antiyo,iyo,.f.$.pl.$.acc.,2
+.f.,at,atī,ī,.f.$.pl.$.acc.,2
+.f.,at,atiyo,iyo,.f.$.pl.$.acc.,2
+.f.,at,antīnaṃ,īnaṃ,.f.$.pl.$.dat.,2
+.f.,at,atīnaṃ,īnaṃ,.f.$.pl.$.dat.,2
+.f.,at,antīnaṃ,īnaṃ,.f.$.pl.$.gen.,2
+.f.,at,atīnaṃ,īnaṃ,.f.$.pl.$.gen.,2
+.f.,at,antībhi,ībhi,.f.$.pl.$.inst.,2
+.f.,at,antīhi,īhi,.f.$.pl.$.inst.,2
+.f.,at,atībhi,ībhi,.f.$.pl.$.inst.,2
+.f.,at,atīhi,īhi,.f.$.pl.$.inst.,2
+.f.,at,antīsu,īsu,.f.$.pl.$.loc.,2
+.f.,at,atīsu,īsu,.f.$.pl.$.loc.,2
+.f.,at,antī,ī,.f.$.pl.$.nom.,2
+.f.,at,antiyo,iyo,.f.$.pl.$.nom.,2
+.f.,at,atī,ī,.f.$.pl.$.nom.,2
+.f.,at,atiyo,iyo,.f.$.pl.$.nom.,2
+.f.,at,antī,ī,.f.$.pl.$.voc.,2
+.f.,at,antiyo,iyo,.f.$.pl.$.voc.,2
+.f.,at,atī,ī,.f.$.pl.$.voc.,2
+.f.,at,atiyo,iyo,.f.$.pl.$.voc.,2
+.f.,at,antiyā,iyā,.f.$.sg.$.abl.,2
+.f.,at,atiyā,iyā,.f.$.sg.$.abl.,2
+.f.,at,antiṃ,iṃ,.f.$.sg.$.acc.,2
+.f.,at,atiṃ,iṃ,.f.$.sg.$.acc.,2
+.f.,at,antiyā,iyā,.f.$.sg.$.dat.,2
+.f.,at,atiyā,iyā,.f.$.sg.$.dat.,2
+.f.,at,antiyā,iyā,.f.$.sg.$.gen.,2
+.f.,at,atiyā,iyā,.f.$.sg.$.gen.,2
+.f.,at,antiyā,iyā,.f.$.sg.$.inst.,2
+.f.,at,atiyā,iyā,.f.$.sg.$.inst.,2
+.f.,at,antiyā,iyā,.f.$.sg.$.loc.,2
+.f.,at,antiyaṃ,iyaṃ,.f.$.sg.$.loc.,2
+.f.,at,atiyā,iyā,.f.$.sg.$.loc.,2
+.f.,at,atiyaṃ,iyaṃ,.f.$.sg.$.loc.,2
+.f.,at,antī,ī,.f.$.sg.$.nom.,2
+.f.,at,atī,ī,.f.$.sg.$.nom.,2
+.f.,at,antī,ī,.f.$.sg.$.voc.,2
+.f.,at,atī,ī,.f.$.sg.$.voc.,2
+.m.,at,ebhi,ebhi,.m.$.pl.$.abl.,2
+.m.,at,ehi,ehi,.m.$.pl.$.abl.,2
+.m.,at,e,e,.m.$.pl.$.acc.,2
+.m.,at,ānaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,at,ānaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,at,ebhi,ebhi,.m.$.pl.$.inst.,2
+.m.,at,ehi,ehi,.m.$.pl.$.inst.,2
+.m.,at,esu,su,.m.$.pl.$.loc.,2
+.m.,at,ā,ā,.m.$.pl.$.nom.,2
+.m.,at,ā,ā,.m.$.pl.$.voc.,2
+.m.,at,antamhā,mhā,.m.$.sg.$.abl.,2
+.m.,at,antasmā,smā,.m.$.sg.$.abl.,2
+.m.,at,atā,sā,.m.$.sg.$.abl.,2
+.m.,at,antaṃ,o,.m.$.sg.$.acc.,2
+.m.,at,antassa,so,.m.$.sg.$.dat.,2
+.m.,at,ato,ssa,.m.$.sg.$.dat.,2
+.m.,at,antassa,so,.m.$.sg.$.gen.,2
+.m.,at,ato,ssa,.m.$.sg.$.gen.,2
+.m.,at,atā,sā,.m.$.sg.$.inst.,2
+.m.,at,atena,na,.m.$.sg.$.inst.,2
+.m.,at,antamhi,mhi,.m.$.sg.$.loc.,2
+.m.,at,antasmiṃ,smiṃ,.m.$.sg.$.loc.,2
+.m.,at,ante,e,.m.$.sg.$.loc.,2
+.m.,at,ati,si,.m.$.sg.$.loc.,2
+.m.,at,aṃ,ṃ,.m.$.sg.$.nom.,2
+.m.,at,anto,o,.m.$.sg.$.nom.,2
+.m.,at,a,ā,.m.$.sg.$.voc.,2
+.m.,at,ā,ṃ,.m.$.sg.$.voc.,2
+.m.,at,aṃ,o,.m.$.sg.$.voc.,2
+.nt.,at,antebhi,ebhi,.nt.$.pl.$.abl.,2
+.nt.,at,antehi,ehi,.nt.$.pl.$.abl.,2
+.nt.,at,antã,ā,.nt.$.pl.$.acc.,2
+.nt.,at,antãni,āni,.nt.$.pl.$.acc.,2
+.nt.,at,antānaṃ,naṃ,.nt.$.pl.$.dat.,2
+.nt.,at,ataṃ,ṃ,.nt.$.pl.$.dat.,2
+.nt.,at,antānaṃ,naṃ,.nt.$.pl.$.gen.,2
+.nt.,at,ataṃ,ṃ,.nt.$.pl.$.gen.,2
+.nt.,at,antebhi,ebhi,.nt.$.pl.$.inst.,2
+.nt.,at,antehi,ehi,.nt.$.pl.$.inst.,2
+.nt.,at,antesu,su,.nt.$.pl.$.loc.,2
+.nt.,at,antã,ā,.nt.$.pl.$.nom.,2
+.nt.,at,antãni,āni,.nt.$.pl.$.nom.,2
+.nt.,at,antã,ā,.nt.$.pl.$.voc.,2
+.nt.,at,antãni,āni,.nt.$.pl.$.voc.,2
+.nt.,at,antamhā,mhā,.nt.$.sg.$.abl.,2
+.nt.,at,antasmā,smā,.nt.$.sg.$.abl.,2
+.nt.,at,atā,sā,.nt.$.sg.$.abl.,2
+.nt.,at,antaṃ,o,.nt.$.sg.$.acc.,2
+.nt.,at,antassa,so,.nt.$.sg.$.dat.,2
+.nt.,at,ato,ssa,.nt.$.sg.$.dat.,2
+.nt.,at,antassa,so,.nt.$.sg.$.gen.,2
+.nt.,at,ato,ssa,.nt.$.sg.$.gen.,2
+.nt.,at,atā,sā,.nt.$.sg.$.inst.,2
+.nt.,at,atena,na,.nt.$.sg.$.inst.,2
+.nt.,at,antamhi,mhi,.nt.$.sg.$.loc.,2
+.nt.,at,antasmiṃ,smiṃ,.nt.$.sg.$.loc.,2
+.nt.,at,ante,e,.nt.$.sg.$.loc.,2
+.nt.,at,ati,si,.nt.$.sg.$.loc.,2
+.nt.,at,antaṃ,ṃ,.nt.$.sg.$.nom.,2
+.nt.,at,anto,o,.nt.$.sg.$.nom.,2
+.nt.,at,a,ā,.nt.$.sg.$.voc.,2
+.nt.,at,ā,ṃ,.nt.$.sg.$.voc.,2
+.nt.,at,aṃ,o,.nt.$.sg.$.voc.,2
+.f.,ata,antībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,ata,antīhi,īhi,.f.$.pl.$.abl.,3
+.f.,ata,atībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,ata,atīhi,īhi,.f.$.pl.$.abl.,3
+.f.,ata,antī,ī,.f.$.pl.$.acc.,3
+.f.,ata,antiyo,iyo,.f.$.pl.$.acc.,3
+.f.,ata,atī,ī,.f.$.pl.$.acc.,3
+.f.,ata,atiyo,iyo,.f.$.pl.$.acc.,3
+.f.,ata,antīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,ata,atīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,ata,antīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,ata,atīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,ata,antībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,ata,antīhi,īhi,.f.$.pl.$.inst.,3
+.f.,ata,atībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,ata,atīhi,īhi,.f.$.pl.$.inst.,3
+.f.,ata,antīsu,īsu,.f.$.pl.$.loc.,3
+.f.,ata,atīsu,īsu,.f.$.pl.$.loc.,3
+.f.,ata,antī,ī,.f.$.pl.$.nom.,3
+.f.,ata,antiyo,iyo,.f.$.pl.$.nom.,3
+.f.,ata,atī,ī,.f.$.pl.$.nom.,3
+.f.,ata,atiyo,iyo,.f.$.pl.$.nom.,3
+.f.,ata,antī,ī,.f.$.pl.$.voc.,3
+.f.,ata,antiyo,iyo,.f.$.pl.$.voc.,3
+.f.,ata,atī,ī,.f.$.pl.$.voc.,3
+.f.,ata,atiyo,iyo,.f.$.pl.$.voc.,3
+.f.,ata,antiyā,iyā,.f.$.sg.$.abl.,3
+.f.,ata,atiyā,iyā,.f.$.sg.$.abl.,3
+.f.,ata,antiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,ata,atiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,ata,antiyā,iyā,.f.$.sg.$.dat.,3
+.f.,ata,atiyā,iyā,.f.$.sg.$.dat.,3
+.f.,ata,antiyā,iyā,.f.$.sg.$.gen.,3
+.f.,ata,atiyā,iyā,.f.$.sg.$.gen.,3
+.f.,ata,antiyā,iyā,.f.$.sg.$.inst.,3
+.f.,ata,atiyā,iyā,.f.$.sg.$.inst.,3
+.f.,ata,antiyā,iyā,.f.$.sg.$.loc.,3
+.f.,ata,antiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,ata,atiyā,iyā,.f.$.sg.$.loc.,3
+.f.,ata,atiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,ata,antī,ī,.f.$.sg.$.nom.,3
+.f.,ata,atī,ī,.f.$.sg.$.nom.,3
+.f.,ata,antī,ī,.f.$.sg.$.voc.,3
+.f.,ata,atī,ī,.f.$.sg.$.voc.,3
+.m.,ata,ebhi,ebhi,.m.$.pl.$.abl.,3
+.m.,ata,ehi,ehi,.m.$.pl.$.abl.,3
+.m.,ata,e,e,.m.$.pl.$.acc.,3
+.m.,ata,ānaṃ,naṃ,.m.$.pl.$.dat.,3
+.m.,ata,ānaṃ,naṃ,.m.$.pl.$.gen.,3
+.m.,ata,ebhi,ebhi,.m.$.pl.$.inst.,3
+.m.,ata,ehi,ehi,.m.$.pl.$.inst.,3
+.m.,ata,esu,su,.m.$.pl.$.loc.,3
+.m.,ata,ā,ā,.m.$.pl.$.nom.,3
+.m.,ata,ā,ā,.m.$.pl.$.voc.,3
+.m.,ata,antamhā,mhā,.m.$.sg.$.abl.,3
+.m.,ata,antasmā,smā,.m.$.sg.$.abl.,3
+.m.,ata,atā,sā,.m.$.sg.$.abl.,3
+.m.,ata,antaṃ,o,.m.$.sg.$.acc.,3
+.m.,ata,antassa,so,.m.$.sg.$.dat.,3
+.m.,ata,ato,ssa,.m.$.sg.$.dat.,3
+.m.,ata,antassa,so,.m.$.sg.$.gen.,3
+.m.,ata,ato,ssa,.m.$.sg.$.gen.,3
+.m.,ata,atā,sā,.m.$.sg.$.inst.,3
+.m.,ata,atena,na,.m.$.sg.$.inst.,3
+.m.,ata,antamhi,mhi,.m.$.sg.$.loc.,3
+.m.,ata,antasmiṃ,smiṃ,.m.$.sg.$.loc.,3
+.m.,ata,ante,e,.m.$.sg.$.loc.,3
+.m.,ata,ati,si,.m.$.sg.$.loc.,3
+.m.,ata,aṃ,ṃ,.m.$.sg.$.nom.,3
+.m.,ata,anto,o,.m.$.sg.$.nom.,3
+.m.,ata,a,ā,.m.$.sg.$.voc.,3
+.m.,ata,ā,ṃ,.m.$.sg.$.voc.,3
+.m.,ata,aṃ,o,.m.$.sg.$.voc.,3
+.nt.,ata,antebhi,ebhi,.nt.$.pl.$.abl.,3
+.nt.,ata,antehi,ehi,.nt.$.pl.$.abl.,3
+.nt.,ata,antã,ā,.nt.$.pl.$.acc.,3
+.nt.,ata,antãni,āni,.nt.$.pl.$.acc.,3
+.nt.,ata,antānaṃ,naṃ,.nt.$.pl.$.dat.,3
+.nt.,ata,ataṃ,ṃ,.nt.$.pl.$.dat.,3
+.nt.,ata,antānaṃ,naṃ,.nt.$.pl.$.gen.,3
+.nt.,ata,ataṃ,ṃ,.nt.$.pl.$.gen.,3
+.nt.,ata,antebhi,ebhi,.nt.$.pl.$.inst.,3
+.nt.,ata,antehi,ehi,.nt.$.pl.$.inst.,3
+.nt.,ata,antesu,su,.nt.$.pl.$.loc.,3
+.nt.,ata,antã,ā,.nt.$.pl.$.nom.,3
+.nt.,ata,antãni,āni,.nt.$.pl.$.nom.,3
+.nt.,ata,antã,ā,.nt.$.pl.$.voc.,3
+.nt.,ata,antãni,āni,.nt.$.pl.$.voc.,3
+.nt.,ata,antamhā,mhā,.nt.$.sg.$.abl.,3
+.nt.,ata,antasmā,smā,.nt.$.sg.$.abl.,3
+.nt.,ata,atā,sā,.nt.$.sg.$.abl.,3
+.nt.,ata,antaṃ,o,.nt.$.sg.$.acc.,3
+.nt.,ata,antassa,so,.nt.$.sg.$.dat.,3
+.nt.,ata,ato,ssa,.nt.$.sg.$.dat.,3
+.nt.,ata,antassa,so,.nt.$.sg.$.gen.,3
+.nt.,ata,ato,ssa,.nt.$.sg.$.gen.,3
+.nt.,ata,atā,sā,.nt.$.sg.$.inst.,3
+.nt.,ata,atena,na,.nt.$.sg.$.inst.,3
+.nt.,ata,antamhi,mhi,.nt.$.sg.$.loc.,3
+.nt.,ata,antasmiṃ,smiṃ,.nt.$.sg.$.loc.,3
+.nt.,ata,ante,e,.nt.$.sg.$.loc.,3
+.nt.,ata,ati,si,.nt.$.sg.$.loc.,3
+.nt.,ata,antaṃ,ṃ,.nt.$.sg.$.nom.,3
+.nt.,ata,anto,o,.nt.$.sg.$.nom.,3
+.nt.,ata,a,ā,.nt.$.sg.$.voc.,3
+.nt.,ata,ā,ṃ,.nt.$.sg.$.voc.,3
+.nt.,ata,aṃ,o,.nt.$.sg.$.voc.,3
+.f.,i,ībhi,bhi,.f.$.pl.$.abl.,1
+.f.,i,īhi,hi,.f.$.pl.$.abl.,1
+.f.,i,ī,ī,.f.$.pl.$.acc.,1
+.f.,i,iyo,yo,.f.$.pl.$.acc.,1
+.f.,i,yo,o,.f.$.pl.$.acc.,1
+.f.,i,īnaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,i,īnaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,i,ībhi,bhi,.f.$.pl.$.inst.,1
+.f.,i,īhi,hi,.f.$.pl.$.inst.,1
+.f.,i,īsu,su,.f.$.pl.$.loc.,1
+.f.,i,inī,ī,.f.$.pl.$.nom.,1
+.f.,i,iniyo,niyo,.f.$.pl.$.nom.,1
+.f.,i,inyo,nyo,.f.$.pl.$.nom.,1
+.f.,i,ī,ī,.f.$.pl.$.voc.,1
+.f.,i,iyo,yo,.f.$.pl.$.voc.,1
+.f.,i,yo,o,.f.$.pl.$.voc.,1
+.f.,i,iniyā,niyā,.f.$.sg.$.abl.,1
+.f.,i,inyā,nyā,.f.$.sg.$.abl.,1
+.f.,i,iniṃ,niṃ,.f.$.sg.$.acc.,1
+.f.,i,iniyā,niyā,.f.$.sg.$.dat.,1
+.f.,i,inyā,nyā,.f.$.sg.$.dat.,1
+.f.,i,iniyā,niyā,.f.$.sg.$.gen.,1
+.f.,i,inyā,nyā,.f.$.sg.$.gen.,1
+.f.,i,iniyā,niyā,.f.$.sg.$.inst.,1
+.f.,i,inyā,nyā,.f.$.sg.$.inst.,1
+.f.,i,iniyā,niyā,.f.$.sg.$.loc.,1
+.f.,i,iniyaṃ,niyaṃ,.f.$.sg.$.loc.,1
+.f.,i,inyā,nyā,.f.$.sg.$.loc.,1
+.f.,i,inyaṃ,nyaṃ,.f.$.sg.$.loc.,1
+.f.,i,inī,nī,.f.$.sg.$.nom.,1
+.f.,i,inī,nī,.f.$.sg.$.voc.,1
+.m.,i,ībhi,bhi,.m.$.pl.$.abl.,1
+.m.,i,īhi,hi,.m.$.pl.$.abl.,1
+.m.,i,āyo,yo,.m.$.pl.$.acc.,1
+.m.,i,ī,ī,.m.$.pl.$.acc.,1
+.m.,i,īnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,i,īnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,i,ībhi,bhi,.m.$.pl.$.inst.,1
+.m.,i,īhi,hi,.m.$.pl.$.inst.,1
+.m.,i,īsu,su,.m.$.pl.$.loc.,1
+.m.,i,āyo,yo,.m.$.pl.$.nom.,1
+.m.,i,ī,ī,.m.$.pl.$.nom.,1
+.m.,i,āyo,yo,.m.$.pl.$.voc.,1
+.m.,i,ī,ī,.m.$.pl.$.voc.,1
+.m.,i,imhā,mhā,.m.$.sg.$.abl.,1
+.m.,i,inā,nā,.m.$.sg.$.abl.,1
+.m.,i,ismā,smā,.m.$.sg.$.abl.,1
+.m.,i,iṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,i,ino,no,.m.$.sg.$.dat.,1
+.m.,i,issa,ssa,.m.$.sg.$.dat.,1
+.m.,i,ino,no,.m.$.sg.$.gen.,1
+.m.,i,issa,ssa,.m.$.sg.$.gen.,1
+.m.,i,inā,nā,.m.$.sg.$.inst.,1
+.m.,i,imhi,mhi,.m.$.sg.$.loc.,1
+.m.,i,ismiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,i,i,i,.m.$.sg.$.nom.,1
+.m.,i,i,i,.m.$.sg.$.voc.,1
+.nt.,i,ībhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,i,īhi,hi,.nt.$.pl.$.abl.,1
+.nt.,i,ī,ī,.nt.$.pl.$.acc.,1
+.nt.,i,īni,ni,.nt.$.pl.$.acc.,1
+.nt.,i,īnaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,i,īnaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,i,ībhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,i,īhi,hi,.nt.$.pl.$.inst.,1
+.nt.,i,īsu,su,.nt.$.pl.$.loc.,1
+.nt.,i,ī,ī,.nt.$.pl.$.nom.,1
+.nt.,i,īni,ni,.nt.$.pl.$.nom.,1
+.nt.,i,ī,ī,.nt.$.pl.$.voc.,1
+.nt.,i,īni,ni,.nt.$.pl.$.voc.,1
+.nt.,i,imhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,i,inā,nā,.nt.$.sg.$.abl.,1
+.nt.,i,ismā,smā,.nt.$.sg.$.abl.,1
+.nt.,i,iṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,i,assa,ssa,.nt.$.sg.$.dat.,1
+.nt.,i,ino,no,.nt.$.sg.$.dat.,1
+.nt.,i,assa,ssa,.nt.$.sg.$.gen.,1
+.nt.,i,ino,no,.nt.$.sg.$.gen.,1
+.nt.,i,inā,nā,.nt.$.sg.$.inst.,1
+.nt.,i,imhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,i,ismiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,i,i,i,.nt.$.sg.$.nom.,1
+.nt.,i,i,i,.nt.$.sg.$.voc.,1
+.f.,ī,inībhi,nībhi,.f.$.pl.$.abl.,1
+.f.,ī,inīhi,nīhi,.f.$.pl.$.abl.,1
+.f.,ī,inī,ni,.f.$.pl.$.acc.,1
+.f.,ī,iniyo,niyo,.f.$.pl.$.acc.,1
+.f.,ī,inīnaṃ,nīnaṃ,.f.$.pl.$.dat.,1
+.f.,ī,inīnaṃ,nīnaṃ,.f.$.pl.$.gen.,1
+.f.,ī,inībhi,nībhi,.f.$.pl.$.inst.,1
+.f.,ī,inīhi,nīhi,.f.$.pl.$.inst.,1
+.f.,ī,inīsu,nīsu,.f.$.pl.$.loc.,1
+.f.,ī,inī,nī,.f.$.pl.$.nom.,1
+.f.,ī,iniyo,niyo,.f.$.pl.$.nom.,1
+.f.,ī,inī,ni,.f.$.pl.$.voc.,1
+.f.,ī,iniyā,niyā,.f.$.sg.$.abl.,1
+.f.,ī,inyā,niyā,.f.$.sg.$.abl.,1
+.f.,ī,iniṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,ī,iniyā,niyā,.f.$.sg.$.dat.,1
+.f.,ī,inyā,niyā,.f.$.sg.$.dat.,1
+.f.,ī,iniyā,niyā,.f.$.sg.$.gen.,1
+.f.,ī,inyā,niyā,.f.$.sg.$.gen.,1
+.f.,ī,iniyā,niyā,.f.$.sg.$.inst.,1
+.f.,ī,inyā,niyā,.f.$.sg.$.inst.,1
+.f.,ī,iniyā,niyā,.f.$.sg.$.loc.,1
+.f.,ī,iniyaṃ,niyaṃ,.f.$.sg.$.loc.,1
+.f.,ī,inyā,nyā,.f.$.sg.$.loc.,1
+.f.,ī,inyaṃ,nyaṃ,.f.$.sg.$.loc.,1
+.f.,ī,inī,nī,.f.$.sg.$.nom.,1
+.f.,ī,iniyo,niyo,.f.$.sg.$.nom.,1
+.f.,ī,inyo,nyo,.f.$.sg.$.nom.,1
+.f.,ī,inī,ī,.f.$.sg.$.voc.,1
+.m.,ī,ībhi,bhi,.m.$.pl.$.abl.,1
+.m.,ī,īhi,hi,.m.$.pl.$.abl.,1
+.m.,ī,ī,ī,.m.$.pl.$.acc.,1
+.m.,ī,ino,o,.m.$.pl.$.acc.,1
+.m.,ī,inaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,ī,inaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,ī,ībhi,bhi,.m.$.pl.$.inst.,1
+.m.,ī,īhi,hi,.m.$.pl.$.inst.,1
+.m.,ī,īsu,su,.m.$.pl.$.loc.,1
+.m.,ī,ī,ī,.m.$.pl.$.nom.,1
+.m.,ī,ino,o,.m.$.pl.$.nom.,1
+.m.,ī,ī,ī,.m.$.pl.$.voc.,1
+.m.,ī,ino,o,.m.$.pl.$.voc.,1
+.m.,ī,imhā,mhā,.m.$.sg.$.abl.,1
+.m.,ī,inā,nā,.m.$.sg.$.abl.,1
+.m.,ī,ismā,smā,.m.$.sg.$.abl.,1
+.m.,ī,iṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,ī,inaṃ,naṃ,.m.$.sg.$.acc.,1
+.m.,ī,ino,o,.m.$.sg.$.dat.,1
+.m.,ī,issa,ssa,.m.$.sg.$.dat.,1
+.m.,ī,ino,o,.m.$.sg.$.gen.,1
+.m.,ī,issa,ssa,.m.$.sg.$.gen.,1
+.m.,ī,inā,nā,.m.$.sg.$.inst.,1
+.m.,ī,imhi,mhi,.m.$.sg.$.loc.,1
+.m.,ī,ini,ni,.m.$.sg.$.loc.,1
+.m.,ī,ismiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,ī,ī,ī,.m.$.sg.$.nom.,1
+.m.,ī,i,ī,.m.$.sg.$.voc.,1
+.nt.,ī,ībhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,ī,īhi,hi,.nt.$.pl.$.abl.,1
+.nt.,ī,i,ī,.nt.$.pl.$.acc.,1
+.nt.,ī,īni,ni,.nt.$.pl.$.acc.,1
+.nt.,ī,īnaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,ī,īnaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,ī,ībhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,ī,īhi,hi,.nt.$.pl.$.inst.,1
+.nt.,ī,īsu,su,.nt.$.pl.$.loc.,1
+.nt.,ī,ī,ī,.nt.$.pl.$.nom.,1
+.nt.,ī,īni,ni,.nt.$.pl.$.nom.,1
+.nt.,ī,ī,ī,.nt.$.pl.$.voc.,1
+.nt.,ī,imhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,ī,inā,nā,.nt.$.sg.$.abl.,1
+.nt.,ī,ismā,smā,.nt.$.sg.$.abl.,1
+.nt.,ī,iṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,ī,inaṃ,naṃ,.nt.$.sg.$.acc.,1
+.nt.,ī,ino,no,.nt.$.sg.$.dat.,1
+.nt.,ī,issa,ssa,.nt.$.sg.$.dat.,1
+.nt.,ī,ino,no,.nt.$.sg.$.gen.,1
+.nt.,ī,issa,ssa,.nt.$.sg.$.gen.,1
+.nt.,ī,inā,nā,.nt.$.sg.$.inst.,1
+.nt.,ī,imhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,ī,ismiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,ī,i,i,.nt.$.sg.$.nom.,1
+.nt.,ī,i,i,.nt.$.sg.$.voc.,1
+.f.,in,inībhi,nībhi,.f.$.pl.$.abl.,2
+.f.,in,inīhi,nīhi,.f.$.pl.$.abl.,2
+.f.,in,inī,ni,.f.$.pl.$.acc.,2
+.f.,in,iniyo,niyo,.f.$.pl.$.acc.,2
+.f.,in,inīnaṃ,nīnaṃ,.f.$.pl.$.dat.,2
+.f.,in,inīnaṃ,nīnaṃ,.f.$.pl.$.gen.,2
+.f.,in,inībhi,nībhi,.f.$.pl.$.inst.,2
+.f.,in,inīhi,nīhi,.f.$.pl.$.inst.,2
+.f.,in,inīsu,nīsu,.f.$.pl.$.loc.,2
+.f.,in,inī,nī,.f.$.pl.$.nom.,2
+.f.,in,iniyo,niyo,.f.$.pl.$.nom.,2
+.f.,in,inī,ni,.f.$.pl.$.voc.,2
+.f.,in,iniyā,niyā,.f.$.sg.$.abl.,2
+.f.,in,inyā,niyā,.f.$.sg.$.abl.,2
+.f.,in,iniṃ,ṃ,.f.$.sg.$.acc.,2
+.f.,in,iniyā,niyā,.f.$.sg.$.dat.,2
+.f.,in,inyā,niyā,.f.$.sg.$.dat.,2
+.f.,in,iniyā,niyā,.f.$.sg.$.gen.,2
+.f.,in,inyā,niyā,.f.$.sg.$.gen.,2
+.f.,in,iniyā,niyā,.f.$.sg.$.inst.,2
+.f.,in,inyā,niyā,.f.$.sg.$.inst.,2
+.f.,in,iniyā,niyā,.f.$.sg.$.loc.,2
+.f.,in,iniyaṃ,niyaṃ,.f.$.sg.$.loc.,2
+.f.,in,inyā,nyā,.f.$.sg.$.loc.,2
+.f.,in,inyaṃ,nyaṃ,.f.$.sg.$.loc.,2
+.f.,in,inī,nī,.f.$.sg.$.nom.,2
+.f.,in,iniyo,niyo,.f.$.sg.$.nom.,2
+.f.,in,inyo,nyo,.f.$.sg.$.nom.,2
+.f.,in,inī,ī,.f.$.sg.$.voc.,2
+.m.,in,ībhi,bhi,.m.$.pl.$.abl.,2
+.m.,in,īhi,hi,.m.$.pl.$.abl.,2
+.m.,in,ī,ī,.m.$.pl.$.acc.,2
+.m.,in,ino,o,.m.$.pl.$.acc.,2
+.m.,in,inaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,in,inaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,in,ībhi,bhi,.m.$.pl.$.inst.,2
+.m.,in,īhi,hi,.m.$.pl.$.inst.,2
+.m.,in,īsu,su,.m.$.pl.$.loc.,2
+.m.,in,ī,ī,.m.$.pl.$.nom.,2
+.m.,in,ino,o,.m.$.pl.$.nom.,2
+.m.,in,ī,ī,.m.$.pl.$.voc.,2
+.m.,in,ino,o,.m.$.pl.$.voc.,2
+.m.,in,imhā,mhā,.m.$.sg.$.abl.,2
+.m.,in,inā,nā,.m.$.sg.$.abl.,2
+.m.,in,ismā,smā,.m.$.sg.$.abl.,2
+.m.,in,iṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,in,inaṃ,naṃ,.m.$.sg.$.acc.,2
+.m.,in,ino,o,.m.$.sg.$.dat.,2
+.m.,in,issa,ssa,.m.$.sg.$.dat.,2
+.m.,in,ino,o,.m.$.sg.$.gen.,2
+.m.,in,issa,ssa,.m.$.sg.$.gen.,2
+.m.,in,inā,nā,.m.$.sg.$.inst.,2
+.m.,in,imhi,mhi,.m.$.sg.$.loc.,2
+.m.,in,ini,ni,.m.$.sg.$.loc.,2
+.m.,in,ismiṃ,smiṃ,.m.$.sg.$.loc.,2
+.m.,in,ī,ī,.m.$.sg.$.nom.,2
+.m.,in,i,ī,.m.$.sg.$.voc.,2
+.nt.,in,ībhi,bhi,.nt.$.pl.$.abl.,2
+.nt.,in,īhi,hi,.nt.$.pl.$.abl.,2
+.nt.,in,i,ī,.nt.$.pl.$.acc.,2
+.nt.,in,īni,ni,.nt.$.pl.$.acc.,2
+.nt.,in,īnaṃ,naṃ,.nt.$.pl.$.dat.,2
+.nt.,in,īnaṃ,naṃ,.nt.$.pl.$.gen.,2
+.nt.,in,ībhi,bhi,.nt.$.pl.$.inst.,2
+.nt.,in,īhi,hi,.nt.$.pl.$.inst.,2
+.nt.,in,īsu,su,.nt.$.pl.$.loc.,2
+.nt.,in,ī,ī,.nt.$.pl.$.nom.,2
+.nt.,in,īni,ni,.nt.$.pl.$.nom.,2
+.nt.,in,ī,ī,.nt.$.pl.$.voc.,2
+.nt.,in,imhā,mhā,.nt.$.sg.$.abl.,2
+.nt.,in,inā,nā,.nt.$.sg.$.abl.,2
+.nt.,in,ismā,smā,.nt.$.sg.$.abl.,2
+.nt.,in,iṃ,ṃ,.nt.$.sg.$.acc.,2
+.nt.,in,inaṃ,naṃ,.nt.$.sg.$.acc.,2
+.nt.,in,ino,no,.nt.$.sg.$.dat.,2
+.nt.,in,issa,ssa,.nt.$.sg.$.dat.,2
+.nt.,in,ino,no,.nt.$.sg.$.gen.,2
+.nt.,in,issa,ssa,.nt.$.sg.$.gen.,2
+.nt.,in,inā,nā,.nt.$.sg.$.inst.,2
+.nt.,in,imhi,mhi,.nt.$.sg.$.loc.,2
+.nt.,in,ismiṃ,smiṃ,.nt.$.sg.$.loc.,2
+.nt.,in,i,i,.nt.$.sg.$.nom.,2
+.nt.,in,i,i,.nt.$.sg.$.voc.,2
+.f.,mā,mantībhi,ībhi,.f.$.pl.$.abl.,2
+.f.,mā,mantīhi,īhi,.f.$.pl.$.abl.,2
+.f.,mā,matībhi,ībhi,.f.$.pl.$.abl.,2
+.f.,mā,matīhi,īhi,.f.$.pl.$.abl.,2
+.f.,mā,mantī,ī,.f.$.pl.$.acc.,2
+.f.,mā,mantiyo,iyo,.f.$.pl.$.acc.,2
+.f.,mā,matī,ī,.f.$.pl.$.acc.,2
+.f.,mā,matiyo,iyo,.f.$.pl.$.acc.,2
+.f.,mā,mantīnaṃ,īnaṃ,.f.$.pl.$.dat.,2
+.f.,mā,matīnaṃ,īnaṃ,.f.$.pl.$.dat.,2
+.f.,mā,mantīnaṃ,īnaṃ,.f.$.pl.$.gen.,2
+.f.,mā,matīnaṃ,īnaṃ,.f.$.pl.$.gen.,2
+.f.,mā,mantībhi,ībhi,.f.$.pl.$.inst.,2
+.f.,mā,mantīhi,īhi,.f.$.pl.$.inst.,2
+.f.,mā,matībhi,ībhi,.f.$.pl.$.inst.,2
+.f.,mā,matīhi,īhi,.f.$.pl.$.inst.,2
+.f.,mā,mantīsu,īsu,.f.$.pl.$.loc.,2
+.f.,mā,matīsu,īsu,.f.$.pl.$.loc.,2
+.f.,mā,mantī,ī,.f.$.pl.$.nom.,2
+.f.,mā,mantiyo,iyo,.f.$.pl.$.nom.,2
+.f.,mā,matī,ī,.f.$.pl.$.nom.,2
+.f.,mā,matiyo,iyo,.f.$.pl.$.nom.,2
+.f.,mā,mantī,ī,.f.$.pl.$.voc.,2
+.f.,mā,mantiyo,iyo,.f.$.pl.$.voc.,2
+.f.,mā,matī,ī,.f.$.pl.$.voc.,2
+.f.,mā,matiyo,iyo,.f.$.pl.$.voc.,2
+.f.,mā,mantiyā,iyā,.f.$.sg.$.abl.,2
+.f.,mā,matiyā,iyā,.f.$.sg.$.abl.,2
+.f.,mā,mantiṃ,iṃ,.f.$.sg.$.acc.,2
+.f.,mā,matiṃ,iṃ,.f.$.sg.$.acc.,2
+.f.,mā,mantiyā,iyā,.f.$.sg.$.dat.,2
+.f.,mā,matiyā,iyā,.f.$.sg.$.dat.,2
+.f.,mā,mantiyā,iyā,.f.$.sg.$.gen.,2
+.f.,mā,matiyā,iyā,.f.$.sg.$.gen.,2
+.f.,mā,mantiyā,iyā,.f.$.sg.$.inst.,2
+.f.,mā,matiyā,iyā,.f.$.sg.$.inst.,2
+.f.,mā,mantiyā,iyā,.f.$.sg.$.loc.,2
+.f.,mā,mantiyaṃ,iyaṃ,.f.$.sg.$.loc.,2
+.f.,mā,matiyā,iyā,.f.$.sg.$.loc.,2
+.f.,mā,matiyaṃ,iyaṃ,.f.$.sg.$.loc.,2
+.f.,mā,mantī,ī,.f.$.sg.$.nom.,2
+.f.,mā,matī,ī,.f.$.sg.$.nom.,2
+.f.,mā,mantī,ī,.f.$.sg.$.voc.,2
+.f.,mā,matī,ī,.f.$.sg.$.voc.,2
+.m.,mā,mantebhi,ebhi,.m.$.pl.$.abl.,2
+.m.,mā,mantehi,ehi,.m.$.pl.$.abl.,2
+.m.,mā,mante,e,.m.$.pl.$.acc.,2
+.m.,mā,mantānaṃ,ānaṃ,.m.$.pl.$.dat.,2
+.m.,mā,mataṃ,aṃ,.m.$.pl.$.dat.,2
+.m.,mā,mantānaṃ,ānaṃ,.m.$.pl.$.gen.,2
+.m.,mā,mataṃ,aṃ,.m.$.pl.$.gen.,2
+.m.,mā,mantebhi,ebhi,.m.$.pl.$.inst.,2
+.m.,mā,mantehi,ehi,.m.$.pl.$.inst.,2
+.m.,mā,mantesu,esu,.m.$.pl.$.loc.,2
+.m.,mā,mā,mā,.m.$.pl.$.nom.,2
+.m.,mā,mantā,ā,.m.$.pl.$.nom.,2
+.m.,mā,manto,o,.m.$.pl.$.nom.,2
+.m.,mā,mā,mā,.m.$.pl.$.voc.,2
+.m.,mā,mantā,ā,.m.$.pl.$.voc.,2
+.m.,mā,manto,o,.m.$.pl.$.voc.,2
+.m.,mā,mantā,ā,.m.$.sg.$.abl.,2
+.m.,mā,mantamhā,amhā,.m.$.sg.$.abl.,2
+.m.,mā,mantasmā,asmā,.m.$.sg.$.abl.,2
+.m.,mā,matā,ā,.m.$.sg.$.abl.,2
+.m.,mā,maṃ,maṃ,.m.$.sg.$.acc.,2
+.m.,mā,mantaṃ,aṃ,.m.$.sg.$.acc.,2
+.m.,mā,mantassa,assa,.m.$.sg.$.dat.,2
+.m.,mā,mato,o,.m.$.sg.$.dat.,2
+.m.,mā,mantassa,assa,.m.$.sg.$.gen.,2
+.m.,mā,mato,o,.m.$.sg.$.gen.,2
+.m.,mā,matā,ā,.m.$.sg.$.inst.,2
+.m.,mā,matena,ena,.m.$.sg.$.inst.,2
+.m.,mā,mantamhi,amhi,.m.$.sg.$.loc.,2
+.m.,mā,mantasmiṃ,asmiṃ,.m.$.sg.$.loc.,2
+.m.,mā,mante,e,.m.$.sg.$.loc.,2
+.m.,mā,mati,i,.m.$.sg.$.loc.,2
+.m.,mā,mā,mā,.m.$.sg.$.nom.,2
+.m.,mā,manto,o,.m.$.sg.$.nom.,2
+.m.,mā,ma,a,.m.$.sg.$.voc.,2
+.m.,mā,mā,ā,.m.$.sg.$.voc.,2
+.m.,mā,maṃ,ṃ,.m.$.sg.$.voc.,2
+.m.,mā,manta,a,.m.$.sg.$.voc.,2
+.m.,mā,mantā,ā,.m.$.sg.$.voc.,2
+.nt.,mā,mantebhi,ebhi,.nt.$.pl.$.abl.,2
+.nt.,mā,mantehi,ehi,.nt.$.pl.$.abl.,2
+.nt.,mā,mante,e,.nt.$.pl.$.acc.,2
+.nt.,mā,mantānaṃ,ānaṃ,.nt.$.pl.$.dat.,2
+.nt.,mā,mataṃ,aṃ,.nt.$.pl.$.dat.,2
+.nt.,mā,mantānaṃ,ānaṃ,.nt.$.pl.$.gen.,2
+.nt.,mā,mataṃ,aṃ,.nt.$.pl.$.gen.,2
+.nt.,mā,mantebhi,ebhi,.nt.$.pl.$.inst.,2
+.nt.,mā,mantehi,ehi,.nt.$.pl.$.inst.,2
+.nt.,mā,mantesu,esu,.nt.$.pl.$.loc.,2
+.nt.,mā,mā,mā,.nt.$.pl.$.nom.,2
+.nt.,mā,mantā,ā,.nt.$.pl.$.nom.,2
+.nt.,mā,manto,o,.nt.$.pl.$.nom.,2
+.nt.,mā,mā,mā,.nt.$.pl.$.voc.,2
+.nt.,mā,mantā,ā,.nt.$.pl.$.voc.,2
+.nt.,mā,manto,o,.nt.$.pl.$.voc.,2
+.nt.,mā,mantā,ā,.nt.$.sg.$.abl.,2
+.nt.,mā,mantamhā,amhā,.nt.$.sg.$.abl.,2
+.nt.,mā,mantasmā,asmā,.nt.$.sg.$.abl.,2
+.nt.,mā,matā,ā,.nt.$.sg.$.abl.,2
+.nt.,mā,maṃ,maṃ,.nt.$.sg.$.acc.,2
+.nt.,mā,mantaṃ,aṃ,.nt.$.sg.$.acc.,2
+.nt.,mā,mantassa,assa,.nt.$.sg.$.dat.,2
+.nt.,mā,mato,o,.nt.$.sg.$.dat.,2
+.nt.,mā,mantassa,assa,.nt.$.sg.$.gen.,2
+.nt.,mā,mato,o,.nt.$.sg.$.gen.,2
+.nt.,mā,matā,ā,.nt.$.sg.$.inst.,2
+.nt.,mā,matena,ena,.nt.$.sg.$.inst.,2
+.nt.,mā,mantamhi,amhi,.nt.$.sg.$.loc.,2
+.nt.,mā,mantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,2
+.nt.,mā,mante,e,.nt.$.sg.$.loc.,2
+.nt.,mā,mati,i,.nt.$.sg.$.loc.,2
+.nt.,mā,maṃ,maṃ,.nt.$.sg.$.nom.,2
+.nt.,mā,mantaṃ,aṃ,.nt.$.sg.$.nom.,2
+.nt.,mā,ma,a,.nt.$.sg.$.voc.,2
+.nt.,mā,mā,ā,.nt.$.sg.$.voc.,2
+.nt.,mā,maṃ,ṃ,.nt.$.sg.$.voc.,2
+.nt.,mā,manta,a,.nt.$.sg.$.voc.,2
+.nt.,mā,mantā,ā,.nt.$.sg.$.voc.,2
+.f.,mant,mantībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,mant,mantīhi,īhi,.f.$.pl.$.abl.,4
+.f.,mant,matībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,mant,matīhi,īhi,.f.$.pl.$.abl.,4
+.f.,mant,mantī,ī,.f.$.pl.$.acc.,4
+.f.,mant,mantiyo,iyo,.f.$.pl.$.acc.,4
+.f.,mant,matī,ī,.f.$.pl.$.acc.,4
+.f.,mant,matiyo,iyo,.f.$.pl.$.acc.,4
+.f.,mant,mantīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,mant,matīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,mant,mantīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,mant,matīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,mant,mantībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,mant,mantīhi,īhi,.f.$.pl.$.inst.,4
+.f.,mant,matībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,mant,matīhi,īhi,.f.$.pl.$.inst.,4
+.f.,mant,mantīsu,īsu,.f.$.pl.$.loc.,4
+.f.,mant,matīsu,īsu,.f.$.pl.$.loc.,4
+.f.,mant,mantī,ī,.f.$.pl.$.nom.,4
+.f.,mant,mantiyo,iyo,.f.$.pl.$.nom.,4
+.f.,mant,matī,ī,.f.$.pl.$.nom.,4
+.f.,mant,matiyo,iyo,.f.$.pl.$.nom.,4
+.f.,mant,mantī,ī,.f.$.pl.$.voc.,4
+.f.,mant,mantiyo,iyo,.f.$.pl.$.voc.,4
+.f.,mant,matī,ī,.f.$.pl.$.voc.,4
+.f.,mant,matiyo,iyo,.f.$.pl.$.voc.,4
+.f.,mant,mantiyā,iyā,.f.$.sg.$.abl.,4
+.f.,mant,matiyā,iyā,.f.$.sg.$.abl.,4
+.f.,mant,mantiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,mant,matiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,mant,mantiyā,iyā,.f.$.sg.$.dat.,4
+.f.,mant,matiyā,iyā,.f.$.sg.$.dat.,4
+.f.,mant,mantiyā,iyā,.f.$.sg.$.gen.,4
+.f.,mant,matiyā,iyā,.f.$.sg.$.gen.,4
+.f.,mant,mantiyā,iyā,.f.$.sg.$.inst.,4
+.f.,mant,matiyā,iyā,.f.$.sg.$.inst.,4
+.f.,mant,mantiyā,iyā,.f.$.sg.$.loc.,4
+.f.,mant,mantiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,mant,matiyā,iyā,.f.$.sg.$.loc.,4
+.f.,mant,matiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,mant,mantī,ī,.f.$.sg.$.nom.,4
+.f.,mant,matī,ī,.f.$.sg.$.nom.,4
+.f.,mant,mantī,ī,.f.$.sg.$.voc.,4
+.f.,mant,matī,ī,.f.$.sg.$.voc.,4
+.m.,mant,mantebhi,ebhi,.m.$.pl.$.abl.,4
+.m.,mant,mantehi,ehi,.m.$.pl.$.abl.,4
+.m.,mant,mante,e,.m.$.pl.$.acc.,4
+.m.,mant,mantānaṃ,ānaṃ,.m.$.pl.$.dat.,4
+.m.,mant,mataṃ,aṃ,.m.$.pl.$.dat.,4
+.m.,mant,mantānaṃ,ānaṃ,.m.$.pl.$.gen.,4
+.m.,mant,mataṃ,aṃ,.m.$.pl.$.gen.,4
+.m.,mant,mantebhi,ebhi,.m.$.pl.$.inst.,4
+.m.,mant,mantehi,ehi,.m.$.pl.$.inst.,4
+.m.,mant,mantesu,esu,.m.$.pl.$.loc.,4
+.m.,mant,mā,mā,.m.$.pl.$.nom.,4
+.m.,mant,mantā,ā,.m.$.pl.$.nom.,4
+.m.,mant,manto,o,.m.$.pl.$.nom.,4
+.m.,mant,mā,mā,.m.$.pl.$.voc.,4
+.m.,mant,mantā,ā,.m.$.pl.$.voc.,4
+.m.,mant,manto,o,.m.$.pl.$.voc.,4
+.m.,mant,mantā,ā,.m.$.sg.$.abl.,4
+.m.,mant,mantamhā,amhā,.m.$.sg.$.abl.,4
+.m.,mant,mantasmā,asmā,.m.$.sg.$.abl.,4
+.m.,mant,matā,ā,.m.$.sg.$.abl.,4
+.m.,mant,maṃ,maṃ,.m.$.sg.$.acc.,4
+.m.,mant,mantaṃ,aṃ,.m.$.sg.$.acc.,4
+.m.,mant,mantassa,assa,.m.$.sg.$.dat.,4
+.m.,mant,mato,o,.m.$.sg.$.dat.,4
+.m.,mant,mantassa,assa,.m.$.sg.$.gen.,4
+.m.,mant,mato,o,.m.$.sg.$.gen.,4
+.m.,mant,matā,ā,.m.$.sg.$.inst.,4
+.m.,mant,matena,ena,.m.$.sg.$.inst.,4
+.m.,mant,mantamhi,amhi,.m.$.sg.$.loc.,4
+.m.,mant,mantasmiṃ,asmiṃ,.m.$.sg.$.loc.,4
+.m.,mant,mante,e,.m.$.sg.$.loc.,4
+.m.,mant,mati,i,.m.$.sg.$.loc.,4
+.m.,mant,mā,mā,.m.$.sg.$.nom.,4
+.m.,mant,manto,o,.m.$.sg.$.nom.,4
+.m.,mant,ma,a,.m.$.sg.$.voc.,4
+.m.,mant,mā,ā,.m.$.sg.$.voc.,4
+.m.,mant,maṃ,ṃ,.m.$.sg.$.voc.,4
+.m.,mant,manta,a,.m.$.sg.$.voc.,4
+.m.,mant,mantā,ā,.m.$.sg.$.voc.,4
+.nt.,mant,mantebhi,ebhi,.nt.$.pl.$.abl.,4
+.nt.,mant,mantehi,ehi,.nt.$.pl.$.abl.,4
+.nt.,mant,mante,e,.nt.$.pl.$.acc.,4
+.nt.,mant,mantānaṃ,ānaṃ,.nt.$.pl.$.dat.,4
+.nt.,mant,mataṃ,aṃ,.nt.$.pl.$.dat.,4
+.nt.,mant,mantānaṃ,ānaṃ,.nt.$.pl.$.gen.,4
+.nt.,mant,mataṃ,aṃ,.nt.$.pl.$.gen.,4
+.nt.,mant,mantebhi,ebhi,.nt.$.pl.$.inst.,4
+.nt.,mant,mantehi,ehi,.nt.$.pl.$.inst.,4
+.nt.,mant,mantesu,esu,.nt.$.pl.$.loc.,4
+.nt.,mant,mā,mā,.nt.$.pl.$.nom.,4
+.nt.,mant,mantā,ā,.nt.$.pl.$.nom.,4
+.nt.,mant,manto,o,.nt.$.pl.$.nom.,4
+.nt.,mant,mā,mā,.nt.$.pl.$.voc.,4
+.nt.,mant,mantā,ā,.nt.$.pl.$.voc.,4
+.nt.,mant,manto,o,.nt.$.pl.$.voc.,4
+.nt.,mant,mantā,ā,.nt.$.sg.$.abl.,4
+.nt.,mant,mantamhā,amhā,.nt.$.sg.$.abl.,4
+.nt.,mant,mantasmā,asmā,.nt.$.sg.$.abl.,4
+.nt.,mant,matā,ā,.nt.$.sg.$.abl.,4
+.nt.,mant,maṃ,maṃ,.nt.$.sg.$.acc.,4
+.nt.,mant,mantaṃ,aṃ,.nt.$.sg.$.acc.,4
+.nt.,mant,mantassa,assa,.nt.$.sg.$.dat.,4
+.nt.,mant,mato,o,.nt.$.sg.$.dat.,4
+.nt.,mant,mantassa,assa,.nt.$.sg.$.gen.,4
+.nt.,mant,mato,o,.nt.$.sg.$.gen.,4
+.nt.,mant,matā,ā,.nt.$.sg.$.inst.,4
+.nt.,mant,matena,ena,.nt.$.sg.$.inst.,4
+.nt.,mant,mantamhi,amhi,.nt.$.sg.$.loc.,4
+.nt.,mant,mantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,4
+.nt.,mant,mante,e,.nt.$.sg.$.loc.,4
+.nt.,mant,mati,i,.nt.$.sg.$.loc.,4
+.nt.,mant,maṃ,maṃ,.nt.$.sg.$.nom.,4
+.nt.,mant,mantaṃ,aṃ,.nt.$.sg.$.nom.,4
+.nt.,mant,ma,a,.nt.$.sg.$.voc.,4
+.nt.,mant,mā,ā,.nt.$.sg.$.voc.,4
+.nt.,mant,maṃ,ṃ,.nt.$.sg.$.voc.,4
+.nt.,mant,manta,a,.nt.$.sg.$.voc.,4
+.nt.,mant,mantā,ā,.nt.$.sg.$.voc.,4
+.f.,manta,mantībhi,ībhi,.f.$.pl.$.abl.,5
+.f.,manta,mantīhi,īhi,.f.$.pl.$.abl.,5
+.f.,manta,matībhi,ībhi,.f.$.pl.$.abl.,5
+.f.,manta,matīhi,īhi,.f.$.pl.$.abl.,5
+.f.,manta,mantī,ī,.f.$.pl.$.acc.,5
+.f.,manta,mantiyo,iyo,.f.$.pl.$.acc.,5
+.f.,manta,matī,ī,.f.$.pl.$.acc.,5
+.f.,manta,matiyo,iyo,.f.$.pl.$.acc.,5
+.f.,manta,mantīnaṃ,īnaṃ,.f.$.pl.$.dat.,5
+.f.,manta,matīnaṃ,īnaṃ,.f.$.pl.$.dat.,5
+.f.,manta,mantīnaṃ,īnaṃ,.f.$.pl.$.gen.,5
+.f.,manta,matīnaṃ,īnaṃ,.f.$.pl.$.gen.,5
+.f.,manta,mantībhi,ībhi,.f.$.pl.$.inst.,5
+.f.,manta,mantīhi,īhi,.f.$.pl.$.inst.,5
+.f.,manta,matībhi,ībhi,.f.$.pl.$.inst.,5
+.f.,manta,matīhi,īhi,.f.$.pl.$.inst.,5
+.f.,manta,mantīsu,īsu,.f.$.pl.$.loc.,5
+.f.,manta,matīsu,īsu,.f.$.pl.$.loc.,5
+.f.,manta,mantī,ī,.f.$.pl.$.nom.,5
+.f.,manta,mantiyo,iyo,.f.$.pl.$.nom.,5
+.f.,manta,matī,ī,.f.$.pl.$.nom.,5
+.f.,manta,matiyo,iyo,.f.$.pl.$.nom.,5
+.f.,manta,mantī,ī,.f.$.pl.$.voc.,5
+.f.,manta,mantiyo,iyo,.f.$.pl.$.voc.,5
+.f.,manta,matī,ī,.f.$.pl.$.voc.,5
+.f.,manta,matiyo,iyo,.f.$.pl.$.voc.,5
+.f.,manta,mantiyā,iyā,.f.$.sg.$.abl.,5
+.f.,manta,matiyā,iyā,.f.$.sg.$.abl.,5
+.f.,manta,mantiṃ,iṃ,.f.$.sg.$.acc.,5
+.f.,manta,matiṃ,iṃ,.f.$.sg.$.acc.,5
+.f.,manta,mantiyā,iyā,.f.$.sg.$.dat.,5
+.f.,manta,matiyā,iyā,.f.$.sg.$.dat.,5
+.f.,manta,mantiyā,iyā,.f.$.sg.$.gen.,5
+.f.,manta,matiyā,iyā,.f.$.sg.$.gen.,5
+.f.,manta,mantiyā,iyā,.f.$.sg.$.inst.,5
+.f.,manta,matiyā,iyā,.f.$.sg.$.inst.,5
+.f.,manta,mantiyā,iyā,.f.$.sg.$.loc.,5
+.f.,manta,mantiyaṃ,iyaṃ,.f.$.sg.$.loc.,5
+.f.,manta,matiyā,iyā,.f.$.sg.$.loc.,5
+.f.,manta,matiyaṃ,iyaṃ,.f.$.sg.$.loc.,5
+.f.,manta,mantī,ī,.f.$.sg.$.nom.,5
+.f.,manta,matī,ī,.f.$.sg.$.nom.,5
+.f.,manta,mantī,ī,.f.$.sg.$.voc.,5
+.f.,manta,matī,ī,.f.$.sg.$.voc.,5
+.m.,manta,mantebhi,ebhi,.m.$.pl.$.abl.,5
+.m.,manta,mantehi,ehi,.m.$.pl.$.abl.,5
+.m.,manta,mante,e,.m.$.pl.$.acc.,5
+.m.,manta,mantānaṃ,ānaṃ,.m.$.pl.$.dat.,5
+.m.,manta,mataṃ,aṃ,.m.$.pl.$.dat.,5
+.m.,manta,mantānaṃ,ānaṃ,.m.$.pl.$.gen.,5
+.m.,manta,mataṃ,aṃ,.m.$.pl.$.gen.,5
+.m.,manta,mantebhi,ebhi,.m.$.pl.$.inst.,5
+.m.,manta,mantehi,ehi,.m.$.pl.$.inst.,5
+.m.,manta,mantesu,esu,.m.$.pl.$.loc.,5
+.m.,manta,mā,mā,.m.$.pl.$.nom.,5
+.m.,manta,mantā,ā,.m.$.pl.$.nom.,5
+.m.,manta,manto,o,.m.$.pl.$.nom.,5
+.m.,manta,mā,mā,.m.$.pl.$.voc.,5
+.m.,manta,mantā,ā,.m.$.pl.$.voc.,5
+.m.,manta,manto,o,.m.$.pl.$.voc.,5
+.m.,manta,mantā,ā,.m.$.sg.$.abl.,5
+.m.,manta,mantamhā,amhā,.m.$.sg.$.abl.,5
+.m.,manta,mantasmā,asmā,.m.$.sg.$.abl.,5
+.m.,manta,matā,ā,.m.$.sg.$.abl.,5
+.m.,manta,maṃ,maṃ,.m.$.sg.$.acc.,5
+.m.,manta,mantaṃ,aṃ,.m.$.sg.$.acc.,5
+.m.,manta,mantassa,assa,.m.$.sg.$.dat.,5
+.m.,manta,mato,o,.m.$.sg.$.dat.,5
+.m.,manta,mantassa,assa,.m.$.sg.$.gen.,5
+.m.,manta,mato,o,.m.$.sg.$.gen.,5
+.m.,manta,matā,ā,.m.$.sg.$.inst.,5
+.m.,manta,matena,ena,.m.$.sg.$.inst.,5
+.m.,manta,mantamhi,amhi,.m.$.sg.$.loc.,5
+.m.,manta,mantasmiṃ,asmiṃ,.m.$.sg.$.loc.,5
+.m.,manta,mante,e,.m.$.sg.$.loc.,5
+.m.,manta,mati,i,.m.$.sg.$.loc.,5
+.m.,manta,mā,mā,.m.$.sg.$.nom.,5
+.m.,manta,manto,o,.m.$.sg.$.nom.,5
+.m.,manta,ma,a,.m.$.sg.$.voc.,5
+.m.,manta,mā,ā,.m.$.sg.$.voc.,5
+.m.,manta,maṃ,ṃ,.m.$.sg.$.voc.,5
+.m.,manta,manta,a,.m.$.sg.$.voc.,5
+.m.,manta,mantā,ā,.m.$.sg.$.voc.,5
+.nt.,manta,mantebhi,ebhi,.nt.$.pl.$.abl.,5
+.nt.,manta,mantehi,ehi,.nt.$.pl.$.abl.,5
+.nt.,manta,mante,e,.nt.$.pl.$.acc.,5
+.nt.,manta,mantānaṃ,ānaṃ,.nt.$.pl.$.dat.,5
+.nt.,manta,mataṃ,aṃ,.nt.$.pl.$.dat.,5
+.nt.,manta,mantānaṃ,ānaṃ,.nt.$.pl.$.gen.,5
+.nt.,manta,mataṃ,aṃ,.nt.$.pl.$.gen.,5
+.nt.,manta,mantebhi,ebhi,.nt.$.pl.$.inst.,5
+.nt.,manta,mantehi,ehi,.nt.$.pl.$.inst.,5
+.nt.,manta,mantesu,esu,.nt.$.pl.$.loc.,5
+.nt.,manta,mā,mā,.nt.$.pl.$.nom.,5
+.nt.,manta,mantā,ā,.nt.$.pl.$.nom.,5
+.nt.,manta,manto,o,.nt.$.pl.$.nom.,5
+.nt.,manta,mā,mā,.nt.$.pl.$.voc.,5
+.nt.,manta,mantā,ā,.nt.$.pl.$.voc.,5
+.nt.,manta,manto,o,.nt.$.pl.$.voc.,5
+.nt.,manta,mantā,ā,.nt.$.sg.$.abl.,5
+.nt.,manta,mantamhā,amhā,.nt.$.sg.$.abl.,5
+.nt.,manta,mantasmā,asmā,.nt.$.sg.$.abl.,5
+.nt.,manta,matā,ā,.nt.$.sg.$.abl.,5
+.nt.,manta,maṃ,maṃ,.nt.$.sg.$.acc.,5
+.nt.,manta,mantaṃ,aṃ,.nt.$.sg.$.acc.,5
+.nt.,manta,mantassa,assa,.nt.$.sg.$.dat.,5
+.nt.,manta,mato,o,.nt.$.sg.$.dat.,5
+.nt.,manta,mantassa,assa,.nt.$.sg.$.gen.,5
+.nt.,manta,mato,o,.nt.$.sg.$.gen.,5
+.nt.,manta,matā,ā,.nt.$.sg.$.inst.,5
+.nt.,manta,matena,ena,.nt.$.sg.$.inst.,5
+.nt.,manta,mantamhi,amhi,.nt.$.sg.$.loc.,5
+.nt.,manta,mantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,5
+.nt.,manta,mante,e,.nt.$.sg.$.loc.,5
+.nt.,manta,mati,i,.nt.$.sg.$.loc.,5
+.nt.,manta,maṃ,maṃ,.nt.$.sg.$.nom.,5
+.nt.,manta,mantaṃ,aṃ,.nt.$.sg.$.nom.,5
+.nt.,manta,ma,a,.nt.$.sg.$.voc.,5
+.nt.,manta,mā,ā,.nt.$.sg.$.voc.,5
+.nt.,manta,maṃ,ṃ,.nt.$.sg.$.voc.,5
+.nt.,manta,manta,a,.nt.$.sg.$.voc.,5
+.nt.,manta,mantā,ā,.nt.$.sg.$.voc.,5
+.f.,mat,mantībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,mat,mantīhi,īhi,.f.$.pl.$.abl.,3
+.f.,mat,matībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,mat,matīhi,īhi,.f.$.pl.$.abl.,3
+.f.,mat,mantī,ī,.f.$.pl.$.acc.,3
+.f.,mat,mantiyo,iyo,.f.$.pl.$.acc.,3
+.f.,mat,matī,ī,.f.$.pl.$.acc.,3
+.f.,mat,matiyo,iyo,.f.$.pl.$.acc.,3
+.f.,mat,mantīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,mat,matīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,mat,mantīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,mat,matīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,mat,mantībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,mat,mantīhi,īhi,.f.$.pl.$.inst.,3
+.f.,mat,matībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,mat,matīhi,īhi,.f.$.pl.$.inst.,3
+.f.,mat,mantīsu,īsu,.f.$.pl.$.loc.,3
+.f.,mat,matīsu,īsu,.f.$.pl.$.loc.,3
+.f.,mat,mantī,ī,.f.$.pl.$.nom.,3
+.f.,mat,mantiyo,iyo,.f.$.pl.$.nom.,3
+.f.,mat,matī,ī,.f.$.pl.$.nom.,3
+.f.,mat,matiyo,iyo,.f.$.pl.$.nom.,3
+.f.,mat,mantī,ī,.f.$.pl.$.voc.,3
+.f.,mat,mantiyo,iyo,.f.$.pl.$.voc.,3
+.f.,mat,matī,ī,.f.$.pl.$.voc.,3
+.f.,mat,matiyo,iyo,.f.$.pl.$.voc.,3
+.f.,mat,mantiyā,iyā,.f.$.sg.$.abl.,3
+.f.,mat,matiyā,iyā,.f.$.sg.$.abl.,3
+.f.,mat,mantiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,mat,matiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,mat,mantiyā,iyā,.f.$.sg.$.dat.,3
+.f.,mat,matiyā,iyā,.f.$.sg.$.dat.,3
+.f.,mat,mantiyā,iyā,.f.$.sg.$.gen.,3
+.f.,mat,matiyā,iyā,.f.$.sg.$.gen.,3
+.f.,mat,mantiyā,iyā,.f.$.sg.$.inst.,3
+.f.,mat,matiyā,iyā,.f.$.sg.$.inst.,3
+.f.,mat,mantiyā,iyā,.f.$.sg.$.loc.,3
+.f.,mat,mantiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,mat,matiyā,iyā,.f.$.sg.$.loc.,3
+.f.,mat,matiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,mat,mantī,ī,.f.$.sg.$.nom.,3
+.f.,mat,matī,ī,.f.$.sg.$.nom.,3
+.f.,mat,mantī,ī,.f.$.sg.$.voc.,3
+.f.,mat,matī,ī,.f.$.sg.$.voc.,3
+.m.,mat,mantebhi,ebhi,.m.$.pl.$.abl.,3
+.m.,mat,mantehi,ehi,.m.$.pl.$.abl.,3
+.m.,mat,mante,e,.m.$.pl.$.acc.,3
+.m.,mat,mantānaṃ,ānaṃ,.m.$.pl.$.dat.,3
+.m.,mat,mataṃ,aṃ,.m.$.pl.$.dat.,3
+.m.,mat,mantānaṃ,ānaṃ,.m.$.pl.$.gen.,3
+.m.,mat,mataṃ,aṃ,.m.$.pl.$.gen.,3
+.m.,mat,mantebhi,ebhi,.m.$.pl.$.inst.,3
+.m.,mat,mantehi,ehi,.m.$.pl.$.inst.,3
+.m.,mat,mantesu,esu,.m.$.pl.$.loc.,3
+.m.,mat,mā,mā,.m.$.pl.$.nom.,3
+.m.,mat,mantā,ā,.m.$.pl.$.nom.,3
+.m.,mat,manto,o,.m.$.pl.$.nom.,3
+.m.,mat,mā,mā,.m.$.pl.$.voc.,3
+.m.,mat,mantā,ā,.m.$.pl.$.voc.,3
+.m.,mat,manto,o,.m.$.pl.$.voc.,3
+.m.,mat,mantā,ā,.m.$.sg.$.abl.,3
+.m.,mat,mantamhā,amhā,.m.$.sg.$.abl.,3
+.m.,mat,mantasmā,asmā,.m.$.sg.$.abl.,3
+.m.,mat,matā,ā,.m.$.sg.$.abl.,3
+.m.,mat,maṃ,maṃ,.m.$.sg.$.acc.,3
+.m.,mat,mantaṃ,aṃ,.m.$.sg.$.acc.,3
+.m.,mat,mantassa,assa,.m.$.sg.$.dat.,3
+.m.,mat,mato,o,.m.$.sg.$.dat.,3
+.m.,mat,mantassa,assa,.m.$.sg.$.gen.,3
+.m.,mat,mato,o,.m.$.sg.$.gen.,3
+.m.,mat,matā,ā,.m.$.sg.$.inst.,3
+.m.,mat,matena,ena,.m.$.sg.$.inst.,3
+.m.,mat,mantamhi,amhi,.m.$.sg.$.loc.,3
+.m.,mat,mantasmiṃ,asmiṃ,.m.$.sg.$.loc.,3
+.m.,mat,mante,e,.m.$.sg.$.loc.,3
+.m.,mat,mati,i,.m.$.sg.$.loc.,3
+.m.,mat,mā,mā,.m.$.sg.$.nom.,3
+.m.,mat,manto,o,.m.$.sg.$.nom.,3
+.m.,mat,ma,a,.m.$.sg.$.voc.,3
+.m.,mat,mā,ā,.m.$.sg.$.voc.,3
+.m.,mat,maṃ,ṃ,.m.$.sg.$.voc.,3
+.m.,mat,manta,a,.m.$.sg.$.voc.,3
+.m.,mat,mantā,ā,.m.$.sg.$.voc.,3
+.nt.,mat,mantebhi,ebhi,.nt.$.pl.$.abl.,3
+.nt.,mat,mantehi,ehi,.nt.$.pl.$.abl.,3
+.nt.,mat,mante,e,.nt.$.pl.$.acc.,3
+.nt.,mat,mantānaṃ,ānaṃ,.nt.$.pl.$.dat.,3
+.nt.,mat,mataṃ,aṃ,.nt.$.pl.$.dat.,3
+.nt.,mat,mantānaṃ,ānaṃ,.nt.$.pl.$.gen.,3
+.nt.,mat,mataṃ,aṃ,.nt.$.pl.$.gen.,3
+.nt.,mat,mantebhi,ebhi,.nt.$.pl.$.inst.,3
+.nt.,mat,mantehi,ehi,.nt.$.pl.$.inst.,3
+.nt.,mat,mantesu,esu,.nt.$.pl.$.loc.,3
+.nt.,mat,mā,mā,.nt.$.pl.$.nom.,3
+.nt.,mat,mantā,ā,.nt.$.pl.$.nom.,3
+.nt.,mat,manto,o,.nt.$.pl.$.nom.,3
+.nt.,mat,mā,mā,.nt.$.pl.$.voc.,3
+.nt.,mat,mantā,ā,.nt.$.pl.$.voc.,3
+.nt.,mat,manto,o,.nt.$.pl.$.voc.,3
+.nt.,mat,mantā,ā,.nt.$.sg.$.abl.,3
+.nt.,mat,mantamhā,amhā,.nt.$.sg.$.abl.,3
+.nt.,mat,mantasmā,asmā,.nt.$.sg.$.abl.,3
+.nt.,mat,matā,ā,.nt.$.sg.$.abl.,3
+.nt.,mat,maṃ,maṃ,.nt.$.sg.$.acc.,3
+.nt.,mat,mantaṃ,aṃ,.nt.$.sg.$.acc.,3
+.nt.,mat,mantassa,assa,.nt.$.sg.$.dat.,3
+.nt.,mat,mato,o,.nt.$.sg.$.dat.,3
+.nt.,mat,mantassa,assa,.nt.$.sg.$.gen.,3
+.nt.,mat,mato,o,.nt.$.sg.$.gen.,3
+.nt.,mat,matā,ā,.nt.$.sg.$.inst.,3
+.nt.,mat,matena,ena,.nt.$.sg.$.inst.,3
+.nt.,mat,mantamhi,amhi,.nt.$.sg.$.loc.,3
+.nt.,mat,mantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,3
+.nt.,mat,mante,e,.nt.$.sg.$.loc.,3
+.nt.,mat,mati,i,.nt.$.sg.$.loc.,3
+.nt.,mat,maṃ,maṃ,.nt.$.sg.$.nom.,3
+.nt.,mat,mantaṃ,aṃ,.nt.$.sg.$.nom.,3
+.nt.,mat,ma,a,.nt.$.sg.$.voc.,3
+.nt.,mat,mā,ā,.nt.$.sg.$.voc.,3
+.nt.,mat,maṃ,ṃ,.nt.$.sg.$.voc.,3
+.nt.,mat,manta,a,.nt.$.sg.$.voc.,3
+.nt.,mat,mantā,ā,.nt.$.sg.$.voc.,3
+.f.,mata,mantībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,mata,mantīhi,īhi,.f.$.pl.$.abl.,4
+.f.,mata,matībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,mata,matīhi,īhi,.f.$.pl.$.abl.,4
+.f.,mata,mantī,ī,.f.$.pl.$.acc.,4
+.f.,mata,mantiyo,iyo,.f.$.pl.$.acc.,4
+.f.,mata,matī,ī,.f.$.pl.$.acc.,4
+.f.,mata,matiyo,iyo,.f.$.pl.$.acc.,4
+.f.,mata,mantīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,mata,matīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,mata,mantīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,mata,matīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,mata,mantībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,mata,mantīhi,īhi,.f.$.pl.$.inst.,4
+.f.,mata,matībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,mata,matīhi,īhi,.f.$.pl.$.inst.,4
+.f.,mata,mantīsu,īsu,.f.$.pl.$.loc.,4
+.f.,mata,matīsu,īsu,.f.$.pl.$.loc.,4
+.f.,mata,mantī,ī,.f.$.pl.$.nom.,4
+.f.,mata,mantiyo,iyo,.f.$.pl.$.nom.,4
+.f.,mata,matī,ī,.f.$.pl.$.nom.,4
+.f.,mata,matiyo,iyo,.f.$.pl.$.nom.,4
+.f.,mata,mantī,ī,.f.$.pl.$.voc.,4
+.f.,mata,mantiyo,iyo,.f.$.pl.$.voc.,4
+.f.,mata,matī,ī,.f.$.pl.$.voc.,4
+.f.,mata,matiyo,iyo,.f.$.pl.$.voc.,4
+.f.,mata,mantiyā,iyā,.f.$.sg.$.abl.,4
+.f.,mata,matiyā,iyā,.f.$.sg.$.abl.,4
+.f.,mata,mantiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,mata,matiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,mata,mantiyā,iyā,.f.$.sg.$.dat.,4
+.f.,mata,matiyā,iyā,.f.$.sg.$.dat.,4
+.f.,mata,mantiyā,iyā,.f.$.sg.$.gen.,4
+.f.,mata,matiyā,iyā,.f.$.sg.$.gen.,4
+.f.,mata,mantiyā,iyā,.f.$.sg.$.inst.,4
+.f.,mata,matiyā,iyā,.f.$.sg.$.inst.,4
+.f.,mata,mantiyā,iyā,.f.$.sg.$.loc.,4
+.f.,mata,mantiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,mata,matiyā,iyā,.f.$.sg.$.loc.,4
+.f.,mata,matiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,mata,mantī,ī,.f.$.sg.$.nom.,4
+.f.,mata,matī,ī,.f.$.sg.$.nom.,4
+.f.,mata,mantī,ī,.f.$.sg.$.voc.,4
+.f.,mata,matī,ī,.f.$.sg.$.voc.,4
+.m.,mata,mantebhi,ebhi,.m.$.pl.$.abl.,4
+.m.,mata,mantehi,ehi,.m.$.pl.$.abl.,4
+.m.,mata,mante,e,.m.$.pl.$.acc.,4
+.m.,mata,mantānaṃ,ānaṃ,.m.$.pl.$.dat.,4
+.m.,mata,mataṃ,aṃ,.m.$.pl.$.dat.,4
+.m.,mata,mantānaṃ,ānaṃ,.m.$.pl.$.gen.,4
+.m.,mata,mataṃ,aṃ,.m.$.pl.$.gen.,4
+.m.,mata,mantebhi,ebhi,.m.$.pl.$.inst.,4
+.m.,mata,mantehi,ehi,.m.$.pl.$.inst.,4
+.m.,mata,mantesu,esu,.m.$.pl.$.loc.,4
+.m.,mata,mā,mā,.m.$.pl.$.nom.,4
+.m.,mata,mantā,ā,.m.$.pl.$.nom.,4
+.m.,mata,manto,o,.m.$.pl.$.nom.,4
+.m.,mata,mā,mā,.m.$.pl.$.voc.,4
+.m.,mata,mantā,ā,.m.$.pl.$.voc.,4
+.m.,mata,manto,o,.m.$.pl.$.voc.,4
+.m.,mata,mantā,ā,.m.$.sg.$.abl.,4
+.m.,mata,mantamhā,amhā,.m.$.sg.$.abl.,4
+.m.,mata,mantasmā,asmā,.m.$.sg.$.abl.,4
+.m.,mata,matā,ā,.m.$.sg.$.abl.,4
+.m.,mata,maṃ,maṃ,.m.$.sg.$.acc.,4
+.m.,mata,mantaṃ,aṃ,.m.$.sg.$.acc.,4
+.m.,mata,mantassa,assa,.m.$.sg.$.dat.,4
+.m.,mata,mato,o,.m.$.sg.$.dat.,4
+.m.,mata,mantassa,assa,.m.$.sg.$.gen.,4
+.m.,mata,mato,o,.m.$.sg.$.gen.,4
+.m.,mata,matā,ā,.m.$.sg.$.inst.,4
+.m.,mata,matena,ena,.m.$.sg.$.inst.,4
+.m.,mata,mantamhi,amhi,.m.$.sg.$.loc.,4
+.m.,mata,mantasmiṃ,asmiṃ,.m.$.sg.$.loc.,4
+.m.,mata,mante,e,.m.$.sg.$.loc.,4
+.m.,mata,mati,i,.m.$.sg.$.loc.,4
+.m.,mata,mā,mā,.m.$.sg.$.nom.,4
+.m.,mata,manto,o,.m.$.sg.$.nom.,4
+.m.,mata,ma,a,.m.$.sg.$.voc.,4
+.m.,mata,mā,ā,.m.$.sg.$.voc.,4
+.m.,mata,maṃ,ṃ,.m.$.sg.$.voc.,4
+.m.,mata,manta,a,.m.$.sg.$.voc.,4
+.m.,mata,mantā,ā,.m.$.sg.$.voc.,4
+.nt.,mata,mantebhi,ebhi,.nt.$.pl.$.abl.,4
+.nt.,mata,mantehi,ehi,.nt.$.pl.$.abl.,4
+.nt.,mata,mante,e,.nt.$.pl.$.acc.,4
+.nt.,mata,mantānaṃ,ānaṃ,.nt.$.pl.$.dat.,4
+.nt.,mata,mataṃ,aṃ,.nt.$.pl.$.dat.,4
+.nt.,mata,mantānaṃ,ānaṃ,.nt.$.pl.$.gen.,4
+.nt.,mata,mataṃ,aṃ,.nt.$.pl.$.gen.,4
+.nt.,mata,mantebhi,ebhi,.nt.$.pl.$.inst.,4
+.nt.,mata,mantehi,ehi,.nt.$.pl.$.inst.,4
+.nt.,mata,mantesu,esu,.nt.$.pl.$.loc.,4
+.nt.,mata,mā,mā,.nt.$.pl.$.nom.,4
+.nt.,mata,mantā,ā,.nt.$.pl.$.nom.,4
+.nt.,mata,manto,o,.nt.$.pl.$.nom.,4
+.nt.,mata,mā,mā,.nt.$.pl.$.voc.,4
+.nt.,mata,mantā,ā,.nt.$.pl.$.voc.,4
+.nt.,mata,manto,o,.nt.$.pl.$.voc.,4
+.nt.,mata,mantā,ā,.nt.$.sg.$.abl.,4
+.nt.,mata,mantamhā,amhā,.nt.$.sg.$.abl.,4
+.nt.,mata,mantasmā,asmā,.nt.$.sg.$.abl.,4
+.nt.,mata,matā,ā,.nt.$.sg.$.abl.,4
+.nt.,mata,maṃ,maṃ,.nt.$.sg.$.acc.,4
+.nt.,mata,mantaṃ,aṃ,.nt.$.sg.$.acc.,4
+.nt.,mata,mantassa,assa,.nt.$.sg.$.dat.,4
+.nt.,mata,mato,o,.nt.$.sg.$.dat.,4
+.nt.,mata,mantassa,assa,.nt.$.sg.$.gen.,4
+.nt.,mata,mato,o,.nt.$.sg.$.gen.,4
+.nt.,mata,matā,ā,.nt.$.sg.$.inst.,4
+.nt.,mata,matena,ena,.nt.$.sg.$.inst.,4
+.nt.,mata,mantamhi,amhi,.nt.$.sg.$.loc.,4
+.nt.,mata,mantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,4
+.nt.,mata,mante,e,.nt.$.sg.$.loc.,4
+.nt.,mata,mati,i,.nt.$.sg.$.loc.,4
+.nt.,mata,maṃ,maṃ,.nt.$.sg.$.nom.,4
+.nt.,mata,mantaṃ,aṃ,.nt.$.sg.$.nom.,4
+.nt.,mata,ma,a,.nt.$.sg.$.voc.,4
+.nt.,mata,mā,ā,.nt.$.sg.$.voc.,4
+.nt.,mata,maṃ,ṃ,.nt.$.sg.$.voc.,4
+.nt.,mata,manta,a,.nt.$.sg.$.voc.,4
+.nt.,mata,mantā,ā,.nt.$.sg.$.voc.,4
+.f.,u,unībhi,nībhi,.f.$.pl.$.abl.,1
+.f.,u,unīhi,nīhi,.f.$.pl.$.abl.,1
+.f.,u,unī,ni,.f.$.pl.$.acc.,1
+.f.,u,univo,nivo,.f.$.pl.$.acc.,1
+.f.,u,uniyo,niyo,.f.$.pl.$.acc.,1
+.f.,u,unīnaṃ,nīnaṃ,.f.$.pl.$.dat.,1
+.f.,u,unīnaṃ,nīnaṃ,.f.$.pl.$.gen.,1
+.f.,u,unībhi,nībhi,.f.$.pl.$.inst.,1
+.f.,u,unīhi,nīhi,.f.$.pl.$.inst.,1
+.f.,u,unīsu,nīsu,.f.$.pl.$.loc.,1
+.f.,u,unī,ni,.f.$.pl.$.nom.,1
+.f.,u,univo,nivo,.f.$.pl.$.nom.,1
+.f.,u,uniyo,niyo,.f.$.pl.$.nom.,1
+.f.,u,unī,ni,.f.$.pl.$.voc.,1
+.f.,u,univo,nivo,.f.$.pl.$.voc.,1
+.f.,u,uniyo,niyo,.f.$.pl.$.voc.,1
+.f.,u,unito,nito,.f.$.sg.$.abl.,1
+.f.,u,uniyā,niyā,.f.$.sg.$.abl.,1
+.f.,u,uniṃ,niṃ,.f.$.sg.$.acc.,1
+.f.,u,uniyā,niyā,.f.$.sg.$.dat.,1
+.f.,u,uniyā,niyā,.f.$.sg.$.gen.,1
+.f.,u,uniyā,niyā,.f.$.sg.$.inst.,1
+.f.,u,uniyā,niyā,.f.$.sg.$.loc.,1
+.f.,u,uniyaṃ,niyaṃ,.f.$.sg.$.loc.,1
+.f.,u,unī,nī,.f.$.sg.$.nom.,1
+.f.,u,unī,nī,.f.$.sg.$.voc.,1
+.m.,u,ūbhi,bhi,.m.$.pl.$.abl.,1
+.m.,u,ūhi,hi,.m.$.pl.$.abl.,1
+.m.,u,avo,o,.m.$.pl.$.acc.,1
+.m.,u,ū,ū,.m.$.pl.$.acc.,1
+.m.,u,ūnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,u,ūnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,u,ūbhi,bhi,.m.$.pl.$.inst.,1
+.m.,u,ūhi,hi,.m.$.pl.$.inst.,1
+.m.,u,ūsu,su,.m.$.pl.$.loc.,1
+.m.,u,avo,o,.m.$.pl.$.nom.,1
+.m.,u,ū,ū,.m.$.pl.$.nom.,1
+.m.,u,ave,e,.m.$.pl.$.voc.,1
+.m.,u,avo,o,.m.$.pl.$.voc.,1
+.m.,u,ū,ū,.m.$.pl.$.voc.,1
+.m.,u,umhā,mhā,.m.$.sg.$.abl.,1
+.m.,u,unā,nā,.m.$.sg.$.abl.,1
+.m.,u,usmā,smā,.m.$.sg.$.abl.,1
+.m.,u,uṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,u,uno,no,.m.$.sg.$.dat.,1
+.m.,u,ussa,ssa,.m.$.sg.$.dat.,1
+.m.,u,uno,no,.m.$.sg.$.gen.,1
+.m.,u,ussa,ssa,.m.$.sg.$.gen.,1
+.m.,u,unā,nā,.m.$.sg.$.inst.,1
+.m.,u,umhi,mhi,.m.$.sg.$.loc.,1
+.m.,u,usmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,u,u,u,.m.$.sg.$.nom.,1
+.m.,u,u,u,.m.$.sg.$.voc.,1
+.nt.,u,ūbhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,u,ūhi,hi,.nt.$.pl.$.abl.,1
+.nt.,u,ū,ū,.nt.$.pl.$.acc.,1
+.nt.,u,ūni,ni,.nt.$.pl.$.acc.,1
+.nt.,u,ūnaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,u,ūnaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,u,ūbhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,u,ūhi,hi,.nt.$.pl.$.inst.,1
+.nt.,u,ūsu,su,.nt.$.pl.$.loc.,1
+.nt.,u,ū,ū,.nt.$.pl.$.nom.,1
+.nt.,u,ūni,ni,.nt.$.pl.$.nom.,1
+.nt.,u,ū,ū,.nt.$.pl.$.voc.,1
+.nt.,u,ūni,ni,.nt.$.pl.$.voc.,1
+.nt.,u,umhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,u,unā,nā,.nt.$.sg.$.abl.,1
+.nt.,u,usmā,smā,.nt.$.sg.$.abl.,1
+.nt.,u,uṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,u,uno,no,.nt.$.sg.$.dat.,1
+.nt.,u,ussa,ssa,.nt.$.sg.$.dat.,1
+.nt.,u,uno,no,.nt.$.sg.$.gen.,1
+.nt.,u,ussa,ssa,.nt.$.sg.$.gen.,1
+.nt.,u,unā,nā,.nt.$.sg.$.inst.,1
+.nt.,u,umhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,u,usmiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,u,u,u,.nt.$.sg.$.nom.,1
+.nt.,u,u,u,.nt.$.sg.$.voc.,1
+.f.,ū,ūnībhi,nībhi,.f.$.pl.$.abl.,1
+.f.,ū,ūnīhi,nīhi,.f.$.pl.$.abl.,1
+.f.,ū,ūnī,ni,.f.$.pl.$.acc.,1
+.f.,ū,ūniyo,niyo,.f.$.pl.$.acc.,1
+.f.,ū,ūnīnaṃ,nīnaṃ,.f.$.pl.$.dat.,1
+.f.,ū,ūnīnaṃ,nīnaṃ,.f.$.pl.$.gen.,1
+.f.,ū,ūnībhi,nībhi,.f.$.pl.$.inst.,1
+.f.,ū,ūnīhi,nīhi,.f.$.pl.$.inst.,1
+.f.,ū,ūnīsu,nīsu,.f.$.pl.$.loc.,1
+.f.,ū,ūnī,ni,.f.$.pl.$.nom.,1
+.f.,ū,ūniyo,niyo,.f.$.pl.$.nom.,1
+.f.,ū,ūnī,ni,.f.$.pl.$.voc.,1
+.f.,ū,ūniyo,niyo,.f.$.pl.$.voc.,1
+.f.,ū,uto,to,.f.$.sg.$.abl.,1
+.f.,ū,uyā,yā,.f.$.sg.$.abl.,1
+.f.,ū,uṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,ū,uyā,yā,.f.$.sg.$.dat.,1
+.f.,ū,uyā,yā,.f.$.sg.$.gen.,1
+.f.,ū,uyā,yā,.f.$.sg.$.inst.,1
+.f.,ū,uyā,yā,.f.$.sg.$.loc.,1
+.f.,ū,uyaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,ū,ū,ū,.f.$.sg.$.nom.,1
+.f.,ū,ū,ū,.f.$.sg.$.voc.,1
+.m.,ū,ūbhi,bhi,.m.$.pl.$.abl.,1
+.m.,ū,ūhi,hi,.m.$.pl.$.abl.,1
+.m.,ū,avo,o,.m.$.pl.$.acc.,1
+.m.,ū,ū,ū,.m.$.pl.$.acc.,1
+.m.,ū,ūnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,ū,ūnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,ū,ūbhi,bhi,.m.$.pl.$.inst.,1
+.m.,ū,ūhi,hi,.m.$.pl.$.inst.,1
+.m.,ū,ūsu,su,.m.$.pl.$.loc.,1
+.m.,ū,avo,o,.m.$.pl.$.nom.,1
+.m.,ū,ū,ū,.m.$.pl.$.nom.,1
+.m.,ū,ave,e,.m.$.pl.$.voc.,1
+.m.,ū,avo,o,.m.$.pl.$.voc.,1
+.m.,ū,ū,ū,.m.$.pl.$.voc.,1
+.m.,ū,umhā,mhā,.m.$.sg.$.abl.,1
+.m.,ū,unā,nā,.m.$.sg.$.abl.,1
+.m.,ū,usmā,smā,.m.$.sg.$.abl.,1
+.m.,ū,uṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,ū,uno,no,.m.$.sg.$.dat.,1
+.m.,ū,ussa,ssa,.m.$.sg.$.dat.,1
+.m.,ū,uno,no,.m.$.sg.$.gen.,1
+.m.,ū,ussa,ssa,.m.$.sg.$.gen.,1
+.m.,ū,unā,nā,.m.$.sg.$.inst.,1
+.m.,ū,umhi,mhi,.m.$.sg.$.loc.,1
+.m.,ū,usmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,ū,ū,ū,.m.$.sg.$.nom.,1
+.m.,ū,ū,ū,.m.$.sg.$.voc.,1
+.f.,vā,vantībhi,ībhi,.f.$.pl.$.abl.,2
+.f.,vā,vantīhi,īhi,.f.$.pl.$.abl.,2
+.f.,vā,vatībhi,ībhi,.f.$.pl.$.abl.,2
+.f.,vā,vatīhi,īhi,.f.$.pl.$.abl.,2
+.f.,vā,vantī,ī,.f.$.pl.$.acc.,2
+.f.,vā,vantiyo,iyo,.f.$.pl.$.acc.,2
+.f.,vā,vatī,ī,.f.$.pl.$.acc.,2
+.f.,vā,vatiyo,iyo,.f.$.pl.$.acc.,2
+.f.,vā,vantīnaṃ,īnaṃ,.f.$.pl.$.dat.,2
+.f.,vā,vatīnaṃ,īnaṃ,.f.$.pl.$.dat.,2
+.f.,vā,vantīnaṃ,īnaṃ,.f.$.pl.$.gen.,2
+.f.,vā,vatīnaṃ,īnaṃ,.f.$.pl.$.gen.,2
+.f.,vā,vantībhi,ībhi,.f.$.pl.$.inst.,2
+.f.,vā,vantīhi,īhi,.f.$.pl.$.inst.,2
+.f.,vā,vatībhi,ībhi,.f.$.pl.$.inst.,2
+.f.,vā,vatīhi,īhi,.f.$.pl.$.inst.,2
+.f.,vā,vantīsu,īsu,.f.$.pl.$.loc.,2
+.f.,vā,vatīsu,īsu,.f.$.pl.$.loc.,2
+.f.,vā,vantī,ī,.f.$.pl.$.nom.,2
+.f.,vā,vantiyo,iyo,.f.$.pl.$.nom.,2
+.f.,vā,vatī,ī,.f.$.pl.$.nom.,2
+.f.,vā,vatiyo,iyo,.f.$.pl.$.nom.,2
+.f.,vā,vantī,ī,.f.$.pl.$.voc.,2
+.f.,vā,vantiyo,iyo,.f.$.pl.$.voc.,2
+.f.,vā,vatī,ī,.f.$.pl.$.voc.,2
+.f.,vā,vatiyo,iyo,.f.$.pl.$.voc.,2
+.f.,vā,vantiyā,iyā,.f.$.sg.$.abl.,2
+.f.,vā,vatiyā,iyā,.f.$.sg.$.abl.,2
+.f.,vā,vantiṃ,iṃ,.f.$.sg.$.acc.,2
+.f.,vā,vatiṃ,iṃ,.f.$.sg.$.acc.,2
+.f.,vā,vantiyā,iyā,.f.$.sg.$.dat.,2
+.f.,vā,vatiyā,iyā,.f.$.sg.$.dat.,2
+.f.,vā,vantiyā,iyā,.f.$.sg.$.gen.,2
+.f.,vā,vatiyā,iyā,.f.$.sg.$.gen.,2
+.f.,vā,vantiyā,iyā,.f.$.sg.$.inst.,2
+.f.,vā,vatiyā,iyā,.f.$.sg.$.inst.,2
+.f.,vā,vantiyā,iyā,.f.$.sg.$.loc.,2
+.f.,vā,vantiyaṃ,iyaṃ,.f.$.sg.$.loc.,2
+.f.,vā,vatiyā,iyā,.f.$.sg.$.loc.,2
+.f.,vā,vatiyaṃ,iyaṃ,.f.$.sg.$.loc.,2
+.f.,vā,vantī,ī,.f.$.sg.$.nom.,2
+.f.,vā,vatī,ī,.f.$.sg.$.nom.,2
+.f.,vā,vantī,ī,.f.$.sg.$.voc.,2
+.f.,vā,vatī,ī,.f.$.sg.$.voc.,2
+.m.,vā,vantebhi,ebhi,.m.$.pl.$.abl.,2
+.m.,vā,vantehi,ehi,.m.$.pl.$.abl.,2
+.m.,vā,vante,e,.m.$.pl.$.acc.,2
+.m.,vā,vantānaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,vā,vataṃ,ṃ,.m.$.pl.$.dat.,2
+.m.,vā,vantānaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,vā,vataṃ,ṃ,.m.$.pl.$.gen.,2
+.m.,vā,vantebhi,ebhi,.m.$.pl.$.inst.,2
+.m.,vā,vantehi,ehi,.m.$.pl.$.inst.,2
+.m.,vā,vantesu,esu,.m.$.pl.$.loc.,2
+.m.,vā,vā,ā,.m.$.pl.$.nom.,2
+.m.,vā,vantā,ā,.m.$.pl.$.nom.,2
+.m.,vā,vanto,o,.m.$.pl.$.nom.,2
+.m.,vā,vā,ā,.m.$.pl.$.voc.,2
+.m.,vā,vantā,ā,.m.$.pl.$.voc.,2
+.m.,vā,vanto,o,.m.$.pl.$.voc.,2
+.m.,vā,vantā,ā,.m.$.sg.$.abl.,2
+.m.,vā,vantamhā,mhā,.m.$.sg.$.abl.,2
+.m.,vā,vantasmā,smā,.m.$.sg.$.abl.,2
+.m.,vā,vatā,ā,.m.$.sg.$.abl.,2
+.m.,vā,vaṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,vā,vantaṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,vā,vantassa,ssa,.m.$.sg.$.dat.,2
+.m.,vā,vato,o,.m.$.sg.$.dat.,2
+.m.,vā,vantassa,ssa,.m.$.sg.$.gen.,2
+.m.,vā,vato,o,.m.$.sg.$.gen.,2
+.m.,vā,vatā,ā,.m.$.sg.$.inst.,2
+.m.,vā,vatena,ena,.m.$.sg.$.inst.,2
+.m.,vā,vantamhi,mhi,.m.$.sg.$.loc.,2
+.m.,vā,vantasmiṃ,smiṃ,.m.$.sg.$.loc.,2
+.m.,vā,vante,e,.m.$.sg.$.loc.,2
+.m.,vā,vati,i,.m.$.sg.$.loc.,2
+.m.,vā,vā,ā,.m.$.sg.$.nom.,2
+.m.,vā,vanto,o,.m.$.sg.$.nom.,2
+.m.,vā,va,a,.m.$.sg.$.voc.,2
+.m.,vā,vā,ā,.m.$.sg.$.voc.,2
+.m.,vā,vaṃ,ṃ,.m.$.sg.$.voc.,2
+.m.,vā,vanta,a,.m.$.sg.$.voc.,2
+.m.,vā,vantā,ā,.m.$.sg.$.voc.,2
+.nt.,vā,vantebhi,ebhi,.nt.$.pl.$.abl.,2
+.nt.,vā,vantehi,ehi,.nt.$.pl.$.abl.,2
+.nt.,vā,vante,e,.nt.$.pl.$.acc.,2
+.nt.,vā,vantānaṃ,ānaṃ,.nt.$.pl.$.dat.,2
+.nt.,vā,vataṃ,aṃ,.nt.$.pl.$.dat.,2
+.nt.,vā,vantānaṃ,ānaṃ,.nt.$.pl.$.gen.,2
+.nt.,vā,vataṃ,aṃ,.nt.$.pl.$.gen.,2
+.nt.,vā,vantebhi,ebhi,.nt.$.pl.$.inst.,2
+.nt.,vā,vantehi,ehi,.nt.$.pl.$.inst.,2
+.nt.,vā,vantesu,esu,.nt.$.pl.$.loc.,2
+.nt.,vā,vā,vā,.nt.$.pl.$.nom.,2
+.nt.,vā,vantā,ā,.nt.$.pl.$.nom.,2
+.nt.,vā,vanto,o,.nt.$.pl.$.nom.,2
+.nt.,vā,vā,vā,.nt.$.pl.$.voc.,2
+.nt.,vā,vantā,ā,.nt.$.pl.$.voc.,2
+.nt.,vā,vanto,o,.nt.$.pl.$.voc.,2
+.nt.,vā,vantā,ā,.nt.$.sg.$.abl.,2
+.nt.,vā,vantamhā,amhā,.nt.$.sg.$.abl.,2
+.nt.,vā,vantasmā,asmā,.nt.$.sg.$.abl.,2
+.nt.,vā,vatā,ā,.nt.$.sg.$.abl.,2
+.nt.,vā,vaṃ,vaṃ,.nt.$.sg.$.acc.,2
+.nt.,vā,vantaṃ,aṃ,.nt.$.sg.$.acc.,2
+.nt.,vā,vantassa,assa,.nt.$.sg.$.dat.,2
+.nt.,vā,vato,o,.nt.$.sg.$.dat.,2
+.nt.,vā,vantassa,assa,.nt.$.sg.$.gen.,2
+.nt.,vā,vato,o,.nt.$.sg.$.gen.,2
+.nt.,vā,vatā,ā,.nt.$.sg.$.inst.,2
+.nt.,vā,vatena,ena,.nt.$.sg.$.inst.,2
+.nt.,vā,vantamhi,amhi,.nt.$.sg.$.loc.,2
+.nt.,vā,vantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,2
+.nt.,vā,vante,e,.nt.$.sg.$.loc.,2
+.nt.,vā,vati,i,.nt.$.sg.$.loc.,2
+.nt.,vā,vaṃ,vaṃ,.nt.$.sg.$.nom.,2
+.nt.,vā,vantaṃ,aṃ,.nt.$.sg.$.nom.,2
+.nt.,vā,va,a,.nt.$.sg.$.voc.,2
+.nt.,vā,vā,ā,.nt.$.sg.$.voc.,2
+.nt.,vā,vaṃ,ṃ,.nt.$.sg.$.voc.,2
+.nt.,vā,vanta,a,.nt.$.sg.$.voc.,2
+.nt.,vā,vantā,ā,.nt.$.sg.$.voc.,2
+.f.,vant,vantībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,vant,vantīhi,īhi,.f.$.pl.$.abl.,4
+.f.,vant,vatībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,vant,vatīhi,īhi,.f.$.pl.$.abl.,4
+.f.,vant,vantī,ī,.f.$.pl.$.acc.,4
+.f.,vant,vantiyo,iyo,.f.$.pl.$.acc.,4
+.f.,vant,vatī,ī,.f.$.pl.$.acc.,4
+.f.,vant,vatiyo,iyo,.f.$.pl.$.acc.,4
+.f.,vant,vantīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,vant,vatīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,vant,vantīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,vant,vatīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,vant,vantībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,vant,vantīhi,īhi,.f.$.pl.$.inst.,4
+.f.,vant,vatībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,vant,vatīhi,īhi,.f.$.pl.$.inst.,4
+.f.,vant,vantīsu,īsu,.f.$.pl.$.loc.,4
+.f.,vant,vatīsu,īsu,.f.$.pl.$.loc.,4
+.f.,vant,vantī,ī,.f.$.pl.$.nom.,4
+.f.,vant,vantiyo,iyo,.f.$.pl.$.nom.,4
+.f.,vant,vatī,ī,.f.$.pl.$.nom.,4
+.f.,vant,vatiyo,iyo,.f.$.pl.$.nom.,4
+.f.,vant,vantī,ī,.f.$.pl.$.voc.,4
+.f.,vant,vantiyo,iyo,.f.$.pl.$.voc.,4
+.f.,vant,vatī,ī,.f.$.pl.$.voc.,4
+.f.,vant,vatiyo,iyo,.f.$.pl.$.voc.,4
+.f.,vant,vantiyā,iyā,.f.$.sg.$.abl.,4
+.f.,vant,vatiyā,iyā,.f.$.sg.$.abl.,4
+.f.,vant,vantiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,vant,vatiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,vant,vantiyā,iyā,.f.$.sg.$.dat.,4
+.f.,vant,vatiyā,iyā,.f.$.sg.$.dat.,4
+.f.,vant,vantiyā,iyā,.f.$.sg.$.gen.,4
+.f.,vant,vatiyā,iyā,.f.$.sg.$.gen.,4
+.f.,vant,vantiyā,iyā,.f.$.sg.$.inst.,4
+.f.,vant,vatiyā,iyā,.f.$.sg.$.inst.,4
+.f.,vant,vantiyā,iyā,.f.$.sg.$.loc.,4
+.f.,vant,vantiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,vant,vatiyā,iyā,.f.$.sg.$.loc.,4
+.f.,vant,vatiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,vant,vantī,ī,.f.$.sg.$.nom.,4
+.f.,vant,vatī,ī,.f.$.sg.$.nom.,4
+.f.,vant,vantī,ī,.f.$.sg.$.voc.,4
+.f.,vant,vatī,ī,.f.$.sg.$.voc.,4
+.m.,vant,vantebhi,ebhi,.m.$.pl.$.abl.,4
+.m.,vant,vantehi,ehi,.m.$.pl.$.abl.,4
+.m.,vant,vante,e,.m.$.pl.$.acc.,4
+.m.,vant,vantānaṃ,naṃ,.m.$.pl.$.dat.,4
+.m.,vant,vataṃ,ṃ,.m.$.pl.$.dat.,4
+.m.,vant,vantānaṃ,naṃ,.m.$.pl.$.gen.,4
+.m.,vant,vataṃ,ṃ,.m.$.pl.$.gen.,4
+.m.,vant,vantebhi,ebhi,.m.$.pl.$.inst.,4
+.m.,vant,vantehi,ehi,.m.$.pl.$.inst.,4
+.m.,vant,vantesu,esu,.m.$.pl.$.loc.,4
+.m.,vant,vā,ā,.m.$.pl.$.nom.,4
+.m.,vant,vantā,ā,.m.$.pl.$.nom.,4
+.m.,vant,vanto,o,.m.$.pl.$.nom.,4
+.m.,vant,vā,ā,.m.$.pl.$.voc.,4
+.m.,vant,vantā,ā,.m.$.pl.$.voc.,4
+.m.,vant,vanto,o,.m.$.pl.$.voc.,4
+.m.,vant,vantā,ā,.m.$.sg.$.abl.,4
+.m.,vant,vantamhā,mhā,.m.$.sg.$.abl.,4
+.m.,vant,vantasmā,smā,.m.$.sg.$.abl.,4
+.m.,vant,vatā,ā,.m.$.sg.$.abl.,4
+.m.,vant,vaṃ,ṃ,.m.$.sg.$.acc.,4
+.m.,vant,vantaṃ,ṃ,.m.$.sg.$.acc.,4
+.m.,vant,vantassa,ssa,.m.$.sg.$.dat.,4
+.m.,vant,vato,o,.m.$.sg.$.dat.,4
+.m.,vant,vantassa,ssa,.m.$.sg.$.gen.,4
+.m.,vant,vato,o,.m.$.sg.$.gen.,4
+.m.,vant,vatā,ā,.m.$.sg.$.inst.,4
+.m.,vant,vatena,ena,.m.$.sg.$.inst.,4
+.m.,vant,vantamhi,mhi,.m.$.sg.$.loc.,4
+.m.,vant,vantasmiṃ,smiṃ,.m.$.sg.$.loc.,4
+.m.,vant,vante,e,.m.$.sg.$.loc.,4
+.m.,vant,vati,i,.m.$.sg.$.loc.,4
+.m.,vant,vā,ā,.m.$.sg.$.nom.,4
+.m.,vant,vanto,o,.m.$.sg.$.nom.,4
+.m.,vant,va,a,.m.$.sg.$.voc.,4
+.m.,vant,vā,ā,.m.$.sg.$.voc.,4
+.m.,vant,vaṃ,ṃ,.m.$.sg.$.voc.,4
+.m.,vant,vanta,a,.m.$.sg.$.voc.,4
+.m.,vant,vantā,ā,.m.$.sg.$.voc.,4
+.nt.,vant,vantebhi,ebhi,.nt.$.pl.$.abl.,4
+.nt.,vant,vantehi,ehi,.nt.$.pl.$.abl.,4
+.nt.,vant,vante,e,.nt.$.pl.$.acc.,4
+.nt.,vant,vantānaṃ,ānaṃ,.nt.$.pl.$.dat.,4
+.nt.,vant,vataṃ,aṃ,.nt.$.pl.$.dat.,4
+.nt.,vant,vantānaṃ,ānaṃ,.nt.$.pl.$.gen.,4
+.nt.,vant,vataṃ,aṃ,.nt.$.pl.$.gen.,4
+.nt.,vant,vantebhi,ebhi,.nt.$.pl.$.inst.,4
+.nt.,vant,vantehi,ehi,.nt.$.pl.$.inst.,4
+.nt.,vant,vantesu,esu,.nt.$.pl.$.loc.,4
+.nt.,vant,vā,vā,.nt.$.pl.$.nom.,4
+.nt.,vant,vantā,ā,.nt.$.pl.$.nom.,4
+.nt.,vant,vanto,o,.nt.$.pl.$.nom.,4
+.nt.,vant,vā,vā,.nt.$.pl.$.voc.,4
+.nt.,vant,vantā,ā,.nt.$.pl.$.voc.,4
+.nt.,vant,vanto,o,.nt.$.pl.$.voc.,4
+.nt.,vant,vantā,ā,.nt.$.sg.$.abl.,4
+.nt.,vant,vantamhā,amhā,.nt.$.sg.$.abl.,4
+.nt.,vant,vantasmā,asmā,.nt.$.sg.$.abl.,4
+.nt.,vant,vatā,ā,.nt.$.sg.$.abl.,4
+.nt.,vant,vaṃ,vaṃ,.nt.$.sg.$.acc.,4
+.nt.,vant,vantaṃ,aṃ,.nt.$.sg.$.acc.,4
+.nt.,vant,vantassa,assa,.nt.$.sg.$.dat.,4
+.nt.,vant,vato,o,.nt.$.sg.$.dat.,4
+.nt.,vant,vantassa,assa,.nt.$.sg.$.gen.,4
+.nt.,vant,vato,o,.nt.$.sg.$.gen.,4
+.nt.,vant,vatā,ā,.nt.$.sg.$.inst.,4
+.nt.,vant,vatena,ena,.nt.$.sg.$.inst.,4
+.nt.,vant,vantamhi,amhi,.nt.$.sg.$.loc.,4
+.nt.,vant,vantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,4
+.nt.,vant,vante,e,.nt.$.sg.$.loc.,4
+.nt.,vant,vati,i,.nt.$.sg.$.loc.,4
+.nt.,vant,vaṃ,vaṃ,.nt.$.sg.$.nom.,4
+.nt.,vant,vantaṃ,aṃ,.nt.$.sg.$.nom.,4
+.nt.,vant,va,a,.nt.$.sg.$.voc.,4
+.nt.,vant,vā,ā,.nt.$.sg.$.voc.,4
+.nt.,vant,vaṃ,ṃ,.nt.$.sg.$.voc.,4
+.nt.,vant,vanta,a,.nt.$.sg.$.voc.,4
+.nt.,vant,vantā,ā,.nt.$.sg.$.voc.,4
+.f.,vanta,vantībhi,ībhi,.f.$.pl.$.abl.,5
+.f.,vanta,vantīhi,īhi,.f.$.pl.$.abl.,5
+.f.,vanta,vatībhi,ībhi,.f.$.pl.$.abl.,5
+.f.,vanta,vatīhi,īhi,.f.$.pl.$.abl.,5
+.f.,vanta,vantī,ī,.f.$.pl.$.acc.,5
+.f.,vanta,vantiyo,iyo,.f.$.pl.$.acc.,5
+.f.,vanta,vatī,ī,.f.$.pl.$.acc.,5
+.f.,vanta,vatiyo,iyo,.f.$.pl.$.acc.,5
+.f.,vanta,vantīnaṃ,īnaṃ,.f.$.pl.$.dat.,5
+.f.,vanta,vatīnaṃ,īnaṃ,.f.$.pl.$.dat.,5
+.f.,vanta,vantīnaṃ,īnaṃ,.f.$.pl.$.gen.,5
+.f.,vanta,vatīnaṃ,īnaṃ,.f.$.pl.$.gen.,5
+.f.,vanta,vantībhi,ībhi,.f.$.pl.$.inst.,5
+.f.,vanta,vantīhi,īhi,.f.$.pl.$.inst.,5
+.f.,vanta,vatībhi,ībhi,.f.$.pl.$.inst.,5
+.f.,vanta,vatīhi,īhi,.f.$.pl.$.inst.,5
+.f.,vanta,vantīsu,īsu,.f.$.pl.$.loc.,5
+.f.,vanta,vatīsu,īsu,.f.$.pl.$.loc.,5
+.f.,vanta,vantī,ī,.f.$.pl.$.nom.,5
+.f.,vanta,vantiyo,iyo,.f.$.pl.$.nom.,5
+.f.,vanta,vatī,ī,.f.$.pl.$.nom.,5
+.f.,vanta,vatiyo,iyo,.f.$.pl.$.nom.,5
+.f.,vanta,vantī,ī,.f.$.pl.$.voc.,5
+.f.,vanta,vantiyo,iyo,.f.$.pl.$.voc.,5
+.f.,vanta,vatī,ī,.f.$.pl.$.voc.,5
+.f.,vanta,vatiyo,iyo,.f.$.pl.$.voc.,5
+.f.,vanta,vantiyā,iyā,.f.$.sg.$.abl.,5
+.f.,vanta,vatiyā,iyā,.f.$.sg.$.abl.,5
+.f.,vanta,vantiṃ,iṃ,.f.$.sg.$.acc.,5
+.f.,vanta,vatiṃ,iṃ,.f.$.sg.$.acc.,5
+.f.,vanta,vantiyā,iyā,.f.$.sg.$.dat.,5
+.f.,vanta,vatiyā,iyā,.f.$.sg.$.dat.,5
+.f.,vanta,vantiyā,iyā,.f.$.sg.$.gen.,5
+.f.,vanta,vatiyā,iyā,.f.$.sg.$.gen.,5
+.f.,vanta,vantiyā,iyā,.f.$.sg.$.inst.,5
+.f.,vanta,vatiyā,iyā,.f.$.sg.$.inst.,5
+.f.,vanta,vantiyā,iyā,.f.$.sg.$.loc.,5
+.f.,vanta,vantiyaṃ,iyaṃ,.f.$.sg.$.loc.,5
+.f.,vanta,vatiyā,iyā,.f.$.sg.$.loc.,5
+.f.,vanta,vatiyaṃ,iyaṃ,.f.$.sg.$.loc.,5
+.f.,vanta,vantī,ī,.f.$.sg.$.nom.,5
+.f.,vanta,vatī,ī,.f.$.sg.$.nom.,5
+.f.,vanta,vantī,ī,.f.$.sg.$.voc.,5
+.f.,vanta,vatī,ī,.f.$.sg.$.voc.,5
+.m.,vanta,vantebhi,ebhi,.m.$.pl.$.abl.,5
+.m.,vanta,vantehi,ehi,.m.$.pl.$.abl.,5
+.m.,vanta,vante,e,.m.$.pl.$.acc.,5
+.m.,vanta,vantānaṃ,naṃ,.m.$.pl.$.dat.,5
+.m.,vanta,vataṃ,ṃ,.m.$.pl.$.dat.,5
+.m.,vanta,vantānaṃ,naṃ,.m.$.pl.$.gen.,5
+.m.,vanta,vataṃ,ṃ,.m.$.pl.$.gen.,5
+.m.,vanta,vantebhi,ebhi,.m.$.pl.$.inst.,5
+.m.,vanta,vantehi,ehi,.m.$.pl.$.inst.,5
+.m.,vanta,vantesu,esu,.m.$.pl.$.loc.,5
+.m.,vanta,vā,ā,.m.$.pl.$.nom.,5
+.m.,vanta,vantā,ā,.m.$.pl.$.nom.,5
+.m.,vanta,vanto,o,.m.$.pl.$.nom.,5
+.m.,vanta,vā,ā,.m.$.pl.$.voc.,5
+.m.,vanta,vantā,ā,.m.$.pl.$.voc.,5
+.m.,vanta,vanto,o,.m.$.pl.$.voc.,5
+.m.,vanta,vantā,ā,.m.$.sg.$.abl.,5
+.m.,vanta,vantamhā,mhā,.m.$.sg.$.abl.,5
+.m.,vanta,vantasmā,smā,.m.$.sg.$.abl.,5
+.m.,vanta,vatā,ā,.m.$.sg.$.abl.,5
+.m.,vanta,vaṃ,ṃ,.m.$.sg.$.acc.,5
+.m.,vanta,vantaṃ,ṃ,.m.$.sg.$.acc.,5
+.m.,vanta,vantassa,ssa,.m.$.sg.$.dat.,5
+.m.,vanta,vato,o,.m.$.sg.$.dat.,5
+.m.,vanta,vantassa,ssa,.m.$.sg.$.gen.,5
+.m.,vanta,vato,o,.m.$.sg.$.gen.,5
+.m.,vanta,vatā,ā,.m.$.sg.$.inst.,5
+.m.,vanta,vatena,ena,.m.$.sg.$.inst.,5
+.m.,vanta,vantamhi,mhi,.m.$.sg.$.loc.,5
+.m.,vanta,vantasmiṃ,smiṃ,.m.$.sg.$.loc.,5
+.m.,vanta,vante,e,.m.$.sg.$.loc.,5
+.m.,vanta,vati,i,.m.$.sg.$.loc.,5
+.m.,vanta,vā,ā,.m.$.sg.$.nom.,5
+.m.,vanta,vanto,o,.m.$.sg.$.nom.,5
+.m.,vanta,va,a,.m.$.sg.$.voc.,5
+.m.,vanta,vā,ā,.m.$.sg.$.voc.,5
+.m.,vanta,vaṃ,ṃ,.m.$.sg.$.voc.,5
+.m.,vanta,vanta,a,.m.$.sg.$.voc.,5
+.m.,vanta,vantā,ā,.m.$.sg.$.voc.,5
+.nt.,vanta,vantebhi,ebhi,.nt.$.pl.$.abl.,5
+.nt.,vanta,vantehi,ehi,.nt.$.pl.$.abl.,5
+.nt.,vanta,vante,e,.nt.$.pl.$.acc.,5
+.nt.,vanta,vantānaṃ,ānaṃ,.nt.$.pl.$.dat.,5
+.nt.,vanta,vataṃ,aṃ,.nt.$.pl.$.dat.,5
+.nt.,vanta,vantānaṃ,ānaṃ,.nt.$.pl.$.gen.,5
+.nt.,vanta,vataṃ,aṃ,.nt.$.pl.$.gen.,5
+.nt.,vanta,vantebhi,ebhi,.nt.$.pl.$.inst.,5
+.nt.,vanta,vantehi,ehi,.nt.$.pl.$.inst.,5
+.nt.,vanta,vantesu,esu,.nt.$.pl.$.loc.,5
+.nt.,vanta,vā,vā,.nt.$.pl.$.nom.,5
+.nt.,vanta,vantā,ā,.nt.$.pl.$.nom.,5
+.nt.,vanta,vanto,o,.nt.$.pl.$.nom.,5
+.nt.,vanta,vā,vā,.nt.$.pl.$.voc.,5
+.nt.,vanta,vantā,ā,.nt.$.pl.$.voc.,5
+.nt.,vanta,vanto,o,.nt.$.pl.$.voc.,5
+.nt.,vanta,vantā,ā,.nt.$.sg.$.abl.,5
+.nt.,vanta,vantamhā,amhā,.nt.$.sg.$.abl.,5
+.nt.,vanta,vantasmā,asmā,.nt.$.sg.$.abl.,5
+.nt.,vanta,vatā,ā,.nt.$.sg.$.abl.,5
+.nt.,vanta,vaṃ,vaṃ,.nt.$.sg.$.acc.,5
+.nt.,vanta,vantaṃ,aṃ,.nt.$.sg.$.acc.,5
+.nt.,vanta,vantassa,assa,.nt.$.sg.$.dat.,5
+.nt.,vanta,vato,o,.nt.$.sg.$.dat.,5
+.nt.,vanta,vantassa,assa,.nt.$.sg.$.gen.,5
+.nt.,vanta,vato,o,.nt.$.sg.$.gen.,5
+.nt.,vanta,vatā,ā,.nt.$.sg.$.inst.,5
+.nt.,vanta,vatena,ena,.nt.$.sg.$.inst.,5
+.nt.,vanta,vantamhi,amhi,.nt.$.sg.$.loc.,5
+.nt.,vanta,vantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,5
+.nt.,vanta,vante,e,.nt.$.sg.$.loc.,5
+.nt.,vanta,vati,i,.nt.$.sg.$.loc.,5
+.nt.,vanta,vaṃ,vaṃ,.nt.$.sg.$.nom.,5
+.nt.,vanta,vantaṃ,aṃ,.nt.$.sg.$.nom.,5
+.nt.,vanta,va,a,.nt.$.sg.$.voc.,5
+.nt.,vanta,vā,ā,.nt.$.sg.$.voc.,5
+.nt.,vanta,vaṃ,ṃ,.nt.$.sg.$.voc.,5
+.nt.,vanta,vanta,a,.nt.$.sg.$.voc.,5
+.nt.,vanta,vantā,ā,.nt.$.sg.$.voc.,5
+.f.,vat,vantībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,vat,vantīhi,īhi,.f.$.pl.$.abl.,3
+.f.,vat,vatībhi,ībhi,.f.$.pl.$.abl.,3
+.f.,vat,vatīhi,īhi,.f.$.pl.$.abl.,3
+.f.,vat,vantī,ī,.f.$.pl.$.acc.,3
+.f.,vat,vantiyo,iyo,.f.$.pl.$.acc.,3
+.f.,vat,vatī,ī,.f.$.pl.$.acc.,3
+.f.,vat,vatiyo,iyo,.f.$.pl.$.acc.,3
+.f.,vat,vantīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,vat,vatīnaṃ,īnaṃ,.f.$.pl.$.dat.,3
+.f.,vat,vantīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,vat,vatīnaṃ,īnaṃ,.f.$.pl.$.gen.,3
+.f.,vat,vantībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,vat,vantīhi,īhi,.f.$.pl.$.inst.,3
+.f.,vat,vatībhi,ībhi,.f.$.pl.$.inst.,3
+.f.,vat,vatīhi,īhi,.f.$.pl.$.inst.,3
+.f.,vat,vantīsu,īsu,.f.$.pl.$.loc.,3
+.f.,vat,vatīsu,īsu,.f.$.pl.$.loc.,3
+.f.,vat,vantī,ī,.f.$.pl.$.nom.,3
+.f.,vat,vantiyo,iyo,.f.$.pl.$.nom.,3
+.f.,vat,vatī,ī,.f.$.pl.$.nom.,3
+.f.,vat,vatiyo,iyo,.f.$.pl.$.nom.,3
+.f.,vat,vantī,ī,.f.$.pl.$.voc.,3
+.f.,vat,vantiyo,iyo,.f.$.pl.$.voc.,3
+.f.,vat,vatī,ī,.f.$.pl.$.voc.,3
+.f.,vat,vatiyo,iyo,.f.$.pl.$.voc.,3
+.f.,vat,vantiyā,iyā,.f.$.sg.$.abl.,3
+.f.,vat,vatiyā,iyā,.f.$.sg.$.abl.,3
+.f.,vat,vantiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,vat,vatiṃ,iṃ,.f.$.sg.$.acc.,3
+.f.,vat,vantiyā,iyā,.f.$.sg.$.dat.,3
+.f.,vat,vatiyā,iyā,.f.$.sg.$.dat.,3
+.f.,vat,vantiyā,iyā,.f.$.sg.$.gen.,3
+.f.,vat,vatiyā,iyā,.f.$.sg.$.gen.,3
+.f.,vat,vantiyā,iyā,.f.$.sg.$.inst.,3
+.f.,vat,vatiyā,iyā,.f.$.sg.$.inst.,3
+.f.,vat,vantiyā,iyā,.f.$.sg.$.loc.,3
+.f.,vat,vantiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,vat,vatiyā,iyā,.f.$.sg.$.loc.,3
+.f.,vat,vatiyaṃ,iyaṃ,.f.$.sg.$.loc.,3
+.f.,vat,vantī,ī,.f.$.sg.$.nom.,3
+.f.,vat,vatī,ī,.f.$.sg.$.nom.,3
+.f.,vat,vantī,ī,.f.$.sg.$.voc.,3
+.f.,vat,vatī,ī,.f.$.sg.$.voc.,3
+.m.,vat,vantebhi,ebhi,.m.$.pl.$.abl.,3
+.m.,vat,vantehi,ehi,.m.$.pl.$.abl.,3
+.m.,vat,vante,e,.m.$.pl.$.acc.,3
+.m.,vat,vantānaṃ,naṃ,.m.$.pl.$.dat.,3
+.m.,vat,vataṃ,ṃ,.m.$.pl.$.dat.,3
+.m.,vat,vantānaṃ,naṃ,.m.$.pl.$.gen.,3
+.m.,vat,vataṃ,ṃ,.m.$.pl.$.gen.,3
+.m.,vat,vantebhi,ebhi,.m.$.pl.$.inst.,3
+.m.,vat,vantehi,ehi,.m.$.pl.$.inst.,3
+.m.,vat,vantesu,esu,.m.$.pl.$.loc.,3
+.m.,vat,vā,ā,.m.$.pl.$.nom.,3
+.m.,vat,vantā,ā,.m.$.pl.$.nom.,3
+.m.,vat,vanto,o,.m.$.pl.$.nom.,3
+.m.,vat,vā,ā,.m.$.pl.$.voc.,3
+.m.,vat,vantā,ā,.m.$.pl.$.voc.,3
+.m.,vat,vanto,o,.m.$.pl.$.voc.,3
+.m.,vat,vantā,ā,.m.$.sg.$.abl.,3
+.m.,vat,vantamhā,mhā,.m.$.sg.$.abl.,3
+.m.,vat,vantasmā,smā,.m.$.sg.$.abl.,3
+.m.,vat,vatā,ā,.m.$.sg.$.abl.,3
+.m.,vat,vaṃ,ṃ,.m.$.sg.$.acc.,3
+.m.,vat,vantaṃ,ṃ,.m.$.sg.$.acc.,3
+.m.,vat,vantassa,ssa,.m.$.sg.$.dat.,3
+.m.,vat,vato,o,.m.$.sg.$.dat.,3
+.m.,vat,vantassa,ssa,.m.$.sg.$.gen.,3
+.m.,vat,vato,o,.m.$.sg.$.gen.,3
+.m.,vat,vatā,ā,.m.$.sg.$.inst.,3
+.m.,vat,vatena,ena,.m.$.sg.$.inst.,3
+.m.,vat,vantamhi,mhi,.m.$.sg.$.loc.,3
+.m.,vat,vantasmiṃ,smiṃ,.m.$.sg.$.loc.,3
+.m.,vat,vante,e,.m.$.sg.$.loc.,3
+.m.,vat,vati,i,.m.$.sg.$.loc.,3
+.m.,vat,vā,ā,.m.$.sg.$.nom.,3
+.m.,vat,vanto,o,.m.$.sg.$.nom.,3
+.m.,vat,va,a,.m.$.sg.$.voc.,3
+.m.,vat,vā,ā,.m.$.sg.$.voc.,3
+.m.,vat,vaṃ,ṃ,.m.$.sg.$.voc.,3
+.m.,vat,vanta,a,.m.$.sg.$.voc.,3
+.m.,vat,vantā,ā,.m.$.sg.$.voc.,3
+.nt.,vat,vantebhi,ebhi,.nt.$.pl.$.abl.,3
+.nt.,vat,vantehi,ehi,.nt.$.pl.$.abl.,3
+.nt.,vat,vante,e,.nt.$.pl.$.acc.,3
+.nt.,vat,vantānaṃ,ānaṃ,.nt.$.pl.$.dat.,3
+.nt.,vat,vataṃ,aṃ,.nt.$.pl.$.dat.,3
+.nt.,vat,vantānaṃ,ānaṃ,.nt.$.pl.$.gen.,3
+.nt.,vat,vataṃ,aṃ,.nt.$.pl.$.gen.,3
+.nt.,vat,vantebhi,ebhi,.nt.$.pl.$.inst.,3
+.nt.,vat,vantehi,ehi,.nt.$.pl.$.inst.,3
+.nt.,vat,vantesu,esu,.nt.$.pl.$.loc.,3
+.nt.,vat,vā,vā,.nt.$.pl.$.nom.,3
+.nt.,vat,vantā,ā,.nt.$.pl.$.nom.,3
+.nt.,vat,vanto,o,.nt.$.pl.$.nom.,3
+.nt.,vat,vā,vā,.nt.$.pl.$.voc.,3
+.nt.,vat,vantā,ā,.nt.$.pl.$.voc.,3
+.nt.,vat,vanto,o,.nt.$.pl.$.voc.,3
+.nt.,vat,vantā,ā,.nt.$.sg.$.abl.,3
+.nt.,vat,vantamhā,amhā,.nt.$.sg.$.abl.,3
+.nt.,vat,vantasmā,asmā,.nt.$.sg.$.abl.,3
+.nt.,vat,vatā,ā,.nt.$.sg.$.abl.,3
+.nt.,vat,vaṃ,vaṃ,.nt.$.sg.$.acc.,3
+.nt.,vat,vantaṃ,aṃ,.nt.$.sg.$.acc.,3
+.nt.,vat,vantassa,assa,.nt.$.sg.$.dat.,3
+.nt.,vat,vato,o,.nt.$.sg.$.dat.,3
+.nt.,vat,vantassa,assa,.nt.$.sg.$.gen.,3
+.nt.,vat,vato,o,.nt.$.sg.$.gen.,3
+.nt.,vat,vatā,ā,.nt.$.sg.$.inst.,3
+.nt.,vat,vatena,ena,.nt.$.sg.$.inst.,3
+.nt.,vat,vantamhi,amhi,.nt.$.sg.$.loc.,3
+.nt.,vat,vantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,3
+.nt.,vat,vante,e,.nt.$.sg.$.loc.,3
+.nt.,vat,vati,i,.nt.$.sg.$.loc.,3
+.nt.,vat,vaṃ,vaṃ,.nt.$.sg.$.nom.,3
+.nt.,vat,vantaṃ,aṃ,.nt.$.sg.$.nom.,3
+.nt.,vat,va,a,.nt.$.sg.$.voc.,3
+.nt.,vat,vā,ā,.nt.$.sg.$.voc.,3
+.nt.,vat,vaṃ,ṃ,.nt.$.sg.$.voc.,3
+.nt.,vat,vanta,a,.nt.$.sg.$.voc.,3
+.nt.,vat,vantā,ā,.nt.$.sg.$.voc.,3
+.f.,vata,vantībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,vata,vantīhi,īhi,.f.$.pl.$.abl.,4
+.f.,vata,vatībhi,ībhi,.f.$.pl.$.abl.,4
+.f.,vata,vatīhi,īhi,.f.$.pl.$.abl.,4
+.f.,vata,vantī,ī,.f.$.pl.$.acc.,4
+.f.,vata,vantiyo,iyo,.f.$.pl.$.acc.,4
+.f.,vata,vatī,ī,.f.$.pl.$.acc.,4
+.f.,vata,vatiyo,iyo,.f.$.pl.$.acc.,4
+.f.,vata,vantīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,vata,vatīnaṃ,īnaṃ,.f.$.pl.$.dat.,4
+.f.,vata,vantīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,vata,vatīnaṃ,īnaṃ,.f.$.pl.$.gen.,4
+.f.,vata,vantībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,vata,vantīhi,īhi,.f.$.pl.$.inst.,4
+.f.,vata,vatībhi,ībhi,.f.$.pl.$.inst.,4
+.f.,vata,vatīhi,īhi,.f.$.pl.$.inst.,4
+.f.,vata,vantīsu,īsu,.f.$.pl.$.loc.,4
+.f.,vata,vatīsu,īsu,.f.$.pl.$.loc.,4
+.f.,vata,vantī,ī,.f.$.pl.$.nom.,4
+.f.,vata,vantiyo,iyo,.f.$.pl.$.nom.,4
+.f.,vata,vatī,ī,.f.$.pl.$.nom.,4
+.f.,vata,vatiyo,iyo,.f.$.pl.$.nom.,4
+.f.,vata,vantī,ī,.f.$.pl.$.voc.,4
+.f.,vata,vantiyo,iyo,.f.$.pl.$.voc.,4
+.f.,vata,vatī,ī,.f.$.pl.$.voc.,4
+.f.,vata,vatiyo,iyo,.f.$.pl.$.voc.,4
+.f.,vata,vantiyā,iyā,.f.$.sg.$.abl.,4
+.f.,vata,vatiyā,iyā,.f.$.sg.$.abl.,4
+.f.,vata,vantiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,vata,vatiṃ,iṃ,.f.$.sg.$.acc.,4
+.f.,vata,vantiyā,iyā,.f.$.sg.$.dat.,4
+.f.,vata,vatiyā,iyā,.f.$.sg.$.dat.,4
+.f.,vata,vantiyā,iyā,.f.$.sg.$.gen.,4
+.f.,vata,vatiyā,iyā,.f.$.sg.$.gen.,4
+.f.,vata,vantiyā,iyā,.f.$.sg.$.inst.,4
+.f.,vata,vatiyā,iyā,.f.$.sg.$.inst.,4
+.f.,vata,vantiyā,iyā,.f.$.sg.$.loc.,4
+.f.,vata,vantiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,vata,vatiyā,iyā,.f.$.sg.$.loc.,4
+.f.,vata,vatiyaṃ,iyaṃ,.f.$.sg.$.loc.,4
+.f.,vata,vantī,ī,.f.$.sg.$.nom.,4
+.f.,vata,vatī,ī,.f.$.sg.$.nom.,4
+.f.,vata,vantī,ī,.f.$.sg.$.voc.,4
+.f.,vata,vatī,ī,.f.$.sg.$.voc.,4
+.m.,vata,vantebhi,ebhi,.m.$.pl.$.abl.,4
+.m.,vata,vantehi,ehi,.m.$.pl.$.abl.,4
+.m.,vata,vante,e,.m.$.pl.$.acc.,4
+.m.,vata,vantānaṃ,naṃ,.m.$.pl.$.dat.,4
+.m.,vata,vataṃ,ṃ,.m.$.pl.$.dat.,4
+.m.,vata,vantānaṃ,naṃ,.m.$.pl.$.gen.,4
+.m.,vata,vataṃ,ṃ,.m.$.pl.$.gen.,4
+.m.,vata,vantebhi,ebhi,.m.$.pl.$.inst.,4
+.m.,vata,vantehi,ehi,.m.$.pl.$.inst.,4
+.m.,vata,vantesu,esu,.m.$.pl.$.loc.,4
+.m.,vata,vā,ā,.m.$.pl.$.nom.,4
+.m.,vata,vantā,ā,.m.$.pl.$.nom.,4
+.m.,vata,vanto,o,.m.$.pl.$.nom.,4
+.m.,vata,vā,ā,.m.$.pl.$.voc.,4
+.m.,vata,vantā,ā,.m.$.pl.$.voc.,4
+.m.,vata,vanto,o,.m.$.pl.$.voc.,4
+.m.,vata,vantā,ā,.m.$.sg.$.abl.,4
+.m.,vata,vantamhā,mhā,.m.$.sg.$.abl.,4
+.m.,vata,vantasmā,smā,.m.$.sg.$.abl.,4
+.m.,vata,vatā,ā,.m.$.sg.$.abl.,4
+.m.,vata,vaṃ,ṃ,.m.$.sg.$.acc.,4
+.m.,vata,vantaṃ,ṃ,.m.$.sg.$.acc.,4
+.m.,vata,vantassa,ssa,.m.$.sg.$.dat.,4
+.m.,vata,vato,o,.m.$.sg.$.dat.,4
+.m.,vata,vantassa,ssa,.m.$.sg.$.gen.,4
+.m.,vata,vato,o,.m.$.sg.$.gen.,4
+.m.,vata,vatā,ā,.m.$.sg.$.inst.,4
+.m.,vata,vatena,ena,.m.$.sg.$.inst.,4
+.m.,vata,vantamhi,mhi,.m.$.sg.$.loc.,4
+.m.,vata,vantasmiṃ,smiṃ,.m.$.sg.$.loc.,4
+.m.,vata,vante,e,.m.$.sg.$.loc.,4
+.m.,vata,vati,i,.m.$.sg.$.loc.,4
+.m.,vata,vā,ā,.m.$.sg.$.nom.,4
+.m.,vata,vanto,o,.m.$.sg.$.nom.,4
+.m.,vata,va,a,.m.$.sg.$.voc.,4
+.m.,vata,vā,ā,.m.$.sg.$.voc.,4
+.m.,vata,vaṃ,ṃ,.m.$.sg.$.voc.,4
+.m.,vata,vanta,a,.m.$.sg.$.voc.,4
+.m.,vata,vantā,ā,.m.$.sg.$.voc.,4
+.nt.,vata,vantebhi,ebhi,.nt.$.pl.$.abl.,4
+.nt.,vata,vantehi,ehi,.nt.$.pl.$.abl.,4
+.nt.,vata,vante,e,.nt.$.pl.$.acc.,4
+.nt.,vata,vantānaṃ,ānaṃ,.nt.$.pl.$.dat.,4
+.nt.,vata,vataṃ,aṃ,.nt.$.pl.$.dat.,4
+.nt.,vata,vantānaṃ,ānaṃ,.nt.$.pl.$.gen.,4
+.nt.,vata,vataṃ,aṃ,.nt.$.pl.$.gen.,4
+.nt.,vata,vantebhi,ebhi,.nt.$.pl.$.inst.,4
+.nt.,vata,vantehi,ehi,.nt.$.pl.$.inst.,4
+.nt.,vata,vantesu,esu,.nt.$.pl.$.loc.,4
+.nt.,vata,vā,vā,.nt.$.pl.$.nom.,4
+.nt.,vata,vantā,ā,.nt.$.pl.$.nom.,4
+.nt.,vata,vanto,o,.nt.$.pl.$.nom.,4
+.nt.,vata,vā,vā,.nt.$.pl.$.voc.,4
+.nt.,vata,vantā,ā,.nt.$.pl.$.voc.,4
+.nt.,vata,vanto,o,.nt.$.pl.$.voc.,4
+.nt.,vata,vantā,ā,.nt.$.sg.$.abl.,4
+.nt.,vata,vantamhā,amhā,.nt.$.sg.$.abl.,4
+.nt.,vata,vantasmā,asmā,.nt.$.sg.$.abl.,4
+.nt.,vata,vatā,ā,.nt.$.sg.$.abl.,4
+.nt.,vata,vaṃ,vaṃ,.nt.$.sg.$.acc.,4
+.nt.,vata,vantaṃ,aṃ,.nt.$.sg.$.acc.,4
+.nt.,vata,vantassa,assa,.nt.$.sg.$.dat.,4
+.nt.,vata,vato,o,.nt.$.sg.$.dat.,4
+.nt.,vata,vantassa,assa,.nt.$.sg.$.gen.,4
+.nt.,vata,vato,o,.nt.$.sg.$.gen.,4
+.nt.,vata,vatā,ā,.nt.$.sg.$.inst.,4
+.nt.,vata,vatena,ena,.nt.$.sg.$.inst.,4
+.nt.,vata,vantamhi,amhi,.nt.$.sg.$.loc.,4
+.nt.,vata,vantasmiṃ,asmiṃ,.nt.$.sg.$.loc.,4
+.nt.,vata,vante,e,.nt.$.sg.$.loc.,4
+.nt.,vata,vati,i,.nt.$.sg.$.loc.,4
+.nt.,vata,vaṃ,vaṃ,.nt.$.sg.$.nom.,4
+.nt.,vata,vantaṃ,aṃ,.nt.$.sg.$.nom.,4
+.nt.,vata,va,a,.nt.$.sg.$.voc.,4
+.nt.,vata,vā,ā,.nt.$.sg.$.voc.,4
+.nt.,vata,vaṃ,ṃ,.nt.$.sg.$.voc.,4
+.nt.,vata,vanta,a,.nt.$.sg.$.voc.,4
+.nt.,vata,vantā,ā,.nt.$.sg.$.voc.,4

+ 3147 - 0
api-v12/app/Tools/ending/ending.csv

@@ -0,0 +1,3147 @@
+remove,add,type,grammar,endlen,cf
+ti,tuṃ,.v:ind.,.inf.,2,0.99
+ati,ituṃ,.v:ind.,.inf.,3,0.99
+ati,itvā,.v:ind.,.abs.,3,0.99
+ati,atvā,.v:ind.,.abs.,3,0.99
+ti,tvā,.v:ind.,.abs.,2,0.99
+ant,antā,.ti.,.m.$.pl.$.nom.,3,0.99
+ant,antā,.ti.,.m.$.pl.$.voc.,3,0.3
+ant,antā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,anta,.ti.,.m.$.sg.$.voc.,3,0.3
+ant,antā,.ti.,.m.$.sg.$.voc.,3,0.3
+ant,anta,.ti.,.nt.$.pl.$.acc.,3,0.99
+ant,antā,.ti.,.nt.$.pl.$.acc.,3,0.99
+ant,anta,.ti.,.nt.$.pl.$.nom.,3,0.99
+ant,antā,.ti.,.nt.$.pl.$.nom.,3,0.99
+ant,anta,.ti.,.nt.$.pl.$.voc.,3,0.3
+ant,antā,.ti.,.nt.$.pl.$.voc.,3,0.3
+ant,antā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,anta,.ti.,.nt.$.sg.$.voc.,3,0.3
+ant,antā,.ti.,.nt.$.sg.$.voc.,3,0.3
+ant,antaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+ant,antaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+ant,antaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+ant,antaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+ant,antaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+ant,antaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+ant,antamhā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,antamhā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,antamhā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,antamhā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,antamhi,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,antamhi,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,antamhi,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,antamhi,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,antānaṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+ant,antānaṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+ant,antānaṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+ant,antānaṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+ant,antānaṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+ant,antānaṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+ant,antani,.ti.,.nt.$.pl.$.acc.,3,0.99
+ant,antāni,.ti.,.nt.$.pl.$.acc.,3,0.99
+ant,antani,.ti.,.nt.$.pl.$.nom.,3,0.99
+ant,antāni,.ti.,.nt.$.pl.$.nom.,3,0.99
+ant,antani,.ti.,.nt.$.pl.$.voc.,3,0.3
+ant,antāni,.ti.,.nt.$.pl.$.voc.,3,0.3
+ant,antasmā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,antasmā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,antasmā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,antasmā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,antasmiṃ,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,antasmiṃ,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,antasmiṃ,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,antasmiṃ,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,antassa,.ti.,.m.$.sg.$.dat.,3,0.99
+ant,antassa,.ti.,.m.$.sg.$.gen.,3,0.99
+ant,antassa,.ti.,.nt.$.sg.$.dat.,3,0.99
+ant,antassa,.ti.,.nt.$.sg.$.gen.,3,0.99
+ant,antassa,.ti.,.m.$.sg.$.dat.,3,0.99
+ant,antassa,.ti.,.m.$.sg.$.gen.,3,0.99
+ant,antassa,.ti.,.nt.$.sg.$.dat.,3,0.99
+ant,antassa,.ti.,.nt.$.sg.$.gen.,3,0.99
+ant,ante,.ti.,.m.$.pl.$.acc.,3,0.99
+ant,ante,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,ante,.ti.,.nt.$.pl.$.acc.,3,0.99
+ant,ante,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,antebhi,.ti.,.m.$.pl.$.abl.,3,0.99
+ant,antebhi,.ti.,.m.$.pl.$.inst.,3,0.99
+ant,antebhi,.ti.,.nt.$.pl.$.abl.,3,0.99
+ant,antebhi,.ti.,.nt.$.pl.$.inst.,3,0.99
+ant,antehi,.ti.,.m.$.pl.$.abl.,3,0.99
+ant,antehi,.ti.,.m.$.pl.$.inst.,3,0.99
+ant,antehi,.ti.,.nt.$.pl.$.abl.,3,0.99
+ant,antehi,.ti.,.nt.$.pl.$.inst.,3,0.99
+ant,antesu,.ti.,.m.$.pl.$.loc.,3,0.99
+ant,antesu,.ti.,.nt.$.pl.$.loc.,3,0.99
+ant,antesu,.ti.,.nt.$.pl.$.loc.,3,0.99
+ant,antī,.ti.,.f.$.pl.$.acc.,3,0.99
+ant,antī,.ti.,.f.$.pl.$.nom.,3,0.99
+ant,antī,.ti.,.f.$.pl.$.voc.,3,0.3
+ant,antī,.ti.,.f.$.sg.$.nom.,3,0.99
+ant,antī,.ti.,.f.$.sg.$.voc.,3,0.3
+ant,antībhi,.ti.,.f.$.pl.$.abl.,3,0.99
+ant,antībhi,.ti.,.f.$.pl.$.inst.,3,0.99
+ant,antīhi,.ti.,.f.$.pl.$.abl.,3,0.99
+ant,antīhi,.ti.,.f.$.pl.$.inst.,3,0.99
+ant,antiṃ,.ti.,.f.$.sg.$.acc.,3,0.99
+ant,antīnaṃ,.ti.,.f.$.pl.$.dat.,3,0.99
+ant,antīnaṃ,.ti.,.f.$.pl.$.gen.,3,0.99
+ant,antīsu,.ti.,.f.$.pl.$.loc.,3,0.99
+ant,antiyā,.ti.,.f.$.sg.$.abl.,3,0.99
+ant,antiyā,.ti.,.f.$.sg.$.dat.,3,0.99
+ant,antiyā,.ti.,.f.$.sg.$.gen.,3,0.99
+ant,antiyā,.ti.,.f.$.sg.$.inst.,3,0.99
+ant,antiyā,.ti.,.f.$.sg.$.loc.,3,0.99
+ant,antiyaṃ,.ti.,.f.$.sg.$.loc.,3,0.99
+ant,antiyo,.ti.,.f.$.pl.$.acc.,3,0.99
+ant,antiyo,.ti.,.f.$.pl.$.nom.,3,0.99
+ant,antiyo,.ti.,.f.$.pl.$.voc.,3,0.3
+ant,anto,.ti.,.m.$.pl.$.nom.,3,0.99
+ant,anto,.ti.,.m.$.pl.$.voc.,3,0.3
+ant,anto,.ti.,.m.$.sg.$.nom.,3,0.99
+ant,anto,.ti.,.nt.$.pl.$.nom.,3,0.99
+ant,anto,.ti.,.nt.$.pl.$.voc.,3,0.3
+ant,anto,.ti.,.nt.$.sg.$.nom.,3,0.99
+ant,atā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,atā,.ti.,.m.$.sg.$.inst.,3,0.99
+ant,atā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,atā,.ti.,.nt.$.sg.$.inst.,3,0.99
+ant,atā,.ti.,.m.$.sg.$.abl.,3,0.99
+ant,atā,.ti.,.m.$.sg.$.inst.,3,0.99
+ant,atā,.ti.,.nt.$.sg.$.abl.,3,0.99
+ant,atā,.ti.,.nt.$.sg.$.inst.,3,0.99
+ant,ataṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+ant,ataṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+ant,ataṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+ant,ataṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+ant,ataṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+ant,ataṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+ant,atena,.ti.,.m.$.sg.$.inst.,3,0.99
+ant,atena,.ti.,.nt.$.sg.$.inst.,3,0.99
+ant,atena,.ti.,.m.$.sg.$.inst.,3,0.99
+ant,atena,.ti.,.nt.$.sg.$.inst.,3,0.99
+ant,atī,.ti.,.f.$.pl.$.acc.,3,0.99
+ant,atī,.ti.,.f.$.pl.$.nom.,3,0.99
+ant,atī,.ti.,.f.$.pl.$.voc.,3,0.3
+ant,atī,.ti.,.f.$.sg.$.nom.,3,0.99
+ant,atī,.ti.,.f.$.sg.$.voc.,3,0.3
+ant,ati,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,ati,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,ati,.ti.,.m.$.sg.$.loc.,3,0.99
+ant,ati,.ti.,.nt.$.sg.$.loc.,3,0.99
+ant,atībhi,.ti.,.f.$.pl.$.abl.,3,0.99
+ant,atībhi,.ti.,.f.$.pl.$.inst.,3,0.99
+ant,atīhi,.ti.,.f.$.pl.$.abl.,3,0.99
+ant,atīhi,.ti.,.f.$.pl.$.inst.,3,0.99
+ant,atiṃ,.ti.,.f.$.sg.$.acc.,3,0.99
+ant,atīnaṃ,.ti.,.f.$.pl.$.dat.,3,0.99
+ant,atīnaṃ,.ti.,.f.$.pl.$.gen.,3,0.99
+ant,atīsu,.ti.,.f.$.pl.$.loc.,3,0.99
+ant,atiyā,.ti.,.f.$.sg.$.abl.,3,0.99
+ant,atiyā,.ti.,.f.$.sg.$.dat.,3,0.99
+ant,atiyā,.ti.,.f.$.sg.$.gen.,3,0.99
+ant,atiyā,.ti.,.f.$.sg.$.inst.,3,0.99
+ant,atiyā,.ti.,.f.$.sg.$.loc.,3,0.99
+ant,atiyaṃ,.ti.,.f.$.sg.$.loc.,3,0.99
+ant,atiyo,.ti.,.f.$.pl.$.acc.,3,0.99
+ant,atiyo,.ti.,.f.$.pl.$.nom.,3,0.99
+ant,atiyo,.ti.,.f.$.pl.$.voc.,3,0.3
+ant,ato,.ti.,.m.$.sg.$.dat.,3,0.99
+ant,ato,.ti.,.m.$.sg.$.gen.,3,0.99
+ant,ato,.ti.,.nt.$.sg.$.dat.,3,0.99
+ant,ato,.ti.,.nt.$.sg.$.gen.,3,0.99
+ant,ato,.ti.,.m.$.sg.$.dat.,3,0.99
+ant,ato,.ti.,.m.$.sg.$.gen.,3,0.99
+ant,ato,.ti.,.nt.$.sg.$.dat.,3,0.99
+ant,ato,.ti.,.nt.$.sg.$.gen.,3,0.99
+anta,antā,.ti.,.m.$.pl.$.nom.,4,0.99
+anta,antā,.ti.,.m.$.pl.$.voc.,4,0.3
+anta,antā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,anta,.ti.,.m.$.sg.$.voc.,4,0.3
+anta,antā,.ti.,.m.$.sg.$.voc.,4,0.3
+anta,anta,.ti.,.nt.$.pl.$.acc.,4,0.99
+anta,antā,.ti.,.nt.$.pl.$.acc.,4,0.99
+anta,anta,.ti.,.nt.$.pl.$.nom.,4,0.99
+anta,antā,.ti.,.nt.$.pl.$.nom.,4,0.99
+anta,anta,.ti.,.nt.$.pl.$.voc.,4,0.3
+anta,antā,.ti.,.nt.$.pl.$.voc.,4,0.3
+anta,antā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,anta,.ti.,.nt.$.sg.$.voc.,4,0.3
+anta,antā,.ti.,.nt.$.sg.$.voc.,4,0.3
+anta,antaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+anta,antaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+anta,antaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+anta,antaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+anta,antaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+anta,antaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+anta,antamhā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,antamhā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,antamhā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,antamhā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,antamhi,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,antamhi,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,antamhi,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,antamhi,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,antānaṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+anta,antānaṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+anta,antānaṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+anta,antānaṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+anta,antānaṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+anta,antānaṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+anta,antani,.ti.,.nt.$.pl.$.acc.,4,0.99
+anta,antāni,.ti.,.nt.$.pl.$.acc.,4,0.99
+anta,antani,.ti.,.nt.$.pl.$.nom.,4,0.99
+anta,antāni,.ti.,.nt.$.pl.$.nom.,4,0.99
+anta,antani,.ti.,.nt.$.pl.$.voc.,4,0.3
+anta,antāni,.ti.,.nt.$.pl.$.voc.,4,0.3
+anta,antasmā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,antasmā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,antasmā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,antasmā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,antasmiṃ,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,antasmiṃ,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,antasmiṃ,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,antasmiṃ,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,antassa,.ti.,.m.$.sg.$.dat.,4,0.99
+anta,antassa,.ti.,.m.$.sg.$.gen.,4,0.99
+anta,antassa,.ti.,.nt.$.sg.$.dat.,4,0.99
+anta,antassa,.ti.,.nt.$.sg.$.gen.,4,0.99
+anta,antassa,.ti.,.m.$.sg.$.dat.,4,0.99
+anta,antassa,.ti.,.m.$.sg.$.gen.,4,0.99
+anta,antassa,.ti.,.nt.$.sg.$.dat.,4,0.99
+anta,antassa,.ti.,.nt.$.sg.$.gen.,4,0.99
+anta,ante,.ti.,.m.$.pl.$.acc.,4,0.99
+anta,ante,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,ante,.ti.,.nt.$.pl.$.acc.,4,0.99
+anta,ante,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,antebhi,.ti.,.m.$.pl.$.abl.,4,0.99
+anta,antebhi,.ti.,.m.$.pl.$.inst.,4,0.99
+anta,antebhi,.ti.,.nt.$.pl.$.abl.,4,0.99
+anta,antebhi,.ti.,.nt.$.pl.$.inst.,4,0.99
+anta,antehi,.ti.,.m.$.pl.$.abl.,4,0.99
+anta,antehi,.ti.,.m.$.pl.$.inst.,4,0.99
+anta,antehi,.ti.,.nt.$.pl.$.abl.,4,0.99
+anta,antehi,.ti.,.nt.$.pl.$.inst.,4,0.99
+anta,antesu,.ti.,.m.$.pl.$.loc.,4,0.99
+anta,antesu,.ti.,.nt.$.pl.$.loc.,4,0.99
+anta,antesu,.ti.,.nt.$.pl.$.loc.,4,0.99
+anta,antī,.ti.,.f.$.pl.$.acc.,4,0.99
+anta,antī,.ti.,.f.$.pl.$.nom.,4,0.99
+anta,antī,.ti.,.f.$.pl.$.voc.,4,0.3
+anta,antī,.ti.,.f.$.sg.$.nom.,4,0.99
+anta,antī,.ti.,.f.$.sg.$.voc.,4,0.3
+anta,antībhi,.ti.,.f.$.pl.$.abl.,4,0.99
+anta,antībhi,.ti.,.f.$.pl.$.inst.,4,0.99
+anta,antīhi,.ti.,.f.$.pl.$.abl.,4,0.99
+anta,antīhi,.ti.,.f.$.pl.$.inst.,4,0.99
+anta,antiṃ,.ti.,.f.$.sg.$.acc.,4,0.99
+anta,antīnaṃ,.ti.,.f.$.pl.$.dat.,4,0.99
+anta,antīnaṃ,.ti.,.f.$.pl.$.gen.,4,0.99
+anta,antīsu,.ti.,.f.$.pl.$.loc.,4,0.99
+anta,antiyā,.ti.,.f.$.sg.$.abl.,4,0.99
+anta,antiyā,.ti.,.f.$.sg.$.dat.,4,0.99
+anta,antiyā,.ti.,.f.$.sg.$.gen.,4,0.99
+anta,antiyā,.ti.,.f.$.sg.$.inst.,4,0.99
+anta,antiyā,.ti.,.f.$.sg.$.loc.,4,0.99
+anta,antiyaṃ,.ti.,.f.$.sg.$.loc.,4,0.99
+anta,antiyo,.ti.,.f.$.pl.$.acc.,4,0.99
+anta,antiyo,.ti.,.f.$.pl.$.nom.,4,0.99
+anta,antiyo,.ti.,.f.$.pl.$.voc.,4,0.3
+anta,anto,.ti.,.m.$.pl.$.nom.,4,0.99
+anta,anto,.ti.,.m.$.pl.$.voc.,4,0.3
+anta,anto,.ti.,.m.$.sg.$.nom.,4,0.99
+anta,anto,.ti.,.nt.$.pl.$.nom.,4,0.99
+anta,anto,.ti.,.nt.$.pl.$.voc.,4,0.3
+anta,anto,.ti.,.nt.$.sg.$.nom.,4,0.99
+anta,atā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,atā,.ti.,.m.$.sg.$.inst.,4,0.99
+anta,atā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,atā,.ti.,.nt.$.sg.$.inst.,4,0.99
+anta,atā,.ti.,.m.$.sg.$.abl.,4,0.99
+anta,atā,.ti.,.m.$.sg.$.inst.,4,0.99
+anta,atā,.ti.,.nt.$.sg.$.abl.,4,0.99
+anta,atā,.ti.,.nt.$.sg.$.inst.,4,0.99
+anta,ataṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+anta,ataṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+anta,ataṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+anta,ataṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+anta,ataṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+anta,ataṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+anta,atena,.ti.,.m.$.sg.$.inst.,4,0.99
+anta,atena,.ti.,.nt.$.sg.$.inst.,4,0.99
+anta,atena,.ti.,.m.$.sg.$.inst.,4,0.99
+anta,atena,.ti.,.nt.$.sg.$.inst.,4,0.99
+anta,atī,.ti.,.f.$.pl.$.acc.,4,0.99
+anta,atī,.ti.,.f.$.pl.$.nom.,4,0.99
+anta,atī,.ti.,.f.$.pl.$.voc.,4,0.3
+anta,atī,.ti.,.f.$.sg.$.nom.,4,0.99
+anta,atī,.ti.,.f.$.sg.$.voc.,4,0.3
+anta,ati,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,ati,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,ati,.ti.,.m.$.sg.$.loc.,4,0.99
+anta,ati,.ti.,.nt.$.sg.$.loc.,4,0.99
+anta,atībhi,.ti.,.f.$.pl.$.abl.,4,0.99
+anta,atībhi,.ti.,.f.$.pl.$.inst.,4,0.99
+anta,atīhi,.ti.,.f.$.pl.$.abl.,4,0.99
+anta,atīhi,.ti.,.f.$.pl.$.inst.,4,0.99
+anta,atiṃ,.ti.,.f.$.sg.$.acc.,4,0.99
+anta,atīnaṃ,.ti.,.f.$.pl.$.dat.,4,0.99
+anta,atīnaṃ,.ti.,.f.$.pl.$.gen.,4,0.99
+anta,atīsu,.ti.,.f.$.pl.$.loc.,4,0.99
+anta,atiyā,.ti.,.f.$.sg.$.abl.,4,0.99
+anta,atiyā,.ti.,.f.$.sg.$.dat.,4,0.99
+anta,atiyā,.ti.,.f.$.sg.$.gen.,4,0.99
+anta,atiyā,.ti.,.f.$.sg.$.inst.,4,0.99
+anta,atiyā,.ti.,.f.$.sg.$.loc.,4,0.99
+anta,atiyaṃ,.ti.,.f.$.sg.$.loc.,4,0.99
+anta,atiyo,.ti.,.f.$.pl.$.acc.,4,0.99
+anta,atiyo,.ti.,.f.$.pl.$.nom.,4,0.99
+anta,atiyo,.ti.,.f.$.pl.$.voc.,4,0.3
+anta,ato,.ti.,.m.$.sg.$.dat.,4,0.99
+anta,ato,.ti.,.m.$.sg.$.gen.,4,0.99
+anta,ato,.ti.,.nt.$.sg.$.dat.,4,0.99
+anta,ato,.ti.,.nt.$.sg.$.gen.,4,0.99
+anta,ato,.ti.,.m.$.sg.$.dat.,4,0.99
+anta,ato,.ti.,.m.$.sg.$.gen.,4,0.99
+anta,ato,.ti.,.nt.$.sg.$.dat.,4,0.99
+anta,ato,.ti.,.nt.$.sg.$.gen.,4,0.99
+mant,mā,.ti.,.m.$.pl.$.nom.,4,0.99
+mant,mā,.ti.,.m.$.pl.$.voc.,4,0.3
+mant,mā,.ti.,.m.$.sg.$.nom.,4,0.99
+mant,ma,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,mā,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,mā,.ti.,.nt.$.pl.$.nom.,4,0.99
+mant,mā,.ti.,.nt.$.pl.$.voc.,4,0.3
+mant,ma,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,mā,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,mā,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,mā,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,maṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+mant,maṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+mant,maṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+mant,maṃ,.ti.,.m.$.sg.$.nom.,4,0.99
+mant,maṃ,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,maṃ,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,maṃ,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,maṃ,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,mānaṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+mant,mānaṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+mant,mantā,.ti.,.m.$.pl.$.nom.,4,0.99
+mant,mantā,.ti.,.m.$.pl.$.voc.,4,0.3
+mant,mantā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,manta,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,mantā,.ti.,.m.$.sg.$.voc.,4,0.3
+mant,manta,.ti.,.nt.$.pl.$.acc.,4,0.99
+mant,mantā,.ti.,.nt.$.pl.$.acc.,4,0.99
+mant,manta,.ti.,.nt.$.pl.$.nom.,4,0.99
+mant,mantā,.ti.,.nt.$.pl.$.nom.,4,0.99
+mant,manta,.ti.,.nt.$.pl.$.voc.,4,0.3
+mant,mantā,.ti.,.nt.$.pl.$.voc.,4,0.3
+mant,mantā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,manta,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,mantā,.ti.,.nt.$.sg.$.voc.,4,0.3
+mant,mantaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+mant,mantaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+mant,mantaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+mant,mantaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+mant,mantaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+mant,mantaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+mant,mantamhā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,mantamhā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,mantamhā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,mantamhā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,mantamhi,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mantamhi,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,mantamhi,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mantamhi,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,mantānaṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+mant,mantānaṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+mant,mantānaṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+mant,mantānaṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+mant,mantānaṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+mant,mantānaṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+mant,mantani,.ti.,.nt.$.pl.$.acc.,4,0.99
+mant,mantāni,.ti.,.nt.$.pl.$.acc.,4,0.99
+mant,mantani,.ti.,.nt.$.pl.$.nom.,4,0.99
+mant,mantāni,.ti.,.nt.$.pl.$.nom.,4,0.99
+mant,mantani,.ti.,.nt.$.pl.$.voc.,4,0.3
+mant,mantāni,.ti.,.nt.$.pl.$.voc.,4,0.3
+mant,mantasmā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,mantasmā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,mantasmā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,mantasmā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,mantasmiṃ,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,mantasmiṃ,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,mantassa,.ti.,.m.$.sg.$.dat.,4,0.99
+mant,mantassa,.ti.,.m.$.sg.$.gen.,4,0.99
+mant,mantassa,.ti.,.nt.$.sg.$.dat.,4,0.99
+mant,mantassa,.ti.,.nt.$.sg.$.gen.,4,0.99
+mant,mantassa,.ti.,.m.$.sg.$.dat.,4,0.99
+mant,mantassa,.ti.,.m.$.sg.$.gen.,4,0.99
+mant,mantassa,.ti.,.nt.$.sg.$.dat.,4,0.99
+mant,mantassa,.ti.,.nt.$.sg.$.gen.,4,0.99
+mant,mante,.ti.,.m.$.pl.$.acc.,4,0.99
+mant,mante,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mante,.ti.,.nt.$.pl.$.acc.,4,0.99
+mant,mante,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,mantebhi,.ti.,.m.$.pl.$.abl.,4,0.99
+mant,mantebhi,.ti.,.m.$.pl.$.inst.,4,0.99
+mant,mantebhi,.ti.,.nt.$.pl.$.abl.,4,0.99
+mant,mantebhi,.ti.,.nt.$.pl.$.inst.,4,0.99
+mant,mantehi,.ti.,.m.$.pl.$.abl.,4,0.99
+mant,mantehi,.ti.,.m.$.pl.$.inst.,4,0.99
+mant,mantehi,.ti.,.nt.$.pl.$.abl.,4,0.99
+mant,mantehi,.ti.,.nt.$.pl.$.inst.,4,0.99
+mant,mantesu,.ti.,.m.$.pl.$.loc.,4,0.99
+mant,mantesu,.ti.,.nt.$.pl.$.loc.,4,0.99
+mant,mantesu,.ti.,.nt.$.pl.$.loc.,4,0.99
+mant,mantī,.ti.,.f.$.pl.$.acc.,4,0.99
+mant,mantī,.ti.,.f.$.pl.$.nom.,4,0.99
+mant,mantī,.ti.,.f.$.pl.$.voc.,4,0.3
+mant,mantī,.ti.,.f.$.sg.$.nom.,4,0.99
+mant,mantī,.ti.,.f.$.sg.$.voc.,4,0.3
+mant,mantībhi,.ti.,.f.$.pl.$.abl.,4,0.99
+mant,mantībhi,.ti.,.f.$.pl.$.inst.,4,0.99
+mant,mantīhi,.ti.,.f.$.pl.$.abl.,4,0.99
+mant,mantīhi,.ti.,.f.$.pl.$.inst.,4,0.99
+mant,mantiṃ,.ti.,.f.$.sg.$.acc.,4,0.99
+mant,mantīnaṃ,.ti.,.f.$.pl.$.dat.,4,0.99
+mant,mantīnaṃ,.ti.,.f.$.pl.$.gen.,4,0.99
+mant,mantīsu,.ti.,.f.$.pl.$.loc.,4,0.99
+mant,mantiyā,.ti.,.f.$.sg.$.abl.,4,0.99
+mant,mantiyā,.ti.,.f.$.sg.$.dat.,4,0.99
+mant,mantiyā,.ti.,.f.$.sg.$.gen.,4,0.99
+mant,mantiyā,.ti.,.f.$.sg.$.inst.,4,0.99
+mant,mantiyā,.ti.,.f.$.sg.$.loc.,4,0.99
+mant,mantiyaṃ,.ti.,.f.$.sg.$.loc.,4,0.99
+mant,mantiyo,.ti.,.f.$.pl.$.acc.,4,0.99
+mant,mantiyo,.ti.,.f.$.pl.$.nom.,4,0.99
+mant,mantiyo,.ti.,.f.$.pl.$.voc.,4,0.3
+mant,manto,.ti.,.m.$.pl.$.nom.,4,0.99
+mant,manto,.ti.,.m.$.pl.$.voc.,4,0.3
+mant,manto,.ti.,.m.$.sg.$.nom.,4,0.99
+mant,manto,.ti.,.nt.$.pl.$.nom.,4,0.99
+mant,manto,.ti.,.nt.$.pl.$.voc.,4,0.3
+mant,manto,.ti.,.nt.$.sg.$.nom.,4,0.99
+mant,matā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,matā,.ti.,.m.$.sg.$.inst.,4,0.99
+mant,matā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,matā,.ti.,.nt.$.sg.$.inst.,4,0.99
+mant,matā,.ti.,.m.$.sg.$.abl.,4,0.99
+mant,matā,.ti.,.m.$.sg.$.inst.,4,0.99
+mant,matā,.ti.,.nt.$.sg.$.abl.,4,0.99
+mant,matā,.ti.,.nt.$.sg.$.inst.,4,0.99
+mant,mataṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+mant,mataṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+mant,mataṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+mant,mataṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+mant,mataṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+mant,mataṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+mant,matena,.ti.,.m.$.sg.$.inst.,4,0.99
+mant,matena,.ti.,.nt.$.sg.$.inst.,4,0.99
+mant,matena,.ti.,.m.$.sg.$.inst.,4,0.99
+mant,matena,.ti.,.nt.$.sg.$.inst.,4,0.99
+mant,matī,.ti.,.f.$.pl.$.acc.,4,0.99
+mant,matī,.ti.,.f.$.pl.$.nom.,4,0.99
+mant,matī,.ti.,.f.$.pl.$.voc.,4,0.3
+mant,matī,.ti.,.f.$.sg.$.nom.,4,0.99
+mant,matī,.ti.,.f.$.sg.$.voc.,4,0.3
+mant,mati,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mati,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,mati,.ti.,.m.$.sg.$.loc.,4,0.99
+mant,mati,.ti.,.nt.$.sg.$.loc.,4,0.99
+mant,matībhi,.ti.,.f.$.pl.$.abl.,4,0.99
+mant,matībhi,.ti.,.f.$.pl.$.inst.,4,0.99
+mant,matīhi,.ti.,.f.$.pl.$.abl.,4,0.99
+mant,matīhi,.ti.,.f.$.pl.$.inst.,4,0.99
+mant,matiṃ,.ti.,.f.$.sg.$.acc.,4,0.99
+mant,matīnaṃ,.ti.,.f.$.pl.$.dat.,4,0.99
+mant,matīnaṃ,.ti.,.f.$.pl.$.gen.,4,0.99
+mant,matīsu,.ti.,.f.$.pl.$.loc.,4,0.99
+mant,matiyā,.ti.,.f.$.sg.$.abl.,4,0.99
+mant,matiyā,.ti.,.f.$.sg.$.dat.,4,0.99
+mant,matiyā,.ti.,.f.$.sg.$.gen.,4,0.99
+mant,matiyā,.ti.,.f.$.sg.$.inst.,4,0.99
+mant,matiyā,.ti.,.f.$.sg.$.loc.,4,0.99
+mant,matiyaṃ,.ti.,.f.$.sg.$.loc.,4,0.99
+mant,matiyo,.ti.,.f.$.pl.$.acc.,4,0.99
+mant,matiyo,.ti.,.f.$.pl.$.nom.,4,0.99
+mant,matiyo,.ti.,.f.$.pl.$.voc.,4,0.3
+mant,mato,.ti.,.m.$.sg.$.dat.,4,0.99
+mant,mato,.ti.,.m.$.sg.$.gen.,4,0.99
+mant,mato,.ti.,.nt.$.sg.$.dat.,4,0.99
+mant,mato,.ti.,.nt.$.sg.$.gen.,4,0.99
+mant,mato,.ti.,.m.$.sg.$.dat.,4,0.99
+mant,mato,.ti.,.m.$.sg.$.gen.,4,0.99
+mant,mato,.ti.,.nt.$.sg.$.dat.,4,0.99
+mant,mato,.ti.,.nt.$.sg.$.gen.,4,0.99
+mant,me,.ti.,.m.$.pl.$.acc.,4,0.99
+mant,mebhi,.ti.,.m.$.pl.$.abl.,4,0.99
+mant,mebhi,.ti.,.m.$.pl.$.inst.,4,0.99
+mant,mehi,.ti.,.m.$.pl.$.abl.,4,0.99
+mant,mehi,.ti.,.m.$.pl.$.inst.,4,0.99
+mant,mesu,.ti.,.m.$.pl.$.loc.,4,0.99
+vant,vā,.ti.,.m.$.pl.$.nom.,4,0.99
+vant,vā,.ti.,.m.$.pl.$.voc.,4,0.3
+vant,vā,.ti.,.m.$.sg.$.nom.,4,0.99
+vant,va,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vā,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vā,.ti.,.nt.$.pl.$.nom.,4,0.99
+vant,vā,.ti.,.nt.$.pl.$.voc.,4,0.3
+vant,va,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vā,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vā,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vā,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+vant,vaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+vant,vaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+vant,vaṃ,.ti.,.m.$.sg.$.nom.,4,0.99
+vant,vaṃ,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vaṃ,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vaṃ,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vaṃ,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vānaṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+vant,vānaṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+vant,vantā,.ti.,.m.$.pl.$.nom.,4,0.99
+vant,vantā,.ti.,.m.$.pl.$.voc.,4,0.3
+vant,vantā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vanta,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vantā,.ti.,.m.$.sg.$.voc.,4,0.3
+vant,vanta,.ti.,.nt.$.pl.$.acc.,4,0.99
+vant,vantā,.ti.,.nt.$.pl.$.acc.,4,0.99
+vant,vanta,.ti.,.nt.$.pl.$.nom.,4,0.99
+vant,vantā,.ti.,.nt.$.pl.$.nom.,4,0.99
+vant,vanta,.ti.,.nt.$.pl.$.voc.,4,0.3
+vant,vantā,.ti.,.nt.$.pl.$.voc.,4,0.3
+vant,vantā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vanta,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vantā,.ti.,.nt.$.sg.$.voc.,4,0.3
+vant,vantaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+vant,vantaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+vant,vantaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+vant,vantaṃ,.ti.,.nt.$.sg.$.nom.,4,0.99
+vant,vantaṃ,.ti.,.m.$.sg.$.acc.,4,0.99
+vant,vantaṃ,.ti.,.nt.$.sg.$.acc.,4,0.99
+vant,vantamhā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vantamhā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vantamhā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vantamhā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vantamhi,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vantamhi,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vantamhi,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vantamhi,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vantānaṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+vant,vantānaṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+vant,vantānaṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+vant,vantānaṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+vant,vantānaṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+vant,vantānaṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+vant,vantani,.ti.,.nt.$.pl.$.acc.,4,0.99
+vant,vantāni,.ti.,.nt.$.pl.$.acc.,4,0.99
+vant,vantani,.ti.,.nt.$.pl.$.nom.,4,0.99
+vant,vantāni,.ti.,.nt.$.pl.$.nom.,4,0.99
+vant,vantani,.ti.,.nt.$.pl.$.voc.,4,0.3
+vant,vantāni,.ti.,.nt.$.pl.$.voc.,4,0.3
+vant,vantasmā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vantasmā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vantasmā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vantasmā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vantasmiṃ,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vantasmiṃ,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vantassa,.ti.,.m.$.sg.$.dat.,4,0.99
+vant,vantassa,.ti.,.m.$.sg.$.gen.,4,0.99
+vant,vantassa,.ti.,.nt.$.sg.$.dat.,4,0.99
+vant,vantassa,.ti.,.nt.$.sg.$.gen.,4,0.99
+vant,vantassa,.ti.,.m.$.sg.$.dat.,4,0.99
+vant,vantassa,.ti.,.m.$.sg.$.gen.,4,0.99
+vant,vantassa,.ti.,.nt.$.sg.$.dat.,4,0.99
+vant,vantassa,.ti.,.nt.$.sg.$.gen.,4,0.99
+vant,vante,.ti.,.m.$.pl.$.acc.,4,0.99
+vant,vante,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vante,.ti.,.nt.$.pl.$.acc.,4,0.99
+vant,vante,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vantebhi,.ti.,.m.$.pl.$.abl.,4,0.99
+vant,vantebhi,.ti.,.m.$.pl.$.inst.,4,0.99
+vant,vantebhi,.ti.,.nt.$.pl.$.abl.,4,0.99
+vant,vantebhi,.ti.,.nt.$.pl.$.inst.,4,0.99
+vant,vantehi,.ti.,.m.$.pl.$.abl.,4,0.99
+vant,vantehi,.ti.,.m.$.pl.$.inst.,4,0.99
+vant,vantehi,.ti.,.nt.$.pl.$.abl.,4,0.99
+vant,vantehi,.ti.,.nt.$.pl.$.inst.,4,0.99
+vant,vantesu,.ti.,.m.$.pl.$.loc.,4,0.99
+vant,vantesu,.ti.,.nt.$.pl.$.loc.,4,0.99
+vant,vantesu,.ti.,.nt.$.pl.$.loc.,4,0.99
+vant,vantī,.ti.,.f.$.pl.$.acc.,4,0.99
+vant,vantī,.ti.,.f.$.pl.$.nom.,4,0.99
+vant,vantī,.ti.,.f.$.pl.$.voc.,4,0.3
+vant,vantī,.ti.,.f.$.sg.$.nom.,4,0.99
+vant,vantī,.ti.,.f.$.sg.$.voc.,4,0.3
+vant,vantībhi,.ti.,.f.$.pl.$.abl.,4,0.99
+vant,vantībhi,.ti.,.f.$.pl.$.inst.,4,0.99
+vant,vantīhi,.ti.,.f.$.pl.$.abl.,4,0.99
+vant,vantīhi,.ti.,.f.$.pl.$.inst.,4,0.99
+vant,vantiṃ,.ti.,.f.$.sg.$.acc.,4,0.99
+vant,vantīnaṃ,.ti.,.f.$.pl.$.dat.,4,0.99
+vant,vantīnaṃ,.ti.,.f.$.pl.$.gen.,4,0.99
+vant,vantīsu,.ti.,.f.$.pl.$.loc.,4,0.99
+vant,vantiyā,.ti.,.f.$.sg.$.abl.,4,0.99
+vant,vantiyā,.ti.,.f.$.sg.$.dat.,4,0.99
+vant,vantiyā,.ti.,.f.$.sg.$.gen.,4,0.99
+vant,vantiyā,.ti.,.f.$.sg.$.inst.,4,0.99
+vant,vantiyā,.ti.,.f.$.sg.$.loc.,4,0.99
+vant,vantiyaṃ,.ti.,.f.$.sg.$.loc.,4,0.99
+vant,vantiyo,.ti.,.f.$.pl.$.acc.,4,0.99
+vant,vantiyo,.ti.,.f.$.pl.$.nom.,4,0.99
+vant,vantiyo,.ti.,.f.$.pl.$.voc.,4,0.3
+vant,vanto,.ti.,.m.$.pl.$.nom.,4,0.99
+vant,vanto,.ti.,.m.$.pl.$.voc.,4,0.3
+vant,vanto,.ti.,.m.$.sg.$.nom.,4,0.99
+vant,vanto,.ti.,.nt.$.pl.$.nom.,4,0.99
+vant,vanto,.ti.,.nt.$.pl.$.voc.,4,0.3
+vant,vanto,.ti.,.nt.$.sg.$.nom.,4,0.99
+vant,vatā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vatā,.ti.,.m.$.sg.$.inst.,4,0.99
+vant,vatā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vatā,.ti.,.nt.$.sg.$.inst.,4,0.99
+vant,vatā,.ti.,.m.$.sg.$.abl.,4,0.99
+vant,vatā,.ti.,.m.$.sg.$.inst.,4,0.99
+vant,vatā,.ti.,.nt.$.sg.$.abl.,4,0.99
+vant,vatā,.ti.,.nt.$.sg.$.inst.,4,0.99
+vant,vataṃ,.ti.,.m.$.pl.$.dat.,4,0.99
+vant,vataṃ,.ti.,.m.$.pl.$.gen.,4,0.99
+vant,vataṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+vant,vataṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+vant,vataṃ,.ti.,.nt.$.pl.$.dat.,4,0.99
+vant,vataṃ,.ti.,.nt.$.pl.$.gen.,4,0.99
+vant,vatena,.ti.,.m.$.sg.$.inst.,4,0.99
+vant,vatena,.ti.,.nt.$.sg.$.inst.,4,0.99
+vant,vatena,.ti.,.m.$.sg.$.inst.,4,0.99
+vant,vatena,.ti.,.nt.$.sg.$.inst.,4,0.99
+vant,vatī,.ti.,.f.$.pl.$.acc.,4,0.99
+vant,vatī,.ti.,.f.$.pl.$.nom.,4,0.99
+vant,vatī,.ti.,.f.$.pl.$.voc.,4,0.3
+vant,vatī,.ti.,.f.$.sg.$.nom.,4,0.99
+vant,vatī,.ti.,.f.$.sg.$.voc.,4,0.3
+vant,vati,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vati,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vati,.ti.,.m.$.sg.$.loc.,4,0.99
+vant,vati,.ti.,.nt.$.sg.$.loc.,4,0.99
+vant,vatībhi,.ti.,.f.$.pl.$.abl.,4,0.99
+vant,vatībhi,.ti.,.f.$.pl.$.inst.,4,0.99
+vant,vatīhi,.ti.,.f.$.pl.$.abl.,4,0.99
+vant,vatīhi,.ti.,.f.$.pl.$.inst.,4,0.99
+vant,vatiṃ,.ti.,.f.$.sg.$.acc.,4,0.99
+vant,vatīnaṃ,.ti.,.f.$.pl.$.dat.,4,0.99
+vant,vatīnaṃ,.ti.,.f.$.pl.$.gen.,4,0.99
+vant,vatīsu,.ti.,.f.$.pl.$.loc.,4,0.99
+vant,vatiyā,.ti.,.f.$.sg.$.abl.,4,0.99
+vant,vatiyā,.ti.,.f.$.sg.$.dat.,4,0.99
+vant,vatiyā,.ti.,.f.$.sg.$.gen.,4,0.99
+vant,vatiyā,.ti.,.f.$.sg.$.inst.,4,0.99
+vant,vatiyā,.ti.,.f.$.sg.$.loc.,4,0.99
+vant,vatiyaṃ,.ti.,.f.$.sg.$.loc.,4,0.99
+vant,vatiyo,.ti.,.f.$.pl.$.acc.,4,0.99
+vant,vatiyo,.ti.,.f.$.pl.$.nom.,4,0.99
+vant,vatiyo,.ti.,.f.$.pl.$.voc.,4,0.3
+vant,vato,.ti.,.m.$.sg.$.dat.,4,0.99
+vant,vato,.ti.,.m.$.sg.$.gen.,4,0.99
+vant,vato,.ti.,.nt.$.sg.$.dat.,4,0.99
+vant,vato,.ti.,.nt.$.sg.$.gen.,4,0.99
+vant,vato,.ti.,.m.$.sg.$.dat.,4,0.99
+vant,vato,.ti.,.m.$.sg.$.gen.,4,0.99
+vant,vato,.ti.,.nt.$.sg.$.dat.,4,0.99
+vant,vato,.ti.,.nt.$.sg.$.gen.,4,0.99
+vant,ve,.ti.,.m.$.pl.$.acc.,4,0.99
+vant,vebhi,.ti.,.m.$.pl.$.abl.,4,0.99
+vant,vebhi,.ti.,.m.$.pl.$.inst.,4,0.99
+vant,vehi,.ti.,.m.$.pl.$.abl.,4,0.99
+vant,vehi,.ti.,.m.$.pl.$.inst.,4,0.99
+vant,vesu,.ti.,.m.$.pl.$.loc.,4,0.99
+mantu,mā,.ti.,.m.$.pl.$.nom.,5,0.99
+mantu,mā,.ti.,.m.$.pl.$.voc.,5,0.3
+mantu,mā,.ti.,.m.$.sg.$.nom.,5,0.99
+mantu,ma,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,mā,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,mā,.ti.,.nt.$.pl.$.nom.,5,0.99
+mantu,mā,.ti.,.nt.$.pl.$.voc.,5,0.3
+mantu,ma,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,mā,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,mā,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,mā,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,maṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+mantu,maṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+mantu,maṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+mantu,maṃ,.ti.,.m.$.sg.$.nom.,5,0.99
+mantu,maṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,maṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,maṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,maṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,mānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+mantu,mānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+mantu,mantā,.ti.,.m.$.pl.$.nom.,5,0.99
+mantu,mantā,.ti.,.m.$.pl.$.voc.,5,0.3
+mantu,mantā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,manta,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,mantā,.ti.,.m.$.sg.$.voc.,5,0.3
+mantu,manta,.ti.,.nt.$.pl.$.acc.,5,0.99
+mantu,mantā,.ti.,.nt.$.pl.$.acc.,5,0.99
+mantu,manta,.ti.,.nt.$.pl.$.nom.,5,0.99
+mantu,mantā,.ti.,.nt.$.pl.$.nom.,5,0.99
+mantu,manta,.ti.,.nt.$.pl.$.voc.,5,0.3
+mantu,mantā,.ti.,.nt.$.pl.$.voc.,5,0.3
+mantu,mantā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,manta,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,mantā,.ti.,.nt.$.sg.$.voc.,5,0.3
+mantu,mantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+mantu,mantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+mantu,mantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+mantu,mantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+mantu,mantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+mantu,mantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+mantu,mantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,mantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,mantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,mantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,mantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,mantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,mantānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+mantu,mantānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+mantu,mantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+mantu,mantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+mantu,mantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+mantu,mantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+mantu,mantani,.ti.,.nt.$.pl.$.acc.,5,0.99
+mantu,mantāni,.ti.,.nt.$.pl.$.acc.,5,0.99
+mantu,mantani,.ti.,.nt.$.pl.$.nom.,5,0.99
+mantu,mantāni,.ti.,.nt.$.pl.$.nom.,5,0.99
+mantu,mantani,.ti.,.nt.$.pl.$.voc.,5,0.3
+mantu,mantāni,.ti.,.nt.$.pl.$.voc.,5,0.3
+mantu,mantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,mantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,mantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,mantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,mantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,mantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,mantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+mantu,mantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+mantu,mantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+mantu,mantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+mantu,mantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+mantu,mantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+mantu,mantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+mantu,mantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+mantu,mante,.ti.,.m.$.pl.$.acc.,5,0.99
+mantu,mante,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mante,.ti.,.nt.$.pl.$.acc.,5,0.99
+mantu,mante,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,mantebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+mantu,mantebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+mantu,mantebhi,.ti.,.nt.$.pl.$.abl.,5,0.99
+mantu,mantebhi,.ti.,.nt.$.pl.$.inst.,5,0.99
+mantu,mantehi,.ti.,.m.$.pl.$.abl.,5,0.99
+mantu,mantehi,.ti.,.m.$.pl.$.inst.,5,0.99
+mantu,mantehi,.ti.,.nt.$.pl.$.abl.,5,0.99
+mantu,mantehi,.ti.,.nt.$.pl.$.inst.,5,0.99
+mantu,mantesu,.ti.,.m.$.pl.$.loc.,5,0.99
+mantu,mantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+mantu,mantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+mantu,mantī,.ti.,.f.$.pl.$.acc.,5,0.99
+mantu,mantī,.ti.,.f.$.pl.$.nom.,5,0.99
+mantu,mantī,.ti.,.f.$.pl.$.voc.,5,0.3
+mantu,mantī,.ti.,.f.$.sg.$.nom.,5,0.99
+mantu,mantī,.ti.,.f.$.sg.$.voc.,5,0.3
+mantu,mantībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+mantu,mantībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+mantu,mantīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+mantu,mantīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+mantu,mantiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+mantu,mantīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+mantu,mantīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+mantu,mantīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+mantu,mantiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+mantu,mantiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+mantu,mantiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+mantu,mantiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+mantu,mantiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+mantu,mantiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+mantu,mantiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+mantu,mantiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+mantu,mantiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+mantu,manto,.ti.,.m.$.pl.$.nom.,5,0.99
+mantu,manto,.ti.,.m.$.pl.$.voc.,5,0.3
+mantu,manto,.ti.,.m.$.sg.$.nom.,5,0.99
+mantu,manto,.ti.,.nt.$.pl.$.nom.,5,0.99
+mantu,manto,.ti.,.nt.$.pl.$.voc.,5,0.3
+mantu,manto,.ti.,.nt.$.sg.$.nom.,5,0.99
+mantu,matā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,matā,.ti.,.m.$.sg.$.inst.,5,0.99
+mantu,matā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,matā,.ti.,.nt.$.sg.$.inst.,5,0.99
+mantu,matā,.ti.,.m.$.sg.$.abl.,5,0.99
+mantu,matā,.ti.,.m.$.sg.$.inst.,5,0.99
+mantu,matā,.ti.,.nt.$.sg.$.abl.,5,0.99
+mantu,matā,.ti.,.nt.$.sg.$.inst.,5,0.99
+mantu,mataṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+mantu,mataṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+mantu,mataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+mantu,mataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+mantu,mataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+mantu,mataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+mantu,matena,.ti.,.m.$.sg.$.inst.,5,0.99
+mantu,matena,.ti.,.nt.$.sg.$.inst.,5,0.99
+mantu,matena,.ti.,.m.$.sg.$.inst.,5,0.99
+mantu,matena,.ti.,.nt.$.sg.$.inst.,5,0.99
+mantu,matī,.ti.,.f.$.pl.$.acc.,5,0.99
+mantu,matī,.ti.,.f.$.pl.$.nom.,5,0.99
+mantu,matī,.ti.,.f.$.pl.$.voc.,5,0.3
+mantu,matī,.ti.,.f.$.sg.$.nom.,5,0.99
+mantu,matī,.ti.,.f.$.sg.$.voc.,5,0.3
+mantu,mati,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mati,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,mati,.ti.,.m.$.sg.$.loc.,5,0.99
+mantu,mati,.ti.,.nt.$.sg.$.loc.,5,0.99
+mantu,matībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+mantu,matībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+mantu,matīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+mantu,matīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+mantu,matiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+mantu,matīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+mantu,matīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+mantu,matīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+mantu,matiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+mantu,matiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+mantu,matiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+mantu,matiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+mantu,matiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+mantu,matiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+mantu,matiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+mantu,matiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+mantu,matiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+mantu,mato,.ti.,.m.$.sg.$.dat.,5,0.99
+mantu,mato,.ti.,.m.$.sg.$.gen.,5,0.99
+mantu,mato,.ti.,.nt.$.sg.$.dat.,5,0.99
+mantu,mato,.ti.,.nt.$.sg.$.gen.,5,0.99
+mantu,mato,.ti.,.m.$.sg.$.dat.,5,0.99
+mantu,mato,.ti.,.m.$.sg.$.gen.,5,0.99
+mantu,mato,.ti.,.nt.$.sg.$.dat.,5,0.99
+mantu,mato,.ti.,.nt.$.sg.$.gen.,5,0.99
+mantu,me,.ti.,.m.$.pl.$.acc.,5,0.99
+mantu,mebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+mantu,mebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+mantu,mehi,.ti.,.m.$.pl.$.abl.,5,0.99
+mantu,mehi,.ti.,.m.$.pl.$.inst.,5,0.99
+mantu,mesu,.ti.,.m.$.pl.$.loc.,5,0.99
+vantu,vā,.ti.,.m.$.pl.$.nom.,5,0.99
+vantu,vā,.ti.,.m.$.pl.$.voc.,5,0.3
+vantu,vā,.ti.,.m.$.sg.$.nom.,5,0.99
+vantu,va,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vā,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vā,.ti.,.nt.$.pl.$.nom.,5,0.99
+vantu,vā,.ti.,.nt.$.pl.$.voc.,5,0.3
+vantu,va,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vā,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vā,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vā,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+vantu,vaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+vantu,vaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+vantu,vaṃ,.ti.,.m.$.sg.$.nom.,5,0.99
+vantu,vaṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vaṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vaṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vaṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+vantu,vānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+vantu,vantā,.ti.,.m.$.pl.$.nom.,5,0.99
+vantu,vantā,.ti.,.m.$.pl.$.voc.,5,0.3
+vantu,vantā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vanta,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vantā,.ti.,.m.$.sg.$.voc.,5,0.3
+vantu,vanta,.ti.,.nt.$.pl.$.acc.,5,0.99
+vantu,vantā,.ti.,.nt.$.pl.$.acc.,5,0.99
+vantu,vanta,.ti.,.nt.$.pl.$.nom.,5,0.99
+vantu,vantā,.ti.,.nt.$.pl.$.nom.,5,0.99
+vantu,vanta,.ti.,.nt.$.pl.$.voc.,5,0.3
+vantu,vantā,.ti.,.nt.$.pl.$.voc.,5,0.3
+vantu,vantā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vanta,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vantā,.ti.,.nt.$.sg.$.voc.,5,0.3
+vantu,vantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+vantu,vantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+vantu,vantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+vantu,vantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+vantu,vantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+vantu,vantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+vantu,vantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vantānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+vantu,vantānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+vantu,vantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vantu,vantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vantu,vantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vantu,vantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vantu,vantani,.ti.,.nt.$.pl.$.acc.,5,0.99
+vantu,vantāni,.ti.,.nt.$.pl.$.acc.,5,0.99
+vantu,vantani,.ti.,.nt.$.pl.$.nom.,5,0.99
+vantu,vantāni,.ti.,.nt.$.pl.$.nom.,5,0.99
+vantu,vantani,.ti.,.nt.$.pl.$.voc.,5,0.3
+vantu,vantāni,.ti.,.nt.$.pl.$.voc.,5,0.3
+vantu,vantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+vantu,vantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+vantu,vantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+vantu,vantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+vantu,vantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+vantu,vantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+vantu,vantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+vantu,vantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+vantu,vante,.ti.,.m.$.pl.$.acc.,5,0.99
+vantu,vante,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vante,.ti.,.nt.$.pl.$.acc.,5,0.99
+vantu,vante,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vantebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+vantu,vantebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+vantu,vantebhi,.ti.,.nt.$.pl.$.abl.,5,0.99
+vantu,vantebhi,.ti.,.nt.$.pl.$.inst.,5,0.99
+vantu,vantehi,.ti.,.m.$.pl.$.abl.,5,0.99
+vantu,vantehi,.ti.,.m.$.pl.$.inst.,5,0.99
+vantu,vantehi,.ti.,.nt.$.pl.$.abl.,5,0.99
+vantu,vantehi,.ti.,.nt.$.pl.$.inst.,5,0.99
+vantu,vantesu,.ti.,.m.$.pl.$.loc.,5,0.99
+vantu,vantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+vantu,vantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+vantu,vantī,.ti.,.f.$.pl.$.acc.,5,0.99
+vantu,vantī,.ti.,.f.$.pl.$.nom.,5,0.99
+vantu,vantī,.ti.,.f.$.pl.$.voc.,5,0.3
+vantu,vantī,.ti.,.f.$.sg.$.nom.,5,0.99
+vantu,vantī,.ti.,.f.$.sg.$.voc.,5,0.3
+vantu,vantībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vantu,vantībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vantu,vantīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vantu,vantīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vantu,vantiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+vantu,vantīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+vantu,vantīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+vantu,vantīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+vantu,vantiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+vantu,vantiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+vantu,vantiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+vantu,vantiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+vantu,vantiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+vantu,vantiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+vantu,vantiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+vantu,vantiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+vantu,vantiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+vantu,vanto,.ti.,.m.$.pl.$.nom.,5,0.99
+vantu,vanto,.ti.,.m.$.pl.$.voc.,5,0.3
+vantu,vanto,.ti.,.m.$.sg.$.nom.,5,0.99
+vantu,vanto,.ti.,.nt.$.pl.$.nom.,5,0.99
+vantu,vanto,.ti.,.nt.$.pl.$.voc.,5,0.3
+vantu,vanto,.ti.,.nt.$.sg.$.nom.,5,0.99
+vantu,vatā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vatā,.ti.,.m.$.sg.$.inst.,5,0.99
+vantu,vatā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vatā,.ti.,.nt.$.sg.$.inst.,5,0.99
+vantu,vatā,.ti.,.m.$.sg.$.abl.,5,0.99
+vantu,vatā,.ti.,.m.$.sg.$.inst.,5,0.99
+vantu,vatā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vantu,vatā,.ti.,.nt.$.sg.$.inst.,5,0.99
+vantu,vataṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+vantu,vataṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+vantu,vataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vantu,vataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vantu,vataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vantu,vataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vantu,vatena,.ti.,.m.$.sg.$.inst.,5,0.99
+vantu,vatena,.ti.,.nt.$.sg.$.inst.,5,0.99
+vantu,vatena,.ti.,.m.$.sg.$.inst.,5,0.99
+vantu,vatena,.ti.,.nt.$.sg.$.inst.,5,0.99
+vantu,vatī,.ti.,.f.$.pl.$.acc.,5,0.99
+vantu,vatī,.ti.,.f.$.pl.$.nom.,5,0.99
+vantu,vatī,.ti.,.f.$.pl.$.voc.,5,0.3
+vantu,vatī,.ti.,.f.$.sg.$.nom.,5,0.99
+vantu,vatī,.ti.,.f.$.sg.$.voc.,5,0.3
+vantu,vati,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vati,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vati,.ti.,.m.$.sg.$.loc.,5,0.99
+vantu,vati,.ti.,.nt.$.sg.$.loc.,5,0.99
+vantu,vatībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vantu,vatībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vantu,vatīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vantu,vatīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vantu,vatiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+vantu,vatīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+vantu,vatīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+vantu,vatīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+vantu,vatiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+vantu,vatiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+vantu,vatiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+vantu,vatiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+vantu,vatiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+vantu,vatiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+vantu,vatiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+vantu,vatiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+vantu,vatiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+vantu,vato,.ti.,.m.$.sg.$.dat.,5,0.99
+vantu,vato,.ti.,.m.$.sg.$.gen.,5,0.99
+vantu,vato,.ti.,.nt.$.sg.$.dat.,5,0.99
+vantu,vato,.ti.,.nt.$.sg.$.gen.,5,0.99
+vantu,vato,.ti.,.m.$.sg.$.dat.,5,0.99
+vantu,vato,.ti.,.m.$.sg.$.gen.,5,0.99
+vantu,vato,.ti.,.nt.$.sg.$.dat.,5,0.99
+vantu,vato,.ti.,.nt.$.sg.$.gen.,5,0.99
+vantu,ve,.ti.,.m.$.pl.$.acc.,5,0.99
+vantu,vebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+vantu,vebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+vantu,vehi,.ti.,.m.$.pl.$.abl.,5,0.99
+vantu,vehi,.ti.,.m.$.pl.$.inst.,5,0.99
+vantu,vesu,.ti.,.m.$.pl.$.loc.,5,0.99
+mat,mā,.ti.,.m.$.pl.$.nom.,3,0.99
+mat,mā,.ti.,.m.$.pl.$.voc.,3,0.3
+mat,mā,.ti.,.m.$.sg.$.nom.,3,0.99
+mat,ma,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,mā,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,mā,.ti.,.nt.$.pl.$.nom.,3,0.99
+mat,mā,.ti.,.nt.$.pl.$.voc.,3,0.3
+mat,ma,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,mā,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,mā,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,mā,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,maṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+mat,maṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+mat,maṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+mat,maṃ,.ti.,.m.$.sg.$.nom.,3,0.99
+mat,maṃ,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,maṃ,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,maṃ,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,maṃ,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,mānaṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+mat,mānaṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+mat,mantā,.ti.,.m.$.pl.$.nom.,3,0.99
+mat,mantā,.ti.,.m.$.pl.$.voc.,3,0.3
+mat,mantā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,manta,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,mantā,.ti.,.m.$.sg.$.voc.,3,0.3
+mat,manta,.ti.,.nt.$.pl.$.acc.,3,0.99
+mat,mantā,.ti.,.nt.$.pl.$.acc.,3,0.99
+mat,manta,.ti.,.nt.$.pl.$.nom.,3,0.99
+mat,mantā,.ti.,.nt.$.pl.$.nom.,3,0.99
+mat,manta,.ti.,.nt.$.pl.$.voc.,3,0.3
+mat,mantā,.ti.,.nt.$.pl.$.voc.,3,0.3
+mat,mantā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,manta,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,mantā,.ti.,.nt.$.sg.$.voc.,3,0.3
+mat,mantaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+mat,mantaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+mat,mantaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+mat,mantaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+mat,mantaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+mat,mantaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+mat,mantamhā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,mantamhā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,mantamhā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,mantamhā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,mantamhi,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mantamhi,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,mantamhi,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mantamhi,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,mantānaṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+mat,mantānaṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+mat,mantānaṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+mat,mantānaṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+mat,mantānaṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+mat,mantānaṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+mat,mantani,.ti.,.nt.$.pl.$.acc.,3,0.99
+mat,mantāni,.ti.,.nt.$.pl.$.acc.,3,0.99
+mat,mantani,.ti.,.nt.$.pl.$.nom.,3,0.99
+mat,mantāni,.ti.,.nt.$.pl.$.nom.,3,0.99
+mat,mantani,.ti.,.nt.$.pl.$.voc.,3,0.3
+mat,mantāni,.ti.,.nt.$.pl.$.voc.,3,0.3
+mat,mantasmā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,mantasmā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,mantasmā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,mantasmā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,mantasmiṃ,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,mantasmiṃ,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,mantassa,.ti.,.m.$.sg.$.dat.,3,0.99
+mat,mantassa,.ti.,.m.$.sg.$.gen.,3,0.99
+mat,mantassa,.ti.,.nt.$.sg.$.dat.,3,0.99
+mat,mantassa,.ti.,.nt.$.sg.$.gen.,3,0.99
+mat,mantassa,.ti.,.m.$.sg.$.dat.,3,0.99
+mat,mantassa,.ti.,.m.$.sg.$.gen.,3,0.99
+mat,mantassa,.ti.,.nt.$.sg.$.dat.,3,0.99
+mat,mantassa,.ti.,.nt.$.sg.$.gen.,3,0.99
+mat,mante,.ti.,.m.$.pl.$.acc.,3,0.99
+mat,mante,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mante,.ti.,.nt.$.pl.$.acc.,3,0.99
+mat,mante,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,mantebhi,.ti.,.m.$.pl.$.abl.,3,0.99
+mat,mantebhi,.ti.,.m.$.pl.$.inst.,3,0.99
+mat,mantebhi,.ti.,.nt.$.pl.$.abl.,3,0.99
+mat,mantebhi,.ti.,.nt.$.pl.$.inst.,3,0.99
+mat,mantehi,.ti.,.m.$.pl.$.abl.,3,0.99
+mat,mantehi,.ti.,.m.$.pl.$.inst.,3,0.99
+mat,mantehi,.ti.,.nt.$.pl.$.abl.,3,0.99
+mat,mantehi,.ti.,.nt.$.pl.$.inst.,3,0.99
+mat,mantesu,.ti.,.m.$.pl.$.loc.,3,0.99
+mat,mantesu,.ti.,.nt.$.pl.$.loc.,3,0.99
+mat,mantesu,.ti.,.nt.$.pl.$.loc.,3,0.99
+mat,mantī,.ti.,.f.$.pl.$.acc.,3,0.99
+mat,mantī,.ti.,.f.$.pl.$.nom.,3,0.99
+mat,mantī,.ti.,.f.$.pl.$.voc.,3,0.3
+mat,mantī,.ti.,.f.$.sg.$.nom.,3,0.99
+mat,mantī,.ti.,.f.$.sg.$.voc.,3,0.3
+mat,mantībhi,.ti.,.f.$.pl.$.abl.,3,0.99
+mat,mantībhi,.ti.,.f.$.pl.$.inst.,3,0.99
+mat,mantīhi,.ti.,.f.$.pl.$.abl.,3,0.99
+mat,mantīhi,.ti.,.f.$.pl.$.inst.,3,0.99
+mat,mantiṃ,.ti.,.f.$.sg.$.acc.,3,0.99
+mat,mantīnaṃ,.ti.,.f.$.pl.$.dat.,3,0.99
+mat,mantīnaṃ,.ti.,.f.$.pl.$.gen.,3,0.99
+mat,mantīsu,.ti.,.f.$.pl.$.loc.,3,0.99
+mat,mantiyā,.ti.,.f.$.sg.$.abl.,3,0.99
+mat,mantiyā,.ti.,.f.$.sg.$.dat.,3,0.99
+mat,mantiyā,.ti.,.f.$.sg.$.gen.,3,0.99
+mat,mantiyā,.ti.,.f.$.sg.$.inst.,3,0.99
+mat,mantiyā,.ti.,.f.$.sg.$.loc.,3,0.99
+mat,mantiyaṃ,.ti.,.f.$.sg.$.loc.,3,0.99
+mat,mantiyo,.ti.,.f.$.pl.$.acc.,3,0.99
+mat,mantiyo,.ti.,.f.$.pl.$.nom.,3,0.99
+mat,mantiyo,.ti.,.f.$.pl.$.voc.,3,0.3
+mat,manto,.ti.,.m.$.pl.$.nom.,3,0.99
+mat,manto,.ti.,.m.$.pl.$.voc.,3,0.3
+mat,manto,.ti.,.m.$.sg.$.nom.,3,0.99
+mat,manto,.ti.,.nt.$.pl.$.nom.,3,0.99
+mat,manto,.ti.,.nt.$.pl.$.voc.,3,0.3
+mat,manto,.ti.,.nt.$.sg.$.nom.,3,0.99
+mat,matā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,matā,.ti.,.m.$.sg.$.inst.,3,0.99
+mat,matā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,matā,.ti.,.nt.$.sg.$.inst.,3,0.99
+mat,matā,.ti.,.m.$.sg.$.abl.,3,0.99
+mat,matā,.ti.,.m.$.sg.$.inst.,3,0.99
+mat,matā,.ti.,.nt.$.sg.$.abl.,3,0.99
+mat,matā,.ti.,.nt.$.sg.$.inst.,3,0.99
+mat,mataṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+mat,mataṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+mat,mataṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+mat,mataṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+mat,mataṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+mat,mataṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+mat,matena,.ti.,.m.$.sg.$.inst.,3,0.99
+mat,matena,.ti.,.nt.$.sg.$.inst.,3,0.99
+mat,matena,.ti.,.m.$.sg.$.inst.,3,0.99
+mat,matena,.ti.,.nt.$.sg.$.inst.,3,0.99
+mat,matī,.ti.,.f.$.pl.$.acc.,3,0.99
+mat,matī,.ti.,.f.$.pl.$.nom.,3,0.99
+mat,matī,.ti.,.f.$.pl.$.voc.,3,0.3
+mat,matī,.ti.,.f.$.sg.$.nom.,3,0.99
+mat,matī,.ti.,.f.$.sg.$.voc.,3,0.3
+mat,mati,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mati,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,mati,.ti.,.m.$.sg.$.loc.,3,0.99
+mat,mati,.ti.,.nt.$.sg.$.loc.,3,0.99
+mat,matībhi,.ti.,.f.$.pl.$.abl.,3,0.99
+mat,matībhi,.ti.,.f.$.pl.$.inst.,3,0.99
+mat,matīhi,.ti.,.f.$.pl.$.abl.,3,0.99
+mat,matīhi,.ti.,.f.$.pl.$.inst.,3,0.99
+mat,matiṃ,.ti.,.f.$.sg.$.acc.,3,0.99
+mat,matīnaṃ,.ti.,.f.$.pl.$.dat.,3,0.99
+mat,matīnaṃ,.ti.,.f.$.pl.$.gen.,3,0.99
+mat,matīsu,.ti.,.f.$.pl.$.loc.,3,0.99
+mat,matiyā,.ti.,.f.$.sg.$.abl.,3,0.99
+mat,matiyā,.ti.,.f.$.sg.$.dat.,3,0.99
+mat,matiyā,.ti.,.f.$.sg.$.gen.,3,0.99
+mat,matiyā,.ti.,.f.$.sg.$.inst.,3,0.99
+mat,matiyā,.ti.,.f.$.sg.$.loc.,3,0.99
+mat,matiyaṃ,.ti.,.f.$.sg.$.loc.,3,0.99
+mat,matiyo,.ti.,.f.$.pl.$.acc.,3,0.99
+mat,matiyo,.ti.,.f.$.pl.$.nom.,3,0.99
+mat,matiyo,.ti.,.f.$.pl.$.voc.,3,0.3
+mat,mato,.ti.,.m.$.sg.$.dat.,3,0.99
+mat,mato,.ti.,.m.$.sg.$.gen.,3,0.99
+mat,mato,.ti.,.nt.$.sg.$.dat.,3,0.99
+mat,mato,.ti.,.nt.$.sg.$.gen.,3,0.99
+mat,mato,.ti.,.m.$.sg.$.dat.,3,0.99
+mat,mato,.ti.,.m.$.sg.$.gen.,3,0.99
+mat,mato,.ti.,.nt.$.sg.$.dat.,3,0.99
+mat,mato,.ti.,.nt.$.sg.$.gen.,3,0.99
+mat,me,.ti.,.m.$.pl.$.acc.,3,0.99
+mat,mebhi,.ti.,.m.$.pl.$.abl.,3,0.99
+mat,mebhi,.ti.,.m.$.pl.$.inst.,3,0.99
+mat,mehi,.ti.,.m.$.pl.$.abl.,3,0.99
+mat,mehi,.ti.,.m.$.pl.$.inst.,3,0.99
+mat,mesu,.ti.,.m.$.pl.$.loc.,3,0.99
+vat,vā,.ti.,.m.$.pl.$.nom.,3,0.99
+vat,vā,.ti.,.m.$.pl.$.voc.,3,0.3
+vat,vā,.ti.,.m.$.sg.$.nom.,3,0.99
+vat,va,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vā,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vā,.ti.,.nt.$.pl.$.nom.,3,0.99
+vat,vā,.ti.,.nt.$.pl.$.voc.,3,0.3
+vat,va,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vā,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vā,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vā,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+vat,vaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+vat,vaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+vat,vaṃ,.ti.,.m.$.sg.$.nom.,3,0.99
+vat,vaṃ,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vaṃ,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vaṃ,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vaṃ,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vānaṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+vat,vānaṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+vat,vantā,.ti.,.m.$.pl.$.nom.,3,0.99
+vat,vantā,.ti.,.m.$.pl.$.voc.,3,0.3
+vat,vantā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vanta,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vantā,.ti.,.m.$.sg.$.voc.,3,0.3
+vat,vanta,.ti.,.nt.$.pl.$.acc.,3,0.99
+vat,vantā,.ti.,.nt.$.pl.$.acc.,3,0.99
+vat,vanta,.ti.,.nt.$.pl.$.nom.,3,0.99
+vat,vantā,.ti.,.nt.$.pl.$.nom.,3,0.99
+vat,vanta,.ti.,.nt.$.pl.$.voc.,3,0.3
+vat,vantā,.ti.,.nt.$.pl.$.voc.,3,0.3
+vat,vantā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vanta,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vantā,.ti.,.nt.$.sg.$.voc.,3,0.3
+vat,vantaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+vat,vantaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+vat,vantaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+vat,vantaṃ,.ti.,.nt.$.sg.$.nom.,3,0.99
+vat,vantaṃ,.ti.,.m.$.sg.$.acc.,3,0.99
+vat,vantaṃ,.ti.,.nt.$.sg.$.acc.,3,0.99
+vat,vantamhā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vantamhā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vantamhā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vantamhā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vantamhi,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vantamhi,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vantamhi,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vantamhi,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vantānaṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+vat,vantānaṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+vat,vantānaṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+vat,vantānaṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+vat,vantānaṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+vat,vantānaṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+vat,vantani,.ti.,.nt.$.pl.$.acc.,3,0.99
+vat,vantāni,.ti.,.nt.$.pl.$.acc.,3,0.99
+vat,vantani,.ti.,.nt.$.pl.$.nom.,3,0.99
+vat,vantāni,.ti.,.nt.$.pl.$.nom.,3,0.99
+vat,vantani,.ti.,.nt.$.pl.$.voc.,3,0.3
+vat,vantāni,.ti.,.nt.$.pl.$.voc.,3,0.3
+vat,vantasmā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vantasmā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vantasmā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vantasmā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vantasmiṃ,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vantasmiṃ,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vantassa,.ti.,.m.$.sg.$.dat.,3,0.99
+vat,vantassa,.ti.,.m.$.sg.$.gen.,3,0.99
+vat,vantassa,.ti.,.nt.$.sg.$.dat.,3,0.99
+vat,vantassa,.ti.,.nt.$.sg.$.gen.,3,0.99
+vat,vantassa,.ti.,.m.$.sg.$.dat.,3,0.99
+vat,vantassa,.ti.,.m.$.sg.$.gen.,3,0.99
+vat,vantassa,.ti.,.nt.$.sg.$.dat.,3,0.99
+vat,vantassa,.ti.,.nt.$.sg.$.gen.,3,0.99
+vat,vante,.ti.,.m.$.pl.$.acc.,3,0.99
+vat,vante,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vante,.ti.,.nt.$.pl.$.acc.,3,0.99
+vat,vante,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vantebhi,.ti.,.m.$.pl.$.abl.,3,0.99
+vat,vantebhi,.ti.,.m.$.pl.$.inst.,3,0.99
+vat,vantebhi,.ti.,.nt.$.pl.$.abl.,3,0.99
+vat,vantebhi,.ti.,.nt.$.pl.$.inst.,3,0.99
+vat,vantehi,.ti.,.m.$.pl.$.abl.,3,0.99
+vat,vantehi,.ti.,.m.$.pl.$.inst.,3,0.99
+vat,vantehi,.ti.,.nt.$.pl.$.abl.,3,0.99
+vat,vantehi,.ti.,.nt.$.pl.$.inst.,3,0.99
+vat,vantesu,.ti.,.m.$.pl.$.loc.,3,0.99
+vat,vantesu,.ti.,.nt.$.pl.$.loc.,3,0.99
+vat,vantesu,.ti.,.nt.$.pl.$.loc.,3,0.99
+vat,vantī,.ti.,.f.$.pl.$.acc.,3,0.99
+vat,vantī,.ti.,.f.$.pl.$.nom.,3,0.99
+vat,vantī,.ti.,.f.$.pl.$.voc.,3,0.3
+vat,vantī,.ti.,.f.$.sg.$.nom.,3,0.99
+vat,vantī,.ti.,.f.$.sg.$.voc.,3,0.3
+vat,vantībhi,.ti.,.f.$.pl.$.abl.,3,0.99
+vat,vantībhi,.ti.,.f.$.pl.$.inst.,3,0.99
+vat,vantīhi,.ti.,.f.$.pl.$.abl.,3,0.99
+vat,vantīhi,.ti.,.f.$.pl.$.inst.,3,0.99
+vat,vantiṃ,.ti.,.f.$.sg.$.acc.,3,0.99
+vat,vantīnaṃ,.ti.,.f.$.pl.$.dat.,3,0.99
+vat,vantīnaṃ,.ti.,.f.$.pl.$.gen.,3,0.99
+vat,vantīsu,.ti.,.f.$.pl.$.loc.,3,0.99
+vat,vantiyā,.ti.,.f.$.sg.$.abl.,3,0.99
+vat,vantiyā,.ti.,.f.$.sg.$.dat.,3,0.99
+vat,vantiyā,.ti.,.f.$.sg.$.gen.,3,0.99
+vat,vantiyā,.ti.,.f.$.sg.$.inst.,3,0.99
+vat,vantiyā,.ti.,.f.$.sg.$.loc.,3,0.99
+vat,vantiyaṃ,.ti.,.f.$.sg.$.loc.,3,0.99
+vat,vantiyo,.ti.,.f.$.pl.$.acc.,3,0.99
+vat,vantiyo,.ti.,.f.$.pl.$.nom.,3,0.99
+vat,vantiyo,.ti.,.f.$.pl.$.voc.,3,0.3
+vat,vanto,.ti.,.m.$.pl.$.nom.,3,0.99
+vat,vanto,.ti.,.m.$.pl.$.voc.,3,0.3
+vat,vanto,.ti.,.m.$.sg.$.nom.,3,0.99
+vat,vanto,.ti.,.nt.$.pl.$.nom.,3,0.99
+vat,vanto,.ti.,.nt.$.pl.$.voc.,3,0.3
+vat,vanto,.ti.,.nt.$.sg.$.nom.,3,0.99
+vat,vatā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vatā,.ti.,.m.$.sg.$.inst.,3,0.99
+vat,vatā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vatā,.ti.,.nt.$.sg.$.inst.,3,0.99
+vat,vatā,.ti.,.m.$.sg.$.abl.,3,0.99
+vat,vatā,.ti.,.m.$.sg.$.inst.,3,0.99
+vat,vatā,.ti.,.nt.$.sg.$.abl.,3,0.99
+vat,vatā,.ti.,.nt.$.sg.$.inst.,3,0.99
+vat,vataṃ,.ti.,.m.$.pl.$.dat.,3,0.99
+vat,vataṃ,.ti.,.m.$.pl.$.gen.,3,0.99
+vat,vataṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+vat,vataṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+vat,vataṃ,.ti.,.nt.$.pl.$.dat.,3,0.99
+vat,vataṃ,.ti.,.nt.$.pl.$.gen.,3,0.99
+vat,vatena,.ti.,.m.$.sg.$.inst.,3,0.99
+vat,vatena,.ti.,.nt.$.sg.$.inst.,3,0.99
+vat,vatena,.ti.,.m.$.sg.$.inst.,3,0.99
+vat,vatena,.ti.,.nt.$.sg.$.inst.,3,0.99
+vat,vatī,.ti.,.f.$.pl.$.acc.,3,0.99
+vat,vatī,.ti.,.f.$.pl.$.nom.,3,0.99
+vat,vatī,.ti.,.f.$.pl.$.voc.,3,0.3
+vat,vatī,.ti.,.f.$.sg.$.nom.,3,0.99
+vat,vatī,.ti.,.f.$.sg.$.voc.,3,0.3
+vat,vati,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vati,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vati,.ti.,.m.$.sg.$.loc.,3,0.99
+vat,vati,.ti.,.nt.$.sg.$.loc.,3,0.99
+vat,vatībhi,.ti.,.f.$.pl.$.abl.,3,0.99
+vat,vatībhi,.ti.,.f.$.pl.$.inst.,3,0.99
+vat,vatīhi,.ti.,.f.$.pl.$.abl.,3,0.99
+vat,vatīhi,.ti.,.f.$.pl.$.inst.,3,0.99
+vat,vatiṃ,.ti.,.f.$.sg.$.acc.,3,0.99
+vat,vatīnaṃ,.ti.,.f.$.pl.$.dat.,3,0.99
+vat,vatīnaṃ,.ti.,.f.$.pl.$.gen.,3,0.99
+vat,vatīsu,.ti.,.f.$.pl.$.loc.,3,0.99
+vat,vatiyā,.ti.,.f.$.sg.$.abl.,3,0.99
+vat,vatiyā,.ti.,.f.$.sg.$.dat.,3,0.99
+vat,vatiyā,.ti.,.f.$.sg.$.gen.,3,0.99
+vat,vatiyā,.ti.,.f.$.sg.$.inst.,3,0.99
+vat,vatiyā,.ti.,.f.$.sg.$.loc.,3,0.99
+vat,vatiyaṃ,.ti.,.f.$.sg.$.loc.,3,0.99
+vat,vatiyo,.ti.,.f.$.pl.$.acc.,3,0.99
+vat,vatiyo,.ti.,.f.$.pl.$.nom.,3,0.99
+vat,vatiyo,.ti.,.f.$.pl.$.voc.,3,0.3
+vat,vato,.ti.,.m.$.sg.$.dat.,3,0.99
+vat,vato,.ti.,.m.$.sg.$.gen.,3,0.99
+vat,vato,.ti.,.nt.$.sg.$.dat.,3,0.99
+vat,vato,.ti.,.nt.$.sg.$.gen.,3,0.99
+vat,vato,.ti.,.m.$.sg.$.dat.,3,0.99
+vat,vato,.ti.,.m.$.sg.$.gen.,3,0.99
+vat,vato,.ti.,.nt.$.sg.$.dat.,3,0.99
+vat,vato,.ti.,.nt.$.sg.$.gen.,3,0.99
+vat,ve,.ti.,.m.$.pl.$.acc.,3,0.99
+vat,vebhi,.ti.,.m.$.pl.$.abl.,3,0.99
+vat,vebhi,.ti.,.m.$.pl.$.inst.,3,0.99
+vat,vehi,.ti.,.m.$.pl.$.abl.,3,0.99
+vat,vehi,.ti.,.m.$.pl.$.inst.,3,0.99
+vat,vesu,.ti.,.m.$.pl.$.loc.,3,0.99
+manta,mā,.ti.,.m.$.pl.$.nom.,5,0.99
+manta,mā,.ti.,.m.$.pl.$.voc.,5,0.3
+manta,mā,.ti.,.m.$.sg.$.nom.,5,0.99
+manta,ma,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,mā,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,mā,.ti.,.nt.$.pl.$.nom.,5,0.99
+manta,mā,.ti.,.nt.$.pl.$.voc.,5,0.3
+manta,ma,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,mā,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,mā,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,mā,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,maṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+manta,maṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+manta,maṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+manta,maṃ,.ti.,.m.$.sg.$.nom.,5,0.99
+manta,maṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,maṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,maṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,maṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,mānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+manta,mānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+manta,mantā,.ti.,.m.$.pl.$.nom.,5,0.99
+manta,mantā,.ti.,.m.$.pl.$.voc.,5,0.3
+manta,mantā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,manta,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,mantā,.ti.,.m.$.sg.$.voc.,5,0.3
+manta,manta,.ti.,.nt.$.pl.$.acc.,5,0.99
+manta,mantā,.ti.,.nt.$.pl.$.acc.,5,0.99
+manta,manta,.ti.,.nt.$.pl.$.nom.,5,0.99
+manta,mantā,.ti.,.nt.$.pl.$.nom.,5,0.99
+manta,manta,.ti.,.nt.$.pl.$.voc.,5,0.3
+manta,mantā,.ti.,.nt.$.pl.$.voc.,5,0.3
+manta,mantā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,manta,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,mantā,.ti.,.nt.$.sg.$.voc.,5,0.3
+manta,mantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+manta,mantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+manta,mantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+manta,mantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+manta,mantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+manta,mantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+manta,mantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,mantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,mantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,mantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,mantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,mantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,mantānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+manta,mantānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+manta,mantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+manta,mantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+manta,mantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+manta,mantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+manta,mantani,.ti.,.nt.$.pl.$.acc.,5,0.99
+manta,mantāni,.ti.,.nt.$.pl.$.acc.,5,0.99
+manta,mantani,.ti.,.nt.$.pl.$.nom.,5,0.99
+manta,mantāni,.ti.,.nt.$.pl.$.nom.,5,0.99
+manta,mantani,.ti.,.nt.$.pl.$.voc.,5,0.3
+manta,mantāni,.ti.,.nt.$.pl.$.voc.,5,0.3
+manta,mantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,mantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,mantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,mantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,mantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,mantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,mantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+manta,mantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+manta,mantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+manta,mantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+manta,mantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+manta,mantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+manta,mantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+manta,mantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+manta,mante,.ti.,.m.$.pl.$.acc.,5,0.99
+manta,mante,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mante,.ti.,.nt.$.pl.$.acc.,5,0.99
+manta,mante,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,mantebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+manta,mantebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+manta,mantebhi,.ti.,.nt.$.pl.$.abl.,5,0.99
+manta,mantebhi,.ti.,.nt.$.pl.$.inst.,5,0.99
+manta,mantehi,.ti.,.m.$.pl.$.abl.,5,0.99
+manta,mantehi,.ti.,.m.$.pl.$.inst.,5,0.99
+manta,mantehi,.ti.,.nt.$.pl.$.abl.,5,0.99
+manta,mantehi,.ti.,.nt.$.pl.$.inst.,5,0.99
+manta,mantesu,.ti.,.m.$.pl.$.loc.,5,0.99
+manta,mantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+manta,mantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+manta,mantī,.ti.,.f.$.pl.$.acc.,5,0.99
+manta,mantī,.ti.,.f.$.pl.$.nom.,5,0.99
+manta,mantī,.ti.,.f.$.pl.$.voc.,5,0.3
+manta,mantī,.ti.,.f.$.sg.$.nom.,5,0.99
+manta,mantī,.ti.,.f.$.sg.$.voc.,5,0.3
+manta,mantībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+manta,mantībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+manta,mantīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+manta,mantīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+manta,mantiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+manta,mantīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+manta,mantīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+manta,mantīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+manta,mantiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+manta,mantiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+manta,mantiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+manta,mantiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+manta,mantiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+manta,mantiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+manta,mantiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+manta,mantiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+manta,mantiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+manta,manto,.ti.,.m.$.pl.$.nom.,5,0.99
+manta,manto,.ti.,.m.$.pl.$.voc.,5,0.3
+manta,manto,.ti.,.m.$.sg.$.nom.,5,0.99
+manta,manto,.ti.,.nt.$.pl.$.nom.,5,0.99
+manta,manto,.ti.,.nt.$.pl.$.voc.,5,0.3
+manta,manto,.ti.,.nt.$.sg.$.nom.,5,0.99
+manta,matā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,matā,.ti.,.m.$.sg.$.inst.,5,0.99
+manta,matā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,matā,.ti.,.nt.$.sg.$.inst.,5,0.99
+manta,matā,.ti.,.m.$.sg.$.abl.,5,0.99
+manta,matā,.ti.,.m.$.sg.$.inst.,5,0.99
+manta,matā,.ti.,.nt.$.sg.$.abl.,5,0.99
+manta,matā,.ti.,.nt.$.sg.$.inst.,5,0.99
+manta,mataṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+manta,mataṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+manta,mataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+manta,mataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+manta,mataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+manta,mataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+manta,matena,.ti.,.m.$.sg.$.inst.,5,0.99
+manta,matena,.ti.,.nt.$.sg.$.inst.,5,0.99
+manta,matena,.ti.,.m.$.sg.$.inst.,5,0.99
+manta,matena,.ti.,.nt.$.sg.$.inst.,5,0.99
+manta,matī,.ti.,.f.$.pl.$.acc.,5,0.99
+manta,matī,.ti.,.f.$.pl.$.nom.,5,0.99
+manta,matī,.ti.,.f.$.pl.$.voc.,5,0.3
+manta,matī,.ti.,.f.$.sg.$.nom.,5,0.99
+manta,matī,.ti.,.f.$.sg.$.voc.,5,0.3
+manta,mati,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mati,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,mati,.ti.,.m.$.sg.$.loc.,5,0.99
+manta,mati,.ti.,.nt.$.sg.$.loc.,5,0.99
+manta,matībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+manta,matībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+manta,matīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+manta,matīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+manta,matiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+manta,matīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+manta,matīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+manta,matīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+manta,matiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+manta,matiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+manta,matiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+manta,matiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+manta,matiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+manta,matiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+manta,matiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+manta,matiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+manta,matiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+manta,mato,.ti.,.m.$.sg.$.dat.,5,0.99
+manta,mato,.ti.,.m.$.sg.$.gen.,5,0.99
+manta,mato,.ti.,.nt.$.sg.$.dat.,5,0.99
+manta,mato,.ti.,.nt.$.sg.$.gen.,5,0.99
+manta,mato,.ti.,.m.$.sg.$.dat.,5,0.99
+manta,mato,.ti.,.m.$.sg.$.gen.,5,0.99
+manta,mato,.ti.,.nt.$.sg.$.dat.,5,0.99
+manta,mato,.ti.,.nt.$.sg.$.gen.,5,0.99
+manta,me,.ti.,.m.$.pl.$.acc.,5,0.99
+manta,mebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+manta,mebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+manta,mehi,.ti.,.m.$.pl.$.abl.,5,0.99
+manta,mehi,.ti.,.m.$.pl.$.inst.,5,0.99
+manta,mesu,.ti.,.m.$.pl.$.loc.,5,0.99
+vanta,vā,.ti.,.m.$.pl.$.nom.,5,0.99
+vanta,vā,.ti.,.m.$.pl.$.voc.,5,0.3
+vanta,vā,.ti.,.m.$.sg.$.nom.,5,0.99
+vanta,va,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vā,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vā,.ti.,.nt.$.pl.$.nom.,5,0.99
+vanta,vā,.ti.,.nt.$.pl.$.voc.,5,0.3
+vanta,va,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vā,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vā,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vā,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+vanta,vaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+vanta,vaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+vanta,vaṃ,.ti.,.m.$.sg.$.nom.,5,0.99
+vanta,vaṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vaṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vaṃ,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vaṃ,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+vanta,vānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+vanta,vantā,.ti.,.m.$.pl.$.nom.,5,0.99
+vanta,vantā,.ti.,.m.$.pl.$.voc.,5,0.3
+vanta,vantā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vanta,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vantā,.ti.,.m.$.sg.$.voc.,5,0.3
+vanta,vanta,.ti.,.nt.$.pl.$.acc.,5,0.99
+vanta,vantā,.ti.,.nt.$.pl.$.acc.,5,0.99
+vanta,vanta,.ti.,.nt.$.pl.$.nom.,5,0.99
+vanta,vantā,.ti.,.nt.$.pl.$.nom.,5,0.99
+vanta,vanta,.ti.,.nt.$.pl.$.voc.,5,0.3
+vanta,vantā,.ti.,.nt.$.pl.$.voc.,5,0.3
+vanta,vantā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vanta,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vantā,.ti.,.nt.$.sg.$.voc.,5,0.3
+vanta,vantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+vanta,vantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+vanta,vantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+vanta,vantaṃ,.ti.,.nt.$.sg.$.nom.,5,0.99
+vanta,vantaṃ,.ti.,.m.$.sg.$.acc.,5,0.99
+vanta,vantaṃ,.ti.,.nt.$.sg.$.acc.,5,0.99
+vanta,vantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vantamhā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vantamhā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vantamhi,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vantamhi,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vantānaṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+vanta,vantānaṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+vanta,vantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vanta,vantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vanta,vantānaṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vanta,vantānaṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vanta,vantani,.ti.,.nt.$.pl.$.acc.,5,0.99
+vanta,vantāni,.ti.,.nt.$.pl.$.acc.,5,0.99
+vanta,vantani,.ti.,.nt.$.pl.$.nom.,5,0.99
+vanta,vantāni,.ti.,.nt.$.pl.$.nom.,5,0.99
+vanta,vantani,.ti.,.nt.$.pl.$.voc.,5,0.3
+vanta,vantāni,.ti.,.nt.$.pl.$.voc.,5,0.3
+vanta,vantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vantasmā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vantasmā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vantasmiṃ,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vantasmiṃ,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+vanta,vantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+vanta,vantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+vanta,vantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+vanta,vantassa,.ti.,.m.$.sg.$.dat.,5,0.99
+vanta,vantassa,.ti.,.m.$.sg.$.gen.,5,0.99
+vanta,vantassa,.ti.,.nt.$.sg.$.dat.,5,0.99
+vanta,vantassa,.ti.,.nt.$.sg.$.gen.,5,0.99
+vanta,vante,.ti.,.m.$.pl.$.acc.,5,0.99
+vanta,vante,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vante,.ti.,.nt.$.pl.$.acc.,5,0.99
+vanta,vante,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vantebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+vanta,vantebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+vanta,vantebhi,.ti.,.nt.$.pl.$.abl.,5,0.99
+vanta,vantebhi,.ti.,.nt.$.pl.$.inst.,5,0.99
+vanta,vantehi,.ti.,.m.$.pl.$.abl.,5,0.99
+vanta,vantehi,.ti.,.m.$.pl.$.inst.,5,0.99
+vanta,vantehi,.ti.,.nt.$.pl.$.abl.,5,0.99
+vanta,vantehi,.ti.,.nt.$.pl.$.inst.,5,0.99
+vanta,vantesu,.ti.,.m.$.pl.$.loc.,5,0.99
+vanta,vantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+vanta,vantesu,.ti.,.nt.$.pl.$.loc.,5,0.99
+vanta,vantī,.ti.,.f.$.pl.$.acc.,5,0.99
+vanta,vantī,.ti.,.f.$.pl.$.nom.,5,0.99
+vanta,vantī,.ti.,.f.$.pl.$.voc.,5,0.3
+vanta,vantī,.ti.,.f.$.sg.$.nom.,5,0.99
+vanta,vantī,.ti.,.f.$.sg.$.voc.,5,0.3
+vanta,vantībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vanta,vantībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vanta,vantīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vanta,vantīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vanta,vantiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+vanta,vantīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+vanta,vantīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+vanta,vantīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+vanta,vantiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+vanta,vantiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+vanta,vantiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+vanta,vantiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+vanta,vantiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+vanta,vantiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+vanta,vantiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+vanta,vantiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+vanta,vantiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+vanta,vanto,.ti.,.m.$.pl.$.nom.,5,0.99
+vanta,vanto,.ti.,.m.$.pl.$.voc.,5,0.3
+vanta,vanto,.ti.,.m.$.sg.$.nom.,5,0.99
+vanta,vanto,.ti.,.nt.$.pl.$.nom.,5,0.99
+vanta,vanto,.ti.,.nt.$.pl.$.voc.,5,0.3
+vanta,vanto,.ti.,.nt.$.sg.$.nom.,5,0.99
+vanta,vatā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vatā,.ti.,.m.$.sg.$.inst.,5,0.99
+vanta,vatā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vatā,.ti.,.nt.$.sg.$.inst.,5,0.99
+vanta,vatā,.ti.,.m.$.sg.$.abl.,5,0.99
+vanta,vatā,.ti.,.m.$.sg.$.inst.,5,0.99
+vanta,vatā,.ti.,.nt.$.sg.$.abl.,5,0.99
+vanta,vatā,.ti.,.nt.$.sg.$.inst.,5,0.99
+vanta,vataṃ,.ti.,.m.$.pl.$.dat.,5,0.99
+vanta,vataṃ,.ti.,.m.$.pl.$.gen.,5,0.99
+vanta,vataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vanta,vataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vanta,vataṃ,.ti.,.nt.$.pl.$.dat.,5,0.99
+vanta,vataṃ,.ti.,.nt.$.pl.$.gen.,5,0.99
+vanta,vatena,.ti.,.m.$.sg.$.inst.,5,0.99
+vanta,vatena,.ti.,.nt.$.sg.$.inst.,5,0.99
+vanta,vatena,.ti.,.m.$.sg.$.inst.,5,0.99
+vanta,vatena,.ti.,.nt.$.sg.$.inst.,5,0.99
+vanta,vatī,.ti.,.f.$.pl.$.acc.,5,0.99
+vanta,vatī,.ti.,.f.$.pl.$.nom.,5,0.99
+vanta,vatī,.ti.,.f.$.pl.$.voc.,5,0.3
+vanta,vatī,.ti.,.f.$.sg.$.nom.,5,0.99
+vanta,vatī,.ti.,.f.$.sg.$.voc.,5,0.3
+vanta,vati,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vati,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vati,.ti.,.m.$.sg.$.loc.,5,0.99
+vanta,vati,.ti.,.nt.$.sg.$.loc.,5,0.99
+vanta,vatībhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vanta,vatībhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vanta,vatīhi,.ti.,.f.$.pl.$.abl.,5,0.99
+vanta,vatīhi,.ti.,.f.$.pl.$.inst.,5,0.99
+vanta,vatiṃ,.ti.,.f.$.sg.$.acc.,5,0.99
+vanta,vatīnaṃ,.ti.,.f.$.pl.$.dat.,5,0.99
+vanta,vatīnaṃ,.ti.,.f.$.pl.$.gen.,5,0.99
+vanta,vatīsu,.ti.,.f.$.pl.$.loc.,5,0.99
+vanta,vatiyā,.ti.,.f.$.sg.$.abl.,5,0.99
+vanta,vatiyā,.ti.,.f.$.sg.$.dat.,5,0.99
+vanta,vatiyā,.ti.,.f.$.sg.$.gen.,5,0.99
+vanta,vatiyā,.ti.,.f.$.sg.$.inst.,5,0.99
+vanta,vatiyā,.ti.,.f.$.sg.$.loc.,5,0.99
+vanta,vatiyaṃ,.ti.,.f.$.sg.$.loc.,5,0.99
+vanta,vatiyo,.ti.,.f.$.pl.$.acc.,5,0.99
+vanta,vatiyo,.ti.,.f.$.pl.$.nom.,5,0.99
+vanta,vatiyo,.ti.,.f.$.pl.$.voc.,5,0.3
+vanta,vato,.ti.,.m.$.sg.$.dat.,5,0.99
+vanta,vato,.ti.,.m.$.sg.$.gen.,5,0.99
+vanta,vato,.ti.,.nt.$.sg.$.dat.,5,0.99
+vanta,vato,.ti.,.nt.$.sg.$.gen.,5,0.99
+vanta,vato,.ti.,.m.$.sg.$.dat.,5,0.99
+vanta,vato,.ti.,.m.$.sg.$.gen.,5,0.99
+vanta,vato,.ti.,.nt.$.sg.$.dat.,5,0.99
+vanta,vato,.ti.,.nt.$.sg.$.gen.,5,0.99
+vanta,ve,.ti.,.m.$.pl.$.acc.,5,0.99
+vanta,vebhi,.ti.,.m.$.pl.$.abl.,5,0.99
+vanta,vebhi,.ti.,.m.$.pl.$.inst.,5,0.99
+vanta,vehi,.ti.,.m.$.pl.$.abl.,5,0.99
+vanta,vehi,.ti.,.m.$.pl.$.inst.,5,0.99
+vanta,vesu,.ti.,.m.$.pl.$.loc.,5,0.99
+a,o,.n.,.m.$.sg.$.nom.,1,0.99
+a,a,.n.,.m.$.sg.$.voc.,1,0.3
+a,ā,.n.,.m.$.sg.$.voc.,1,0.3
+a,aṃ,.n.,.m.$.sg.$.acc.,1,0.99
+a,assa,.n.,.m.$.sg.$.gen.,1,0.99
+a,assa,.n.,.m.$.sg.$.dat.,1,0.99
+a,āya,.n.,.m.$.sg.$.dat.,1,0.99
+a,ena,.n.,.m.$.sg.$.inst.,1,0.99
+a,ā,.n.,.m.$.sg.$.abl.,1,0.99
+a,asmā,.n.,.m.$.sg.$.abl.,1,0.99
+a,amhā,.n.,.m.$.sg.$.abl.,1,0.99
+a,ato,.n.,.m.$.sg.$.abl.,1,0.99
+a,e,.n.,.m.$.sg.$.loc.,1,0.99
+a,asmiṃ,.n.,.m.$.sg.$.loc.,1,0.99
+a,amhi,.n.,.m.$.sg.$.loc.,1,0.99
+a,ā,.n.,.m.$.pl.$.nom.,1,0.99
+a,āse,.n.,.m.$.pl.$.nom.,1,0.99
+a,ā,.n.,.m.$.pl.$.voc.,1,0.3
+a,e,.n.,.m.$.pl.$.acc.,1,0.99
+a,ānaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+a,ānaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+a,ehi,.n.,.m.$.pl.$.inst.,1,0.99
+a,ebhi,.n.,.m.$.pl.$.inst.,1,0.99
+a,ehi,.n.,.m.$.pl.$.abl.,1,0.99
+a,ebhi,.n.,.m.$.pl.$.abl.,1,0.99
+a,esu,.n.,.m.$.pl.$.loc.,1,0.99
+a,aṃ,.n.,.nt.$.sg.$.nom.,1,0.99
+a,a,.n.,.nt.$.sg.$.voc.,1,0.3
+a,aṃ,.n.,.nt.$.sg.$.acc.,1,0.99
+a,assa,.n.,.nt.$.sg.$.gen.,1,0.99
+a,assa,.n.,.nt.$.sg.$.dat.,1,0.99
+a,āya,.n.,.nt.$.sg.$.dat.,1,0.99
+a,ena,.n.,.nt.$.sg.$.inst.,1,0.99
+a,ā,.n.,.nt.$.sg.$.abl.,1,0.99
+a,asmā,.n.,.nt.$.sg.$.abl.,1,0.99
+a,amhā,.n.,.nt.$.sg.$.abl.,1,0.99
+a,ato,.n.,.nt.$.sg.$.abl.,1,0.99
+a,e,.n.,.nt.$.sg.$.loc.,1,0.99
+a,asmiṃ,.n.,.nt.$.sg.$.loc.,1,0.99
+a,amhi,.n.,.nt.$.sg.$.loc.,1,0.99
+a,āni,.n.,.nt.$.pl.$.nom.,1,0.99
+a,ā,.n.,.nt.$.pl.$.nom.,1,0.99
+a,āni,.n.,.nt.$.pl.$.voc.,1,0.3
+a,ā,.n.,.nt.$.pl.$.voc.,1,0.3
+a,āni,.n.,.nt.$.pl.$.acc.,1,0.99
+a,e,.n.,.nt.$.pl.$.acc.,1,0.99
+a,ānaṃ,.n.,.nt.$.pl.$.gen.,1,0.99
+a,ānaṃ,.n.,.nt.$.pl.$.dat.,1,0.99
+a,ehi,.n.,.nt.$.pl.$.inst.,1,0.99
+a,ebhi,.n.,.nt.$.pl.$.inst.,1,0.99
+a,ehi,.n.,.nt.$.pl.$.abl.,1,0.99
+a,ebhi,.n.,.nt.$.pl.$.abl.,1,0.99
+a,esu,.n.,.nt.$.pl.$.loc.,1,0.99
+a,esaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+a,esaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+a,esaṃ,.n.,.nt.$.pl.$.dat.,1,0.99
+a,esaṃ,.n.,.nt.$.pl.$.gen.,1,0.99
+ā,ā,.n.,.f.$.sg.$.nom.,1,0.99
+ā,ā,.n.,.f.$.sg.$.voc.,1,0.3
+ā,e,.n.,.f.$.sg.$.voc.,1,0.3
+ā,aṃ,.n.,.f.$.sg.$.acc.,1,0.99
+ā,āya,.n.,.f.$.sg.$.gen.,1,0.99
+ā,āya,.n.,.f.$.sg.$.dat.,1,0.99
+ā,āya,.n.,.f.$.sg.$.inst.,1,0.99
+ā,āya,.n.,.f.$.sg.$.abl.,1,0.99
+ā,ato,.n.,.f.$.sg.$.abl.,1,0.99
+ā,āya,.n.,.f.$.sg.$.loc.,1,0.99
+ā,āyaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+ā,ā,.n.,.f.$.pl.$.nom.,1,0.99
+ā,āyo,.n.,.f.$.pl.$.nom.,1,0.99
+ā,ā,.n.,.f.$.pl.$.voc.,1,0.3
+ā,āyo,.n.,.f.$.pl.$.voc.,1,0.3
+ā,ā,.n.,.f.$.pl.$.acc.,1,0.99
+ā,āyo,.n.,.f.$.pl.$.acc.,1,0.99
+ā,ānaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+ā,ānaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+ā,āhi,.n.,.f.$.pl.$.inst.,1,0.99
+ā,ābhi,.n.,.f.$.pl.$.inst.,1,0.99
+ā,āhi,.n.,.f.$.pl.$.abl.,1,0.99
+ā,ābhi,.n.,.f.$.pl.$.abl.,1,0.99
+ā,āsu,.n.,.f.$.pl.$.loc.,1,0.99
+i,i,.n.,.m.$.sg.$.nom.,1,0.99
+i,i,.n.,.m.$.sg.$.voc.,1,0.3
+i,iṃ,.n.,.m.$.sg.$.acc.,1,0.99
+i,issa,.n.,.m.$.sg.$.gen.,1,0.99
+i,ino,.n.,.m.$.sg.$.gen.,1,0.99
+i,issa,.n.,.m.$.sg.$.dat.,1,0.99
+i,ino,.n.,.m.$.sg.$.dat.,1,0.99
+i,inā,.n.,.m.$.sg.$.inst.,1,0.99
+i,inā,.n.,.m.$.sg.$.abl.,1,0.99
+i,ismā,.n.,.m.$.sg.$.abl.,1,0.99
+i,imhā,.n.,.m.$.sg.$.abl.,1,0.99
+i,ismiṃ,.n.,.m.$.sg.$.loc.,1,0.99
+i,imhi,.n.,.m.$.sg.$.loc.,1,0.99
+i,ī,.n.,.m.$.pl.$.nom.,1,0.99
+i,ayo,.n.,.m.$.pl.$.nom.,1,0.99
+i,ī,.n.,.m.$.pl.$.voc.,1,0.3
+i,ayo,.n.,.m.$.pl.$.voc.,1,0.3
+i,ī,.n.,.m.$.pl.$.acc.,1,0.99
+i,ayo,.n.,.m.$.pl.$.acc.,1,0.99
+i,īnaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+i,īnaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+i,īhi,.n.,.m.$.pl.$.inst.,1,0.99
+i,ībhi,.n.,.m.$.pl.$.inst.,1,0.99
+i,īhi,.n.,.m.$.pl.$.abl.,1,0.99
+i,ībhi,.n.,.m.$.pl.$.abl.,1,0.99
+i,īsu,.n.,.m.$.pl.$.loc.,1,0.99
+i,i,.n.,.nt.$.sg.$.nom.,1,0.99
+i,i,.n.,.nt.$.sg.$.voc.,1,0.3
+i,iṃ,.n.,.nt.$.sg.$.acc.,1,0.99
+i,assa,.n.,.nt.$.sg.$.gen.,1,0.99
+i,ino,.n.,.nt.$.sg.$.gen.,1,0.99
+i,assa,.n.,.nt.$.sg.$.dat.,1,0.99
+i,ino,.n.,.nt.$.sg.$.dat.,1,0.99
+i,inā,.n.,.nt.$.sg.$.inst.,1,0.99
+i,inā,.n.,.nt.$.sg.$.abl.,1,0.99
+i,ismā,.n.,.nt.$.sg.$.abl.,1,0.99
+i,imhā,.n.,.nt.$.sg.$.abl.,1,0.99
+i,ismiṃ,.n.,.nt.$.sg.$.loc.,1,0.99
+i,imhi,.n.,.nt.$.sg.$.loc.,1,0.99
+i,īni,.n.,.nt.$.pl.$.nom.,1,0.99
+i,ī,.n.,.nt.$.pl.$.nom.,1,0.99
+i,īni,.n.,.nt.$.pl.$.voc.,1,0.3
+i,ī,.n.,.nt.$.pl.$.voc.,1,0.3
+i,īni,.n.,.nt.$.pl.$.acc.,1,0.99
+i,ī,.n.,.nt.$.pl.$.acc.,1,0.99
+i,īnaṃ,.n.,.nt.$.pl.$.gen.,1,0.99
+i,īnaṃ,.n.,.nt.$.pl.$.dat.,1,0.99
+i,īhi,.n.,.nt.$.pl.$.inst.,1,0.99
+i,ībhi,.n.,.nt.$.pl.$.inst.,1,0.99
+i,īhi,.n.,.nt.$.pl.$.abl.,1,0.99
+i,ībhi,.n.,.nt.$.pl.$.abl.,1,0.99
+i,īsu,.n.,.nt.$.pl.$.loc.,1,0.99
+i,i,.n.,.f.$.sg.$.nom.,1,0.99
+i,i,.n.,.f.$.sg.$.voc.,1,0.3
+i,iṃ,.n.,.f.$.sg.$.acc.,1,0.99
+i,iyā,.n.,.f.$.sg.$.gen.,1,0.99
+i,yā,.n.,.f.$.sg.$.gen.,1,0.99
+i,iyā,.n.,.f.$.sg.$.dat.,1,0.99
+i,yā,.n.,.f.$.sg.$.dat.,1,0.99
+i,iyā,.n.,.f.$.sg.$.inst.,1,0.99
+i,yā,.n.,.f.$.sg.$.inst.,1,0.99
+i,iyā,.n.,.f.$.sg.$.abl.,1,0.99
+i,yā,.n.,.f.$.sg.$.abl.,1,0.99
+i,iyā,.n.,.f.$.sg.$.loc.,1,0.99
+i,yā,.n.,.f.$.sg.$.loc.,1,0.99
+i,iyaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+i,yaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+i,ī,.n.,.f.$.pl.$.nom.,1,0.99
+i,iyo,.n.,.f.$.pl.$.nom.,1,0.99
+i,yo,.n.,.f.$.pl.$.nom.,1,0.99
+i,ī,.n.,.f.$.pl.$.voc.,1,0.3
+i,iyo,.n.,.f.$.pl.$.voc.,1,0.3
+i,yo,.n.,.f.$.pl.$.voc.,1,0.3
+i,ī,.n.,.f.$.pl.$.acc.,1,0.99
+i,iyo,.n.,.f.$.pl.$.acc.,1,0.99
+i,yo,.n.,.f.$.pl.$.acc.,1,0.99
+i,īnaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+i,īnaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+i,īhi,.n.,.f.$.pl.$.inst.,1,0.99
+i,ībhi,.n.,.f.$.pl.$.inst.,1,0.99
+i,īhi,.n.,.f.$.pl.$.abl.,1,0.99
+i,ībhi,.n.,.f.$.pl.$.abl.,1,0.99
+i,īsu,.n.,.f.$.pl.$.loc.,1,0.99
+ī,ī,.n.,.m.$.sg.$.nom.,1,0.99
+in,ī,.n.,.m.$.sg.$.nom.,2,0.99
+ī,ī,.n.,.m.$.sg.$.voc.,1,0.3
+ī,inī,.n.,.m.$.sg.$.voc.,1,0.3
+in,ī,.n.,.m.$.sg.$.voc.,2,0.3
+in,inī,.n.,.m.$.sg.$.voc.,2,0.3
+ī,iṃ,.n.,.m.$.sg.$.acc.,1,0.99
+ī,inaṃ,.n.,.m.$.sg.$.acc.,1,0.99
+in,iṃ,.n.,.m.$.sg.$.acc.,2,0.99
+in,inaṃ,.n.,.m.$.sg.$.acc.,2,0.99
+ī,issa,.n.,.m.$.sg.$.gen.,1,0.99
+ī,ino,.n.,.m.$.sg.$.gen.,1,0.99
+in,issa,.n.,.m.$.sg.$.gen.,2,0.99
+in,ino,.n.,.m.$.sg.$.gen.,2,0.99
+ī,issa,.n.,.m.$.sg.$.dat.,1,0.99
+ī,ino,.n.,.m.$.sg.$.dat.,1,0.99
+in,issa,.n.,.m.$.sg.$.dat.,2,0.99
+in,ino,.n.,.m.$.sg.$.dat.,2,0.99
+ī,inā,.n.,.m.$.sg.$.inst.,1,0.99
+in,inā,.n.,.m.$.sg.$.inst.,2,0.99
+ī,inā,.n.,.m.$.sg.$.abl.,1,0.99
+ī,ismā,.n.,.m.$.sg.$.abl.,1,0.99
+ī,imhā,.n.,.m.$.sg.$.abl.,1,0.99
+in,inā,.n.,.m.$.sg.$.abl.,2,0.99
+in,ismā,.n.,.m.$.sg.$.abl.,2,0.99
+in,imhā,.n.,.m.$.sg.$.abl.,2,0.99
+ī,ismiṃ,.n.,.m.$.sg.$.loc.,1,0.99
+ī,imhi,.n.,.m.$.sg.$.loc.,1,0.99
+in,ismiṃ,.n.,.m.$.sg.$.loc.,2,0.99
+in,imhi,.n.,.m.$.sg.$.loc.,2,0.99
+ī,ī,.n.,.m.$.pl.$.nom.,1,0.99
+ī,ino,.n.,.m.$.pl.$.nom.,1,0.99
+in,ī,.n.,.m.$.pl.$.nom.,2,0.99
+in,ino,.n.,.m.$.pl.$.nom.,2,0.99
+ī,ī,.n.,.m.$.pl.$.voc.,1,0.3
+ī,ino,.n.,.m.$.pl.$.voc.,1,0.3
+in,ī,.n.,.m.$.pl.$.voc.,2,0.3
+in,ino,.n.,.m.$.pl.$.voc.,2,0.3
+ī,ī,.n.,.m.$.pl.$.acc.,1,0.99
+ī,ino,.n.,.m.$.pl.$.acc.,1,0.99
+in,ī,.n.,.m.$.pl.$.acc.,2,0.99
+in,ino,.n.,.m.$.pl.$.acc.,2,0.99
+ī,inaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+in,inaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+ī,inaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+in,inaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+ī,īhi,.n.,.m.$.pl.$.inst.,1,0.99
+ī,ībhi,.n.,.m.$.pl.$.inst.,1,0.99
+in,īhi,.n.,.m.$.pl.$.inst.,2,0.99
+in,ībhi,.n.,.m.$.pl.$.inst.,2,0.99
+ī,īhi,.n.,.m.$.pl.$.abl.,1,0.99
+ī,ībhi,.n.,.m.$.pl.$.abl.,1,0.99
+in,īhi,.n.,.m.$.pl.$.abl.,2,0.99
+in,ībhi,.n.,.m.$.pl.$.abl.,2,0.99
+ī,īsu,.n.,.m.$.pl.$.loc.,1,0.99
+in,īsu,.n.,.m.$.pl.$.loc.,2,0.99
+ī,ī,.n.,.f.$.sg.$.nom.,1,0.99
+ī,ī,.n.,.f.$.sg.$.voc.,1,0.3
+ī,iṃ,.n.,.f.$.sg.$.acc.,1,0.99
+ī,iyā,.n.,.f.$.sg.$.gen.,1,0.99
+ī,ayā,.n.,.f.$.sg.$.gen.,1,0.99
+ī,yā,.n.,.f.$.sg.$.gen.,1,0.99
+ī,iyā,.n.,.f.$.sg.$.dat.,1,0.99
+ī,ayā,.n.,.f.$.sg.$.dat.,1,0.99
+ī,yā,.n.,.f.$.sg.$.dat.,1,0.99
+ī,iyā,.n.,.f.$.sg.$.inst.,1,0.99
+ī,ayā,.n.,.f.$.sg.$.inst.,1,0.99
+ī,yā,.n.,.f.$.sg.$.inst.,1,0.99
+ī,iyā,.n.,.f.$.sg.$.abl.,1,0.99
+ī,ayā,.n.,.f.$.sg.$.abl.,1,0.99
+ī,yā,.n.,.f.$.sg.$.abl.,1,0.99
+ī,iyā,.n.,.f.$.sg.$.loc.,1,0.99
+ī,ayā,.n.,.f.$.sg.$.loc.,1,0.99
+ī,yā,.n.,.f.$.sg.$.loc.,1,0.99
+ī,iyaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+ī,ayaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+ī,yaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+ī,ī,.n.,.f.$.pl.$.nom.,1,0.99
+ī,iyo,.n.,.f.$.pl.$.nom.,1,0.99
+ī,yo,.n.,.f.$.pl.$.nom.,1,0.99
+ī,ī,.n.,.f.$.pl.$.voc.,1,0.3
+ī,iyo,.n.,.f.$.pl.$.voc.,1,0.3
+ī,yo,.n.,.f.$.pl.$.voc.,1,0.3
+ī,ī,.n.,.f.$.pl.$.acc.,1,0.99
+ī,iyo,.n.,.f.$.pl.$.acc.,1,0.99
+ī,yo,.n.,.f.$.pl.$.acc.,1,0.99
+ī,īnaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+ī,īnaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+ī,īhi,.n.,.f.$.pl.$.inst.,1,0.99
+ī,ībhi,.n.,.f.$.pl.$.inst.,1,0.99
+ī,īhi,.n.,.f.$.pl.$.abl.,1,0.99
+ī,ībhi,.n.,.f.$.pl.$.abl.,1,0.99
+ī,īsu,.n.,.f.$.pl.$.loc.,1,0.99
+u,u,.n.,.m.$.sg.$.nom.,1,0.99
+u,u,.n.,.m.$.sg.$.voc.,1,0.3
+u,uṃ,.n.,.m.$.sg.$.acc.,1,0.99
+u,ussa,.n.,.m.$.sg.$.gen.,1,0.99
+u,uno,.n.,.m.$.sg.$.gen.,1,0.99
+u,ussa,.n.,.m.$.sg.$.dat.,1,0.99
+u,uno,.n.,.m.$.sg.$.dat.,1,0.99
+u,unā,.n.,.m.$.sg.$.inst.,1,0.99
+u,unā,.n.,.m.$.sg.$.abl.,1,0.99
+u,usmā,.n.,.m.$.sg.$.abl.,1,0.99
+u,umhā,.n.,.m.$.sg.$.abl.,1,0.99
+u,usmiṃ,.n.,.m.$.sg.$.loc.,1,0.99
+u,umhi,.n.,.m.$.sg.$.loc.,1,0.99
+u,ū,.n.,.m.$.pl.$.nom.,1,0.99
+u,avo,.n.,.m.$.pl.$.nom.,1,0.99
+u,ū,.n.,.m.$.pl.$.voc.,1,0.3
+u,avo,.n.,.m.$.pl.$.voc.,1,0.3
+u,ave,.n.,.m.$.pl.$.voc.,1,0.3
+u,ū,.n.,.m.$.pl.$.acc.,1,0.99
+u,avo,.n.,.m.$.pl.$.acc.,1,0.99
+u,ūnaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+u,ūnaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+u,ūhi,.n.,.m.$.pl.$.inst.,1,0.99
+u,ūbhi,.n.,.m.$.pl.$.inst.,1,0.99
+u,ūhi,.n.,.m.$.pl.$.abl.,1,0.99
+u,ūbhi,.n.,.m.$.pl.$.abl.,1,0.99
+u,ūsu,.n.,.m.$.pl.$.loc.,1,0.99
+u,u,.n.,.nt.$.sg.$.nom.,1,0.99
+u,u,.n.,.nt.$.sg.$.voc.,1,0.3
+u,uṃ,.n.,.nt.$.sg.$.acc.,1,0.99
+u,ussa,.n.,.nt.$.sg.$.gen.,1,0.99
+u,uno,.n.,.nt.$.sg.$.gen.,1,0.99
+u,ussa,.n.,.nt.$.sg.$.dat.,1,0.99
+u,uno,.n.,.nt.$.sg.$.dat.,1,0.99
+u,unā,.n.,.nt.$.sg.$.inst.,1,0.99
+u,unā,.n.,.nt.$.sg.$.abl.,1,0.99
+u,usmā,.n.,.nt.$.sg.$.abl.,1,0.99
+u,umhā,.n.,.nt.$.sg.$.abl.,1,0.99
+u,usmiṃ,.n.,.nt.$.sg.$.loc.,1,0.99
+u,umhi,.n.,.nt.$.sg.$.loc.,1,0.99
+u,ū,.n.,.nt.$.pl.$.nom.,1,0.99
+u,ūni,.n.,.nt.$.pl.$.nom.,1,0.99
+u,ū,.n.,.nt.$.pl.$.voc.,1,0.3
+u,ūni,.n.,.nt.$.pl.$.voc.,1,0.3
+u,ū,.n.,.nt.$.pl.$.acc.,1,0.99
+u,ūni,.n.,.nt.$.pl.$.acc.,1,0.99
+u,ūnaṃ,.n.,.nt.$.pl.$.gen.,1,0.99
+u,ūnaṃ,.n.,.nt.$.pl.$.dat.,1,0.99
+u,ūhi,.n.,.nt.$.pl.$.inst.,1,0.99
+u,ūbhi,.n.,.nt.$.pl.$.inst.,1,0.99
+u,ūhi,.n.,.nt.$.pl.$.abl.,1,0.99
+u,ūbhi,.n.,.nt.$.pl.$.abl.,1,0.99
+u,ūsu,.n.,.nt.$.pl.$.loc.,1,0.99
+u,u,.n.,.f.$.sg.$.nom.,1,0.99
+u,u,.n.,.f.$.sg.$.voc.,1,0.3
+u,uṃ,.n.,.f.$.sg.$.acc.,1,0.99
+u,uyā,.n.,.f.$.sg.$.gen.,1,0.99
+u,uyā,.n.,.f.$.sg.$.dat.,1,0.99
+u,uyā,.n.,.f.$.sg.$.inst.,1,0.99
+u,uyā,.n.,.f.$.sg.$.abl.,1,0.99
+u,uto,.n.,.f.$.sg.$.abl.,1,0.99
+u,uyā,.n.,.f.$.sg.$.loc.,1,0.99
+u,uyaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+u,ū,.n.,.f.$.pl.$.nom.,1,0.99
+u,uyo,.n.,.f.$.pl.$.nom.,1,0.99
+u,ūvo,.n.,.f.$.pl.$.nom.,1,0.99
+u,ū,.n.,.f.$.pl.$.voc.,1,0.3
+u,uyo,.n.,.f.$.pl.$.voc.,1,0.3
+u,ū,.n.,.f.$.pl.$.acc.,1,0.99
+u,uyo,.n.,.f.$.pl.$.acc.,1,0.99
+u,ūnaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+u,ūnaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+u,ūhi,.n.,.f.$.pl.$.inst.,1,0.99
+u,ūbhi,.n.,.f.$.pl.$.inst.,1,0.99
+u,ūhi,.n.,.f.$.pl.$.abl.,1,0.99
+u,ūbhi,.n.,.f.$.pl.$.abl.,1,0.99
+u,ūsu,.n.,.f.$.pl.$.loc.,1,0.99
+ū,ū,.n.,.m.$.sg.$.nom.,1,0.99
+ū,ū,.n.,.m.$.sg.$.voc.,1,0.3
+ū,uṃ,.n.,.m.$.sg.$.acc.,1,0.99
+ū,ussa,.n.,.m.$.sg.$.gen.,1,0.99
+ū,uno,.n.,.m.$.sg.$.gen.,1,0.99
+ū,ussa,.n.,.m.$.sg.$.dat.,1,0.99
+ū,uno,.n.,.m.$.sg.$.dat.,1,0.99
+ū,unā,.n.,.m.$.sg.$.inst.,1,0.99
+ū,unā,.n.,.m.$.sg.$.abl.,1,0.99
+ū,usmā,.n.,.m.$.sg.$.abl.,1,0.99
+ū,umhā,.n.,.m.$.sg.$.abl.,1,0.99
+ū,usmiṃ,.n.,.m.$.sg.$.loc.,1,0.99
+ū,umhi,.n.,.m.$.sg.$.loc.,1,0.99
+ū,ū,.n.,.m.$.pl.$.nom.,1,0.99
+ū,avo,.n.,.m.$.pl.$.nom.,1,0.99
+ū,ū,.n.,.m.$.pl.$.voc.,1,0.3
+ū,avo,.n.,.m.$.pl.$.voc.,1,0.3
+ū,ave,.n.,.m.$.pl.$.voc.,1,0.3
+ū,ū,.n.,.m.$.pl.$.acc.,1,0.99
+ū,avo,.n.,.m.$.pl.$.acc.,1,0.99
+ū,ūnaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+ū,ūnaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+ū,ūhi,.n.,.m.$.pl.$.inst.,1,0.99
+ū,ūbhi,.n.,.m.$.pl.$.inst.,1,0.99
+ū,ūhi,.n.,.m.$.pl.$.abl.,1,0.99
+ū,ūbhi,.n.,.m.$.pl.$.abl.,1,0.99
+ū,ūsu,.n.,.m.$.pl.$.loc.,1,0.99
+ū,ū,.n.,.f.$.sg.$.nom.,1,0.99
+ū,ū,.n.,.f.$.sg.$.voc.,1,0.3
+ū,uṃ,.n.,.f.$.sg.$.acc.,1,0.99
+ū,uyā,.n.,.f.$.sg.$.gen.,1,0.99
+ū,uyā,.n.,.f.$.sg.$.dat.,1,0.99
+ū,uyā,.n.,.f.$.sg.$.inst.,1,0.99
+ū,uyā,.n.,.f.$.sg.$.abl.,1,0.99
+ū,uto,.n.,.f.$.sg.$.abl.,1,0.99
+ū,uyā,.n.,.f.$.sg.$.loc.,1,0.99
+ū,uyaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+ū,ū,.n.,.f.$.pl.$.nom.,1,0.99
+ū,uyo,.n.,.f.$.pl.$.nom.,1,0.99
+ū,ū,.n.,.f.$.pl.$.voc.,1,0.3
+ū,uyo,.n.,.f.$.pl.$.voc.,1,0.3
+ū,ū,.n.,.f.$.pl.$.acc.,1,0.99
+ū,uyo,.n.,.f.$.pl.$.acc.,1,0.99
+ū,ūnaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+ū,ūnaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+ū,ūhi,.n.,.f.$.pl.$.inst.,1,0.99
+ū,ūbhi,.n.,.f.$.pl.$.inst.,1,0.99
+ū,ūhi,.n.,.f.$.pl.$.abl.,1,0.99
+ū,ūbhi,.n.,.f.$.pl.$.abl.,1,0.99
+ū,ūsu,.n.,.f.$.pl.$.loc.,1,0.99
+as,o,.n.,.m.$.sg.$.nom.,2,0.99
+as,aṃ,.n.,.m.$.sg.$.nom.,2,0.99
+o,o,.n.,.m.$.sg.$.nom.,1,0.99
+o,aṃ,.n.,.m.$.sg.$.nom.,1,0.99
+as,o,.n.,.m.$.sg.$.voc.,2,0.3
+as,aṃ,.n.,.m.$.sg.$.voc.,2,0.3
+as,ā,.n.,.m.$.sg.$.voc.,2,0.3
+as,a,.n.,.m.$.sg.$.voc.,2,0.3
+o,o,.n.,.m.$.sg.$.voc.,1,0.3
+o,aṃ,.n.,.m.$.sg.$.voc.,1,0.3
+o,ā,.n.,.m.$.sg.$.voc.,1,0.3
+o,a,.n.,.m.$.sg.$.voc.,1,0.3
+as,o,.n.,.m.$.sg.$.acc.,2,0.99
+as,aṃ,.n.,.m.$.sg.$.acc.,2,0.99
+o,o,.n.,.m.$.sg.$.acc.,1,0.99
+o,aṃ,.n.,.m.$.sg.$.acc.,1,0.99
+as,aso,.n.,.m.$.sg.$.gen.,2,0.99
+as,assa,.n.,.m.$.sg.$.gen.,2,0.99
+o,aso,.n.,.m.$.sg.$.gen.,1,0.99
+o,assa,.n.,.m.$.sg.$.gen.,1,0.99
+as,aso,.n.,.m.$.sg.$.dat.,2,0.99
+as,assa,.n.,.m.$.sg.$.dat.,2,0.99
+o,aso,.n.,.m.$.sg.$.dat.,1,0.99
+o,assa,.n.,.m.$.sg.$.dat.,1,0.99
+as,asā,.n.,.m.$.sg.$.inst.,2,0.99
+as,ena,.n.,.m.$.sg.$.inst.,2,0.99
+o,asā,.n.,.m.$.sg.$.inst.,1,0.99
+o,ena,.n.,.m.$.sg.$.inst.,1,0.99
+as,asā,.n.,.m.$.sg.$.abl.,2,0.99
+as,asmā,.n.,.m.$.sg.$.abl.,2,0.99
+as,amhā,.n.,.m.$.sg.$.abl.,2,0.99
+as,ā,.n.,.m.$.sg.$.abl.,2,0.99
+o,asā,.n.,.m.$.sg.$.abl.,1,0.99
+o,asmā,.n.,.m.$.sg.$.abl.,1,0.99
+o,amhā,.n.,.m.$.sg.$.abl.,1,0.99
+o,ā,.n.,.m.$.sg.$.abl.,1,0.99
+as,asi,.n.,.m.$.sg.$.loc.,2,0.99
+as,e,.n.,.m.$.sg.$.loc.,2,0.99
+as,asmiṃ,.n.,.m.$.sg.$.loc.,2,0.99
+as,amhi,.n.,.m.$.sg.$.loc.,2,0.99
+o,asi,.n.,.m.$.sg.$.loc.,1,0.99
+o,e,.n.,.m.$.sg.$.loc.,1,0.99
+o,asmiṃ,.n.,.m.$.sg.$.loc.,1,0.99
+o,amhi,.n.,.m.$.sg.$.loc.,1,0.99
+as,ā,.n.,.m.$.pl.$.nom.,2,0.99
+o,ā,.n.,.m.$.pl.$.nom.,1,0.99
+as,ā,.n.,.m.$.pl.$.voc.,2,0.3
+o,ā,.n.,.m.$.pl.$.voc.,1,0.3
+as,e,.n.,.m.$.pl.$.acc.,2,0.99
+o,e,.n.,.m.$.pl.$.acc.,1,0.99
+as,ānaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+o,ānaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+as,ānaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+o,ānaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+as,ehi,.n.,.m.$.pl.$.inst.,2,0.99
+as,ebhi,.n.,.m.$.pl.$.inst.,2,0.99
+o,ehi,.n.,.m.$.pl.$.inst.,1,0.99
+o,ebhi,.n.,.m.$.pl.$.inst.,1,0.99
+as,ehi,.n.,.m.$.pl.$.abl.,2,0.99
+as,ebhi,.n.,.m.$.pl.$.abl.,2,0.99
+o,ehi,.n.,.m.$.pl.$.abl.,1,0.99
+o,ebhi,.n.,.m.$.pl.$.abl.,1,0.99
+as,esu,.n.,.m.$.pl.$.loc.,2,0.99
+o,esu,.n.,.m.$.pl.$.loc.,1,0.99
+as,o,.n.,.nt.$.sg.$.nom.,2,0.99
+as,aṃ,.n.,.nt.$.sg.$.nom.,2,0.99
+o,o,.n.,.nt.$.sg.$.nom.,1,0.99
+o,aṃ,.n.,.nt.$.sg.$.nom.,1,0.99
+as,o,.n.,.nt.$.sg.$.voc.,2,0.3
+as,aṃ,.n.,.nt.$.sg.$.voc.,2,0.3
+as,ā,.n.,.nt.$.sg.$.voc.,2,0.3
+as,a,.n.,.nt.$.sg.$.voc.,2,0.3
+o,o,.n.,.nt.$.sg.$.voc.,1,0.3
+o,aṃ,.n.,.nt.$.sg.$.voc.,1,0.3
+o,ā,.n.,.nt.$.sg.$.voc.,1,0.3
+o,a,.n.,.nt.$.sg.$.voc.,1,0.3
+as,o,.n.,.nt.$.sg.$.acc.,2,0.99
+as,aṃ,.n.,.nt.$.sg.$.acc.,2,0.99
+o,o,.n.,.nt.$.sg.$.acc.,1,0.99
+o,aṃ,.n.,.nt.$.sg.$.acc.,1,0.99
+as,aso,.n.,.nt.$.sg.$.gen.,2,0.99
+as,assa,.n.,.nt.$.sg.$.gen.,2,0.99
+o,aso,.n.,.nt.$.sg.$.gen.,1,0.99
+o,assa,.n.,.nt.$.sg.$.gen.,1,0.99
+as,aso,.n.,.nt.$.sg.$.dat.,2,0.99
+as,assa,.n.,.nt.$.sg.$.dat.,2,0.99
+o,aso,.n.,.nt.$.sg.$.dat.,1,0.99
+o,assa,.n.,.nt.$.sg.$.dat.,1,0.99
+as,asā,.n.,.nt.$.sg.$.inst.,2,0.99
+as,ena,.n.,.nt.$.sg.$.inst.,2,0.99
+o,asā,.n.,.nt.$.sg.$.inst.,1,0.99
+o,ena,.n.,.nt.$.sg.$.inst.,1,0.99
+as,asā,.n.,.nt.$.sg.$.abl.,2,0.99
+as,asmā,.n.,.nt.$.sg.$.abl.,2,0.99
+as,amhā,.n.,.nt.$.sg.$.abl.,2,0.99
+as,ā,.n.,.nt.$.sg.$.abl.,2,0.99
+o,asā,.n.,.nt.$.sg.$.abl.,1,0.99
+o,asmā,.n.,.nt.$.sg.$.abl.,1,0.99
+o,amhā,.n.,.nt.$.sg.$.abl.,1,0.99
+o,ā,.n.,.nt.$.sg.$.abl.,1,0.99
+as,asi,.n.,.nt.$.sg.$.loc.,2,0.99
+as,e,.n.,.nt.$.sg.$.loc.,2,0.99
+as,asmiṃ,.n.,.nt.$.sg.$.loc.,2,0.99
+as,amhi,.n.,.nt.$.sg.$.loc.,2,0.99
+o,asi,.n.,.nt.$.sg.$.loc.,1,0.99
+o,e,.n.,.nt.$.sg.$.loc.,1,0.99
+o,asmiṃ,.n.,.nt.$.sg.$.loc.,1,0.99
+o,amhi,.n.,.nt.$.sg.$.loc.,1,0.99
+as,ā,.n.,.nt.$.pl.$.nom.,2,0.99
+o,ā,.n.,.nt.$.pl.$.nom.,1,0.99
+as,ā,.n.,.nt.$.pl.$.voc.,2,0.3
+o,ā,.n.,.nt.$.pl.$.voc.,1,0.3
+as,e,.n.,.nt.$.pl.$.acc.,2,0.99
+o,e,.n.,.nt.$.pl.$.acc.,1,0.99
+as,ānaṃ,.n.,.nt.$.pl.$.gen.,2,0.99
+o,ānaṃ,.n.,.nt.$.pl.$.gen.,1,0.99
+as,ānaṃ,.n.,.nt.$.pl.$.dat.,2,0.99
+o,ānaṃ,.n.,.nt.$.pl.$.dat.,1,0.99
+as,ehi,.n.,.nt.$.pl.$.inst.,2,0.99
+as,ebhi,.n.,.nt.$.pl.$.inst.,2,0.99
+o,ehi,.n.,.nt.$.pl.$.inst.,1,0.99
+o,ebhi,.n.,.nt.$.pl.$.inst.,1,0.99
+as,ehi,.n.,.nt.$.pl.$.abl.,2,0.99
+as,ebhi,.n.,.nt.$.pl.$.abl.,2,0.99
+o,ehi,.n.,.nt.$.pl.$.abl.,1,0.99
+o,ebhi,.n.,.nt.$.pl.$.abl.,1,0.99
+as,esu,.n.,.nt.$.pl.$.loc.,2,0.99
+o,esu,.n.,.nt.$.pl.$.loc.,1,0.99
+an,ā,.n.,.m.$.sg.$.nom.,2,0.99
+an,ā,.n.,.m.$.sg.$.voc.,2,0.3
+an,a,.n.,.m.$.sg.$.voc.,2,0.3
+an,aṃ,.n.,.m.$.sg.$.acc.,2,0.99
+an,ānaṃ,.n.,.m.$.sg.$.acc.,2,0.99
+an,anaṃ,.n.,.m.$.sg.$.acc.,2,0.99
+an,assa,.n.,.m.$.sg.$.gen.,2,0.99
+an,ano,.n.,.m.$.sg.$.gen.,2,0.99
+an,assa,.n.,.m.$.sg.$.dat.,2,0.99
+an,ano,.n.,.m.$.sg.$.dat.,2,0.99
+an,ena,.n.,.m.$.sg.$.inst.,2,0.99
+an,anā,.n.,.m.$.sg.$.inst.,2,0.99
+an,anā,.n.,.m.$.sg.$.abl.,2,0.99
+an,asmā,.n.,.m.$.sg.$.abl.,2,0.99
+an,amhā,.n.,.m.$.sg.$.abl.,2,0.99
+an,ani,.n.,.m.$.sg.$.loc.,2,0.99
+an,asmiṃ,.n.,.m.$.sg.$.loc.,2,0.99
+an,amhi,.n.,.m.$.sg.$.loc.,2,0.99
+an,ā,.n.,.m.$.pl.$.nom.,2,0.99
+an,āno,.n.,.m.$.pl.$.nom.,2,0.99
+an,ā,.n.,.m.$.pl.$.voc.,2,0.3
+an,āno,.n.,.m.$.pl.$.voc.,2,0.3
+an,āno,.n.,.m.$.pl.$.acc.,2,0.99
+an,e,.n.,.m.$.pl.$.acc.,2,0.99
+an,ānaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+an,ānaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+an,anehi,.n.,.m.$.pl.$.inst.,2,0.99
+an,anebhi,.n.,.m.$.pl.$.inst.,2,0.99
+an,anehi,.n.,.m.$.pl.$.abl.,2,0.99
+an,anebhi,.n.,.m.$.pl.$.abl.,2,0.99
+an,anesu,.n.,.m.$.pl.$.loc.,2,0.99
+an,aṃ,.n.,.nt.$.sg.$.nom.,2,0.99
+an,a,.n.,.nt.$.sg.$.voc.,2,0.3
+an,aṃ,.n.,.nt.$.sg.$.acc.,2,0.99
+an,assa,.n.,.nt.$.sg.$.gen.,2,0.99
+an,assa,.n.,.nt.$.sg.$.dat.,2,0.99
+an,āya,.n.,.nt.$.sg.$.dat.,2,0.99
+an,ena,.n.,.nt.$.sg.$.inst.,2,0.99
+an,ā,.n.,.nt.$.sg.$.abl.,2,0.99
+an,asmā,.n.,.nt.$.sg.$.abl.,2,0.99
+an,amhā,.n.,.nt.$.sg.$.abl.,2,0.99
+an,ato,.n.,.nt.$.sg.$.abl.,2,0.99
+an,e,.n.,.nt.$.sg.$.loc.,2,0.99
+an,asmiṃ,.n.,.nt.$.sg.$.loc.,2,0.99
+an,amhi,.n.,.nt.$.sg.$.loc.,2,0.99
+an,āni,.n.,.nt.$.pl.$.nom.,2,0.99
+an,ā,.n.,.nt.$.pl.$.nom.,2,0.99
+an,āni,.n.,.nt.$.pl.$.voc.,2,0.3
+an,ā,.n.,.nt.$.pl.$.voc.,2,0.3
+an,āni,.n.,.nt.$.pl.$.acc.,2,0.99
+an,e,.n.,.nt.$.pl.$.acc.,2,0.99
+an,ānaṃ,.n.,.nt.$.pl.$.gen.,2,0.99
+an,ānaṃ,.n.,.nt.$.pl.$.dat.,2,0.99
+an,ehi,.n.,.nt.$.pl.$.inst.,2,0.99
+an,ebhi,.n.,.nt.$.pl.$.inst.,2,0.99
+an,ehi,.n.,.nt.$.pl.$.abl.,2,0.99
+an,ebhi,.n.,.nt.$.pl.$.abl.,2,0.99
+an,esu,.n.,.nt.$.pl.$.loc.,2,0.99
+ar,ā,.n.,.f.$.sg.$.nom.,2,0.99
+ar,ā,.n.,.f.$.sg.$.voc.,2,0.3
+ar,aṃ,.n.,.f.$.sg.$.acc.,2,0.99
+ar,ānaṃ,.n.,.f.$.sg.$.acc.,2,0.99
+ar,assa,.n.,.f.$.sg.$.gen.,2,0.99
+ar,ino,.n.,.f.$.sg.$.gen.,2,0.99
+ar,assa,.n.,.f.$.sg.$.dat.,2,0.99
+ar,ino,.n.,.f.$.sg.$.dat.,2,0.99
+ar,ena,.n.,.f.$.sg.$.inst.,2,0.99
+ar,inā,.n.,.f.$.sg.$.inst.,2,0.99
+ar,asmā,.n.,.f.$.sg.$.abl.,2,0.99
+ar,amhā,.n.,.f.$.sg.$.abl.,2,0.99
+ar,ini,.n.,.f.$.sg.$.loc.,2,0.99
+ar,asmiṃ,.n.,.f.$.sg.$.loc.,2,0.99
+ar,amhi,.n.,.f.$.sg.$.loc.,2,0.99
+ar,ā,.n.,.f.$.pl.$.nom.,2,0.99
+ar,āno,.n.,.f.$.pl.$.nom.,2,0.99
+ar,ā,.n.,.f.$.pl.$.voc.,2,0.3
+ar,āno,.n.,.f.$.pl.$.voc.,2,0.3
+ar,ā,.n.,.f.$.pl.$.acc.,2,0.99
+ar,āno,.n.,.f.$.pl.$.acc.,2,0.99
+ar,ānaṃ,.n.,.f.$.pl.$.gen.,2,0.99
+ar,ānaṃ,.n.,.f.$.pl.$.dat.,2,0.99
+ar,ehi,.n.,.f.$.pl.$.inst.,2,0.99
+ar,āhi,.n.,.f.$.pl.$.inst.,2,0.99
+ar,ehi,.n.,.f.$.pl.$.abl.,2,0.99
+ar,āhi,.n.,.f.$.pl.$.abl.,2,0.99
+ar,esu,.n.,.f.$.pl.$.loc.,2,0.99
+ar,āsu,.n.,.f.$.pl.$.loc.,2,0.99
+ar,ā,.n.,.nt.$.sg.$.nom.,2,0.99
+ar,ā,.n.,.nt.$.sg.$.voc.,2,0.3
+ar,aṃ,.n.,.nt.$.sg.$.acc.,2,0.99
+ar,ānaṃ,.n.,.nt.$.sg.$.acc.,2,0.99
+ar,assa,.n.,.nt.$.sg.$.gen.,2,0.99
+ar,ino,.n.,.nt.$.sg.$.gen.,2,0.99
+ar,assa,.n.,.nt.$.sg.$.dat.,2,0.99
+ar,ino,.n.,.nt.$.sg.$.dat.,2,0.99
+ar,ena,.n.,.nt.$.sg.$.inst.,2,0.99
+ar,inā,.n.,.nt.$.sg.$.inst.,2,0.99
+ar,asmā,.n.,.nt.$.sg.$.abl.,2,0.99
+ar,amhā,.n.,.nt.$.sg.$.abl.,2,0.99
+ar,ini,.n.,.nt.$.sg.$.loc.,2,0.99
+ar,asmiṃ,.n.,.nt.$.sg.$.loc.,2,0.99
+ar,amhi,.n.,.nt.$.sg.$.loc.,2,0.99
+ar,ā,.n.,.nt.$.pl.$.nom.,2,0.99
+ar,āno,.n.,.nt.$.pl.$.nom.,2,0.99
+ar,ā,.n.,.nt.$.pl.$.voc.,2,0.3
+ar,āno,.n.,.nt.$.pl.$.voc.,2,0.3
+ar,ā,.n.,.nt.$.pl.$.acc.,2,0.99
+ar,āno,.n.,.nt.$.pl.$.acc.,2,0.99
+ar,ānaṃ,.n.,.nt.$.pl.$.gen.,2,0.99
+ar,ānaṃ,.n.,.nt.$.pl.$.dat.,2,0.99
+ar,ehi,.n.,.nt.$.pl.$.inst.,2,0.99
+ar,āhi,.n.,.nt.$.pl.$.inst.,2,0.99
+ar,ehi,.n.,.nt.$.pl.$.abl.,2,0.99
+ar,āhi,.n.,.nt.$.pl.$.abl.,2,0.99
+ar,esu,.n.,.nt.$.pl.$.loc.,2,0.99
+ar,āsu,.n.,.nt.$.pl.$.loc.,2,0.99
+a,e,.n.,.m.$.sg.$.nom.,1,0.99
+a,ā,.n.,.m.$.sg.$.inst.,1,0.99
+a,asā,.n.,.m.$.sg.$.inst.,1,0.99
+a,ā,.n.,.m.$.sg.$.dat.,1,0.99
+a,āya,.n.,.m.$.sg.$.gen.,1,0.99
+a,ā,.n.,.m.$.sg.$.gen.,1,0.99
+a,asi,.n.,.m.$.sg.$.loc.,1,0.99
+a,e,.n.,.m.$.sg.$.voc.,1,0.3
+a,o,.n.,.m.$.sg.$.voc.,1,0.3
+a,āse,.n.,.m.$.pl.$.nom.,1,0.99
+a,o,.n.,.m.$.pl.$.nom.,1,0.99
+a,ān,.n.,.m.$.pl.$.acc.,1,0.99
+a,e,.n.,.m.$.pl.$.inst.,1,0.99
+a,ato,.n.,.m.$.pl.$.abl.,1,0.99
+a,e,.n.,.nt.$.sg.$.nom.,1,0.99
+a,ā,.n.,.nt.$.sg.$.inst.,1,0.99
+a,asā,.n.,.nt.$.sg.$.inst.,1,0.99
+a,ā,.n.,.nt.$.sg.$.dat.,1,0.99
+a,asi,.n.,.nt.$.sg.$.loc.,1,0.99
+a,ā,.n.,.nt.$.sg.$.voc.,1,0.3
+a,aṃ,.n.,.nt.$.sg.$.voc.,1,0.3
+a,āya,.n.,.nt.$.sg.$.gen.,1,0.99
+a,ā,.n.,.nt.$.sg.$.gen.,1,0.99
+a,o,.n.,.nt.$.pl.$.acc.,1,0.99
+a,ato,.n.,.nt.$.pl.$.abl.,1,0.99
+ā,ā,.n.,.f.$.sg.$.inst.,1,0.99
+ā,āto,.n.,.f.$.sg.$.abl.,1,0.99
+ā,a,.n.,.f.$.sg.$.voc.,1,0.3
+ā,iyo,.n.,.f.$.pl.$.voc.,1,0.3
+i,e,.n.,.m.$.sg.$.dat.,1,0.99
+i,ito,.n.,.m.$.sg.$.abl.,1,0.99
+i,e,.n.,.m.$.sg.$.gen.,1,0.99
+i,ini,.n.,.m.$.sg.$.loc.,1,0.99
+i,e,.n.,.m.$.sg.$.loc.,1,0.99
+i,o,.n.,.m.$.sg.$.loc.,1,0.99
+i,iyo,.n.,.m.$.pl.$.nom.,1,0.99
+i,ino,.n.,.m.$.pl.$.nom.,1,0.99
+i,iyo,.n.,.m.$.pl.$.acc.,1,0.99
+i,ihi,.n.,.m.$.pl.$.inst.,1,0.99
+i,ibhi,.n.,.m.$.pl.$.inst.,1,0.99
+i,inaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+i,ihi,.n.,.m.$.pl.$.abl.,1,0.99
+i,ibhi,.n.,.m.$.pl.$.abl.,1,0.99
+i,inaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+i,isu,.n.,.m.$.pl.$.loc.,1,0.99
+i,iyo,.n.,.m.$.pl.$.voc.,1,0.3
+i,ihi,.n.,.nt.$.pl.$.inst.,1,0.99
+i,ibhi,.n.,.nt.$.pl.$.inst.,1,0.99
+i,ihi,.n.,.nt.$.pl.$.abl.,1,0.99
+i,ibhi,.n.,.nt.$.pl.$.abl.,1,0.99
+i,inaṃ,.n.,.nt.$.pl.$.gen.,1,0.99
+i,inaṃ,.n.,.nt.$.pl.$.dat.,1,0.99
+i,isu,.n.,.nt.$.pl.$.loc.,1,0.99
+i,iṃ,.n.,.nt.$.sg.$.nom.,1,0.99
+i,i,.n.,.nt.$.sg.$.acc.,1,0.99
+i,e,.n.,.nt.$.sg.$.dat.,1,0.99
+i,ito,.n.,.nt.$.sg.$.abl.,1,0.99
+i,e,.n.,.nt.$.sg.$.gen.,1,0.99
+i,ini,.n.,.nt.$.sg.$.loc.,1,0.99
+i,e,.n.,.nt.$.sg.$.loc.,1,0.99
+i,o,.n.,.nt.$.sg.$.loc.,1,0.99
+i,iṃ,.n.,.nt.$.sg.$.voc.,1,0.3
+i,ī,.n.,.f.$.sg.$.nom.,1,0.99
+i,ito,.n.,.f.$.sg.$.abl.,1,0.99
+i,myā,.n.,.f.$.sg.$.gen.,1,0.99
+i,o,.n.,.f.$.sg.$.loc.,1,0.99
+i,āyaṃ,.n.,.f.$.sg.$.loc.,1,0.99
+i,u,.n.,.f.$.sg.$.loc.,1,0.99
+i,ī,.n.,.f.$.sg.$.voc.,1,0.3
+ī,ini,.n.,.m.$.sg.$.loc.,1,0.99
+ī,īnaṃ,.n.,.m.$.pl.$.gen.,1,0.99
+ī,īnaṃ,.n.,.m.$.pl.$.dat.,1,0.99
+ī,īsu,.n.,.m.$.pl.$.loc.,1,0.99
+ī,i,.n.,.m.$.sg.$.nom.,1,0.99
+ī,iyo,.n.,.m.$.pl.$.nom.,1,0.99
+ī,iye,.n.,.m.$.pl.$.acc.,1,0.99
+ī,iyaṃ,.n.,.m.$.sg.$.acc.,1,0.99
+ī,ito,.n.,.m.$.sg.$.abl.,1,0.99
+ī,i,.n.,.f.$.sg.$.nom.,1,0.99
+ī,iyaṃ,.n.,.f.$.sg.$.acc.,1,0.99
+ī,ito,.n.,.f.$.sg.$.abl.,1,0.99
+ī,īto,.n.,.f.$.sg.$.abl.,1,0.99
+ī,āyo,.n.,.f.$.pl.$.nom.,1,0.99
+ī,āyo,.n.,.f.$.pl.$.nom.,1,0.99
+ī,āyo,.n.,.f.$.pl.$.nom.,1,0.99
+ī,inaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+ī,inaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+ī,īyanaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+ī,īyanaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+ī,iyanaṃ,.n.,.f.$.pl.$.gen.,1,0.99
+ī,iyanaṃ,.n.,.f.$.pl.$.dat.,1,0.99
+ī,isu,.n.,.f.$.pl.$.loc.,1,0.99
+ar,ā,.n.,.m.$.sg.$.nom.,2,0.99
+ar,ā,.n.,.m.$.sg.$.voc.,2,0.3
+ar,a,.n.,.m.$.sg.$.voc.,2,0.3
+ar,araṃ,.n.,.m.$.sg.$.acc.,2,0.99
+ar,āraṃ,.n.,.m.$.sg.$.acc.,2,0.99
+ar,u,.n.,.m.$.sg.$.dat.,2,0.99
+ar,ussa,.n.,.m.$.sg.$.dat.,2,0.99
+ar,uno,.n.,.m.$.sg.$.dat.,2,0.99
+ar,u,.n.,.m.$.sg.$.gen.,2,0.99
+ar,ussa,.n.,.m.$.sg.$.gen.,2,0.99
+ar,uno,.n.,.m.$.sg.$.gen.,2,0.99
+ar,arā,.n.,.m.$.sg.$.inst.,2,0.99
+ar,ara,.n.,.m.$.sg.$.inst.,2,0.99
+ar,āra,.n.,.m.$.sg.$.inst.,2,0.99
+ar,ārā,.n.,.m.$.sg.$.inst.,2,0.99
+ar,unā,.n.,.m.$.sg.$.inst.,2,0.99
+ar,arā,.n.,.m.$.sg.$.abl.,2,0.99
+ar,ara,.n.,.m.$.sg.$.abl.,2,0.99
+ar,āra,.n.,.m.$.sg.$.abl.,2,0.99
+ar,ārā,.n.,.m.$.sg.$.abl.,2,0.99
+ar,unā,.n.,.m.$.sg.$.abl.,2,0.99
+ar,ari,.n.,.m.$.sg.$.loc.,2,0.99
+ar,āro,.n.,.m.$.pl.$.nom.,2,0.99
+ar,ā,.n.,.m.$.pl.$.nom.,2,0.99
+ar,āro,.n.,.m.$.pl.$.voc.,2,0.3
+ar,ā,.n.,.m.$.pl.$.voc.,2,0.3
+ar,āro,.n.,.m.$.pl.$.acc.,2,0.99
+ar,āre,.n.,.m.$.pl.$.acc.,2,0.99
+ar,ānaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+ar,ārānaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+ar,ūnaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+ar,ānaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+ar,ārānaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+ar,ūnaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+ar,ārehi,.n.,.m.$.pl.$.inst.,2,0.99
+ar,ārebhi,.n.,.m.$.pl.$.inst.,2,0.99
+ar,ārehi,.n.,.m.$.pl.$.abl.,2,0.99
+ar,ārebhi,.n.,.m.$.pl.$.abl.,2,0.99
+ar,āresu,.n.,.m.$.pl.$.loc.,2,0.99
+ar,ūsu,.n.,.m.$.pl.$.loc.,2,0.99
+ar,āyo,.n.,.m.$.sg.$.voc.,2,0.3
+ar,iyo,.n.,.m.$.sg.$.voc.,2,0.3
+an,ane,.n.,.m.$.sg.$.loc.,2,0.99
+an,ā,.n.,.m.$.pl.$.voc.,2,0.3
+an,ubhi,.n.,.m.$.pl.$.inst.,2,0.99
+an,ūbhi,.n.,.m.$.pl.$.inst.,2,0.99
+an,uhi,.n.,.m.$.pl.$.inst.,2,0.99
+an,ūhi,.n.,.m.$.pl.$.inst.,2,0.99
+an,ūnaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+an,ūnaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+an,esu,.n.,.m.$.pl.$.loc.,2,0.99
+an,ūsu,.n.,.m.$.pl.$.loc.,2,0.99
+an,usu,.n.,.m.$.pl.$.loc.,2,0.99
+an,a,.n.,.nt.$.sg.$.nom.,2,0.99
+an,a,.n.,.nt.$.sg.$.acc.,2,0.99
+an,anā,.n.,.nt.$.sg.$.inst.,2,0.99
+an,unā,.n.,.nt.$.sg.$.inst.,2,0.99
+an,no,.n.,.nt.$.sg.$.dat.,2,0.99
+an,unā,.n.,.nt.$.sg.$.abl.,2,0.99
+an,no,.n.,.nt.$.sg.$.dat.,2,0.99
+an,ani,.n.,.nt.$.sg.$.loc.,2,0.99
+an,ā,.n.,.nt.$.pl.$.voc.,2,0.3
+as,āni,.n.,.m.$.pl.$.nom.,2,0.99
+as,ā,.n.,.m.$.pl.$.acc.,2,0.99
+as,āni,.n.,.m.$.pl.$.acc.,2,0.99
+as,āni,.n.,.m.$.pl.$.voc.,2,0.3
+as,āni,.n.,.m.$.pl.$.nom.,2,0.99
+as,ā,.n.,.m.$.pl.$.acc.,2,0.99
+as,āni,.n.,.m.$.pl.$.acc.,2,0.99
+as,āni,.n.,.m.$.pl.$.voc.,2,0.3
+as,āni,.n.,.m.$.pl.$.nom.,2,0.99
+as,ā,.n.,.m.$.pl.$.acc.,2,0.99
+as,āni,.n.,.m.$.pl.$.acc.,2,0.99
+as,āni,.n.,.m.$.pl.$.voc.,2,0.3
+us,u,.n.,.m.$.sg.$.nom.,2,0.99
+us,uṃ,.n.,.m.$.sg.$.nom.,2,0.99
+us,u,.n.,.m.$.sg.$.voc.,2,0.3
+us,uṃ,.n.,.m.$.sg.$.voc.,2,0.3
+us,u,.n.,.m.$.sg.$.acc.,2,0.99
+us,uṃ,.n.,.m.$.sg.$.acc.,2,0.99
+us,ussa,.n.,.m.$.sg.$.dat.,2,0.99
+us,uno,.n.,.m.$.sg.$.dat.,2,0.99
+us,ussa,.n.,.m.$.sg.$.gen.,2,0.99
+us,uno,.n.,.m.$.sg.$.gen.,2,0.99
+us,unā,.n.,.m.$.sg.$.inst.,2,0.99
+us,usā,.n.,.m.$.sg.$.inst.,2,0.99
+us,unā,.n.,.m.$.sg.$.abl.,2,0.99
+us,usā,.n.,.m.$.sg.$.abl.,2,0.99
+us,uni,.n.,.m.$.sg.$.loc.,2,0.99
+us,usi,.n.,.m.$.sg.$.loc.,2,0.99
+us,ū,.n.,.m.$.pl.$.nom.,2,0.99
+us,ūni,.n.,.m.$.pl.$.nom.,2,0.99
+us,ū,.n.,.m.$.pl.$.voc.,2,0.3
+us,ūni,.n.,.m.$.pl.$.voc.,2,0.3
+us,ū,.n.,.m.$.pl.$.acc.,2,0.99
+us,ūni,.n.,.m.$.pl.$.acc.,2,0.99
+us,ūnaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+us,ūsaṃ,.n.,.m.$.pl.$.dat.,2,0.99
+us,ūnaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+us,ūsaṃ,.n.,.m.$.pl.$.gen.,2,0.99
+us,ūhi,.n.,.m.$.pl.$.inst.,2,0.99
+us,ūbhi,.n.,.m.$.pl.$.inst.,2,0.99
+us,ūhi,.n.,.m.$.pl.$.abl.,2,0.99
+us,ūbhi,.n.,.m.$.pl.$.abl.,2,0.99
+us,ūsu,.n.,.m.$.pl.$.loc.,2,0.99
+a,assā,.n.,.m.$.sg.$.gen.,1,0.99
+a,assā,.n.,.m.$.sg.$.dat.,1,0.99
+a,enā,.n.,.m.$.sg.$.inst.,1,0.99
+a,amhī,.n.,.m.$.sg.$.loc.,1,0.99
+a,ehī,.n.,.m.$.pl.$.inst.,1,0.99
+a,ebhī,.n.,.m.$.pl.$.inst.,1,0.99
+a,ehī,.n.,.m.$.pl.$.abl.,1,0.99
+a,ebhī,.n.,.m.$.pl.$.abl.,1,0.99
+a,esū,.n.,.m.$.pl.$.loc.,1,0.99
+a,assā,.n.,.nt.$.sg.$.gen.,1,0.99
+a,assā,.n.,.nt.$.sg.$.dat.,1,0.99
+a,enā,.n.,.nt.$.sg.$.inst.,1,0.99
+a,amhī,.n.,.nt.$.sg.$.loc.,1,0.99
+a,ānī,.n.,.nt.$.pl.$.nom.,1,0.99
+a,ānī,.n.,.nt.$.pl.$.voc.,1,0.3
+a,ānī,.n.,.nt.$.pl.$.acc.,1,0.99
+a,ehī,.n.,.nt.$.pl.$.inst.,1,0.99
+a,ebhī,.n.,.nt.$.pl.$.inst.,1,0.99
+a,ehī,.n.,.nt.$.pl.$.abl.,1,0.99
+a,ebhī,.n.,.nt.$.pl.$.abl.,1,0.99
+a,esū,.n.,.nt.$.pl.$.loc.,1,0.99
+ā,āhī,.n.,.f.$.pl.$.inst.,1,0.99
+ā,ābhī,.n.,.f.$.pl.$.inst.,1,0.99
+ā,āhī,.n.,.f.$.pl.$.abl.,1,0.99
+ā,ābhī,.n.,.f.$.pl.$.abl.,1,0.99
+ā,āsū,.n.,.f.$.pl.$.loc.,1,0.99
+i,issā,.n.,.m.$.sg.$.gen.,1,0.99
+i,issā,.n.,.m.$.sg.$.dat.,1,0.99
+i,imhī,.n.,.m.$.sg.$.loc.,1,0.99
+i,īhī,.n.,.m.$.pl.$.inst.,1,0.99
+i,ībhī,.n.,.m.$.pl.$.inst.,1,0.99
+i,īhī,.n.,.m.$.pl.$.abl.,1,0.99
+i,ībhī,.n.,.m.$.pl.$.abl.,1,0.99
+i,īsū,.n.,.m.$.pl.$.loc.,1,0.99
+i,assā,.n.,.nt.$.sg.$.gen.,1,0.99
+i,assā,.n.,.nt.$.sg.$.dat.,1,0.99
+i,imhī,.n.,.nt.$.sg.$.loc.,1,0.99
+i,īnī,.n.,.nt.$.pl.$.nom.,1,0.99
+i,īnī,.n.,.nt.$.pl.$.voc.,1,0.3
+i,īnī,.n.,.nt.$.pl.$.acc.,1,0.99
+i,īhī,.n.,.nt.$.pl.$.inst.,1,0.99
+i,ībhī,.n.,.nt.$.pl.$.inst.,1,0.99
+i,īhī,.n.,.nt.$.pl.$.abl.,1,0.99
+i,ībhī,.n.,.nt.$.pl.$.abl.,1,0.99
+i,īsū,.n.,.nt.$.pl.$.loc.,1,0.99
+i,īhī,.n.,.f.$.pl.$.inst.,1,0.99
+i,ībhī,.n.,.f.$.pl.$.inst.,1,0.99
+i,īhī,.n.,.f.$.pl.$.abl.,1,0.99
+i,ībhī,.n.,.f.$.pl.$.abl.,1,0.99
+i,īsū,.n.,.f.$.pl.$.loc.,1,0.99
+ī,issā,.n.,.m.$.sg.$.gen.,1,0.99
+in,issā,.n.,.m.$.sg.$.gen.,2,0.99
+ī,issā,.n.,.m.$.sg.$.dat.,1,0.99
+in,issā,.n.,.m.$.sg.$.dat.,2,0.99
+ī,imhī,.n.,.m.$.sg.$.loc.,1,0.99
+in,imhī,.n.,.m.$.sg.$.loc.,2,0.99
+ī,īhī,.n.,.m.$.pl.$.inst.,1,0.99
+ī,ībhī,.n.,.m.$.pl.$.inst.,1,0.99
+in,īhī,.n.,.m.$.pl.$.inst.,2,0.99
+in,ībhī,.n.,.m.$.pl.$.inst.,2,0.99
+ī,īhī,.n.,.m.$.pl.$.abl.,1,0.99
+ī,ībhī,.n.,.m.$.pl.$.abl.,1,0.99
+in,īhī,.n.,.m.$.pl.$.abl.,2,0.99
+in,ībhī,.n.,.m.$.pl.$.abl.,2,0.99
+ī,īsū,.n.,.m.$.pl.$.loc.,1,0.99
+in,īsū,.n.,.m.$.pl.$.loc.,2,0.99
+ī,īhī,.n.,.f.$.pl.$.inst.,1,0.99
+ī,ībhī,.n.,.f.$.pl.$.inst.,1,0.99
+ī,īhī,.n.,.f.$.pl.$.abl.,1,0.99
+ī,ībhī,.n.,.f.$.pl.$.abl.,1,0.99
+ī,īsū,.n.,.f.$.pl.$.loc.,1,0.99
+u,ussā,.n.,.m.$.sg.$.gen.,1,0.99
+u,ussā,.n.,.m.$.sg.$.dat.,1,0.99
+u,umhī,.n.,.m.$.sg.$.loc.,1,0.99
+u,ūhī,.n.,.m.$.pl.$.inst.,1,0.99
+u,ūbhī,.n.,.m.$.pl.$.inst.,1,0.99
+u,ūhī,.n.,.m.$.pl.$.abl.,1,0.99
+u,ūbhī,.n.,.m.$.pl.$.abl.,1,0.99
+u,ūsū,.n.,.m.$.pl.$.loc.,1,0.99
+u,ussā,.n.,.nt.$.sg.$.gen.,1,0.99
+u,ussā,.n.,.nt.$.sg.$.dat.,1,0.99
+u,umhī,.n.,.nt.$.sg.$.loc.,1,0.99
+u,ūnī,.n.,.nt.$.pl.$.nom.,1,0.99
+u,ūnī,.n.,.nt.$.pl.$.voc.,1,0.3
+u,ūnī,.n.,.nt.$.pl.$.acc.,1,0.99
+u,ūhī,.n.,.nt.$.pl.$.inst.,1,0.99
+u,ūbhī,.n.,.nt.$.pl.$.inst.,1,0.99
+u,ūhī,.n.,.nt.$.pl.$.abl.,1,0.99
+u,ūbhī,.n.,.nt.$.pl.$.abl.,1,0.99
+u,ūsū,.n.,.nt.$.pl.$.loc.,1,0.99
+u,ūhī,.n.,.f.$.pl.$.inst.,1,0.99
+u,ūbhī,.n.,.f.$.pl.$.inst.,1,0.99
+u,ūhī,.n.,.f.$.pl.$.abl.,1,0.99
+u,ūbhī,.n.,.f.$.pl.$.abl.,1,0.99
+u,ūsū,.n.,.f.$.pl.$.loc.,1,0.99
+ū,ussā,.n.,.m.$.sg.$.gen.,1,0.99
+ū,ussā,.n.,.m.$.sg.$.dat.,1,0.99
+ū,umhī,.n.,.m.$.sg.$.loc.,1,0.99
+ū,ūhī,.n.,.m.$.pl.$.inst.,1,0.99
+ū,ūbhī,.n.,.m.$.pl.$.inst.,1,0.99
+ū,ūhī,.n.,.m.$.pl.$.abl.,1,0.99
+ū,ūbhī,.n.,.m.$.pl.$.abl.,1,0.99
+ū,ūsū,.n.,.m.$.pl.$.loc.,1,0.99
+ū,ūhī,.n.,.f.$.pl.$.inst.,1,0.99
+ū,ūbhī,.n.,.f.$.pl.$.inst.,1,0.99
+ū,ūhī,.n.,.f.$.pl.$.abl.,1,0.99
+ū,ūbhī,.n.,.f.$.pl.$.abl.,1,0.99
+ū,ūsū,.n.,.f.$.pl.$.loc.,1,0.99
+as,assā,.n.,.m.$.sg.$.gen.,2,0.99
+o,assā,.n.,.m.$.sg.$.gen.,1,0.99
+as,assā,.n.,.m.$.sg.$.dat.,2,0.99
+o,assā,.n.,.m.$.sg.$.dat.,1,0.99
+as,enā,.n.,.m.$.sg.$.inst.,2,0.99
+o,enā,.n.,.m.$.sg.$.inst.,1,0.99
+as,asī,.n.,.m.$.sg.$.loc.,2,0.99
+as,amhī,.n.,.m.$.sg.$.loc.,2,0.99
+o,asī,.n.,.m.$.sg.$.loc.,1,0.99
+o,amhī,.n.,.m.$.sg.$.loc.,1,0.99
+as,ehī,.n.,.m.$.pl.$.inst.,2,0.99
+as,ebhī,.n.,.m.$.pl.$.inst.,2,0.99
+o,ehī,.n.,.m.$.pl.$.inst.,1,0.99
+o,ebhī,.n.,.m.$.pl.$.inst.,1,0.99
+as,ehī,.n.,.m.$.pl.$.abl.,2,0.99
+as,ebhī,.n.,.m.$.pl.$.abl.,2,0.99
+o,ehī,.n.,.m.$.pl.$.abl.,1,0.99
+o,ebhī,.n.,.m.$.pl.$.abl.,1,0.99
+as,esū,.n.,.m.$.pl.$.loc.,2,0.99
+o,esū,.n.,.m.$.pl.$.loc.,1,0.99
+as,assā,.n.,.nt.$.sg.$.gen.,2,0.99
+o,assā,.n.,.nt.$.sg.$.gen.,1,0.99
+as,assā,.n.,.nt.$.sg.$.dat.,2,0.99
+o,assā,.n.,.nt.$.sg.$.dat.,1,0.99
+as,enā,.n.,.nt.$.sg.$.inst.,2,0.99
+o,enā,.n.,.nt.$.sg.$.inst.,1,0.99
+as,asī,.n.,.nt.$.sg.$.loc.,2,0.99
+as,amhī,.n.,.nt.$.sg.$.loc.,2,0.99
+o,asī,.n.,.nt.$.sg.$.loc.,1,0.99
+o,amhī,.n.,.nt.$.sg.$.loc.,1,0.99
+as,ehī,.n.,.nt.$.pl.$.inst.,2,0.99
+as,ebhī,.n.,.nt.$.pl.$.inst.,2,0.99
+o,ehī,.n.,.nt.$.pl.$.inst.,1,0.99
+o,ebhī,.n.,.nt.$.pl.$.inst.,1,0.99
+as,ehī,.n.,.nt.$.pl.$.abl.,2,0.99
+as,ebhī,.n.,.nt.$.pl.$.abl.,2,0.99
+o,ehī,.n.,.nt.$.pl.$.abl.,1,0.99
+o,ebhī,.n.,.nt.$.pl.$.abl.,1,0.99
+as,esū,.n.,.nt.$.pl.$.loc.,2,0.99
+o,esū,.n.,.nt.$.pl.$.loc.,1,0.99
+an,assā,.n.,.m.$.sg.$.gen.,2,0.99
+an,assā,.n.,.m.$.sg.$.dat.,2,0.99
+an,enā,.n.,.m.$.sg.$.inst.,2,0.99
+an,anī,.n.,.m.$.sg.$.loc.,2,0.99
+an,amhī,.n.,.m.$.sg.$.loc.,2,0.99
+an,anehī,.n.,.m.$.pl.$.inst.,2,0.99
+an,anebhī,.n.,.m.$.pl.$.inst.,2,0.99
+an,anehī,.n.,.m.$.pl.$.abl.,2,0.99
+an,anebhī,.n.,.m.$.pl.$.abl.,2,0.99
+an,anesū,.n.,.m.$.pl.$.loc.,2,0.99
+an,assā,.n.,.nt.$.sg.$.gen.,2,0.99
+an,assā,.n.,.nt.$.sg.$.dat.,2,0.99
+an,enā,.n.,.nt.$.sg.$.inst.,2,0.99
+an,amhī,.n.,.nt.$.sg.$.loc.,2,0.99
+an,ānī,.n.,.nt.$.pl.$.nom.,2,0.99
+an,ānī,.n.,.nt.$.pl.$.voc.,2,0.3
+an,ānī,.n.,.nt.$.pl.$.acc.,2,0.99
+an,ehī,.n.,.nt.$.pl.$.inst.,2,0.99
+an,ebhī,.n.,.nt.$.pl.$.inst.,2,0.99
+an,ehī,.n.,.nt.$.pl.$.abl.,2,0.99
+an,ebhī,.n.,.nt.$.pl.$.abl.,2,0.99
+an,esū,.n.,.nt.$.pl.$.loc.,2,0.99
+ar,assā,.n.,.f.$.sg.$.gen.,2,0.99
+ar,assā,.n.,.f.$.sg.$.dat.,2,0.99
+ar,enā,.n.,.f.$.sg.$.inst.,2,0.99
+ar,amhī,.n.,.f.$.sg.$.loc.,2,0.99
+ar,ehī,.n.,.f.$.pl.$.inst.,2,0.99
+ar,āhī,.n.,.f.$.pl.$.inst.,2,0.99
+ar,ehī,.n.,.f.$.pl.$.abl.,2,0.99
+ar,āhī,.n.,.f.$.pl.$.abl.,2,0.99
+ar,esū,.n.,.f.$.pl.$.loc.,2,0.99
+ar,āsū,.n.,.f.$.pl.$.loc.,2,0.99
+ar,assā,.n.,.nt.$.sg.$.gen.,2,0.99
+ar,assā,.n.,.nt.$.sg.$.dat.,2,0.99
+ar,enā,.n.,.nt.$.sg.$.inst.,2,0.99
+ar,amhī,.n.,.nt.$.sg.$.loc.,2,0.99
+ar,ehī,.n.,.nt.$.pl.$.inst.,2,0.99
+ar,āhī,.n.,.nt.$.pl.$.inst.,2,0.99
+ar,ehī,.n.,.nt.$.pl.$.abl.,2,0.99
+ar,āhī,.n.,.nt.$.pl.$.abl.,2,0.99
+ar,esū,.n.,.nt.$.pl.$.loc.,2,0.99
+ar,āsū,.n.,.nt.$.pl.$.loc.,2,0.99
+a,asī,.n.,.m.$.sg.$.loc.,1,0.99
+a,asī,.n.,.nt.$.sg.$.loc.,1,0.99
+i,ihī,.n.,.m.$.pl.$.inst.,1,0.99
+i,ibhī,.n.,.m.$.pl.$.inst.,1,0.99
+i,ihī,.n.,.m.$.pl.$.abl.,1,0.99
+i,ibhī,.n.,.m.$.pl.$.abl.,1,0.99
+i,isū,.n.,.m.$.pl.$.loc.,1,0.99
+i,ihī,.n.,.nt.$.pl.$.inst.,1,0.99
+i,ibhī,.n.,.nt.$.pl.$.inst.,1,0.99
+i,ihī,.n.,.nt.$.pl.$.abl.,1,0.99
+i,ibhī,.n.,.nt.$.pl.$.abl.,1,0.99
+i,isū,.n.,.nt.$.pl.$.loc.,1,0.99
+ī,īsū,.n.,.m.$.pl.$.loc.,1,0.99
+ī,isū,.n.,.f.$.pl.$.loc.,1,0.99
+ar,ussā,.n.,.m.$.sg.$.dat.,2,0.99
+ar,ussā,.n.,.m.$.sg.$.gen.,2,0.99
+ar,arī,.n.,.m.$.sg.$.loc.,2,0.99
+ar,ārehī,.n.,.m.$.pl.$.inst.,2,0.99
+ar,ārebhī,.n.,.m.$.pl.$.inst.,2,0.99
+ar,ārehī,.n.,.m.$.pl.$.abl.,2,0.99
+ar,ārebhī,.n.,.m.$.pl.$.abl.,2,0.99
+ar,āresū,.n.,.m.$.pl.$.loc.,2,0.99
+ar,ūsū,.n.,.m.$.pl.$.loc.,2,0.99
+an,ubhī,.n.,.m.$.pl.$.inst.,2,0.99
+an,ūbhī,.n.,.m.$.pl.$.inst.,2,0.99
+an,uhī,.n.,.m.$.pl.$.inst.,2,0.99
+an,ūhī,.n.,.m.$.pl.$.inst.,2,0.99
+an,esū,.n.,.m.$.pl.$.loc.,2,0.99
+an,ūsū,.n.,.m.$.pl.$.loc.,2,0.99
+an,usū,.n.,.m.$.pl.$.loc.,2,0.99
+an,anī,.n.,.nt.$.sg.$.loc.,2,0.99
+as,ānī,.n.,.m.$.pl.$.nom.,2,0.99
+as,ānī,.n.,.m.$.pl.$.acc.,2,0.99
+as,ānī,.n.,.m.$.pl.$.voc.,2,0.3
+as,ānī,.n.,.m.$.pl.$.nom.,2,0.99
+as,ānī,.n.,.m.$.pl.$.acc.,2,0.99
+as,ānī,.n.,.m.$.pl.$.voc.,2,0.3
+as,ānī,.n.,.m.$.pl.$.nom.,2,0.99
+as,ānī,.n.,.m.$.pl.$.acc.,2,0.99
+as,ānī,.n.,.m.$.pl.$.voc.,2,0.3
+us,ussā,.n.,.m.$.sg.$.dat.,2,0.99
+us,ussā,.n.,.m.$.sg.$.gen.,2,0.99
+us,unī,.n.,.m.$.sg.$.loc.,2,0.99
+us,usī,.n.,.m.$.sg.$.loc.,2,0.99
+us,ūnī,.n.,.m.$.pl.$.nom.,2,0.99
+us,ūnī,.n.,.m.$.pl.$.voc.,2,0.3
+us,ūnī,.n.,.m.$.pl.$.acc.,2,0.99
+us,ūhī,.n.,.m.$.pl.$.inst.,2,0.99
+us,ūbhī,.n.,.m.$.pl.$.inst.,2,0.99
+us,ūhī,.n.,.m.$.pl.$.abl.,2,0.99
+us,ūbhī,.n.,.m.$.pl.$.abl.,2,0.99
+us,ūsū,.n.,.m.$.pl.$.loc.,2,0.99
+ant,ā,.n.,.m.$.pl.$.nom.,3,0.99
+ant,ā,.n.,.m.$.pl.$.voc.,3,0.3
+ant,ā,.n.,.m.$.sg.$.nom.,3,0.99
+ant,a,.n.,.m.$.sg.$.voc.,3,0.3
+ant,ā,.n.,.m.$.sg.$.voc.,3,0.3
+ant,ā,.n.,.nt.$.pl.$.nom.,3,0.99
+ant,ā,.n.,.nt.$.pl.$.voc.,3,0.3
+ant,a,.n.,.nt.$.sg.$.voc.,3,0.3
+ant,ā,.n.,.nt.$.sg.$.voc.,3,0.3
+ant,ā,.n.,.m.$.sg.$.voc.,3,0.3
+ant,ā,.n.,.nt.$.sg.$.voc.,3,0.3
+ant,aṃ,.n.,.m.$.sg.$.acc.,3,0.99
+ant,aṃ,.n.,.nt.$.sg.$.acc.,3,0.99
+ant,aṃ,.n.,.nt.$.sg.$.nom.,3,0.99
+ant,aṃ,.n.,.m.$.sg.$.nom.,3,0.99
+ant,aṃ,.n.,.m.$.sg.$.voc.,3,0.3
+ant,aṃ,.n.,.nt.$.sg.$.voc.,3,0.3
+ant,aṃ,.n.,.m.$.sg.$.voc.,3,0.3
+ant,aṃ,.n.,.nt.$.sg.$.voc.,3,0.3
+ant,ānaṃ,.n.,.m.$.pl.$.dat.,3,0.99
+ant,ānaṃ,.n.,.m.$.pl.$.gen.,3,0.99
+ant,e,.n.,.m.$.pl.$.acc.,3,0.99
+ant,ebhi,.n.,.m.$.pl.$.abl.,3,0.99
+ant,ebhi,.n.,.m.$.pl.$.inst.,3,0.99
+ant,ehi,.n.,.m.$.pl.$.abl.,3,0.99
+ant,ehi,.n.,.m.$.pl.$.inst.,3,0.99
+ant,esu,.n.,.m.$.pl.$.loc.,3,0.99
+anta,ā,.n.,.m.$.pl.$.nom.,4,0.99
+anta,ā,.n.,.m.$.pl.$.voc.,4,0.3
+anta,ā,.n.,.m.$.sg.$.nom.,4,0.99
+anta,a,.n.,.m.$.sg.$.voc.,4,0.3
+anta,ā,.n.,.m.$.sg.$.voc.,4,0.3
+anta,ā,.n.,.nt.$.pl.$.nom.,4,0.99
+anta,ā,.n.,.nt.$.pl.$.voc.,4,0.3
+anta,a,.n.,.nt.$.sg.$.voc.,4,0.3
+anta,ā,.n.,.nt.$.sg.$.voc.,4,0.3
+anta,ā,.n.,.m.$.sg.$.voc.,4,0.3
+anta,ā,.n.,.nt.$.sg.$.voc.,4,0.3
+anta,aṃ,.n.,.m.$.sg.$.acc.,4,0.99
+anta,aṃ,.n.,.nt.$.sg.$.acc.,4,0.99
+anta,aṃ,.n.,.nt.$.sg.$.nom.,4,0.99
+anta,aṃ,.n.,.m.$.sg.$.nom.,4,0.99
+anta,aṃ,.n.,.m.$.sg.$.voc.,4,0.3
+anta,aṃ,.n.,.nt.$.sg.$.voc.,4,0.3
+anta,aṃ,.n.,.m.$.sg.$.voc.,4,0.3
+anta,aṃ,.n.,.nt.$.sg.$.voc.,4,0.3
+anta,ānaṃ,.n.,.m.$.pl.$.dat.,4,0.99
+anta,ānaṃ,.n.,.m.$.pl.$.gen.,4,0.99
+anta,e,.n.,.m.$.pl.$.acc.,4,0.99
+anta,ebhi,.n.,.m.$.pl.$.abl.,4,0.99
+anta,ebhi,.n.,.m.$.pl.$.inst.,4,0.99
+anta,ehi,.n.,.m.$.pl.$.abl.,4,0.99
+anta,ehi,.n.,.m.$.pl.$.inst.,4,0.99
+anta,esu,.n.,.m.$.pl.$.loc.,4,0.99
+ti,ti,.v.,.3p.$.sg.$.pres.,2,0.99
+ti,nti,.v.,.3p.$.pl.$.pres.,2,0.99
+ti,te,.v.,.3p.$.sg.$.pres.,2,0.99
+ti,nte,.v.,.3p.$.pl.$.pres.,2,0.99
+ti,re,.v.,.3p.$.pl.$.pres.,2,0.99
+ti,ssati,.v.,.3p.$.sg.$.fut.,2,0.99
+ti,ssanti,.v.,.3p.$.pl.$.fut.,2,0.99
+ti,ssate,.v.,.3p.$.sg.$.fut.,2,0.99
+ti,ssante,.v.,.3p.$.pl.$.fut.,2,0.99
+ti,ssare,.v.,.3p.$.pl.$.fut.,2,0.99
+ti,tu,.v.,.3p.$.sg.$.imp.,2,0.99
+ti,ntu,.v.,.3p.$.pl.$.imp.,2,0.99
+ti,taṃ,.v.,.3p.$.sg.$.imp.,2,0.99
+ti,ntaṃ,.v.,.3p.$.pl.$.imp.,2,0.99
+ti,sā,.v.,.3p.$.sg.$.cond.,2,0.99
+ti,ssa,.v.,.3p.$.sg.$.cond.,2,0.99
+ti,ssati,.v.,.3p.$.sg.$.cond.,2,0.99
+ti,ssaṃsu,.v.,.3p.$.pl.$.cond.,2,0.99
+ti,ssatha,.v.,.3p.$.sg.$.cond.,2,0.99
+ti,ssiṃsu,.v.,.3p.$.pl.$.cond.,2,0.99
+ti,si,.v.,.3p.$.sg.$.aor.,2,0.99
+ti,sī,.v.,.3p.$.sg.$.aor.,2,0.99
+ti,sā,.v.,.3p.$.sg.$.aor.,2,0.99
+ti,siṃsu,.v.,.3p.$.pl.$.aor.,2,0.99
+ti,sṃ,.v.,.3p.$.pl.$.aor.,2,0.99
+ti,suṃū,.v.,.3p.$.pl.$.aor.,2,0.99
+ti,sā,.v.,.3p.$.sg.$.aor.,2,0.99
+ti,sa,.v.,.3p.$.sg.$.aor.,2,0.99
+ti,stthuṃ,.v.,.3p.$.pl.$.aor.,2,0.99
+ti,satthuṃ,.v.,.3p.$.pl.$.aor.,2,0.99
+ti,mi,.v.,.1p.$.sg.$.pres.,2,0.99
+ti,ma,.v.,.1p.$.pl.$.pres.,2,0.99
+ti,e,.v.,.1p.$.sg.$.pres.,2,0.99
+ti,mhe,.v.,.1p.$.pl.$.pres.,2,0.99
+ti,mahe,.v.,.1p.$.pl.$.pres.,2,0.99
+ti,mha,.v.,.1p.$.pl.$.pres.,2,0.99
+ti,mase,.v.,.1p.$.pl.$.pres.,2,0.99
+ti,mhase,.v.,.1p.$.pl.$.pres.,2,0.99
+ti,ssāmi,.v.,.1p.$.sg.$.fut.,2,0.99
+ti,ssāma,.v.,.1p.$.pl.$.fut.,2,0.99
+ti,ssaṃ,.v.,.1p.$.sg.$.fut.,2,0.99
+ti,ssāmhe,.v.,.1p.$.pl.$.fut.,2,0.99
+ti,ssāmase,.v.,.1p.$.pl.$.fut.,2,0.99
+ti,mi,.v.,.1p.$.sg.$.imp.,2,0.99
+ti,ma,.v.,.1p.$.pl.$.imp.,2,0.99
+ti,ssa,.v.,.1p.$.sg.$.cond.,2,0.99
+ti,ssamhā,.v.,.1p.$.pl.$.cond.,2,0.99
+ti,ssaṃ,.v.,.1p.$.sg.$.cond.,2,0.99
+ti,ssāmhase,.v.,.1p.$.pl.$.cond.,2,0.99
+ti,siṃ,.v.,.1p.$.sg.$.aor.,2,0.99
+ti,saṃ,.v.,.1p.$.sg.$.aor.,2,0.99
+ti,sṃ,.v.,.1p.$.sg.$.aor.,2,0.99
+ti,sa,.v.,.1p.$.sg.$.aor.,2,0.99
+ti,sā,.v.,.1p.$.sg.$.aor.,2,0.99
+ti,simha,.v.,.1p.$.pl.$.aor.,2,0.99
+ti,simhā,.v.,.1p.$.pl.$.aor.,2,0.99
+ti,sa,.v.,.1p.$.sg.$.aor.,2,0.99
+ti,simhe,.v.,.1p.$.pl.$.aor.,2,0.99
+ti,si,.v.,.2p.$.sg.$.pres.,2,0.99
+ti,tha,.v.,.2p.$.pl.$.pres.,2,0.99
+ti,se,.v.,.2p.$.sg.$.pres.,2,0.99
+ti,vhe,.v.,.2p.$.pl.$.pres.,2,0.99
+ti,ssasi,.v.,.2p.$.sg.$.fut.,2,0.99
+ti,ssatha,.v.,.2p.$.pl.$.fut.,2,0.99
+ti,ssase,.v.,.2p.$.sg.$.fut.,2,0.99
+ti,ssavhe,.v.,.2p.$.pl.$.fut.,2,0.99
+ti,hi,.v.,.2p.$.sg.$.imp.,2,0.99
+ti,ta,.v.,.2p.$.pl.$.imp.,2,0.99
+ti,ssu,.v.,.2p.$.sg.$.imp.,2,0.99
+ti,vho,.v.,.2p.$.pl.$.imp.,2,0.99
+ti,se,.v.,.2p.$.sg.$.cond.,2,0.99
+ti,ssa,.v.,.2p.$.sg.$.cond.,2,0.99
+ti,ssasi,.v.,.2p.$.sg.$.cond.,2,0.99
+ti,ssatha,.v.,.2p.$.pl.$.cond.,2,0.99
+ti,ssase,.v.,.2p.$.sg.$.cond.,2,0.99
+ti,ssavhe,.v.,.2p.$.pl.$.cond.,2,0.99
+ti,si,.v.,.2p.$.sg.$.aor.,2,0.99
+ti,so,.v.,.2p.$.sg.$.aor.,2,0.99
+ti,sā,.v.,.2p.$.sg.$.aor.,2,0.99
+ti,sttha,.v.,.2p.$.pl.$.aor.,2,0.99
+ti,sse,.v.,.2p.$.sg.$.aor.,2,0.99
+ti,svhaṃ,.v.,.2p.$.pl.$.aor.,2,0.99
+ti,eyya,.v.,.3p.$.sg.$.opt.,2,0.99
+ati,eyyuṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+ati,etha,.v.,.3p.$.sg.$.opt.,3,0.99
+ati,eraṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+ati,issati,.v.,.3p.$.sg.$.fut.,3,0.99
+ati,issanti,.v.,.3p.$.pl.$.fut.,3,0.99
+ati,issate,.v.,.3p.$.sg.$.fut.,3,0.99
+ati,issante,.v.,.3p.$.pl.$.fut.,3,0.99
+ati,issare,.v.,.3p.$.pl.$.fut.,3,0.99
+ati,i,.v.,.3p.$.sg.$.aor.,3,0.99
+ati,ī,.v.,.3p.$.sg.$.aor.,3,0.99
+ati,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+ati,iṃsu,.v.,.3p.$.pl.$.aor.,3,0.99
+ati,ṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+ati,uṃū,.v.,.3p.$.pl.$.aor.,3,0.99
+ati,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+ati,a,.v.,.3p.$.sg.$.aor.,3,0.99
+ati,tthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+ati,atthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+ati,āmi,.v.,.1p.$.sg.$.pres.,3,0.99
+ati,āma,.v.,.1p.$.pl.$.pres.,3,0.99
+ati,e,.v.,.1p.$.sg.$.imp.,3,0.99
+ati,āmase,.v.,.1p.$.pl.$.imp.,3,0.99
+ati,eyyāmi,.v.,.1p.$.sg.$.opt.,3,0.99
+ati,eyyāma,.v.,.1p.$.pl.$.opt.,3,0.99
+ati,eyyaṃ,.v.,.1p.$.sg.$.opt.,3,0.99
+ati,eyyāmhe,.v.,.1p.$.pl.$.opt.,3,0.99
+ati,issāmi,.v.,.1p.$.sg.$.fut.,3,0.99
+ati,issāma,.v.,.1p.$.pl.$.fut.,3,0.99
+ati,issaṃ,.v.,.1p.$.sg.$.fut.,3,0.99
+ati,issāmhe,.v.,.1p.$.pl.$.fut.,3,0.99
+ati,issāmase,.v.,.1p.$.pl.$.fut.,3,0.99
+ati,iṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+ati,aṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+ati,ṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+ati,a,.v.,.1p.$.sg.$.aor.,3,0.99
+ati,ā,.v.,.1p.$.sg.$.aor.,3,0.99
+ati,imha,.v.,.1p.$.pl.$.aor.,3,0.99
+ati,imhā,.v.,.1p.$.pl.$.aor.,3,0.99
+ati,a,.v.,.1p.$.sg.$.aor.,3,0.99
+ati,imhe,.v.,.1p.$.pl.$.aor.,3,0.99
+ati,eyyāsi,.v.,.2p.$.sg.$.opt.,3,0.99
+ati,eyyātha,.v.,.2p.$.pl.$.opt.,3,0.99
+ati,etho,.v.,.2p.$.sg.$.opt.,3,0.99
+ati,eyyavho,.v.,.2p.$.pl.$.opt.,3,0.99
+ati,issasi,.v.,.2p.$.sg.$.fut.,3,0.99
+ati,issatha,.v.,.2p.$.pl.$.fut.,3,0.99
+ati,issase,.v.,.2p.$.sg.$.fut.,3,0.99
+ati,issavhe,.v.,.2p.$.pl.$.fut.,3,0.99
+ati,i,.v.,.2p.$.sg.$.aor.,3,0.99
+ati,o,.v.,.2p.$.sg.$.aor.,3,0.99
+ati,ā,.v.,.2p.$.sg.$.aor.,3,0.99
+ati,ttha,.v.,.2p.$.pl.$.aor.,3,0.99
+ati,se,.v.,.2p.$.sg.$.aor.,3,0.99
+ati,vhaṃ,.v.,.2p.$.pl.$.aor.,3,0.99
+āti,etha,.v.,.3p.$.sg.$.opt.,3,0.99
+āti,eraṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+āti,issati,.v.,.3p.$.sg.$.fut.,3,0.99
+āti,issanti,.v.,.3p.$.pl.$.fut.,3,0.99
+āti,issate,.v.,.3p.$.sg.$.fut.,3,0.99
+āti,issante,.v.,.3p.$.pl.$.fut.,3,0.99
+āti,issare,.v.,.3p.$.pl.$.fut.,3,0.99
+āti,i,.v.,.3p.$.sg.$.aor.,3,0.99
+āti,ī,.v.,.3p.$.sg.$.aor.,3,0.99
+āti,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+āti,iṃsu,.v.,.3p.$.pl.$.aor.,3,0.99
+āti,ṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+āti,uṃū,.v.,.3p.$.pl.$.aor.,3,0.99
+āti,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+āti,a,.v.,.3p.$.sg.$.aor.,3,0.99
+āti,tthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+āti,atthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+āti,e,.v.,.1p.$.sg.$.imp.,3,0.99
+āti,āmase,.v.,.1p.$.pl.$.imp.,3,0.99
+āti,eyyuṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+āti,eyyāmi,.v.,.1p.$.sg.$.opt.,3,0.99
+āti,eyyāma,.v.,.1p.$.pl.$.opt.,3,0.99
+āti,eyyaṃ,.v.,.1p.$.sg.$.opt.,3,0.99
+āti,eyyāmhe,.v.,.1p.$.pl.$.opt.,3,0.99
+āti,issāmi,.v.,.1p.$.sg.$.fut.,3,0.99
+āti,issāma,.v.,.1p.$.pl.$.fut.,3,0.99
+āti,issaṃ,.v.,.1p.$.sg.$.fut.,3,0.99
+āti,issāmhe,.v.,.1p.$.pl.$.fut.,3,0.99
+āti,issāmase,.v.,.1p.$.pl.$.fut.,3,0.99
+āti,iṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+āti,aṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+āti,ṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+āti,a,.v.,.1p.$.sg.$.aor.,3,0.99
+āti,ā,.v.,.1p.$.sg.$.aor.,3,0.99
+āti,imha,.v.,.1p.$.pl.$.aor.,3,0.99
+āti,imhā,.v.,.1p.$.pl.$.aor.,3,0.99
+āti,a,.v.,.1p.$.sg.$.aor.,3,0.99
+āti,imhe,.v.,.1p.$.pl.$.aor.,3,0.99
+āti,eyyāsi,.v.,.2p.$.sg.$.opt.,3,0.99
+āti,eyyātha,.v.,.2p.$.pl.$.opt.,3,0.99
+āti,etho,.v.,.2p.$.sg.$.opt.,3,0.99
+āti,eyyavho,.v.,.2p.$.pl.$.opt.,3,0.99
+āti,issasi,.v.,.2p.$.sg.$.fut.,3,0.99
+āti,issatha,.v.,.2p.$.pl.$.fut.,3,0.99
+āti,issase,.v.,.2p.$.sg.$.fut.,3,0.99
+āti,issavhe,.v.,.2p.$.pl.$.fut.,3,0.99
+āti,i,.v.,.2p.$.sg.$.aor.,3,0.99
+āti,o,.v.,.2p.$.sg.$.aor.,3,0.99
+āti,ā,.v.,.2p.$.sg.$.aor.,3,0.99
+āti,ttha,.v.,.2p.$.pl.$.aor.,3,0.99
+āti,se,.v.,.2p.$.sg.$.aor.,3,0.99
+āti,vhaṃ,.v.,.2p.$.pl.$.aor.,3,0.99
+eti,etha,.v.,.3p.$.sg.$.opt.,3,0.99
+eti,eraṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+eti,issati,.v.,.3p.$.sg.$.fut.,3,0.99
+eti,issanti,.v.,.3p.$.pl.$.fut.,3,0.99
+eti,issate,.v.,.3p.$.sg.$.fut.,3,0.99
+eti,issante,.v.,.3p.$.pl.$.fut.,3,0.99
+eti,issare,.v.,.3p.$.pl.$.fut.,3,0.99
+eti,i,.v.,.3p.$.sg.$.aor.,3,0.99
+eti,ī,.v.,.3p.$.sg.$.aor.,3,0.99
+eti,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+eti,iṃsu,.v.,.3p.$.pl.$.aor.,3,0.99
+eti,ṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+eti,uṃū,.v.,.3p.$.pl.$.aor.,3,0.99
+eti,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+eti,a,.v.,.3p.$.sg.$.aor.,3,0.99
+eti,tthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+eti,atthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+eti,e,.v.,.1p.$.sg.$.imp.,3,0.99
+eti,āmase,.v.,.1p.$.pl.$.imp.,3,0.99
+eti,eyyāmi,.v.,.1p.$.sg.$.opt.,3,0.99
+eti,eyyuṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+eti,eyyāma,.v.,.1p.$.pl.$.opt.,3,0.99
+eti,eyyaṃ,.v.,.1p.$.sg.$.opt.,3,0.99
+eti,eyyāmhe,.v.,.1p.$.pl.$.opt.,3,0.99
+eti,issāmi,.v.,.1p.$.sg.$.fut.,3,0.99
+eti,issāma,.v.,.1p.$.pl.$.fut.,3,0.99
+eti,issaṃ,.v.,.1p.$.sg.$.fut.,3,0.99
+eti,issāmhe,.v.,.1p.$.pl.$.fut.,3,0.99
+eti,issāmase,.v.,.1p.$.pl.$.fut.,3,0.99
+eti,iṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+eti,aṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+eti,ṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+eti,a,.v.,.1p.$.sg.$.aor.,3,0.99
+eti,ā,.v.,.1p.$.sg.$.aor.,3,0.99
+eti,imha,.v.,.1p.$.pl.$.aor.,3,0.99
+eti,imhā,.v.,.1p.$.pl.$.aor.,3,0.99
+eti,a,.v.,.1p.$.sg.$.aor.,3,0.99
+eti,imhe,.v.,.1p.$.pl.$.aor.,3,0.99
+eti,eyyāsi,.v.,.2p.$.sg.$.opt.,3,0.99
+eti,eyyātha,.v.,.2p.$.pl.$.opt.,3,0.99
+eti,etho,.v.,.2p.$.sg.$.opt.,3,0.99
+eti,eyyavho,.v.,.2p.$.pl.$.opt.,3,0.99
+eti,issasi,.v.,.2p.$.sg.$.fut.,3,0.99
+eti,issatha,.v.,.2p.$.pl.$.fut.,3,0.99
+eti,issase,.v.,.2p.$.sg.$.fut.,3,0.99
+eti,issavhe,.v.,.2p.$.pl.$.fut.,3,0.99
+eti,i,.v.,.2p.$.sg.$.aor.,3,0.99
+eti,o,.v.,.2p.$.sg.$.aor.,3,0.99
+eti,ā,.v.,.2p.$.sg.$.aor.,3,0.99
+eti,ttha,.v.,.2p.$.pl.$.aor.,3,0.99
+eti,se,.v.,.2p.$.sg.$.aor.,3,0.99
+eti,vhaṃ,.v.,.2p.$.pl.$.aor.,3,0.99
+oti,etha,.v.,.3p.$.sg.$.opt.,3,0.99
+oti,eraṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+oti,issati,.v.,.3p.$.sg.$.fut.,3,0.99
+oti,issanti,.v.,.3p.$.pl.$.fut.,3,0.99
+oti,issate,.v.,.3p.$.sg.$.fut.,3,0.99
+oti,issante,.v.,.3p.$.pl.$.fut.,3,0.99
+oti,issare,.v.,.3p.$.pl.$.fut.,3,0.99
+oti,i,.v.,.3p.$.sg.$.aor.,3,0.99
+oti,ī,.v.,.3p.$.sg.$.aor.,3,0.99
+oti,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+oti,iṃsu,.v.,.3p.$.pl.$.aor.,3,0.99
+oti,ṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+oti,uṃū,.v.,.3p.$.pl.$.aor.,3,0.99
+oti,ā,.v.,.3p.$.sg.$.aor.,3,0.99
+oti,a,.v.,.3p.$.sg.$.aor.,3,0.99
+oti,tthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+oti,atthuṃ,.v.,.3p.$.pl.$.aor.,3,0.99
+oti,e,.v.,.1p.$.sg.$.imp.,3,0.99
+oti,āmase,.v.,.1p.$.pl.$.imp.,3,0.99
+oti,eyyuṃ,.v.,.3p.$.pl.$.opt.,3,0.99
+oti,eyyāmi,.v.,.1p.$.sg.$.opt.,3,0.99
+oti,eyyāma,.v.,.1p.$.pl.$.opt.,3,0.99
+oti,eyyaṃ,.v.,.1p.$.sg.$.opt.,3,0.99
+oti,eyyāmhe,.v.,.1p.$.pl.$.opt.,3,0.99
+oti,issāmi,.v.,.1p.$.sg.$.fut.,3,0.99
+oti,issāma,.v.,.1p.$.pl.$.fut.,3,0.99
+oti,issaṃ,.v.,.1p.$.sg.$.fut.,3,0.99
+oti,issāmhe,.v.,.1p.$.pl.$.fut.,3,0.99
+oti,issāmase,.v.,.1p.$.pl.$.fut.,3,0.99
+oti,iṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+oti,aṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+oti,ṃ,.v.,.1p.$.sg.$.aor.,3,0.99
+oti,a,.v.,.1p.$.sg.$.aor.,3,0.99
+oti,ā,.v.,.1p.$.sg.$.aor.,3,0.99
+oti,imha,.v.,.1p.$.pl.$.aor.,3,0.99
+oti,imhā,.v.,.1p.$.pl.$.aor.,3,0.99
+oti,a,.v.,.1p.$.sg.$.aor.,3,0.99
+oti,imhe,.v.,.1p.$.pl.$.aor.,3,0.99
+oti,eyyāsi,.v.,.2p.$.sg.$.opt.,3,0.99
+oti,eyyātha,.v.,.2p.$.pl.$.opt.,3,0.99
+oti,etho,.v.,.2p.$.sg.$.opt.,3,0.99
+oti,eyyavho,.v.,.2p.$.pl.$.opt.,3,0.99
+oti,issasi,.v.,.2p.$.sg.$.fut.,3,0.99
+oti,issatha,.v.,.2p.$.pl.$.fut.,3,0.99
+oti,issase,.v.,.2p.$.sg.$.fut.,3,0.99
+oti,issavhe,.v.,.2p.$.pl.$.fut.,3,0.99
+oti,i,.v.,.2p.$.sg.$.aor.,3,0.99
+oti,o,.v.,.2p.$.sg.$.aor.,3,0.99
+oti,ā,.v.,.2p.$.sg.$.aor.,3,0.99
+oti,ttha,.v.,.2p.$.pl.$.aor.,3,0.99
+oti,se,.v.,.2p.$.sg.$.aor.,3,0.99
+oti,vhaṃ,.v.,.2p.$.pl.$.aor.,3,0.99
+ati,ittha,.v.,.2p.$.pl.$.aor.,3,0.99

+ 25170 - 0
api-v12/app/Tools/ending/ending.json

@@ -0,0 +1,25170 @@
+[
+    {
+        "remove": "ti",
+        "add": "tuṃ",
+        "type": ".v:ind.",
+        "grammar": ".inf.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ituṃ",
+        "type": ".v:ind.",
+        "grammar": ".inf.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "itvā",
+        "type": ".v:ind.",
+        "grammar": ".abs.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "atvā",
+        "type": ".v:ind.",
+        "grammar": ".abs.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "tvā",
+        "type": ".v:ind.",
+        "grammar": ".abs.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "antībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "antiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "atiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "antībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "antiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "anto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "atiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "me",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mant",
+        "add": "mesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "ve",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "vant",
+        "add": "vesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "me",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mantu",
+        "add": "mesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "ve",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vantu",
+        "add": "vesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "me",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "mat",
+        "add": "mesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "ve",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "vat",
+        "add": "vesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "ma",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "maṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "manto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "matiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "me",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "manta",
+        "add": "mesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "va",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanta",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantamhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantānaṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantani",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantāni",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantasmiṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantassa",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vante",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantebhi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantehi",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantesu",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vantiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vanto",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatā",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vataṃ",
+        "type": ".ti.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatena",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatī",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vati",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatībhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatīhi",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatīnaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatīsu",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyā",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyaṃ",
+        "type": ".ti.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vatiyo",
+        "type": ".ti.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 5,
+        "cf": 0.3
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vato",
+        "type": ".ti.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "ve",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vebhi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vehi",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "vanta",
+        "add": "vesu",
+        "type": ".ti.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 5,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ato",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "āse",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ato",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ā",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ā",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ato",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ā",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ā",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ābhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ābhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āsu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "issa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "issa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ismā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "imhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ismiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "imhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ayo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "ayo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ayo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ismā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "imhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ismiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "imhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "īni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "yo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "yo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "inī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "in",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "in",
+        "add": "inī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "issa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "issa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "issa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "issa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ismā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "imhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ismā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "imhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ismiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "imhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ismiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "imhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "in",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "in",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ayā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ayā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ayā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ayā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ayā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ayaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "yo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "yo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "usmā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "umhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "usmiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "umhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "avo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "avo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "ave",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "avo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "usmā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "umhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "usmiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "umhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "ūni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uto",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūvo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "uyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "uyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "usmā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "umhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "usmiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "umhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "avo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "avo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "ave",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "avo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uto",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "uyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ū",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "uyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "aso",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "o",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ano",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ano",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ani",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anesu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ato",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ini",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhi",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āsu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assa",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ena",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "inā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "asmā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "amhā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ini",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "asmiṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "amhi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āno",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āsu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "āse",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ān",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ato",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asi",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "āya",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ato",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āto",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ā",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ito",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ini",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ino",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "isu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "ihi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhi",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "isu",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ito",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ini",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "iṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ito",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "myā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "o",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "āyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ī",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "ī",
+        "add": "ini",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iye",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ito",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "i",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ito",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īto",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "inaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īyanaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īyanaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyanaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "iyanaṃ",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "isu",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "araṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āraṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "arā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ara",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āra",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "arā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ara",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āra",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ari",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āro",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āro",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "āro",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āre",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āresu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āyo",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "ar",
+        "add": "iyo",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "ane",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "ubhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "uhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "usu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "no",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "no",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ani",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "āni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "u",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "uṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ussa",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "uno",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "usā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "unā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "usā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "uni",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "usi",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "ūni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "ū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūni",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūsaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūnaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūsaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūbhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūsu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "a",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ābhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "ābhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ā",
+        "add": "āsū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "issā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "issā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "imhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "imhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īnī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "i",
+        "add": "īnī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "issā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "issā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "issā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "issā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "imhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "imhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "in",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "ībhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "umhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "umhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūnī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 1,
+        "cf": 0.3
+    },
+    {
+        "remove": "u",
+        "add": "ūnī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "u",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "umhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ū",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "asī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "asī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "o",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anesū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "an",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ebhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".f.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhī",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āsū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "assā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "enā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "amhī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ehī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āsū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "a",
+        "add": "asī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "isū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.inst.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ihī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "ibhī",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.abl.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "i",
+        "add": "isū",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "īsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ī",
+        "add": "isū",
+        "type": ".n.",
+        "grammar": ".f.$.pl.$.loc.",
+        "endlen": 1,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "arī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārehī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ārebhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "āresū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ar",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ubhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "uhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "esū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "usū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "an",
+        "add": "anī",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "as",
+        "add": "ānī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.dat.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ussā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.gen.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "unī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "usī",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūnī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūnī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 2,
+        "cf": 0.3
+    },
+    {
+        "remove": "us",
+        "add": "ūnī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūbhī",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "us",
+        "add": "ūsū",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 3,
+        "cf": 0.3
+    },
+    {
+        "remove": "ant",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ant",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.pl.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "a",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ā",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.nom.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".m.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "aṃ",
+        "type": ".n.",
+        "grammar": ".nt.$.sg.$.voc.",
+        "endlen": 4,
+        "cf": 0.3
+    },
+    {
+        "remove": "anta",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.dat.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ānaṃ",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.gen.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "e",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.acc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ebhi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.abl.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "ehi",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.inst.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "anta",
+        "add": "esu",
+        "type": ".n.",
+        "grammar": ".m.$.pl.$.loc.",
+        "endlen": 4,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ti",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "nti",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "te",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "nte",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "re",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssati",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssanti",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssate",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssante",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssare",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "tu",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ntu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "taṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ntaṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssa",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssati",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssaṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssatha",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssiṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "si",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sī",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "siṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "suṃū",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sa",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "stthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "satthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "e",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mahe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mha",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mhase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssāmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "mi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssa",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssamhā",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssāmhase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "siṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "saṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sa",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sā",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "simha",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "simhā",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sa",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "simhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "si",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "tha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "se",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "vhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.pres.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssasi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssatha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssase",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssavhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "hi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ta",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssu",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "vho",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.imp.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "se",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssa",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssasi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssatha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssase",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "ssavhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.cond.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "si",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "so",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sā",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sttha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "sse",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "svhaṃ",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ti",
+        "add": "eyya",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.opt.",
+        "endlen": 2,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "etha",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eraṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issati",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issanti",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issate",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issante",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issare",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ī",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "iṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "uṃū",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "tthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "atthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "āmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.pres.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "āma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.pres.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "e",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "āmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issāmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "iṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "aṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "imha",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "imhā",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "imhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyāsi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyātha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "etho",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "eyyavho",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issasi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issatha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issase",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "issavhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "o",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ttha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "se",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "vhaṃ",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "etha",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eraṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issati",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issanti",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issate",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issante",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issare",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ī",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "iṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "uṃū",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "tthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "atthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "e",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "āmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issāmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "iṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "aṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "imha",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "imhā",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "imhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyāsi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyātha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "etho",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "eyyavho",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issasi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issatha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issase",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "issavhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "o",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "ttha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "se",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "āti",
+        "add": "vhaṃ",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "etha",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eraṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issati",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issanti",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issate",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issante",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issare",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ī",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "iṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "uṃū",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "tthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "atthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "e",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "āmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issāmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "iṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "aṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "imha",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "imhā",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "imhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyāsi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyātha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "etho",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "eyyavho",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issasi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issatha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issase",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "issavhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "o",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "ttha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "se",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "eti",
+        "add": "vhaṃ",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "etha",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eraṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issati",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issanti",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issate",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issante",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issare",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ī",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "iṃsu",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "uṃū",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".3p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "tthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "atthuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "e",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "āmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.imp.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyuṃ",
+        "type": ".v.",
+        "grammar": ".3p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issāmi",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issāma",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issaṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issāmhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issāmase",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "iṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "aṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ṃ",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "imha",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "imhā",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "a",
+        "type": ".v.",
+        "grammar": ".1p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "imhe",
+        "type": ".v.",
+        "grammar": ".1p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyāsi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyātha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "etho",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "eyyavho",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.opt.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issasi",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issatha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issase",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "issavhe",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.fut.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "i",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "o",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ā",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "ttha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "se",
+        "type": ".v.",
+        "grammar": ".2p.$.sg.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "oti",
+        "add": "vhaṃ",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    },
+    {
+        "remove": "ati",
+        "add": "ittha",
+        "type": ".v.",
+        "grammar": ".2p.$.pl.$.aor.",
+        "endlen": 3,
+        "cf": 0.99
+    }
+]

+ 1060 - 0
api-v12/app/Tools/ending/noun.csv

@@ -0,0 +1,1060 @@
+type,end,end1,end2,grammar,endlen
+.m.,a,o,o,.m.$.sg.$.nom.,1
+.m.,a,a,a,.m.$.sg.$.voc.,1
+.m.,a,ā,ā,.m.$.sg.$.voc.,1
+.m.,a,aṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,a,assa,sa,.m.$.sg.$.gen.,1
+.m.,a,assa,sa,.m.$.sg.$.dat.,1
+.m.,a,āya,āya,.m.$.sg.$.dat.,1
+.m.,a,ena,na,.m.$.sg.$.inst.,1
+.m.,a,ā,ā,.m.$.sg.$.abl.,1
+.m.,a,asmā,smā,.m.$.sg.$.abl.,1
+.m.,a,amhā,mhā,.m.$.sg.$.abl.,1
+.m.,a,ato,to,.m.$.sg.$.abl.,1
+.m.,a,e,i,.m.$.sg.$.loc.,1
+.m.,a,asmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,a,amhi,mhi,.m.$.sg.$.loc.,1
+.m.,a,ā,a,.m.$.pl.$.nom.,1
+.m.,a,āse,āse,.m.$.pl.$.nom.,1
+.m.,a,ā,a,.m.$.pl.$.voc.,1
+.m.,a,e,e,.m.$.pl.$.acc.,1
+.m.,a,ānaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,a,ānaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,a,ehi,hi,.m.$.pl.$.inst.,1
+.m.,a,ebhi,bhi,.m.$.pl.$.inst.,1
+.m.,a,ehi,hi,.m.$.pl.$.abl.,1
+.m.,a,ebhi,bhi,.m.$.pl.$.abl.,1
+.m.,a,esu,su,.m.$.pl.$.loc.,1
+.nt.,a,aṃ,ṃ,.nt.$.sg.$.nom.,1
+.nt.,a,a,a,.nt.$.sg.$.voc.,1
+.nt.,a,aṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,a,assa,sa,.nt.$.sg.$.gen.,1
+.nt.,a,assa,sa,.nt.$.sg.$.dat.,1
+.nt.,a,āya,āya,.nt.$.sg.$.dat.,1
+.nt.,a,ena,na,.nt.$.sg.$.inst.,1
+.nt.,a,ā,ā,.nt.$.sg.$.abl.,1
+.nt.,a,asmā,smā,.nt.$.sg.$.abl.,1
+.nt.,a,amhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,a,ato,to,.nt.$.sg.$.abl.,1
+.nt.,a,e,i,.nt.$.sg.$.loc.,1
+.nt.,a,asmiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,a,amhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,a,āni,ni,.nt.$.pl.$.nom.,1
+.nt.,a,ā,a,.nt.$.pl.$.nom.,1
+.nt.,a,āni,ni,.nt.$.pl.$.voc.,1
+.nt.,a,ā,ā,.nt.$.pl.$.voc.,1
+.nt.,a,āni,ni,.nt.$.pl.$.acc.,1
+.nt.,a,e,e,.nt.$.pl.$.acc.,1
+.nt.,a,ānaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,a,ānaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,a,ehi,hi,.nt.$.pl.$.inst.,1
+.nt.,a,ebhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,a,ehi,hi,.nt.$.pl.$.abl.,1
+.nt.,a,ebhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,a,esu,su,.nt.$.pl.$.loc.,1
+.f.,ā,ā,ā,.f.$.sg.$.nom.,1
+.f.,ā,ā,ā,.f.$.sg.$.voc.,1
+.f.,ā,e,e,.f.$.sg.$.voc.,1
+.f.,ā,aṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,ā,āya,ya,.f.$.sg.$.gen.,1
+.f.,ā,āya,ya,.f.$.sg.$.dat.,1
+.f.,ā,āya,ya,.f.$.sg.$.inst.,1
+.f.,ā,āya,ya,.f.$.sg.$.abl.,1
+.f.,ā,ato,to,.f.$.sg.$.abl.,1
+.f.,ā,āya,ya,.f.$.sg.$.loc.,1
+.f.,ā,āyaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,ā,ā,ā,.f.$.pl.$.nom.,1
+.f.,ā,āyo,yo,.f.$.pl.$.nom.,1
+.f.,ā,ā,ā,.f.$.pl.$.voc.,1
+.f.,ā,āyo,yo,.f.$.pl.$.voc.,1
+.f.,ā,ā,ā,.f.$.pl.$.acc.,1
+.f.,ā,āyo,yo,.f.$.pl.$.acc.,1
+.f.,ā,ānaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,ā,ānaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,ā,āhi,hi,.f.$.pl.$.inst.,1
+.f.,ā,ābhi,bhi,.f.$.pl.$.inst.,1
+.f.,ā,āhi,hi,.f.$.pl.$.abl.,1
+.f.,ā,ābhi,bhi,.f.$.pl.$.abl.,1
+.f.,ā,āsu,su,.f.$.pl.$.loc.,1
+.m.,i,i,i,.m.$.sg.$.nom.,1
+.m.,i,i,i,.m.$.sg.$.voc.,1
+.m.,i,iṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,i,issa,sa,.m.$.sg.$.gen.,1
+.m.,i,ino,no,.m.$.sg.$.gen.,1
+.m.,i,issa,sa,.m.$.sg.$.dat.,1
+.m.,i,ino,no,.m.$.sg.$.dat.,1
+.m.,i,inā,nā,.m.$.sg.$.inst.,1
+.m.,i,inā,nā,.m.$.sg.$.abl.,1
+.m.,i,ismā,smā,.m.$.sg.$.abl.,1
+.m.,i,imhā,mhā,.m.$.sg.$.abl.,1
+.m.,i,ismiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,i,imhi,mhi,.m.$.sg.$.loc.,1
+.m.,i,ī,ī,.m.$.pl.$.nom.,1
+.m.,i,ayo,yo,.m.$.pl.$.nom.,1
+.m.,i,ī,ī,.m.$.pl.$.voc.,1
+.m.,i,ayo,yo,.m.$.pl.$.voc.,1
+.m.,i,ī,ī,.m.$.pl.$.acc.,1
+.m.,i,ayo,yo,.m.$.pl.$.acc.,1
+.m.,i,īnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,i,īnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,i,īhi,hi,.m.$.pl.$.inst.,1
+.m.,i,ībhi,bhi,.m.$.pl.$.inst.,1
+.m.,i,īhi,hi,.m.$.pl.$.abl.,1
+.m.,i,ībhi,bhi,.m.$.pl.$.abl.,1
+.m.,i,īsu,su,.m.$.pl.$.loc.,1
+.nt.,i,i,i,.nt.$.sg.$.nom.,1
+.nt.,i,i,i,.nt.$.sg.$.voc.,1
+.nt.,i,iṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,i,assa,sa,.nt.$.sg.$.gen.,1
+.nt.,i,ino,no,.nt.$.sg.$.gen.,1
+.nt.,i,assa,sa,.nt.$.sg.$.dat.,1
+.nt.,i,ino,no,.nt.$.sg.$.dat.,1
+.nt.,i,inā,nā,.nt.$.sg.$.inst.,1
+.nt.,i,inā,nā,.nt.$.sg.$.abl.,1
+.nt.,i,ismā,smā,.nt.$.sg.$.abl.,1
+.nt.,i,imhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,i,ismiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,i,imhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,i,īni,ni,.nt.$.pl.$.nom.,1
+.nt.,i,ī,ī,.nt.$.pl.$.nom.,1
+.nt.,i,īni,ni,.nt.$.pl.$.voc.,1
+.nt.,i,ī,ī,.nt.$.pl.$.voc.,1
+.nt.,i,īni,ni,.nt.$.pl.$.acc.,1
+.nt.,i,ī,ī,.nt.$.pl.$.acc.,1
+.nt.,i,īnaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,i,īnaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,i,īhi,hi,.nt.$.pl.$.inst.,1
+.nt.,i,ībhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,i,īhi,hi,.nt.$.pl.$.abl.,1
+.nt.,i,ībhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,i,īsu,su,.nt.$.pl.$.loc.,1
+.f.,i,i,i,.f.$.sg.$.nom.,1
+.f.,i,i,i,.f.$.sg.$.voc.,1
+.f.,i,iṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,i,iyā,ā,.f.$.sg.$.gen.,1
+.f.,i,yā,ā,.f.$.sg.$.gen.,1
+.f.,i,iyā,ā,.f.$.sg.$.dat.,1
+.f.,i,yā,ā,.f.$.sg.$.dat.,1
+.f.,i,iyā,ā,.f.$.sg.$.inst.,1
+.f.,i,yā,ā,.f.$.sg.$.inst.,1
+.f.,i,iyā,ā,.f.$.sg.$.abl.,1
+.f.,i,yā,ā,.f.$.sg.$.abl.,1
+.f.,i,iyā,ā,.f.$.sg.$.loc.,1
+.f.,i,yā,ā,.f.$.sg.$.loc.,1
+.f.,i,iyaṃ,ṃ,.f.$.sg.$.loc.,1
+.f.,i,yaṃ,ṃ,.f.$.sg.$.loc.,1
+.f.,i,ī,ī,.f.$.pl.$.nom.,1
+.f.,i,iyo,yo,.f.$.pl.$.nom.,1
+.f.,i,yo,yo,.f.$.pl.$.nom.,1
+.f.,i,ī,ī,.f.$.pl.$.voc.,1
+.f.,i,iyo,yo,.f.$.pl.$.voc.,1
+.f.,i,yo,yo,.f.$.pl.$.voc.,1
+.f.,i,ī,ī,.f.$.pl.$.acc.,1
+.f.,i,iyo,yo,.f.$.pl.$.acc.,1
+.f.,i,yo,yo,.f.$.pl.$.acc.,1
+.f.,i,īnaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,i,īnaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,i,īhi,hi,.f.$.pl.$.inst.,1
+.f.,i,ībhi,bhi,.f.$.pl.$.inst.,1
+.f.,i,īhi,hi,.f.$.pl.$.abl.,1
+.f.,i,ībhi,bhi,.f.$.pl.$.abl.,1
+.f.,i,īsu,su,.f.$.pl.$.loc.,1
+.m.,ī,ī,ī,.m.$.sg.$.nom.,1
+.m.,in,ī,ī,.m.$.sg.$.nom.,2
+.m.,ī,ī,ī,.m.$.sg.$.voc.,1
+.m.,ī,inī,nī,.m.$.sg.$.voc.,1
+.m.,in,ī,ī,.m.$.sg.$.voc.,2
+.m.,in,inī,nī,.m.$.sg.$.voc.,2
+.m.,ī,iṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,ī,inaṃ,naṃ,.m.$.sg.$.acc.,1
+.m.,in,iṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,in,inaṃ,naṃ,.m.$.sg.$.acc.,2
+.m.,ī,issa,sa,.m.$.sg.$.gen.,1
+.m.,ī,ino,no,.m.$.sg.$.gen.,1
+.m.,in,issa,sa,.m.$.sg.$.gen.,2
+.m.,in,ino,no,.m.$.sg.$.gen.,2
+.m.,ī,issa,sa,.m.$.sg.$.dat.,1
+.m.,ī,ino,no,.m.$.sg.$.dat.,1
+.m.,in,issa,sa,.m.$.sg.$.dat.,2
+.m.,in,ino,no,.m.$.sg.$.dat.,2
+.m.,ī,inā,nā,.m.$.sg.$.inst.,1
+.m.,in,inā,nā,.m.$.sg.$.inst.,2
+.m.,ī,inā,nā,.m.$.sg.$.abl.,1
+.m.,ī,ismā,smā,.m.$.sg.$.abl.,1
+.m.,ī,imhā,mhā,.m.$.sg.$.abl.,1
+.m.,in,inā,nā,.m.$.sg.$.abl.,2
+.m.,in,ismā,smā,.m.$.sg.$.abl.,2
+.m.,in,imhā,mhā,.m.$.sg.$.abl.,2
+.m.,ī,ismiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,ī,imhi,mhi,.m.$.sg.$.loc.,1
+.m.,in,ismiṃ,smiṃ,.m.$.sg.$.loc.,2
+.m.,in,imhi,mhi,.m.$.sg.$.loc.,2
+.m.,ī,ī,ī,.m.$.pl.$.nom.,1
+.m.,ī,ino,no,.m.$.pl.$.nom.,1
+.m.,in,ī,ī,.m.$.pl.$.nom.,2
+.m.,in,ino,no,.m.$.pl.$.nom.,2
+.m.,ī,ī,ī,.m.$.pl.$.voc.,1
+.m.,ī,ino,no,.m.$.pl.$.voc.,1
+.m.,in,ī,ī,.m.$.pl.$.voc.,2
+.m.,in,ino,no,.m.$.pl.$.voc.,2
+.m.,ī,ī,ī,.m.$.pl.$.acc.,1
+.m.,ī,ino,no,.m.$.pl.$.acc.,1
+.m.,in,ī,ī,.m.$.pl.$.acc.,2
+.m.,in,ino,no,.m.$.pl.$.acc.,2
+.m.,ī,inaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,in,inaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,ī,inaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,in,inaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,ī,īhi,hi,.m.$.pl.$.inst.,1
+.m.,ī,ībhi,bhi,.m.$.pl.$.inst.,1
+.m.,in,īhi,hi,.m.$.pl.$.inst.,2
+.m.,in,ībhi,bhi,.m.$.pl.$.inst.,2
+.m.,ī,īhi,hi,.m.$.pl.$.abl.,1
+.m.,ī,ībhi,bhi,.m.$.pl.$.abl.,1
+.m.,in,īhi,hi,.m.$.pl.$.abl.,2
+.m.,in,ībhi,bhi,.m.$.pl.$.abl.,2
+.m.,ī,īsu,su,.m.$.pl.$.loc.,1
+.m.,in,īsu,su,.m.$.pl.$.loc.,2
+.f.,ī,ī,i,.f.$.sg.$.nom.,1
+.f.,ī,ī,ī,.f.$.sg.$.voc.,1
+.f.,ī,iṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,ī,iyā,ā,.f.$.sg.$.gen.,1
+.f.,ī,ayā,ā,.f.$.sg.$.gen.,1
+.f.,ī,yā,ā,.f.$.sg.$.gen.,1
+.f.,ī,iyā,ā,.f.$.sg.$.dat.,1
+.f.,ī,ayā,ā,.f.$.sg.$.dat.,1
+.f.,ī,yā,ā,.f.$.sg.$.dat.,1
+.f.,ī,iyā,ā,.f.$.sg.$.inst.,1
+.f.,ī,ayā,ā,.f.$.sg.$.inst.,1
+.f.,ī,yā,ā,.f.$.sg.$.inst.,1
+.f.,ī,iyā,ā,.f.$.sg.$.abl.,1
+.f.,ī,ayā,ā,.f.$.sg.$.abl.,1
+.f.,ī,yā,ā,.f.$.sg.$.abl.,1
+.f.,ī,iyā,ā,.f.$.sg.$.loc.,1
+.f.,ī,ayā,ā,.f.$.sg.$.loc.,1
+.f.,ī,yā,ā,.f.$.sg.$.loc.,1
+.f.,ī,iyaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,ī,ayaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,ī,yaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,ī,ī,ī,.f.$.pl.$.nom.,1
+.f.,ī,iyo,yo,.f.$.pl.$.nom.,1
+.f.,ī,yo,yo,.f.$.pl.$.nom.,1
+.f.,ī,ī,ī,.f.$.pl.$.voc.,1
+.f.,ī,iyo,yo,.f.$.pl.$.voc.,1
+.f.,ī,yo,yo,.f.$.pl.$.voc.,1
+.f.,ī,ī,ī,.f.$.pl.$.acc.,1
+.f.,ī,iyo,yo,.f.$.pl.$.acc.,1
+.f.,ī,yo,yo,.f.$.pl.$.acc.,1
+.f.,ī,īnaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,ī,īnaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,ī,īhi,hi,.f.$.pl.$.inst.,1
+.f.,ī,ībhi,bhi,.f.$.pl.$.inst.,1
+.f.,ī,īhi,hi,.f.$.pl.$.abl.,1
+.f.,ī,ībhi,bhi,.f.$.pl.$.abl.,1
+.f.,ī,īsu,su,.f.$.pl.$.loc.,1
+.m.,u,u,u,.m.$.sg.$.nom.,1
+.m.,u,u,u,.m.$.sg.$.voc.,1
+.m.,u,uṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,u,ussa,sa,.m.$.sg.$.gen.,1
+.m.,u,uno,no,.m.$.sg.$.gen.,1
+.m.,u,ussa,sa,.m.$.sg.$.dat.,1
+.m.,u,uno,no,.m.$.sg.$.dat.,1
+.m.,u,unā,na,.m.$.sg.$.inst.,1
+.m.,u,unā,nā,.m.$.sg.$.abl.,1
+.m.,u,usmā,smā,.m.$.sg.$.abl.,1
+.m.,u,umhā,mhā,.m.$.sg.$.abl.,1
+.m.,u,usmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,u,umhi,mhi,.m.$.sg.$.loc.,1
+.m.,u,ū,ū,.m.$.pl.$.nom.,1
+.m.,u,avo,o,.m.$.pl.$.nom.,1
+.m.,u,ū,ū,.m.$.pl.$.voc.,1
+.m.,u,avo,o,.m.$.pl.$.voc.,1
+.m.,u,ave,e,.m.$.pl.$.voc.,1
+.m.,u,ū,ū,.m.$.pl.$.acc.,1
+.m.,u,avo,o,.m.$.pl.$.acc.,1
+.m.,u,ūnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,u,ūnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,u,ūhi,hi,.m.$.pl.$.inst.,1
+.m.,u,ūbhi,bhi,.m.$.pl.$.inst.,1
+.m.,u,ūhi,hi,.m.$.pl.$.abl.,1
+.m.,u,ūbhi,bhi,.m.$.pl.$.abl.,1
+.m.,u,ūsu,su,.m.$.pl.$.loc.,1
+.nt.,u,u,u,.nt.$.sg.$.nom.,1
+.nt.,u,u,u,.nt.$.sg.$.voc.,1
+.nt.,u,uṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,u,ussa,sa,.nt.$.sg.$.gen.,1
+.nt.,u,uno,no,.nt.$.sg.$.gen.,1
+.nt.,u,ussa,sa,.nt.$.sg.$.dat.,1
+.nt.,u,uno,no,.nt.$.sg.$.dat.,1
+.nt.,u,unā,na,.nt.$.sg.$.inst.,1
+.nt.,u,unā,nā,.nt.$.sg.$.abl.,1
+.nt.,u,usmā,smā,.nt.$.sg.$.abl.,1
+.nt.,u,umhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,u,usmiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,u,umhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,u,ū,ū,.nt.$.pl.$.nom.,1
+.nt.,u,ūni,ni,.nt.$.pl.$.nom.,1
+.nt.,u,ū,ū,.nt.$.pl.$.voc.,1
+.nt.,u,ūni,ni,.nt.$.pl.$.voc.,1
+.nt.,u,ū,ū,.nt.$.pl.$.acc.,1
+.nt.,u,ūni,ni,.nt.$.pl.$.acc.,1
+.nt.,u,ūnaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,u,ūnaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,u,ūhi,hi,.nt.$.pl.$.inst.,1
+.nt.,u,ūbhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,u,ūhi,hi,.nt.$.pl.$.abl.,1
+.nt.,u,ūbhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,u,ūsu,su,.nt.$.pl.$.loc.,1
+.f.,u,u,u,.f.$.sg.$.nom.,1
+.f.,u,u,u,.f.$.sg.$.voc.,1
+.f.,u,uṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,u,uyā,yā,.f.$.sg.$.gen.,1
+.f.,u,uyā,yā,.f.$.sg.$.dat.,1
+.f.,u,uyā,yā,.f.$.sg.$.inst.,1
+.f.,u,uyā,yā,.f.$.sg.$.abl.,1
+.f.,u,uto,to,.f.$.sg.$.abl.,1
+.f.,u,uyā,yā,.f.$.sg.$.loc.,1
+.f.,u,uyaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,u,ū,ū,.f.$.pl.$.nom.,1
+.f.,u,uyo,yo,.f.$.pl.$.nom.,1
+.f.,u,ūvo,o,.f.$.pl.$.nom.,1
+.f.,u,ū,ū,.f.$.pl.$.voc.,1
+.f.,u,uyo,yo,.f.$.pl.$.voc.,1
+.f.,u,ū,ū,.f.$.pl.$.acc.,1
+.f.,u,uyo,yo,.f.$.pl.$.acc.,1
+.f.,u,ūnaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,u,ūnaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,u,ūhi,hi,.f.$.pl.$.inst.,1
+.f.,u,ūbhi,bhi,.f.$.pl.$.inst.,1
+.f.,u,ūhi,hi,.f.$.pl.$.abl.,1
+.f.,u,ūbhi,bhi,.f.$.pl.$.abl.,1
+.f.,u,ūsu,su,.f.$.pl.$.loc.,1
+.m.,ū,ū,ū,.m.$.sg.$.nom.,1
+.m.,ū,ū,ū,.m.$.sg.$.voc.,1
+.m.,ū,uṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,ū,ussa,sa,.m.$.sg.$.gen.,1
+.m.,ū,uno,no,.m.$.sg.$.gen.,1
+.m.,ū,ussa,sa,.m.$.sg.$.dat.,1
+.m.,ū,uno,no,.m.$.sg.$.dat.,1
+.m.,ū,unā,na,.m.$.sg.$.inst.,1
+.m.,ū,unā,nā,.m.$.sg.$.abl.,1
+.m.,ū,usmā,smā,.m.$.sg.$.abl.,1
+.m.,ū,umhā,mhā,.m.$.sg.$.abl.,1
+.m.,ū,usmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,ū,umhi,mhi,.m.$.sg.$.loc.,1
+.m.,ū,ū,ū,.m.$.pl.$.nom.,1
+.m.,ū,avo,o,.m.$.pl.$.nom.,1
+.m.,ū,ū,ū,.m.$.pl.$.voc.,1
+.m.,ū,avo,o,.m.$.pl.$.voc.,1
+.m.,ū,ave,e,.m.$.pl.$.voc.,1
+.m.,ū,ū,ū,.m.$.pl.$.acc.,1
+.m.,ū,avo,o,.m.$.pl.$.acc.,1
+.m.,ū,ūnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,ū,ūnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,ū,ūhi,hi,.m.$.pl.$.inst.,1
+.m.,ū,ūbhi,bhi,.m.$.pl.$.inst.,1
+.m.,ū,ūhi,hi,.m.$.pl.$.abl.,1
+.m.,ū,ūbhi,bhi,.m.$.pl.$.abl.,1
+.m.,ū,ūsu,su,.m.$.pl.$.loc.,1
+.f.,ū,ū,ū,.f.$.sg.$.nom.,1
+.f.,ū,ū,ū,.f.$.sg.$.voc.,1
+.f.,ū,uṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,ū,uyā,yā,.f.$.sg.$.gen.,1
+.f.,ū,uyā,yā,.f.$.sg.$.dat.,1
+.f.,ū,uyā,yā,.f.$.sg.$.inst.,1
+.f.,ū,uyā,yā,.f.$.sg.$.abl.,1
+.f.,ū,uto,to,.f.$.sg.$.abl.,1
+.f.,ū,uyā,yā,.f.$.sg.$.loc.,1
+.f.,ū,uyaṃ,yaṃ,.f.$.sg.$.loc.,1
+.f.,ū,ū,ū,.f.$.pl.$.nom.,1
+.f.,ū,uyo,yo,.f.$.pl.$.nom.,1
+.f.,ū,ū,ū,.f.$.pl.$.voc.,1
+.f.,ū,uyo,yo,.f.$.pl.$.voc.,1
+.f.,ū,ū,ū,.f.$.pl.$.acc.,1
+.f.,ū,uyo,yo,.f.$.pl.$.acc.,1
+.f.,ū,ūnaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,ū,ūnaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,ū,ūhi,hi,.f.$.pl.$.inst.,1
+.f.,ū,ūbhi,bhi,.f.$.pl.$.inst.,1
+.f.,ū,ūhi,hi,.f.$.pl.$.abl.,1
+.f.,ū,ūbhi,bhi,.f.$.pl.$.abl.,1
+.f.,ū,ūsu,su,.f.$.pl.$.loc.,1
+.m.,as,o,o,.m.$.sg.$.nom.,2
+.m.,as,aṃ,ṃ,.m.$.sg.$.nom.,2
+.m.,o,o,o,.m.$.sg.$.nom.,1
+.m.,o,aṃ,ṃ,.m.$.sg.$.nom.,1
+.m.,as,o,o,.m.$.sg.$.voc.,2
+.m.,as,aṃ,ṃ,.m.$.sg.$.voc.,2
+.m.,as,ā,ā,.m.$.sg.$.voc.,2
+.m.,as,a,a,.m.$.sg.$.voc.,2
+.m.,o,o,o,.m.$.sg.$.voc.,1
+.m.,o,aṃ,ṃ,.m.$.sg.$.voc.,1
+.m.,o,ā,ā,.m.$.sg.$.voc.,1
+.m.,o,a,a,.m.$.sg.$.voc.,1
+.m.,as,o,o,.m.$.sg.$.acc.,2
+.m.,as,aṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,o,o,o,.m.$.sg.$.acc.,1
+.m.,o,aṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,as,aso,so,.m.$.sg.$.gen.,2
+.m.,as,assa,sa,.m.$.sg.$.gen.,2
+.m.,o,aso,so,.m.$.sg.$.gen.,1
+.m.,o,assa,sa,.m.$.sg.$.gen.,1
+.m.,as,aso,so,.m.$.sg.$.dat.,2
+.m.,as,assa,sa,.m.$.sg.$.dat.,2
+.m.,o,aso,so,.m.$.sg.$.dat.,1
+.m.,o,assa,sa,.m.$.sg.$.dat.,1
+.m.,as,asā,sā,.m.$.sg.$.inst.,2
+.m.,as,ena,na,.m.$.sg.$.inst.,2
+.m.,o,asā,sā,.m.$.sg.$.inst.,1
+.m.,o,ena,na,.m.$.sg.$.inst.,1
+.m.,as,asā,sā,.m.$.sg.$.abl.,2
+.m.,as,asmā,smā,.m.$.sg.$.abl.,2
+.m.,as,amhā,mhā,.m.$.sg.$.abl.,2
+.m.,as,ā,ā,.m.$.sg.$.abl.,2
+.m.,o,asā,sā,.m.$.sg.$.abl.,1
+.m.,o,asmā,smā,.m.$.sg.$.abl.,1
+.m.,o,amhā,mhā,.m.$.sg.$.abl.,1
+.m.,o,ā,ā,.m.$.sg.$.abl.,1
+.m.,as,asi,i,.m.$.sg.$.loc.,2
+.m.,as,e,i,.m.$.sg.$.loc.,2
+.m.,as,asmiṃ,smiṃ,.m.$.sg.$.loc.,2
+.m.,as,amhi,mhi,.m.$.sg.$.loc.,2
+.m.,o,asi,i,.m.$.sg.$.loc.,1
+.m.,o,e,i,.m.$.sg.$.loc.,1
+.m.,o,asmiṃ,smiṃ,.m.$.sg.$.loc.,1
+.m.,o,amhi,mhi,.m.$.sg.$.loc.,1
+.m.,as,ā,ā,.m.$.pl.$.nom.,2
+.m.,o,ā,ā,.m.$.pl.$.nom.,1
+.m.,as,ā,ā,.m.$.pl.$.voc.,2
+.m.,o,ā,ā,.m.$.pl.$.voc.,1
+.m.,as,e,e,.m.$.pl.$.acc.,2
+.m.,o,e,e,.m.$.pl.$.acc.,1
+.m.,as,ānaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,o,ānaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,as,ānaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,o,ānaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,as,ehi,hi,.m.$.pl.$.inst.,2
+.m.,as,ebhi,bhi,.m.$.pl.$.inst.,2
+.m.,o,ehi,hi,.m.$.pl.$.inst.,1
+.m.,o,ebhi,bhi,.m.$.pl.$.inst.,1
+.m.,as,ehi,hi,.m.$.pl.$.abl.,2
+.m.,as,ebhi,bhi,.m.$.pl.$.abl.,2
+.m.,o,ehi,hi,.m.$.pl.$.abl.,1
+.m.,o,ebhi,bhi,.m.$.pl.$.abl.,1
+.m.,as,esu,su,.m.$.pl.$.loc.,2
+.m.,o,esu,su,.m.$.pl.$.loc.,1
+.nt.,as,o,o,.nt.$.sg.$.nom.,2
+.nt.,as,aṃ,ṃ,.nt.$.sg.$.nom.,2
+.nt.,o,o,o,.nt.$.sg.$.nom.,1
+.nt.,o,aṃ,ṃ,.nt.$.sg.$.nom.,1
+.nt.,as,o,o,.nt.$.sg.$.voc.,2
+.nt.,as,aṃ,ṃ,.nt.$.sg.$.voc.,2
+.nt.,as,ā,ā,.nt.$.sg.$.voc.,2
+.nt.,as,a,a,.nt.$.sg.$.voc.,2
+.nt.,o,o,o,.nt.$.sg.$.voc.,1
+.nt.,o,aṃ,ṃ,.nt.$.sg.$.voc.,1
+.nt.,o,ā,ā,.nt.$.sg.$.voc.,1
+.nt.,o,a,a,.nt.$.sg.$.voc.,1
+.nt.,as,o,o,.nt.$.sg.$.acc.,2
+.nt.,as,aṃ,ṃ,.nt.$.sg.$.acc.,2
+.nt.,o,o,o,.nt.$.sg.$.acc.,1
+.nt.,o,aṃ,ṃ,.nt.$.sg.$.acc.,1
+.nt.,as,aso,so,.nt.$.sg.$.gen.,2
+.nt.,as,assa,sa,.nt.$.sg.$.gen.,2
+.nt.,o,aso,so,.nt.$.sg.$.gen.,1
+.nt.,o,assa,sa,.nt.$.sg.$.gen.,1
+.nt.,as,aso,so,.nt.$.sg.$.dat.,2
+.nt.,as,assa,sa,.nt.$.sg.$.dat.,2
+.nt.,o,aso,so,.nt.$.sg.$.dat.,1
+.nt.,o,assa,sa,.nt.$.sg.$.dat.,1
+.nt.,as,asā,sā,.nt.$.sg.$.inst.,2
+.nt.,as,ena,na,.nt.$.sg.$.inst.,2
+.nt.,o,asā,sā,.nt.$.sg.$.inst.,1
+.nt.,o,ena,na,.nt.$.sg.$.inst.,1
+.nt.,as,asā,sā,.nt.$.sg.$.abl.,2
+.nt.,as,asmā,smā,.nt.$.sg.$.abl.,2
+.nt.,as,amhā,mhā,.nt.$.sg.$.abl.,2
+.nt.,as,ā,ā,.nt.$.sg.$.abl.,2
+.nt.,o,asā,sā,.nt.$.sg.$.abl.,1
+.nt.,o,asmā,smā,.nt.$.sg.$.abl.,1
+.nt.,o,amhā,mhā,.nt.$.sg.$.abl.,1
+.nt.,o,ā,ā,.nt.$.sg.$.abl.,1
+.nt.,as,asi,i,.nt.$.sg.$.loc.,2
+.nt.,as,e,i,.nt.$.sg.$.loc.,2
+.nt.,as,asmiṃ,smiṃ,.nt.$.sg.$.loc.,2
+.nt.,as,amhi,mhi,.nt.$.sg.$.loc.,2
+.nt.,o,asi,i,.nt.$.sg.$.loc.,1
+.nt.,o,e,i,.nt.$.sg.$.loc.,1
+.nt.,o,asmiṃ,smiṃ,.nt.$.sg.$.loc.,1
+.nt.,o,amhi,mhi,.nt.$.sg.$.loc.,1
+.nt.,as,ā,ā,.nt.$.pl.$.nom.,2
+.nt.,o,ā,ā,.nt.$.pl.$.nom.,1
+.nt.,as,ā,ā,.nt.$.pl.$.voc.,2
+.nt.,o,ā,ā,.nt.$.pl.$.voc.,1
+.nt.,as,e,e,.nt.$.pl.$.acc.,2
+.nt.,o,e,e,.nt.$.pl.$.acc.,1
+.nt.,as,ānaṃ,naṃ,.nt.$.pl.$.gen.,2
+.nt.,o,ānaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,as,ānaṃ,naṃ,.nt.$.pl.$.dat.,2
+.nt.,o,ānaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,as,ehi,hi,.nt.$.pl.$.inst.,2
+.nt.,as,ebhi,bhi,.nt.$.pl.$.inst.,2
+.nt.,o,ehi,hi,.nt.$.pl.$.inst.,1
+.nt.,o,ebhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,as,ehi,hi,.nt.$.pl.$.abl.,2
+.nt.,as,ebhi,bhi,.nt.$.pl.$.abl.,2
+.nt.,o,ehi,hi,.nt.$.pl.$.abl.,1
+.nt.,o,ebhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,as,esu,su,.nt.$.pl.$.loc.,2
+.nt.,o,esu,su,.nt.$.pl.$.loc.,1
+.m.,an,ā,ā,.m.$.sg.$.nom.,2
+.m.,an,ā,ā,.m.$.sg.$.voc.,2
+.m.,an,a,a,.m.$.sg.$.voc.,2
+.m.,an,aṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,an,ānaṃ,naṃ,.m.$.sg.$.acc.,2
+.m.,an,anaṃ,naṃ,.m.$.sg.$.acc.,2
+.m.,an,assa,sa,.m.$.sg.$.gen.,2
+.m.,an,ano,no,.m.$.sg.$.gen.,2
+.m.,an,assa,sa,.m.$.sg.$.dat.,2
+.m.,an,ano,no,.m.$.sg.$.dat.,2
+.m.,an,ena,na,.m.$.sg.$.inst.,2
+.m.,an,anā,na,.m.$.sg.$.inst.,2
+.m.,an,anā,nā,.m.$.sg.$.abl.,2
+.m.,an,asmā,smā,.m.$.sg.$.abl.,2
+.m.,an,amhā,mhā,.m.$.sg.$.abl.,2
+.m.,an,ani,i,.m.$.sg.$.loc.,2
+.m.,an,asmiṃ,smiṃ,.m.$.sg.$.loc.,2
+.m.,an,amhi,mhi,.m.$.sg.$.loc.,2
+.m.,an,ā,a,.m.$.pl.$.nom.,2
+.m.,an,āno,āno,.m.$.pl.$.nom.,2
+.m.,an,ā,ā,.m.$.pl.$.voc.,2
+.m.,an,āno,āno,.m.$.pl.$.voc.,2
+.m.,an,āno,no,.m.$.pl.$.acc.,2
+.m.,an,e,e,.m.$.pl.$.acc.,2
+.m.,an,ānaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,an,ānaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,an,anehi,hi,.m.$.pl.$.inst.,2
+.m.,an,anebhi,bhi,.m.$.pl.$.inst.,2
+.m.,an,anehi,hi,.m.$.pl.$.abl.,2
+.m.,an,anebhi,bhi,.m.$.pl.$.abl.,2
+.m.,an,anesu,su,.m.$.pl.$.loc.,2
+.nt.,an,aṃ,ṃ,.nt.$.sg.$.nom.,2
+.nt.,an,a,a,.nt.$.sg.$.voc.,2
+.nt.,an,aṃ,ṃ,.nt.$.sg.$.acc.,2
+.nt.,an,assa,sa,.nt.$.sg.$.gen.,2
+.nt.,an,assa,sa,.nt.$.sg.$.dat.,2
+.nt.,an,āya,āya,.nt.$.sg.$.dat.,2
+.nt.,an,ena,na,.nt.$.sg.$.inst.,2
+.nt.,an,ā,ā,.nt.$.sg.$.abl.,2
+.nt.,an,asmā,smā,.nt.$.sg.$.abl.,2
+.nt.,an,amhā,mhā,.nt.$.sg.$.abl.,2
+.nt.,an,ato,to,.nt.$.sg.$.abl.,2
+.nt.,an,e,i,.nt.$.sg.$.loc.,2
+.nt.,an,asmiṃ,smiṃ,.nt.$.sg.$.loc.,2
+.nt.,an,amhi,mhi,.nt.$.sg.$.loc.,2
+.nt.,an,āni,ni,.nt.$.pl.$.nom.,2
+.nt.,an,ā,a,.nt.$.pl.$.nom.,2
+.nt.,an,āni,ni,.nt.$.pl.$.voc.,2
+.nt.,an,ā,ā,.nt.$.pl.$.voc.,2
+.nt.,an,āni,ni,.nt.$.pl.$.acc.,2
+.nt.,an,e,e,.nt.$.pl.$.acc.,2
+.nt.,an,ānaṃ,naṃ,.nt.$.pl.$.gen.,2
+.nt.,an,ānaṃ,naṃ,.nt.$.pl.$.dat.,2
+.nt.,an,ehi,hi,.nt.$.pl.$.inst.,2
+.nt.,an,ebhi,bhi,.nt.$.pl.$.inst.,2
+.nt.,an,ehi,hi,.nt.$.pl.$.abl.,2
+.nt.,an,ebhi,bhi,.nt.$.pl.$.abl.,2
+.nt.,an,esu,su,.nt.$.pl.$.loc.,2
+.f.,ar,ā,ā,.f.$.sg.$.nom.,2
+.f.,ar,ā,ā,.f.$.sg.$.voc.,2
+.f.,ar,aṃ,ṃ,.f.$.sg.$.acc.,2
+.f.,ar,ānaṃ,naṃ,.f.$.sg.$.acc.,2
+.f.,ar,assa,sa,.f.$.sg.$.gen.,2
+.f.,ar,ino,no,.f.$.sg.$.gen.,2
+.f.,ar,assa,sa,.f.$.sg.$.dat.,2
+.f.,ar,ino,no,.f.$.sg.$.dat.,2
+.f.,ar,ena,na,.f.$.sg.$.inst.,2
+.f.,ar,inā,na,.f.$.sg.$.inst.,2
+.f.,ar,asmā,smā,.f.$.sg.$.abl.,2
+.f.,ar,amhā,mhā,.f.$.sg.$.abl.,2
+.f.,ar,ini,i,.f.$.sg.$.loc.,2
+.f.,ar,asmiṃ,smiṃ,.f.$.sg.$.loc.,2
+.f.,ar,amhi,mhi,.f.$.sg.$.loc.,2
+.f.,ar,ā,a,.f.$.pl.$.nom.,2
+.f.,ar,āno,āno,.f.$.pl.$.nom.,2
+.f.,ar,ā,a,.f.$.pl.$.voc.,2
+.f.,ar,āno,āno,.f.$.pl.$.voc.,2
+.f.,ar,ā,a,.f.$.pl.$.acc.,2
+.f.,ar,āno,āno,.f.$.pl.$.acc.,2
+.f.,ar,ānaṃ,naṃ,.f.$.pl.$.gen.,2
+.f.,ar,ānaṃ,naṃ,.f.$.pl.$.dat.,2
+.f.,ar,ehi,hi,.f.$.pl.$.inst.,2
+.f.,ar,āhi,bhi,.f.$.pl.$.inst.,2
+.f.,ar,ehi,hi,.f.$.pl.$.abl.,2
+.f.,ar,āhi,bhi,.f.$.pl.$.abl.,2
+.f.,ar,esu,su,.f.$.pl.$.loc.,2
+.f.,ar,āsu,su,.f.$.pl.$.loc.,2
+.nt.,ar,ā,ā,.nt.$.sg.$.nom.,2
+.nt.,ar,ā,ā,.nt.$.sg.$.voc.,2
+.nt.,ar,aṃ,ṃ,.nt.$.sg.$.acc.,2
+.nt.,ar,ānaṃ,naṃ,.nt.$.sg.$.acc.,2
+.nt.,ar,assa,sa,.nt.$.sg.$.gen.,2
+.nt.,ar,ino,no,.nt.$.sg.$.gen.,2
+.nt.,ar,assa,sa,.nt.$.sg.$.dat.,2
+.nt.,ar,ino,no,.nt.$.sg.$.dat.,2
+.nt.,ar,ena,na,.nt.$.sg.$.inst.,2
+.nt.,ar,inā,na,.nt.$.sg.$.inst.,2
+.nt.,ar,asmā,smā,.nt.$.sg.$.abl.,2
+.nt.,ar,amhā,mhā,.nt.$.sg.$.abl.,2
+.nt.,ar,ini,i,.nt.$.sg.$.loc.,2
+.nt.,ar,asmiṃ,smiṃ,.nt.$.sg.$.loc.,2
+.nt.,ar,amhi,mhi,.nt.$.sg.$.loc.,2
+.nt.,ar,ā,a,.nt.$.pl.$.nom.,2
+.nt.,ar,āno,āno,.nt.$.pl.$.nom.,2
+.nt.,ar,ā,a,.nt.$.pl.$.voc.,2
+.nt.,ar,āno,āno,.nt.$.pl.$.voc.,2
+.nt.,ar,ā,a,.nt.$.pl.$.acc.,2
+.nt.,ar,āno,āno,.nt.$.pl.$.acc.,2
+.nt.,ar,ānaṃ,naṃ,.nt.$.pl.$.gen.,2
+.nt.,ar,ānaṃ,naṃ,.nt.$.pl.$.dat.,2
+.nt.,ar,ehi,hi,.nt.$.pl.$.inst.,2
+.nt.,ar,āhi,bhi,.nt.$.pl.$.inst.,2
+.nt.,ar,ehi,hi,.nt.$.pl.$.abl.,2
+.nt.,ar,āhi,bhi,.nt.$.pl.$.abl.,2
+.nt.,ar,esu,su,.nt.$.pl.$.loc.,2
+.nt.,ar,āsu,su,.nt.$.pl.$.loc.,2
+.m.,a,e,e,.m.$.sg.$.nom.,1
+.m.,a,ā,a,.m.$.sg.$.inst.,1
+.m.,a,asā,sā,.m.$.sg.$.inst.,1
+.m.,a,ā,a,.m.$.sg.$.dat.,1
+.m.,a,āya,ya,.m.$.sg.$.gen.,1
+.m.,a,ā,a,.m.$.sg.$.gen.,1
+.m.,a,asi,i,.m.$.sg.$.loc.,1
+.m.,a,e,e,.m.$.sg.$.voc.,1
+.m.,a,o,o,.m.$.sg.$.voc.,1
+.m.,a,āse,se,.m.$.pl.$.nom.,1
+.m.,a,o,o,.m.$.pl.$.nom.,1
+.m.,a,ān,n,.m.$.pl.$.acc.,1
+.m.,a,e,e,.m.$.pl.$.inst.,1
+.m.,a,ato,to,.m.$.pl.$.abl.,1
+.nt.,a,e,e,.nt.$.sg.$.nom.,1
+.nt.,a,ā,ā,.nt.$.sg.$.inst.,1
+.nt.,a,asā,sā,.nt.$.sg.$.inst.,1
+.nt.,a,ā,ā,.nt.$.sg.$.dat.,1
+.nt.,a,asi,i,.nt.$.sg.$.loc.,1
+.nt.,a,ā,ā,.nt.$.sg.$.voc.,1
+.nt.,a,aṃ,ṃ,.nt.$.sg.$.voc.,1
+.nt.,a,āya,ya,.nt.$.sg.$.gen.,1
+.nt.,a,ā,ā,.nt.$.sg.$.gen.,1
+.nt.,a,o,o,.nt.$.pl.$.acc.,1
+.nt.,a,ato,to,.nt.$.pl.$.abl.,1
+.f.,ā,ā,ā,.f.$.sg.$.inst.,1
+.f.,ā,āto,to,.f.$.sg.$.abl.,1
+.f.,ā,a,a,.f.$.sg.$.voc.,1
+.f.,ā,iyo,yo,.f.$.pl.$.voc.,1
+.m.,i,e,e,.m.$.sg.$.dat.,1
+.m.,i,ito,to,.m.$.sg.$.abl.,1
+.m.,i,e,e,.m.$.sg.$.gen.,1
+.m.,i,ini,i,.m.$.sg.$.loc.,1
+.m.,i,e,i,.m.$.sg.$.loc.,1
+.m.,i,o,o,.m.$.sg.$.loc.,1
+.m.,i,iyo,yo,.m.$.pl.$.nom.,1
+.m.,i,ino,no,.m.$.pl.$.nom.,1
+.m.,i,iyo,yo,.m.$.pl.$.acc.,1
+.m.,i,ihi,hi,.m.$.pl.$.inst.,1
+.m.,i,ibhi,bhi,.m.$.pl.$.inst.,1
+.m.,i,inaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,i,ihi,hi,.m.$.pl.$.abl.,1
+.m.,i,ibhi,bhi,.m.$.pl.$.abl.,1
+.m.,i,inaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,i,isu,su,.m.$.pl.$.loc.,1
+.m.,i,iyo,yo,.m.$.pl.$.voc.,1
+.nt.,i,ihi,hi,.nt.$.pl.$.inst.,1
+.nt.,i,ibhi,bhi,.nt.$.pl.$.inst.,1
+.nt.,i,ihi,hi,.nt.$.pl.$.abl.,1
+.nt.,i,ibhi,bhi,.nt.$.pl.$.abl.,1
+.nt.,i,inaṃ,naṃ,.nt.$.pl.$.gen.,1
+.nt.,i,inaṃ,naṃ,.nt.$.pl.$.dat.,1
+.nt.,i,isu,su,.nt.$.pl.$.loc.,1
+.nt.,i,iṃ,ṃ,.nt.$.sg.$.nom.,1
+.nt.,i,i,i,.nt.$.sg.$.acc.,1
+.nt.,i,e,e,.nt.$.sg.$.dat.,1
+.nt.,i,ito,to,.nt.$.sg.$.abl.,1
+.nt.,i,e,e,.nt.$.sg.$.gen.,1
+.nt.,i,ini,i,.nt.$.sg.$.loc.,1
+.nt.,i,e,i,.nt.$.sg.$.loc.,1
+.nt.,i,o,o,.nt.$.sg.$.loc.,1
+.nt.,i,iṃ,ṃ,.nt.$.sg.$.voc.,1
+.f.,i,ī,ī,.f.$.sg.$.nom.,1
+.f.,i,ito,to,.f.$.sg.$.abl.,1
+.f.,i,myā,ā,.f.$.sg.$.gen.,1
+.f.,i,o,o,.f.$.sg.$.loc.,1
+.f.,i,āyaṃ,ṃ,.f.$.sg.$.loc.,1
+.f.,i,u,u,.f.$.sg.$.loc.,1
+.f.,i,ī,ī,.f.$.sg.$.voc.,1
+.m.,ī,ini,i,.m.$.sg.$.loc.,1
+.m.,ī,īnaṃ,naṃ,.m.$.pl.$.gen.,1
+.m.,ī,īnaṃ,naṃ,.m.$.pl.$.dat.,1
+.m.,ī,īsu,su,.m.$.pl.$.loc.,1
+.m.,ī,i,i,.m.$.sg.$.nom.,1
+.m.,ī,iyo,yo,.m.$.pl.$.nom.,1
+.m.,ī,iye,e,.m.$.pl.$.acc.,1
+.m.,ī,iyaṃ,ṃ,.m.$.sg.$.acc.,1
+.m.,ī,ito,to,.m.$.sg.$.abl.,1
+.f.,ī,i,i,.f.$.sg.$.nom.,1
+.f.,ī,iyaṃ,ṃ,.f.$.sg.$.acc.,1
+.f.,ī,ito,to,.f.$.sg.$.abl.,1
+.f.,ī,īto,to,.f.$.sg.$.abl.,1
+.f.,ī,āyo,yo,.f.$.pl.$.nom.,1
+.f.,ī,āyo,yo,.f.$.pl.$.nom.,1
+.f.,ī,āyo,yo,.f.$.pl.$.nom.,1
+.f.,ī,inaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,ī,inaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,ī,īyanaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,ī,īyanaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,ī,iyanaṃ,naṃ,.f.$.pl.$.gen.,1
+.f.,ī,iyanaṃ,naṃ,.f.$.pl.$.dat.,1
+.f.,ī,isu,su,.f.$.pl.$.loc.,1
+.m.,ar,ā,a,.m.$.sg.$.nom.,2
+.m.,ar,ā,a,.m.$.sg.$.voc.,2
+.m.,ar,a,a,.m.$.sg.$.voc.,2
+.m.,ar,araṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,ar,ãraṃ,ṃ,.m.$.sg.$.acc.,2
+.m.,ar,u,u,.m.$.sg.$.dat.,2
+.m.,ar,ussa,sa,.m.$.sg.$.dat.,2
+.m.,ar,uno,to,.m.$.sg.$.dat.,2
+.m.,ar,u,u,.m.$.sg.$.gen.,2
+.m.,ar,ussa,sa,.m.$.sg.$.gen.,2
+.m.,ar,uno,to,.m.$.sg.$.gen.,2
+.m.,ar,arã,ā,.m.$.sg.$.inst.,2
+.m.,ar,ãrã,ā,.m.$.sg.$.inst.,2
+.m.,ar,unā,nā,.m.$.sg.$.inst.,2
+.m.,ar,arã,ā,.m.$.sg.$.abl.,2
+.m.,ar,ãrã,ā,.m.$.sg.$.abl.,2
+.m.,ar,unā,nā,.m.$.sg.$.abl.,2
+.m.,ar,ari,i,.m.$.sg.$.loc.,2
+.m.,ar,āro,o,.m.$.pl.$.nom.,2
+.m.,ar,ā,ā,.m.$.pl.$.nom.,2
+.m.,ar,āro,o,.m.$.pl.$.voc.,2
+.m.,ar,ā,ā,.m.$.pl.$.voc.,2
+.m.,ar,āro,o,.m.$.pl.$.acc.,2
+.m.,ar,āre,e,.m.$.pl.$.acc.,2
+.m.,ar,ānaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,ar,ārānaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,ar,ūnaṃ,naṃ,.m.$.pl.$.dat.,2
+.m.,ar,ānaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,ar,ārānaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,ar,ūnaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,ar,ārehi,hi,.m.$.pl.$.inst.,2
+.m.,ar,ārebhi,bhi,.m.$.pl.$.inst.,2
+.m.,ar,ārehi,hi,.m.$.pl.$.abl.,2
+.m.,ar,ārebhi,bhi,.m.$.pl.$.abl.,2
+.m.,ar,āresu,su,.m.$.pl.$.loc.,2
+.m.,ar,ūsu,su,.m.$.pl.$.loc.,2
+.m.,ar,āyo,o,.m.$.sg.$.voc.,2
+.m.,ar,iyo,o,.m.$.sg.$.voc.,2
+.m.,an,ane,i,.m.$.sg.$.loc.,2
+.m.,an,ā,ā,.m.$.pl.$.voc.,2
+.m.,an,ubhi,bhi,.m.$.pl.$.inst.,2
+.m.,an,ūbhi,bhi,.m.$.pl.$.inst.,2
+.m.,an,uhi,hi,.m.$.pl.$.inst.,2
+.m.,an,ūhi,hi,.m.$.pl.$.inst.,2
+.m.,an,ūnaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,an,ūnaṃ,naṃ,.m.$.pl.$.gen.,2
+.m.,an,esu,su,.m.$.pl.$.loc.,2
+.m.,an,ūsu,su,.m.$.pl.$.loc.,2
+.m.,an,usu,su,.m.$.pl.$.loc.,2
+.nt.,an,a,a,.nt.$.sg.$.nom.,2
+.nt.,an,a,a,.nt.$.sg.$.acc.,2
+.nt.,an,anā,na,.nt.$.sg.$.inst.,2
+.nt.,an,unā,na,.nt.$.sg.$.inst.,2
+.nt.,an,no,no,.nt.$.sg.$.dat.,2
+.nt.,an,unā,na,.nt.$.sg.$.abl.,2
+.nt.,an,no,no,.nt.$.sg.$.dat.,2
+.nt.,an,ani,i,.nt.$.sg.$.loc.,2
+.nt.,an,ā,ā,.nt.$.pl.$.voc.,2
+.m.,as,āni,ni,.m.$.pl.$.nom.,2
+.m.,as,ā,ā,.m.$.pl.$.acc.,2
+.m.,as,āni,ni,.m.$.pl.$.acc.,2
+.m.,as,āni,ni,.m.$.pl.$.voc.,2
+.nt.,as,āni,ni,.m.$.pl.$.nom.,2
+.nt.,as,ā,ā,.m.$.pl.$.acc.,2
+.nt.,as,āni,ni,.m.$.pl.$.acc.,2
+.nt.,as,āni,ni,.m.$.pl.$.voc.,2
+.m.,as,āni,ni,.m.$.pl.$.nom.,2
+.m.,as,ā,ā,.m.$.pl.$.acc.,2
+.m.,as,āni,ni,.m.$.pl.$.acc.,2
+.m.,as,āni,ni,.m.$.pl.$.voc.,2
+.nt.,us,u,u,.m.$.sg.$.nom.,2
+.nt.,us,uṃ,ṃ,.m.$.sg.$.nom.,2
+.nt.,us,u,u,.m.$.sg.$.voc.,2
+.nt.,us,uṃ,ṃ,.m.$.sg.$.voc.,2
+.nt.,us,u,u,.m.$.sg.$.acc.,2
+.nt.,us,uṃ,ṃ,.m.$.sg.$.acc.,2
+.nt.,us,ussa,sa,.m.$.sg.$.dat.,2
+.nt.,us,uno,to,.m.$.sg.$.dat.,2
+.nt.,us,ussa,sa,.m.$.sg.$.gen.,2
+.nt.,us,uno,to,.m.$.sg.$.gen.,2
+.nt.,us,unā,ā,.m.$.sg.$.inst.,2
+.nt.,us,usā,ā,.m.$.sg.$.inst.,2
+.nt.,us,unā,ā,.m.$.sg.$.abl.,2
+.nt.,us,usā,ā,.m.$.sg.$.abl.,2
+.nt.,us,uni,i,.m.$.sg.$.loc.,2
+.nt.,us,usi,i,.m.$.sg.$.loc.,2
+.nt.,us,ū,ū,.m.$.pl.$.nom.,2
+.nt.,us,ūni,ni,.m.$.pl.$.nom.,2
+.nt.,us,ū,ū,.m.$.pl.$.voc.,2
+.nt.,us,ūni,ni,.m.$.pl.$.voc.,2
+.nt.,us,ū,ū,.m.$.pl.$.acc.,2
+.nt.,us,ūni,ni,.m.$.pl.$.acc.,2
+.nt.,us,ūnaṃ,naṃ,.m.$.pl.$.dat.,2
+.nt.,us,ūsaṃ,naṃ,.m.$.pl.$.dat.,2
+.nt.,us,ūnaṃ,naṃ,.m.$.pl.$.gen.,2
+.nt.,us,ūsaṃ,naṃ,.m.$.pl.$.gen.,2
+.nt.,us,ūhi,hi,.m.$.pl.$.inst.,2
+.nt.,us,ūbhi,bhi,.m.$.pl.$.inst.,2
+.nt.,us,ūhi,bi,.m.$.pl.$.abl.,2
+.nt.,us,ūbhi,bhi,.m.$.pl.$.abl.,2
+.nt.,us,ūsu,su,.m.$.pl.$.loc.,2
+.m.,a,assā,sa,.m.$.sg.$.gen.,1
+.m.,a,assā,sa,.m.$.sg.$.dat.,1
+.m.,a,enā,na,.m.$.sg.$.inst.,1
+.m.,a,amhī,mhi,.m.$.sg.$.loc.,1
+.m.,a,ehī,hi,.m.$.pl.$.inst.,1
+.m.,a,ebhī,bhi,.m.$.pl.$.inst.,1
+.m.,a,ehī,hi,.m.$.pl.$.abl.,1
+.m.,a,ebhī,bhi,.m.$.pl.$.abl.,1
+.m.,a,esū,su,.m.$.pl.$.loc.,1
+.nt.,a,assā,sa,.nt.$.sg.$.gen.,1
+.nt.,a,assā,sa,.nt.$.sg.$.dat.,1
+.nt.,a,enā,na,.nt.$.sg.$.inst.,1
+.nt.,a,amhī,mhi,.nt.$.sg.$.loc.,1
+.nt.,a,ānī,ni,.nt.$.pl.$.nom.,1
+.nt.,a,ānī,ni,.nt.$.pl.$.voc.,1
+.nt.,a,ānī,ni,.nt.$.pl.$.acc.,1
+.nt.,a,ehī,hi,.nt.$.pl.$.inst.,1
+.nt.,a,ebhī,bhi,.nt.$.pl.$.inst.,1
+.nt.,a,ehī,hi,.nt.$.pl.$.abl.,1
+.nt.,a,ebhī,bhi,.nt.$.pl.$.abl.,1
+.nt.,a,esū,su,.nt.$.pl.$.loc.,1
+.f.,ā,āhī,hi,.f.$.pl.$.inst.,1
+.f.,ā,ābhī,bhi,.f.$.pl.$.inst.,1
+.f.,ā,āhī,hi,.f.$.pl.$.abl.,1
+.f.,ā,ābhī,bhi,.f.$.pl.$.abl.,1
+.f.,ā,āsū,su,.f.$.pl.$.loc.,1
+.m.,i,issā,sa,.m.$.sg.$.gen.,1
+.m.,i,issā,sa,.m.$.sg.$.dat.,1
+.m.,i,imhī,mhi,.m.$.sg.$.loc.,1
+.m.,i,īhī,hi,.m.$.pl.$.inst.,1
+.m.,i,ībhī,bhi,.m.$.pl.$.inst.,1
+.m.,i,īhī,hi,.m.$.pl.$.abl.,1
+.m.,i,ībhī,bhi,.m.$.pl.$.abl.,1
+.m.,i,īsū,su,.m.$.pl.$.loc.,1
+.nt.,i,assā,sa,.nt.$.sg.$.gen.,1
+.nt.,i,assā,sa,.nt.$.sg.$.dat.,1
+.nt.,i,imhī,mhi,.nt.$.sg.$.loc.,1
+.nt.,i,īnī,ni,.nt.$.pl.$.nom.,1
+.nt.,i,īnī,ni,.nt.$.pl.$.voc.,1
+.nt.,i,īnī,ni,.nt.$.pl.$.acc.,1
+.nt.,i,īhī,hi,.nt.$.pl.$.inst.,1
+.nt.,i,ībhī,bhi,.nt.$.pl.$.inst.,1
+.nt.,i,īhī,hi,.nt.$.pl.$.abl.,1
+.nt.,i,ībhī,bhi,.nt.$.pl.$.abl.,1
+.nt.,i,īsū,su,.nt.$.pl.$.loc.,1
+.f.,i,īhī,hi,.f.$.pl.$.inst.,1
+.f.,i,ībhī,bhi,.f.$.pl.$.inst.,1
+.f.,i,īhī,hi,.f.$.pl.$.abl.,1
+.f.,i,ībhī,bhi,.f.$.pl.$.abl.,1
+.f.,i,īsū,su,.f.$.pl.$.loc.,1
+.m.,ī,issā,sa,.m.$.sg.$.gen.,1
+.m.,in,issā,sa,.m.$.sg.$.gen.,2
+.m.,ī,issā,sa,.m.$.sg.$.dat.,1
+.m.,in,issā,sa,.m.$.sg.$.dat.,2
+.m.,ī,imhī,mhi,.m.$.sg.$.loc.,1
+.m.,in,imhī,mhi,.m.$.sg.$.loc.,2
+.m.,ī,īhī,hi,.m.$.pl.$.inst.,1
+.m.,ī,ībhī,bhi,.m.$.pl.$.inst.,1
+.m.,in,īhī,hi,.m.$.pl.$.inst.,2
+.m.,in,ībhī,bhi,.m.$.pl.$.inst.,2
+.m.,ī,īhī,hi,.m.$.pl.$.abl.,1
+.m.,ī,ībhī,bhi,.m.$.pl.$.abl.,1
+.m.,in,īhī,hi,.m.$.pl.$.abl.,2
+.m.,in,ībhī,bhi,.m.$.pl.$.abl.,2
+.m.,ī,īsū,su,.m.$.pl.$.loc.,1
+.m.,in,īsū,su,.m.$.pl.$.loc.,2
+.f.,ī,īhī,hi,.f.$.pl.$.inst.,1
+.f.,ī,ībhī,bhi,.f.$.pl.$.inst.,1
+.f.,ī,īhī,hi,.f.$.pl.$.abl.,1
+.f.,ī,ībhī,bhi,.f.$.pl.$.abl.,1
+.f.,ī,īsū,su,.f.$.pl.$.loc.,1
+.m.,u,ussā,sa,.m.$.sg.$.gen.,1
+.m.,u,ussā,sa,.m.$.sg.$.dat.,1
+.m.,u,umhī,mhi,.m.$.sg.$.loc.,1
+.m.,u,ūhī,hi,.m.$.pl.$.inst.,1
+.m.,u,ūbhī,bhi,.m.$.pl.$.inst.,1
+.m.,u,ūhī,hi,.m.$.pl.$.abl.,1
+.m.,u,ūbhī,bhi,.m.$.pl.$.abl.,1
+.m.,u,ūsū,su,.m.$.pl.$.loc.,1
+.nt.,u,ussā,sa,.nt.$.sg.$.gen.,1
+.nt.,u,ussā,sa,.nt.$.sg.$.dat.,1
+.nt.,u,umhī,mhi,.nt.$.sg.$.loc.,1
+.nt.,u,ūnī,ni,.nt.$.pl.$.nom.,1
+.nt.,u,ūnī,ni,.nt.$.pl.$.voc.,1
+.nt.,u,ūnī,ni,.nt.$.pl.$.acc.,1
+.nt.,u,ūhī,hi,.nt.$.pl.$.inst.,1
+.nt.,u,ūbhī,bhi,.nt.$.pl.$.inst.,1
+.nt.,u,ūhī,hi,.nt.$.pl.$.abl.,1
+.nt.,u,ūbhī,bhi,.nt.$.pl.$.abl.,1
+.nt.,u,ūsū,su,.nt.$.pl.$.loc.,1
+.f.,u,ūhī,hi,.f.$.pl.$.inst.,1
+.f.,u,ūbhī,bhi,.f.$.pl.$.inst.,1
+.f.,u,ūhī,hi,.f.$.pl.$.abl.,1
+.f.,u,ūbhī,bhi,.f.$.pl.$.abl.,1
+.f.,u,ūsū,su,.f.$.pl.$.loc.,1
+.m.,ū,ussā,sa,.m.$.sg.$.gen.,1
+.m.,ū,ussā,sa,.m.$.sg.$.dat.,1
+.m.,ū,umhī,mhi,.m.$.sg.$.loc.,1
+.m.,ū,ūhī,hi,.m.$.pl.$.inst.,1
+.m.,ū,ūbhī,bhi,.m.$.pl.$.inst.,1
+.m.,ū,ūhī,hi,.m.$.pl.$.abl.,1
+.m.,ū,ūbhī,bhi,.m.$.pl.$.abl.,1
+.m.,ū,ūsū,su,.m.$.pl.$.loc.,1
+.f.,ū,ūhī,hi,.f.$.pl.$.inst.,1
+.f.,ū,ūbhī,bhi,.f.$.pl.$.inst.,1
+.f.,ū,ūhī,hi,.f.$.pl.$.abl.,1
+.f.,ū,ūbhī,bhi,.f.$.pl.$.abl.,1
+.f.,ū,ūsū,su,.f.$.pl.$.loc.,1
+.m.,as,assā,sa,.m.$.sg.$.gen.,2
+.m.,o,assā,sa,.m.$.sg.$.gen.,1
+.m.,as,assā,sa,.m.$.sg.$.dat.,2
+.m.,o,assā,sa,.m.$.sg.$.dat.,1
+.m.,as,enā,na,.m.$.sg.$.inst.,2
+.m.,o,enā,na,.m.$.sg.$.inst.,1
+.m.,as,asī,i,.m.$.sg.$.loc.,2
+.m.,as,amhī,mhi,.m.$.sg.$.loc.,2
+.m.,o,asī,i,.m.$.sg.$.loc.,1
+.m.,o,amhī,mhi,.m.$.sg.$.loc.,1
+.m.,as,ehī,hi,.m.$.pl.$.inst.,2
+.m.,as,ebhī,bhi,.m.$.pl.$.inst.,2
+.m.,o,ehī,hi,.m.$.pl.$.inst.,1
+.m.,o,ebhī,bhi,.m.$.pl.$.inst.,1
+.m.,as,ehī,hi,.m.$.pl.$.abl.,2
+.m.,as,ebhī,bhi,.m.$.pl.$.abl.,2
+.m.,o,ehī,hi,.m.$.pl.$.abl.,1
+.m.,o,ebhī,bhi,.m.$.pl.$.abl.,1
+.m.,as,esū,su,.m.$.pl.$.loc.,2
+.m.,o,esū,su,.m.$.pl.$.loc.,1
+.nt.,as,assā,sa,.nt.$.sg.$.gen.,2
+.nt.,o,assā,sa,.nt.$.sg.$.gen.,1
+.nt.,as,assā,sa,.nt.$.sg.$.dat.,2
+.nt.,o,assā,sa,.nt.$.sg.$.dat.,1
+.nt.,as,enā,na,.nt.$.sg.$.inst.,2
+.nt.,o,enā,na,.nt.$.sg.$.inst.,1
+.nt.,as,asī,i,.nt.$.sg.$.loc.,2
+.nt.,as,amhī,mhi,.nt.$.sg.$.loc.,2
+.nt.,o,asī,i,.nt.$.sg.$.loc.,1
+.nt.,o,amhī,mhi,.nt.$.sg.$.loc.,1
+.nt.,as,ehī,hi,.nt.$.pl.$.inst.,2
+.nt.,as,ebhī,bhi,.nt.$.pl.$.inst.,2
+.nt.,o,ehī,hi,.nt.$.pl.$.inst.,1
+.nt.,o,ebhī,bhi,.nt.$.pl.$.inst.,1
+.nt.,as,ehī,hi,.nt.$.pl.$.abl.,2
+.nt.,as,ebhī,bhi,.nt.$.pl.$.abl.,2
+.nt.,o,ehī,hi,.nt.$.pl.$.abl.,1
+.nt.,o,ebhī,bhi,.nt.$.pl.$.abl.,1
+.nt.,as,esū,su,.nt.$.pl.$.loc.,2
+.nt.,o,esū,su,.nt.$.pl.$.loc.,1
+.m.,an,assā,sa,.m.$.sg.$.gen.,2
+.m.,an,assā,sa,.m.$.sg.$.dat.,2
+.m.,an,enā,na,.m.$.sg.$.inst.,2
+.m.,an,anī,i,.m.$.sg.$.loc.,2
+.m.,an,amhī,mhi,.m.$.sg.$.loc.,2
+.m.,an,anehī,hi,.m.$.pl.$.inst.,2
+.m.,an,anebhī,bhi,.m.$.pl.$.inst.,2
+.m.,an,anehī,hi,.m.$.pl.$.abl.,2
+.m.,an,anebhī,bhi,.m.$.pl.$.abl.,2
+.m.,an,anesū,su,.m.$.pl.$.loc.,2
+.nt.,an,assā,sa,.nt.$.sg.$.gen.,2
+.nt.,an,assā,sa,.nt.$.sg.$.dat.,2
+.nt.,an,enā,na,.nt.$.sg.$.inst.,2
+.nt.,an,amhī,mhi,.nt.$.sg.$.loc.,2
+.nt.,an,ānī,ni,.nt.$.pl.$.nom.,2
+.nt.,an,ānī,ni,.nt.$.pl.$.voc.,2
+.nt.,an,ānī,ni,.nt.$.pl.$.acc.,2
+.nt.,an,ehī,hi,.nt.$.pl.$.inst.,2
+.nt.,an,ebhī,bhi,.nt.$.pl.$.inst.,2
+.nt.,an,ehī,hi,.nt.$.pl.$.abl.,2
+.nt.,an,ebhī,bhi,.nt.$.pl.$.abl.,2
+.nt.,an,esū,su,.nt.$.pl.$.loc.,2
+.f.,ar,assā,sa,.f.$.sg.$.gen.,2
+.f.,ar,assā,sa,.f.$.sg.$.dat.,2
+.f.,ar,enā,na,.f.$.sg.$.inst.,2
+.f.,ar,amhī,mhi,.f.$.sg.$.loc.,2
+.f.,ar,ehī,hi,.f.$.pl.$.inst.,2
+.f.,ar,āhī,bhi,.f.$.pl.$.inst.,2
+.f.,ar,ehī,hi,.f.$.pl.$.abl.,2
+.f.,ar,āhī,bhi,.f.$.pl.$.abl.,2
+.f.,ar,esū,su,.f.$.pl.$.loc.,2
+.f.,ar,āsū,su,.f.$.pl.$.loc.,2
+.nt.,ar,assā,sa,.nt.$.sg.$.gen.,2
+.nt.,ar,assā,sa,.nt.$.sg.$.dat.,2
+.nt.,ar,enā,na,.nt.$.sg.$.inst.,2
+.nt.,ar,amhī,mhi,.nt.$.sg.$.loc.,2
+.nt.,ar,ehī,hi,.nt.$.pl.$.inst.,2
+.nt.,ar,āhī,bhi,.nt.$.pl.$.inst.,2
+.nt.,ar,ehī,hi,.nt.$.pl.$.abl.,2
+.nt.,ar,āhī,bhi,.nt.$.pl.$.abl.,2
+.nt.,ar,esū,su,.nt.$.pl.$.loc.,2
+.nt.,ar,āsū,su,.nt.$.pl.$.loc.,2
+.m.,a,asī,i,.m.$.sg.$.loc.,1
+.nt.,a,asī,i,.nt.$.sg.$.loc.,1
+.m.,i,ihī,hi,.m.$.pl.$.inst.,1
+.m.,i,ibhī,bhi,.m.$.pl.$.inst.,1
+.m.,i,ihī,hi,.m.$.pl.$.abl.,1
+.m.,i,ibhī,bhi,.m.$.pl.$.abl.,1
+.m.,i,isū,su,.m.$.pl.$.loc.,1
+.nt.,i,ihī,hi,.nt.$.pl.$.inst.,1
+.nt.,i,ibhī,bhi,.nt.$.pl.$.inst.,1
+.nt.,i,ihī,hi,.nt.$.pl.$.abl.,1
+.nt.,i,ibhī,bhi,.nt.$.pl.$.abl.,1
+.nt.,i,isū,su,.nt.$.pl.$.loc.,1
+.m.,ī,īsū,su,.m.$.pl.$.loc.,1
+.f.,ī,isū,su,.f.$.pl.$.loc.,1
+.m.,ar,ussā,sa,.m.$.sg.$.dat.,2
+.m.,ar,ussā,sa,.m.$.sg.$.gen.,2
+.m.,ar,arī,i,.m.$.sg.$.loc.,2
+.m.,ar,ārehī,hi,.m.$.pl.$.inst.,2
+.m.,ar,ārebhī,bhi,.m.$.pl.$.inst.,2
+.m.,ar,ārehī,hi,.m.$.pl.$.abl.,2
+.m.,ar,ārebhī,bhi,.m.$.pl.$.abl.,2
+.m.,ar,āresū,su,.m.$.pl.$.loc.,2
+.m.,ar,ūsū,su,.m.$.pl.$.loc.,2
+.m.,an,ubhī,bhi,.m.$.pl.$.inst.,2
+.m.,an,ūbhī,bhi,.m.$.pl.$.inst.,2
+.m.,an,uhī,hi,.m.$.pl.$.inst.,2
+.m.,an,ūhī,hi,.m.$.pl.$.inst.,2
+.m.,an,esū,su,.m.$.pl.$.loc.,2
+.m.,an,ūsū,su,.m.$.pl.$.loc.,2
+.m.,an,usū,su,.m.$.pl.$.loc.,2
+.nt.,an,anī,i,.nt.$.sg.$.loc.,2
+.m.,as,ānī,ni,.m.$.pl.$.nom.,2
+.m.,as,ānī,ni,.m.$.pl.$.acc.,2
+.m.,as,ānī,ni,.m.$.pl.$.voc.,2
+.nt.,as,ānī,ni,.m.$.pl.$.nom.,2
+.nt.,as,ānī,ni,.m.$.pl.$.acc.,2
+.nt.,as,ānī,ni,.m.$.pl.$.voc.,2
+.m.,as,ānī,ni,.m.$.pl.$.nom.,2
+.m.,as,ānī,ni,.m.$.pl.$.acc.,2
+.m.,as,ānī,ni,.m.$.pl.$.voc.,2
+.nt.,us,ussā,sa,.m.$.sg.$.dat.,2
+.nt.,us,ussā,sa,.m.$.sg.$.gen.,2
+.nt.,us,unī,i,.m.$.sg.$.loc.,2
+.nt.,us,usī,i,.m.$.sg.$.loc.,2
+.nt.,us,ūnī,ni,.m.$.pl.$.nom.,2
+.nt.,us,ūnī,ni,.m.$.pl.$.voc.,2
+.nt.,us,ūnī,ni,.m.$.pl.$.acc.,2
+.nt.,us,ūhī,hi,.m.$.pl.$.inst.,2
+.nt.,us,ūbhī,bhi,.m.$.pl.$.inst.,2
+.nt.,us,ūhī,bi,.m.$.pl.$.abl.,2
+.nt.,us,ūbhī,bhi,.m.$.pl.$.abl.,2
+.nt.,us,ūsū,su,.m.$.pl.$.loc.,2

+ 136 - 0
api-v12/app/Tools/ending/verb.csv

@@ -0,0 +1,136 @@
+strlen,end,grammar
+2,ti,.3p.$.sg.$.pres.
+2,nti,.3p.$.pl.$.pres.
+2,te,.3p.$.sg.$.pres.
+2,nte,.3p.$.pl.$.pres.
+2,re,.3p.$.pl.$.pres.
+2,ssati,.3p.$.sg.$.fut.
+2,ssanti,.3p.$.pl.$.fut.
+2,ssate,.3p.$.sg.$.fut.
+2,ssante,.3p.$.pl.$.fut.
+2,ssare,.3p.$.pl.$.fut.
+2,tu,.3p.$.sg.$.imp.
+2,ntu,.3p.$.pl.$.imp.
+2,taṃ,.3p.$.sg.$.imp.
+2,ntaṃ,.3p.$.pl.$.imp.
+3,eyya,.3p.$.sg.$.opt.
+3,eyyuṃ,.3p.$.pl.$.opt.
+3,etha,.3p.$.sg.$.opt.
+3,eraṃ,.3p.$.pl.$.opt.
+2,sā,.3p.$.sg.$.cond.
+2,ssa,.3p.$.sg.$.cond.
+2,ssati,.3p.$.sg.$.cond.
+2,ssaṃsu,.3p.$.pl.$.cond.
+2,ssatha,.3p.$.sg.$.cond.
+2,ssiṃsu,.3p.$.pl.$.cond.
+3,issati,.3p.$.sg.$.fut.
+3,issanti,.3p.$.pl.$.fut.
+3,issate,.3p.$.sg.$.fut.
+3,issante,.3p.$.pl.$.fut.
+3,issare,.3p.$.pl.$.fut.
+3,i,.3p.$.sg.$.aor.
+3,ī,.3p.$.sg.$.aor.
+3,ā,.3p.$.sg.$.aor.
+3,iṃsu,.3p.$.pl.$.aor.
+3,ṃ,.3p.$.pl.$.aor.
+3,uṃū,.3p.$.pl.$.aor.
+3,ā,.3p.$.sg.$.aor.
+3,a,.3p.$.sg.$.aor.
+3,tthuṃ,.3p.$.pl.$.aor.
+3,atthuṃ,.3p.$.pl.$.aor.
+2,si,.3p.$.sg.$.aor.
+2,sī,.3p.$.sg.$.aor.
+2,sā,.3p.$.sg.$.aor.
+2,siṃsu,.3p.$.pl.$.aor.
+2,sṃ,.3p.$.pl.$.aor.
+2,suṃū,.3p.$.pl.$.aor.
+2,sā,.3p.$.sg.$.aor.
+2,sa,.3p.$.sg.$.aor.
+2,stthuṃ,.3p.$.pl.$.aor.
+2,satthuṃ,.3p.$.pl.$.aor.
+2,mi,.1p.$.sg.$.pres.
+2,ma,.1p.$.pl.$.pres.
+2,e,.1p.$.sg.$.pres.
+2,mhe,.1p.$.pl.$.pres.
+2,mahe,.1p.$.pl.$.pres.
+2,mha,.1p.$.pl.$.pres.
+2,mase,.1p.$.pl.$.pres.
+2,mhase,.1p.$.pl.$.pres.
+2,ssāmi,.1p.$.sg.$.fut.
+2,ssāma,.1p.$.pl.$.fut.
+2,ssaṃ,.1p.$.sg.$.fut.
+2,ssāmhe,.1p.$.pl.$.fut.
+2,ssāmase,.1p.$.pl.$.fut.
+2,mi,.1p.$.sg.$.imp.
+2,ma,.1p.$.pl.$.imp.
+3,e,.1p.$.sg.$.imp.
+3,āmase,.1p.$.pl.$.imp.
+3,eyyāmi,.1p.$.sg.$.opt.
+3,eyyāma,.1p.$.pl.$.opt.
+3,eyyaṃ,.1p.$.sg.$.opt.
+3,eyyāmhe,.1p.$.pl.$.opt.
+2,ssa,.1p.$.sg.$.cond.
+2,ssamhā,.1p.$.pl.$.cond.
+2,ssaṃ,.1p.$.sg.$.cond.
+2,ssāmhase,.1p.$.pl.$.cond.
+3,issāmi,.1p.$.sg.$.fut.
+3,issāma,.1p.$.pl.$.fut.
+3,issaṃ,.1p.$.sg.$.fut.
+3,issāmhe,.1p.$.pl.$.fut.
+3,issāmase,.1p.$.pl.$.fut.
+3,iṃ,.1p.$.sg.$.aor.
+3,aṃ,.1p.$.sg.$.aor.
+3,ṃ,.1p.$.sg.$.aor.
+3,a,.1p.$.sg.$.aor.
+3,ā,.1p.$.sg.$.aor.
+3,imha,.1p.$.pl.$.aor.
+3,imhā,.1p.$.pl.$.aor.
+3,a,.1p.$.sg.$.aor.
+3,imhe,.1p.$.pl.$.aor.
+2,siṃ,.1p.$.sg.$.aor.
+2,saṃ,.1p.$.sg.$.aor.
+2,sṃ,.1p.$.sg.$.aor.
+2,sa,.1p.$.sg.$.aor.
+2,sā,.1p.$.sg.$.aor.
+2,simha,.1p.$.pl.$.aor.
+2,simhā,.1p.$.pl.$.aor.
+2,sa,.1p.$.sg.$.aor.
+2,simhe,.1p.$.pl.$.aor.
+2,si,.2p.$.sg.$.pres.
+2,tha,.2p.$.pl.$.pres.
+2,se,.2p.$.sg.$.pres.
+2,vhe,.2p.$.pl.$.pres.
+2,ssasi,.2p.$.sg.$.fut.
+2,ssatha,.2p.$.pl.$.fut.
+2,ssase,.2p.$.sg.$.fut.
+2,ssavhe,.2p.$.pl.$.fut.
+2,hi,.2p.$.sg.$.imp.
+2,ta,.2p.$.pl.$.imp.
+2,ssu,.2p.$.sg.$.imp.
+2,vho,.2p.$.pl.$.imp.
+3,eyyāsi,.2p.$.sg.$.opt.
+3,eyyātha,.2p.$.pl.$.opt.
+3,etho,.2p.$.sg.$.opt.
+3,eyyavho,.2p.$.pl.$.opt.
+2,se,.2p.$.sg.$.cond.
+2,ssa,.2p.$.sg.$.cond.
+2,ssasi,.2p.$.sg.$.cond.
+2,ssatha,.2p.$.pl.$.cond.
+2,ssase,.2p.$.sg.$.cond.
+2,ssavhe,.2p.$.pl.$.cond.
+3,issasi,.2p.$.sg.$.fut.
+3,issatha,.2p.$.pl.$.fut.
+3,issase,.2p.$.sg.$.fut.
+3,issavhe,.2p.$.pl.$.fut.
+3,i,.2p.$.sg.$.aor.
+3,o,.2p.$.sg.$.aor.
+3,ā,.2p.$.sg.$.aor.
+3,ttha,.2p.$.pl.$.aor.
+3,se,.2p.$.sg.$.aor.
+3,vhaṃ,.2p.$.pl.$.aor.
+2,si,.2p.$.sg.$.aor.
+2,so,.2p.$.sg.$.aor.
+2,sā,.2p.$.sg.$.aor.
+2,sttha,.2p.$.pl.$.aor.
+2,sse,.2p.$.sg.$.aor.
+2,svhaṃ,.2p.$.pl.$.aor.

+ 163 - 0
api-v12/config/mint.php

@@ -0,0 +1,163 @@
+<?php
+
+return [
+    'app' => [
+        'icp_code' => env('APP_ICP_CODE', ''),
+        'mps_code' => env('APP_MPS_CODE', ''),
+    ],
+    'languages' => [
+        'en' => 'English',
+        'zh-Hans' => '简体中文',
+        'zh-Hant' => '繁体中文',
+    ],
+    'default_language' => 'en',
+    'library' => [
+        'list_min_progress' => env('LIBRARY_LIST_MIN_PROGRESS', 0.5),
+    ],
+    'snowflake' => [
+        'data_center_id' => env('SNOWFLAKE_DATA_CENTER_ID', 1),
+        'worker_id' => env('SNOWFLAKE_WORKER_ID', 1),
+        /*
+        |--------------------------------------------------------------------------
+        | snowflake id start date don't modify
+        |--------------------------------------------------------------------------
+        */
+        'start' => "2021-12-22",
+    ],
+
+    'server' => [
+        'rpc' => [
+            'grpc' =>  env('GRPC_WEB_SERVER', "http://localhost:9999"),
+
+            'morus' => [
+                'host' => env('MORUS_GRPC_HOST', "localhost"),
+                'port' => env('MORUS_GRPC_PORT', 9999),
+            ],
+
+            'lily' => [
+                'host' => env('LILY_GRPC_HOST', "localhost"),
+                'port' => env('LILY_GRPC_PORT', 9000),
+            ],
+
+            'tulip' => [
+                'host' => env('TULIP_GRPC_HOST', "localhost"),
+                'port' => env('TULIP_GRPC_PORT', 9990),
+            ],
+        ],
+        'api' => [
+            'default' => env('APP_API', "http://localhost:8000/api"),
+            'bamboo' => env('BAMBOO_API_HOST', env('APP_URL') . '/api'),
+        ],
+        'assets' => env('ASSETS_SERVER', "localhost:9999"),
+
+        'dashboard_base_path' => env('DASHBOARD_BASE_PATH', "http://127.0.0.1:3000/my"),
+
+        'cdn_urls' => explode(',', env('CDN_URLS', "https://www.wikipali.cc/downloads")),
+
+
+    ],
+
+    'attachments' => [
+        'bucket_name' => [
+            'temporary' => env('ATTACHMENTS_TEMPORARY_BUCKET_NAME', "attachments-staging"),
+            'permanent' => env('ATTACHMENTS_PERMANENT_BUCKET_NAME', "attachments-staging"),
+        ],
+    ],
+
+    'cache' => [
+        //这个值prod,staging无需设置
+        'expire' => env('CACHE_EXPIRE', 36000),
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | 另外增添的路径
+    |--------------------------------------------------------------------------
+    |
+    |
+    */
+    'path' => [
+        'dependence' => storage_path('depandence'),
+        'palitext' => storage_path('resources/pali_html'),
+        'palitext_filelist' => storage_path('resources/pali_html/filelist.csv'),
+        'palicsv' => storage_path('app/tmp/pali_csv'),
+        'pali_title' => storage_path('resources/pali_title'),
+        'paliword' => storage_path('resources/pali_word'),
+        'paliword_book' => storage_path('resources/pali_word/book'),
+        'paliword_index' => storage_path('resources/pali_word/index'),
+        'word_statistics' => storage_path('resources/word_statistics/data'),
+        'dict_text' => storage_path('resources/dict_text'),
+    ],
+
+    'admin' => [
+        'root_uuid' => '6e12f8ea-ee4d-4e0f-a6b0-472f2d99a814',
+        'robot_uuid' => '6e12f8ea-ee4d-4e0f-a6b0-472f2d99a814',
+        'cs_channel' => '1e4b926d-54d7-4932-b8a6-7cdc65abd992',
+    ],
+
+    'dependence' => [
+        [
+            'url' => 'https://www.github.com/iapt-platform/wipali-globle',
+            'path' => 'wipali-globle',
+        ],
+    ],
+
+    'email' => [
+        'ScheduleEmailOutputTo' => env('SCHEDULE_EMAIL_OUTPUTTO', 'kosalla1987@126.com'),
+        'ScheduleEmailOutputOnFailure' => env('SCHEDULE_EMAIL_OUTPUTONFAILURE', 'kosalla1987@126.com'),
+    ],
+
+    'ai' => [
+        'proxy' => env('OPENAI_PROXY', 'http://127.0.0.1:4000'),
+        'assistant' => 'test161',
+        'default' => 'kimi',
+        'logo' => [
+            'gemini' => 'gemini-color.png',
+            'grok' => 'grok.png',
+            'Claude' => 'claude-color.png',
+            'api.openai.com' => 'openai.png',
+            'qwen' => 'qwen-color.png',
+            'deepseek' => 'deepseek-color.png'
+        ]
+    ],
+    'mq' => [
+        'loop_limit' => [
+            'ai_translate' => env('MQ_LOOP_LIMIT_AI_TRANSLATE', 0)
+        ]
+    ],
+    'rabbitmq' => [
+        'queues' => [
+            'ai_translate_v2' => [
+                'retry_times' => env('RABBITMQ_AI_RETRY_TIMES', 3),
+                'max_loop_count' => env('RABBITMQ_AI_MAX_LOOP', 10),
+                'timeout' => env('RABBITMQ_AI_TIMEOUT', 300),
+                'dead_letter_queue' => 'ai_translate_dlq',
+                'dead_letter_exchange' => 'ai_translate_dlx',
+            ],
+            'heartbeat_queue' => [
+                'ttl' => 86400000, // 24小时 TTL (毫秒)
+                'max_length' => 10000,
+            ]
+        ],
+
+        // 死信队列配置
+        'dead_letter_queues' => [
+            'ai_translate_dlq' => [
+                'ttl' => 86400000, // 24小时 TTL (毫秒)
+                'max_length' => 10000,
+            ],
+        ],
+    ],
+    'opensearch' => [
+        'index' => 'wikipali',
+        'config' => [
+            'scheme' => env('OPENSEARCH_SCHEME', 'http'),
+            'host' => env('OPENSEARCH_HOST', '127.0.0.1'),
+            'port' => env('OPENSEARCH_PORT', 9200),
+            'username' => env('OPENSEARCH_USERNAME', ''),
+            'password' => env('OPENSEARCH_PASSWORD', ''),
+            'ssl_verification' => env('OPENSEARCH_SSL_VERIFICATION', false),
+        ],
+
+    ],
+];

+ 317 - 0
api-v12/routes/api.php

@@ -0,0 +1,317 @@
+<?php
+
+use Illuminate\Http\Request;
+use Illuminate\Support\Facades\Route;
+
+use App\Http\Controllers\WbwTemplateController;
+use App\Http\Controllers\DhammaTermController;
+use App\Http\Controllers\SentenceController;
+use App\Http\Controllers\ProgressChapterController;
+use App\Http\Controllers\SentenceInfoController;
+use App\Http\Controllers\SentPrController;
+use App\Http\Controllers\TagController;
+use App\Http\Controllers\ViewController;
+use App\Http\Controllers\LikeController;
+use App\Http\Controllers\SentHistoryController;
+use App\Http\Controllers\PaliTextController;
+use App\Http\Controllers\ChannelController;
+use App\Http\Controllers\UserDictController;
+use App\Http\Controllers\CollectionController;
+use App\Http\Controllers\DictController;
+use App\Http\Controllers\AuthController;
+use App\Http\Controllers\ArticleController;
+use App\Http\Controllers\GroupController;
+use App\Http\Controllers\CorpusController;
+use App\Http\Controllers\ArticleProgressController;
+use App\Http\Controllers\ExportWbwController;
+use App\Http\Controllers\WbwLookupController;
+use App\Http\Controllers\UploadController;
+use App\Http\Controllers\DiscussionController;
+use App\Http\Controllers\UserController;
+use App\Http\Controllers\GroupMemberController;
+use App\Http\Controllers\ShareController;
+use App\Http\Controllers\CourseController;
+use App\Http\Controllers\CourseMemberController;
+use App\Http\Controllers\ExerciseController;
+use App\Http\Controllers\ArticleMapController;
+use App\Http\Controllers\VocabularyController;
+use App\Http\Controllers\CaseController;
+use App\Http\Controllers\DictMeaningController;
+use App\Http\Controllers\UserOperationDailyController;
+use App\Http\Controllers\UserStatisticController;
+use App\Http\Controllers\SentSimController;
+use App\Http\Controllers\NissayaEndingController;
+use App\Http\Controllers\RelationController;
+use App\Http\Controllers\TermVocabularyController;
+use App\Http\Controllers\RelatedParagraphController;
+use App\Http\Controllers\SearchController;
+use App\Http\Controllers\WordIndexController;
+use App\Http\Controllers\StudioController;
+use App\Http\Controllers\GrammarGuideController;
+use App\Http\Controllers\WbwController;
+use App\Http\Controllers\AttachmentController;
+use App\Http\Controllers\ApiController;
+use App\Http\Controllers\ProgressImgController;
+use App\Http\Controllers\RecentController;
+use App\Http\Controllers\MilestoneController;
+use App\Http\Controllers\ArticleNavController;
+use App\Http\Controllers\InviteController;
+use App\Http\Controllers\SignUpController;
+use App\Http\Controllers\TermSummaryController;
+use App\Http\Controllers\NissayaCardController;
+use App\Http\Controllers\SentInChannelController;
+use App\Http\Controllers\ChannelIOController;
+use App\Http\Controllers\ChapterIOController;
+use App\Http\Controllers\SentenceIOController;
+use App\Http\Controllers\WebHookController;
+use App\Http\Controllers\DictStatisticController;
+use App\Http\Controllers\SearchTitleController;
+use App\Http\Controllers\TransferController;
+use App\Http\Controllers\HealthCheckController;
+use App\Http\Controllers\OfflineIndexController;
+use App\Http\Controllers\TaskController;
+use App\Http\Controllers\ExportController;
+use App\Http\Controllers\DictVocabularyController;
+use App\Http\Controllers\DictInfoController;
+use App\Http\Controllers\PgPaliDictDownloadController;
+use App\Http\Controllers\SearchPaliDataController;
+use App\Http\Controllers\SearchPaliWbwController;
+use App\Http\Controllers\SearchPageNumberController;
+use App\Http\Controllers\NavPageController;
+use App\Http\Controllers\BookTitleController;
+use App\Http\Controllers\SystemTermController;
+use App\Http\Controllers\TermExportController;
+use App\Http\Controllers\NavArticleController;
+use App\Http\Controllers\NavCSParaController;
+use App\Http\Controllers\SentencesInChapterController;
+use App\Http\Controllers\CompoundController;
+use App\Http\Controllers\NotificationController;
+use App\Http\Controllers\InteractiveController;
+use App\Http\Controllers\ChapterIndexController;
+use App\Http\Controllers\WbwSentenceController;
+use App\Http\Controllers\SnowFlakeIdController;
+use App\Http\Controllers\ForgotPasswordController;
+use App\Http\Controllers\ResetPasswordController;
+use App\Http\Controllers\DiscussionCountController;
+use App\Http\Controllers\TagsInChapterCountController;
+use App\Http\Controllers\TagMapController;
+use App\Http\Controllers\EditableSentenceController;
+use App\Http\Controllers\ArticleFtsController;
+use App\Http\Controllers\NissayaCoverController;
+use App\Http\Controllers\AiTranslateController;
+use App\Http\Controllers\DictPreferenceController;
+use App\Http\Controllers\CommandController;
+use App\Http\Controllers\UserMilestoneController;
+use App\Http\Controllers\ProjectController;
+use App\Http\Controllers\TaskStatusController;
+use App\Http\Controllers\TaskGroupController;
+use App\Http\Controllers\ChapterController;
+use App\Http\Controllers\ProjectTreeController;
+use App\Http\Controllers\SiteInfoController;
+use App\Http\Controllers\PaliBookCategoryController;
+use App\Http\Controllers\AccessTokenController;
+use App\Http\Controllers\SearchWordSliceController;
+use App\Http\Controllers\AiModelController;
+use App\Http\Controllers\AiAssistantController;
+use App\Http\Controllers\ModelLogController;
+use App\Http\Controllers\SentenceAttachmentController;
+use App\Http\Controllers\EmailCertificationController;
+use App\Http\Controllers\MockOpenAIController;
+use App\Http\Controllers\SysModelController;
+use App\Http\Controllers\ChatController;
+use App\Http\Controllers\ChatMessageController;
+use App\Http\Controllers\SearchPlusController;
+use App\Http\Controllers\SearchSuggestController;
+use App\Http\Controllers\UpgradeController;
+
+
+
+/*
+|--------------------------------------------------------------------------
+| API Routes
+|--------------------------------------------------------------------------
+|
+| Here is where you can register API routes for your application. These
+| routes are loaded by the RouteServiceProvider within a group which
+| is assigned the "api" middleware group. Enjoy building your API!
+|
+*/
+
+Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
+    return $request->user();
+});
+
+Route::get('/api/sentence/progress/image', [SentenceInfoController::class, 'showprogress']);
+Route::get('/api/sentence/progress/daily/image', [SentenceInfoController::class, 'showprogressdaily']);
+
+
+Route::group(['prefix' => 'v2'], function () {
+    Route::apiResource('wbw_templates', WbwTemplateController::class);
+
+    Route::apiResource('terms', DhammaTermController::class);
+    Route::apiResource('terms-export', TermExportController::class);
+    Route::get('terms-import', [TermExportController::class, 'import']);
+    Route::get('system-term/{lang}/{word}', [SystemTermController::class, "show"]);
+
+    Route::apiResource('sentence', SentenceController::class);
+    Route::apiResource('sent-in-channel', SentInChannelController::class);
+    Route::apiResource('sentpr', SentPrController::class);
+    Route::post('sent-pr-tree', [SentPrController::class, "pr_tree"]);
+    Route::apiResource('progress', ProgressChapterController::class);
+    Route::apiResource('tag', TagController::class);
+    Route::apiResource('view', ViewController::class);
+
+    Route::delete('like', [LikeController::class, 'delete']);
+    Route::apiResource('like', LikeController::class);
+    Route::apiResource('sent_history', SentHistoryController::class);
+    Route::get('sent_history_contribution', [SentHistoryController::class, 'contribution']);
+    Route::apiResource('palitext', PaliTextController::class);
+    Route::apiResource('channel', ChannelController::class);
+    Route::patch('channel', [ChannelController::class, "patch"]);
+    Route::get('channel-name/{name}', [ChannelController::class, "showByName"]);
+    Route::get('channel-my-number', [ChannelController::class, 'showMyNumber']);
+    Route::post('channel-progress', [ChannelController::class, "progress"]);
+    Route::delete('userdict', [UserDictController::class, 'delete']);
+    Route::apiResource('userdict', UserDictController::class);
+
+    Route::apiResource('anthology', CollectionController::class);
+    Route::get('anthology-my-number', [CollectionController::class, 'showMyNumber']);
+    Route::apiResource('dict', DictController::class);
+    Route::apiResource('article', ArticleController::class);
+    Route::get('article-my-number', [ArticleController::class, 'showMyNumber']);
+    Route::put('article-preview/{id}', [ArticleController::class, 'preview']);
+
+    Route::apiResource('group', GroupController::class);
+    Route::get('group-my-number', [GroupController::class, 'showMyNumber']);
+
+    Route::get('auth/current', [AuthController::class, 'getUserInfoByToken']);
+    Route::post('sign-in', [AuthController::class, 'signIn']);
+    Route::apiResource('auth/forgot-password', ForgotPasswordController::class);
+    Route::apiResource('auth/reset-password', ResetPasswordController::class);
+
+    Route::apiResource('corpus', CorpusController::class);
+    Route::get('corpus-sent/{id}', [CorpusController::class, 'showSent']);
+    Route::get('corpus-chapter/{id}', [CorpusController::class, 'showChapter']);
+    Route::get('corpus-sentences/{type}/{id}', [CorpusController::class, 'showSentences']);
+
+    Route::apiResource('article-progress', ArticleProgressController::class);
+
+    Route::post('export_wbw', [ExportWbwController::class, 'index']);
+    Route::apiResource('attachments', UploadController::class);
+    Route::apiResource('discussion', DiscussionController::class);
+    Route::post('sent-discussion-tree', [DiscussionController::class, "discussion_tree"]);
+    Route::get('discussion-anchor/{id}', [DiscussionController::class, 'anchor']);
+    Route::apiResource('user', UserController::class);
+    Route::apiResource('group-member', GroupMemberController::class);
+    Route::apiResource('share', ShareController::class);
+    Route::apiResource('wbwlookup', WbwLookupController::class);
+    Route::apiResource('course', CourseController::class);
+    Route::apiResource('course-member', CourseMemberController::class);
+    Route::put('course-member_set-channel', [CourseMemberController::class, 'set_channel']);
+    Route::get('course-my-course', [CourseController::class, 'showMyCourseNumber']);
+    Route::get('course-curr', [CourseMemberController::class, 'curr']);
+    Route::get('course-member-export', [CourseMemberController::class, "export"]);
+
+    Route::apiResource('exercise', ExerciseController::class);
+    Route::apiResource('article-map', ArticleMapController::class);
+    Route::apiResource('vocabulary', VocabularyController::class);
+    Route::apiResource('case', CaseController::class);
+    Route::apiResource('dict-meaning', DictMeaningController::class);
+    Route::apiResource('user-operation-daily', UserOperationDailyController::class);
+    Route::apiResource('user-statistic', UserStatisticController::class);
+    Route::apiResource('sent-sim', SentSimController::class);
+    Route::apiResource('nissaya-ending', NissayaEndingController::class);
+    Route::get('nissaya-ending-export', [NissayaEndingController::class, "export"]);
+    Route::get('nissaya-ending-import', [NissayaEndingController::class, "import"]);
+    Route::get('nissaya-ending-vocabulary', [NissayaEndingController::class, "vocabulary"]);
+    Route::apiResource('nissaya-card', NissayaCardController::class);
+    Route::apiResource('relation', RelationController::class);
+    Route::get('relation-export', [RelationController::class, "export"]);
+    Route::get('relation-import', [RelationController::class, "import"]);
+    Route::apiResource('term-vocabulary', TermVocabularyController::class);
+    Route::apiResource('related-paragraph', RelatedParagraphController::class);
+    Route::apiResource('search', SearchController::class);
+    Route::get('search-book-list', [SearchController::class, 'book_list']);
+    Route::apiResource('pali-word-index', WordIndexController::class);
+    Route::apiResource('studio', StudioController::class);
+    Route::apiResource('grammar-guide', GrammarGuideController::class);
+    Route::apiResource('wbw', WbwController::class);
+    Route::apiResource('attachment', AttachmentController::class);
+    Route::apiResource('api', ApiController::class);
+    Route::apiResource('progress-img', ProgressImgController::class);
+    Route::apiResource('recent', RecentController::class);
+    Route::apiResource('milestone', MilestoneController::class);
+    Route::apiResource('article-nav', ArticleNavController::class);
+    Route::apiResource('invite', InviteController::class);
+    Route::apiResource('sign-up', SignUpController::class);
+    Route::apiResource('term-summary', TermSummaryController::class);
+
+    Route::apiResource('channel-io', ChannelIOController::class);
+    Route::apiResource('chapter-io', ChapterIOController::class);
+    Route::apiResource('sentence-io', SentenceIOController::class);
+    Route::apiResource('webhook', WebHookController::class);
+    Route::apiResource('dict-statistic', DictStatisticController::class);
+    Route::apiResource('search-title-index', SearchTitleController::class);
+    Route::apiResource('transfer', TransferController::class);
+    Route::apiResource('health-check', HealthCheckController::class);
+    Route::apiResource('offline-index', OfflineIndexController::class);
+    Route::apiResource('task', TaskController::class);
+    Route::apiResource('export', ExportController::class);
+    Route::apiResource('dict-vocabulary', DictVocabularyController::class);
+    Route::apiResource('dict-info', DictInfoController::class);
+    Route::apiResource('pg-pali-dict-download', PgPaliDictDownloadController::class);
+    Route::apiResource('pali-search-data', SearchPaliDataController::class);
+    Route::apiResource('search-pali-wbw', SearchPaliWbwController::class);
+    Route::get('search-pali-wbw-books', [SearchPaliWbwController::class, 'book_list']);
+    Route::apiResource('search-page-number', SearchPageNumberController::class);
+    Route::apiResource('nav-page', NavPageController::class);
+    Route::apiResource('nav-article', NavArticleController::class);
+    Route::apiResource('nav-cs-para', NavCSParaController::class);
+    Route::apiResource('book-title', BookTitleController::class);
+    Route::apiResource('sentences-in-chapter', SentencesInChapterController::class);
+    Route::apiResource('compound', CompoundController::class);
+    Route::apiResource('notification', NotificationController::class);
+    Route::apiResource('interactive', InteractiveController::class);
+    Route::apiResource('chapter-index', ChapterIndexController::class);
+    Route::apiResource('wbw-sentence', WbwSentenceController::class);
+    Route::apiResource('snowflake', SnowFlakeIdController::class);
+    Route::apiResource('discussion-count', DiscussionCountController::class);
+    Route::apiResource('tags-in-chapter', TagsInChapterCountController::class);
+    Route::apiResource('tag-map', TagMapController::class);
+    Route::apiResource('editable-sentence', EditableSentenceController::class);
+    Route::apiResource('article-fts', ArticleFtsController::class);
+    Route::apiResource('nissaya-cover', NissayaCoverController::class);
+    Route::apiResource('ai-translate', AiTranslateController::class);
+    Route::apiResource('dict-preference', DictPreferenceController::class);
+    Route::apiResource('command', CommandController::class);
+    Route::apiResource('user-milestone', UserMilestoneController::class);
+    Route::apiResource('project', ProjectController::class);
+    Route::apiResource('task-status', TaskStatusController::class);
+    Route::apiResource('task-group', TaskGroupController::class);
+    Route::apiResource('chapter', ChapterController::class);
+    Route::apiResource('project-tree', ProjectTreeController::class);
+    Route::apiResource('site-info', SiteInfoController::class);
+    Route::apiResource('pali-book-category', PaliBookCategoryController::class);
+    Route::apiResource('access-token', AccessTokenController::class);
+    Route::apiResource('search-word-slice', SearchWordSliceController::class);
+    Route::apiResource('ai-model', AiModelController::class);
+    Route::apiResource('ai-assistant', AiAssistantController::class);
+    Route::apiResource('model-log', ModelLogController::class);
+    Route::apiResource('sentence-attachment', SentenceAttachmentController::class);
+    Route::apiResource('email-certification', EmailCertificationController::class);
+    Route::apiResource('sentence-info', SentenceInfoController::class);
+    Route::apiResource('system-model', SysModelController::class);
+    Route::apiResource('chats', ChatController::class);
+    Route::apiResource('chat-messages', ChatMessageController::class);
+
+    Route::post('mock/openai/chat/completions', [MockOpenAIController::class, 'chatCompletions']);
+    Route::post('mock/openai/completions', [MockOpenAIController::class, 'completions']);
+    Route::get('mock/openai/models', [MockOpenAIController::class, 'models']);
+});
+
+
+Route::group(['prefix' => 'v3'], function () {
+    Route::apiResource('search', SearchPlusController::class);
+    Route::apiResource('search-suggest', SearchSuggestController::class);
+    Route::apiResource('upgrade', UpgradeController::class);
+});

+ 83 - 2
api-v12/routes/web.php

@@ -1,7 +1,88 @@
 <?php
 
 use Illuminate\Support\Facades\Route;
+use Illuminate\Support\Facades\File;
+use App\Http\Controllers\WbwAnalysisController;
+use App\Http\Controllers\PageIndexController;
+use App\Http\Controllers\AssetsController;
+use App\Http\Controllers\BlogController;
+use App\Http\Controllers\CategoryController;
+use App\Http\Controllers\BookController;
 
-Route::get('/', function () {
-    return view('welcome');
+/*
+|--------------------------------------------------------------------------
+| Web Routes
+|--------------------------------------------------------------------------
+|
+| Here is where you can register web routes for your application. These
+| routes are loaded by the RouteServiceProvider within a group which
+| contains the "web" middleware group. Now create something great!
+|
+*/
+
+Route::redirect('/app', '/app/pcdl/index.php');
+Route::redirect('/app/pcdl', '/app/pcdl/index.php');
+
+Route::get('/', [PageIndexController::class, 'index']);
+
+Route::get('/wbwanalyses', [WbwAnalysisController::class, 'index']);
+Route::get('/attachments/{bucket}/{name}', [AssetsController::class, 'show']);
+
+Route::get('/export/wbw', function () {
+    return view('export_wbw', ['sentences' => []]);
+});
+
+
+Route::get('/privacy/{file}', function (string $file) {
+    $path = base_path("documents/mobile/privacy/{$file}.md");
+
+    abort_unless(File::exists($path), 404);
+
+    return view('privacy', [
+        'content' => File::get($path),
+    ]);
+});
+
+Route::get('/book/{id}', function ($id) {
+    return view('book', ['id' => $id]);
+});
+Route::redirect('/privacy', '/privacy/index');
+
+
+
+
+Route::post('/theme/toggle', [BookController::class, 'toggleTheme'])->name('theme.toggle');
+Route::post('/logout', function () {
+    // Handle logout
+    //Auth::logout();
+    return redirect('/login');
+})->name('logout');
+
+Route::prefix('library')->group(function () {
+    Route::get('/', [CategoryController::class, 'index'])->name('library.home');
+    Route::get('/category/{id}', [CategoryController::class, 'show'])->name('library.category.show');
+    Route::get('/book/{id}', [BookController::class, 'show'])->name('library.book.show');
+    Route::get('/book/{id}/read', [BookController::class, 'read'])->name('library.book.read');
+});
+// 博客路由
+Route::prefix('blog')->group(function () {
+    Route::get('/{user}', [BlogController::class, 'index'])->name('blog.index')->where('user', '[a-zA-Z0-9_-]+');
+    Route::get('/{user}/categories', [BlogController::class, 'categories'])->name('blog.categories');
+    Route::get('/{user}/category/{category1}/{category2?}/{category3?}/{category4?}/{category5?}', [BlogController::class, 'category'])->name('blog.category');
+    Route::get('/{user}/archives', [BlogController::class, 'archives'])->name('blog.archives');
+    Route::get('/{user}/archives/{year}', [BlogController::class, 'archivesByYear'])->name('blog.archives.year');
+    Route::get('/{user}/tag/{tag}', [BlogController::class, 'tag'])->name('blog.tag');
+    Route::get('/{user}/search', [BlogController::class, 'search'])->name('blog.search');
+    Route::get('/{user}/{post}', [BlogController::class, 'show'])
+        ->name('blog.show')
+        ->where([
+            'user' => '[a-zA-Z0-9_-]+',
+            'post' => '[a-zA-Z0-9_-]+',
+        ]);
+});
+
+Route::group(['prefix' => 'tools'], function () {
+    Route::get('/nissaya_format_converter', function () {
+        return view('nissaya_format_converter');
+    });
 });