Przeglądaj źródła

Merge pull request #530 from visuddhinanda/master

article 支持阅读三藏
visuddhinanda 4 lat temu
rodzic
commit
0f2a482d93

+ 184 - 6
app/article/article.js

@@ -1,16 +1,19 @@
 //import {Like,LikeRefresh} from '../widget/like.js';
 var _view = "";
+var _id = "";
 var _articel_id = "";
 var _channal = "";
 var _lang = "";
 var _author = "";
 var _display = "";
-var _collect_id = "";
 var _collection_id = "";
+var _book=0,_par=0,_start=0,_end=0;
+var _sent_data;
 
 function article_onload() {
 	historay_init();
 }
+
 function articel_load(id, collection_id) {
 	if (id == "") {
 		return;
@@ -106,9 +109,9 @@ function articel_load_article_list(articleId,collectionId) {
 					if (result) {
 						let article_list = JSON.parse(result.article_list);
 						render_article_list(article_list,collectionId,articleId);
-						let strTitle = "<a href='../article/?collection=" + result.id + "'>" + result.title + "</a> / ";
+						let strTitle = "<a href='../article/?view=collection&collection=" + result.id + "'>" + result.title + "</a> / ";
 						for (const iterator of tocActivePath) {
-							strTitle += "<a href='../article/?id="+iterator.key+"&collection=" + result.id + "'>" + iterator.title + "</a> / ";
+							strTitle += "<a href='../article/?view=article&id="+iterator.key+"&collection=" + result.id + "'>" + iterator.title + "</a> / ";
 						}
 						$("#article_path").html(strTitle);						
 					}
@@ -145,7 +148,25 @@ function render_article_list_in_content(article_list,collectId="",articleId="")
 	});
 }
 function set_channal(channalid) {
-	let url = "../article/index.php?id=" + _articel_id;
+	let url = "../article/index.php?";
+	if (_view != "") {
+		url += "view=" + _view;
+	}	
+	if (_id != "") {
+		url += "&id=" + _id;
+	}	
+	if (_book != 0) {
+		url += "&book=" + _book;
+	}	
+	if (_par != 0) {
+		url += "&par=" + _par;
+	}	
+	if (_start != 0) {
+		url += "&start=" + _start;
+	}	
+	if (_end != 0) {
+		url += "&end=" + _end;
+	}	
 	if (_collection_id != "") {
 		url += "&collection=" + _collection_id;
 	}
@@ -164,7 +185,25 @@ function set_channal(channalid) {
 	location.assign(url);
 }
 function setMode(mode = "read") {
-	let url = "../article/index.php?id=" + _articel_id;
+	let url = "../article/index.php?";
+	if (_view != "") {
+		url += "view=" + _view;
+	}	
+	if (_id != "") {
+		url += "&id=" + _id;
+	}	
+	if (_book != 0) {
+		url += "&book=" + _book;
+	}	
+	if (_par != 0) {
+		url += "&par=" + _par;
+	}	
+	if (_start != 0) {
+		url += "&start=" + _start;
+	}	
+	if (_end != 0) {
+		url += "&end=" + _end;
+	}
 	if (_collection_id != "") {
 		url += "&collection=" + _collection_id;
 	}
@@ -188,7 +227,7 @@ function setMode(mode = "read") {
 }
 //跳转到另外一个文章
 function gotoArticle(articleId) {
-	let url = "../article/index.php?id=" + articleId;
+	let url = "../article/index.php?view=article&id=" + articleId;
 	if (_collection_id != "") {
 		url += "&collection=" + _collection_id;
 	}
@@ -206,3 +245,142 @@ function gotoArticle(articleId) {
 	}
 	location.assign(url);
 }
+
+
+function palicanon_load() {
+	let param;
+	switch (_view) {
+		case "sent":
+		case "para":
+		case "chapter":
+			param = {
+				view: _view,
+				book: _book,
+				par: _par,
+				start: _start,
+				end: _end,
+			}
+			break;
+		case "simsent":
+			param = {view: _view,id:_id};
+			break;
+		default:
+			break;
+	}
+	$.get(
+		"../reader/get_para1.php",
+		param,
+		function (data, status) {
+			if (status == "success") {
+				try {
+					let result = JSON.parse(data);
+					if (result) {
+						_sent_data=result;
+						$("#article_title").html(result.title);
+						$("#article_path_title").html(result.title);
+						$("#page_title").text(result.title);
+						$("#article_subtitle").html(result.subtitle);
+						$("#article_author").html(result.username.nickname + "@" + result.username.username);
+						$("#contents").html(note_init(result.content));
+						note_refresh_new(function () {
+							document.querySelector("#para_focus").scrollIntoView({
+								block: "end",
+								behavior: "smooth",
+							});
+						});
+						reader_draw_para_menu();
+						guide_init();
+					}
+				} catch (e) {
+					console.error(e);
+				}
+			} else {
+				console.error("ajex error");
+			}
+		}
+	);
+}
+
+function reader_get_path() {
+	$.get(
+		"../reader/get_path.php",
+		{
+			book: _book,
+			para: _par,
+		},
+		function (data) {
+			$("#article_path").html(data);
+
+			var bookTitle = $("chapter").first().html();
+			let suttaTitle = $("chapter").last().html();
+
+			$("#pali_pedia").html(bookTitle);
+			$("#article_title").html(suttaTitle);
+			$("#page_title").text(suttaTitle);
+		}
+	);
+}
+
+function reader_draw_para_menu() {
+	$(".page_number").each(function () {
+		let strPara = $(this).text();
+		$(this).addClass("case_dropdown");
+		let html = "<a name='para_" + strPara + "'></a>";
+		html += "<div class='case_dropdown-content para_menu'>";
+		if (typeof _view != "undefined" && _view != "para") {
+			html += "<a onclick=\"junp_to_para('" + _book + "','" + strPara + "')\">仅显示此段</a>";
+		}
+		html += "<a onclick=\"edit_wbw('" + _book + "','" + strPara + "')\">" + gLocal.gui.edit_now + "</a>";
+		html += "<a  onclick='goto_nissaya(" + _book + "," + strPara + ")'>" + gLocal.gui.show_nissaya + "</a>";
+		html +=
+			"<a onclick=\"copy_para_ref('" + _book + "','" + strPara + "')\">" + gLocal.gui.copy_link + "</a>";
+		html +=
+			"<a onclick=\"copy_text('" +
+			_book +
+			"','" +
+			strPara +
+			"')\">" +
+			gLocal.gui.copy +
+			"“" +
+			gLocal.gui.pāli +
+			"”</a>";
+		html +=
+			"<a onclick=\"add_to_list('" +
+			_book +
+			"','" +
+			strPara +
+			"')\">" +
+			gLocal.gui.add_to_edit_list +
+			"</a>";
+		html += "</div>";
+		$(this).append(html);
+	});
+}
+
+
+function junp_to_para(book, para) {
+	let url = "../article/?view=para&book=" + book + "&par=" + para + "&display=sent";
+	location.assign(url);
+}
+
+function copy_para_ref(book, para) {
+	let output = "";
+	for (const iterator of _sent_data.sent_list) {
+		if (iterator.book == book && iterator.paragraph == para) {
+			output += "{{" + book + "-" + para + "-" + iterator.begin + "-" + iterator.end + "}}\n";
+		}
+	}
+	output += "\n";
+	copy_to_clipboard(output);
+}
+
+function edit_wbw(book, para) {
+	wbw_channal_list_open(book, [para]);
+}
+
+function to_article(){
+	article_add_dlg_show({
+		title:_sent_data.title,
+		content:_sent_data.content,
+	});
+}

+ 18 - 8
app/article/article_add_dlg.js

@@ -1,4 +1,5 @@
 var _article_add_dlg_div;
+var _article_create_param;
 function article_add_dlg_init(div) {
 	_article_add_dlg_div = div;
 	let html = "";
@@ -18,7 +19,13 @@ function article_add_dlg_init(div) {
 	$("#" + div).append(html);
 }
 
-function article_add_dlg_show() {
+function article_add_dlg_show(param=null) {
+	_article_create_param=param;
+	if(param){
+		if(typeof param.title !="undefined"){
+			$("#article_add_title").val(param.title);
+		}
+	}
 	$("#" + _article_add_dlg_div).show();
 }
 function article_add_dlg_hide() {
@@ -30,19 +37,22 @@ function article_add_cancel() {
 }
 
 function article_add_new() {
+	if(typeof _article_create_param == "undefined"){
+		_article_create_param = {
+			title: $("#article_add_title").val(),
+		}
+	}
 	$.post(
 		"../article/my_article_put.php",
-		{
-			title: $("#article_add_title").val(),
-		},
+		_article_create_param,
 		function (data) {
-			let error = JSON.parse(data);
-			if (error.status == 0) {
+			let result = JSON.parse(data);
+			if (result.ok === true) {
 				alert("ok");
 				article_add_cancel();
-				window.location.reload();
+				window.open("../article/my_article_edit.php?id="+result.data.id);
 			} else {
-				alert(error.message);
+				alert(result.message);
 			}
 		}
 	);

+ 125 - 16
app/article/index.php

@@ -21,8 +21,16 @@ require_once "../pcdl/html_head.php";
 	$_channal  = "";
 	$_collect = "";
 
+	if(isset($_GET["view"])){
+		echo "_view='".$_GET["view"]."';";
+	}
+	else{
+		echo "_view='article';";
+	}
+
 	if(isset($_GET["id"])){
 		echo "_articel_id='".$_GET["id"]."';";
+		echo "_id='".$_GET["id"]."';";
 	}
 	if(isset($_GET["collect"])){
 		echo "_collection_id='".$_GET["collect"]."';";
@@ -34,12 +42,29 @@ require_once "../pcdl/html_head.php";
 	if(isset($_GET["channal"])){
 		echo "_channal='".$_GET["channal"]."';";
 	}
+	if(isset($_GET["channel"])){
+		echo "_channal='".$_GET["channel"]."';";
+	}
 	if(isset($_GET["lang"])){
 		echo "_lang='".$_GET["lang"]."';";
 	}
 	if(isset($_GET["author"])){
 		echo "_author='".$_GET["author"]."';";
 	}
+
+	if(isset($_GET["book"])){
+		echo "_book=".$_GET["book"].";";
+	}
+	if(isset($_GET["par"])){
+		echo "_par=".$_GET["par"].";";
+	}
+	if(isset($_GET["start"])){
+		echo "_start=".$_GET["start"].";";
+	}
+	if(isset($_GET["end"])){
+		echo "_end=".$_GET["end"].";";
+	}
+
 	if(isset($_GET["mode"]) && $_GET["mode"]=="edit" && isset($_COOKIE["userid"])){
 		#登录状态下 编辑模式
 		$_mode = "edit";
@@ -111,6 +136,8 @@ require_once "../pcdl/html_head.php";
 <link href="../../node_modules/jquery.fancytree/dist/skin-win7/ui.fancytree.css" rel="stylesheet" type="text/css" class="skinswitcher">
 <script src="../tree/jquery.fancytree.js" type="text/javascript"></script>
 <script src="../article/my_collect.js" type="text/javascript"></script>
+<script language="javascript" src="../article/article_add_dlg.js"></script>
+
 
 <style>
 ul.fancytree-container{
@@ -137,7 +164,32 @@ span.fancytree-node{
 	font-size: 120%;
     font-weight: 900;
 }
+#article_path chapter{
+	display:unset;
+}
 
+.float_dlg {
+	display: none;
+	width: 25em;
+	position: absolute;
+	right: 0;
+	background-color: var(--btn-hover-bg-color);
+	padding: 10px;
+	border-radius: 5px;
+	box-shadow: 0 0 10px var(--main-color);
+	z-index: 1;
+}
+
+.float_dlg_left {
+	display: none;
+	width: 25em;
+	position: absolute;
+	background-color: var(--btn-hover-bg-color);
+	padding: 10px;
+	border-radius: 5px;
+	box-shadow: 0 0 10px var(--main-color);
+	z-index: 200;
+}
 </style>
 
 <?php
@@ -145,25 +197,60 @@ span.fancytree-node{
 ?>
 <div id="head_bar" >
 	<div style="display:flex;">
-	<div id="article_path" >
-	</div>
-	<div id="article_path_title"></div>
+
 	</div>
 
 	<div style="margin: auto 0;">
 		<span id="head_span">
 		<?php
 		
-		if(isset($_GET["id"])){
+		if(isset($_GET["view"]) && $_GET["view"]=="article"){
 			echo "<button class='icon_btn'  title='{$_local->gui->modify} {$_local->gui->composition_structure}'>";
 			echo "<a href='../article/my_article_edit.php?id=".$_GET["id"];
 			echo "' target='_blank'>{$_local->gui->modify}</a></button>";
-			
+		}
+		if($_GET["view"]!=="article" || $_GET["view"]!=="collection"){
+?>
+	<span class="icon_btn_div">				
+		<button id="file_add" type="button" class="icon_btn" onclick="to_article()" title=" ">
+			<svg class="icon">
+				<use xlink:href="../studio/svg/icon.svg#ic_add_circle"></use>
+			</svg>
+			转换为文章
+		</button>
+		<div id='article_add_div' class="float_dlg"></div>
+	</span>	
+<?php
+		}
 			echo "<button class='icon_btn'  title='{$_local->gui->add}{$_local->gui->subfield}'>";
-			echo "<a href='../article/frame.php?id=".$_GET["id"];
+			echo "<a href='../article/frame.php?view=".$_GET["view"];
+			if(isset($_GET["id"])){
+				echo "&id=".$_GET["id"];
+			}
+			if(isset($_GET["collection"])){
+				echo "&collection=".$_GET["collection"];
+			}
+			if(isset($_GET["channel"])){
+				echo "&channel=".$_GET["channel"];
+			}
+			if(isset($_GET["lang"])){
+				echo "&lang=".$_GET["lang"];
+			}
+			if(isset($_GET["book"])){
+				echo "&book=".$_GET["book"];
+			}
+			if(isset($_GET["par"])){
+				echo "&par=".$_GET["par"];
+			}
+			if(isset($_GET["start"])){
+				echo "&start=".$_GET["start"];
+			}
+			if(isset($_GET["end"])){
+				echo "$end=".$_GET["end"];
+			}
 			echo "'>{$_local->gui->add}{$_local->gui->subfield}</a></button>";	
-			
-		}
+				
+		
 
 		?>
 		<span>
@@ -174,6 +261,10 @@ span.fancytree-node{
 </div>
 <div id="main_view" class="main_view">
 <div id="article_head" style="border-bottom: 1px solid gray;">
+	<div style="display:flex;">
+		<div id="article_path" class=""></div>
+		<div id="article_path_title"></div>
+	</div>
 	<div id="article_title" class="term_word_head_pali"></div>
 	<div id="article_subtitle"></div>
 	<div id="article_author"></div>
@@ -227,19 +318,37 @@ span.fancytree-node{
 
 <script>
 	$(document).ready(function(){
+		article_add_dlg_init("article_add_div");
 	ntf_init();				
 	click_dropdown_init();
 	note_create();
 	historay_init();
-	if(_articel_id==""){
-		collect_load(_collection_id);
-	}
-	else{
-		articel_load(_articel_id,_collection_id);
-		if(_collection_id!=""){
-			articel_load_article_list(_articel_id,_collection_id);
-		}
+	switch (_view) {
+		case "article":
+			articel_load(_articel_id,_collection_id);
+			if(_collection_id!=""){
+				articel_load_article_list(_articel_id,_collection_id);
+			}
+			break;
+		case "collection":
+			collect_load(_collection_id);
+		break;
+		case "sent":
+		case "para":
+		case "chapter":
+		case "book":
+		case "series":
+			palicanon_load();
+			reader_get_path();
+			
+		break;
+		case "simsent":
+			palicanon_load();
+			break;
+		default:
+			break;
 	}
+
 	});
 
 	 window.addEventListener('scroll',winScroll);

+ 1 - 1
app/article/my_article.js

@@ -43,7 +43,7 @@ function my_article_list() {
 						html += "<div style='flex:2;'>" + render_status(iterator.status) + "</div>";
 						
 						html += "<div style='flex:1;'>";
-						html += "<a href='../article/?id=" + iterator.id + "' target='_blank' title='" + gLocal.gui.preview + "' >";
+						html += "<a href='../article/?view=article&id=" + iterator.id + "' target='_blank' title='" + gLocal.gui.preview + "' >";
 						html += "<button class='icon_btn'>";
 						html += "<svg class='icon'>";
 						html += "<use xlink:href='../studio/svg/icon.svg#preview'></use>";

+ 1 - 1
app/article/my_article_edit.php

@@ -126,7 +126,7 @@ require_once '../studio/index_head.php';
 				<span class="icon_btn_div">
 					<span class="icon_btn_tip"><?php echo $_local->gui->scan_in_reader ;?></span>
 					<button type="button" class="icon_btn" >
-						<a href="../article/index.php?id=<?php echo $_GET["id"];?>" target="_blank">
+						<a href="../article/index.php?view=article&id=<?php echo $_GET["id"];?>" target="_blank">
 							<svg class="icon">
 								<use xlink:href="../studio/svg/icon.svg#library"></use>
 							</svg>

+ 15 - 6
app/article/my_article_put.php

@@ -8,21 +8,27 @@ require_once '../public/function.php';
 require_once '../hostsetting/function.php';
 require_once "../ucenter/active.php";
 
-$respond=array("status"=>0,"message"=>"");
+$respond=array("ok"=>true,"message"=>"");
 if(!isset($_COOKIE["userid"])){
 	#不登录不能新建
-	$respond['status']=1;
+	$respond['ok']=false;
 	$respond['message']="no power create article";
 	echo json_encode($respond, JSON_UNESCAPED_UNICODE);
 	exit;
 }
 if(!isset($_POST["title"])){
 	#无标题不能新建
-	$respond['status']=1;
+	$respond['ok']=false;
 	$respond['message']="no title";
 	echo json_encode($respond, JSON_UNESCAPED_UNICODE);
 	exit;
 }
+if(isset($_POST["content"])){
+	$content = $_POST["content"];
+}
+else{
+	$content = "";
+}
 PDO_Connect(_FILE_DB_USER_ARTICLE_);
 
 $query="INSERT INTO article ( id,  title  , subtitle  , summary , content   , tag  , owner, setting  , status  , create_time , modify_time , receive_time   )  VALUES  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) ";
@@ -31,12 +37,15 @@ $uuid = UUID::v4();
 //写入日志
 add_edit_event(_ARTICLE_NEW_,$uuid);
 #新建文章默认私有
-$sth->execute(array($uuid , $_POST["title"] , "" ,"", "" , "" , $_COOKIE["userid"] , "{}" , 10 , mTime() ,  mTime() , mTime() ));
-$respond=array("status"=>0,"message"=>"");
+$sth->execute(array($uuid , $_POST["title"] , "" ,"", $content , "" , $_COOKIE["userid"] , "{}" , 10 , mTime() ,  mTime() , mTime() ));
+
 if (!$sth || ($sth && $sth->errorCode() != 0)) {
 	$error = PDO_ErrorInfo();
-	$respond['status']=1;
+	$respond['ok']=false;
 	$respond['message']=$error[2];
 }
+else{
+	$respond['data']=["id"=>$uuid,"title"=>$_POST["title"]];
+}
 echo json_encode($respond, JSON_UNESCAPED_UNICODE);
 ?>

+ 2 - 2
app/article/my_collect.js

@@ -30,7 +30,7 @@ function my_collect_list() {
 						html += "<div style='flex:2;'>" + render_status(iterator.status) + "</div>";
 						//html += "<div style='flex:1;'>" + gLocal.gui.copy_link + "</div>";
 						html += "<div style='flex:1;'>";
-						html += "<a href='../article/?collect=" + iterator.id + "' target='_blank'>" + gLocal.gui.preview + "</a>";
+						html += "<a href='../article/?view=collection&collection=" + iterator.id + "' target='_blank'>" + gLocal.gui.preview + "</a>";
 						html += "</div>";
 						html += "<div style='flex:1;'>";
 						html += "<a onclick=\"collection_share('" + iterator.id + "')\">"+gLocal.gui.share+"</a>";
@@ -139,7 +139,7 @@ function my_collect_edit(id) {
 						source: tocGetTreeData(_arrArticleList),
 						click: function(e, data) {
 							if( e.ctrlKey ){
-							  window.open("../article/?id="+data.node.key,"_blank");
+							  window.open("../article/?view=article&id="+data.node.key,"_blank");
 							  return false;
 							}
 						  },

+ 11 - 0
app/article/style.css

@@ -163,3 +163,14 @@ img {
 .tool_bar {
 	display: flex;
 }
+
+
+.page_number {
+    padding: 2px 2px;
+    position: absolute;
+    margin-top: 0;
+    margin-left: -30px;
+    font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Padauk", Arial, Verdana;
+    color: var(--main-color1);
+    font-size: 80%;
+}

+ 2 - 2
app/collect/index.js

@@ -11,7 +11,7 @@ function collect_load(begin = 0) {
                 html += "<div class='card_state'>" + gLocal.gui.ongoing + "</div>";
                 html += "<div class='card_info'>"; //卡片信息开始
                 html += "<div class='collect_title'>";
-                html += "<a href='../article/?collect=" + iterator.id + "'>" + iterator.title + "</a>";
+                html += "<a href='../article/?view=collection&collection=" + iterator.id + "'>" + iterator.title + "</a>";
                 html += "</div>";
 
                 if (iterator.subtitle && iterator.subtitle != "null") {
@@ -41,7 +41,7 @@ function collect_load(begin = 0) {
                     html += "<div style='padding:6px 0; border-top: #707070 1px solid;'>";
                     html += "<a class='article_title'";
 					html +=" style='color:var(--main_color);font-weight:700;'";
-					html +=" href='../article/?id=" + article.article +"&collection="+iterator.id+"' target='_blank'>" ;
+					html +=" href='../article/?view=article&id=" + article.article +"&collection="+iterator.id+"' target='_blank'>" ;
 					html += article.title ;
 					html += "</a>";
                     html += "</div>";

+ 1 - 0
app/dict/dict.js

@@ -4,6 +4,7 @@ var dict_search_xml_http = null;
 var _autoSplit = true;
 
 function dict_search(word, autoSplit = true) {
+	word = word.replace(/[\[\]]/g,"");
 	_autoSplit = autoSplit;
 	$("#pre_search_result").hide();
 	if (!localStorage.searchword) {

+ 5 - 2
app/dict/dict_lookup.php

@@ -100,8 +100,7 @@ $right_word_list = "";
 					echo "<div class='pali_spell'><a name='word_$x'></a>" . $x . "</div>";
 					$titleHas = true;
 				}
-				echo $userDictStr;
-				echo $termDictStr;
+
 				
                 $query = "SELECT dict.dict_id,dict.mean,info.shortname from " . _TABLE_DICT_REF_ . " LEFT JOIN info ON dict.dict_id = info.id where word = ? limit 0,30";
                 $Fetch = PDO_FetchAll($query, array($x));
@@ -119,6 +118,10 @@ $right_word_list = "";
                         $x_value = str_replace($gr->id, $gr->value, $x_value);
                     }
                     echo "<div class='dict_find_gramma'>" . $x_value . "</div>";
+					
+					echo $userDictStr;
+					echo $termDictStr;
+
                     for ($i = 0; $i < $iFetch; $i++) {
                         $mean = $Fetch[$i]["mean"];
                         $dictid = $Fetch[$i]["dict_id"];

+ 2 - 1
app/dict/p_ending.php

@@ -2,9 +2,10 @@
 global $p_ending;
 $p_ending = array(
 array("ti","māna",".ti.$.prp."),
-array("ti","anta",".ti.$.prp."),
+array("ati","anta",".ti.$.prp."),
 array("ti","ta",".ti.pp."),
 array("ti","na",".ti.$.pp."),
+array("eti","enta",".ti.$.prp."),
 array("ati","eyya",".ti.$.fpp."),
 array("eti","eyya",".ti.$.fpp."),
 array("oti","eyya",".ti.$.fpp."),

+ 2 - 2
app/dict/redis_import_dict.php

@@ -45,9 +45,9 @@ function runTask($redis,$task,$dir){
 		if (($fp = fopen($csvfile, "r")) !== false) {
 			echo "单词表load {$csvfile}\n";
 			$row=0;
-			while (($data = fgets($fp)) !== false) {
+			while (($data = fgetcsv($fp)) !== false) {
 				$row++;
-				$data1 = explode(",",trim($data));
+				$data1 = $data;
 				if(count($data1)>7){
 					if($data1[2]==".comp." && $data1[1]===$data1[7]){
 						continue;

+ 2 - 2
app/group/group.js

@@ -161,7 +161,7 @@ function group_list(id, list) {
 								case 3: //article
 									html += "<use xlink:href='../studio/svg/icon.svg#article_1'></use>";
 									cardUrl = "../article/card.php";
-									viewLink = "<a href='../article/?id=" + iterator.res_id + "' target='_blank'>";
+									viewLink = "<a href='../article/?view=article&id=" + iterator.res_id + "' target='_blank'>";
 									doing +=
 										"<a href='../article/my_article_edit.php?id=" +
 										iterator.res_id +
@@ -170,7 +170,7 @@ function group_list(id, list) {
 								case 4: //collection
 									html += "<use xlink:href='../studio/svg/icon.svg#collection'></use>";
 									cardUrl = "../collect/card.php";
-									viewLink ="<a href='../article/?collection=" + iterator.res_id + "' target='_blank'>";
+									viewLink ="<a href='../article/?view=collection&collection=" + iterator.res_id + "' target='_blank'>";
 									doing +=
 										"<a href='../article/my_collect_edit.php?id=" +
 										iterator.res_id +

+ 2 - 2
app/nissaya/index.php

@@ -23,8 +23,8 @@ if(isset($_GET["book"])){
 else{
 	$book = 0;
 }
-if(isset($_GET["para"])){
-	$para = $_GET["para"];
+if(isset($_GET["par"])){
+	$para = $_GET["par"];
 }
 else{
 	$para = 0;

+ 2 - 2
app/pcdl/html_head.php

@@ -83,8 +83,8 @@ if (isset($_GET["language"])) {
 
 	<script src="../ucenter/setting.js"></script>
 
-	<script src="../public/js/marked.js"></script>
-	<script src="../public/js/mermaid.min.js"></script>
+	<script src="../../node_modules/marked/marked.min.js"></script>
+	<script src="../../node_modules/mermaid/dist/mermaid.min.js"></script>
 
 	<script src="../public/js/notify.js"></script>
 	<link type="text/css" rel="stylesheet" href="../public/css/notify.css" />

+ 2 - 2
app/pcdl/index.js

@@ -28,13 +28,13 @@ function index_load_collect_new() {
 				gLocal.gui.ongoing + "</div>";
 
 				html += "<div class='title'>";
-				html += "<a href='../article/?id=" + iterator.id + "'>" + iterator.title + "</a>";
+				html += "<a href='../article/?view=article&id=" + iterator.id + "'>" + iterator.title + "</a>";
 				html += "</div>";
 
 				html += "<div class='collect'>";
 				if (iterator.collect) {
 					html +=
-						"<a href='../article/?collect=" + iterator.collect.id + "'>" + iterator.collect.title + "</a>";
+						"<a href='../article/?view=collection&collection=" + iterator.collect.id + "'>" + iterator.collect.title + "</a>";
 				} else {
 					html += "unkow";
 				}

+ 2 - 2
app/pcdl/reader1.php

@@ -32,8 +32,8 @@ $_channal = new Channal();
 	<script src="../public/js/notify.js"></script>
 	<script src="../term/term.js"></script>
 	<script src="../term/note.js"></script>
-	<script src="../public/js/marked.js"></script>
-	<script src="../public/js/mermaid.min.js"></script>
+	<script src="../../node_modules/marked/marked.min.js"></script>
+	<script src="../../node_modules/mermaid/dist/mermaid.min.js"></script>
 	<script src="../guide/guide.js"></script>
 	<link type="text/css" rel="stylesheet" href="../guide/guide.css"/>
 </head>

+ 3172 - 3176
app/public/casesuf.inc

@@ -1,3181 +1,3177 @@
 <?php
 global $case;
-$case = array(
-array("ant","antā",".m.$.pl.$.nom."),
-array("ant","antā",".m.$.pl.$.voc."),
-array("ant","antā",".m.$.sg.$.abl."),
-array("ant","anta",".m.$.sg.$.voc."),
-array("ant","antā",".m.$.sg.$.voc."),
-array("ant","anta",".nt.$.pl.$.acc."),
-array("ant","antā",".nt.$.pl.$.acc."),
-array("ant","anta",".nt.$.pl.$.nom."),
-array("ant","antā",".nt.$.pl.$.nom."),
-array("ant","anta",".nt.$.pl.$.voc."),
-array("ant","antā",".nt.$.pl.$.voc."),
-array("ant","antā",".nt.$.sg.$.abl."),
-array("ant","anta",".nt.$.sg.$.voc."),
-array("ant","antā",".nt.$.sg.$.voc."),
-array("ant","antaṃ",".m.$.sg.$.acc."),
-array("ant","antaṃ",".nt.$.sg.$.acc."),
-array("ant","antaṃ",".nt.$.sg.$.nom."),
-array("ant","antaṃ",".nt.$.sg.$.nom."),
-array("ant","antaṃ",".m.$.sg.$.acc."),
-array("ant","antaṃ",".nt.$.sg.$.acc."),
-array("ant","antamhā",".m.$.sg.$.abl."),
-array("ant","antamhā",".nt.$.sg.$.abl."),
-array("ant","antamhā",".m.$.sg.$.abl."),
-array("ant","antamhā",".nt.$.sg.$.abl."),
-array("ant","antamhi",".m.$.sg.$.loc."),
-array("ant","antamhi",".nt.$.sg.$.loc."),
-array("ant","antamhi",".m.$.sg.$.loc."),
-array("ant","antamhi",".nt.$.sg.$.loc."),
-array("ant","antānaṃ",".m.$.pl.$.dat."),
-array("ant","antānaṃ",".m.$.pl.$.gen."),
-array("ant","antānaṃ",".nt.$.pl.$.dat."),
-array("ant","antānaṃ",".nt.$.pl.$.gen."),
-array("ant","antānaṃ",".nt.$.pl.$.dat."),
-array("ant","antānaṃ",".nt.$.pl.$.gen."),
-array("ant","antani",".nt.$.pl.$.acc."),
-array("ant","antāni",".nt.$.pl.$.acc."),
-array("ant","antani",".nt.$.pl.$.nom."),
-array("ant","antāni",".nt.$.pl.$.nom."),
-array("ant","antani",".nt.$.pl.$.voc."),
-array("ant","antāni",".nt.$.pl.$.voc."),
-array("ant","antasmā",".m.$.sg.$.abl."),
-array("ant","antasmā",".nt.$.sg.$.abl."),
-array("ant","antasmā",".m.$.sg.$.abl."),
-array("ant","antasmā",".nt.$.sg.$.abl."),
-array("ant","antasmiṃ",".m.$.sg.$.loc."),
-array("ant","antasmiṃ",".nt.$.sg.$.loc."),
-array("ant","antasmiṃ",".m.$.sg.$.loc."),
-array("ant","antasmiṃ",".nt.$.sg.$.loc."),
-array("ant","antassa",".m.$.sg.$.dat."),
-array("ant","antassa",".m.$.sg.$.gen."),
-array("ant","antassa",".nt.$.sg.$.dat."),
-array("ant","antassa",".nt.$.sg.$.gen."),
-array("ant","antassa",".m.$.sg.$.dat."),
-array("ant","antassa",".m.$.sg.$.gen."),
-array("ant","antassa",".nt.$.sg.$.dat."),
-array("ant","antassa",".nt.$.sg.$.gen."),
-array("ant","ante",".m.$.pl.$.acc."),
-array("ant","ante",".m.$.sg.$.loc."),
-array("ant","ante",".nt.$.pl.$.acc."),
-array("ant","ante",".nt.$.sg.$.loc."),
-array("ant","antebhi",".m.$.pl.$.abl."),
-array("ant","antebhi",".m.$.pl.$.inst."),
-array("ant","antebhi",".nt.$.pl.$.abl."),
-array("ant","antebhi",".nt.$.pl.$.inst."),
-array("ant","antehi",".m.$.pl.$.abl."),
-array("ant","antehi",".m.$.pl.$.inst."),
-array("ant","antehi",".nt.$.pl.$.abl."),
-array("ant","antehi",".nt.$.pl.$.inst."),
-array("ant","antesu",".m.$.pl.$.loc."),
-array("ant","antesu",".nt.$.pl.$.loc."),
-array("ant","antesu",".nt.$.pl.$.loc."),
-array("ant","antī",".f.$.pl.$.acc."),
-array("ant","antī",".f.$.pl.$.nom."),
-array("ant","antī",".f.$.pl.$.voc."),
-array("ant","antī",".f.$.sg.$.nom."),
-array("ant","antī",".f.$.sg.$.voc."),
-array("ant","antībhi",".f.$.pl.$.abl."),
-array("ant","antībhi",".f.$.pl.$.inst."),
-array("ant","antīhi",".f.$.pl.$.abl."),
-array("ant","antīhi",".f.$.pl.$.inst."),
-array("ant","antiṃ",".f.$.sg.$.acc."),
-array("ant","antīnaṃ",".f.$.pl.$.dat."),
-array("ant","antīnaṃ",".f.$.pl.$.gen."),
-array("ant","antīsu",".f.$.pl.$.loc."),
-array("ant","antiyā",".f.$.sg.$.abl."),
-array("ant","antiyā",".f.$.sg.$.dat."),
-array("ant","antiyā",".f.$.sg.$.gen."),
-array("ant","antiyā",".f.$.sg.$.inst."),
-array("ant","antiyā",".f.$.sg.$.loc."),
-array("ant","antiyaṃ",".f.$.sg.$.loc."),
-array("ant","antiyo",".f.$.pl.$.acc."),
-array("ant","antiyo",".f.$.pl.$.nom."),
-array("ant","antiyo",".f.$.pl.$.voc."),
-array("ant","anto",".m.$.pl.$.nom."),
-array("ant","anto",".m.$.pl.$.voc."),
-array("ant","anto",".m.$.sg.$.nom."),
-array("ant","anto",".nt.$.pl.$.nom."),
-array("ant","anto",".nt.$.pl.$.voc."),
-array("ant","anto",".nt.$.sg.$.nom."),
-array("ant","atā",".m.$.sg.$.abl."),
-array("ant","atā",".m.$.sg.$.inst."),
-array("ant","atā",".nt.$.sg.$.abl."),
-array("ant","atā",".nt.$.sg.$.inst."),
-array("ant","atā",".m.$.sg.$.abl."),
-array("ant","atā",".m.$.sg.$.inst."),
-array("ant","atā",".nt.$.sg.$.abl."),
-array("ant","atā",".nt.$.sg.$.inst."),
-array("ant","ataṃ",".m.$.pl.$.dat."),
-array("ant","ataṃ",".m.$.pl.$.gen."),
-array("ant","ataṃ",".nt.$.pl.$.dat."),
-array("ant","ataṃ",".nt.$.pl.$.gen."),
-array("ant","ataṃ",".nt.$.pl.$.dat."),
-array("ant","ataṃ",".nt.$.pl.$.gen."),
-array("ant","atena",".m.$.sg.$.inst."),
-array("ant","atena",".nt.$.sg.$.inst."),
-array("ant","atena",".m.$.sg.$.inst."),
-array("ant","atena",".nt.$.sg.$.inst."),
-array("ant","atī",".f.$.pl.$.acc."),
-array("ant","atī",".f.$.pl.$.nom."),
-array("ant","atī",".f.$.pl.$.voc."),
-array("ant","atī",".f.$.sg.$.nom."),
-array("ant","atī",".f.$.sg.$.voc."),
-array("ant","ati",".m.$.sg.$.loc."),
-array("ant","ati",".nt.$.sg.$.loc."),
-array("ant","ati",".m.$.sg.$.loc."),
-array("ant","ati",".nt.$.sg.$.loc."),
-array("ant","atībhi",".f.$.pl.$.abl."),
-array("ant","atībhi",".f.$.pl.$.inst."),
-array("ant","atīhi",".f.$.pl.$.abl."),
-array("ant","atīhi",".f.$.pl.$.inst."),
-array("ant","atiṃ",".f.$.sg.$.acc."),
-array("ant","atīnaṃ",".f.$.pl.$.dat."),
-array("ant","atīnaṃ",".f.$.pl.$.gen."),
-array("ant","atīsu",".f.$.pl.$.loc."),
-array("ant","atiyā",".f.$.sg.$.abl."),
-array("ant","atiyā",".f.$.sg.$.dat."),
-array("ant","atiyā",".f.$.sg.$.gen."),
-array("ant","atiyā",".f.$.sg.$.inst."),
-array("ant","atiyā",".f.$.sg.$.loc."),
-array("ant","atiyaṃ",".f.$.sg.$.loc."),
-array("ant","atiyo",".f.$.pl.$.acc."),
-array("ant","atiyo",".f.$.pl.$.nom."),
-array("ant","atiyo",".f.$.pl.$.voc."),
-array("ant","ato",".m.$.sg.$.dat."),
-array("ant","ato",".m.$.sg.$.gen."),
-array("ant","ato",".nt.$.sg.$.dat."),
-array("ant","ato",".nt.$.sg.$.gen."),
-array("ant","ato",".m.$.sg.$.dat."),
-array("ant","ato",".m.$.sg.$.gen."),
-array("ant","ato",".nt.$.sg.$.dat."),
-array("ant","ato",".nt.$.sg.$.gen."),
-array("anta","antā",".m.$.pl.$.nom."),
-array("anta","antā",".m.$.pl.$.voc."),
-array("anta","antā",".m.$.sg.$.abl."),
-array("anta","anta",".m.$.sg.$.voc."),
-array("anta","antā",".m.$.sg.$.voc."),
-array("anta","anta",".nt.$.pl.$.acc."),
-array("anta","antā",".nt.$.pl.$.acc."),
-array("anta","anta",".nt.$.pl.$.nom."),
-array("anta","antā",".nt.$.pl.$.nom."),
-array("anta","anta",".nt.$.pl.$.voc."),
-array("anta","antā",".nt.$.pl.$.voc."),
-array("anta","antā",".nt.$.sg.$.abl."),
-array("anta","anta",".nt.$.sg.$.voc."),
-array("anta","antā",".nt.$.sg.$.voc."),
-array("anta","antaṃ",".m.$.sg.$.acc."),
-array("anta","antaṃ",".nt.$.sg.$.acc."),
-array("anta","antaṃ",".nt.$.sg.$.nom."),
-array("anta","antaṃ",".nt.$.sg.$.nom."),
-array("anta","antaṃ",".m.$.sg.$.acc."),
-array("anta","antaṃ",".nt.$.sg.$.acc."),
-array("anta","antamhā",".m.$.sg.$.abl."),
-array("anta","antamhā",".nt.$.sg.$.abl."),
-array("anta","antamhā",".m.$.sg.$.abl."),
-array("anta","antamhā",".nt.$.sg.$.abl."),
-array("anta","antamhi",".m.$.sg.$.loc."),
-array("anta","antamhi",".nt.$.sg.$.loc."),
-array("anta","antamhi",".m.$.sg.$.loc."),
-array("anta","antamhi",".nt.$.sg.$.loc."),
-array("anta","antānaṃ",".m.$.pl.$.dat."),
-array("anta","antānaṃ",".m.$.pl.$.gen."),
-array("anta","antānaṃ",".nt.$.pl.$.dat."),
-array("anta","antānaṃ",".nt.$.pl.$.gen."),
-array("anta","antānaṃ",".nt.$.pl.$.dat."),
-array("anta","antānaṃ",".nt.$.pl.$.gen."),
-array("anta","antani",".nt.$.pl.$.acc."),
-array("anta","antāni",".nt.$.pl.$.acc."),
-array("anta","antani",".nt.$.pl.$.nom."),
-array("anta","antāni",".nt.$.pl.$.nom."),
-array("anta","antani",".nt.$.pl.$.voc."),
-array("anta","antāni",".nt.$.pl.$.voc."),
-array("anta","antasmā",".m.$.sg.$.abl."),
-array("anta","antasmā",".nt.$.sg.$.abl."),
-array("anta","antasmā",".m.$.sg.$.abl."),
-array("anta","antasmā",".nt.$.sg.$.abl."),
-array("anta","antasmiṃ",".m.$.sg.$.loc."),
-array("anta","antasmiṃ",".nt.$.sg.$.loc."),
-array("anta","antasmiṃ",".m.$.sg.$.loc."),
-array("anta","antasmiṃ",".nt.$.sg.$.loc."),
-array("anta","antassa",".m.$.sg.$.dat."),
-array("anta","antassa",".m.$.sg.$.gen."),
-array("anta","antassa",".nt.$.sg.$.dat."),
-array("anta","antassa",".nt.$.sg.$.gen."),
-array("anta","antassa",".m.$.sg.$.dat."),
-array("anta","antassa",".m.$.sg.$.gen."),
-array("anta","antassa",".nt.$.sg.$.dat."),
-array("anta","antassa",".nt.$.sg.$.gen."),
-array("anta","ante",".m.$.pl.$.acc."),
-array("anta","ante",".m.$.sg.$.loc."),
-array("anta","ante",".nt.$.pl.$.acc."),
-array("anta","ante",".nt.$.sg.$.loc."),
-array("anta","antebhi",".m.$.pl.$.abl."),
-array("anta","antebhi",".m.$.pl.$.inst."),
-array("anta","antebhi",".nt.$.pl.$.abl."),
-array("anta","antebhi",".nt.$.pl.$.inst."),
-array("anta","antehi",".m.$.pl.$.abl."),
-array("anta","antehi",".m.$.pl.$.inst."),
-array("anta","antehi",".nt.$.pl.$.abl."),
-array("anta","antehi",".nt.$.pl.$.inst."),
-array("anta","antesu",".m.$.pl.$.loc."),
-array("anta","antesu",".nt.$.pl.$.loc."),
-array("anta","antesu",".nt.$.pl.$.loc."),
-array("anta","antī",".f.$.pl.$.acc."),
-array("anta","antī",".f.$.pl.$.nom."),
-array("anta","antī",".f.$.pl.$.voc."),
-array("anta","antī",".f.$.sg.$.nom."),
-array("anta","antī",".f.$.sg.$.voc."),
-array("anta","antībhi",".f.$.pl.$.abl."),
-array("anta","antībhi",".f.$.pl.$.inst."),
-array("anta","antīhi",".f.$.pl.$.abl."),
-array("anta","antīhi",".f.$.pl.$.inst."),
-array("anta","antiṃ",".f.$.sg.$.acc."),
-array("anta","antīnaṃ",".f.$.pl.$.dat."),
-array("anta","antīnaṃ",".f.$.pl.$.gen."),
-array("anta","antīsu",".f.$.pl.$.loc."),
-array("anta","antiyā",".f.$.sg.$.abl."),
-array("anta","antiyā",".f.$.sg.$.dat."),
-array("anta","antiyā",".f.$.sg.$.gen."),
-array("anta","antiyā",".f.$.sg.$.inst."),
-array("anta","antiyā",".f.$.sg.$.loc."),
-array("anta","antiyaṃ",".f.$.sg.$.loc."),
-array("anta","antiyo",".f.$.pl.$.acc."),
-array("anta","antiyo",".f.$.pl.$.nom."),
-array("anta","antiyo",".f.$.pl.$.voc."),
-array("anta","anto",".m.$.pl.$.nom."),
-array("anta","anto",".m.$.pl.$.voc."),
-array("anta","anto",".m.$.sg.$.nom."),
-array("anta","anto",".nt.$.pl.$.nom."),
-array("anta","anto",".nt.$.pl.$.voc."),
-array("anta","anto",".nt.$.sg.$.nom."),
-array("anta","atā",".m.$.sg.$.abl."),
-array("anta","atā",".m.$.sg.$.inst."),
-array("anta","atā",".nt.$.sg.$.abl."),
-array("anta","atā",".nt.$.sg.$.inst."),
-array("anta","atā",".m.$.sg.$.abl."),
-array("anta","atā",".m.$.sg.$.inst."),
-array("anta","atā",".nt.$.sg.$.abl."),
-array("anta","atā",".nt.$.sg.$.inst."),
-array("anta","ataṃ",".m.$.pl.$.dat."),
-array("anta","ataṃ",".m.$.pl.$.gen."),
-array("anta","ataṃ",".nt.$.pl.$.dat."),
-array("anta","ataṃ",".nt.$.pl.$.gen."),
-array("anta","ataṃ",".nt.$.pl.$.dat."),
-array("anta","ataṃ",".nt.$.pl.$.gen."),
-array("anta","atena",".m.$.sg.$.inst."),
-array("anta","atena",".nt.$.sg.$.inst."),
-array("anta","atena",".m.$.sg.$.inst."),
-array("anta","atena",".nt.$.sg.$.inst."),
-array("anta","atī",".f.$.pl.$.acc."),
-array("anta","atī",".f.$.pl.$.nom."),
-array("anta","atī",".f.$.pl.$.voc."),
-array("anta","atī",".f.$.sg.$.nom."),
-array("anta","atī",".f.$.sg.$.voc."),
-array("anta","ati",".m.$.sg.$.loc."),
-array("anta","ati",".nt.$.sg.$.loc."),
-array("anta","ati",".m.$.sg.$.loc."),
-array("anta","ati",".nt.$.sg.$.loc."),
-array("anta","atībhi",".f.$.pl.$.abl."),
-array("anta","atībhi",".f.$.pl.$.inst."),
-array("anta","atīhi",".f.$.pl.$.abl."),
-array("anta","atīhi",".f.$.pl.$.inst."),
-array("anta","atiṃ",".f.$.sg.$.acc."),
-array("anta","atīnaṃ",".f.$.pl.$.dat."),
-array("anta","atīnaṃ",".f.$.pl.$.gen."),
-array("anta","atīsu",".f.$.pl.$.loc."),
-array("anta","atiyā",".f.$.sg.$.abl."),
-array("anta","atiyā",".f.$.sg.$.dat."),
-array("anta","atiyā",".f.$.sg.$.gen."),
-array("anta","atiyā",".f.$.sg.$.inst."),
-array("anta","atiyā",".f.$.sg.$.loc."),
-array("anta","atiyaṃ",".f.$.sg.$.loc."),
-array("anta","atiyo",".f.$.pl.$.acc."),
-array("anta","atiyo",".f.$.pl.$.nom."),
-array("anta","atiyo",".f.$.pl.$.voc."),
-array("anta","ato",".m.$.sg.$.dat."),
-array("anta","ato",".m.$.sg.$.gen."),
-array("anta","ato",".nt.$.sg.$.dat."),
-array("anta","ato",".nt.$.sg.$.gen."),
-array("anta","ato",".m.$.sg.$.dat."),
-array("anta","ato",".m.$.sg.$.gen."),
-array("anta","ato",".nt.$.sg.$.dat."),
-array("anta","ato",".nt.$.sg.$.gen."),
-array("mant","mā",".m.$.pl.$.nom."),
-array("mant","mā",".m.$.pl.$.voc."),
-array("mant","mā",".m.$.sg.$.nom."),
-array("mant","ma",".m.$.sg.$.voc."),
-array("mant","mā",".m.$.sg.$.voc."),
-array("mant","mā",".nt.$.pl.$.nom."),
-array("mant","mā",".nt.$.pl.$.voc."),
-array("mant","ma",".nt.$.sg.$.voc."),
-array("mant","mā",".nt.$.sg.$.voc."),
-array("mant","mā",".m.$.sg.$.voc."),
-array("mant","mā",".nt.$.sg.$.voc."),
-array("mant","maṃ",".m.$.sg.$.acc."),
-array("mant","maṃ",".nt.$.sg.$.acc."),
-array("mant","maṃ",".nt.$.sg.$.nom."),
-array("mant","maṃ",".m.$.sg.$.nom."),
-array("mant","maṃ",".m.$.sg.$.voc."),
-array("mant","maṃ",".nt.$.sg.$.voc."),
-array("mant","maṃ",".m.$.sg.$.voc."),
-array("mant","maṃ",".nt.$.sg.$.voc."),
-array("mant","mānaṃ",".m.$.pl.$.dat."),
-array("mant","mānaṃ",".m.$.pl.$.gen."),
-array("mant","mantā",".m.$.pl.$.nom."),
-array("mant","mantā",".m.$.pl.$.voc."),
-array("mant","mantā",".m.$.sg.$.abl."),
-array("mant","manta",".m.$.sg.$.voc."),
-array("mant","mantā",".m.$.sg.$.voc."),
-array("mant","manta",".nt.$.pl.$.acc."),
-array("mant","mantā",".nt.$.pl.$.acc."),
-array("mant","manta",".nt.$.pl.$.nom."),
-array("mant","mantā",".nt.$.pl.$.nom."),
-array("mant","manta",".nt.$.pl.$.voc."),
-array("mant","mantā",".nt.$.pl.$.voc."),
-array("mant","mantā",".nt.$.sg.$.abl."),
-array("mant","manta",".nt.$.sg.$.voc."),
-array("mant","mantā",".nt.$.sg.$.voc."),
-array("mant","mantaṃ",".m.$.sg.$.acc."),
-array("mant","mantaṃ",".nt.$.sg.$.acc."),
-array("mant","mantaṃ",".nt.$.sg.$.nom."),
-array("mant","mantaṃ",".nt.$.sg.$.nom."),
-array("mant","mantaṃ",".m.$.sg.$.acc."),
-array("mant","mantaṃ",".nt.$.sg.$.acc."),
-array("mant","mantamhā",".m.$.sg.$.abl."),
-array("mant","mantamhā",".nt.$.sg.$.abl."),
-array("mant","mantamhā",".m.$.sg.$.abl."),
-array("mant","mantamhā",".nt.$.sg.$.abl."),
-array("mant","mantamhi",".m.$.sg.$.loc."),
-array("mant","mantamhi",".nt.$.sg.$.loc."),
-array("mant","mantamhi",".m.$.sg.$.loc."),
-array("mant","mantamhi",".nt.$.sg.$.loc."),
-array("mant","mantānaṃ",".m.$.pl.$.dat."),
-array("mant","mantānaṃ",".m.$.pl.$.gen."),
-array("mant","mantānaṃ",".nt.$.pl.$.dat."),
-array("mant","mantānaṃ",".nt.$.pl.$.gen."),
-array("mant","mantānaṃ",".nt.$.pl.$.dat."),
-array("mant","mantānaṃ",".nt.$.pl.$.gen."),
-array("mant","mantani",".nt.$.pl.$.acc."),
-array("mant","mantāni",".nt.$.pl.$.acc."),
-array("mant","mantani",".nt.$.pl.$.nom."),
-array("mant","mantāni",".nt.$.pl.$.nom."),
-array("mant","mantani",".nt.$.pl.$.voc."),
-array("mant","mantāni",".nt.$.pl.$.voc."),
-array("mant","mantasmā",".m.$.sg.$.abl."),
-array("mant","mantasmā",".nt.$.sg.$.abl."),
-array("mant","mantasmā",".m.$.sg.$.abl."),
-array("mant","mantasmā",".nt.$.sg.$.abl."),
-array("mant","mantasmiṃ",".m.$.sg.$.loc."),
-array("mant","mantasmiṃ",".nt.$.sg.$.loc."),
-array("mant","mantasmiṃ",".m.$.sg.$.loc."),
-array("mant","mantasmiṃ",".nt.$.sg.$.loc."),
-array("mant","mantassa",".m.$.sg.$.dat."),
-array("mant","mantassa",".m.$.sg.$.gen."),
-array("mant","mantassa",".nt.$.sg.$.dat."),
-array("mant","mantassa",".nt.$.sg.$.gen."),
-array("mant","mantassa",".m.$.sg.$.dat."),
-array("mant","mantassa",".m.$.sg.$.gen."),
-array("mant","mantassa",".nt.$.sg.$.dat."),
-array("mant","mantassa",".nt.$.sg.$.gen."),
-array("mant","mante",".m.$.pl.$.acc."),
-array("mant","mante",".m.$.sg.$.loc."),
-array("mant","mante",".nt.$.pl.$.acc."),
-array("mant","mante",".nt.$.sg.$.loc."),
-array("mant","mantebhi",".m.$.pl.$.abl."),
-array("mant","mantebhi",".m.$.pl.$.inst."),
-array("mant","mantebhi",".nt.$.pl.$.abl."),
-array("mant","mantebhi",".nt.$.pl.$.inst."),
-array("mant","mantehi",".m.$.pl.$.abl."),
-array("mant","mantehi",".m.$.pl.$.inst."),
-array("mant","mantehi",".nt.$.pl.$.abl."),
-array("mant","mantehi",".nt.$.pl.$.inst."),
-array("mant","mantesu",".m.$.pl.$.loc."),
-array("mant","mantesu",".nt.$.pl.$.loc."),
-array("mant","mantesu",".nt.$.pl.$.loc."),
-array("mant","mantī",".f.$.pl.$.acc."),
-array("mant","mantī",".f.$.pl.$.nom."),
-array("mant","mantī",".f.$.pl.$.voc."),
-array("mant","mantī",".f.$.sg.$.nom."),
-array("mant","mantī",".f.$.sg.$.voc."),
-array("mant","mantībhi",".f.$.pl.$.abl."),
-array("mant","mantībhi",".f.$.pl.$.inst."),
-array("mant","mantīhi",".f.$.pl.$.abl."),
-array("mant","mantīhi",".f.$.pl.$.inst."),
-array("mant","mantiṃ",".f.$.sg.$.acc."),
-array("mant","mantīnaṃ",".f.$.pl.$.dat."),
-array("mant","mantīnaṃ",".f.$.pl.$.gen."),
-array("mant","mantīsu",".f.$.pl.$.loc."),
-array("mant","mantiyā",".f.$.sg.$.abl."),
-array("mant","mantiyā",".f.$.sg.$.dat."),
-array("mant","mantiyā",".f.$.sg.$.gen."),
-array("mant","mantiyā",".f.$.sg.$.inst."),
-array("mant","mantiyā",".f.$.sg.$.loc."),
-array("mant","mantiyaṃ",".f.$.sg.$.loc."),
-array("mant","mantiyo",".f.$.pl.$.acc."),
-array("mant","mantiyo",".f.$.pl.$.nom."),
-array("mant","mantiyo",".f.$.pl.$.voc."),
-array("mant","manto",".m.$.pl.$.nom."),
-array("mant","manto",".m.$.pl.$.voc."),
-array("mant","manto",".m.$.sg.$.nom."),
-array("mant","manto",".nt.$.pl.$.nom."),
-array("mant","manto",".nt.$.pl.$.voc."),
-array("mant","manto",".nt.$.sg.$.nom."),
-array("mant","matā",".m.$.sg.$.abl."),
-array("mant","matā",".m.$.sg.$.inst."),
-array("mant","matā",".nt.$.sg.$.abl."),
-array("mant","matā",".nt.$.sg.$.inst."),
-array("mant","matā",".m.$.sg.$.abl."),
-array("mant","matā",".m.$.sg.$.inst."),
-array("mant","matā",".nt.$.sg.$.abl."),
-array("mant","matā",".nt.$.sg.$.inst."),
-array("mant","mataṃ",".m.$.pl.$.dat."),
-array("mant","mataṃ",".m.$.pl.$.gen."),
-array("mant","mataṃ",".nt.$.pl.$.dat."),
-array("mant","mataṃ",".nt.$.pl.$.gen."),
-array("mant","mataṃ",".nt.$.pl.$.dat."),
-array("mant","mataṃ",".nt.$.pl.$.gen."),
-array("mant","matena",".m.$.sg.$.inst."),
-array("mant","matena",".nt.$.sg.$.inst."),
-array("mant","matena",".m.$.sg.$.inst."),
-array("mant","matena",".nt.$.sg.$.inst."),
-array("mant","matī",".f.$.pl.$.acc."),
-array("mant","matī",".f.$.pl.$.nom."),
-array("mant","matī",".f.$.pl.$.voc."),
-array("mant","matī",".f.$.sg.$.nom."),
-array("mant","matī",".f.$.sg.$.voc."),
-array("mant","mati",".m.$.sg.$.loc."),
-array("mant","mati",".nt.$.sg.$.loc."),
-array("mant","mati",".m.$.sg.$.loc."),
-array("mant","mati",".nt.$.sg.$.loc."),
-array("mant","matībhi",".f.$.pl.$.abl."),
-array("mant","matībhi",".f.$.pl.$.inst."),
-array("mant","matīhi",".f.$.pl.$.abl."),
-array("mant","matīhi",".f.$.pl.$.inst."),
-array("mant","matiṃ",".f.$.sg.$.acc."),
-array("mant","matīnaṃ",".f.$.pl.$.dat."),
-array("mant","matīnaṃ",".f.$.pl.$.gen."),
-array("mant","matīsu",".f.$.pl.$.loc."),
-array("mant","matiyā",".f.$.sg.$.abl."),
-array("mant","matiyā",".f.$.sg.$.dat."),
-array("mant","matiyā",".f.$.sg.$.gen."),
-array("mant","matiyā",".f.$.sg.$.inst."),
-array("mant","matiyā",".f.$.sg.$.loc."),
-array("mant","matiyaṃ",".f.$.sg.$.loc."),
-array("mant","matiyo",".f.$.pl.$.acc."),
-array("mant","matiyo",".f.$.pl.$.nom."),
-array("mant","matiyo",".f.$.pl.$.voc."),
-array("mant","mato",".m.$.sg.$.dat."),
-array("mant","mato",".m.$.sg.$.gen."),
-array("mant","mato",".nt.$.sg.$.dat."),
-array("mant","mato",".nt.$.sg.$.gen."),
-array("mant","mato",".m.$.sg.$.dat."),
-array("mant","mato",".m.$.sg.$.gen."),
-array("mant","mato",".nt.$.sg.$.dat."),
-array("mant","mato",".nt.$.sg.$.gen."),
-array("mant","me",".m.$.pl.$.acc."),
-array("mant","mebhi",".m.$.pl.$.abl."),
-array("mant","mebhi",".m.$.pl.$.inst."),
-array("mant","mehi",".m.$.pl.$.abl."),
-array("mant","mehi",".m.$.pl.$.inst."),
-array("mant","mesu",".m.$.pl.$.loc."),
-array("vant","vā",".m.$.pl.$.nom."),
-array("vant","vā",".m.$.pl.$.voc."),
-array("vant","vā",".m.$.sg.$.nom."),
-array("vant","va",".m.$.sg.$.voc."),
-array("vant","vā",".m.$.sg.$.voc."),
-array("vant","vā",".nt.$.pl.$.nom."),
-array("vant","vā",".nt.$.pl.$.voc."),
-array("vant","va",".nt.$.sg.$.voc."),
-array("vant","vā",".nt.$.sg.$.voc."),
-array("vant","vā",".m.$.sg.$.voc."),
-array("vant","vā",".nt.$.sg.$.voc."),
-array("vant","vaṃ",".m.$.sg.$.acc."),
-array("vant","vaṃ",".nt.$.sg.$.acc."),
-array("vant","vaṃ",".nt.$.sg.$.nom."),
-array("vant","vaṃ",".m.$.sg.$.nom."),
-array("vant","vaṃ",".m.$.sg.$.voc."),
-array("vant","vaṃ",".nt.$.sg.$.voc."),
-array("vant","vaṃ",".m.$.sg.$.voc."),
-array("vant","vaṃ",".nt.$.sg.$.voc."),
-array("vant","vānaṃ",".m.$.pl.$.dat."),
-array("vant","vānaṃ",".m.$.pl.$.gen."),
-array("vant","vantā",".m.$.pl.$.nom."),
-array("vant","vantā",".m.$.pl.$.voc."),
-array("vant","vantā",".m.$.sg.$.abl."),
-array("vant","vanta",".m.$.sg.$.voc."),
-array("vant","vantā",".m.$.sg.$.voc."),
-array("vant","vanta",".nt.$.pl.$.acc."),
-array("vant","vantā",".nt.$.pl.$.acc."),
-array("vant","vanta",".nt.$.pl.$.nom."),
-array("vant","vantā",".nt.$.pl.$.nom."),
-array("vant","vanta",".nt.$.pl.$.voc."),
-array("vant","vantā",".nt.$.pl.$.voc."),
-array("vant","vantā",".nt.$.sg.$.abl."),
-array("vant","vanta",".nt.$.sg.$.voc."),
-array("vant","vantā",".nt.$.sg.$.voc."),
-array("vant","vantaṃ",".m.$.sg.$.acc."),
-array("vant","vantaṃ",".nt.$.sg.$.acc."),
-array("vant","vantaṃ",".nt.$.sg.$.nom."),
-array("vant","vantaṃ",".nt.$.sg.$.nom."),
-array("vant","vantaṃ",".m.$.sg.$.acc."),
-array("vant","vantaṃ",".nt.$.sg.$.acc."),
-array("vant","vantamhā",".m.$.sg.$.abl."),
-array("vant","vantamhā",".nt.$.sg.$.abl."),
-array("vant","vantamhā",".m.$.sg.$.abl."),
-array("vant","vantamhā",".nt.$.sg.$.abl."),
-array("vant","vantamhi",".m.$.sg.$.loc."),
-array("vant","vantamhi",".nt.$.sg.$.loc."),
-array("vant","vantamhi",".m.$.sg.$.loc."),
-array("vant","vantamhi",".nt.$.sg.$.loc."),
-array("vant","vantānaṃ",".m.$.pl.$.dat."),
-array("vant","vantānaṃ",".m.$.pl.$.gen."),
-array("vant","vantānaṃ",".nt.$.pl.$.dat."),
-array("vant","vantānaṃ",".nt.$.pl.$.gen."),
-array("vant","vantānaṃ",".nt.$.pl.$.dat."),
-array("vant","vantānaṃ",".nt.$.pl.$.gen."),
-array("vant","vantani",".nt.$.pl.$.acc."),
-array("vant","vantāni",".nt.$.pl.$.acc."),
-array("vant","vantani",".nt.$.pl.$.nom."),
-array("vant","vantāni",".nt.$.pl.$.nom."),
-array("vant","vantani",".nt.$.pl.$.voc."),
-array("vant","vantāni",".nt.$.pl.$.voc."),
-array("vant","vantasmā",".m.$.sg.$.abl."),
-array("vant","vantasmā",".nt.$.sg.$.abl."),
-array("vant","vantasmā",".m.$.sg.$.abl."),
-array("vant","vantasmā",".nt.$.sg.$.abl."),
-array("vant","vantasmiṃ",".m.$.sg.$.loc."),
-array("vant","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vant","vantasmiṃ",".m.$.sg.$.loc."),
-array("vant","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vant","vantassa",".m.$.sg.$.dat."),
-array("vant","vantassa",".m.$.sg.$.gen."),
-array("vant","vantassa",".nt.$.sg.$.dat."),
-array("vant","vantassa",".nt.$.sg.$.gen."),
-array("vant","vantassa",".m.$.sg.$.dat."),
-array("vant","vantassa",".m.$.sg.$.gen."),
-array("vant","vantassa",".nt.$.sg.$.dat."),
-array("vant","vantassa",".nt.$.sg.$.gen."),
-array("vant","vante",".m.$.pl.$.acc."),
-array("vant","vante",".m.$.sg.$.loc."),
-array("vant","vante",".nt.$.pl.$.acc."),
-array("vant","vante",".nt.$.sg.$.loc."),
-array("vant","vantebhi",".m.$.pl.$.abl."),
-array("vant","vantebhi",".m.$.pl.$.inst."),
-array("vant","vantebhi",".nt.$.pl.$.abl."),
-array("vant","vantebhi",".nt.$.pl.$.inst."),
-array("vant","vantehi",".m.$.pl.$.abl."),
-array("vant","vantehi",".m.$.pl.$.inst."),
-array("vant","vantehi",".nt.$.pl.$.abl."),
-array("vant","vantehi",".nt.$.pl.$.inst."),
-array("vant","vantesu",".m.$.pl.$.loc."),
-array("vant","vantesu",".nt.$.pl.$.loc."),
-array("vant","vantesu",".nt.$.pl.$.loc."),
-array("vant","vantī",".f.$.pl.$.acc."),
-array("vant","vantī",".f.$.pl.$.nom."),
-array("vant","vantī",".f.$.pl.$.voc."),
-array("vant","vantī",".f.$.sg.$.nom."),
-array("vant","vantī",".f.$.sg.$.voc."),
-array("vant","vantībhi",".f.$.pl.$.abl."),
-array("vant","vantībhi",".f.$.pl.$.inst."),
-array("vant","vantīhi",".f.$.pl.$.abl."),
-array("vant","vantīhi",".f.$.pl.$.inst."),
-array("vant","vantiṃ",".f.$.sg.$.acc."),
-array("vant","vantīnaṃ",".f.$.pl.$.dat."),
-array("vant","vantīnaṃ",".f.$.pl.$.gen."),
-array("vant","vantīsu",".f.$.pl.$.loc."),
-array("vant","vantiyā",".f.$.sg.$.abl."),
-array("vant","vantiyā",".f.$.sg.$.dat."),
-array("vant","vantiyā",".f.$.sg.$.gen."),
-array("vant","vantiyā",".f.$.sg.$.inst."),
-array("vant","vantiyā",".f.$.sg.$.loc."),
-array("vant","vantiyaṃ",".f.$.sg.$.loc."),
-array("vant","vantiyo",".f.$.pl.$.acc."),
-array("vant","vantiyo",".f.$.pl.$.nom."),
-array("vant","vantiyo",".f.$.pl.$.voc."),
-array("vant","vanto",".m.$.pl.$.nom."),
-array("vant","vanto",".m.$.pl.$.voc."),
-array("vant","vanto",".m.$.sg.$.nom."),
-array("vant","vanto",".nt.$.pl.$.nom."),
-array("vant","vanto",".nt.$.pl.$.voc."),
-array("vant","vanto",".nt.$.sg.$.nom."),
-array("vant","vatā",".m.$.sg.$.abl."),
-array("vant","vatā",".m.$.sg.$.inst."),
-array("vant","vatā",".nt.$.sg.$.abl."),
-array("vant","vatā",".nt.$.sg.$.inst."),
-array("vant","vatā",".m.$.sg.$.abl."),
-array("vant","vatā",".m.$.sg.$.inst."),
-array("vant","vatā",".nt.$.sg.$.abl."),
-array("vant","vatā",".nt.$.sg.$.inst."),
-array("vant","vataṃ",".m.$.pl.$.dat."),
-array("vant","vataṃ",".m.$.pl.$.gen."),
-array("vant","vataṃ",".nt.$.pl.$.dat."),
-array("vant","vataṃ",".nt.$.pl.$.gen."),
-array("vant","vataṃ",".nt.$.pl.$.dat."),
-array("vant","vataṃ",".nt.$.pl.$.gen."),
-array("vant","vatena",".m.$.sg.$.inst."),
-array("vant","vatena",".nt.$.sg.$.inst."),
-array("vant","vatena",".m.$.sg.$.inst."),
-array("vant","vatena",".nt.$.sg.$.inst."),
-array("vant","vatī",".f.$.pl.$.acc."),
-array("vant","vatī",".f.$.pl.$.nom."),
-array("vant","vatī",".f.$.pl.$.voc."),
-array("vant","vatī",".f.$.sg.$.nom."),
-array("vant","vatī",".f.$.sg.$.voc."),
-array("vant","vati",".m.$.sg.$.loc."),
-array("vant","vati",".nt.$.sg.$.loc."),
-array("vant","vati",".m.$.sg.$.loc."),
-array("vant","vati",".nt.$.sg.$.loc."),
-array("vant","vatībhi",".f.$.pl.$.abl."),
-array("vant","vatībhi",".f.$.pl.$.inst."),
-array("vant","vatīhi",".f.$.pl.$.abl."),
-array("vant","vatīhi",".f.$.pl.$.inst."),
-array("vant","vatiṃ",".f.$.sg.$.acc."),
-array("vant","vatīnaṃ",".f.$.pl.$.dat."),
-array("vant","vatīnaṃ",".f.$.pl.$.gen."),
-array("vant","vatīsu",".f.$.pl.$.loc."),
-array("vant","vatiyā",".f.$.sg.$.abl."),
-array("vant","vatiyā",".f.$.sg.$.dat."),
-array("vant","vatiyā",".f.$.sg.$.gen."),
-array("vant","vatiyā",".f.$.sg.$.inst."),
-array("vant","vatiyā",".f.$.sg.$.loc."),
-array("vant","vatiyaṃ",".f.$.sg.$.loc."),
-array("vant","vatiyo",".f.$.pl.$.acc."),
-array("vant","vatiyo",".f.$.pl.$.nom."),
-array("vant","vatiyo",".f.$.pl.$.voc."),
-array("vant","vato",".m.$.sg.$.dat."),
-array("vant","vato",".m.$.sg.$.gen."),
-array("vant","vato",".nt.$.sg.$.dat."),
-array("vant","vato",".nt.$.sg.$.gen."),
-array("vant","vato",".m.$.sg.$.dat."),
-array("vant","vato",".m.$.sg.$.gen."),
-array("vant","vato",".nt.$.sg.$.dat."),
-array("vant","vato",".nt.$.sg.$.gen."),
-array("vant","ve",".m.$.pl.$.acc."),
-array("vant","vebhi",".m.$.pl.$.abl."),
-array("vant","vebhi",".m.$.pl.$.inst."),
-array("vant","vehi",".m.$.pl.$.abl."),
-array("vant","vehi",".m.$.pl.$.inst."),
-array("vant","vesu",".m.$.pl.$.loc."),
-array("mantu","mā",".m.$.pl.$.nom."),
-array("mantu","mā",".m.$.pl.$.voc."),
-array("mantu","mā",".m.$.sg.$.nom."),
-array("mantu","ma",".m.$.sg.$.voc."),
-array("mantu","mā",".m.$.sg.$.voc."),
-array("mantu","mā",".nt.$.pl.$.nom."),
-array("mantu","mā",".nt.$.pl.$.voc."),
-array("mantu","ma",".nt.$.sg.$.voc."),
-array("mantu","mā",".nt.$.sg.$.voc."),
-array("mantu","mā",".m.$.sg.$.voc."),
-array("mantu","mā",".nt.$.sg.$.voc."),
-array("mantu","maṃ",".m.$.sg.$.acc."),
-array("mantu","maṃ",".nt.$.sg.$.acc."),
-array("mantu","maṃ",".nt.$.sg.$.nom."),
-array("mantu","maṃ",".m.$.sg.$.nom."),
-array("mantu","maṃ",".m.$.sg.$.voc."),
-array("mantu","maṃ",".nt.$.sg.$.voc."),
-array("mantu","maṃ",".m.$.sg.$.voc."),
-array("mantu","maṃ",".nt.$.sg.$.voc."),
-array("mantu","mānaṃ",".m.$.pl.$.dat."),
-array("mantu","mānaṃ",".m.$.pl.$.gen."),
-array("mantu","mantā",".m.$.pl.$.nom."),
-array("mantu","mantā",".m.$.pl.$.voc."),
-array("mantu","mantā",".m.$.sg.$.abl."),
-array("mantu","manta",".m.$.sg.$.voc."),
-array("mantu","mantā",".m.$.sg.$.voc."),
-array("mantu","manta",".nt.$.pl.$.acc."),
-array("mantu","mantā",".nt.$.pl.$.acc."),
-array("mantu","manta",".nt.$.pl.$.nom."),
-array("mantu","mantā",".nt.$.pl.$.nom."),
-array("mantu","manta",".nt.$.pl.$.voc."),
-array("mantu","mantā",".nt.$.pl.$.voc."),
-array("mantu","mantā",".nt.$.sg.$.abl."),
-array("mantu","manta",".nt.$.sg.$.voc."),
-array("mantu","mantā",".nt.$.sg.$.voc."),
-array("mantu","mantaṃ",".m.$.sg.$.acc."),
-array("mantu","mantaṃ",".nt.$.sg.$.acc."),
-array("mantu","mantaṃ",".nt.$.sg.$.nom."),
-array("mantu","mantaṃ",".nt.$.sg.$.nom."),
-array("mantu","mantaṃ",".m.$.sg.$.acc."),
-array("mantu","mantaṃ",".nt.$.sg.$.acc."),
-array("mantu","mantamhā",".m.$.sg.$.abl."),
-array("mantu","mantamhā",".nt.$.sg.$.abl."),
-array("mantu","mantamhā",".m.$.sg.$.abl."),
-array("mantu","mantamhā",".nt.$.sg.$.abl."),
-array("mantu","mantamhi",".m.$.sg.$.loc."),
-array("mantu","mantamhi",".nt.$.sg.$.loc."),
-array("mantu","mantamhi",".m.$.sg.$.loc."),
-array("mantu","mantamhi",".nt.$.sg.$.loc."),
-array("mantu","mantānaṃ",".m.$.pl.$.dat."),
-array("mantu","mantānaṃ",".m.$.pl.$.gen."),
-array("mantu","mantānaṃ",".nt.$.pl.$.dat."),
-array("mantu","mantānaṃ",".nt.$.pl.$.gen."),
-array("mantu","mantānaṃ",".nt.$.pl.$.dat."),
-array("mantu","mantānaṃ",".nt.$.pl.$.gen."),
-array("mantu","mantani",".nt.$.pl.$.acc."),
-array("mantu","mantāni",".nt.$.pl.$.acc."),
-array("mantu","mantani",".nt.$.pl.$.nom."),
-array("mantu","mantāni",".nt.$.pl.$.nom."),
-array("mantu","mantani",".nt.$.pl.$.voc."),
-array("mantu","mantāni",".nt.$.pl.$.voc."),
-array("mantu","mantasmā",".m.$.sg.$.abl."),
-array("mantu","mantasmā",".nt.$.sg.$.abl."),
-array("mantu","mantasmā",".m.$.sg.$.abl."),
-array("mantu","mantasmā",".nt.$.sg.$.abl."),
-array("mantu","mantasmiṃ",".m.$.sg.$.loc."),
-array("mantu","mantasmiṃ",".nt.$.sg.$.loc."),
-array("mantu","mantasmiṃ",".m.$.sg.$.loc."),
-array("mantu","mantasmiṃ",".nt.$.sg.$.loc."),
-array("mantu","mantassa",".m.$.sg.$.dat."),
-array("mantu","mantassa",".m.$.sg.$.gen."),
-array("mantu","mantassa",".nt.$.sg.$.dat."),
-array("mantu","mantassa",".nt.$.sg.$.gen."),
-array("mantu","mantassa",".m.$.sg.$.dat."),
-array("mantu","mantassa",".m.$.sg.$.gen."),
-array("mantu","mantassa",".nt.$.sg.$.dat."),
-array("mantu","mantassa",".nt.$.sg.$.gen."),
-array("mantu","mante",".m.$.pl.$.acc."),
-array("mantu","mante",".m.$.sg.$.loc."),
-array("mantu","mante",".nt.$.pl.$.acc."),
-array("mantu","mante",".nt.$.sg.$.loc."),
-array("mantu","mantebhi",".m.$.pl.$.abl."),
-array("mantu","mantebhi",".m.$.pl.$.inst."),
-array("mantu","mantebhi",".nt.$.pl.$.abl."),
-array("mantu","mantebhi",".nt.$.pl.$.inst."),
-array("mantu","mantehi",".m.$.pl.$.abl."),
-array("mantu","mantehi",".m.$.pl.$.inst."),
-array("mantu","mantehi",".nt.$.pl.$.abl."),
-array("mantu","mantehi",".nt.$.pl.$.inst."),
-array("mantu","mantesu",".m.$.pl.$.loc."),
-array("mantu","mantesu",".nt.$.pl.$.loc."),
-array("mantu","mantesu",".nt.$.pl.$.loc."),
-array("mantu","mantī",".f.$.pl.$.acc."),
-array("mantu","mantī",".f.$.pl.$.nom."),
-array("mantu","mantī",".f.$.pl.$.voc."),
-array("mantu","mantī",".f.$.sg.$.nom."),
-array("mantu","mantī",".f.$.sg.$.voc."),
-array("mantu","mantībhi",".f.$.pl.$.abl."),
-array("mantu","mantībhi",".f.$.pl.$.inst."),
-array("mantu","mantīhi",".f.$.pl.$.abl."),
-array("mantu","mantīhi",".f.$.pl.$.inst."),
-array("mantu","mantiṃ",".f.$.sg.$.acc."),
-array("mantu","mantīnaṃ",".f.$.pl.$.dat."),
-array("mantu","mantīnaṃ",".f.$.pl.$.gen."),
-array("mantu","mantīsu",".f.$.pl.$.loc."),
-array("mantu","mantiyā",".f.$.sg.$.abl."),
-array("mantu","mantiyā",".f.$.sg.$.dat."),
-array("mantu","mantiyā",".f.$.sg.$.gen."),
-array("mantu","mantiyā",".f.$.sg.$.inst."),
-array("mantu","mantiyā",".f.$.sg.$.loc."),
-array("mantu","mantiyaṃ",".f.$.sg.$.loc."),
-array("mantu","mantiyo",".f.$.pl.$.acc."),
-array("mantu","mantiyo",".f.$.pl.$.nom."),
-array("mantu","mantiyo",".f.$.pl.$.voc."),
-array("mantu","manto",".m.$.pl.$.nom."),
-array("mantu","manto",".m.$.pl.$.voc."),
-array("mantu","manto",".m.$.sg.$.nom."),
-array("mantu","manto",".nt.$.pl.$.nom."),
-array("mantu","manto",".nt.$.pl.$.voc."),
-array("mantu","manto",".nt.$.sg.$.nom."),
-array("mantu","matā",".m.$.sg.$.abl."),
-array("mantu","matā",".m.$.sg.$.inst."),
-array("mantu","matā",".nt.$.sg.$.abl."),
-array("mantu","matā",".nt.$.sg.$.inst."),
-array("mantu","matā",".m.$.sg.$.abl."),
-array("mantu","matā",".m.$.sg.$.inst."),
-array("mantu","matā",".nt.$.sg.$.abl."),
-array("mantu","matā",".nt.$.sg.$.inst."),
-array("mantu","mataṃ",".m.$.pl.$.dat."),
-array("mantu","mataṃ",".m.$.pl.$.gen."),
-array("mantu","mataṃ",".nt.$.pl.$.dat."),
-array("mantu","mataṃ",".nt.$.pl.$.gen."),
-array("mantu","mataṃ",".nt.$.pl.$.dat."),
-array("mantu","mataṃ",".nt.$.pl.$.gen."),
-array("mantu","matena",".m.$.sg.$.inst."),
-array("mantu","matena",".nt.$.sg.$.inst."),
-array("mantu","matena",".m.$.sg.$.inst."),
-array("mantu","matena",".nt.$.sg.$.inst."),
-array("mantu","matī",".f.$.pl.$.acc."),
-array("mantu","matī",".f.$.pl.$.nom."),
-array("mantu","matī",".f.$.pl.$.voc."),
-array("mantu","matī",".f.$.sg.$.nom."),
-array("mantu","matī",".f.$.sg.$.voc."),
-array("mantu","mati",".m.$.sg.$.loc."),
-array("mantu","mati",".nt.$.sg.$.loc."),
-array("mantu","mati",".m.$.sg.$.loc."),
-array("mantu","mati",".nt.$.sg.$.loc."),
-array("mantu","matībhi",".f.$.pl.$.abl."),
-array("mantu","matībhi",".f.$.pl.$.inst."),
-array("mantu","matīhi",".f.$.pl.$.abl."),
-array("mantu","matīhi",".f.$.pl.$.inst."),
-array("mantu","matiṃ",".f.$.sg.$.acc."),
-array("mantu","matīnaṃ",".f.$.pl.$.dat."),
-array("mantu","matīnaṃ",".f.$.pl.$.gen."),
-array("mantu","matīsu",".f.$.pl.$.loc."),
-array("mantu","matiyā",".f.$.sg.$.abl."),
-array("mantu","matiyā",".f.$.sg.$.dat."),
-array("mantu","matiyā",".f.$.sg.$.gen."),
-array("mantu","matiyā",".f.$.sg.$.inst."),
-array("mantu","matiyā",".f.$.sg.$.loc."),
-array("mantu","matiyaṃ",".f.$.sg.$.loc."),
-array("mantu","matiyo",".f.$.pl.$.acc."),
-array("mantu","matiyo",".f.$.pl.$.nom."),
-array("mantu","matiyo",".f.$.pl.$.voc."),
-array("mantu","mato",".m.$.sg.$.dat."),
-array("mantu","mato",".m.$.sg.$.gen."),
-array("mantu","mato",".nt.$.sg.$.dat."),
-array("mantu","mato",".nt.$.sg.$.gen."),
-array("mantu","mato",".m.$.sg.$.dat."),
-array("mantu","mato",".m.$.sg.$.gen."),
-array("mantu","mato",".nt.$.sg.$.dat."),
-array("mantu","mato",".nt.$.sg.$.gen."),
-array("mantu","me",".m.$.pl.$.acc."),
-array("mantu","mebhi",".m.$.pl.$.abl."),
-array("mantu","mebhi",".m.$.pl.$.inst."),
-array("mantu","mehi",".m.$.pl.$.abl."),
-array("mantu","mehi",".m.$.pl.$.inst."),
-array("mantu","mesu",".m.$.pl.$.loc."),
-array("vantu","vā",".m.$.pl.$.nom."),
-array("vantu","vā",".m.$.pl.$.voc."),
-array("vantu","vā",".m.$.sg.$.nom."),
-array("vantu","va",".m.$.sg.$.voc."),
-array("vantu","vā",".m.$.sg.$.voc."),
-array("vantu","vā",".nt.$.pl.$.nom."),
-array("vantu","vā",".nt.$.pl.$.voc."),
-array("vantu","va",".nt.$.sg.$.voc."),
-array("vantu","vā",".nt.$.sg.$.voc."),
-array("vantu","vā",".m.$.sg.$.voc."),
-array("vantu","vā",".nt.$.sg.$.voc."),
-array("vantu","vaṃ",".m.$.sg.$.acc."),
-array("vantu","vaṃ",".nt.$.sg.$.acc."),
-array("vantu","vaṃ",".nt.$.sg.$.nom."),
-array("vantu","vaṃ",".m.$.sg.$.nom."),
-array("vantu","vaṃ",".m.$.sg.$.voc."),
-array("vantu","vaṃ",".nt.$.sg.$.voc."),
-array("vantu","vaṃ",".m.$.sg.$.voc."),
-array("vantu","vaṃ",".nt.$.sg.$.voc."),
-array("vantu","vānaṃ",".m.$.pl.$.dat."),
-array("vantu","vānaṃ",".m.$.pl.$.gen."),
-array("vantu","vantā",".m.$.pl.$.nom."),
-array("vantu","vantā",".m.$.pl.$.voc."),
-array("vantu","vantā",".m.$.sg.$.abl."),
-array("vantu","vanta",".m.$.sg.$.voc."),
-array("vantu","vantā",".m.$.sg.$.voc."),
-array("vantu","vanta",".nt.$.pl.$.acc."),
-array("vantu","vantā",".nt.$.pl.$.acc."),
-array("vantu","vanta",".nt.$.pl.$.nom."),
-array("vantu","vantā",".nt.$.pl.$.nom."),
-array("vantu","vanta",".nt.$.pl.$.voc."),
-array("vantu","vantā",".nt.$.pl.$.voc."),
-array("vantu","vantā",".nt.$.sg.$.abl."),
-array("vantu","vanta",".nt.$.sg.$.voc."),
-array("vantu","vantā",".nt.$.sg.$.voc."),
-array("vantu","vantaṃ",".m.$.sg.$.acc."),
-array("vantu","vantaṃ",".nt.$.sg.$.acc."),
-array("vantu","vantaṃ",".nt.$.sg.$.nom."),
-array("vantu","vantaṃ",".nt.$.sg.$.nom."),
-array("vantu","vantaṃ",".m.$.sg.$.acc."),
-array("vantu","vantaṃ",".nt.$.sg.$.acc."),
-array("vantu","vantamhā",".m.$.sg.$.abl."),
-array("vantu","vantamhā",".nt.$.sg.$.abl."),
-array("vantu","vantamhā",".m.$.sg.$.abl."),
-array("vantu","vantamhā",".nt.$.sg.$.abl."),
-array("vantu","vantamhi",".m.$.sg.$.loc."),
-array("vantu","vantamhi",".nt.$.sg.$.loc."),
-array("vantu","vantamhi",".m.$.sg.$.loc."),
-array("vantu","vantamhi",".nt.$.sg.$.loc."),
-array("vantu","vantānaṃ",".m.$.pl.$.dat."),
-array("vantu","vantānaṃ",".m.$.pl.$.gen."),
-array("vantu","vantānaṃ",".nt.$.pl.$.dat."),
-array("vantu","vantānaṃ",".nt.$.pl.$.gen."),
-array("vantu","vantānaṃ",".nt.$.pl.$.dat."),
-array("vantu","vantānaṃ",".nt.$.pl.$.gen."),
-array("vantu","vantani",".nt.$.pl.$.acc."),
-array("vantu","vantāni",".nt.$.pl.$.acc."),
-array("vantu","vantani",".nt.$.pl.$.nom."),
-array("vantu","vantāni",".nt.$.pl.$.nom."),
-array("vantu","vantani",".nt.$.pl.$.voc."),
-array("vantu","vantāni",".nt.$.pl.$.voc."),
-array("vantu","vantasmā",".m.$.sg.$.abl."),
-array("vantu","vantasmā",".nt.$.sg.$.abl."),
-array("vantu","vantasmā",".m.$.sg.$.abl."),
-array("vantu","vantasmā",".nt.$.sg.$.abl."),
-array("vantu","vantasmiṃ",".m.$.sg.$.loc."),
-array("vantu","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vantu","vantasmiṃ",".m.$.sg.$.loc."),
-array("vantu","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vantu","vantassa",".m.$.sg.$.dat."),
-array("vantu","vantassa",".m.$.sg.$.gen."),
-array("vantu","vantassa",".nt.$.sg.$.dat."),
-array("vantu","vantassa",".nt.$.sg.$.gen."),
-array("vantu","vantassa",".m.$.sg.$.dat."),
-array("vantu","vantassa",".m.$.sg.$.gen."),
-array("vantu","vantassa",".nt.$.sg.$.dat."),
-array("vantu","vantassa",".nt.$.sg.$.gen."),
-array("vantu","vante",".m.$.pl.$.acc."),
-array("vantu","vante",".m.$.sg.$.loc."),
-array("vantu","vante",".nt.$.pl.$.acc."),
-array("vantu","vante",".nt.$.sg.$.loc."),
-array("vantu","vantebhi",".m.$.pl.$.abl."),
-array("vantu","vantebhi",".m.$.pl.$.inst."),
-array("vantu","vantebhi",".nt.$.pl.$.abl."),
-array("vantu","vantebhi",".nt.$.pl.$.inst."),
-array("vantu","vantehi",".m.$.pl.$.abl."),
-array("vantu","vantehi",".m.$.pl.$.inst."),
-array("vantu","vantehi",".nt.$.pl.$.abl."),
-array("vantu","vantehi",".nt.$.pl.$.inst."),
-array("vantu","vantesu",".m.$.pl.$.loc."),
-array("vantu","vantesu",".nt.$.pl.$.loc."),
-array("vantu","vantesu",".nt.$.pl.$.loc."),
-array("vantu","vantī",".f.$.pl.$.acc."),
-array("vantu","vantī",".f.$.pl.$.nom."),
-array("vantu","vantī",".f.$.pl.$.voc."),
-array("vantu","vantī",".f.$.sg.$.nom."),
-array("vantu","vantī",".f.$.sg.$.voc."),
-array("vantu","vantībhi",".f.$.pl.$.abl."),
-array("vantu","vantībhi",".f.$.pl.$.inst."),
-array("vantu","vantīhi",".f.$.pl.$.abl."),
-array("vantu","vantīhi",".f.$.pl.$.inst."),
-array("vantu","vantiṃ",".f.$.sg.$.acc."),
-array("vantu","vantīnaṃ",".f.$.pl.$.dat."),
-array("vantu","vantīnaṃ",".f.$.pl.$.gen."),
-array("vantu","vantīsu",".f.$.pl.$.loc."),
-array("vantu","vantiyā",".f.$.sg.$.abl."),
-array("vantu","vantiyā",".f.$.sg.$.dat."),
-array("vantu","vantiyā",".f.$.sg.$.gen."),
-array("vantu","vantiyā",".f.$.sg.$.inst."),
-array("vantu","vantiyā",".f.$.sg.$.loc."),
-array("vantu","vantiyaṃ",".f.$.sg.$.loc."),
-array("vantu","vantiyo",".f.$.pl.$.acc."),
-array("vantu","vantiyo",".f.$.pl.$.nom."),
-array("vantu","vantiyo",".f.$.pl.$.voc."),
-array("vantu","vanto",".m.$.pl.$.nom."),
-array("vantu","vanto",".m.$.pl.$.voc."),
-array("vantu","vanto",".m.$.sg.$.nom."),
-array("vantu","vanto",".nt.$.pl.$.nom."),
-array("vantu","vanto",".nt.$.pl.$.voc."),
-array("vantu","vanto",".nt.$.sg.$.nom."),
-array("vantu","vatā",".m.$.sg.$.abl."),
-array("vantu","vatā",".m.$.sg.$.inst."),
-array("vantu","vatā",".nt.$.sg.$.abl."),
-array("vantu","vatā",".nt.$.sg.$.inst."),
-array("vantu","vatā",".m.$.sg.$.abl."),
-array("vantu","vatā",".m.$.sg.$.inst."),
-array("vantu","vatā",".nt.$.sg.$.abl."),
-array("vantu","vatā",".nt.$.sg.$.inst."),
-array("vantu","vataṃ",".m.$.pl.$.dat."),
-array("vantu","vataṃ",".m.$.pl.$.gen."),
-array("vantu","vataṃ",".nt.$.pl.$.dat."),
-array("vantu","vataṃ",".nt.$.pl.$.gen."),
-array("vantu","vataṃ",".nt.$.pl.$.dat."),
-array("vantu","vataṃ",".nt.$.pl.$.gen."),
-array("vantu","vatena",".m.$.sg.$.inst."),
-array("vantu","vatena",".nt.$.sg.$.inst."),
-array("vantu","vatena",".m.$.sg.$.inst."),
-array("vantu","vatena",".nt.$.sg.$.inst."),
-array("vantu","vatī",".f.$.pl.$.acc."),
-array("vantu","vatī",".f.$.pl.$.nom."),
-array("vantu","vatī",".f.$.pl.$.voc."),
-array("vantu","vatī",".f.$.sg.$.nom."),
-array("vantu","vatī",".f.$.sg.$.voc."),
-array("vantu","vati",".m.$.sg.$.loc."),
-array("vantu","vati",".nt.$.sg.$.loc."),
-array("vantu","vati",".m.$.sg.$.loc."),
-array("vantu","vati",".nt.$.sg.$.loc."),
-array("vantu","vatībhi",".f.$.pl.$.abl."),
-array("vantu","vatībhi",".f.$.pl.$.inst."),
-array("vantu","vatīhi",".f.$.pl.$.abl."),
-array("vantu","vatīhi",".f.$.pl.$.inst."),
-array("vantu","vatiṃ",".f.$.sg.$.acc."),
-array("vantu","vatīnaṃ",".f.$.pl.$.dat."),
-array("vantu","vatīnaṃ",".f.$.pl.$.gen."),
-array("vantu","vatīsu",".f.$.pl.$.loc."),
-array("vantu","vatiyā",".f.$.sg.$.abl."),
-array("vantu","vatiyā",".f.$.sg.$.dat."),
-array("vantu","vatiyā",".f.$.sg.$.gen."),
-array("vantu","vatiyā",".f.$.sg.$.inst."),
-array("vantu","vatiyā",".f.$.sg.$.loc."),
-array("vantu","vatiyaṃ",".f.$.sg.$.loc."),
-array("vantu","vatiyo",".f.$.pl.$.acc."),
-array("vantu","vatiyo",".f.$.pl.$.nom."),
-array("vantu","vatiyo",".f.$.pl.$.voc."),
-array("vantu","vato",".m.$.sg.$.dat."),
-array("vantu","vato",".m.$.sg.$.gen."),
-array("vantu","vato",".nt.$.sg.$.dat."),
-array("vantu","vato",".nt.$.sg.$.gen."),
-array("vantu","vato",".m.$.sg.$.dat."),
-array("vantu","vato",".m.$.sg.$.gen."),
-array("vantu","vato",".nt.$.sg.$.dat."),
-array("vantu","vato",".nt.$.sg.$.gen."),
-array("vantu","ve",".m.$.pl.$.acc."),
-array("vantu","vebhi",".m.$.pl.$.abl."),
-array("vantu","vebhi",".m.$.pl.$.inst."),
-array("vantu","vehi",".m.$.pl.$.abl."),
-array("vantu","vehi",".m.$.pl.$.inst."),
-array("vantu","vesu",".m.$.pl.$.loc."),
-array("mat","mā",".m.$.pl.$.nom."),
-array("mat","mā",".m.$.pl.$.voc."),
-array("mat","mā",".m.$.sg.$.nom."),
-array("mat","ma",".m.$.sg.$.voc."),
-array("mat","mā",".m.$.sg.$.voc."),
-array("mat","mā",".nt.$.pl.$.nom."),
-array("mat","mā",".nt.$.pl.$.voc."),
-array("mat","ma",".nt.$.sg.$.voc."),
-array("mat","mā",".nt.$.sg.$.voc."),
-array("mat","mā",".m.$.sg.$.voc."),
-array("mat","mā",".nt.$.sg.$.voc."),
-array("mat","maṃ",".m.$.sg.$.acc."),
-array("mat","maṃ",".nt.$.sg.$.acc."),
-array("mat","maṃ",".nt.$.sg.$.nom."),
-array("mat","maṃ",".m.$.sg.$.nom."),
-array("mat","maṃ",".m.$.sg.$.voc."),
-array("mat","maṃ",".nt.$.sg.$.voc."),
-array("mat","maṃ",".m.$.sg.$.voc."),
-array("mat","maṃ",".nt.$.sg.$.voc."),
-array("mat","mānaṃ",".m.$.pl.$.dat."),
-array("mat","mānaṃ",".m.$.pl.$.gen."),
-array("mat","mantā",".m.$.pl.$.nom."),
-array("mat","mantā",".m.$.pl.$.voc."),
-array("mat","mantā",".m.$.sg.$.abl."),
-array("mat","manta",".m.$.sg.$.voc."),
-array("mat","mantā",".m.$.sg.$.voc."),
-array("mat","manta",".nt.$.pl.$.acc."),
-array("mat","mantā",".nt.$.pl.$.acc."),
-array("mat","manta",".nt.$.pl.$.nom."),
-array("mat","mantā",".nt.$.pl.$.nom."),
-array("mat","manta",".nt.$.pl.$.voc."),
-array("mat","mantā",".nt.$.pl.$.voc."),
-array("mat","mantā",".nt.$.sg.$.abl."),
-array("mat","manta",".nt.$.sg.$.voc."),
-array("mat","mantā",".nt.$.sg.$.voc."),
-array("mat","mantaṃ",".m.$.sg.$.acc."),
-array("mat","mantaṃ",".nt.$.sg.$.acc."),
-array("mat","mantaṃ",".nt.$.sg.$.nom."),
-array("mat","mantaṃ",".nt.$.sg.$.nom."),
-array("mat","mantaṃ",".m.$.sg.$.acc."),
-array("mat","mantaṃ",".nt.$.sg.$.acc."),
-array("mat","mantamhā",".m.$.sg.$.abl."),
-array("mat","mantamhā",".nt.$.sg.$.abl."),
-array("mat","mantamhā",".m.$.sg.$.abl."),
-array("mat","mantamhā",".nt.$.sg.$.abl."),
-array("mat","mantamhi",".m.$.sg.$.loc."),
-array("mat","mantamhi",".nt.$.sg.$.loc."),
-array("mat","mantamhi",".m.$.sg.$.loc."),
-array("mat","mantamhi",".nt.$.sg.$.loc."),
-array("mat","mantānaṃ",".m.$.pl.$.dat."),
-array("mat","mantānaṃ",".m.$.pl.$.gen."),
-array("mat","mantānaṃ",".nt.$.pl.$.dat."),
-array("mat","mantānaṃ",".nt.$.pl.$.gen."),
-array("mat","mantānaṃ",".nt.$.pl.$.dat."),
-array("mat","mantānaṃ",".nt.$.pl.$.gen."),
-array("mat","mantani",".nt.$.pl.$.acc."),
-array("mat","mantāni",".nt.$.pl.$.acc."),
-array("mat","mantani",".nt.$.pl.$.nom."),
-array("mat","mantāni",".nt.$.pl.$.nom."),
-array("mat","mantani",".nt.$.pl.$.voc."),
-array("mat","mantāni",".nt.$.pl.$.voc."),
-array("mat","mantasmā",".m.$.sg.$.abl."),
-array("mat","mantasmā",".nt.$.sg.$.abl."),
-array("mat","mantasmā",".m.$.sg.$.abl."),
-array("mat","mantasmā",".nt.$.sg.$.abl."),
-array("mat","mantasmiṃ",".m.$.sg.$.loc."),
-array("mat","mantasmiṃ",".nt.$.sg.$.loc."),
-array("mat","mantasmiṃ",".m.$.sg.$.loc."),
-array("mat","mantasmiṃ",".nt.$.sg.$.loc."),
-array("mat","mantassa",".m.$.sg.$.dat."),
-array("mat","mantassa",".m.$.sg.$.gen."),
-array("mat","mantassa",".nt.$.sg.$.dat."),
-array("mat","mantassa",".nt.$.sg.$.gen."),
-array("mat","mantassa",".m.$.sg.$.dat."),
-array("mat","mantassa",".m.$.sg.$.gen."),
-array("mat","mantassa",".nt.$.sg.$.dat."),
-array("mat","mantassa",".nt.$.sg.$.gen."),
-array("mat","mante",".m.$.pl.$.acc."),
-array("mat","mante",".m.$.sg.$.loc."),
-array("mat","mante",".nt.$.pl.$.acc."),
-array("mat","mante",".nt.$.sg.$.loc."),
-array("mat","mantebhi",".m.$.pl.$.abl."),
-array("mat","mantebhi",".m.$.pl.$.inst."),
-array("mat","mantebhi",".nt.$.pl.$.abl."),
-array("mat","mantebhi",".nt.$.pl.$.inst."),
-array("mat","mantehi",".m.$.pl.$.abl."),
-array("mat","mantehi",".m.$.pl.$.inst."),
-array("mat","mantehi",".nt.$.pl.$.abl."),
-array("mat","mantehi",".nt.$.pl.$.inst."),
-array("mat","mantesu",".m.$.pl.$.loc."),
-array("mat","mantesu",".nt.$.pl.$.loc."),
-array("mat","mantesu",".nt.$.pl.$.loc."),
-array("mat","mantī",".f.$.pl.$.acc."),
-array("mat","mantī",".f.$.pl.$.nom."),
-array("mat","mantī",".f.$.pl.$.voc."),
-array("mat","mantī",".f.$.sg.$.nom."),
-array("mat","mantī",".f.$.sg.$.voc."),
-array("mat","mantībhi",".f.$.pl.$.abl."),
-array("mat","mantībhi",".f.$.pl.$.inst."),
-array("mat","mantīhi",".f.$.pl.$.abl."),
-array("mat","mantīhi",".f.$.pl.$.inst."),
-array("mat","mantiṃ",".f.$.sg.$.acc."),
-array("mat","mantīnaṃ",".f.$.pl.$.dat."),
-array("mat","mantīnaṃ",".f.$.pl.$.gen."),
-array("mat","mantīsu",".f.$.pl.$.loc."),
-array("mat","mantiyā",".f.$.sg.$.abl."),
-array("mat","mantiyā",".f.$.sg.$.dat."),
-array("mat","mantiyā",".f.$.sg.$.gen."),
-array("mat","mantiyā",".f.$.sg.$.inst."),
-array("mat","mantiyā",".f.$.sg.$.loc."),
-array("mat","mantiyaṃ",".f.$.sg.$.loc."),
-array("mat","mantiyo",".f.$.pl.$.acc."),
-array("mat","mantiyo",".f.$.pl.$.nom."),
-array("mat","mantiyo",".f.$.pl.$.voc."),
-array("mat","manto",".m.$.pl.$.nom."),
-array("mat","manto",".m.$.pl.$.voc."),
-array("mat","manto",".m.$.sg.$.nom."),
-array("mat","manto",".nt.$.pl.$.nom."),
-array("mat","manto",".nt.$.pl.$.voc."),
-array("mat","manto",".nt.$.sg.$.nom."),
-array("mat","matā",".m.$.sg.$.abl."),
-array("mat","matā",".m.$.sg.$.inst."),
-array("mat","matā",".nt.$.sg.$.abl."),
-array("mat","matā",".nt.$.sg.$.inst."),
-array("mat","matā",".m.$.sg.$.abl."),
-array("mat","matā",".m.$.sg.$.inst."),
-array("mat","matā",".nt.$.sg.$.abl."),
-array("mat","matā",".nt.$.sg.$.inst."),
-array("mat","mataṃ",".m.$.pl.$.dat."),
-array("mat","mataṃ",".m.$.pl.$.gen."),
-array("mat","mataṃ",".nt.$.pl.$.dat."),
-array("mat","mataṃ",".nt.$.pl.$.gen."),
-array("mat","mataṃ",".nt.$.pl.$.dat."),
-array("mat","mataṃ",".nt.$.pl.$.gen."),
-array("mat","matena",".m.$.sg.$.inst."),
-array("mat","matena",".nt.$.sg.$.inst."),
-array("mat","matena",".m.$.sg.$.inst."),
-array("mat","matena",".nt.$.sg.$.inst."),
-array("mat","matī",".f.$.pl.$.acc."),
-array("mat","matī",".f.$.pl.$.nom."),
-array("mat","matī",".f.$.pl.$.voc."),
-array("mat","matī",".f.$.sg.$.nom."),
-array("mat","matī",".f.$.sg.$.voc."),
-array("mat","mati",".m.$.sg.$.loc."),
-array("mat","mati",".nt.$.sg.$.loc."),
-array("mat","mati",".m.$.sg.$.loc."),
-array("mat","mati",".nt.$.sg.$.loc."),
-array("mat","matībhi",".f.$.pl.$.abl."),
-array("mat","matībhi",".f.$.pl.$.inst."),
-array("mat","matīhi",".f.$.pl.$.abl."),
-array("mat","matīhi",".f.$.pl.$.inst."),
-array("mat","matiṃ",".f.$.sg.$.acc."),
-array("mat","matīnaṃ",".f.$.pl.$.dat."),
-array("mat","matīnaṃ",".f.$.pl.$.gen."),
-array("mat","matīsu",".f.$.pl.$.loc."),
-array("mat","matiyā",".f.$.sg.$.abl."),
-array("mat","matiyā",".f.$.sg.$.dat."),
-array("mat","matiyā",".f.$.sg.$.gen."),
-array("mat","matiyā",".f.$.sg.$.inst."),
-array("mat","matiyā",".f.$.sg.$.loc."),
-array("mat","matiyaṃ",".f.$.sg.$.loc."),
-array("mat","matiyo",".f.$.pl.$.acc."),
-array("mat","matiyo",".f.$.pl.$.nom."),
-array("mat","matiyo",".f.$.pl.$.voc."),
-array("mat","mato",".m.$.sg.$.dat."),
-array("mat","mato",".m.$.sg.$.gen."),
-array("mat","mato",".nt.$.sg.$.dat."),
-array("mat","mato",".nt.$.sg.$.gen."),
-array("mat","mato",".m.$.sg.$.dat."),
-array("mat","mato",".m.$.sg.$.gen."),
-array("mat","mato",".nt.$.sg.$.dat."),
-array("mat","mato",".nt.$.sg.$.gen."),
-array("mat","me",".m.$.pl.$.acc."),
-array("mat","mebhi",".m.$.pl.$.abl."),
-array("mat","mebhi",".m.$.pl.$.inst."),
-array("mat","mehi",".m.$.pl.$.abl."),
-array("mat","mehi",".m.$.pl.$.inst."),
-array("mat","mesu",".m.$.pl.$.loc."),
-array("vat","vā",".m.$.pl.$.nom."),
-array("vat","vā",".m.$.pl.$.voc."),
-array("vat","vā",".m.$.sg.$.nom."),
-array("vat","va",".m.$.sg.$.voc."),
-array("vat","vā",".m.$.sg.$.voc."),
-array("vat","vā",".nt.$.pl.$.nom."),
-array("vat","vā",".nt.$.pl.$.voc."),
-array("vat","va",".nt.$.sg.$.voc."),
-array("vat","vā",".nt.$.sg.$.voc."),
-array("vat","vā",".m.$.sg.$.voc."),
-array("vat","vā",".nt.$.sg.$.voc."),
-array("vat","vaṃ",".m.$.sg.$.acc."),
-array("vat","vaṃ",".nt.$.sg.$.acc."),
-array("vat","vaṃ",".nt.$.sg.$.nom."),
-array("vat","vaṃ",".m.$.sg.$.nom."),
-array("vat","vaṃ",".m.$.sg.$.voc."),
-array("vat","vaṃ",".nt.$.sg.$.voc."),
-array("vat","vaṃ",".m.$.sg.$.voc."),
-array("vat","vaṃ",".nt.$.sg.$.voc."),
-array("vat","vānaṃ",".m.$.pl.$.dat."),
-array("vat","vānaṃ",".m.$.pl.$.gen."),
-array("vat","vantā",".m.$.pl.$.nom."),
-array("vat","vantā",".m.$.pl.$.voc."),
-array("vat","vantā",".m.$.sg.$.abl."),
-array("vat","vanta",".m.$.sg.$.voc."),
-array("vat","vantā",".m.$.sg.$.voc."),
-array("vat","vanta",".nt.$.pl.$.acc."),
-array("vat","vantā",".nt.$.pl.$.acc."),
-array("vat","vanta",".nt.$.pl.$.nom."),
-array("vat","vantā",".nt.$.pl.$.nom."),
-array("vat","vanta",".nt.$.pl.$.voc."),
-array("vat","vantā",".nt.$.pl.$.voc."),
-array("vat","vantā",".nt.$.sg.$.abl."),
-array("vat","vanta",".nt.$.sg.$.voc."),
-array("vat","vantā",".nt.$.sg.$.voc."),
-array("vat","vantaṃ",".m.$.sg.$.acc."),
-array("vat","vantaṃ",".nt.$.sg.$.acc."),
-array("vat","vantaṃ",".nt.$.sg.$.nom."),
-array("vat","vantaṃ",".nt.$.sg.$.nom."),
-array("vat","vantaṃ",".m.$.sg.$.acc."),
-array("vat","vantaṃ",".nt.$.sg.$.acc."),
-array("vat","vantamhā",".m.$.sg.$.abl."),
-array("vat","vantamhā",".nt.$.sg.$.abl."),
-array("vat","vantamhā",".m.$.sg.$.abl."),
-array("vat","vantamhā",".nt.$.sg.$.abl."),
-array("vat","vantamhi",".m.$.sg.$.loc."),
-array("vat","vantamhi",".nt.$.sg.$.loc."),
-array("vat","vantamhi",".m.$.sg.$.loc."),
-array("vat","vantamhi",".nt.$.sg.$.loc."),
-array("vat","vantānaṃ",".m.$.pl.$.dat."),
-array("vat","vantānaṃ",".m.$.pl.$.gen."),
-array("vat","vantānaṃ",".nt.$.pl.$.dat."),
-array("vat","vantānaṃ",".nt.$.pl.$.gen."),
-array("vat","vantānaṃ",".nt.$.pl.$.dat."),
-array("vat","vantānaṃ",".nt.$.pl.$.gen."),
-array("vat","vantani",".nt.$.pl.$.acc."),
-array("vat","vantāni",".nt.$.pl.$.acc."),
-array("vat","vantani",".nt.$.pl.$.nom."),
-array("vat","vantāni",".nt.$.pl.$.nom."),
-array("vat","vantani",".nt.$.pl.$.voc."),
-array("vat","vantāni",".nt.$.pl.$.voc."),
-array("vat","vantasmā",".m.$.sg.$.abl."),
-array("vat","vantasmā",".nt.$.sg.$.abl."),
-array("vat","vantasmā",".m.$.sg.$.abl."),
-array("vat","vantasmā",".nt.$.sg.$.abl."),
-array("vat","vantasmiṃ",".m.$.sg.$.loc."),
-array("vat","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vat","vantasmiṃ",".m.$.sg.$.loc."),
-array("vat","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vat","vantassa",".m.$.sg.$.dat."),
-array("vat","vantassa",".m.$.sg.$.gen."),
-array("vat","vantassa",".nt.$.sg.$.dat."),
-array("vat","vantassa",".nt.$.sg.$.gen."),
-array("vat","vantassa",".m.$.sg.$.dat."),
-array("vat","vantassa",".m.$.sg.$.gen."),
-array("vat","vantassa",".nt.$.sg.$.dat."),
-array("vat","vantassa",".nt.$.sg.$.gen."),
-array("vat","vante",".m.$.pl.$.acc."),
-array("vat","vante",".m.$.sg.$.loc."),
-array("vat","vante",".nt.$.pl.$.acc."),
-array("vat","vante",".nt.$.sg.$.loc."),
-array("vat","vantebhi",".m.$.pl.$.abl."),
-array("vat","vantebhi",".m.$.pl.$.inst."),
-array("vat","vantebhi",".nt.$.pl.$.abl."),
-array("vat","vantebhi",".nt.$.pl.$.inst."),
-array("vat","vantehi",".m.$.pl.$.abl."),
-array("vat","vantehi",".m.$.pl.$.inst."),
-array("vat","vantehi",".nt.$.pl.$.abl."),
-array("vat","vantehi",".nt.$.pl.$.inst."),
-array("vat","vantesu",".m.$.pl.$.loc."),
-array("vat","vantesu",".nt.$.pl.$.loc."),
-array("vat","vantesu",".nt.$.pl.$.loc."),
-array("vat","vantī",".f.$.pl.$.acc."),
-array("vat","vantī",".f.$.pl.$.nom."),
-array("vat","vantī",".f.$.pl.$.voc."),
-array("vat","vantī",".f.$.sg.$.nom."),
-array("vat","vantī",".f.$.sg.$.voc."),
-array("vat","vantībhi",".f.$.pl.$.abl."),
-array("vat","vantībhi",".f.$.pl.$.inst."),
-array("vat","vantīhi",".f.$.pl.$.abl."),
-array("vat","vantīhi",".f.$.pl.$.inst."),
-array("vat","vantiṃ",".f.$.sg.$.acc."),
-array("vat","vantīnaṃ",".f.$.pl.$.dat."),
-array("vat","vantīnaṃ",".f.$.pl.$.gen."),
-array("vat","vantīsu",".f.$.pl.$.loc."),
-array("vat","vantiyā",".f.$.sg.$.abl."),
-array("vat","vantiyā",".f.$.sg.$.dat."),
-array("vat","vantiyā",".f.$.sg.$.gen."),
-array("vat","vantiyā",".f.$.sg.$.inst."),
-array("vat","vantiyā",".f.$.sg.$.loc."),
-array("vat","vantiyaṃ",".f.$.sg.$.loc."),
-array("vat","vantiyo",".f.$.pl.$.acc."),
-array("vat","vantiyo",".f.$.pl.$.nom."),
-array("vat","vantiyo",".f.$.pl.$.voc."),
-array("vat","vanto",".m.$.pl.$.nom."),
-array("vat","vanto",".m.$.pl.$.voc."),
-array("vat","vanto",".m.$.sg.$.nom."),
-array("vat","vanto",".nt.$.pl.$.nom."),
-array("vat","vanto",".nt.$.pl.$.voc."),
-array("vat","vanto",".nt.$.sg.$.nom."),
-array("vat","vatā",".m.$.sg.$.abl."),
-array("vat","vatā",".m.$.sg.$.inst."),
-array("vat","vatā",".nt.$.sg.$.abl."),
-array("vat","vatā",".nt.$.sg.$.inst."),
-array("vat","vatā",".m.$.sg.$.abl."),
-array("vat","vatā",".m.$.sg.$.inst."),
-array("vat","vatā",".nt.$.sg.$.abl."),
-array("vat","vatā",".nt.$.sg.$.inst."),
-array("vat","vataṃ",".m.$.pl.$.dat."),
-array("vat","vataṃ",".m.$.pl.$.gen."),
-array("vat","vataṃ",".nt.$.pl.$.dat."),
-array("vat","vataṃ",".nt.$.pl.$.gen."),
-array("vat","vataṃ",".nt.$.pl.$.dat."),
-array("vat","vataṃ",".nt.$.pl.$.gen."),
-array("vat","vatena",".m.$.sg.$.inst."),
-array("vat","vatena",".nt.$.sg.$.inst."),
-array("vat","vatena",".m.$.sg.$.inst."),
-array("vat","vatena",".nt.$.sg.$.inst."),
-array("vat","vatī",".f.$.pl.$.acc."),
-array("vat","vatī",".f.$.pl.$.nom."),
-array("vat","vatī",".f.$.pl.$.voc."),
-array("vat","vatī",".f.$.sg.$.nom."),
-array("vat","vatī",".f.$.sg.$.voc."),
-array("vat","vati",".m.$.sg.$.loc."),
-array("vat","vati",".nt.$.sg.$.loc."),
-array("vat","vati",".m.$.sg.$.loc."),
-array("vat","vati",".nt.$.sg.$.loc."),
-array("vat","vatībhi",".f.$.pl.$.abl."),
-array("vat","vatībhi",".f.$.pl.$.inst."),
-array("vat","vatīhi",".f.$.pl.$.abl."),
-array("vat","vatīhi",".f.$.pl.$.inst."),
-array("vat","vatiṃ",".f.$.sg.$.acc."),
-array("vat","vatīnaṃ",".f.$.pl.$.dat."),
-array("vat","vatīnaṃ",".f.$.pl.$.gen."),
-array("vat","vatīsu",".f.$.pl.$.loc."),
-array("vat","vatiyā",".f.$.sg.$.abl."),
-array("vat","vatiyā",".f.$.sg.$.dat."),
-array("vat","vatiyā",".f.$.sg.$.gen."),
-array("vat","vatiyā",".f.$.sg.$.inst."),
-array("vat","vatiyā",".f.$.sg.$.loc."),
-array("vat","vatiyaṃ",".f.$.sg.$.loc."),
-array("vat","vatiyo",".f.$.pl.$.acc."),
-array("vat","vatiyo",".f.$.pl.$.nom."),
-array("vat","vatiyo",".f.$.pl.$.voc."),
-array("vat","vato",".m.$.sg.$.dat."),
-array("vat","vato",".m.$.sg.$.gen."),
-array("vat","vato",".nt.$.sg.$.dat."),
-array("vat","vato",".nt.$.sg.$.gen."),
-array("vat","vato",".m.$.sg.$.dat."),
-array("vat","vato",".m.$.sg.$.gen."),
-array("vat","vato",".nt.$.sg.$.dat."),
-array("vat","vato",".nt.$.sg.$.gen."),
-array("vat","ve",".m.$.pl.$.acc."),
-array("vat","vebhi",".m.$.pl.$.abl."),
-array("vat","vebhi",".m.$.pl.$.inst."),
-array("vat","vehi",".m.$.pl.$.abl."),
-array("vat","vehi",".m.$.pl.$.inst."),
-array("vat","vesu",".m.$.pl.$.loc."),
-array("manta","mā",".m.$.pl.$.nom."),
-array("manta","mā",".m.$.pl.$.voc."),
-array("manta","mā",".m.$.sg.$.nom."),
-array("manta","ma",".m.$.sg.$.voc."),
-array("manta","mā",".m.$.sg.$.voc."),
-array("manta","mā",".nt.$.pl.$.nom."),
-array("manta","mā",".nt.$.pl.$.voc."),
-array("manta","ma",".nt.$.sg.$.voc."),
-array("manta","mā",".nt.$.sg.$.voc."),
-array("manta","mā",".m.$.sg.$.voc."),
-array("manta","mā",".nt.$.sg.$.voc."),
-array("manta","maṃ",".m.$.sg.$.acc."),
-array("manta","maṃ",".nt.$.sg.$.acc."),
-array("manta","maṃ",".nt.$.sg.$.nom."),
-array("manta","maṃ",".m.$.sg.$.nom."),
-array("manta","maṃ",".m.$.sg.$.voc."),
-array("manta","maṃ",".nt.$.sg.$.voc."),
-array("manta","maṃ",".m.$.sg.$.voc."),
-array("manta","maṃ",".nt.$.sg.$.voc."),
-array("manta","mānaṃ",".m.$.pl.$.dat."),
-array("manta","mānaṃ",".m.$.pl.$.gen."),
-array("manta","mantā",".m.$.pl.$.nom."),
-array("manta","mantā",".m.$.pl.$.voc."),
-array("manta","mantā",".m.$.sg.$.abl."),
-array("manta","manta",".m.$.sg.$.voc."),
-array("manta","mantā",".m.$.sg.$.voc."),
-array("manta","manta",".nt.$.pl.$.acc."),
-array("manta","mantā",".nt.$.pl.$.acc."),
-array("manta","manta",".nt.$.pl.$.nom."),
-array("manta","mantā",".nt.$.pl.$.nom."),
-array("manta","manta",".nt.$.pl.$.voc."),
-array("manta","mantā",".nt.$.pl.$.voc."),
-array("manta","mantā",".nt.$.sg.$.abl."),
-array("manta","manta",".nt.$.sg.$.voc."),
-array("manta","mantā",".nt.$.sg.$.voc."),
-array("manta","mantaṃ",".m.$.sg.$.acc."),
-array("manta","mantaṃ",".nt.$.sg.$.acc."),
-array("manta","mantaṃ",".nt.$.sg.$.nom."),
-array("manta","mantaṃ",".nt.$.sg.$.nom."),
-array("manta","mantaṃ",".m.$.sg.$.acc."),
-array("manta","mantaṃ",".nt.$.sg.$.acc."),
-array("manta","mantamhā",".m.$.sg.$.abl."),
-array("manta","mantamhā",".nt.$.sg.$.abl."),
-array("manta","mantamhā",".m.$.sg.$.abl."),
-array("manta","mantamhā",".nt.$.sg.$.abl."),
-array("manta","mantamhi",".m.$.sg.$.loc."),
-array("manta","mantamhi",".nt.$.sg.$.loc."),
-array("manta","mantamhi",".m.$.sg.$.loc."),
-array("manta","mantamhi",".nt.$.sg.$.loc."),
-array("manta","mantānaṃ",".m.$.pl.$.dat."),
-array("manta","mantānaṃ",".m.$.pl.$.gen."),
-array("manta","mantānaṃ",".nt.$.pl.$.dat."),
-array("manta","mantānaṃ",".nt.$.pl.$.gen."),
-array("manta","mantānaṃ",".nt.$.pl.$.dat."),
-array("manta","mantānaṃ",".nt.$.pl.$.gen."),
-array("manta","mantani",".nt.$.pl.$.acc."),
-array("manta","mantāni",".nt.$.pl.$.acc."),
-array("manta","mantani",".nt.$.pl.$.nom."),
-array("manta","mantāni",".nt.$.pl.$.nom."),
-array("manta","mantani",".nt.$.pl.$.voc."),
-array("manta","mantāni",".nt.$.pl.$.voc."),
-array("manta","mantasmā",".m.$.sg.$.abl."),
-array("manta","mantasmā",".nt.$.sg.$.abl."),
-array("manta","mantasmā",".m.$.sg.$.abl."),
-array("manta","mantasmā",".nt.$.sg.$.abl."),
-array("manta","mantasmiṃ",".m.$.sg.$.loc."),
-array("manta","mantasmiṃ",".nt.$.sg.$.loc."),
-array("manta","mantasmiṃ",".m.$.sg.$.loc."),
-array("manta","mantasmiṃ",".nt.$.sg.$.loc."),
-array("manta","mantassa",".m.$.sg.$.dat."),
-array("manta","mantassa",".m.$.sg.$.gen."),
-array("manta","mantassa",".nt.$.sg.$.dat."),
-array("manta","mantassa",".nt.$.sg.$.gen."),
-array("manta","mantassa",".m.$.sg.$.dat."),
-array("manta","mantassa",".m.$.sg.$.gen."),
-array("manta","mantassa",".nt.$.sg.$.dat."),
-array("manta","mantassa",".nt.$.sg.$.gen."),
-array("manta","mante",".m.$.pl.$.acc."),
-array("manta","mante",".m.$.sg.$.loc."),
-array("manta","mante",".nt.$.pl.$.acc."),
-array("manta","mante",".nt.$.sg.$.loc."),
-array("manta","mantebhi",".m.$.pl.$.abl."),
-array("manta","mantebhi",".m.$.pl.$.inst."),
-array("manta","mantebhi",".nt.$.pl.$.abl."),
-array("manta","mantebhi",".nt.$.pl.$.inst."),
-array("manta","mantehi",".m.$.pl.$.abl."),
-array("manta","mantehi",".m.$.pl.$.inst."),
-array("manta","mantehi",".nt.$.pl.$.abl."),
-array("manta","mantehi",".nt.$.pl.$.inst."),
-array("manta","mantesu",".m.$.pl.$.loc."),
-array("manta","mantesu",".nt.$.pl.$.loc."),
-array("manta","mantesu",".nt.$.pl.$.loc."),
-array("manta","mantī",".f.$.pl.$.acc."),
-array("manta","mantī",".f.$.pl.$.nom."),
-array("manta","mantī",".f.$.pl.$.voc."),
-array("manta","mantī",".f.$.sg.$.nom."),
-array("manta","mantī",".f.$.sg.$.voc."),
-array("manta","mantībhi",".f.$.pl.$.abl."),
-array("manta","mantībhi",".f.$.pl.$.inst."),
-array("manta","mantīhi",".f.$.pl.$.abl."),
-array("manta","mantīhi",".f.$.pl.$.inst."),
-array("manta","mantiṃ",".f.$.sg.$.acc."),
-array("manta","mantīnaṃ",".f.$.pl.$.dat."),
-array("manta","mantīnaṃ",".f.$.pl.$.gen."),
-array("manta","mantīsu",".f.$.pl.$.loc."),
-array("manta","mantiyā",".f.$.sg.$.abl."),
-array("manta","mantiyā",".f.$.sg.$.dat."),
-array("manta","mantiyā",".f.$.sg.$.gen."),
-array("manta","mantiyā",".f.$.sg.$.inst."),
-array("manta","mantiyā",".f.$.sg.$.loc."),
-array("manta","mantiyaṃ",".f.$.sg.$.loc."),
-array("manta","mantiyo",".f.$.pl.$.acc."),
-array("manta","mantiyo",".f.$.pl.$.nom."),
-array("manta","mantiyo",".f.$.pl.$.voc."),
-array("manta","manto",".m.$.pl.$.nom."),
-array("manta","manto",".m.$.pl.$.voc."),
-array("manta","manto",".m.$.sg.$.nom."),
-array("manta","manto",".nt.$.pl.$.nom."),
-array("manta","manto",".nt.$.pl.$.voc."),
-array("manta","manto",".nt.$.sg.$.nom."),
-array("manta","matā",".m.$.sg.$.abl."),
-array("manta","matā",".m.$.sg.$.inst."),
-array("manta","matā",".nt.$.sg.$.abl."),
-array("manta","matā",".nt.$.sg.$.inst."),
-array("manta","matā",".m.$.sg.$.abl."),
-array("manta","matā",".m.$.sg.$.inst."),
-array("manta","matā",".nt.$.sg.$.abl."),
-array("manta","matā",".nt.$.sg.$.inst."),
-array("manta","mataṃ",".m.$.pl.$.dat."),
-array("manta","mataṃ",".m.$.pl.$.gen."),
-array("manta","mataṃ",".nt.$.pl.$.dat."),
-array("manta","mataṃ",".nt.$.pl.$.gen."),
-array("manta","mataṃ",".nt.$.pl.$.dat."),
-array("manta","mataṃ",".nt.$.pl.$.gen."),
-array("manta","matena",".m.$.sg.$.inst."),
-array("manta","matena",".nt.$.sg.$.inst."),
-array("manta","matena",".m.$.sg.$.inst."),
-array("manta","matena",".nt.$.sg.$.inst."),
-array("manta","matī",".f.$.pl.$.acc."),
-array("manta","matī",".f.$.pl.$.nom."),
-array("manta","matī",".f.$.pl.$.voc."),
-array("manta","matī",".f.$.sg.$.nom."),
-array("manta","matī",".f.$.sg.$.voc."),
-array("manta","mati",".m.$.sg.$.loc."),
-array("manta","mati",".nt.$.sg.$.loc."),
-array("manta","mati",".m.$.sg.$.loc."),
-array("manta","mati",".nt.$.sg.$.loc."),
-array("manta","matībhi",".f.$.pl.$.abl."),
-array("manta","matībhi",".f.$.pl.$.inst."),
-array("manta","matīhi",".f.$.pl.$.abl."),
-array("manta","matīhi",".f.$.pl.$.inst."),
-array("manta","matiṃ",".f.$.sg.$.acc."),
-array("manta","matīnaṃ",".f.$.pl.$.dat."),
-array("manta","matīnaṃ",".f.$.pl.$.gen."),
-array("manta","matīsu",".f.$.pl.$.loc."),
-array("manta","matiyā",".f.$.sg.$.abl."),
-array("manta","matiyā",".f.$.sg.$.dat."),
-array("manta","matiyā",".f.$.sg.$.gen."),
-array("manta","matiyā",".f.$.sg.$.inst."),
-array("manta","matiyā",".f.$.sg.$.loc."),
-array("manta","matiyaṃ",".f.$.sg.$.loc."),
-array("manta","matiyo",".f.$.pl.$.acc."),
-array("manta","matiyo",".f.$.pl.$.nom."),
-array("manta","matiyo",".f.$.pl.$.voc."),
-array("manta","mato",".m.$.sg.$.dat."),
-array("manta","mato",".m.$.sg.$.gen."),
-array("manta","mato",".nt.$.sg.$.dat."),
-array("manta","mato",".nt.$.sg.$.gen."),
-array("manta","mato",".m.$.sg.$.dat."),
-array("manta","mato",".m.$.sg.$.gen."),
-array("manta","mato",".nt.$.sg.$.dat."),
-array("manta","mato",".nt.$.sg.$.gen."),
-array("manta","me",".m.$.pl.$.acc."),
-array("manta","mebhi",".m.$.pl.$.abl."),
-array("manta","mebhi",".m.$.pl.$.inst."),
-array("manta","mehi",".m.$.pl.$.abl."),
-array("manta","mehi",".m.$.pl.$.inst."),
-array("manta","mesu",".m.$.pl.$.loc."),
-array("vanta","vā",".m.$.pl.$.nom."),
-array("vanta","vā",".m.$.pl.$.voc."),
-array("vanta","vā",".m.$.sg.$.nom."),
-array("vanta","va",".m.$.sg.$.voc."),
-array("vanta","vā",".m.$.sg.$.voc."),
-array("vanta","vā",".nt.$.pl.$.nom."),
-array("vanta","vā",".nt.$.pl.$.voc."),
-array("vanta","va",".nt.$.sg.$.voc."),
-array("vanta","vā",".nt.$.sg.$.voc."),
-array("vanta","vā",".m.$.sg.$.voc."),
-array("vanta","vā",".nt.$.sg.$.voc."),
-array("vanta","vaṃ",".m.$.sg.$.acc."),
-array("vanta","vaṃ",".nt.$.sg.$.acc."),
-array("vanta","vaṃ",".nt.$.sg.$.nom."),
-array("vanta","vaṃ",".m.$.sg.$.nom."),
-array("vanta","vaṃ",".m.$.sg.$.voc."),
-array("vanta","vaṃ",".nt.$.sg.$.voc."),
-array("vanta","vaṃ",".m.$.sg.$.voc."),
-array("vanta","vaṃ",".nt.$.sg.$.voc."),
-array("vanta","vānaṃ",".m.$.pl.$.dat."),
-array("vanta","vānaṃ",".m.$.pl.$.gen."),
-array("vanta","vantā",".m.$.pl.$.nom."),
-array("vanta","vantā",".m.$.pl.$.voc."),
-array("vanta","vantā",".m.$.sg.$.abl."),
-array("vanta","vanta",".m.$.sg.$.voc."),
-array("vanta","vantā",".m.$.sg.$.voc."),
-array("vanta","vanta",".nt.$.pl.$.acc."),
-array("vanta","vantā",".nt.$.pl.$.acc."),
-array("vanta","vanta",".nt.$.pl.$.nom."),
-array("vanta","vantā",".nt.$.pl.$.nom."),
-array("vanta","vanta",".nt.$.pl.$.voc."),
-array("vanta","vantā",".nt.$.pl.$.voc."),
-array("vanta","vantā",".nt.$.sg.$.abl."),
-array("vanta","vanta",".nt.$.sg.$.voc."),
-array("vanta","vantā",".nt.$.sg.$.voc."),
-array("vanta","vantaṃ",".m.$.sg.$.acc."),
-array("vanta","vantaṃ",".nt.$.sg.$.acc."),
-array("vanta","vantaṃ",".nt.$.sg.$.nom."),
-array("vanta","vantaṃ",".nt.$.sg.$.nom."),
-array("vanta","vantaṃ",".m.$.sg.$.acc."),
-array("vanta","vantaṃ",".nt.$.sg.$.acc."),
-array("vanta","vantamhā",".m.$.sg.$.abl."),
-array("vanta","vantamhā",".nt.$.sg.$.abl."),
-array("vanta","vantamhā",".m.$.sg.$.abl."),
-array("vanta","vantamhā",".nt.$.sg.$.abl."),
-array("vanta","vantamhi",".m.$.sg.$.loc."),
-array("vanta","vantamhi",".nt.$.sg.$.loc."),
-array("vanta","vantamhi",".m.$.sg.$.loc."),
-array("vanta","vantamhi",".nt.$.sg.$.loc."),
-array("vanta","vantānaṃ",".m.$.pl.$.dat."),
-array("vanta","vantānaṃ",".m.$.pl.$.gen."),
-array("vanta","vantānaṃ",".nt.$.pl.$.dat."),
-array("vanta","vantānaṃ",".nt.$.pl.$.gen."),
-array("vanta","vantānaṃ",".nt.$.pl.$.dat."),
-array("vanta","vantānaṃ",".nt.$.pl.$.gen."),
-array("vanta","vantani",".nt.$.pl.$.acc."),
-array("vanta","vantāni",".nt.$.pl.$.acc."),
-array("vanta","vantani",".nt.$.pl.$.nom."),
-array("vanta","vantāni",".nt.$.pl.$.nom."),
-array("vanta","vantani",".nt.$.pl.$.voc."),
-array("vanta","vantāni",".nt.$.pl.$.voc."),
-array("vanta","vantasmā",".m.$.sg.$.abl."),
-array("vanta","vantasmā",".nt.$.sg.$.abl."),
-array("vanta","vantasmā",".m.$.sg.$.abl."),
-array("vanta","vantasmā",".nt.$.sg.$.abl."),
-array("vanta","vantasmiṃ",".m.$.sg.$.loc."),
-array("vanta","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vanta","vantasmiṃ",".m.$.sg.$.loc."),
-array("vanta","vantasmiṃ",".nt.$.sg.$.loc."),
-array("vanta","vantassa",".m.$.sg.$.dat."),
-array("vanta","vantassa",".m.$.sg.$.gen."),
-array("vanta","vantassa",".nt.$.sg.$.dat."),
-array("vanta","vantassa",".nt.$.sg.$.gen."),
-array("vanta","vantassa",".m.$.sg.$.dat."),
-array("vanta","vantassa",".m.$.sg.$.gen."),
-array("vanta","vantassa",".nt.$.sg.$.dat."),
-array("vanta","vantassa",".nt.$.sg.$.gen."),
-array("vanta","vante",".m.$.pl.$.acc."),
-array("vanta","vante",".m.$.sg.$.loc."),
-array("vanta","vante",".nt.$.pl.$.acc."),
-array("vanta","vante",".nt.$.sg.$.loc."),
-array("vanta","vantebhi",".m.$.pl.$.abl."),
-array("vanta","vantebhi",".m.$.pl.$.inst."),
-array("vanta","vantebhi",".nt.$.pl.$.abl."),
-array("vanta","vantebhi",".nt.$.pl.$.inst."),
-array("vanta","vantehi",".m.$.pl.$.abl."),
-array("vanta","vantehi",".m.$.pl.$.inst."),
-array("vanta","vantehi",".nt.$.pl.$.abl."),
-array("vanta","vantehi",".nt.$.pl.$.inst."),
-array("vanta","vantesu",".m.$.pl.$.loc."),
-array("vanta","vantesu",".nt.$.pl.$.loc."),
-array("vanta","vantesu",".nt.$.pl.$.loc."),
-array("vanta","vantī",".f.$.pl.$.acc."),
-array("vanta","vantī",".f.$.pl.$.nom."),
-array("vanta","vantī",".f.$.pl.$.voc."),
-array("vanta","vantī",".f.$.sg.$.nom."),
-array("vanta","vantī",".f.$.sg.$.voc."),
-array("vanta","vantībhi",".f.$.pl.$.abl."),
-array("vanta","vantībhi",".f.$.pl.$.inst."),
-array("vanta","vantīhi",".f.$.pl.$.abl."),
-array("vanta","vantīhi",".f.$.pl.$.inst."),
-array("vanta","vantiṃ",".f.$.sg.$.acc."),
-array("vanta","vantīnaṃ",".f.$.pl.$.dat."),
-array("vanta","vantīnaṃ",".f.$.pl.$.gen."),
-array("vanta","vantīsu",".f.$.pl.$.loc."),
-array("vanta","vantiyā",".f.$.sg.$.abl."),
-array("vanta","vantiyā",".f.$.sg.$.dat."),
-array("vanta","vantiyā",".f.$.sg.$.gen."),
-array("vanta","vantiyā",".f.$.sg.$.inst."),
-array("vanta","vantiyā",".f.$.sg.$.loc."),
-array("vanta","vantiyaṃ",".f.$.sg.$.loc."),
-array("vanta","vantiyo",".f.$.pl.$.acc."),
-array("vanta","vantiyo",".f.$.pl.$.nom."),
-array("vanta","vantiyo",".f.$.pl.$.voc."),
-array("vanta","vanto",".m.$.pl.$.nom."),
-array("vanta","vanto",".m.$.pl.$.voc."),
-array("vanta","vanto",".m.$.sg.$.nom."),
-array("vanta","vanto",".nt.$.pl.$.nom."),
-array("vanta","vanto",".nt.$.pl.$.voc."),
-array("vanta","vanto",".nt.$.sg.$.nom."),
-array("vanta","vatā",".m.$.sg.$.abl."),
-array("vanta","vatā",".m.$.sg.$.inst."),
-array("vanta","vatā",".nt.$.sg.$.abl."),
-array("vanta","vatā",".nt.$.sg.$.inst."),
-array("vanta","vatā",".m.$.sg.$.abl."),
-array("vanta","vatā",".m.$.sg.$.inst."),
-array("vanta","vatā",".nt.$.sg.$.abl."),
-array("vanta","vatā",".nt.$.sg.$.inst."),
-array("vanta","vataṃ",".m.$.pl.$.dat."),
-array("vanta","vataṃ",".m.$.pl.$.gen."),
-array("vanta","vataṃ",".nt.$.pl.$.dat."),
-array("vanta","vataṃ",".nt.$.pl.$.gen."),
-array("vanta","vataṃ",".nt.$.pl.$.dat."),
-array("vanta","vataṃ",".nt.$.pl.$.gen."),
-array("vanta","vatena",".m.$.sg.$.inst."),
-array("vanta","vatena",".nt.$.sg.$.inst."),
-array("vanta","vatena",".m.$.sg.$.inst."),
-array("vanta","vatena",".nt.$.sg.$.inst."),
-array("vanta","vatī",".f.$.pl.$.acc."),
-array("vanta","vatī",".f.$.pl.$.nom."),
-array("vanta","vatī",".f.$.pl.$.voc."),
-array("vanta","vatī",".f.$.sg.$.nom."),
-array("vanta","vatī",".f.$.sg.$.voc."),
-array("vanta","vati",".m.$.sg.$.loc."),
-array("vanta","vati",".nt.$.sg.$.loc."),
-array("vanta","vati",".m.$.sg.$.loc."),
-array("vanta","vati",".nt.$.sg.$.loc."),
-array("vanta","vatībhi",".f.$.pl.$.abl."),
-array("vanta","vatībhi",".f.$.pl.$.inst."),
-array("vanta","vatīhi",".f.$.pl.$.abl."),
-array("vanta","vatīhi",".f.$.pl.$.inst."),
-array("vanta","vatiṃ",".f.$.sg.$.acc."),
-array("vanta","vatīnaṃ",".f.$.pl.$.dat."),
-array("vanta","vatīnaṃ",".f.$.pl.$.gen."),
-array("vanta","vatīsu",".f.$.pl.$.loc."),
-array("vanta","vatiyā",".f.$.sg.$.abl."),
-array("vanta","vatiyā",".f.$.sg.$.dat."),
-array("vanta","vatiyā",".f.$.sg.$.gen."),
-array("vanta","vatiyā",".f.$.sg.$.inst."),
-array("vanta","vatiyā",".f.$.sg.$.loc."),
-array("vanta","vatiyaṃ",".f.$.sg.$.loc."),
-array("vanta","vatiyo",".f.$.pl.$.acc."),
-array("vanta","vatiyo",".f.$.pl.$.nom."),
-array("vanta","vatiyo",".f.$.pl.$.voc."),
-array("vanta","vato",".m.$.sg.$.dat."),
-array("vanta","vato",".m.$.sg.$.gen."),
-array("vanta","vato",".nt.$.sg.$.dat."),
-array("vanta","vato",".nt.$.sg.$.gen."),
-array("vanta","vato",".m.$.sg.$.dat."),
-array("vanta","vato",".m.$.sg.$.gen."),
-array("vanta","vato",".nt.$.sg.$.dat."),
-array("vanta","vato",".nt.$.sg.$.gen."),
-array("vanta","ve",".m.$.pl.$.acc."),
-array("vanta","vebhi",".m.$.pl.$.abl."),
-array("vanta","vebhi",".m.$.pl.$.inst."),
-array("vanta","vehi",".m.$.pl.$.abl."),
-array("vanta","vehi",".m.$.pl.$.inst."),
-array("vanta","vesu",".m.$.pl.$.loc."),
-array("a","o",".m.$.sg.$.nom."),
-array("a","a",".m.$.sg.$.voc."),
-array("a","ā",".m.$.sg.$.voc."),
-array("a","aṃ",".m.$.sg.$.acc."),
-array("a","assa",".m.$.sg.$.gen."),
-array("a","assa",".m.$.sg.$.dat."),
-array("a","āya",".m.$.sg.$.dat."),
-array("a","ena",".m.$.sg.$.inst."),
-array("a","ā",".m.$.sg.$.abl."),
-array("a","asmā",".m.$.sg.$.abl."),
-array("a","amhā",".m.$.sg.$.abl."),
-array("a","ato",".m.$.sg.$.abl."),
-array("a","e",".m.$.sg.$.loc."),
-array("a","asmiṃ",".m.$.sg.$.loc."),
-array("a","amhi",".m.$.sg.$.loc."),
-array("a","ā",".m.$.pl.$.nom."),
-array("a","āse",".m.$.pl.$.nom."),
-array("a","ā",".m.$.pl.$.voc."),
-array("a","e",".m.$.pl.$.acc."),
-array("a","ānaṃ",".m.$.pl.$.gen."),
-array("a","ānaṃ",".m.$.pl.$.dat."),
-array("a","ehi",".m.$.pl.$.inst."),
-array("a","ebhi",".m.$.pl.$.inst."),
-array("a","ehi",".m.$.pl.$.abl."),
-array("a","ebhi",".m.$.pl.$.abl."),
-array("a","esu",".m.$.pl.$.loc."),
-array("a","aṃ",".nt.$.sg.$.nom."),
-array("a","a",".nt.$.sg.$.voc."),
-array("a","aṃ",".nt.$.sg.$.acc."),
-array("a","assa",".nt.$.sg.$.gen."),
-array("a","assa",".nt.$.sg.$.dat."),
-array("a","āya",".nt.$.sg.$.dat."),
-array("a","ena",".nt.$.sg.$.inst."),
-array("a","ā",".nt.$.sg.$.abl."),
-array("a","asmā",".nt.$.sg.$.abl."),
-array("a","amhā",".nt.$.sg.$.abl."),
-array("a","ato",".nt.$.sg.$.abl."),
-array("a","e",".nt.$.sg.$.loc."),
-array("a","asmiṃ",".nt.$.sg.$.loc."),
-array("a","amhi",".nt.$.sg.$.loc."),
-array("a","āni",".nt.$.pl.$.nom."),
-array("a","ā",".nt.$.pl.$.nom."),
-array("a","āni",".nt.$.pl.$.voc."),
-array("a","ā",".nt.$.pl.$.voc."),
-array("a","āni",".nt.$.pl.$.acc."),
-array("a","e",".nt.$.pl.$.acc."),
-array("a","ānaṃ",".nt.$.pl.$.gen."),
-array("a","ānaṃ",".nt.$.pl.$.dat."),
-array("a","ehi",".nt.$.pl.$.inst."),
-array("a","ebhi",".nt.$.pl.$.inst."),
-array("a","ehi",".nt.$.pl.$.abl."),
-array("a","ebhi",".nt.$.pl.$.abl."),
-array("a","esu",".nt.$.pl.$.loc."),
-array("a","esaṃ",".m.$.pl.$.dat."),
-array("a","esaṃ",".m.$.pl.$.gen."),
-array("a","esaṃ",".nt.$.pl.$.dat."),
-array("a","esaṃ",".nt.$.pl.$.gen."),
-array("ā","ā",".f.$.sg.$.nom."),
-array("ā","ā",".f.$.sg.$.voc."),
-array("ā","e",".f.$.sg.$.voc."),
-array("ā","aṃ",".f.$.sg.$.acc."),
-array("ā","āya",".f.$.sg.$.gen."),
-array("ā","āya",".f.$.sg.$.dat."),
-array("ā","āya",".f.$.sg.$.inst."),
-array("ā","āya",".f.$.sg.$.abl."),
-array("ā","ato",".f.$.sg.$.abl."),
-array("ā","āya",".f.$.sg.$.loc."),
-array("ā","āyaṃ",".f.$.sg.$.loc."),
-array("ā","ā",".f.$.pl.$.nom."),
-array("ā","āyo",".f.$.pl.$.nom."),
-array("ā","ā",".f.$.pl.$.voc."),
-array("ā","āyo",".f.$.pl.$.voc."),
-array("ā","ā",".f.$.pl.$.acc."),
-array("ā","āyo",".f.$.pl.$.acc."),
-array("ā","ānaṃ",".f.$.pl.$.gen."),
-array("ā","ānaṃ",".f.$.pl.$.dat."),
-array("ā","āhi",".f.$.pl.$.inst."),
-array("ā","ābhi",".f.$.pl.$.inst."),
-array("ā","āhi",".f.$.pl.$.abl."),
-array("ā","ābhi",".f.$.pl.$.abl."),
-array("ā","āsu",".f.$.pl.$.loc."),
-array("i","i",".m.$.sg.$.nom."),
-array("i","i",".m.$.sg.$.voc."),
-array("i","iṃ",".m.$.sg.$.acc."),
-array("i","issa",".m.$.sg.$.gen."),
-array("i","ino",".m.$.sg.$.gen."),
-array("i","issa",".m.$.sg.$.dat."),
-array("i","ino",".m.$.sg.$.dat."),
-array("i","inā",".m.$.sg.$.inst."),
-array("i","inā",".m.$.sg.$.abl."),
-array("i","ismā",".m.$.sg.$.abl."),
-array("i","imhā",".m.$.sg.$.abl."),
-array("i","ismiṃ",".m.$.sg.$.loc."),
-array("i","imhi",".m.$.sg.$.loc."),
-array("i","ī",".m.$.pl.$.nom."),
-array("i","ayo",".m.$.pl.$.nom."),
-array("i","ī",".m.$.pl.$.voc."),
-array("i","ayo",".m.$.pl.$.voc."),
-array("i","ī",".m.$.pl.$.acc."),
-array("i","ayo",".m.$.pl.$.acc."),
-array("i","īnaṃ",".m.$.pl.$.gen."),
-array("i","īnaṃ",".m.$.pl.$.dat."),
-array("i","īhi",".m.$.pl.$.inst."),
-array("i","ībhi",".m.$.pl.$.inst."),
-array("i","īhi",".m.$.pl.$.abl."),
-array("i","ībhi",".m.$.pl.$.abl."),
-array("i","īsu",".m.$.pl.$.loc."),
-array("i","i",".nt.$.sg.$.nom."),
-array("i","i",".nt.$.sg.$.voc."),
-array("i","iṃ",".nt.$.sg.$.acc."),
-array("i","assa",".nt.$.sg.$.gen."),
-array("i","ino",".nt.$.sg.$.gen."),
-array("i","assa",".nt.$.sg.$.dat."),
-array("i","ino",".nt.$.sg.$.dat."),
-array("i","inā",".nt.$.sg.$.inst."),
-array("i","inā",".nt.$.sg.$.abl."),
-array("i","ismā",".nt.$.sg.$.abl."),
-array("i","imhā",".nt.$.sg.$.abl."),
-array("i","ismiṃ",".nt.$.sg.$.loc."),
-array("i","imhi",".nt.$.sg.$.loc."),
-array("i","īni",".nt.$.pl.$.nom."),
-array("i","ī",".nt.$.pl.$.nom."),
-array("i","īni",".nt.$.pl.$.voc."),
-array("i","ī",".nt.$.pl.$.voc."),
-array("i","īni",".nt.$.pl.$.acc."),
-array("i","ī",".nt.$.pl.$.acc."),
-array("i","īnaṃ",".nt.$.pl.$.gen."),
-array("i","īnaṃ",".nt.$.pl.$.dat."),
-array("i","īhi",".nt.$.pl.$.inst."),
-array("i","ībhi",".nt.$.pl.$.inst."),
-array("i","īhi",".nt.$.pl.$.abl."),
-array("i","ībhi",".nt.$.pl.$.abl."),
-array("i","īsu",".nt.$.pl.$.loc."),
-array("i","i",".f.$.sg.$.nom."),
-array("i","i",".f.$.sg.$.voc."),
-array("i","iṃ",".f.$.sg.$.acc."),
-array("i","iyā",".f.$.sg.$.gen."),
-array("i","yā",".f.$.sg.$.gen.",4),
-array("i","iyā",".f.$.sg.$.dat."),
-array("i","yā",".f.$.sg.$.dat.",4),
-array("i","iyā",".f.$.sg.$.inst."),
-array("i","yā",".f.$.sg.$.inst.",4),
-array("i","iyā",".f.$.sg.$.abl."),
-array("i","yā",".f.$.sg.$.abl.",4),
-array("i","iyā",".f.$.sg.$.loc."),
-array("i","yā",".f.$.sg.$.loc."),
-array("i","iyaṃ",".f.$.sg.$.loc."),
-array("i","yaṃ",".f.$.sg.$.loc."),
-array("i","ī",".f.$.pl.$.nom."),
-array("i","iyo",".f.$.pl.$.nom."),
-array("i","yo",".f.$.pl.$.nom.",4),
-array("i","ī",".f.$.pl.$.voc."),
-array("i","iyo",".f.$.pl.$.voc."),
-array("i","yo",".f.$.pl.$.voc.",4),
-array("i","ī",".f.$.pl.$.acc."),
-array("i","iyo",".f.$.pl.$.acc."),
-array("i","yo",".f.$.pl.$.acc.",4),
-array("i","īnaṃ",".f.$.pl.$.gen."),
-array("i","īnaṃ",".f.$.pl.$.dat."),
-array("i","īhi",".f.$.pl.$.inst."),
-array("i","ībhi",".f.$.pl.$.inst."),
-array("i","īhi",".f.$.pl.$.abl."),
-array("i","ībhi",".f.$.pl.$.abl."),
-array("i","īsu",".f.$.pl.$.loc."),
-array("ī","ī",".m.$.sg.$.nom."),
-array("in","ī",".m.$.sg.$.nom."),
-array("ī","ī",".m.$.sg.$.voc."),
-array("ī","inī",".m.$.sg.$.voc.",4),
-array("in","ī",".m.$.sg.$.voc."),
-array("in","inī",".m.$.sg.$.voc."),
-array("ī","iṃ",".m.$.sg.$.acc."),
-array("ī","inaṃ",".m.$.sg.$.acc."),
-array("in","iṃ",".m.$.sg.$.acc."),
-array("in","inaṃ",".m.$.sg.$.acc."),
-array("ī","issa",".m.$.sg.$.gen."),
-array("ī","ino",".m.$.sg.$.gen."),
-array("in","issa",".m.$.sg.$.gen."),
-array("in","ino",".m.$.sg.$.gen."),
-array("ī","issa",".m.$.sg.$.dat."),
-array("ī","ino",".m.$.sg.$.dat."),
-array("in","issa",".m.$.sg.$.dat."),
-array("in","ino",".m.$.sg.$.dat."),
-array("ī","inā",".m.$.sg.$.inst."),
-array("in","inā",".m.$.sg.$.inst."),
-array("ī","inā",".m.$.sg.$.abl."),
-array("ī","ismā",".m.$.sg.$.abl."),
-array("ī","imhā",".m.$.sg.$.abl."),
-array("in","inā",".m.$.sg.$.abl."),
-array("in","ismā",".m.$.sg.$.abl."),
-array("in","imhā",".m.$.sg.$.abl."),
-array("ī","ismiṃ",".m.$.sg.$.loc."),
-array("ī","imhi",".m.$.sg.$.loc."),
-array("in","ismiṃ",".m.$.sg.$.loc."),
-array("in","imhi",".m.$.sg.$.loc."),
-array("ī","ī",".m.$.pl.$.nom."),
-array("ī","ino",".m.$.pl.$.nom."),
-array("in","ī",".m.$.pl.$.nom."),
-array("in","ino",".m.$.pl.$.nom."),
-array("ī","ī",".m.$.pl.$.voc."),
-array("ī","ino",".m.$.pl.$.voc."),
-array("in","ī",".m.$.pl.$.voc."),
-array("in","ino",".m.$.pl.$.voc."),
-array("ī","ī",".m.$.pl.$.acc."),
-array("ī","ino",".m.$.pl.$.acc."),
-array("in","ī",".m.$.pl.$.acc."),
-array("in","ino",".m.$.pl.$.acc."),
-array("ī","inaṃ",".m.$.pl.$.gen."),
-array("in","inaṃ",".m.$.pl.$.gen."),
-array("ī","inaṃ",".m.$.pl.$.dat."),
-array("in","inaṃ",".m.$.pl.$.dat."),
-array("ī","īhi",".m.$.pl.$.inst."),
-array("ī","ībhi",".m.$.pl.$.inst."),
-array("in","īhi",".m.$.pl.$.inst."),
-array("in","ībhi",".m.$.pl.$.inst."),
-array("ī","īhi",".m.$.pl.$.abl."),
-array("ī","ībhi",".m.$.pl.$.abl."),
-array("in","īhi",".m.$.pl.$.abl."),
-array("in","ībhi",".m.$.pl.$.abl."),
-array("ī","īsu",".m.$.pl.$.loc."),
-array("in","īsu",".m.$.pl.$.loc."),
-array("ī","ī",".f.$.sg.$.nom."),
-array("ī","ī",".f.$.sg.$.voc."),
-array("ī","iṃ",".f.$.sg.$.acc."),
-array("ī","iyā",".f.$.sg.$.gen."),
-array("ī","ayā",".f.$.sg.$.gen."),
-array("ī","yā",".f.$.sg.$.gen.",4),
-array("ī","iyā",".f.$.sg.$.dat."),
-array("ī","ayā",".f.$.sg.$.dat."),
-array("ī","yā",".f.$.sg.$.dat.",4),
-array("ī","iyā",".f.$.sg.$.inst."),
-array("ī","ayā",".f.$.sg.$.inst."),
-array("ī","yā",".f.$.sg.$.inst.",4),
-array("ī","iyā",".f.$.sg.$.abl."),
-array("ī","ayā",".f.$.sg.$.abl."),
-array("ī","yā",".f.$.sg.$.abl.",4),
-array("ī","iyā",".f.$.sg.$.loc."),
-array("ī","ayā",".f.$.sg.$.loc."),
-array("ī","yā",".f.$.sg.$.loc.",4),
-array("ī","iyaṃ",".f.$.sg.$.loc."),
-array("ī","ayaṃ",".f.$.sg.$.loc."),
-array("ī","yaṃ",".f.$.sg.$.loc.",4),
-array("ī","ī",".f.$.pl.$.nom."),
-array("ī","iyo",".f.$.pl.$.nom."),
-array("ī","yo",".f.$.pl.$.nom.",4),
-array("ī","ī",".f.$.pl.$.voc."),
-array("ī","iyo",".f.$.pl.$.voc."),
-array("ī","yo",".f.$.pl.$.voc."),
-array("ī","ī",".f.$.pl.$.acc."),
-array("ī","iyo",".f.$.pl.$.acc."),
-array("ī","yo",".f.$.pl.$.acc."),
-array("ī","īnaṃ",".f.$.pl.$.gen."),
-array("ī","īnaṃ",".f.$.pl.$.dat."),
-array("ī","īhi",".f.$.pl.$.inst."),
-array("ī","ībhi",".f.$.pl.$.inst."),
-array("ī","īhi",".f.$.pl.$.abl."),
-array("ī","ībhi",".f.$.pl.$.abl."),
-array("ī","īsu",".f.$.pl.$.loc."),
-array("u","u",".m.$.sg.$.nom."),
-array("u","u",".m.$.sg.$.voc."),
-array("u","uṃ",".m.$.sg.$.acc."),
-array("u","ussa",".m.$.sg.$.gen."),
-array("u","uno",".m.$.sg.$.gen."),
-array("u","ussa",".m.$.sg.$.dat."),
-array("u","uno",".m.$.sg.$.dat."),
-array("u","unā",".m.$.sg.$.inst."),
-array("u","unā",".m.$.sg.$.abl."),
-array("u","usmā",".m.$.sg.$.abl."),
-array("u","umhā",".m.$.sg.$.abl."),
-array("u","usmiṃ",".m.$.sg.$.loc."),
-array("u","umhi",".m.$.sg.$.loc."),
-array("u","ū",".m.$.pl.$.nom."),
-array("u","avo",".m.$.pl.$.nom."),
-array("u","ū",".m.$.pl.$.voc."),
-array("u","avo",".m.$.pl.$.voc."),
-array("u","ave",".m.$.pl.$.voc."),
-array("u","ū",".m.$.pl.$.acc."),
-array("u","avo",".m.$.pl.$.acc."),
-array("u","ūnaṃ",".m.$.pl.$.gen."),
-array("u","ūnaṃ",".m.$.pl.$.dat."),
-array("u","ūhi",".m.$.pl.$.inst."),
-array("u","ūbhi",".m.$.pl.$.inst."),
-array("u","ūhi",".m.$.pl.$.abl."),
-array("u","ūbhi",".m.$.pl.$.abl."),
-array("u","ūsu",".m.$.pl.$.loc."),
-array("u","u",".nt.$.sg.$.nom."),
-array("u","u",".nt.$.sg.$.voc."),
-array("u","uṃ",".nt.$.sg.$.acc."),
-array("u","ussa",".nt.$.sg.$.gen."),
-array("u","uno",".nt.$.sg.$.gen."),
-array("u","ussa",".nt.$.sg.$.dat."),
-array("u","uno",".nt.$.sg.$.dat."),
-array("u","unā",".nt.$.sg.$.inst."),
-array("u","unā",".nt.$.sg.$.abl."),
-array("u","usmā",".nt.$.sg.$.abl."),
-array("u","umhā",".nt.$.sg.$.abl."),
-array("u","usmiṃ",".nt.$.sg.$.loc."),
-array("u","umhi",".nt.$.sg.$.loc."),
-array("u","ū",".nt.$.pl.$.nom."),
-array("u","ūni",".nt.$.pl.$.nom."),
-array("u","ū",".nt.$.pl.$.voc."),
-array("u","ūni",".nt.$.pl.$.voc."),
-array("u","ū",".nt.$.pl.$.acc."),
-array("u","ūni",".nt.$.pl.$.acc."),
-array("u","ūnaṃ",".nt.$.pl.$.gen."),
-array("u","ūnaṃ",".nt.$.pl.$.dat."),
-array("u","ūhi",".nt.$.pl.$.inst."),
-array("u","ūbhi",".nt.$.pl.$.inst."),
-array("u","ūhi",".nt.$.pl.$.abl."),
-array("u","ūbhi",".nt.$.pl.$.abl."),
-array("u","ūsu",".nt.$.pl.$.loc."),
-array("u","u",".f.$.sg.$.nom."),
-array("u","u",".f.$.sg.$.voc."),
-array("u","uṃ",".f.$.sg.$.acc."),
-array("u","uyā",".f.$.sg.$.gen."),
-array("u","uyā",".f.$.sg.$.dat."),
-array("u","uyā",".f.$.sg.$.inst."),
-array("u","uyā",".f.$.sg.$.abl."),
-array("u","uto",".f.$.sg.$.abl."),
-array("u","uyā",".f.$.sg.$.loc."),
-array("u","uyaṃ",".f.$.sg.$.loc."),
-array("u","ū",".f.$.pl.$.nom."),
-array("u","uyo",".f.$.pl.$.nom."),
-array("u","ūvo",".f.$.pl.$.nom."),
-array("u","ū",".f.$.pl.$.voc."),
-array("u","uyo",".f.$.pl.$.voc."),
-array("u","ū",".f.$.pl.$.acc."),
-array("u","uyo",".f.$.pl.$.acc."),
-array("u","ūnaṃ",".f.$.pl.$.gen."),
-array("u","ūnaṃ",".f.$.pl.$.dat."),
-array("u","ūhi",".f.$.pl.$.inst."),
-array("u","ūbhi",".f.$.pl.$.inst."),
-array("u","ūhi",".f.$.pl.$.abl."),
-array("u","ūbhi",".f.$.pl.$.abl."),
-array("u","ūsu",".f.$.pl.$.loc."),
-array("ū","ū",".m.$.sg.$.nom."),
-array("ū","ū",".m.$.sg.$.voc."),
-array("ū","uṃ",".m.$.sg.$.acc."),
-array("ū","ussa",".m.$.sg.$.gen."),
-array("ū","uno",".m.$.sg.$.gen."),
-array("ū","ussa",".m.$.sg.$.dat."),
-array("ū","uno",".m.$.sg.$.dat."),
-array("ū","unā",".m.$.sg.$.inst."),
-array("ū","unā",".m.$.sg.$.abl."),
-array("ū","usmā",".m.$.sg.$.abl."),
-array("ū","umhā",".m.$.sg.$.abl."),
-array("ū","usmiṃ",".m.$.sg.$.loc."),
-array("ū","umhi",".m.$.sg.$.loc."),
-array("ū","ū",".m.$.pl.$.nom."),
-array("ū","avo",".m.$.pl.$.nom."),
-array("ū","ū",".m.$.pl.$.voc."),
-array("ū","avo",".m.$.pl.$.voc."),
-array("ū","ave",".m.$.pl.$.voc."),
-array("ū","ū",".m.$.pl.$.acc."),
-array("ū","avo",".m.$.pl.$.acc."),
-array("ū","ūnaṃ",".m.$.pl.$.gen."),
-array("ū","ūnaṃ",".m.$.pl.$.dat."),
-array("ū","ūhi",".m.$.pl.$.inst."),
-array("ū","ūbhi",".m.$.pl.$.inst."),
-array("ū","ūhi",".m.$.pl.$.abl."),
-array("ū","ūbhi",".m.$.pl.$.abl."),
-array("ū","ūsu",".m.$.pl.$.loc."),
-array("ū","ū",".f.$.sg.$.nom."),
-array("ū","ū",".f.$.sg.$.voc."),
-array("ū","uṃ",".f.$.sg.$.acc."),
-array("ū","uyā",".f.$.sg.$.gen."),
-array("ū","uyā",".f.$.sg.$.dat."),
-array("ū","uyā",".f.$.sg.$.inst."),
-array("ū","uyā",".f.$.sg.$.abl."),
-array("ū","uto",".f.$.sg.$.abl."),
-array("ū","uyā",".f.$.sg.$.loc."),
-array("ū","uyaṃ",".f.$.sg.$.loc."),
-array("ū","ū",".f.$.pl.$.nom."),
-array("ū","uyo",".f.$.pl.$.nom."),
-array("ū","ū",".f.$.pl.$.voc."),
-array("ū","uyo",".f.$.pl.$.voc."),
-array("ū","ū",".f.$.pl.$.acc."),
-array("ū","uyo",".f.$.pl.$.acc."),
-array("ū","ūnaṃ",".f.$.pl.$.gen."),
-array("ū","ūnaṃ",".f.$.pl.$.dat."),
-array("ū","ūhi",".f.$.pl.$.inst."),
-array("ū","ūbhi",".f.$.pl.$.inst."),
-array("ū","ūhi",".f.$.pl.$.abl."),
-array("ū","ūbhi",".f.$.pl.$.abl."),
-array("ū","ūsu",".f.$.pl.$.loc."),
-array("as","o",".m.$.sg.$.nom."),
-array("as","aṃ",".m.$.sg.$.nom."),
-array("o","o",".m.$.sg.$.nom."),
-array("o","aṃ",".m.$.sg.$.nom."),
-array("as","o",".m.$.sg.$.voc."),
-array("as","aṃ",".m.$.sg.$.voc."),
-array("as","ā",".m.$.sg.$.voc."),
-array("as","a",".m.$.sg.$.voc."),
-array("o","o",".m.$.sg.$.voc."),
-array("o","aṃ",".m.$.sg.$.voc."),
-array("o","ā",".m.$.sg.$.voc."),
-array("o","a",".m.$.sg.$.voc."),
-array("as","o",".m.$.sg.$.acc."),
-array("as","aṃ",".m.$.sg.$.acc."),
-array("o","o",".m.$.sg.$.acc."),
-array("o","aṃ",".m.$.sg.$.acc."),
-array("as","aso",".m.$.sg.$.gen."),
-array("as","assa",".m.$.sg.$.gen."),
-array("o","aso",".m.$.sg.$.gen."),
-array("o","assa",".m.$.sg.$.gen."),
-array("as","aso",".m.$.sg.$.dat."),
-array("as","assa",".m.$.sg.$.dat."),
-array("o","aso",".m.$.sg.$.dat."),
-array("o","assa",".m.$.sg.$.dat."),
-array("as","asā",".m.$.sg.$.inst."),
-array("as","ena",".m.$.sg.$.inst."),
-array("o","asā",".m.$.sg.$.inst."),
-array("o","ena",".m.$.sg.$.inst."),
-array("as","asā",".m.$.sg.$.abl."),
-array("as","asmā",".m.$.sg.$.abl."),
-array("as","amhā",".m.$.sg.$.abl."),
-array("as","ā",".m.$.sg.$.abl."),
-array("o","asā",".m.$.sg.$.abl."),
-array("o","asmā",".m.$.sg.$.abl."),
-array("o","amhā",".m.$.sg.$.abl."),
-array("o","ā",".m.$.sg.$.abl."),
-array("as","asi",".m.$.sg.$.loc."),
-array("as","e",".m.$.sg.$.loc."),
-array("as","asmiṃ",".m.$.sg.$.loc."),
-array("as","amhi",".m.$.sg.$.loc."),
-array("o","asi",".m.$.sg.$.loc."),
-array("o","e",".m.$.sg.$.loc."),
-array("o","asmiṃ",".m.$.sg.$.loc."),
-array("o","amhi",".m.$.sg.$.loc."),
-array("as","ā",".m.$.pl.$.nom."),
-array("o","ā",".m.$.pl.$.nom."),
-array("as","ā",".m.$.pl.$.voc."),
-array("o","ā",".m.$.pl.$.voc."),
-array("as","e",".m.$.pl.$.acc."),
-array("o","e",".m.$.pl.$.acc."),
-array("as","ānaṃ",".m.$.pl.$.gen."),
-array("o","ānaṃ",".m.$.pl.$.gen."),
-array("as","ānaṃ",".m.$.pl.$.dat."),
-array("o","ānaṃ",".m.$.pl.$.dat."),
-array("as","ehi",".m.$.pl.$.inst."),
-array("as","ebhi",".m.$.pl.$.inst."),
-array("o","ehi",".m.$.pl.$.inst."),
-array("o","ebhi",".m.$.pl.$.inst."),
-array("as","ehi",".m.$.pl.$.abl."),
-array("as","ebhi",".m.$.pl.$.abl."),
-array("o","ehi",".m.$.pl.$.abl."),
-array("o","ebhi",".m.$.pl.$.abl."),
-array("as","esu",".m.$.pl.$.loc."),
-array("o","esu",".m.$.pl.$.loc."),
-array("as","o",".nt.$.sg.$.nom."),
-array("as","aṃ",".nt.$.sg.$.nom."),
-array("o","o",".nt.$.sg.$.nom."),
-array("o","aṃ",".nt.$.sg.$.nom."),
-array("as","o",".nt.$.sg.$.voc."),
-array("as","aṃ",".nt.$.sg.$.voc."),
-array("as","ā",".nt.$.sg.$.voc."),
-array("as","a",".nt.$.sg.$.voc."),
-array("o","o",".nt.$.sg.$.voc."),
-array("o","aṃ",".nt.$.sg.$.voc."),
-array("o","ā",".nt.$.sg.$.voc."),
-array("o","a",".nt.$.sg.$.voc."),
-array("as","o",".nt.$.sg.$.acc."),
-array("as","aṃ",".nt.$.sg.$.acc."),
-array("o","o",".nt.$.sg.$.acc."),
-array("o","aṃ",".nt.$.sg.$.acc."),
-array("as","aso",".nt.$.sg.$.gen."),
-array("as","assa",".nt.$.sg.$.gen."),
-array("o","aso",".nt.$.sg.$.gen."),
-array("o","assa",".nt.$.sg.$.gen."),
-array("as","aso",".nt.$.sg.$.dat."),
-array("as","assa",".nt.$.sg.$.dat."),
-array("o","aso",".nt.$.sg.$.dat."),
-array("o","assa",".nt.$.sg.$.dat."),
-array("as","asā",".nt.$.sg.$.inst."),
-array("as","ena",".nt.$.sg.$.inst."),
-array("o","asā",".nt.$.sg.$.inst."),
-array("o","ena",".nt.$.sg.$.inst."),
-array("as","asā",".nt.$.sg.$.abl."),
-array("as","asmā",".nt.$.sg.$.abl."),
-array("as","amhā",".nt.$.sg.$.abl."),
-array("as","ā",".nt.$.sg.$.abl."),
-array("o","asā",".nt.$.sg.$.abl."),
-array("o","asmā",".nt.$.sg.$.abl."),
-array("o","amhā",".nt.$.sg.$.abl."),
-array("o","ā",".nt.$.sg.$.abl."),
-array("as","asi",".nt.$.sg.$.loc."),
-array("as","e",".nt.$.sg.$.loc."),
-array("as","asmiṃ",".nt.$.sg.$.loc."),
-array("as","amhi",".nt.$.sg.$.loc."),
-array("o","asi",".nt.$.sg.$.loc."),
-array("o","e",".nt.$.sg.$.loc."),
-array("o","asmiṃ",".nt.$.sg.$.loc."),
-array("o","amhi",".nt.$.sg.$.loc."),
-array("as","ā",".nt.$.pl.$.nom."),
-array("o","ā",".nt.$.pl.$.nom."),
-array("as","ā",".nt.$.pl.$.voc."),
-array("o","ā",".nt.$.pl.$.voc."),
-array("as","e",".nt.$.pl.$.acc."),
-array("o","e",".nt.$.pl.$.acc."),
-array("as","ānaṃ",".nt.$.pl.$.gen."),
-array("o","ānaṃ",".nt.$.pl.$.gen."),
-array("as","ānaṃ",".nt.$.pl.$.dat."),
-array("o","ānaṃ",".nt.$.pl.$.dat."),
-array("as","ehi",".nt.$.pl.$.inst."),
-array("as","ebhi",".nt.$.pl.$.inst."),
-array("o","ehi",".nt.$.pl.$.inst."),
-array("o","ebhi",".nt.$.pl.$.inst."),
-array("as","ehi",".nt.$.pl.$.abl."),
-array("as","ebhi",".nt.$.pl.$.abl."),
-array("o","ehi",".nt.$.pl.$.abl."),
-array("o","ebhi",".nt.$.pl.$.abl."),
-array("as","esu",".nt.$.pl.$.loc."),
-array("o","esu",".nt.$.pl.$.loc."),
-array("an","ā",".m.$.sg.$.nom."),
-array("an","ā",".m.$.sg.$.voc."),
-array("an","a",".m.$.sg.$.voc."),
-array("an","aṃ",".m.$.sg.$.acc."),
-array("an","ānaṃ",".m.$.sg.$.acc."),
-array("an","anaṃ",".m.$.sg.$.acc."),
-array("an","assa",".m.$.sg.$.gen."),
-array("an","ano",".m.$.sg.$.gen."),
-array("an","assa",".m.$.sg.$.dat."),
-array("an","ano",".m.$.sg.$.dat."),
-array("an","ena",".m.$.sg.$.inst."),
-array("an","anā",".m.$.sg.$.inst."),
-array("an","anā",".m.$.sg.$.abl."),
-array("an","asmā",".m.$.sg.$.abl."),
-array("an","amhā",".m.$.sg.$.abl."),
-array("an","ani",".m.$.sg.$.loc."),
-array("an","asmiṃ",".m.$.sg.$.loc."),
-array("an","amhi",".m.$.sg.$.loc."),
-array("an","ā",".m.$.pl.$.nom."),
-array("an","āno",".m.$.pl.$.nom."),
-array("an","ā",".m.$.pl.$.voc."),
-array("an","āno",".m.$.pl.$.voc."),
-array("an","āno",".m.$.pl.$.acc."),
-array("an","e",".m.$.pl.$.acc."),
-array("an","ānaṃ",".m.$.pl.$.gen."),
-array("an","ānaṃ",".m.$.pl.$.dat."),
-array("an","anehi",".m.$.pl.$.inst."),
-array("an","anebhi",".m.$.pl.$.inst."),
-array("an","anehi",".m.$.pl.$.abl."),
-array("an","anebhi",".m.$.pl.$.abl."),
-array("an","anesu",".m.$.pl.$.loc."),
-array("an","aṃ",".nt.$.sg.$.nom."),
-array("an","a",".nt.$.sg.$.voc."),
-array("an","aṃ",".nt.$.sg.$.acc."),
-array("an","assa",".nt.$.sg.$.gen."),
-array("an","assa",".nt.$.sg.$.dat."),
-array("an","āya",".nt.$.sg.$.dat.",4),
-array("an","ena",".nt.$.sg.$.inst."),
-array("an","ā",".nt.$.sg.$.abl.",4),
-array("an","asmā",".nt.$.sg.$.abl."),
-array("an","amhā",".nt.$.sg.$.abl."),
-array("an","ato",".nt.$.sg.$.abl.",4),
-array("an","e",".nt.$.sg.$.loc.",4),
-array("an","asmiṃ",".nt.$.sg.$.loc."),
-array("an","amhi",".nt.$.sg.$.loc."),
-array("an","āni",".nt.$.pl.$.nom."),
-array("an","ā",".nt.$.pl.$.nom."),
-array("an","āni",".nt.$.pl.$.voc."),
-array("an","ā",".nt.$.pl.$.voc."),
-array("an","āni",".nt.$.pl.$.acc."),
-array("an","e",".nt.$.pl.$.acc.",4),
-array("an","ānaṃ",".nt.$.pl.$.gen."),
-array("an","ānaṃ",".nt.$.pl.$.dat."),
-array("an","ehi",".nt.$.pl.$.inst."),
-array("an","ebhi",".nt.$.pl.$.inst."),
-array("an","ehi",".nt.$.pl.$.abl."),
-array("an","ebhi",".nt.$.pl.$.abl."),
-array("an","esu",".nt.$.pl.$.loc."),
-array("ar","ā",".f.$.sg.$.nom."),
-array("ar","ā",".f.$.sg.$.voc."),
-array("ar","aṃ",".f.$.sg.$.acc."),
-array("ar","ānaṃ",".f.$.sg.$.acc."),
-array("ar","assa",".f.$.sg.$.gen."),
-array("ar","ino",".f.$.sg.$.gen."),
-array("ar","assa",".f.$.sg.$.dat."),
-array("ar","ino",".f.$.sg.$.dat."),
-array("ar","ena",".f.$.sg.$.inst."),
-array("ar","inā",".f.$.sg.$.inst."),
-array("ar","asmā",".f.$.sg.$.abl."),
-array("ar","amhā",".f.$.sg.$.abl."),
-array("ar","ini",".f.$.sg.$.loc."),
-array("ar","asmiṃ",".f.$.sg.$.loc."),
-array("ar","amhi",".f.$.sg.$.loc."),
-array("ar","ā",".f.$.pl.$.nom."),
-array("ar","āno",".f.$.pl.$.nom."),
-array("ar","ā",".f.$.pl.$.voc."),
-array("ar","āno",".f.$.pl.$.voc."),
-array("ar","ā",".f.$.pl.$.acc."),
-array("ar","āno",".f.$.pl.$.acc."),
-array("ar","ānaṃ",".f.$.pl.$.gen."),
-array("ar","ānaṃ",".f.$.pl.$.dat."),
-array("ar","ehi",".f.$.pl.$.inst."),
-array("ar","āhi",".f.$.pl.$.inst."),
-array("ar","ehi",".f.$.pl.$.abl."),
-array("ar","āhi",".f.$.pl.$.abl."),
-array("ar","esu",".f.$.pl.$.loc."),
-array("ar","āsu",".f.$.pl.$.loc."),
-array("ar","ā",".nt.$.sg.$.nom."),
-array("ar","ā",".nt.$.sg.$.voc."),
-array("ar","aṃ",".nt.$.sg.$.acc."),
-array("ar","ānaṃ",".nt.$.sg.$.acc."),
-array("ar","assa",".nt.$.sg.$.gen."),
-array("ar","ino",".nt.$.sg.$.gen."),
-array("ar","assa",".nt.$.sg.$.dat."),
-array("ar","ino",".nt.$.sg.$.dat."),
-array("ar","ena",".nt.$.sg.$.inst."),
-array("ar","inā",".nt.$.sg.$.inst."),
-array("ar","asmā",".nt.$.sg.$.abl."),
-array("ar","amhā",".nt.$.sg.$.abl."),
-array("ar","ini",".nt.$.sg.$.loc."),
-array("ar","asmiṃ",".nt.$.sg.$.loc."),
-array("ar","amhi",".nt.$.sg.$.loc."),
-array("ar","ā",".nt.$.pl.$.nom."),
-array("ar","āno",".nt.$.pl.$.nom."),
-array("ar","ā",".nt.$.pl.$.voc."),
-array("ar","āno",".nt.$.pl.$.voc."),
-array("ar","ā",".nt.$.pl.$.acc."),
-array("ar","āno",".nt.$.pl.$.acc."),
-array("ar","ānaṃ",".nt.$.pl.$.gen."),
-array("ar","ānaṃ",".nt.$.pl.$.dat."),
-array("ar","ehi",".nt.$.pl.$.inst."),
-array("ar","āhi",".nt.$.pl.$.inst."),
-array("ar","ehi",".nt.$.pl.$.abl."),
-array("ar","āhi",".nt.$.pl.$.abl."),
-array("ar","esu",".nt.$.pl.$.loc."),
-array("ar","āsu",".nt.$.pl.$.loc."),
-array("a","e",".m.$.sg.$.nom.",4),
-array("a","ā",".m.$.sg.$.inst.",4),
-array("a","asā",".m.$.sg.$.inst.",4),
-array("a","ā",".m.$.sg.$.dat.",4),
-array("a","āya",".m.$.sg.$.gen.",4),
-array("a","ā",".m.$.sg.$.gen.",4),
-array("a","asi",".m.$.sg.$.loc.",4),
-array("a","e",".m.$.sg.$.voc.",4),
-array("a","o",".m.$.sg.$.voc.",4),
-array("a","āse",".m.$.pl.$.nom.",4),
-array("a","o",".m.$.pl.$.nom.",4),
-array("a","ān",".m.$.pl.$.acc.",4),
-array("a","e",".m.$.pl.$.inst.",4),
-array("a","ato",".m.$.pl.$.abl.",4),
-array("a","e",".nt.$.sg.$.nom.",4),
-array("a","ā",".nt.$.sg.$.inst.",4),
-array("a","asā",".nt.$.sg.$.inst.",4),
-array("a","ā",".nt.$.sg.$.dat.",4),
-array("a","asi",".nt.$.sg.$.loc.",4),
-array("a","ā",".nt.$.sg.$.voc.",4),
-array("a","aṃ",".nt.$.sg.$.voc.",4),
-array("a","āya",".nt.$.sg.$.gen.",4),
-array("a","ā",".nt.$.sg.$.gen.",4),
-array("a","o",".nt.$.pl.$.acc.",4),
-array("a","ato",".nt.$.pl.$.abl.",4),
-array("ā","ā",".f.$.sg.$.inst.",4),
-array("ā","āto",".f.$.sg.$.abl.",4),
-array("ā","a",".f.$.sg.$.voc.",4),
-array("ā","iyo",".f.$.pl.$.voc.",4),
-array("i","e",".m.$.sg.$.dat.",4),
-array("i","ito",".m.$.sg.$.abl.",4),
-array("i","e",".m.$.sg.$.gen.",4),
-array("i","ini",".m.$.sg.$.loc.",4),
-array("i","e",".m.$.sg.$.loc.",4),
-array("i","o",".m.$.sg.$.loc.",4),
-array("i","iyo",".m.$.pl.$.nom.",4),
-array("i","ino",".m.$.pl.$.nom.",4),
-array("i","iyo",".m.$.pl.$.acc.",4),
-array("i","ihi",".m.$.pl.$.inst.",4),
-array("i","ibhi",".m.$.pl.$.inst.",4),
-array("i","inaṃ",".m.$.pl.$.dat.",4),
-array("i","ihi",".m.$.pl.$.abl.",4),
-array("i","ibhi",".m.$.pl.$.abl.",4),
-array("i","inaṃ",".m.$.pl.$.gen.",4),
-array("i","isu",".m.$.pl.$.loc.",4),
-array("i","iyo",".m.$.pl.$.voc.",4),
-array("i","ihi",".nt.$.pl.$.inst."),
-array("i","ibhi",".nt.$.pl.$.inst."),
-array("i","ihi",".nt.$.pl.$.abl."),
-array("i","ibhi",".nt.$.pl.$.abl."),
-array("i","inaṃ",".nt.$.pl.$.gen."),
-array("i","inaṃ",".nt.$.pl.$.dat."),
-array("i","isu",".nt.$.pl.$.loc."),
-array("i","iṃ",".nt.$.sg.$.nom.",4),
-array("i","i",".nt.$.sg.$.acc.",4),
-array("i","e",".nt.$.sg.$.dat.",4),
-array("i","ito",".nt.$.sg.$.abl.",4),
-array("i","e",".nt.$.sg.$.gen.",4),
-array("i","ini",".nt.$.sg.$.loc.",4),
-array("i","e",".nt.$.sg.$.loc.",4),
-array("i","o",".nt.$.sg.$.loc.",4),
-array("i","iṃ",".nt.$.sg.$.voc.",4),
-array("i","ī",".f.$.sg.$.nom.",4),
-array("i","ito",".f.$.sg.$.abl.",4),
-array("i","myā",".f.$.sg.$.gen.",4),
-array("i","o",".f.$.sg.$.loc.",4),
-array("i","āyaṃ",".f.$.sg.$.loc.",4),
-array("i","u",".f.$.sg.$.loc.",4),
-array("i","ī",".f.$.sg.$.voc.",4),
-array("ī","ini",".m.$.sg.$.loc."),
-array("ī","īnaṃ",".m.$.pl.$.gen."),
-array("ī","īnaṃ",".m.$.pl.$.dat."),
-array("ī","īsu",".m.$.pl.$.loc."),
-array("ī","i",".m.$.sg.$.nom.",4),
-array("ī","iyo",".m.$.pl.$.nom.",4),
-array("ī","iye",".m.$.pl.$.acc.",4),
-array("ī","iyaṃ",".m.$.sg.$.acc.",4),
-array("ī","ito",".m.$.sg.$.abl."),
-array("ī","i",".f.$.sg.$.nom."),
-array("ī","iyaṃ",".f.$.sg.$.acc."),
-array("ī","ito",".f.$.sg.$.abl.",4),
-array("ī","īto",".f.$.sg.$.abl.",4),
-array("ī","āyo",".f.$.pl.$.nom.",4),
-array("ī","āyo",".f.$.pl.$.nom.",4),
-array("ī","āyo",".f.$.pl.$.nom.",4),
-array("ī","inaṃ",".f.$.pl.$.gen."),
-array("ī","inaṃ",".f.$.pl.$.dat."),
-array("ī","īyanaṃ",".f.$.pl.$.gen."),
-array("ī","īyanaṃ",".f.$.pl.$.dat."),
-array("ī","iyanaṃ",".f.$.pl.$.gen."),
-array("ī","iyanaṃ",".f.$.pl.$.dat."),
-array("ī","isu",".f.$.pl.$.loc."),
-array("ar","ā",".m.$.sg.$.nom."),
-array("ar","ā",".m.$.sg.$.voc."),
-array("ar","a",".m.$.sg.$.voc."),
-array("ar","araṃ",".m.$.sg.$.acc."),
-array("ar","āraṃ",".m.$.sg.$.acc."),
-array("ar","u",".m.$.sg.$.dat."),
-array("ar","ussa",".m.$.sg.$.dat."),
-array("ar","uno",".m.$.sg.$.dat."),
-array("ar","u",".m.$.sg.$.gen."),
-array("ar","ussa",".m.$.sg.$.gen."),
-array("ar","uno",".m.$.sg.$.gen."),
-array("ar","arā",".m.$.sg.$.inst."),
-array("ar","ara",".m.$.sg.$.inst."),
-array("ar","āra",".m.$.sg.$.inst."),
-array("ar","ārā",".m.$.sg.$.inst."),
-array("ar","unā",".m.$.sg.$.inst."),
-array("ar","arā",".m.$.sg.$.abl."),
-array("ar","ara",".m.$.sg.$.abl."),
-array("ar","āra",".m.$.sg.$.abl."),
-array("ar","ārā",".m.$.sg.$.abl."),
-array("ar","unā",".m.$.sg.$.abl."),
-array("ar","ari",".m.$.sg.$.loc."),
-array("ar","āro",".m.$.pl.$.nom."),
-array("ar","ā",".m.$.pl.$.nom."),
-array("ar","āro",".m.$.pl.$.voc."),
-array("ar","ā",".m.$.pl.$.voc."),
-array("ar","āro",".m.$.pl.$.acc."),
-array("ar","āre",".m.$.pl.$.acc."),
-array("ar","ānaṃ",".m.$.pl.$.dat."),
-array("ar","ārānaṃ",".m.$.pl.$.dat."),
-array("ar","ūnaṃ",".m.$.pl.$.dat."),
-array("ar","ānaṃ",".m.$.pl.$.gen."),
-array("ar","ārānaṃ",".m.$.pl.$.gen."),
-array("ar","ūnaṃ",".m.$.pl.$.gen."),
-array("ar","ārehi",".m.$.pl.$.inst."),
-array("ar","ārebhi",".m.$.pl.$.inst."),
-array("ar","ārehi",".m.$.pl.$.abl."),
-array("ar","ārebhi",".m.$.pl.$.abl."),
-array("ar","āresu",".m.$.pl.$.loc."),
-array("ar","ūsu",".m.$.pl.$.loc."),
-array("ar","āyo",".m.$.sg.$.voc."),
-array("ar","iyo",".m.$.sg.$.voc."),
-array("an","ane",".m.$.sg.$.loc."),
-array("an","ā",".m.$.pl.$.voc."),
-array("an","ubhi",".m.$.pl.$.inst."),
-array("an","ūbhi",".m.$.pl.$.inst."),
-array("an","uhi",".m.$.pl.$.inst."),
-array("an","ūhi",".m.$.pl.$.inst."),
-array("an","ūnaṃ",".m.$.pl.$.gen."),
-array("an","ūnaṃ",".m.$.pl.$.gen."),
-array("an","esu",".m.$.pl.$.loc."),
-array("an","ūsu",".m.$.pl.$.loc."),
-array("an","usu",".m.$.pl.$.loc."),
-array("an","a",".nt.$.sg.$.nom."),
-array("an","a",".nt.$.sg.$.acc."),
-array("an","anā",".nt.$.sg.$.inst."),
-array("an","unā",".nt.$.sg.$.inst."),
-array("an","no",".nt.$.sg.$.dat."),
-array("an","unā",".nt.$.sg.$.abl."),
-array("an","no",".nt.$.sg.$.dat."),
-array("an","ani",".nt.$.sg.$.loc."),
-array("an","ā",".nt.$.pl.$.voc."),
-array("as","āni",".m.$.pl.$.nom."),
-array("as","ā",".m.$.pl.$.acc."),
-array("as","āni",".m.$.pl.$.acc."),
-array("as","āni",".m.$.pl.$.voc."),
-array("as","āni",".m.$.pl.$.nom."),
-array("as","ā",".m.$.pl.$.acc."),
-array("as","āni",".m.$.pl.$.acc."),
-array("as","āni",".m.$.pl.$.voc."),
-array("as","āni",".m.$.pl.$.nom."),
-array("as","ā",".m.$.pl.$.acc."),
-array("as","āni",".m.$.pl.$.acc."),
-array("as","āni",".m.$.pl.$.voc."),
-array("us","u",".m.$.sg.$.nom."),
-array("us","uṃ",".m.$.sg.$.nom."),
-array("us","u",".m.$.sg.$.voc."),
-array("us","uṃ",".m.$.sg.$.voc."),
-array("us","u",".m.$.sg.$.acc."),
-array("us","uṃ",".m.$.sg.$.acc."),
-array("us","ussa",".m.$.sg.$.dat."),
-array("us","uno",".m.$.sg.$.dat."),
-array("us","ussa",".m.$.sg.$.gen."),
-array("us","uno",".m.$.sg.$.gen."),
-array("us","unā",".m.$.sg.$.inst."),
-array("us","usā",".m.$.sg.$.inst."),
-array("us","unā",".m.$.sg.$.abl."),
-array("us","usā",".m.$.sg.$.abl."),
-array("us","uni",".m.$.sg.$.loc."),
-array("us","usi",".m.$.sg.$.loc."),
-array("us","ū",".m.$.pl.$.nom."),
-array("us","ūni",".m.$.pl.$.nom."),
-array("us","ū",".m.$.pl.$.voc."),
-array("us","ūni",".m.$.pl.$.voc."),
-array("us","ū",".m.$.pl.$.acc."),
-array("us","ūni",".m.$.pl.$.acc."),
-array("us","ūnaṃ",".m.$.pl.$.dat."),
-array("us","ūsaṃ",".m.$.pl.$.dat."),
-array("us","ūnaṃ",".m.$.pl.$.gen."),
-array("us","ūsaṃ",".m.$.pl.$.gen."),
-array("us","ūhi",".m.$.pl.$.inst."),
-array("us","ūbhi",".m.$.pl.$.inst."),
-array("us","ūhi",".m.$.pl.$.abl."),
-array("us","ūbhi",".m.$.pl.$.abl."),
-array("us","ūsu",".m.$.pl.$.loc."),
-array("a","assā",".m.$.sg.$.gen."),
-array("a","assā",".m.$.sg.$.dat."),
-array("a","enā",".m.$.sg.$.inst."),
-array("a","amhī",".m.$.sg.$.loc."),
-array("a","ehī",".m.$.pl.$.inst."),
-array("a","ebhī",".m.$.pl.$.inst."),
-array("a","ehī",".m.$.pl.$.abl."),
-array("a","ebhī",".m.$.pl.$.abl."),
-array("a","esū",".m.$.pl.$.loc."),
-array("a","assā",".nt.$.sg.$.gen."),
-array("a","assā",".nt.$.sg.$.dat."),
-array("a","enā",".nt.$.sg.$.inst."),
-array("a","amhī",".nt.$.sg.$.loc."),
-array("a","ānī",".nt.$.pl.$.nom."),
-array("a","ānī",".nt.$.pl.$.voc."),
-array("a","ānī",".nt.$.pl.$.acc."),
-array("a","ehī",".nt.$.pl.$.inst."),
-array("a","ebhī",".nt.$.pl.$.inst."),
-array("a","ehī",".nt.$.pl.$.abl."),
-array("a","ebhī",".nt.$.pl.$.abl."),
-array("a","esū",".nt.$.pl.$.loc."),
-array("ā","āhī",".f.$.pl.$.inst."),
-array("ā","ābhī",".f.$.pl.$.inst."),
-array("ā","āhī",".f.$.pl.$.abl."),
-array("ā","ābhī",".f.$.pl.$.abl."),
-array("ā","āsū",".f.$.pl.$.loc."),
-array("i","issā",".m.$.sg.$.gen."),
-array("i","issā",".m.$.sg.$.dat."),
-array("i","imhī",".m.$.sg.$.loc."),
-array("i","īhī",".m.$.pl.$.inst."),
-array("i","ībhī",".m.$.pl.$.inst."),
-array("i","īhī",".m.$.pl.$.abl."),
-array("i","ībhī",".m.$.pl.$.abl."),
-array("i","īsū",".m.$.pl.$.loc."),
-array("i","assā",".nt.$.sg.$.gen."),
-array("i","assā",".nt.$.sg.$.dat."),
-array("i","imhī",".nt.$.sg.$.loc."),
-array("i","īnī",".nt.$.pl.$.nom."),
-array("i","īnī",".nt.$.pl.$.voc."),
-array("i","īnī",".nt.$.pl.$.acc."),
-array("i","īhī",".nt.$.pl.$.inst."),
-array("i","ībhī",".nt.$.pl.$.inst."),
-array("i","īhī",".nt.$.pl.$.abl."),
-array("i","ībhī",".nt.$.pl.$.abl."),
-array("i","īsū",".nt.$.pl.$.loc."),
-array("i","īhī",".f.$.pl.$.inst."),
-array("i","ībhī",".f.$.pl.$.inst."),
-array("i","īhī",".f.$.pl.$.abl."),
-array("i","ībhī",".f.$.pl.$.abl."),
-array("i","īsū",".f.$.pl.$.loc."),
-array("ī","issā",".m.$.sg.$.gen."),
-array("in","issā",".m.$.sg.$.gen."),
-array("ī","issā",".m.$.sg.$.dat."),
-array("in","issā",".m.$.sg.$.dat."),
-array("ī","imhī",".m.$.sg.$.loc."),
-array("in","imhī",".m.$.sg.$.loc."),
-array("ī","īhī",".m.$.pl.$.inst."),
-array("ī","ībhī",".m.$.pl.$.inst."),
-array("in","īhī",".m.$.pl.$.inst."),
-array("in","ībhī",".m.$.pl.$.inst."),
-array("ī","īhī",".m.$.pl.$.abl."),
-array("ī","ībhī",".m.$.pl.$.abl."),
-array("in","īhī",".m.$.pl.$.abl."),
-array("in","ībhī",".m.$.pl.$.abl."),
-array("ī","īsū",".m.$.pl.$.loc."),
-array("in","īsū",".m.$.pl.$.loc."),
-array("ī","īhī",".f.$.pl.$.inst."),
-array("ī","ībhī",".f.$.pl.$.inst."),
-array("ī","īhī",".f.$.pl.$.abl."),
-array("ī","ībhī",".f.$.pl.$.abl."),
-array("ī","īsū",".f.$.pl.$.loc."),
-array("u","ussā",".m.$.sg.$.gen."),
-array("u","ussā",".m.$.sg.$.dat."),
-array("u","umhī",".m.$.sg.$.loc."),
-array("u","ūhī",".m.$.pl.$.inst."),
-array("u","ūbhī",".m.$.pl.$.inst."),
-array("u","ūhī",".m.$.pl.$.abl."),
-array("u","ūbhī",".m.$.pl.$.abl."),
-array("u","ūsū",".m.$.pl.$.loc."),
-array("u","ussā",".nt.$.sg.$.gen."),
-array("u","ussā",".nt.$.sg.$.dat."),
-array("u","umhī",".nt.$.sg.$.loc."),
-array("u","ūnī",".nt.$.pl.$.nom."),
-array("u","ūnī",".nt.$.pl.$.voc."),
-array("u","ūnī",".nt.$.pl.$.acc."),
-array("u","ūhī",".nt.$.pl.$.inst."),
-array("u","ūbhī",".nt.$.pl.$.inst."),
-array("u","ūhī",".nt.$.pl.$.abl."),
-array("u","ūbhī",".nt.$.pl.$.abl."),
-array("u","ūsū",".nt.$.pl.$.loc."),
-array("u","ūhī",".f.$.pl.$.inst."),
-array("u","ūbhī",".f.$.pl.$.inst."),
-array("u","ūhī",".f.$.pl.$.abl."),
-array("u","ūbhī",".f.$.pl.$.abl."),
-array("u","ūsū",".f.$.pl.$.loc."),
-array("ū","ussā",".m.$.sg.$.gen."),
-array("ū","ussā",".m.$.sg.$.dat."),
-array("ū","umhī",".m.$.sg.$.loc."),
-array("ū","ūhī",".m.$.pl.$.inst."),
-array("ū","ūbhī",".m.$.pl.$.inst."),
-array("ū","ūhī",".m.$.pl.$.abl."),
-array("ū","ūbhī",".m.$.pl.$.abl."),
-array("ū","ūsū",".m.$.pl.$.loc."),
-array("ū","ūhī",".f.$.pl.$.inst."),
-array("ū","ūbhī",".f.$.pl.$.inst."),
-array("ū","ūhī",".f.$.pl.$.abl."),
-array("ū","ūbhī",".f.$.pl.$.abl."),
-array("ū","ūsū",".f.$.pl.$.loc."),
-array("as","assā",".m.$.sg.$.gen."),
-array("o","assā",".m.$.sg.$.gen."),
-array("as","assā",".m.$.sg.$.dat."),
-array("o","assā",".m.$.sg.$.dat."),
-array("as","enā",".m.$.sg.$.inst."),
-array("o","enā",".m.$.sg.$.inst."),
-array("as","asī",".m.$.sg.$.loc."),
-array("as","amhī",".m.$.sg.$.loc."),
-array("o","asī",".m.$.sg.$.loc."),
-array("o","amhī",".m.$.sg.$.loc."),
-array("as","ehī",".m.$.pl.$.inst."),
-array("as","ebhī",".m.$.pl.$.inst."),
-array("o","ehī",".m.$.pl.$.inst."),
-array("o","ebhī",".m.$.pl.$.inst."),
-array("as","ehī",".m.$.pl.$.abl."),
-array("as","ebhī",".m.$.pl.$.abl."),
-array("o","ehī",".m.$.pl.$.abl."),
-array("o","ebhī",".m.$.pl.$.abl."),
-array("as","esū",".m.$.pl.$.loc."),
-array("o","esū",".m.$.pl.$.loc."),
-array("as","assā",".nt.$.sg.$.gen."),
-array("o","assā",".nt.$.sg.$.gen."),
-array("as","assā",".nt.$.sg.$.dat."),
-array("o","assā",".nt.$.sg.$.dat."),
-array("as","enā",".nt.$.sg.$.inst."),
-array("o","enā",".nt.$.sg.$.inst."),
-array("as","asī",".nt.$.sg.$.loc."),
-array("as","amhī",".nt.$.sg.$.loc."),
-array("o","asī",".nt.$.sg.$.loc."),
-array("o","amhī",".nt.$.sg.$.loc."),
-array("as","ehī",".nt.$.pl.$.inst."),
-array("as","ebhī",".nt.$.pl.$.inst."),
-array("o","ehī",".nt.$.pl.$.inst."),
-array("o","ebhī",".nt.$.pl.$.inst."),
-array("as","ehī",".nt.$.pl.$.abl."),
-array("as","ebhī",".nt.$.pl.$.abl."),
-array("o","ehī",".nt.$.pl.$.abl."),
-array("o","ebhī",".nt.$.pl.$.abl."),
-array("as","esū",".nt.$.pl.$.loc."),
-array("o","esū",".nt.$.pl.$.loc."),
-array("an","assā",".m.$.sg.$.gen."),
-array("an","assā",".m.$.sg.$.dat."),
-array("an","enā",".m.$.sg.$.inst."),
-array("an","anī",".m.$.sg.$.loc."),
-array("an","amhī",".m.$.sg.$.loc."),
-array("an","anehī",".m.$.pl.$.inst."),
-array("an","anebhī",".m.$.pl.$.inst."),
-array("an","anehī",".m.$.pl.$.abl."),
-array("an","anebhī",".m.$.pl.$.abl."),
-array("an","anesū",".m.$.pl.$.loc."),
-array("an","assā",".nt.$.sg.$.gen."),
-array("an","assā",".nt.$.sg.$.dat."),
-array("an","enā",".nt.$.sg.$.inst."),
-array("an","amhī",".nt.$.sg.$.loc."),
-array("an","ānī",".nt.$.pl.$.nom."),
-array("an","ānī",".nt.$.pl.$.voc."),
-array("an","ānī",".nt.$.pl.$.acc."),
-array("an","ehī",".nt.$.pl.$.inst."),
-array("an","ebhī",".nt.$.pl.$.inst."),
-array("an","ehī",".nt.$.pl.$.abl."),
-array("an","ebhī",".nt.$.pl.$.abl."),
-array("an","esū",".nt.$.pl.$.loc."),
-array("ar","assā",".f.$.sg.$.gen."),
-array("ar","assā",".f.$.sg.$.dat."),
-array("ar","enā",".f.$.sg.$.inst."),
-array("ar","amhī",".f.$.sg.$.loc."),
-array("ar","ehī",".f.$.pl.$.inst."),
-array("ar","āhī",".f.$.pl.$.inst."),
-array("ar","ehī",".f.$.pl.$.abl."),
-array("ar","āhī",".f.$.pl.$.abl."),
-array("ar","esū",".f.$.pl.$.loc."),
-array("ar","āsū",".f.$.pl.$.loc."),
-array("ar","assā",".nt.$.sg.$.gen."),
-array("ar","assā",".nt.$.sg.$.dat."),
-array("ar","enā",".nt.$.sg.$.inst."),
-array("ar","amhī",".nt.$.sg.$.loc."),
-array("ar","ehī",".nt.$.pl.$.inst."),
-array("ar","āhī",".nt.$.pl.$.inst."),
-array("ar","ehī",".nt.$.pl.$.abl."),
-array("ar","āhī",".nt.$.pl.$.abl."),
-array("ar","esū",".nt.$.pl.$.loc."),
-array("ar","āsū",".nt.$.pl.$.loc."),
-array("a","asī",".m.$.sg.$.loc.",4),
-array("a","asī",".nt.$.sg.$.loc.",4),
-array("i","ihī",".m.$.pl.$.inst.",4),
-array("i","ibhī",".m.$.pl.$.inst.",4),
-array("i","ihī",".m.$.pl.$.abl.",4),
-array("i","ibhī",".m.$.pl.$.abl.",4),
-array("i","isū",".m.$.pl.$.loc.",4),
-array("i","ihī",".nt.$.pl.$.inst."),
-array("i","ibhī",".nt.$.pl.$.inst."),
-array("i","ihī",".nt.$.pl.$.abl."),
-array("i","ibhī",".nt.$.pl.$.abl."),
-array("i","isū",".nt.$.pl.$.loc."),
-array("ī","īsū",".m.$.pl.$.loc."),
-array("ī","isū",".f.$.pl.$.loc."),
-array("ar","ussā",".m.$.sg.$.dat."),
-array("ar","ussā",".m.$.sg.$.gen."),
-array("ar","arī",".m.$.sg.$.loc."),
-array("ar","ārehī",".m.$.pl.$.inst."),
-array("ar","ārebhī",".m.$.pl.$.inst."),
-array("ar","ārehī",".m.$.pl.$.abl."),
-array("ar","ārebhī",".m.$.pl.$.abl."),
-array("ar","āresū",".m.$.pl.$.loc."),
-array("ar","ūsū",".m.$.pl.$.loc."),
-array("an","ubhī",".m.$.pl.$.inst."),
-array("an","ūbhī",".m.$.pl.$.inst."),
-array("an","uhī",".m.$.pl.$.inst."),
-array("an","ūhī",".m.$.pl.$.inst."),
-array("an","esū",".m.$.pl.$.loc."),
-array("an","ūsū",".m.$.pl.$.loc."),
-array("an","usū",".m.$.pl.$.loc."),
-array("an","anī",".nt.$.sg.$.loc."),
-array("as","ānī",".m.$.pl.$.nom."),
-array("as","ānī",".m.$.pl.$.acc."),
-array("as","ānī",".m.$.pl.$.voc."),
-array("as","ānī",".m.$.pl.$.nom."),
-array("as","ānī",".m.$.pl.$.acc."),
-array("as","ānī",".m.$.pl.$.voc."),
-array("as","ānī",".m.$.pl.$.nom."),
-array("as","ānī",".m.$.pl.$.acc."),
-array("as","ānī",".m.$.pl.$.voc."),
-array("us","ussā",".m.$.sg.$.dat."),
-array("us","ussā",".m.$.sg.$.gen."),
-array("us","unī",".m.$.sg.$.loc."),
-array("us","usī",".m.$.sg.$.loc."),
-array("us","ūnī",".m.$.pl.$.nom."),
-array("us","ūnī",".m.$.pl.$.voc."),
-array("us","ūnī",".m.$.pl.$.acc."),
-array("us","ūhī",".m.$.pl.$.inst."),
-array("us","ūbhī",".m.$.pl.$.inst."),
-array("us","ūhī",".m.$.pl.$.abl."),
-array("us","ūbhī",".m.$.pl.$.abl."),
-array("us","ūsū",".m.$.pl.$.loc."),
-array("ant","ā",".m.$.pl.$.nom."),
-array("ant","ā",".m.$.pl.$.voc."),
-array("ant","ā",".m.$.sg.$.nom."),
-array("ant","a",".m.$.sg.$.voc."),
-array("ant","ā",".m.$.sg.$.voc."),
-array("ant","ā",".nt.$.pl.$.nom."),
-array("ant","ā",".nt.$.pl.$.voc."),
-array("ant","a",".nt.$.sg.$.voc."),
-array("ant","ā",".nt.$.sg.$.voc."),
-array("ant","ā",".m.$.sg.$.voc."),
-array("ant","ā",".nt.$.sg.$.voc."),
-array("ant","aṃ",".m.$.sg.$.acc."),
-array("ant","aṃ",".nt.$.sg.$.acc."),
-array("ant","aṃ",".nt.$.sg.$.nom."),
-array("ant","aṃ",".m.$.sg.$.nom."),
-array("ant","aṃ",".m.$.sg.$.voc."),
-array("ant","aṃ",".nt.$.sg.$.voc."),
-array("ant","aṃ",".m.$.sg.$.voc."),
-array("ant","aṃ",".nt.$.sg.$.voc."),
-array("ant","ānaṃ",".m.$.pl.$.dat."),
-array("ant","ānaṃ",".m.$.pl.$.gen."),
-array("ant","e",".m.$.pl.$.acc."),
-array("ant","ebhi",".m.$.pl.$.abl."),
-array("ant","ebhi",".m.$.pl.$.inst."),
-array("ant","ehi",".m.$.pl.$.abl."),
-array("ant","ehi",".m.$.pl.$.inst."),
-array("ant","esu",".m.$.pl.$.loc."),
-array("anta","ā",".m.$.pl.$.nom."),
-array("anta","ā",".m.$.pl.$.voc."),
-array("anta","ā",".m.$.sg.$.nom."),
-array("anta","a",".m.$.sg.$.voc."),
-array("anta","ā",".m.$.sg.$.voc."),
-array("anta","ā",".nt.$.pl.$.nom."),
-array("anta","ā",".nt.$.pl.$.voc."),
-array("anta","a",".nt.$.sg.$.voc."),
-array("anta","ā",".nt.$.sg.$.voc."),
-array("anta","ā",".m.$.sg.$.voc."),
-array("anta","ā",".nt.$.sg.$.voc."),
-array("anta","aṃ",".m.$.sg.$.acc."),
-array("anta","aṃ",".nt.$.sg.$.acc."),
-array("anta","aṃ",".nt.$.sg.$.nom."),
-array("anta","aṃ",".m.$.sg.$.nom."),
-array("anta","aṃ",".m.$.sg.$.voc."),
-array("anta","aṃ",".nt.$.sg.$.voc."),
-array("anta","aṃ",".m.$.sg.$.voc."),
-array("anta","aṃ",".nt.$.sg.$.voc."),
-array("anta","ānaṃ",".m.$.pl.$.dat."),
-array("anta","ānaṃ",".m.$.pl.$.gen."),
-array("anta","e",".m.$.pl.$.acc."),
-array("anta","ebhi",".m.$.pl.$.abl."),
-array("anta","ebhi",".m.$.pl.$.inst."),
-array("anta","ehi",".m.$.pl.$.abl."),
-array("anta","ehi",".m.$.pl.$.inst."),
-array("anta","esu",".m.$.pl.$.loc."),
-array("ti","ti",".3p.$.sg.$.pres."),
-array("ti","nti",".3p.$.pl.$.pres."),
-array("ti","te",".3p.$.sg.$.pres."),
-array("ti","nte",".3p.$.pl.$.pres."),
-array("ti","re",".3p.$.pl.$.pres."),
-array("ti","ssati",".3p.$.sg.$.fut."),
-array("ti","ssanti",".3p.$.pl.$.fut."),
-array("ti","ssate",".3p.$.sg.$.fut."),
-array("ti","ssante",".3p.$.pl.$.fut."),
-array("ti","ssare",".3p.$.pl.$.fut."),
-array("ti","tu",".3p.$.sg.$.imp."),
-array("ti","ntu",".3p.$.pl.$.imp."),
-array("ti","taṃ",".3p.$.sg.$.imp."),
-array("ti","ntaṃ",".3p.$.pl.$.imp."),
-array("ti","sā",".3p.$.sg.$.cond."),
-array("ti","ssa",".3p.$.sg.$.cond."),
-array("ti","ssati",".3p.$.sg.$.cond."),
-array("ti","ssaṃsu",".3p.$.pl.$.cond."),
-array("ti","ssatha",".3p.$.sg.$.cond."),
-array("ti","ssiṃsu",".3p.$.pl.$.cond."),
-array("ti","si",".3p.$.sg.$.aor."),
-array("ti","sī",".3p.$.sg.$.aor."),
-array("ti","sā",".3p.$.sg.$.aor."),
-array("ti","siṃsu",".3p.$.pl.$.aor."),
-array("ti","sṃ",".3p.$.pl.$.aor."),
-array("ti","suṃū",".3p.$.pl.$.aor."),
-array("ti","sā",".3p.$.sg.$.aor."),
-array("ti","sa",".3p.$.sg.$.aor."),
-array("ti","stthuṃ",".3p.$.pl.$.aor."),
-array("ti","satthuṃ",".3p.$.pl.$.aor."),
-array("ti","mi",".1p.$.sg.$.pres."),
-array("ti","ma",".1p.$.pl.$.pres."),
-array("ti","e",".1p.$.sg.$.pres."),
-array("ti","mhe",".1p.$.pl.$.pres."),
-array("ti","mahe",".1p.$.pl.$.pres."),
-array("ti","mha",".1p.$.pl.$.pres."),
-array("ti","mase",".1p.$.pl.$.pres."),
-array("ti","mhase",".1p.$.pl.$.pres."),
-array("ti","ssāmi",".1p.$.sg.$.fut."),
-array("ti","ssāma",".1p.$.pl.$.fut."),
-array("ti","ssaṃ",".1p.$.sg.$.fut."),
-array("ti","ssāmhe",".1p.$.pl.$.fut."),
-array("ti","ssāmase",".1p.$.pl.$.fut."),
-array("ti","mi",".1p.$.sg.$.imp."),
-array("ti","ma",".1p.$.pl.$.imp."),
-array("ti","ssa",".1p.$.sg.$.cond."),
-array("ti","ssamhā",".1p.$.pl.$.cond."),
-array("ti","ssaṃ",".1p.$.sg.$.cond."),
-array("ti","ssāmhase",".1p.$.pl.$.cond."),
-array("ti","siṃ",".1p.$.sg.$.aor."),
-array("ti","saṃ",".1p.$.sg.$.aor."),
-array("ti","sṃ",".1p.$.sg.$.aor."),
-array("ti","sa",".1p.$.sg.$.aor."),
-array("ti","sā",".1p.$.sg.$.aor."),
-array("ti","simha",".1p.$.pl.$.aor."),
-array("ti","simhā",".1p.$.pl.$.aor."),
-array("ti","sa",".1p.$.sg.$.aor."),
-array("ti","simhe",".1p.$.pl.$.aor."),
-array("ti","si",".2p.$.sg.$.pres."),
-array("ti","tha",".2p.$.pl.$.pres."),
-array("ti","se",".2p.$.sg.$.pres."),
-array("ti","vhe",".2p.$.pl.$.pres."),
-array("ti","ssasi",".2p.$.sg.$.fut."),
-array("ti","ssatha",".2p.$.pl.$.fut."),
-array("ti","ssase",".2p.$.sg.$.fut."),
-array("ti","ssavhe",".2p.$.pl.$.fut."),
-array("ti","hi",".2p.$.sg.$.imp."),
-array("ti","ta",".2p.$.pl.$.imp."),
-array("ti","ssu",".2p.$.sg.$.imp."),
-array("ti","vho",".2p.$.pl.$.imp."),
-array("ti","se",".2p.$.sg.$.cond."),
-array("ti","ssa",".2p.$.sg.$.cond."),
-array("ti","ssasi",".2p.$.sg.$.cond."),
-array("ti","ssatha",".2p.$.pl.$.cond."),
-array("ti","ssase",".2p.$.sg.$.cond."),
-array("ti","ssavhe",".2p.$.pl.$.cond."),
-array("ti","si",".2p.$.sg.$.aor."),
-array("ti","so",".2p.$.sg.$.aor."),
-array("ti","sā",".2p.$.sg.$.aor."),
-array("ti","sttha",".2p.$.pl.$.aor."),
-array("ti","sse",".2p.$.sg.$.aor."),
-array("ti","svhaṃ",".2p.$.pl.$.aor."),
-array("ti","eyya",".3p.$.sg.$.opt."),
-array("ati","eyyuṃ",".3p.$.pl.$.opt."),
-array("ati","etha",".3p.$.sg.$.opt."),
-array("ati","eraṃ",".3p.$.pl.$.opt."),
-array("ati","issati",".3p.$.sg.$.fut."),
-array("ati","issanti",".3p.$.pl.$.fut."),
-array("ati","issate",".3p.$.sg.$.fut."),
-array("ati","issante",".3p.$.pl.$.fut."),
-array("ati","issare",".3p.$.pl.$.fut."),
-array("ati","i",".3p.$.sg.$.aor."),
-array("ati","ī",".3p.$.sg.$.aor."),
-array("ati","ā",".3p.$.sg.$.aor."),
-array("ati","iṃsu",".3p.$.pl.$.aor."),
-array("ati","ṃ",".3p.$.pl.$.aor."),
-array("ati","uṃū",".3p.$.pl.$.aor."),
-array("ati","ā",".3p.$.sg.$.aor."),
-array("ati","a",".3p.$.sg.$.aor."),
-array("ati","tthuṃ",".3p.$.pl.$.aor."),
-array("ati","atthuṃ",".3p.$.pl.$.aor."),
-array("ati","e",".1p.$.sg.$.imp."),
-array("ati","āmase",".1p.$.pl.$.imp."),
-array("ati","eyyāmi",".1p.$.sg.$.opt."),
-array("ati","eyyāma",".1p.$.pl.$.opt."),
-array("ati","eyyaṃ",".1p.$.sg.$.opt."),
-array("ati","eyyāmhe",".1p.$.pl.$.opt."),
-array("ati","issāmi",".1p.$.sg.$.fut."),
-array("ati","issāma",".1p.$.pl.$.fut."),
-array("ati","issaṃ",".1p.$.sg.$.fut."),
-array("ati","issāmhe",".1p.$.pl.$.fut."),
-array("ati","issāmase",".1p.$.pl.$.fut."),
-array("ati","iṃ",".1p.$.sg.$.aor."),
-array("ati","aṃ",".1p.$.sg.$.aor."),
-array("ati","ṃ",".1p.$.sg.$.aor."),
-array("ati","a",".1p.$.sg.$.aor."),
-array("ati","ā",".1p.$.sg.$.aor."),
-array("ati","imha",".1p.$.pl.$.aor."),
-array("ati","imhā",".1p.$.pl.$.aor."),
-array("ati","a",".1p.$.sg.$.aor."),
-array("ati","imhe",".1p.$.pl.$.aor."),
-array("ati","eyyāsi",".2p.$.sg.$.opt."),
-array("ati","eyyātha",".2p.$.pl.$.opt."),
-array("ati","etho",".2p.$.sg.$.opt."),
-array("ati","eyyavho",".2p.$.pl.$.opt."),
-array("ati","issasi",".2p.$.sg.$.fut."),
-array("ati","issatha",".2p.$.pl.$.fut."),
-array("ati","issase",".2p.$.sg.$.fut."),
-array("ati","issavhe",".2p.$.pl.$.fut."),
-array("ati","i",".2p.$.sg.$.aor."),
-array("ati","o",".2p.$.sg.$.aor."),
-array("ati","ā",".2p.$.sg.$.aor."),
-array("ati","ttha",".2p.$.pl.$.aor."),
-array("ati","se",".2p.$.sg.$.aor."),
-array("ati","vhaṃ",".2p.$.pl.$.aor."),
-array("āti","etha",".3p.$.sg.$.opt."),
-array("āti","eraṃ",".3p.$.pl.$.opt."),
-array("āti","issati",".3p.$.sg.$.fut."),
-array("āti","issanti",".3p.$.pl.$.fut."),
-array("āti","issate",".3p.$.sg.$.fut."),
-array("āti","issante",".3p.$.pl.$.fut."),
-array("āti","issare",".3p.$.pl.$.fut."),
-array("āti","i",".3p.$.sg.$.aor."),
-array("āti","ī",".3p.$.sg.$.aor."),
-array("āti","ā",".3p.$.sg.$.aor."),
-array("āti","iṃsu",".3p.$.pl.$.aor."),
-array("āti","ṃ",".3p.$.pl.$.aor."),
-array("āti","uṃū",".3p.$.pl.$.aor."),
-array("āti","ā",".3p.$.sg.$.aor."),
-array("āti","a",".3p.$.sg.$.aor."),
-array("āti","tthuṃ",".3p.$.pl.$.aor."),
-array("āti","atthuṃ",".3p.$.pl.$.aor."),
-array("āti","e",".1p.$.sg.$.imp."),
-array("āti","āmase",".1p.$.pl.$.imp."),
-array("āti","eyyuṃ",".3p.$.pl.$.opt."),
-array("āti","eyyāmi",".1p.$.sg.$.opt."),
-array("āti","eyyāma",".1p.$.pl.$.opt."),
-array("āti","eyyaṃ",".1p.$.sg.$.opt."),
-array("āti","eyyāmhe",".1p.$.pl.$.opt."),
-array("āti","issāmi",".1p.$.sg.$.fut."),
-array("āti","issāma",".1p.$.pl.$.fut."),
-array("āti","issaṃ",".1p.$.sg.$.fut."),
-array("āti","issāmhe",".1p.$.pl.$.fut."),
-array("āti","issāmase",".1p.$.pl.$.fut."),
-array("āti","iṃ",".1p.$.sg.$.aor."),
-array("āti","aṃ",".1p.$.sg.$.aor."),
-array("āti","ṃ",".1p.$.sg.$.aor."),
-array("āti","a",".1p.$.sg.$.aor."),
-array("āti","ā",".1p.$.sg.$.aor."),
-array("āti","imha",".1p.$.pl.$.aor."),
-array("āti","imhā",".1p.$.pl.$.aor."),
-array("āti","a",".1p.$.sg.$.aor."),
-array("āti","imhe",".1p.$.pl.$.aor."),
-array("āti","eyyāsi",".2p.$.sg.$.opt."),
-array("āti","eyyātha",".2p.$.pl.$.opt."),
-array("āti","etho",".2p.$.sg.$.opt."),
-array("āti","eyyavho",".2p.$.pl.$.opt."),
-array("āti","issasi",".2p.$.sg.$.fut."),
-array("āti","issatha",".2p.$.pl.$.fut."),
-array("āti","issase",".2p.$.sg.$.fut."),
-array("āti","issavhe",".2p.$.pl.$.fut."),
-array("āti","i",".2p.$.sg.$.aor."),
-array("āti","o",".2p.$.sg.$.aor."),
-array("āti","ā",".2p.$.sg.$.aor."),
-array("āti","ttha",".2p.$.pl.$.aor."),
-array("āti","se",".2p.$.sg.$.aor."),
-array("āti","vhaṃ",".2p.$.pl.$.aor."),
-array("eti","etha",".3p.$.sg.$.opt."),
-array("eti","eraṃ",".3p.$.pl.$.opt."),
-array("eti","issati",".3p.$.sg.$.fut."),
-array("eti","issanti",".3p.$.pl.$.fut."),
-array("eti","issate",".3p.$.sg.$.fut."),
-array("eti","issante",".3p.$.pl.$.fut."),
-array("eti","issare",".3p.$.pl.$.fut."),
-array("eti","i",".3p.$.sg.$.aor."),
-array("eti","ī",".3p.$.sg.$.aor."),
-array("eti","ā",".3p.$.sg.$.aor."),
-array("eti","iṃsu",".3p.$.pl.$.aor."),
-array("eti","ṃ",".3p.$.pl.$.aor."),
-array("eti","uṃū",".3p.$.pl.$.aor."),
-array("eti","ā",".3p.$.sg.$.aor."),
-array("eti","a",".3p.$.sg.$.aor."),
-array("eti","tthuṃ",".3p.$.pl.$.aor."),
-array("eti","atthuṃ",".3p.$.pl.$.aor."),
-array("eti","e",".1p.$.sg.$.imp."),
-array("eti","āmase",".1p.$.pl.$.imp."),
-array("eti","eyyāmi",".1p.$.sg.$.opt."),
-array("eti","eyyuṃ",".3p.$.pl.$.opt."),
-array("eti","eyyāma",".1p.$.pl.$.opt."),
-array("eti","eyyaṃ",".1p.$.sg.$.opt."),
-array("eti","eyyāmhe",".1p.$.pl.$.opt."),
-array("eti","issāmi",".1p.$.sg.$.fut."),
-array("eti","issāma",".1p.$.pl.$.fut."),
-array("eti","issaṃ",".1p.$.sg.$.fut."),
-array("eti","issāmhe",".1p.$.pl.$.fut."),
-array("eti","issāmase",".1p.$.pl.$.fut."),
-array("eti","iṃ",".1p.$.sg.$.aor."),
-array("eti","aṃ",".1p.$.sg.$.aor."),
-array("eti","ṃ",".1p.$.sg.$.aor."),
-array("eti","a",".1p.$.sg.$.aor."),
-array("eti","ā",".1p.$.sg.$.aor."),
-array("eti","imha",".1p.$.pl.$.aor."),
-array("eti","imhā",".1p.$.pl.$.aor."),
-array("eti","a",".1p.$.sg.$.aor."),
-array("eti","imhe",".1p.$.pl.$.aor."),
-array("eti","eyyāsi",".2p.$.sg.$.opt."),
-array("eti","eyyātha",".2p.$.pl.$.opt."),
-array("eti","etho",".2p.$.sg.$.opt."),
-array("eti","eyyavho",".2p.$.pl.$.opt."),
-array("eti","issasi",".2p.$.sg.$.fut."),
-array("eti","issatha",".2p.$.pl.$.fut."),
-array("eti","issase",".2p.$.sg.$.fut."),
-array("eti","issavhe",".2p.$.pl.$.fut."),
-array("eti","i",".2p.$.sg.$.aor."),
-array("eti","o",".2p.$.sg.$.aor."),
-array("eti","ā",".2p.$.sg.$.aor."),
-array("eti","ttha",".2p.$.pl.$.aor."),
-array("eti","se",".2p.$.sg.$.aor."),
-array("eti","vhaṃ",".2p.$.pl.$.aor."),
-array("oti","etha",".3p.$.sg.$.opt."),
-array("oti","eraṃ",".3p.$.pl.$.opt."),
-array("oti","issati",".3p.$.sg.$.fut."),
-array("oti","issanti",".3p.$.pl.$.fut."),
-array("oti","issate",".3p.$.sg.$.fut."),
-array("oti","issante",".3p.$.pl.$.fut."),
-array("oti","issare",".3p.$.pl.$.fut."),
-array("oti","i",".3p.$.sg.$.aor."),
-array("oti","ī",".3p.$.sg.$.aor."),
-array("oti","ā",".3p.$.sg.$.aor."),
-array("oti","iṃsu",".3p.$.pl.$.aor."),
-array("oti","ṃ",".3p.$.pl.$.aor."),
-array("oti","uṃū",".3p.$.pl.$.aor."),
-array("oti","ā",".3p.$.sg.$.aor."),
-array("oti","a",".3p.$.sg.$.aor."),
-array("oti","tthuṃ",".3p.$.pl.$.aor."),
-array("oti","atthuṃ",".3p.$.pl.$.aor."),
-array("oti","e",".1p.$.sg.$.imp."),
-array("oti","āmase",".1p.$.pl.$.imp."),
-array("oti","eyyuṃ",".3p.$.pl.$.opt."),
-array("oti","eyyāmi",".1p.$.sg.$.opt."),
-array("oti","eyyāma",".1p.$.pl.$.opt."),
-array("oti","eyyaṃ",".1p.$.sg.$.opt."),
-array("oti","eyyāmhe",".1p.$.pl.$.opt."),
-array("oti","issāmi",".1p.$.sg.$.fut."),
-array("oti","issāma",".1p.$.pl.$.fut."),
-array("oti","issaṃ",".1p.$.sg.$.fut."),
-array("oti","issāmhe",".1p.$.pl.$.fut."),
-array("oti","issāmase",".1p.$.pl.$.fut."),
-array("oti","iṃ",".1p.$.sg.$.aor."),
-array("oti","aṃ",".1p.$.sg.$.aor."),
-array("oti","ṃ",".1p.$.sg.$.aor."),
-array("oti","a",".1p.$.sg.$.aor."),
-array("oti","ā",".1p.$.sg.$.aor."),
-array("oti","imha",".1p.$.pl.$.aor."),
-array("oti","imhā",".1p.$.pl.$.aor."),
-array("oti","a",".1p.$.sg.$.aor."),
-array("oti","imhe",".1p.$.pl.$.aor."),
-array("oti","eyyāsi",".2p.$.sg.$.opt."),
-array("oti","eyyātha",".2p.$.pl.$.opt."),
-array("oti","etho",".2p.$.sg.$.opt."),
-array("oti","eyyavho",".2p.$.pl.$.opt."),
-array("oti","issasi",".2p.$.sg.$.fut."),
-array("oti","issatha",".2p.$.pl.$.fut."),
-array("oti","issase",".2p.$.sg.$.fut."),
-array("oti","issavhe",".2p.$.pl.$.fut."),
-array("oti","i",".2p.$.sg.$.aor."),
-array("oti","o",".2p.$.sg.$.aor."),
-array("oti","ā",".2p.$.sg.$.aor."),
-array("oti","ttha",".2p.$.pl.$.aor."),
-array("oti","se",".2p.$.sg.$.aor."),
-array("oti","vhaṃ",".2p.$.pl.$.aor."),
-array("ati","ittha",".2p.$.pl.$.aor."),
-array("ati","ituṃ",".v:ind.$.inf."),
-array("ati","atuṃ",".v:ind.$.inf."),
-array("ati","itvā",".v:ind.$.abs."),
-array("ati","atvā",".v:ind.$.abs.")
+$case = [
+["ti","tuṃ",".v:ind.$.inf."],
+["ati","ituṃ",".v:ind.$.inf."],
+["ati","itvā",".v:ind.$.abs."],
+["ati","atvā",".v:ind.$.abs."],
+["ant","antā",".m.$.pl.$.nom."],
+["ant","antā",".m.$.pl.$.voc."],
+["ant","antā",".m.$.sg.$.abl."],
+["ant","anta",".m.$.sg.$.voc."],
+["ant","antā",".m.$.sg.$.voc."],
+["ant","anta",".nt.$.pl.$.acc."],
+["ant","antā",".nt.$.pl.$.acc."],
+["ant","anta",".nt.$.pl.$.nom."],
+["ant","antā",".nt.$.pl.$.nom."],
+["ant","anta",".nt.$.pl.$.voc."],
+["ant","antā",".nt.$.pl.$.voc."],
+["ant","antā",".nt.$.sg.$.abl."],
+["ant","anta",".nt.$.sg.$.voc."],
+["ant","antā",".nt.$.sg.$.voc."],
+["ant","antaṃ",".m.$.sg.$.acc."],
+["ant","antaṃ",".nt.$.sg.$.acc."],
+["ant","antaṃ",".nt.$.sg.$.nom."],
+["ant","antaṃ",".nt.$.sg.$.nom."],
+["ant","antaṃ",".m.$.sg.$.acc."],
+["ant","antaṃ",".nt.$.sg.$.acc."],
+["ant","antamhā",".m.$.sg.$.abl."],
+["ant","antamhā",".nt.$.sg.$.abl."],
+["ant","antamhā",".m.$.sg.$.abl."],
+["ant","antamhā",".nt.$.sg.$.abl."],
+["ant","antamhi",".m.$.sg.$.loc."],
+["ant","antamhi",".nt.$.sg.$.loc."],
+["ant","antamhi",".m.$.sg.$.loc."],
+["ant","antamhi",".nt.$.sg.$.loc."],
+["ant","antānaṃ",".m.$.pl.$.dat."],
+["ant","antānaṃ",".m.$.pl.$.gen."],
+["ant","antānaṃ",".nt.$.pl.$.dat."],
+["ant","antānaṃ",".nt.$.pl.$.gen."],
+["ant","antānaṃ",".nt.$.pl.$.dat."],
+["ant","antānaṃ",".nt.$.pl.$.gen."],
+["ant","antani",".nt.$.pl.$.acc."],
+["ant","antāni",".nt.$.pl.$.acc."],
+["ant","antani",".nt.$.pl.$.nom."],
+["ant","antāni",".nt.$.pl.$.nom."],
+["ant","antani",".nt.$.pl.$.voc."],
+["ant","antāni",".nt.$.pl.$.voc."],
+["ant","antasmā",".m.$.sg.$.abl."],
+["ant","antasmā",".nt.$.sg.$.abl."],
+["ant","antasmā",".m.$.sg.$.abl."],
+["ant","antasmā",".nt.$.sg.$.abl."],
+["ant","antasmiṃ",".m.$.sg.$.loc."],
+["ant","antasmiṃ",".nt.$.sg.$.loc."],
+["ant","antasmiṃ",".m.$.sg.$.loc."],
+["ant","antasmiṃ",".nt.$.sg.$.loc."],
+["ant","antassa",".m.$.sg.$.dat."],
+["ant","antassa",".m.$.sg.$.gen."],
+["ant","antassa",".nt.$.sg.$.dat."],
+["ant","antassa",".nt.$.sg.$.gen."],
+["ant","antassa",".m.$.sg.$.dat."],
+["ant","antassa",".m.$.sg.$.gen."],
+["ant","antassa",".nt.$.sg.$.dat."],
+["ant","antassa",".nt.$.sg.$.gen."],
+["ant","ante",".m.$.pl.$.acc."],
+["ant","ante",".m.$.sg.$.loc."],
+["ant","ante",".nt.$.pl.$.acc."],
+["ant","ante",".nt.$.sg.$.loc."],
+["ant","antebhi",".m.$.pl.$.abl."],
+["ant","antebhi",".m.$.pl.$.inst."],
+["ant","antebhi",".nt.$.pl.$.abl."],
+["ant","antebhi",".nt.$.pl.$.inst."],
+["ant","antehi",".m.$.pl.$.abl."],
+["ant","antehi",".m.$.pl.$.inst."],
+["ant","antehi",".nt.$.pl.$.abl."],
+["ant","antehi",".nt.$.pl.$.inst."],
+["ant","antesu",".m.$.pl.$.loc."],
+["ant","antesu",".nt.$.pl.$.loc."],
+["ant","antesu",".nt.$.pl.$.loc."],
+["ant","antī",".f.$.pl.$.acc."],
+["ant","antī",".f.$.pl.$.nom."],
+["ant","antī",".f.$.pl.$.voc."],
+["ant","antī",".f.$.sg.$.nom."],
+["ant","antī",".f.$.sg.$.voc."],
+["ant","antībhi",".f.$.pl.$.abl."],
+["ant","antībhi",".f.$.pl.$.inst."],
+["ant","antīhi",".f.$.pl.$.abl."],
+["ant","antīhi",".f.$.pl.$.inst."],
+["ant","antiṃ",".f.$.sg.$.acc."],
+["ant","antīnaṃ",".f.$.pl.$.dat."],
+["ant","antīnaṃ",".f.$.pl.$.gen."],
+["ant","antīsu",".f.$.pl.$.loc."],
+["ant","antiyā",".f.$.sg.$.abl."],
+["ant","antiyā",".f.$.sg.$.dat."],
+["ant","antiyā",".f.$.sg.$.gen."],
+["ant","antiyā",".f.$.sg.$.inst."],
+["ant","antiyā",".f.$.sg.$.loc."],
+["ant","antiyaṃ",".f.$.sg.$.loc."],
+["ant","antiyo",".f.$.pl.$.acc."],
+["ant","antiyo",".f.$.pl.$.nom."],
+["ant","antiyo",".f.$.pl.$.voc."],
+["ant","anto",".m.$.pl.$.nom."],
+["ant","anto",".m.$.pl.$.voc."],
+["ant","anto",".m.$.sg.$.nom."],
+["ant","anto",".nt.$.pl.$.nom."],
+["ant","anto",".nt.$.pl.$.voc."],
+["ant","anto",".nt.$.sg.$.nom."],
+["ant","atā",".m.$.sg.$.abl."],
+["ant","atā",".m.$.sg.$.inst."],
+["ant","atā",".nt.$.sg.$.abl."],
+["ant","atā",".nt.$.sg.$.inst."],
+["ant","atā",".m.$.sg.$.abl."],
+["ant","atā",".m.$.sg.$.inst."],
+["ant","atā",".nt.$.sg.$.abl."],
+["ant","atā",".nt.$.sg.$.inst."],
+["ant","ataṃ",".m.$.pl.$.dat."],
+["ant","ataṃ",".m.$.pl.$.gen."],
+["ant","ataṃ",".nt.$.pl.$.dat."],
+["ant","ataṃ",".nt.$.pl.$.gen."],
+["ant","ataṃ",".nt.$.pl.$.dat."],
+["ant","ataṃ",".nt.$.pl.$.gen."],
+["ant","atena",".m.$.sg.$.inst."],
+["ant","atena",".nt.$.sg.$.inst."],
+["ant","atena",".m.$.sg.$.inst."],
+["ant","atena",".nt.$.sg.$.inst."],
+["ant","atī",".f.$.pl.$.acc."],
+["ant","atī",".f.$.pl.$.nom."],
+["ant","atī",".f.$.pl.$.voc."],
+["ant","atī",".f.$.sg.$.nom."],
+["ant","atī",".f.$.sg.$.voc."],
+["ant","ati",".m.$.sg.$.loc."],
+["ant","ati",".nt.$.sg.$.loc."],
+["ant","ati",".m.$.sg.$.loc."],
+["ant","ati",".nt.$.sg.$.loc."],
+["ant","atībhi",".f.$.pl.$.abl."],
+["ant","atībhi",".f.$.pl.$.inst."],
+["ant","atīhi",".f.$.pl.$.abl."],
+["ant","atīhi",".f.$.pl.$.inst."],
+["ant","atiṃ",".f.$.sg.$.acc."],
+["ant","atīnaṃ",".f.$.pl.$.dat."],
+["ant","atīnaṃ",".f.$.pl.$.gen."],
+["ant","atīsu",".f.$.pl.$.loc."],
+["ant","atiyā",".f.$.sg.$.abl."],
+["ant","atiyā",".f.$.sg.$.dat."],
+["ant","atiyā",".f.$.sg.$.gen."],
+["ant","atiyā",".f.$.sg.$.inst."],
+["ant","atiyā",".f.$.sg.$.loc."],
+["ant","atiyaṃ",".f.$.sg.$.loc."],
+["ant","atiyo",".f.$.pl.$.acc."],
+["ant","atiyo",".f.$.pl.$.nom."],
+["ant","atiyo",".f.$.pl.$.voc."],
+["ant","ato",".m.$.sg.$.dat."],
+["ant","ato",".m.$.sg.$.gen."],
+["ant","ato",".nt.$.sg.$.dat."],
+["ant","ato",".nt.$.sg.$.gen."],
+["ant","ato",".m.$.sg.$.dat."],
+["ant","ato",".m.$.sg.$.gen."],
+["ant","ato",".nt.$.sg.$.dat."],
+["ant","ato",".nt.$.sg.$.gen."],
+["anta","antā",".m.$.pl.$.nom."],
+["anta","antā",".m.$.pl.$.voc."],
+["anta","antā",".m.$.sg.$.abl."],
+["anta","anta",".m.$.sg.$.voc."],
+["anta","antā",".m.$.sg.$.voc."],
+["anta","anta",".nt.$.pl.$.acc."],
+["anta","antā",".nt.$.pl.$.acc."],
+["anta","anta",".nt.$.pl.$.nom."],
+["anta","antā",".nt.$.pl.$.nom."],
+["anta","anta",".nt.$.pl.$.voc."],
+["anta","antā",".nt.$.pl.$.voc."],
+["anta","antā",".nt.$.sg.$.abl."],
+["anta","anta",".nt.$.sg.$.voc."],
+["anta","antā",".nt.$.sg.$.voc."],
+["anta","antaṃ",".m.$.sg.$.acc."],
+["anta","antaṃ",".nt.$.sg.$.acc."],
+["anta","antaṃ",".nt.$.sg.$.nom."],
+["anta","antaṃ",".nt.$.sg.$.nom."],
+["anta","antaṃ",".m.$.sg.$.acc."],
+["anta","antaṃ",".nt.$.sg.$.acc."],
+["anta","antamhā",".m.$.sg.$.abl."],
+["anta","antamhā",".nt.$.sg.$.abl."],
+["anta","antamhā",".m.$.sg.$.abl."],
+["anta","antamhā",".nt.$.sg.$.abl."],
+["anta","antamhi",".m.$.sg.$.loc."],
+["anta","antamhi",".nt.$.sg.$.loc."],
+["anta","antamhi",".m.$.sg.$.loc."],
+["anta","antamhi",".nt.$.sg.$.loc."],
+["anta","antānaṃ",".m.$.pl.$.dat."],
+["anta","antānaṃ",".m.$.pl.$.gen."],
+["anta","antānaṃ",".nt.$.pl.$.dat."],
+["anta","antānaṃ",".nt.$.pl.$.gen."],
+["anta","antānaṃ",".nt.$.pl.$.dat."],
+["anta","antānaṃ",".nt.$.pl.$.gen."],
+["anta","antani",".nt.$.pl.$.acc."],
+["anta","antāni",".nt.$.pl.$.acc."],
+["anta","antani",".nt.$.pl.$.nom."],
+["anta","antāni",".nt.$.pl.$.nom."],
+["anta","antani",".nt.$.pl.$.voc."],
+["anta","antāni",".nt.$.pl.$.voc."],
+["anta","antasmā",".m.$.sg.$.abl."],
+["anta","antasmā",".nt.$.sg.$.abl."],
+["anta","antasmā",".m.$.sg.$.abl."],
+["anta","antasmā",".nt.$.sg.$.abl."],
+["anta","antasmiṃ",".m.$.sg.$.loc."],
+["anta","antasmiṃ",".nt.$.sg.$.loc."],
+["anta","antasmiṃ",".m.$.sg.$.loc."],
+["anta","antasmiṃ",".nt.$.sg.$.loc."],
+["anta","antassa",".m.$.sg.$.dat."],
+["anta","antassa",".m.$.sg.$.gen."],
+["anta","antassa",".nt.$.sg.$.dat."],
+["anta","antassa",".nt.$.sg.$.gen."],
+["anta","antassa",".m.$.sg.$.dat."],
+["anta","antassa",".m.$.sg.$.gen."],
+["anta","antassa",".nt.$.sg.$.dat."],
+["anta","antassa",".nt.$.sg.$.gen."],
+["anta","ante",".m.$.pl.$.acc."],
+["anta","ante",".m.$.sg.$.loc."],
+["anta","ante",".nt.$.pl.$.acc."],
+["anta","ante",".nt.$.sg.$.loc."],
+["anta","antebhi",".m.$.pl.$.abl."],
+["anta","antebhi",".m.$.pl.$.inst."],
+["anta","antebhi",".nt.$.pl.$.abl."],
+["anta","antebhi",".nt.$.pl.$.inst."],
+["anta","antehi",".m.$.pl.$.abl."],
+["anta","antehi",".m.$.pl.$.inst."],
+["anta","antehi",".nt.$.pl.$.abl."],
+["anta","antehi",".nt.$.pl.$.inst."],
+["anta","antesu",".m.$.pl.$.loc."],
+["anta","antesu",".nt.$.pl.$.loc."],
+["anta","antesu",".nt.$.pl.$.loc."],
+["anta","antī",".f.$.pl.$.acc."],
+["anta","antī",".f.$.pl.$.nom."],
+["anta","antī",".f.$.pl.$.voc."],
+["anta","antī",".f.$.sg.$.nom."],
+["anta","antī",".f.$.sg.$.voc."],
+["anta","antībhi",".f.$.pl.$.abl."],
+["anta","antībhi",".f.$.pl.$.inst."],
+["anta","antīhi",".f.$.pl.$.abl."],
+["anta","antīhi",".f.$.pl.$.inst."],
+["anta","antiṃ",".f.$.sg.$.acc."],
+["anta","antīnaṃ",".f.$.pl.$.dat."],
+["anta","antīnaṃ",".f.$.pl.$.gen."],
+["anta","antīsu",".f.$.pl.$.loc."],
+["anta","antiyā",".f.$.sg.$.abl."],
+["anta","antiyā",".f.$.sg.$.dat."],
+["anta","antiyā",".f.$.sg.$.gen."],
+["anta","antiyā",".f.$.sg.$.inst."],
+["anta","antiyā",".f.$.sg.$.loc."],
+["anta","antiyaṃ",".f.$.sg.$.loc."],
+["anta","antiyo",".f.$.pl.$.acc."],
+["anta","antiyo",".f.$.pl.$.nom."],
+["anta","antiyo",".f.$.pl.$.voc."],
+["anta","anto",".m.$.pl.$.nom."],
+["anta","anto",".m.$.pl.$.voc."],
+["anta","anto",".m.$.sg.$.nom."],
+["anta","anto",".nt.$.pl.$.nom."],
+["anta","anto",".nt.$.pl.$.voc."],
+["anta","anto",".nt.$.sg.$.nom."],
+["anta","atā",".m.$.sg.$.abl."],
+["anta","atā",".m.$.sg.$.inst."],
+["anta","atā",".nt.$.sg.$.abl."],
+["anta","atā",".nt.$.sg.$.inst."],
+["anta","atā",".m.$.sg.$.abl."],
+["anta","atā",".m.$.sg.$.inst."],
+["anta","atā",".nt.$.sg.$.abl."],
+["anta","atā",".nt.$.sg.$.inst."],
+["anta","ataṃ",".m.$.pl.$.dat."],
+["anta","ataṃ",".m.$.pl.$.gen."],
+["anta","ataṃ",".nt.$.pl.$.dat."],
+["anta","ataṃ",".nt.$.pl.$.gen."],
+["anta","ataṃ",".nt.$.pl.$.dat."],
+["anta","ataṃ",".nt.$.pl.$.gen."],
+["anta","atena",".m.$.sg.$.inst."],
+["anta","atena",".nt.$.sg.$.inst."],
+["anta","atena",".m.$.sg.$.inst."],
+["anta","atena",".nt.$.sg.$.inst."],
+["anta","atī",".f.$.pl.$.acc."],
+["anta","atī",".f.$.pl.$.nom."],
+["anta","atī",".f.$.pl.$.voc."],
+["anta","atī",".f.$.sg.$.nom."],
+["anta","atī",".f.$.sg.$.voc."],
+["anta","ati",".m.$.sg.$.loc."],
+["anta","ati",".nt.$.sg.$.loc."],
+["anta","ati",".m.$.sg.$.loc."],
+["anta","ati",".nt.$.sg.$.loc."],
+["anta","atībhi",".f.$.pl.$.abl."],
+["anta","atībhi",".f.$.pl.$.inst."],
+["anta","atīhi",".f.$.pl.$.abl."],
+["anta","atīhi",".f.$.pl.$.inst."],
+["anta","atiṃ",".f.$.sg.$.acc."],
+["anta","atīnaṃ",".f.$.pl.$.dat."],
+["anta","atīnaṃ",".f.$.pl.$.gen."],
+["anta","atīsu",".f.$.pl.$.loc."],
+["anta","atiyā",".f.$.sg.$.abl."],
+["anta","atiyā",".f.$.sg.$.dat."],
+["anta","atiyā",".f.$.sg.$.gen."],
+["anta","atiyā",".f.$.sg.$.inst."],
+["anta","atiyā",".f.$.sg.$.loc."],
+["anta","atiyaṃ",".f.$.sg.$.loc."],
+["anta","atiyo",".f.$.pl.$.acc."],
+["anta","atiyo",".f.$.pl.$.nom."],
+["anta","atiyo",".f.$.pl.$.voc."],
+["anta","ato",".m.$.sg.$.dat."],
+["anta","ato",".m.$.sg.$.gen."],
+["anta","ato",".nt.$.sg.$.dat."],
+["anta","ato",".nt.$.sg.$.gen."],
+["anta","ato",".m.$.sg.$.dat."],
+["anta","ato",".m.$.sg.$.gen."],
+["anta","ato",".nt.$.sg.$.dat."],
+["anta","ato",".nt.$.sg.$.gen."],
+["mant","mā",".m.$.pl.$.nom."],
+["mant","mā",".m.$.pl.$.voc."],
+["mant","mā",".m.$.sg.$.nom."],
+["mant","ma",".m.$.sg.$.voc."],
+["mant","mā",".m.$.sg.$.voc."],
+["mant","mā",".nt.$.pl.$.nom."],
+["mant","mā",".nt.$.pl.$.voc."],
+["mant","ma",".nt.$.sg.$.voc."],
+["mant","mā",".nt.$.sg.$.voc."],
+["mant","mā",".m.$.sg.$.voc."],
+["mant","mā",".nt.$.sg.$.voc."],
+["mant","maṃ",".m.$.sg.$.acc."],
+["mant","maṃ",".nt.$.sg.$.acc."],
+["mant","maṃ",".nt.$.sg.$.nom."],
+["mant","maṃ",".m.$.sg.$.nom."],
+["mant","maṃ",".m.$.sg.$.voc."],
+["mant","maṃ",".nt.$.sg.$.voc."],
+["mant","maṃ",".m.$.sg.$.voc."],
+["mant","maṃ",".nt.$.sg.$.voc."],
+["mant","mānaṃ",".m.$.pl.$.dat."],
+["mant","mānaṃ",".m.$.pl.$.gen."],
+["mant","mantā",".m.$.pl.$.nom."],
+["mant","mantā",".m.$.pl.$.voc."],
+["mant","mantā",".m.$.sg.$.abl."],
+["mant","manta",".m.$.sg.$.voc."],
+["mant","mantā",".m.$.sg.$.voc."],
+["mant","manta",".nt.$.pl.$.acc."],
+["mant","mantā",".nt.$.pl.$.acc."],
+["mant","manta",".nt.$.pl.$.nom."],
+["mant","mantā",".nt.$.pl.$.nom."],
+["mant","manta",".nt.$.pl.$.voc."],
+["mant","mantā",".nt.$.pl.$.voc."],
+["mant","mantā",".nt.$.sg.$.abl."],
+["mant","manta",".nt.$.sg.$.voc."],
+["mant","mantā",".nt.$.sg.$.voc."],
+["mant","mantaṃ",".m.$.sg.$.acc."],
+["mant","mantaṃ",".nt.$.sg.$.acc."],
+["mant","mantaṃ",".nt.$.sg.$.nom."],
+["mant","mantaṃ",".nt.$.sg.$.nom."],
+["mant","mantaṃ",".m.$.sg.$.acc."],
+["mant","mantaṃ",".nt.$.sg.$.acc."],
+["mant","mantamhā",".m.$.sg.$.abl."],
+["mant","mantamhā",".nt.$.sg.$.abl."],
+["mant","mantamhā",".m.$.sg.$.abl."],
+["mant","mantamhā",".nt.$.sg.$.abl."],
+["mant","mantamhi",".m.$.sg.$.loc."],
+["mant","mantamhi",".nt.$.sg.$.loc."],
+["mant","mantamhi",".m.$.sg.$.loc."],
+["mant","mantamhi",".nt.$.sg.$.loc."],
+["mant","mantānaṃ",".m.$.pl.$.dat."],
+["mant","mantānaṃ",".m.$.pl.$.gen."],
+["mant","mantānaṃ",".nt.$.pl.$.dat."],
+["mant","mantānaṃ",".nt.$.pl.$.gen."],
+["mant","mantānaṃ",".nt.$.pl.$.dat."],
+["mant","mantānaṃ",".nt.$.pl.$.gen."],
+["mant","mantani",".nt.$.pl.$.acc."],
+["mant","mantāni",".nt.$.pl.$.acc."],
+["mant","mantani",".nt.$.pl.$.nom."],
+["mant","mantāni",".nt.$.pl.$.nom."],
+["mant","mantani",".nt.$.pl.$.voc."],
+["mant","mantāni",".nt.$.pl.$.voc."],
+["mant","mantasmā",".m.$.sg.$.abl."],
+["mant","mantasmā",".nt.$.sg.$.abl."],
+["mant","mantasmā",".m.$.sg.$.abl."],
+["mant","mantasmā",".nt.$.sg.$.abl."],
+["mant","mantasmiṃ",".m.$.sg.$.loc."],
+["mant","mantasmiṃ",".nt.$.sg.$.loc."],
+["mant","mantasmiṃ",".m.$.sg.$.loc."],
+["mant","mantasmiṃ",".nt.$.sg.$.loc."],
+["mant","mantassa",".m.$.sg.$.dat."],
+["mant","mantassa",".m.$.sg.$.gen."],
+["mant","mantassa",".nt.$.sg.$.dat."],
+["mant","mantassa",".nt.$.sg.$.gen."],
+["mant","mantassa",".m.$.sg.$.dat."],
+["mant","mantassa",".m.$.sg.$.gen."],
+["mant","mantassa",".nt.$.sg.$.dat."],
+["mant","mantassa",".nt.$.sg.$.gen."],
+["mant","mante",".m.$.pl.$.acc."],
+["mant","mante",".m.$.sg.$.loc."],
+["mant","mante",".nt.$.pl.$.acc."],
+["mant","mante",".nt.$.sg.$.loc."],
+["mant","mantebhi",".m.$.pl.$.abl."],
+["mant","mantebhi",".m.$.pl.$.inst."],
+["mant","mantebhi",".nt.$.pl.$.abl."],
+["mant","mantebhi",".nt.$.pl.$.inst."],
+["mant","mantehi",".m.$.pl.$.abl."],
+["mant","mantehi",".m.$.pl.$.inst."],
+["mant","mantehi",".nt.$.pl.$.abl."],
+["mant","mantehi",".nt.$.pl.$.inst."],
+["mant","mantesu",".m.$.pl.$.loc."],
+["mant","mantesu",".nt.$.pl.$.loc."],
+["mant","mantesu",".nt.$.pl.$.loc."],
+["mant","mantī",".f.$.pl.$.acc."],
+["mant","mantī",".f.$.pl.$.nom."],
+["mant","mantī",".f.$.pl.$.voc."],
+["mant","mantī",".f.$.sg.$.nom."],
+["mant","mantī",".f.$.sg.$.voc."],
+["mant","mantībhi",".f.$.pl.$.abl."],
+["mant","mantībhi",".f.$.pl.$.inst."],
+["mant","mantīhi",".f.$.pl.$.abl."],
+["mant","mantīhi",".f.$.pl.$.inst."],
+["mant","mantiṃ",".f.$.sg.$.acc."],
+["mant","mantīnaṃ",".f.$.pl.$.dat."],
+["mant","mantīnaṃ",".f.$.pl.$.gen."],
+["mant","mantīsu",".f.$.pl.$.loc."],
+["mant","mantiyā",".f.$.sg.$.abl."],
+["mant","mantiyā",".f.$.sg.$.dat."],
+["mant","mantiyā",".f.$.sg.$.gen."],
+["mant","mantiyā",".f.$.sg.$.inst."],
+["mant","mantiyā",".f.$.sg.$.loc."],
+["mant","mantiyaṃ",".f.$.sg.$.loc."],
+["mant","mantiyo",".f.$.pl.$.acc."],
+["mant","mantiyo",".f.$.pl.$.nom."],
+["mant","mantiyo",".f.$.pl.$.voc."],
+["mant","manto",".m.$.pl.$.nom."],
+["mant","manto",".m.$.pl.$.voc."],
+["mant","manto",".m.$.sg.$.nom."],
+["mant","manto",".nt.$.pl.$.nom."],
+["mant","manto",".nt.$.pl.$.voc."],
+["mant","manto",".nt.$.sg.$.nom."],
+["mant","matā",".m.$.sg.$.abl."],
+["mant","matā",".m.$.sg.$.inst."],
+["mant","matā",".nt.$.sg.$.abl."],
+["mant","matā",".nt.$.sg.$.inst."],
+["mant","matā",".m.$.sg.$.abl."],
+["mant","matā",".m.$.sg.$.inst."],
+["mant","matā",".nt.$.sg.$.abl."],
+["mant","matā",".nt.$.sg.$.inst."],
+["mant","mataṃ",".m.$.pl.$.dat."],
+["mant","mataṃ",".m.$.pl.$.gen."],
+["mant","mataṃ",".nt.$.pl.$.dat."],
+["mant","mataṃ",".nt.$.pl.$.gen."],
+["mant","mataṃ",".nt.$.pl.$.dat."],
+["mant","mataṃ",".nt.$.pl.$.gen."],
+["mant","matena",".m.$.sg.$.inst."],
+["mant","matena",".nt.$.sg.$.inst."],
+["mant","matena",".m.$.sg.$.inst."],
+["mant","matena",".nt.$.sg.$.inst."],
+["mant","matī",".f.$.pl.$.acc."],
+["mant","matī",".f.$.pl.$.nom."],
+["mant","matī",".f.$.pl.$.voc."],
+["mant","matī",".f.$.sg.$.nom."],
+["mant","matī",".f.$.sg.$.voc."],
+["mant","mati",".m.$.sg.$.loc."],
+["mant","mati",".nt.$.sg.$.loc."],
+["mant","mati",".m.$.sg.$.loc."],
+["mant","mati",".nt.$.sg.$.loc."],
+["mant","matībhi",".f.$.pl.$.abl."],
+["mant","matībhi",".f.$.pl.$.inst."],
+["mant","matīhi",".f.$.pl.$.abl."],
+["mant","matīhi",".f.$.pl.$.inst."],
+["mant","matiṃ",".f.$.sg.$.acc."],
+["mant","matīnaṃ",".f.$.pl.$.dat."],
+["mant","matīnaṃ",".f.$.pl.$.gen."],
+["mant","matīsu",".f.$.pl.$.loc."],
+["mant","matiyā",".f.$.sg.$.abl."],
+["mant","matiyā",".f.$.sg.$.dat."],
+["mant","matiyā",".f.$.sg.$.gen."],
+["mant","matiyā",".f.$.sg.$.inst."],
+["mant","matiyā",".f.$.sg.$.loc."],
+["mant","matiyaṃ",".f.$.sg.$.loc."],
+["mant","matiyo",".f.$.pl.$.acc."],
+["mant","matiyo",".f.$.pl.$.nom."],
+["mant","matiyo",".f.$.pl.$.voc."],
+["mant","mato",".m.$.sg.$.dat."],
+["mant","mato",".m.$.sg.$.gen."],
+["mant","mato",".nt.$.sg.$.dat."],
+["mant","mato",".nt.$.sg.$.gen."],
+["mant","mato",".m.$.sg.$.dat."],
+["mant","mato",".m.$.sg.$.gen."],
+["mant","mato",".nt.$.sg.$.dat."],
+["mant","mato",".nt.$.sg.$.gen."],
+["mant","me",".m.$.pl.$.acc."],
+["mant","mebhi",".m.$.pl.$.abl."],
+["mant","mebhi",".m.$.pl.$.inst."],
+["mant","mehi",".m.$.pl.$.abl."],
+["mant","mehi",".m.$.pl.$.inst."],
+["mant","mesu",".m.$.pl.$.loc."],
+["vant","vā",".m.$.pl.$.nom."],
+["vant","vā",".m.$.pl.$.voc."],
+["vant","vā",".m.$.sg.$.nom."],
+["vant","va",".m.$.sg.$.voc."],
+["vant","vā",".m.$.sg.$.voc."],
+["vant","vā",".nt.$.pl.$.nom."],
+["vant","vā",".nt.$.pl.$.voc."],
+["vant","va",".nt.$.sg.$.voc."],
+["vant","vā",".nt.$.sg.$.voc."],
+["vant","vā",".m.$.sg.$.voc."],
+["vant","vā",".nt.$.sg.$.voc."],
+["vant","vaṃ",".m.$.sg.$.acc."],
+["vant","vaṃ",".nt.$.sg.$.acc."],
+["vant","vaṃ",".nt.$.sg.$.nom."],
+["vant","vaṃ",".m.$.sg.$.nom."],
+["vant","vaṃ",".m.$.sg.$.voc."],
+["vant","vaṃ",".nt.$.sg.$.voc."],
+["vant","vaṃ",".m.$.sg.$.voc."],
+["vant","vaṃ",".nt.$.sg.$.voc."],
+["vant","vānaṃ",".m.$.pl.$.dat."],
+["vant","vānaṃ",".m.$.pl.$.gen."],
+["vant","vantā",".m.$.pl.$.nom."],
+["vant","vantā",".m.$.pl.$.voc."],
+["vant","vantā",".m.$.sg.$.abl."],
+["vant","vanta",".m.$.sg.$.voc."],
+["vant","vantā",".m.$.sg.$.voc."],
+["vant","vanta",".nt.$.pl.$.acc."],
+["vant","vantā",".nt.$.pl.$.acc."],
+["vant","vanta",".nt.$.pl.$.nom."],
+["vant","vantā",".nt.$.pl.$.nom."],
+["vant","vanta",".nt.$.pl.$.voc."],
+["vant","vantā",".nt.$.pl.$.voc."],
+["vant","vantā",".nt.$.sg.$.abl."],
+["vant","vanta",".nt.$.sg.$.voc."],
+["vant","vantā",".nt.$.sg.$.voc."],
+["vant","vantaṃ",".m.$.sg.$.acc."],
+["vant","vantaṃ",".nt.$.sg.$.acc."],
+["vant","vantaṃ",".nt.$.sg.$.nom."],
+["vant","vantaṃ",".nt.$.sg.$.nom."],
+["vant","vantaṃ",".m.$.sg.$.acc."],
+["vant","vantaṃ",".nt.$.sg.$.acc."],
+["vant","vantamhā",".m.$.sg.$.abl."],
+["vant","vantamhā",".nt.$.sg.$.abl."],
+["vant","vantamhā",".m.$.sg.$.abl."],
+["vant","vantamhā",".nt.$.sg.$.abl."],
+["vant","vantamhi",".m.$.sg.$.loc."],
+["vant","vantamhi",".nt.$.sg.$.loc."],
+["vant","vantamhi",".m.$.sg.$.loc."],
+["vant","vantamhi",".nt.$.sg.$.loc."],
+["vant","vantānaṃ",".m.$.pl.$.dat."],
+["vant","vantānaṃ",".m.$.pl.$.gen."],
+["vant","vantānaṃ",".nt.$.pl.$.dat."],
+["vant","vantānaṃ",".nt.$.pl.$.gen."],
+["vant","vantānaṃ",".nt.$.pl.$.dat."],
+["vant","vantānaṃ",".nt.$.pl.$.gen."],
+["vant","vantani",".nt.$.pl.$.acc."],
+["vant","vantāni",".nt.$.pl.$.acc."],
+["vant","vantani",".nt.$.pl.$.nom."],
+["vant","vantāni",".nt.$.pl.$.nom."],
+["vant","vantani",".nt.$.pl.$.voc."],
+["vant","vantāni",".nt.$.pl.$.voc."],
+["vant","vantasmā",".m.$.sg.$.abl."],
+["vant","vantasmā",".nt.$.sg.$.abl."],
+["vant","vantasmā",".m.$.sg.$.abl."],
+["vant","vantasmā",".nt.$.sg.$.abl."],
+["vant","vantasmiṃ",".m.$.sg.$.loc."],
+["vant","vantasmiṃ",".nt.$.sg.$.loc."],
+["vant","vantasmiṃ",".m.$.sg.$.loc."],
+["vant","vantasmiṃ",".nt.$.sg.$.loc."],
+["vant","vantassa",".m.$.sg.$.dat."],
+["vant","vantassa",".m.$.sg.$.gen."],
+["vant","vantassa",".nt.$.sg.$.dat."],
+["vant","vantassa",".nt.$.sg.$.gen."],
+["vant","vantassa",".m.$.sg.$.dat."],
+["vant","vantassa",".m.$.sg.$.gen."],
+["vant","vantassa",".nt.$.sg.$.dat."],
+["vant","vantassa",".nt.$.sg.$.gen."],
+["vant","vante",".m.$.pl.$.acc."],
+["vant","vante",".m.$.sg.$.loc."],
+["vant","vante",".nt.$.pl.$.acc."],
+["vant","vante",".nt.$.sg.$.loc."],
+["vant","vantebhi",".m.$.pl.$.abl."],
+["vant","vantebhi",".m.$.pl.$.inst."],
+["vant","vantebhi",".nt.$.pl.$.abl."],
+["vant","vantebhi",".nt.$.pl.$.inst."],
+["vant","vantehi",".m.$.pl.$.abl."],
+["vant","vantehi",".m.$.pl.$.inst."],
+["vant","vantehi",".nt.$.pl.$.abl."],
+["vant","vantehi",".nt.$.pl.$.inst."],
+["vant","vantesu",".m.$.pl.$.loc."],
+["vant","vantesu",".nt.$.pl.$.loc."],
+["vant","vantesu",".nt.$.pl.$.loc."],
+["vant","vantī",".f.$.pl.$.acc."],
+["vant","vantī",".f.$.pl.$.nom."],
+["vant","vantī",".f.$.pl.$.voc."],
+["vant","vantī",".f.$.sg.$.nom."],
+["vant","vantī",".f.$.sg.$.voc."],
+["vant","vantībhi",".f.$.pl.$.abl."],
+["vant","vantībhi",".f.$.pl.$.inst."],
+["vant","vantīhi",".f.$.pl.$.abl."],
+["vant","vantīhi",".f.$.pl.$.inst."],
+["vant","vantiṃ",".f.$.sg.$.acc."],
+["vant","vantīnaṃ",".f.$.pl.$.dat."],
+["vant","vantīnaṃ",".f.$.pl.$.gen."],
+["vant","vantīsu",".f.$.pl.$.loc."],
+["vant","vantiyā",".f.$.sg.$.abl."],
+["vant","vantiyā",".f.$.sg.$.dat."],
+["vant","vantiyā",".f.$.sg.$.gen."],
+["vant","vantiyā",".f.$.sg.$.inst."],
+["vant","vantiyā",".f.$.sg.$.loc."],
+["vant","vantiyaṃ",".f.$.sg.$.loc."],
+["vant","vantiyo",".f.$.pl.$.acc."],
+["vant","vantiyo",".f.$.pl.$.nom."],
+["vant","vantiyo",".f.$.pl.$.voc."],
+["vant","vanto",".m.$.pl.$.nom."],
+["vant","vanto",".m.$.pl.$.voc."],
+["vant","vanto",".m.$.sg.$.nom."],
+["vant","vanto",".nt.$.pl.$.nom."],
+["vant","vanto",".nt.$.pl.$.voc."],
+["vant","vanto",".nt.$.sg.$.nom."],
+["vant","vatā",".m.$.sg.$.abl."],
+["vant","vatā",".m.$.sg.$.inst."],
+["vant","vatā",".nt.$.sg.$.abl."],
+["vant","vatā",".nt.$.sg.$.inst."],
+["vant","vatā",".m.$.sg.$.abl."],
+["vant","vatā",".m.$.sg.$.inst."],
+["vant","vatā",".nt.$.sg.$.abl."],
+["vant","vatā",".nt.$.sg.$.inst."],
+["vant","vataṃ",".m.$.pl.$.dat."],
+["vant","vataṃ",".m.$.pl.$.gen."],
+["vant","vataṃ",".nt.$.pl.$.dat."],
+["vant","vataṃ",".nt.$.pl.$.gen."],
+["vant","vataṃ",".nt.$.pl.$.dat."],
+["vant","vataṃ",".nt.$.pl.$.gen."],
+["vant","vatena",".m.$.sg.$.inst."],
+["vant","vatena",".nt.$.sg.$.inst."],
+["vant","vatena",".m.$.sg.$.inst."],
+["vant","vatena",".nt.$.sg.$.inst."],
+["vant","vatī",".f.$.pl.$.acc."],
+["vant","vatī",".f.$.pl.$.nom."],
+["vant","vatī",".f.$.pl.$.voc."],
+["vant","vatī",".f.$.sg.$.nom."],
+["vant","vatī",".f.$.sg.$.voc."],
+["vant","vati",".m.$.sg.$.loc."],
+["vant","vati",".nt.$.sg.$.loc."],
+["vant","vati",".m.$.sg.$.loc."],
+["vant","vati",".nt.$.sg.$.loc."],
+["vant","vatībhi",".f.$.pl.$.abl."],
+["vant","vatībhi",".f.$.pl.$.inst."],
+["vant","vatīhi",".f.$.pl.$.abl."],
+["vant","vatīhi",".f.$.pl.$.inst."],
+["vant","vatiṃ",".f.$.sg.$.acc."],
+["vant","vatīnaṃ",".f.$.pl.$.dat."],
+["vant","vatīnaṃ",".f.$.pl.$.gen."],
+["vant","vatīsu",".f.$.pl.$.loc."],
+["vant","vatiyā",".f.$.sg.$.abl."],
+["vant","vatiyā",".f.$.sg.$.dat."],
+["vant","vatiyā",".f.$.sg.$.gen."],
+["vant","vatiyā",".f.$.sg.$.inst."],
+["vant","vatiyā",".f.$.sg.$.loc."],
+["vant","vatiyaṃ",".f.$.sg.$.loc."],
+["vant","vatiyo",".f.$.pl.$.acc."],
+["vant","vatiyo",".f.$.pl.$.nom."],
+["vant","vatiyo",".f.$.pl.$.voc."],
+["vant","vato",".m.$.sg.$.dat."],
+["vant","vato",".m.$.sg.$.gen."],
+["vant","vato",".nt.$.sg.$.dat."],
+["vant","vato",".nt.$.sg.$.gen."],
+["vant","vato",".m.$.sg.$.dat."],
+["vant","vato",".m.$.sg.$.gen."],
+["vant","vato",".nt.$.sg.$.dat."],
+["vant","vato",".nt.$.sg.$.gen."],
+["vant","ve",".m.$.pl.$.acc."],
+["vant","vebhi",".m.$.pl.$.abl."],
+["vant","vebhi",".m.$.pl.$.inst."],
+["vant","vehi",".m.$.pl.$.abl."],
+["vant","vehi",".m.$.pl.$.inst."],
+["vant","vesu",".m.$.pl.$.loc."],
+["mantu","mā",".m.$.pl.$.nom."],
+["mantu","mā",".m.$.pl.$.voc."],
+["mantu","mā",".m.$.sg.$.nom."],
+["mantu","ma",".m.$.sg.$.voc."],
+["mantu","mā",".m.$.sg.$.voc."],
+["mantu","mā",".nt.$.pl.$.nom."],
+["mantu","mā",".nt.$.pl.$.voc."],
+["mantu","ma",".nt.$.sg.$.voc."],
+["mantu","mā",".nt.$.sg.$.voc."],
+["mantu","mā",".m.$.sg.$.voc."],
+["mantu","mā",".nt.$.sg.$.voc."],
+["mantu","maṃ",".m.$.sg.$.acc."],
+["mantu","maṃ",".nt.$.sg.$.acc."],
+["mantu","maṃ",".nt.$.sg.$.nom."],
+["mantu","maṃ",".m.$.sg.$.nom."],
+["mantu","maṃ",".m.$.sg.$.voc."],
+["mantu","maṃ",".nt.$.sg.$.voc."],
+["mantu","maṃ",".m.$.sg.$.voc."],
+["mantu","maṃ",".nt.$.sg.$.voc."],
+["mantu","mānaṃ",".m.$.pl.$.dat."],
+["mantu","mānaṃ",".m.$.pl.$.gen."],
+["mantu","mantā",".m.$.pl.$.nom."],
+["mantu","mantā",".m.$.pl.$.voc."],
+["mantu","mantā",".m.$.sg.$.abl."],
+["mantu","manta",".m.$.sg.$.voc."],
+["mantu","mantā",".m.$.sg.$.voc."],
+["mantu","manta",".nt.$.pl.$.acc."],
+["mantu","mantā",".nt.$.pl.$.acc."],
+["mantu","manta",".nt.$.pl.$.nom."],
+["mantu","mantā",".nt.$.pl.$.nom."],
+["mantu","manta",".nt.$.pl.$.voc."],
+["mantu","mantā",".nt.$.pl.$.voc."],
+["mantu","mantā",".nt.$.sg.$.abl."],
+["mantu","manta",".nt.$.sg.$.voc."],
+["mantu","mantā",".nt.$.sg.$.voc."],
+["mantu","mantaṃ",".m.$.sg.$.acc."],
+["mantu","mantaṃ",".nt.$.sg.$.acc."],
+["mantu","mantaṃ",".nt.$.sg.$.nom."],
+["mantu","mantaṃ",".nt.$.sg.$.nom."],
+["mantu","mantaṃ",".m.$.sg.$.acc."],
+["mantu","mantaṃ",".nt.$.sg.$.acc."],
+["mantu","mantamhā",".m.$.sg.$.abl."],
+["mantu","mantamhā",".nt.$.sg.$.abl."],
+["mantu","mantamhā",".m.$.sg.$.abl."],
+["mantu","mantamhā",".nt.$.sg.$.abl."],
+["mantu","mantamhi",".m.$.sg.$.loc."],
+["mantu","mantamhi",".nt.$.sg.$.loc."],
+["mantu","mantamhi",".m.$.sg.$.loc."],
+["mantu","mantamhi",".nt.$.sg.$.loc."],
+["mantu","mantānaṃ",".m.$.pl.$.dat."],
+["mantu","mantānaṃ",".m.$.pl.$.gen."],
+["mantu","mantānaṃ",".nt.$.pl.$.dat."],
+["mantu","mantānaṃ",".nt.$.pl.$.gen."],
+["mantu","mantānaṃ",".nt.$.pl.$.dat."],
+["mantu","mantānaṃ",".nt.$.pl.$.gen."],
+["mantu","mantani",".nt.$.pl.$.acc."],
+["mantu","mantāni",".nt.$.pl.$.acc."],
+["mantu","mantani",".nt.$.pl.$.nom."],
+["mantu","mantāni",".nt.$.pl.$.nom."],
+["mantu","mantani",".nt.$.pl.$.voc."],
+["mantu","mantāni",".nt.$.pl.$.voc."],
+["mantu","mantasmā",".m.$.sg.$.abl."],
+["mantu","mantasmā",".nt.$.sg.$.abl."],
+["mantu","mantasmā",".m.$.sg.$.abl."],
+["mantu","mantasmā",".nt.$.sg.$.abl."],
+["mantu","mantasmiṃ",".m.$.sg.$.loc."],
+["mantu","mantasmiṃ",".nt.$.sg.$.loc."],
+["mantu","mantasmiṃ",".m.$.sg.$.loc."],
+["mantu","mantasmiṃ",".nt.$.sg.$.loc."],
+["mantu","mantassa",".m.$.sg.$.dat."],
+["mantu","mantassa",".m.$.sg.$.gen."],
+["mantu","mantassa",".nt.$.sg.$.dat."],
+["mantu","mantassa",".nt.$.sg.$.gen."],
+["mantu","mantassa",".m.$.sg.$.dat."],
+["mantu","mantassa",".m.$.sg.$.gen."],
+["mantu","mantassa",".nt.$.sg.$.dat."],
+["mantu","mantassa",".nt.$.sg.$.gen."],
+["mantu","mante",".m.$.pl.$.acc."],
+["mantu","mante",".m.$.sg.$.loc."],
+["mantu","mante",".nt.$.pl.$.acc."],
+["mantu","mante",".nt.$.sg.$.loc."],
+["mantu","mantebhi",".m.$.pl.$.abl."],
+["mantu","mantebhi",".m.$.pl.$.inst."],
+["mantu","mantebhi",".nt.$.pl.$.abl."],
+["mantu","mantebhi",".nt.$.pl.$.inst."],
+["mantu","mantehi",".m.$.pl.$.abl."],
+["mantu","mantehi",".m.$.pl.$.inst."],
+["mantu","mantehi",".nt.$.pl.$.abl."],
+["mantu","mantehi",".nt.$.pl.$.inst."],
+["mantu","mantesu",".m.$.pl.$.loc."],
+["mantu","mantesu",".nt.$.pl.$.loc."],
+["mantu","mantesu",".nt.$.pl.$.loc."],
+["mantu","mantī",".f.$.pl.$.acc."],
+["mantu","mantī",".f.$.pl.$.nom."],
+["mantu","mantī",".f.$.pl.$.voc."],
+["mantu","mantī",".f.$.sg.$.nom."],
+["mantu","mantī",".f.$.sg.$.voc."],
+["mantu","mantībhi",".f.$.pl.$.abl."],
+["mantu","mantībhi",".f.$.pl.$.inst."],
+["mantu","mantīhi",".f.$.pl.$.abl."],
+["mantu","mantīhi",".f.$.pl.$.inst."],
+["mantu","mantiṃ",".f.$.sg.$.acc."],
+["mantu","mantīnaṃ",".f.$.pl.$.dat."],
+["mantu","mantīnaṃ",".f.$.pl.$.gen."],
+["mantu","mantīsu",".f.$.pl.$.loc."],
+["mantu","mantiyā",".f.$.sg.$.abl."],
+["mantu","mantiyā",".f.$.sg.$.dat."],
+["mantu","mantiyā",".f.$.sg.$.gen."],
+["mantu","mantiyā",".f.$.sg.$.inst."],
+["mantu","mantiyā",".f.$.sg.$.loc."],
+["mantu","mantiyaṃ",".f.$.sg.$.loc."],
+["mantu","mantiyo",".f.$.pl.$.acc."],
+["mantu","mantiyo",".f.$.pl.$.nom."],
+["mantu","mantiyo",".f.$.pl.$.voc."],
+["mantu","manto",".m.$.pl.$.nom."],
+["mantu","manto",".m.$.pl.$.voc."],
+["mantu","manto",".m.$.sg.$.nom."],
+["mantu","manto",".nt.$.pl.$.nom."],
+["mantu","manto",".nt.$.pl.$.voc."],
+["mantu","manto",".nt.$.sg.$.nom."],
+["mantu","matā",".m.$.sg.$.abl."],
+["mantu","matā",".m.$.sg.$.inst."],
+["mantu","matā",".nt.$.sg.$.abl."],
+["mantu","matā",".nt.$.sg.$.inst."],
+["mantu","matā",".m.$.sg.$.abl."],
+["mantu","matā",".m.$.sg.$.inst."],
+["mantu","matā",".nt.$.sg.$.abl."],
+["mantu","matā",".nt.$.sg.$.inst."],
+["mantu","mataṃ",".m.$.pl.$.dat."],
+["mantu","mataṃ",".m.$.pl.$.gen."],
+["mantu","mataṃ",".nt.$.pl.$.dat."],
+["mantu","mataṃ",".nt.$.pl.$.gen."],
+["mantu","mataṃ",".nt.$.pl.$.dat."],
+["mantu","mataṃ",".nt.$.pl.$.gen."],
+["mantu","matena",".m.$.sg.$.inst."],
+["mantu","matena",".nt.$.sg.$.inst."],
+["mantu","matena",".m.$.sg.$.inst."],
+["mantu","matena",".nt.$.sg.$.inst."],
+["mantu","matī",".f.$.pl.$.acc."],
+["mantu","matī",".f.$.pl.$.nom."],
+["mantu","matī",".f.$.pl.$.voc."],
+["mantu","matī",".f.$.sg.$.nom."],
+["mantu","matī",".f.$.sg.$.voc."],
+["mantu","mati",".m.$.sg.$.loc."],
+["mantu","mati",".nt.$.sg.$.loc."],
+["mantu","mati",".m.$.sg.$.loc."],
+["mantu","mati",".nt.$.sg.$.loc."],
+["mantu","matībhi",".f.$.pl.$.abl."],
+["mantu","matībhi",".f.$.pl.$.inst."],
+["mantu","matīhi",".f.$.pl.$.abl."],
+["mantu","matīhi",".f.$.pl.$.inst."],
+["mantu","matiṃ",".f.$.sg.$.acc."],
+["mantu","matīnaṃ",".f.$.pl.$.dat."],
+["mantu","matīnaṃ",".f.$.pl.$.gen."],
+["mantu","matīsu",".f.$.pl.$.loc."],
+["mantu","matiyā",".f.$.sg.$.abl."],
+["mantu","matiyā",".f.$.sg.$.dat."],
+["mantu","matiyā",".f.$.sg.$.gen."],
+["mantu","matiyā",".f.$.sg.$.inst."],
+["mantu","matiyā",".f.$.sg.$.loc."],
+["mantu","matiyaṃ",".f.$.sg.$.loc."],
+["mantu","matiyo",".f.$.pl.$.acc."],
+["mantu","matiyo",".f.$.pl.$.nom."],
+["mantu","matiyo",".f.$.pl.$.voc."],
+["mantu","mato",".m.$.sg.$.dat."],
+["mantu","mato",".m.$.sg.$.gen."],
+["mantu","mato",".nt.$.sg.$.dat."],
+["mantu","mato",".nt.$.sg.$.gen."],
+["mantu","mato",".m.$.sg.$.dat."],
+["mantu","mato",".m.$.sg.$.gen."],
+["mantu","mato",".nt.$.sg.$.dat."],
+["mantu","mato",".nt.$.sg.$.gen."],
+["mantu","me",".m.$.pl.$.acc."],
+["mantu","mebhi",".m.$.pl.$.abl."],
+["mantu","mebhi",".m.$.pl.$.inst."],
+["mantu","mehi",".m.$.pl.$.abl."],
+["mantu","mehi",".m.$.pl.$.inst."],
+["mantu","mesu",".m.$.pl.$.loc."],
+["vantu","vā",".m.$.pl.$.nom."],
+["vantu","vā",".m.$.pl.$.voc."],
+["vantu","vā",".m.$.sg.$.nom."],
+["vantu","va",".m.$.sg.$.voc."],
+["vantu","vā",".m.$.sg.$.voc."],
+["vantu","vā",".nt.$.pl.$.nom."],
+["vantu","vā",".nt.$.pl.$.voc."],
+["vantu","va",".nt.$.sg.$.voc."],
+["vantu","vā",".nt.$.sg.$.voc."],
+["vantu","vā",".m.$.sg.$.voc."],
+["vantu","vā",".nt.$.sg.$.voc."],
+["vantu","vaṃ",".m.$.sg.$.acc."],
+["vantu","vaṃ",".nt.$.sg.$.acc."],
+["vantu","vaṃ",".nt.$.sg.$.nom."],
+["vantu","vaṃ",".m.$.sg.$.nom."],
+["vantu","vaṃ",".m.$.sg.$.voc."],
+["vantu","vaṃ",".nt.$.sg.$.voc."],
+["vantu","vaṃ",".m.$.sg.$.voc."],
+["vantu","vaṃ",".nt.$.sg.$.voc."],
+["vantu","vānaṃ",".m.$.pl.$.dat."],
+["vantu","vānaṃ",".m.$.pl.$.gen."],
+["vantu","vantā",".m.$.pl.$.nom."],
+["vantu","vantā",".m.$.pl.$.voc."],
+["vantu","vantā",".m.$.sg.$.abl."],
+["vantu","vanta",".m.$.sg.$.voc."],
+["vantu","vantā",".m.$.sg.$.voc."],
+["vantu","vanta",".nt.$.pl.$.acc."],
+["vantu","vantā",".nt.$.pl.$.acc."],
+["vantu","vanta",".nt.$.pl.$.nom."],
+["vantu","vantā",".nt.$.pl.$.nom."],
+["vantu","vanta",".nt.$.pl.$.voc."],
+["vantu","vantā",".nt.$.pl.$.voc."],
+["vantu","vantā",".nt.$.sg.$.abl."],
+["vantu","vanta",".nt.$.sg.$.voc."],
+["vantu","vantā",".nt.$.sg.$.voc."],
+["vantu","vantaṃ",".m.$.sg.$.acc."],
+["vantu","vantaṃ",".nt.$.sg.$.acc."],
+["vantu","vantaṃ",".nt.$.sg.$.nom."],
+["vantu","vantaṃ",".nt.$.sg.$.nom."],
+["vantu","vantaṃ",".m.$.sg.$.acc."],
+["vantu","vantaṃ",".nt.$.sg.$.acc."],
+["vantu","vantamhā",".m.$.sg.$.abl."],
+["vantu","vantamhā",".nt.$.sg.$.abl."],
+["vantu","vantamhā",".m.$.sg.$.abl."],
+["vantu","vantamhā",".nt.$.sg.$.abl."],
+["vantu","vantamhi",".m.$.sg.$.loc."],
+["vantu","vantamhi",".nt.$.sg.$.loc."],
+["vantu","vantamhi",".m.$.sg.$.loc."],
+["vantu","vantamhi",".nt.$.sg.$.loc."],
+["vantu","vantānaṃ",".m.$.pl.$.dat."],
+["vantu","vantānaṃ",".m.$.pl.$.gen."],
+["vantu","vantānaṃ",".nt.$.pl.$.dat."],
+["vantu","vantānaṃ",".nt.$.pl.$.gen."],
+["vantu","vantānaṃ",".nt.$.pl.$.dat."],
+["vantu","vantānaṃ",".nt.$.pl.$.gen."],
+["vantu","vantani",".nt.$.pl.$.acc."],
+["vantu","vantāni",".nt.$.pl.$.acc."],
+["vantu","vantani",".nt.$.pl.$.nom."],
+["vantu","vantāni",".nt.$.pl.$.nom."],
+["vantu","vantani",".nt.$.pl.$.voc."],
+["vantu","vantāni",".nt.$.pl.$.voc."],
+["vantu","vantasmā",".m.$.sg.$.abl."],
+["vantu","vantasmā",".nt.$.sg.$.abl."],
+["vantu","vantasmā",".m.$.sg.$.abl."],
+["vantu","vantasmā",".nt.$.sg.$.abl."],
+["vantu","vantasmiṃ",".m.$.sg.$.loc."],
+["vantu","vantasmiṃ",".nt.$.sg.$.loc."],
+["vantu","vantasmiṃ",".m.$.sg.$.loc."],
+["vantu","vantasmiṃ",".nt.$.sg.$.loc."],
+["vantu","vantassa",".m.$.sg.$.dat."],
+["vantu","vantassa",".m.$.sg.$.gen."],
+["vantu","vantassa",".nt.$.sg.$.dat."],
+["vantu","vantassa",".nt.$.sg.$.gen."],
+["vantu","vantassa",".m.$.sg.$.dat."],
+["vantu","vantassa",".m.$.sg.$.gen."],
+["vantu","vantassa",".nt.$.sg.$.dat."],
+["vantu","vantassa",".nt.$.sg.$.gen."],
+["vantu","vante",".m.$.pl.$.acc."],
+["vantu","vante",".m.$.sg.$.loc."],
+["vantu","vante",".nt.$.pl.$.acc."],
+["vantu","vante",".nt.$.sg.$.loc."],
+["vantu","vantebhi",".m.$.pl.$.abl."],
+["vantu","vantebhi",".m.$.pl.$.inst."],
+["vantu","vantebhi",".nt.$.pl.$.abl."],
+["vantu","vantebhi",".nt.$.pl.$.inst."],
+["vantu","vantehi",".m.$.pl.$.abl."],
+["vantu","vantehi",".m.$.pl.$.inst."],
+["vantu","vantehi",".nt.$.pl.$.abl."],
+["vantu","vantehi",".nt.$.pl.$.inst."],
+["vantu","vantesu",".m.$.pl.$.loc."],
+["vantu","vantesu",".nt.$.pl.$.loc."],
+["vantu","vantesu",".nt.$.pl.$.loc."],
+["vantu","vantī",".f.$.pl.$.acc."],
+["vantu","vantī",".f.$.pl.$.nom."],
+["vantu","vantī",".f.$.pl.$.voc."],
+["vantu","vantī",".f.$.sg.$.nom."],
+["vantu","vantī",".f.$.sg.$.voc."],
+["vantu","vantībhi",".f.$.pl.$.abl."],
+["vantu","vantībhi",".f.$.pl.$.inst."],
+["vantu","vantīhi",".f.$.pl.$.abl."],
+["vantu","vantīhi",".f.$.pl.$.inst."],
+["vantu","vantiṃ",".f.$.sg.$.acc."],
+["vantu","vantīnaṃ",".f.$.pl.$.dat."],
+["vantu","vantīnaṃ",".f.$.pl.$.gen."],
+["vantu","vantīsu",".f.$.pl.$.loc."],
+["vantu","vantiyā",".f.$.sg.$.abl."],
+["vantu","vantiyā",".f.$.sg.$.dat."],
+["vantu","vantiyā",".f.$.sg.$.gen."],
+["vantu","vantiyā",".f.$.sg.$.inst."],
+["vantu","vantiyā",".f.$.sg.$.loc."],
+["vantu","vantiyaṃ",".f.$.sg.$.loc."],
+["vantu","vantiyo",".f.$.pl.$.acc."],
+["vantu","vantiyo",".f.$.pl.$.nom."],
+["vantu","vantiyo",".f.$.pl.$.voc."],
+["vantu","vanto",".m.$.pl.$.nom."],
+["vantu","vanto",".m.$.pl.$.voc."],
+["vantu","vanto",".m.$.sg.$.nom."],
+["vantu","vanto",".nt.$.pl.$.nom."],
+["vantu","vanto",".nt.$.pl.$.voc."],
+["vantu","vanto",".nt.$.sg.$.nom."],
+["vantu","vatā",".m.$.sg.$.abl."],
+["vantu","vatā",".m.$.sg.$.inst."],
+["vantu","vatā",".nt.$.sg.$.abl."],
+["vantu","vatā",".nt.$.sg.$.inst."],
+["vantu","vatā",".m.$.sg.$.abl."],
+["vantu","vatā",".m.$.sg.$.inst."],
+["vantu","vatā",".nt.$.sg.$.abl."],
+["vantu","vatā",".nt.$.sg.$.inst."],
+["vantu","vataṃ",".m.$.pl.$.dat."],
+["vantu","vataṃ",".m.$.pl.$.gen."],
+["vantu","vataṃ",".nt.$.pl.$.dat."],
+["vantu","vataṃ",".nt.$.pl.$.gen."],
+["vantu","vataṃ",".nt.$.pl.$.dat."],
+["vantu","vataṃ",".nt.$.pl.$.gen."],
+["vantu","vatena",".m.$.sg.$.inst."],
+["vantu","vatena",".nt.$.sg.$.inst."],
+["vantu","vatena",".m.$.sg.$.inst."],
+["vantu","vatena",".nt.$.sg.$.inst."],
+["vantu","vatī",".f.$.pl.$.acc."],
+["vantu","vatī",".f.$.pl.$.nom."],
+["vantu","vatī",".f.$.pl.$.voc."],
+["vantu","vatī",".f.$.sg.$.nom."],
+["vantu","vatī",".f.$.sg.$.voc."],
+["vantu","vati",".m.$.sg.$.loc."],
+["vantu","vati",".nt.$.sg.$.loc."],
+["vantu","vati",".m.$.sg.$.loc."],
+["vantu","vati",".nt.$.sg.$.loc."],
+["vantu","vatībhi",".f.$.pl.$.abl."],
+["vantu","vatībhi",".f.$.pl.$.inst."],
+["vantu","vatīhi",".f.$.pl.$.abl."],
+["vantu","vatīhi",".f.$.pl.$.inst."],
+["vantu","vatiṃ",".f.$.sg.$.acc."],
+["vantu","vatīnaṃ",".f.$.pl.$.dat."],
+["vantu","vatīnaṃ",".f.$.pl.$.gen."],
+["vantu","vatīsu",".f.$.pl.$.loc."],
+["vantu","vatiyā",".f.$.sg.$.abl."],
+["vantu","vatiyā",".f.$.sg.$.dat."],
+["vantu","vatiyā",".f.$.sg.$.gen."],
+["vantu","vatiyā",".f.$.sg.$.inst."],
+["vantu","vatiyā",".f.$.sg.$.loc."],
+["vantu","vatiyaṃ",".f.$.sg.$.loc."],
+["vantu","vatiyo",".f.$.pl.$.acc."],
+["vantu","vatiyo",".f.$.pl.$.nom."],
+["vantu","vatiyo",".f.$.pl.$.voc."],
+["vantu","vato",".m.$.sg.$.dat."],
+["vantu","vato",".m.$.sg.$.gen."],
+["vantu","vato",".nt.$.sg.$.dat."],
+["vantu","vato",".nt.$.sg.$.gen."],
+["vantu","vato",".m.$.sg.$.dat."],
+["vantu","vato",".m.$.sg.$.gen."],
+["vantu","vato",".nt.$.sg.$.dat."],
+["vantu","vato",".nt.$.sg.$.gen."],
+["vantu","ve",".m.$.pl.$.acc."],
+["vantu","vebhi",".m.$.pl.$.abl."],
+["vantu","vebhi",".m.$.pl.$.inst."],
+["vantu","vehi",".m.$.pl.$.abl."],
+["vantu","vehi",".m.$.pl.$.inst."],
+["vantu","vesu",".m.$.pl.$.loc."],
+["mat","mā",".m.$.pl.$.nom."],
+["mat","mā",".m.$.pl.$.voc."],
+["mat","mā",".m.$.sg.$.nom."],
+["mat","ma",".m.$.sg.$.voc."],
+["mat","mā",".m.$.sg.$.voc."],
+["mat","mā",".nt.$.pl.$.nom."],
+["mat","mā",".nt.$.pl.$.voc."],
+["mat","ma",".nt.$.sg.$.voc."],
+["mat","mā",".nt.$.sg.$.voc."],
+["mat","mā",".m.$.sg.$.voc."],
+["mat","mā",".nt.$.sg.$.voc."],
+["mat","maṃ",".m.$.sg.$.acc."],
+["mat","maṃ",".nt.$.sg.$.acc."],
+["mat","maṃ",".nt.$.sg.$.nom."],
+["mat","maṃ",".m.$.sg.$.nom."],
+["mat","maṃ",".m.$.sg.$.voc."],
+["mat","maṃ",".nt.$.sg.$.voc."],
+["mat","maṃ",".m.$.sg.$.voc."],
+["mat","maṃ",".nt.$.sg.$.voc."],
+["mat","mānaṃ",".m.$.pl.$.dat."],
+["mat","mānaṃ",".m.$.pl.$.gen."],
+["mat","mantā",".m.$.pl.$.nom."],
+["mat","mantā",".m.$.pl.$.voc."],
+["mat","mantā",".m.$.sg.$.abl."],
+["mat","manta",".m.$.sg.$.voc."],
+["mat","mantā",".m.$.sg.$.voc."],
+["mat","manta",".nt.$.pl.$.acc."],
+["mat","mantā",".nt.$.pl.$.acc."],
+["mat","manta",".nt.$.pl.$.nom."],
+["mat","mantā",".nt.$.pl.$.nom."],
+["mat","manta",".nt.$.pl.$.voc."],
+["mat","mantā",".nt.$.pl.$.voc."],
+["mat","mantā",".nt.$.sg.$.abl."],
+["mat","manta",".nt.$.sg.$.voc."],
+["mat","mantā",".nt.$.sg.$.voc."],
+["mat","mantaṃ",".m.$.sg.$.acc."],
+["mat","mantaṃ",".nt.$.sg.$.acc."],
+["mat","mantaṃ",".nt.$.sg.$.nom."],
+["mat","mantaṃ",".nt.$.sg.$.nom."],
+["mat","mantaṃ",".m.$.sg.$.acc."],
+["mat","mantaṃ",".nt.$.sg.$.acc."],
+["mat","mantamhā",".m.$.sg.$.abl."],
+["mat","mantamhā",".nt.$.sg.$.abl."],
+["mat","mantamhā",".m.$.sg.$.abl."],
+["mat","mantamhā",".nt.$.sg.$.abl."],
+["mat","mantamhi",".m.$.sg.$.loc."],
+["mat","mantamhi",".nt.$.sg.$.loc."],
+["mat","mantamhi",".m.$.sg.$.loc."],
+["mat","mantamhi",".nt.$.sg.$.loc."],
+["mat","mantānaṃ",".m.$.pl.$.dat."],
+["mat","mantānaṃ",".m.$.pl.$.gen."],
+["mat","mantānaṃ",".nt.$.pl.$.dat."],
+["mat","mantānaṃ",".nt.$.pl.$.gen."],
+["mat","mantānaṃ",".nt.$.pl.$.dat."],
+["mat","mantānaṃ",".nt.$.pl.$.gen."],
+["mat","mantani",".nt.$.pl.$.acc."],
+["mat","mantāni",".nt.$.pl.$.acc."],
+["mat","mantani",".nt.$.pl.$.nom."],
+["mat","mantāni",".nt.$.pl.$.nom."],
+["mat","mantani",".nt.$.pl.$.voc."],
+["mat","mantāni",".nt.$.pl.$.voc."],
+["mat","mantasmā",".m.$.sg.$.abl."],
+["mat","mantasmā",".nt.$.sg.$.abl."],
+["mat","mantasmā",".m.$.sg.$.abl."],
+["mat","mantasmā",".nt.$.sg.$.abl."],
+["mat","mantasmiṃ",".m.$.sg.$.loc."],
+["mat","mantasmiṃ",".nt.$.sg.$.loc."],
+["mat","mantasmiṃ",".m.$.sg.$.loc."],
+["mat","mantasmiṃ",".nt.$.sg.$.loc."],
+["mat","mantassa",".m.$.sg.$.dat."],
+["mat","mantassa",".m.$.sg.$.gen."],
+["mat","mantassa",".nt.$.sg.$.dat."],
+["mat","mantassa",".nt.$.sg.$.gen."],
+["mat","mantassa",".m.$.sg.$.dat."],
+["mat","mantassa",".m.$.sg.$.gen."],
+["mat","mantassa",".nt.$.sg.$.dat."],
+["mat","mantassa",".nt.$.sg.$.gen."],
+["mat","mante",".m.$.pl.$.acc."],
+["mat","mante",".m.$.sg.$.loc."],
+["mat","mante",".nt.$.pl.$.acc."],
+["mat","mante",".nt.$.sg.$.loc."],
+["mat","mantebhi",".m.$.pl.$.abl."],
+["mat","mantebhi",".m.$.pl.$.inst."],
+["mat","mantebhi",".nt.$.pl.$.abl."],
+["mat","mantebhi",".nt.$.pl.$.inst."],
+["mat","mantehi",".m.$.pl.$.abl."],
+["mat","mantehi",".m.$.pl.$.inst."],
+["mat","mantehi",".nt.$.pl.$.abl."],
+["mat","mantehi",".nt.$.pl.$.inst."],
+["mat","mantesu",".m.$.pl.$.loc."],
+["mat","mantesu",".nt.$.pl.$.loc."],
+["mat","mantesu",".nt.$.pl.$.loc."],
+["mat","mantī",".f.$.pl.$.acc."],
+["mat","mantī",".f.$.pl.$.nom."],
+["mat","mantī",".f.$.pl.$.voc."],
+["mat","mantī",".f.$.sg.$.nom."],
+["mat","mantī",".f.$.sg.$.voc."],
+["mat","mantībhi",".f.$.pl.$.abl."],
+["mat","mantībhi",".f.$.pl.$.inst."],
+["mat","mantīhi",".f.$.pl.$.abl."],
+["mat","mantīhi",".f.$.pl.$.inst."],
+["mat","mantiṃ",".f.$.sg.$.acc."],
+["mat","mantīnaṃ",".f.$.pl.$.dat."],
+["mat","mantīnaṃ",".f.$.pl.$.gen."],
+["mat","mantīsu",".f.$.pl.$.loc."],
+["mat","mantiyā",".f.$.sg.$.abl."],
+["mat","mantiyā",".f.$.sg.$.dat."],
+["mat","mantiyā",".f.$.sg.$.gen."],
+["mat","mantiyā",".f.$.sg.$.inst."],
+["mat","mantiyā",".f.$.sg.$.loc."],
+["mat","mantiyaṃ",".f.$.sg.$.loc."],
+["mat","mantiyo",".f.$.pl.$.acc."],
+["mat","mantiyo",".f.$.pl.$.nom."],
+["mat","mantiyo",".f.$.pl.$.voc."],
+["mat","manto",".m.$.pl.$.nom."],
+["mat","manto",".m.$.pl.$.voc."],
+["mat","manto",".m.$.sg.$.nom."],
+["mat","manto",".nt.$.pl.$.nom."],
+["mat","manto",".nt.$.pl.$.voc."],
+["mat","manto",".nt.$.sg.$.nom."],
+["mat","matā",".m.$.sg.$.abl."],
+["mat","matā",".m.$.sg.$.inst."],
+["mat","matā",".nt.$.sg.$.abl."],
+["mat","matā",".nt.$.sg.$.inst."],
+["mat","matā",".m.$.sg.$.abl."],
+["mat","matā",".m.$.sg.$.inst."],
+["mat","matā",".nt.$.sg.$.abl."],
+["mat","matā",".nt.$.sg.$.inst."],
+["mat","mataṃ",".m.$.pl.$.dat."],
+["mat","mataṃ",".m.$.pl.$.gen."],
+["mat","mataṃ",".nt.$.pl.$.dat."],
+["mat","mataṃ",".nt.$.pl.$.gen."],
+["mat","mataṃ",".nt.$.pl.$.dat."],
+["mat","mataṃ",".nt.$.pl.$.gen."],
+["mat","matena",".m.$.sg.$.inst."],
+["mat","matena",".nt.$.sg.$.inst."],
+["mat","matena",".m.$.sg.$.inst."],
+["mat","matena",".nt.$.sg.$.inst."],
+["mat","matī",".f.$.pl.$.acc."],
+["mat","matī",".f.$.pl.$.nom."],
+["mat","matī",".f.$.pl.$.voc."],
+["mat","matī",".f.$.sg.$.nom."],
+["mat","matī",".f.$.sg.$.voc."],
+["mat","mati",".m.$.sg.$.loc."],
+["mat","mati",".nt.$.sg.$.loc."],
+["mat","mati",".m.$.sg.$.loc."],
+["mat","mati",".nt.$.sg.$.loc."],
+["mat","matībhi",".f.$.pl.$.abl."],
+["mat","matībhi",".f.$.pl.$.inst."],
+["mat","matīhi",".f.$.pl.$.abl."],
+["mat","matīhi",".f.$.pl.$.inst."],
+["mat","matiṃ",".f.$.sg.$.acc."],
+["mat","matīnaṃ",".f.$.pl.$.dat."],
+["mat","matīnaṃ",".f.$.pl.$.gen."],
+["mat","matīsu",".f.$.pl.$.loc."],
+["mat","matiyā",".f.$.sg.$.abl."],
+["mat","matiyā",".f.$.sg.$.dat."],
+["mat","matiyā",".f.$.sg.$.gen."],
+["mat","matiyā",".f.$.sg.$.inst."],
+["mat","matiyā",".f.$.sg.$.loc."],
+["mat","matiyaṃ",".f.$.sg.$.loc."],
+["mat","matiyo",".f.$.pl.$.acc."],
+["mat","matiyo",".f.$.pl.$.nom."],
+["mat","matiyo",".f.$.pl.$.voc."],
+["mat","mato",".m.$.sg.$.dat."],
+["mat","mato",".m.$.sg.$.gen."],
+["mat","mato",".nt.$.sg.$.dat."],
+["mat","mato",".nt.$.sg.$.gen."],
+["mat","mato",".m.$.sg.$.dat."],
+["mat","mato",".m.$.sg.$.gen."],
+["mat","mato",".nt.$.sg.$.dat."],
+["mat","mato",".nt.$.sg.$.gen."],
+["mat","me",".m.$.pl.$.acc."],
+["mat","mebhi",".m.$.pl.$.abl."],
+["mat","mebhi",".m.$.pl.$.inst."],
+["mat","mehi",".m.$.pl.$.abl."],
+["mat","mehi",".m.$.pl.$.inst."],
+["mat","mesu",".m.$.pl.$.loc."],
+["vat","vā",".m.$.pl.$.nom."],
+["vat","vā",".m.$.pl.$.voc."],
+["vat","vā",".m.$.sg.$.nom."],
+["vat","va",".m.$.sg.$.voc."],
+["vat","vā",".m.$.sg.$.voc."],
+["vat","vā",".nt.$.pl.$.nom."],
+["vat","vā",".nt.$.pl.$.voc."],
+["vat","va",".nt.$.sg.$.voc."],
+["vat","vā",".nt.$.sg.$.voc."],
+["vat","vā",".m.$.sg.$.voc."],
+["vat","vā",".nt.$.sg.$.voc."],
+["vat","vaṃ",".m.$.sg.$.acc."],
+["vat","vaṃ",".nt.$.sg.$.acc."],
+["vat","vaṃ",".nt.$.sg.$.nom."],
+["vat","vaṃ",".m.$.sg.$.nom."],
+["vat","vaṃ",".m.$.sg.$.voc."],
+["vat","vaṃ",".nt.$.sg.$.voc."],
+["vat","vaṃ",".m.$.sg.$.voc."],
+["vat","vaṃ",".nt.$.sg.$.voc."],
+["vat","vānaṃ",".m.$.pl.$.dat."],
+["vat","vānaṃ",".m.$.pl.$.gen."],
+["vat","vantā",".m.$.pl.$.nom."],
+["vat","vantā",".m.$.pl.$.voc."],
+["vat","vantā",".m.$.sg.$.abl."],
+["vat","vanta",".m.$.sg.$.voc."],
+["vat","vantā",".m.$.sg.$.voc."],
+["vat","vanta",".nt.$.pl.$.acc."],
+["vat","vantā",".nt.$.pl.$.acc."],
+["vat","vanta",".nt.$.pl.$.nom."],
+["vat","vantā",".nt.$.pl.$.nom."],
+["vat","vanta",".nt.$.pl.$.voc."],
+["vat","vantā",".nt.$.pl.$.voc."],
+["vat","vantā",".nt.$.sg.$.abl."],
+["vat","vanta",".nt.$.sg.$.voc."],
+["vat","vantā",".nt.$.sg.$.voc."],
+["vat","vantaṃ",".m.$.sg.$.acc."],
+["vat","vantaṃ",".nt.$.sg.$.acc."],
+["vat","vantaṃ",".nt.$.sg.$.nom."],
+["vat","vantaṃ",".nt.$.sg.$.nom."],
+["vat","vantaṃ",".m.$.sg.$.acc."],
+["vat","vantaṃ",".nt.$.sg.$.acc."],
+["vat","vantamhā",".m.$.sg.$.abl."],
+["vat","vantamhā",".nt.$.sg.$.abl."],
+["vat","vantamhā",".m.$.sg.$.abl."],
+["vat","vantamhā",".nt.$.sg.$.abl."],
+["vat","vantamhi",".m.$.sg.$.loc."],
+["vat","vantamhi",".nt.$.sg.$.loc."],
+["vat","vantamhi",".m.$.sg.$.loc."],
+["vat","vantamhi",".nt.$.sg.$.loc."],
+["vat","vantānaṃ",".m.$.pl.$.dat."],
+["vat","vantānaṃ",".m.$.pl.$.gen."],
+["vat","vantānaṃ",".nt.$.pl.$.dat."],
+["vat","vantānaṃ",".nt.$.pl.$.gen."],
+["vat","vantānaṃ",".nt.$.pl.$.dat."],
+["vat","vantānaṃ",".nt.$.pl.$.gen."],
+["vat","vantani",".nt.$.pl.$.acc."],
+["vat","vantāni",".nt.$.pl.$.acc."],
+["vat","vantani",".nt.$.pl.$.nom."],
+["vat","vantāni",".nt.$.pl.$.nom."],
+["vat","vantani",".nt.$.pl.$.voc."],
+["vat","vantāni",".nt.$.pl.$.voc."],
+["vat","vantasmā",".m.$.sg.$.abl."],
+["vat","vantasmā",".nt.$.sg.$.abl."],
+["vat","vantasmā",".m.$.sg.$.abl."],
+["vat","vantasmā",".nt.$.sg.$.abl."],
+["vat","vantasmiṃ",".m.$.sg.$.loc."],
+["vat","vantasmiṃ",".nt.$.sg.$.loc."],
+["vat","vantasmiṃ",".m.$.sg.$.loc."],
+["vat","vantasmiṃ",".nt.$.sg.$.loc."],
+["vat","vantassa",".m.$.sg.$.dat."],
+["vat","vantassa",".m.$.sg.$.gen."],
+["vat","vantassa",".nt.$.sg.$.dat."],
+["vat","vantassa",".nt.$.sg.$.gen."],
+["vat","vantassa",".m.$.sg.$.dat."],
+["vat","vantassa",".m.$.sg.$.gen."],
+["vat","vantassa",".nt.$.sg.$.dat."],
+["vat","vantassa",".nt.$.sg.$.gen."],
+["vat","vante",".m.$.pl.$.acc."],
+["vat","vante",".m.$.sg.$.loc."],
+["vat","vante",".nt.$.pl.$.acc."],
+["vat","vante",".nt.$.sg.$.loc."],
+["vat","vantebhi",".m.$.pl.$.abl."],
+["vat","vantebhi",".m.$.pl.$.inst."],
+["vat","vantebhi",".nt.$.pl.$.abl."],
+["vat","vantebhi",".nt.$.pl.$.inst."],
+["vat","vantehi",".m.$.pl.$.abl."],
+["vat","vantehi",".m.$.pl.$.inst."],
+["vat","vantehi",".nt.$.pl.$.abl."],
+["vat","vantehi",".nt.$.pl.$.inst."],
+["vat","vantesu",".m.$.pl.$.loc."],
+["vat","vantesu",".nt.$.pl.$.loc."],
+["vat","vantesu",".nt.$.pl.$.loc."],
+["vat","vantī",".f.$.pl.$.acc."],
+["vat","vantī",".f.$.pl.$.nom."],
+["vat","vantī",".f.$.pl.$.voc."],
+["vat","vantī",".f.$.sg.$.nom."],
+["vat","vantī",".f.$.sg.$.voc."],
+["vat","vantībhi",".f.$.pl.$.abl."],
+["vat","vantībhi",".f.$.pl.$.inst."],
+["vat","vantīhi",".f.$.pl.$.abl."],
+["vat","vantīhi",".f.$.pl.$.inst."],
+["vat","vantiṃ",".f.$.sg.$.acc."],
+["vat","vantīnaṃ",".f.$.pl.$.dat."],
+["vat","vantīnaṃ",".f.$.pl.$.gen."],
+["vat","vantīsu",".f.$.pl.$.loc."],
+["vat","vantiyā",".f.$.sg.$.abl."],
+["vat","vantiyā",".f.$.sg.$.dat."],
+["vat","vantiyā",".f.$.sg.$.gen."],
+["vat","vantiyā",".f.$.sg.$.inst."],
+["vat","vantiyā",".f.$.sg.$.loc."],
+["vat","vantiyaṃ",".f.$.sg.$.loc."],
+["vat","vantiyo",".f.$.pl.$.acc."],
+["vat","vantiyo",".f.$.pl.$.nom."],
+["vat","vantiyo",".f.$.pl.$.voc."],
+["vat","vanto",".m.$.pl.$.nom."],
+["vat","vanto",".m.$.pl.$.voc."],
+["vat","vanto",".m.$.sg.$.nom."],
+["vat","vanto",".nt.$.pl.$.nom."],
+["vat","vanto",".nt.$.pl.$.voc."],
+["vat","vanto",".nt.$.sg.$.nom."],
+["vat","vatā",".m.$.sg.$.abl."],
+["vat","vatā",".m.$.sg.$.inst."],
+["vat","vatā",".nt.$.sg.$.abl."],
+["vat","vatā",".nt.$.sg.$.inst."],
+["vat","vatā",".m.$.sg.$.abl."],
+["vat","vatā",".m.$.sg.$.inst."],
+["vat","vatā",".nt.$.sg.$.abl."],
+["vat","vatā",".nt.$.sg.$.inst."],
+["vat","vataṃ",".m.$.pl.$.dat."],
+["vat","vataṃ",".m.$.pl.$.gen."],
+["vat","vataṃ",".nt.$.pl.$.dat."],
+["vat","vataṃ",".nt.$.pl.$.gen."],
+["vat","vataṃ",".nt.$.pl.$.dat."],
+["vat","vataṃ",".nt.$.pl.$.gen."],
+["vat","vatena",".m.$.sg.$.inst."],
+["vat","vatena",".nt.$.sg.$.inst."],
+["vat","vatena",".m.$.sg.$.inst."],
+["vat","vatena",".nt.$.sg.$.inst."],
+["vat","vatī",".f.$.pl.$.acc."],
+["vat","vatī",".f.$.pl.$.nom."],
+["vat","vatī",".f.$.pl.$.voc."],
+["vat","vatī",".f.$.sg.$.nom."],
+["vat","vatī",".f.$.sg.$.voc."],
+["vat","vati",".m.$.sg.$.loc."],
+["vat","vati",".nt.$.sg.$.loc."],
+["vat","vati",".m.$.sg.$.loc."],
+["vat","vati",".nt.$.sg.$.loc."],
+["vat","vatībhi",".f.$.pl.$.abl."],
+["vat","vatībhi",".f.$.pl.$.inst."],
+["vat","vatīhi",".f.$.pl.$.abl."],
+["vat","vatīhi",".f.$.pl.$.inst."],
+["vat","vatiṃ",".f.$.sg.$.acc."],
+["vat","vatīnaṃ",".f.$.pl.$.dat."],
+["vat","vatīnaṃ",".f.$.pl.$.gen."],
+["vat","vatīsu",".f.$.pl.$.loc."],
+["vat","vatiyā",".f.$.sg.$.abl."],
+["vat","vatiyā",".f.$.sg.$.dat."],
+["vat","vatiyā",".f.$.sg.$.gen."],
+["vat","vatiyā",".f.$.sg.$.inst."],
+["vat","vatiyā",".f.$.sg.$.loc."],
+["vat","vatiyaṃ",".f.$.sg.$.loc."],
+["vat","vatiyo",".f.$.pl.$.acc."],
+["vat","vatiyo",".f.$.pl.$.nom."],
+["vat","vatiyo",".f.$.pl.$.voc."],
+["vat","vato",".m.$.sg.$.dat."],
+["vat","vato",".m.$.sg.$.gen."],
+["vat","vato",".nt.$.sg.$.dat."],
+["vat","vato",".nt.$.sg.$.gen."],
+["vat","vato",".m.$.sg.$.dat."],
+["vat","vato",".m.$.sg.$.gen."],
+["vat","vato",".nt.$.sg.$.dat."],
+["vat","vato",".nt.$.sg.$.gen."],
+["vat","ve",".m.$.pl.$.acc."],
+["vat","vebhi",".m.$.pl.$.abl."],
+["vat","vebhi",".m.$.pl.$.inst."],
+["vat","vehi",".m.$.pl.$.abl."],
+["vat","vehi",".m.$.pl.$.inst."],
+["vat","vesu",".m.$.pl.$.loc."],
+["manta","mā",".m.$.pl.$.nom."],
+["manta","mā",".m.$.pl.$.voc."],
+["manta","mā",".m.$.sg.$.nom."],
+["manta","ma",".m.$.sg.$.voc."],
+["manta","mā",".m.$.sg.$.voc."],
+["manta","mā",".nt.$.pl.$.nom."],
+["manta","mā",".nt.$.pl.$.voc."],
+["manta","ma",".nt.$.sg.$.voc."],
+["manta","mā",".nt.$.sg.$.voc."],
+["manta","mā",".m.$.sg.$.voc."],
+["manta","mā",".nt.$.sg.$.voc."],
+["manta","maṃ",".m.$.sg.$.acc."],
+["manta","maṃ",".nt.$.sg.$.acc."],
+["manta","maṃ",".nt.$.sg.$.nom."],
+["manta","maṃ",".m.$.sg.$.nom."],
+["manta","maṃ",".m.$.sg.$.voc."],
+["manta","maṃ",".nt.$.sg.$.voc."],
+["manta","maṃ",".m.$.sg.$.voc."],
+["manta","maṃ",".nt.$.sg.$.voc."],
+["manta","mānaṃ",".m.$.pl.$.dat."],
+["manta","mānaṃ",".m.$.pl.$.gen."],
+["manta","mantā",".m.$.pl.$.nom."],
+["manta","mantā",".m.$.pl.$.voc."],
+["manta","mantā",".m.$.sg.$.abl."],
+["manta","manta",".m.$.sg.$.voc."],
+["manta","mantā",".m.$.sg.$.voc."],
+["manta","manta",".nt.$.pl.$.acc."],
+["manta","mantā",".nt.$.pl.$.acc."],
+["manta","manta",".nt.$.pl.$.nom."],
+["manta","mantā",".nt.$.pl.$.nom."],
+["manta","manta",".nt.$.pl.$.voc."],
+["manta","mantā",".nt.$.pl.$.voc."],
+["manta","mantā",".nt.$.sg.$.abl."],
+["manta","manta",".nt.$.sg.$.voc."],
+["manta","mantā",".nt.$.sg.$.voc."],
+["manta","mantaṃ",".m.$.sg.$.acc."],
+["manta","mantaṃ",".nt.$.sg.$.acc."],
+["manta","mantaṃ",".nt.$.sg.$.nom."],
+["manta","mantaṃ",".nt.$.sg.$.nom."],
+["manta","mantaṃ",".m.$.sg.$.acc."],
+["manta","mantaṃ",".nt.$.sg.$.acc."],
+["manta","mantamhā",".m.$.sg.$.abl."],
+["manta","mantamhā",".nt.$.sg.$.abl."],
+["manta","mantamhā",".m.$.sg.$.abl."],
+["manta","mantamhā",".nt.$.sg.$.abl."],
+["manta","mantamhi",".m.$.sg.$.loc."],
+["manta","mantamhi",".nt.$.sg.$.loc."],
+["manta","mantamhi",".m.$.sg.$.loc."],
+["manta","mantamhi",".nt.$.sg.$.loc."],
+["manta","mantānaṃ",".m.$.pl.$.dat."],
+["manta","mantānaṃ",".m.$.pl.$.gen."],
+["manta","mantānaṃ",".nt.$.pl.$.dat."],
+["manta","mantānaṃ",".nt.$.pl.$.gen."],
+["manta","mantānaṃ",".nt.$.pl.$.dat."],
+["manta","mantānaṃ",".nt.$.pl.$.gen."],
+["manta","mantani",".nt.$.pl.$.acc."],
+["manta","mantāni",".nt.$.pl.$.acc."],
+["manta","mantani",".nt.$.pl.$.nom."],
+["manta","mantāni",".nt.$.pl.$.nom."],
+["manta","mantani",".nt.$.pl.$.voc."],
+["manta","mantāni",".nt.$.pl.$.voc."],
+["manta","mantasmā",".m.$.sg.$.abl."],
+["manta","mantasmā",".nt.$.sg.$.abl."],
+["manta","mantasmā",".m.$.sg.$.abl."],
+["manta","mantasmā",".nt.$.sg.$.abl."],
+["manta","mantasmiṃ",".m.$.sg.$.loc."],
+["manta","mantasmiṃ",".nt.$.sg.$.loc."],
+["manta","mantasmiṃ",".m.$.sg.$.loc."],
+["manta","mantasmiṃ",".nt.$.sg.$.loc."],
+["manta","mantassa",".m.$.sg.$.dat."],
+["manta","mantassa",".m.$.sg.$.gen."],
+["manta","mantassa",".nt.$.sg.$.dat."],
+["manta","mantassa",".nt.$.sg.$.gen."],
+["manta","mantassa",".m.$.sg.$.dat."],
+["manta","mantassa",".m.$.sg.$.gen."],
+["manta","mantassa",".nt.$.sg.$.dat."],
+["manta","mantassa",".nt.$.sg.$.gen."],
+["manta","mante",".m.$.pl.$.acc."],
+["manta","mante",".m.$.sg.$.loc."],
+["manta","mante",".nt.$.pl.$.acc."],
+["manta","mante",".nt.$.sg.$.loc."],
+["manta","mantebhi",".m.$.pl.$.abl."],
+["manta","mantebhi",".m.$.pl.$.inst."],
+["manta","mantebhi",".nt.$.pl.$.abl."],
+["manta","mantebhi",".nt.$.pl.$.inst."],
+["manta","mantehi",".m.$.pl.$.abl."],
+["manta","mantehi",".m.$.pl.$.inst."],
+["manta","mantehi",".nt.$.pl.$.abl."],
+["manta","mantehi",".nt.$.pl.$.inst."],
+["manta","mantesu",".m.$.pl.$.loc."],
+["manta","mantesu",".nt.$.pl.$.loc."],
+["manta","mantesu",".nt.$.pl.$.loc."],
+["manta","mantī",".f.$.pl.$.acc."],
+["manta","mantī",".f.$.pl.$.nom."],
+["manta","mantī",".f.$.pl.$.voc."],
+["manta","mantī",".f.$.sg.$.nom."],
+["manta","mantī",".f.$.sg.$.voc."],
+["manta","mantībhi",".f.$.pl.$.abl."],
+["manta","mantībhi",".f.$.pl.$.inst."],
+["manta","mantīhi",".f.$.pl.$.abl."],
+["manta","mantīhi",".f.$.pl.$.inst."],
+["manta","mantiṃ",".f.$.sg.$.acc."],
+["manta","mantīnaṃ",".f.$.pl.$.dat."],
+["manta","mantīnaṃ",".f.$.pl.$.gen."],
+["manta","mantīsu",".f.$.pl.$.loc."],
+["manta","mantiyā",".f.$.sg.$.abl."],
+["manta","mantiyā",".f.$.sg.$.dat."],
+["manta","mantiyā",".f.$.sg.$.gen."],
+["manta","mantiyā",".f.$.sg.$.inst."],
+["manta","mantiyā",".f.$.sg.$.loc."],
+["manta","mantiyaṃ",".f.$.sg.$.loc."],
+["manta","mantiyo",".f.$.pl.$.acc."],
+["manta","mantiyo",".f.$.pl.$.nom."],
+["manta","mantiyo",".f.$.pl.$.voc."],
+["manta","manto",".m.$.pl.$.nom."],
+["manta","manto",".m.$.pl.$.voc."],
+["manta","manto",".m.$.sg.$.nom."],
+["manta","manto",".nt.$.pl.$.nom."],
+["manta","manto",".nt.$.pl.$.voc."],
+["manta","manto",".nt.$.sg.$.nom."],
+["manta","matā",".m.$.sg.$.abl."],
+["manta","matā",".m.$.sg.$.inst."],
+["manta","matā",".nt.$.sg.$.abl."],
+["manta","matā",".nt.$.sg.$.inst."],
+["manta","matā",".m.$.sg.$.abl."],
+["manta","matā",".m.$.sg.$.inst."],
+["manta","matā",".nt.$.sg.$.abl."],
+["manta","matā",".nt.$.sg.$.inst."],
+["manta","mataṃ",".m.$.pl.$.dat."],
+["manta","mataṃ",".m.$.pl.$.gen."],
+["manta","mataṃ",".nt.$.pl.$.dat."],
+["manta","mataṃ",".nt.$.pl.$.gen."],
+["manta","mataṃ",".nt.$.pl.$.dat."],
+["manta","mataṃ",".nt.$.pl.$.gen."],
+["manta","matena",".m.$.sg.$.inst."],
+["manta","matena",".nt.$.sg.$.inst."],
+["manta","matena",".m.$.sg.$.inst."],
+["manta","matena",".nt.$.sg.$.inst."],
+["manta","matī",".f.$.pl.$.acc."],
+["manta","matī",".f.$.pl.$.nom."],
+["manta","matī",".f.$.pl.$.voc."],
+["manta","matī",".f.$.sg.$.nom."],
+["manta","matī",".f.$.sg.$.voc."],
+["manta","mati",".m.$.sg.$.loc."],
+["manta","mati",".nt.$.sg.$.loc."],
+["manta","mati",".m.$.sg.$.loc."],
+["manta","mati",".nt.$.sg.$.loc."],
+["manta","matībhi",".f.$.pl.$.abl."],
+["manta","matībhi",".f.$.pl.$.inst."],
+["manta","matīhi",".f.$.pl.$.abl."],
+["manta","matīhi",".f.$.pl.$.inst."],
+["manta","matiṃ",".f.$.sg.$.acc."],
+["manta","matīnaṃ",".f.$.pl.$.dat."],
+["manta","matīnaṃ",".f.$.pl.$.gen."],
+["manta","matīsu",".f.$.pl.$.loc."],
+["manta","matiyā",".f.$.sg.$.abl."],
+["manta","matiyā",".f.$.sg.$.dat."],
+["manta","matiyā",".f.$.sg.$.gen."],
+["manta","matiyā",".f.$.sg.$.inst."],
+["manta","matiyā",".f.$.sg.$.loc."],
+["manta","matiyaṃ",".f.$.sg.$.loc."],
+["manta","matiyo",".f.$.pl.$.acc."],
+["manta","matiyo",".f.$.pl.$.nom."],
+["manta","matiyo",".f.$.pl.$.voc."],
+["manta","mato",".m.$.sg.$.dat."],
+["manta","mato",".m.$.sg.$.gen."],
+["manta","mato",".nt.$.sg.$.dat."],
+["manta","mato",".nt.$.sg.$.gen."],
+["manta","mato",".m.$.sg.$.dat."],
+["manta","mato",".m.$.sg.$.gen."],
+["manta","mato",".nt.$.sg.$.dat."],
+["manta","mato",".nt.$.sg.$.gen."],
+["manta","me",".m.$.pl.$.acc."],
+["manta","mebhi",".m.$.pl.$.abl."],
+["manta","mebhi",".m.$.pl.$.inst."],
+["manta","mehi",".m.$.pl.$.abl."],
+["manta","mehi",".m.$.pl.$.inst."],
+["manta","mesu",".m.$.pl.$.loc."],
+["vanta","vā",".m.$.pl.$.nom."],
+["vanta","vā",".m.$.pl.$.voc."],
+["vanta","vā",".m.$.sg.$.nom."],
+["vanta","va",".m.$.sg.$.voc."],
+["vanta","vā",".m.$.sg.$.voc."],
+["vanta","vā",".nt.$.pl.$.nom."],
+["vanta","vā",".nt.$.pl.$.voc."],
+["vanta","va",".nt.$.sg.$.voc."],
+["vanta","vā",".nt.$.sg.$.voc."],
+["vanta","vā",".m.$.sg.$.voc."],
+["vanta","vā",".nt.$.sg.$.voc."],
+["vanta","vaṃ",".m.$.sg.$.acc."],
+["vanta","vaṃ",".nt.$.sg.$.acc."],
+["vanta","vaṃ",".nt.$.sg.$.nom."],
+["vanta","vaṃ",".m.$.sg.$.nom."],
+["vanta","vaṃ",".m.$.sg.$.voc."],
+["vanta","vaṃ",".nt.$.sg.$.voc."],
+["vanta","vaṃ",".m.$.sg.$.voc."],
+["vanta","vaṃ",".nt.$.sg.$.voc."],
+["vanta","vānaṃ",".m.$.pl.$.dat."],
+["vanta","vānaṃ",".m.$.pl.$.gen."],
+["vanta","vantā",".m.$.pl.$.nom."],
+["vanta","vantā",".m.$.pl.$.voc."],
+["vanta","vantā",".m.$.sg.$.abl."],
+["vanta","vanta",".m.$.sg.$.voc."],
+["vanta","vantā",".m.$.sg.$.voc."],
+["vanta","vanta",".nt.$.pl.$.acc."],
+["vanta","vantā",".nt.$.pl.$.acc."],
+["vanta","vanta",".nt.$.pl.$.nom."],
+["vanta","vantā",".nt.$.pl.$.nom."],
+["vanta","vanta",".nt.$.pl.$.voc."],
+["vanta","vantā",".nt.$.pl.$.voc."],
+["vanta","vantā",".nt.$.sg.$.abl."],
+["vanta","vanta",".nt.$.sg.$.voc."],
+["vanta","vantā",".nt.$.sg.$.voc."],
+["vanta","vantaṃ",".m.$.sg.$.acc."],
+["vanta","vantaṃ",".nt.$.sg.$.acc."],
+["vanta","vantaṃ",".nt.$.sg.$.nom."],
+["vanta","vantaṃ",".nt.$.sg.$.nom."],
+["vanta","vantaṃ",".m.$.sg.$.acc."],
+["vanta","vantaṃ",".nt.$.sg.$.acc."],
+["vanta","vantamhā",".m.$.sg.$.abl."],
+["vanta","vantamhā",".nt.$.sg.$.abl."],
+["vanta","vantamhā",".m.$.sg.$.abl."],
+["vanta","vantamhā",".nt.$.sg.$.abl."],
+["vanta","vantamhi",".m.$.sg.$.loc."],
+["vanta","vantamhi",".nt.$.sg.$.loc."],
+["vanta","vantamhi",".m.$.sg.$.loc."],
+["vanta","vantamhi",".nt.$.sg.$.loc."],
+["vanta","vantānaṃ",".m.$.pl.$.dat."],
+["vanta","vantānaṃ",".m.$.pl.$.gen."],
+["vanta","vantānaṃ",".nt.$.pl.$.dat."],
+["vanta","vantānaṃ",".nt.$.pl.$.gen."],
+["vanta","vantānaṃ",".nt.$.pl.$.dat."],
+["vanta","vantānaṃ",".nt.$.pl.$.gen."],
+["vanta","vantani",".nt.$.pl.$.acc."],
+["vanta","vantāni",".nt.$.pl.$.acc."],
+["vanta","vantani",".nt.$.pl.$.nom."],
+["vanta","vantāni",".nt.$.pl.$.nom."],
+["vanta","vantani",".nt.$.pl.$.voc."],
+["vanta","vantāni",".nt.$.pl.$.voc."],
+["vanta","vantasmā",".m.$.sg.$.abl."],
+["vanta","vantasmā",".nt.$.sg.$.abl."],
+["vanta","vantasmā",".m.$.sg.$.abl."],
+["vanta","vantasmā",".nt.$.sg.$.abl."],
+["vanta","vantasmiṃ",".m.$.sg.$.loc."],
+["vanta","vantasmiṃ",".nt.$.sg.$.loc."],
+["vanta","vantasmiṃ",".m.$.sg.$.loc."],
+["vanta","vantasmiṃ",".nt.$.sg.$.loc."],
+["vanta","vantassa",".m.$.sg.$.dat."],
+["vanta","vantassa",".m.$.sg.$.gen."],
+["vanta","vantassa",".nt.$.sg.$.dat."],
+["vanta","vantassa",".nt.$.sg.$.gen."],
+["vanta","vantassa",".m.$.sg.$.dat."],
+["vanta","vantassa",".m.$.sg.$.gen."],
+["vanta","vantassa",".nt.$.sg.$.dat."],
+["vanta","vantassa",".nt.$.sg.$.gen."],
+["vanta","vante",".m.$.pl.$.acc."],
+["vanta","vante",".m.$.sg.$.loc."],
+["vanta","vante",".nt.$.pl.$.acc."],
+["vanta","vante",".nt.$.sg.$.loc."],
+["vanta","vantebhi",".m.$.pl.$.abl."],
+["vanta","vantebhi",".m.$.pl.$.inst."],
+["vanta","vantebhi",".nt.$.pl.$.abl."],
+["vanta","vantebhi",".nt.$.pl.$.inst."],
+["vanta","vantehi",".m.$.pl.$.abl."],
+["vanta","vantehi",".m.$.pl.$.inst."],
+["vanta","vantehi",".nt.$.pl.$.abl."],
+["vanta","vantehi",".nt.$.pl.$.inst."],
+["vanta","vantesu",".m.$.pl.$.loc."],
+["vanta","vantesu",".nt.$.pl.$.loc."],
+["vanta","vantesu",".nt.$.pl.$.loc."],
+["vanta","vantī",".f.$.pl.$.acc."],
+["vanta","vantī",".f.$.pl.$.nom."],
+["vanta","vantī",".f.$.pl.$.voc."],
+["vanta","vantī",".f.$.sg.$.nom."],
+["vanta","vantī",".f.$.sg.$.voc."],
+["vanta","vantībhi",".f.$.pl.$.abl."],
+["vanta","vantībhi",".f.$.pl.$.inst."],
+["vanta","vantīhi",".f.$.pl.$.abl."],
+["vanta","vantīhi",".f.$.pl.$.inst."],
+["vanta","vantiṃ",".f.$.sg.$.acc."],
+["vanta","vantīnaṃ",".f.$.pl.$.dat."],
+["vanta","vantīnaṃ",".f.$.pl.$.gen."],
+["vanta","vantīsu",".f.$.pl.$.loc."],
+["vanta","vantiyā",".f.$.sg.$.abl."],
+["vanta","vantiyā",".f.$.sg.$.dat."],
+["vanta","vantiyā",".f.$.sg.$.gen."],
+["vanta","vantiyā",".f.$.sg.$.inst."],
+["vanta","vantiyā",".f.$.sg.$.loc."],
+["vanta","vantiyaṃ",".f.$.sg.$.loc."],
+["vanta","vantiyo",".f.$.pl.$.acc."],
+["vanta","vantiyo",".f.$.pl.$.nom."],
+["vanta","vantiyo",".f.$.pl.$.voc."],
+["vanta","vanto",".m.$.pl.$.nom."],
+["vanta","vanto",".m.$.pl.$.voc."],
+["vanta","vanto",".m.$.sg.$.nom."],
+["vanta","vanto",".nt.$.pl.$.nom."],
+["vanta","vanto",".nt.$.pl.$.voc."],
+["vanta","vanto",".nt.$.sg.$.nom."],
+["vanta","vatā",".m.$.sg.$.abl."],
+["vanta","vatā",".m.$.sg.$.inst."],
+["vanta","vatā",".nt.$.sg.$.abl."],
+["vanta","vatā",".nt.$.sg.$.inst."],
+["vanta","vatā",".m.$.sg.$.abl."],
+["vanta","vatā",".m.$.sg.$.inst."],
+["vanta","vatā",".nt.$.sg.$.abl."],
+["vanta","vatā",".nt.$.sg.$.inst."],
+["vanta","vataṃ",".m.$.pl.$.dat."],
+["vanta","vataṃ",".m.$.pl.$.gen."],
+["vanta","vataṃ",".nt.$.pl.$.dat."],
+["vanta","vataṃ",".nt.$.pl.$.gen."],
+["vanta","vataṃ",".nt.$.pl.$.dat."],
+["vanta","vataṃ",".nt.$.pl.$.gen."],
+["vanta","vatena",".m.$.sg.$.inst."],
+["vanta","vatena",".nt.$.sg.$.inst."],
+["vanta","vatena",".m.$.sg.$.inst."],
+["vanta","vatena",".nt.$.sg.$.inst."],
+["vanta","vatī",".f.$.pl.$.acc."],
+["vanta","vatī",".f.$.pl.$.nom."],
+["vanta","vatī",".f.$.pl.$.voc."],
+["vanta","vatī",".f.$.sg.$.nom."],
+["vanta","vatī",".f.$.sg.$.voc."],
+["vanta","vati",".m.$.sg.$.loc."],
+["vanta","vati",".nt.$.sg.$.loc."],
+["vanta","vati",".m.$.sg.$.loc."],
+["vanta","vati",".nt.$.sg.$.loc."],
+["vanta","vatībhi",".f.$.pl.$.abl."],
+["vanta","vatībhi",".f.$.pl.$.inst."],
+["vanta","vatīhi",".f.$.pl.$.abl."],
+["vanta","vatīhi",".f.$.pl.$.inst."],
+["vanta","vatiṃ",".f.$.sg.$.acc."],
+["vanta","vatīnaṃ",".f.$.pl.$.dat."],
+["vanta","vatīnaṃ",".f.$.pl.$.gen."],
+["vanta","vatīsu",".f.$.pl.$.loc."],
+["vanta","vatiyā",".f.$.sg.$.abl."],
+["vanta","vatiyā",".f.$.sg.$.dat."],
+["vanta","vatiyā",".f.$.sg.$.gen."],
+["vanta","vatiyā",".f.$.sg.$.inst."],
+["vanta","vatiyā",".f.$.sg.$.loc."],
+["vanta","vatiyaṃ",".f.$.sg.$.loc."],
+["vanta","vatiyo",".f.$.pl.$.acc."],
+["vanta","vatiyo",".f.$.pl.$.nom."],
+["vanta","vatiyo",".f.$.pl.$.voc."],
+["vanta","vato",".m.$.sg.$.dat."],
+["vanta","vato",".m.$.sg.$.gen."],
+["vanta","vato",".nt.$.sg.$.dat."],
+["vanta","vato",".nt.$.sg.$.gen."],
+["vanta","vato",".m.$.sg.$.dat."],
+["vanta","vato",".m.$.sg.$.gen."],
+["vanta","vato",".nt.$.sg.$.dat."],
+["vanta","vato",".nt.$.sg.$.gen."],
+["vanta","ve",".m.$.pl.$.acc."],
+["vanta","vebhi",".m.$.pl.$.abl."],
+["vanta","vebhi",".m.$.pl.$.inst."],
+["vanta","vehi",".m.$.pl.$.abl."],
+["vanta","vehi",".m.$.pl.$.inst."],
+["vanta","vesu",".m.$.pl.$.loc."],
+["a","o",".m.$.sg.$.nom."],
+["a","a",".m.$.sg.$.voc."],
+["a","ā",".m.$.sg.$.voc."],
+["a","aṃ",".m.$.sg.$.acc."],
+["a","assa",".m.$.sg.$.gen."],
+["a","assa",".m.$.sg.$.dat."],
+["a","āya",".m.$.sg.$.dat."],
+["a","ena",".m.$.sg.$.inst."],
+["a","ā",".m.$.sg.$.abl."],
+["a","asmā",".m.$.sg.$.abl."],
+["a","amhā",".m.$.sg.$.abl."],
+["a","ato",".m.$.sg.$.abl."],
+["a","e",".m.$.sg.$.loc."],
+["a","asmiṃ",".m.$.sg.$.loc."],
+["a","amhi",".m.$.sg.$.loc."],
+["a","ā",".m.$.pl.$.nom."],
+["a","āse",".m.$.pl.$.nom."],
+["a","ā",".m.$.pl.$.voc."],
+["a","e",".m.$.pl.$.acc."],
+["a","ānaṃ",".m.$.pl.$.gen."],
+["a","ānaṃ",".m.$.pl.$.dat."],
+["a","ehi",".m.$.pl.$.inst."],
+["a","ebhi",".m.$.pl.$.inst."],
+["a","ehi",".m.$.pl.$.abl."],
+["a","ebhi",".m.$.pl.$.abl."],
+["a","esu",".m.$.pl.$.loc."],
+["a","aṃ",".nt.$.sg.$.nom."],
+["a","a",".nt.$.sg.$.voc."],
+["a","aṃ",".nt.$.sg.$.acc."],
+["a","assa",".nt.$.sg.$.gen."],
+["a","assa",".nt.$.sg.$.dat."],
+["a","āya",".nt.$.sg.$.dat."],
+["a","ena",".nt.$.sg.$.inst."],
+["a","ā",".nt.$.sg.$.abl."],
+["a","asmā",".nt.$.sg.$.abl."],
+["a","amhā",".nt.$.sg.$.abl."],
+["a","ato",".nt.$.sg.$.abl."],
+["a","e",".nt.$.sg.$.loc."],
+["a","asmiṃ",".nt.$.sg.$.loc."],
+["a","amhi",".nt.$.sg.$.loc."],
+["a","āni",".nt.$.pl.$.nom."],
+["a","ā",".nt.$.pl.$.nom."],
+["a","āni",".nt.$.pl.$.voc."],
+["a","ā",".nt.$.pl.$.voc."],
+["a","āni",".nt.$.pl.$.acc."],
+["a","e",".nt.$.pl.$.acc."],
+["a","ānaṃ",".nt.$.pl.$.gen."],
+["a","ānaṃ",".nt.$.pl.$.dat."],
+["a","ehi",".nt.$.pl.$.inst."],
+["a","ebhi",".nt.$.pl.$.inst."],
+["a","ehi",".nt.$.pl.$.abl."],
+["a","ebhi",".nt.$.pl.$.abl."],
+["a","esu",".nt.$.pl.$.loc."],
+["a","esaṃ",".m.$.pl.$.dat."],
+["a","esaṃ",".m.$.pl.$.gen."],
+["a","esaṃ",".nt.$.pl.$.dat."],
+["a","esaṃ",".nt.$.pl.$.gen."],
+["ā","ā",".f.$.sg.$.nom."],
+["ā","ā",".f.$.sg.$.voc."],
+["ā","e",".f.$.sg.$.voc."],
+["ā","aṃ",".f.$.sg.$.acc."],
+["ā","āya",".f.$.sg.$.gen."],
+["ā","āya",".f.$.sg.$.dat."],
+["ā","āya",".f.$.sg.$.inst."],
+["ā","āya",".f.$.sg.$.abl."],
+["ā","ato",".f.$.sg.$.abl."],
+["ā","āya",".f.$.sg.$.loc."],
+["ā","āyaṃ",".f.$.sg.$.loc."],
+["ā","ā",".f.$.pl.$.nom."],
+["ā","āyo",".f.$.pl.$.nom."],
+["ā","ā",".f.$.pl.$.voc."],
+["ā","āyo",".f.$.pl.$.voc."],
+["ā","ā",".f.$.pl.$.acc."],
+["ā","āyo",".f.$.pl.$.acc."],
+["ā","ānaṃ",".f.$.pl.$.gen."],
+["ā","ānaṃ",".f.$.pl.$.dat."],
+["ā","āhi",".f.$.pl.$.inst."],
+["ā","ābhi",".f.$.pl.$.inst."],
+["ā","āhi",".f.$.pl.$.abl."],
+["ā","ābhi",".f.$.pl.$.abl."],
+["ā","āsu",".f.$.pl.$.loc."],
+["i","i",".m.$.sg.$.nom."],
+["i","i",".m.$.sg.$.voc."],
+["i","iṃ",".m.$.sg.$.acc."],
+["i","issa",".m.$.sg.$.gen."],
+["i","ino",".m.$.sg.$.gen."],
+["i","issa",".m.$.sg.$.dat."],
+["i","ino",".m.$.sg.$.dat."],
+["i","inā",".m.$.sg.$.inst."],
+["i","inā",".m.$.sg.$.abl."],
+["i","ismā",".m.$.sg.$.abl."],
+["i","imhā",".m.$.sg.$.abl."],
+["i","ismiṃ",".m.$.sg.$.loc."],
+["i","imhi",".m.$.sg.$.loc."],
+["i","ī",".m.$.pl.$.nom."],
+["i","ayo",".m.$.pl.$.nom."],
+["i","ī",".m.$.pl.$.voc."],
+["i","ayo",".m.$.pl.$.voc."],
+["i","ī",".m.$.pl.$.acc."],
+["i","ayo",".m.$.pl.$.acc."],
+["i","īnaṃ",".m.$.pl.$.gen."],
+["i","īnaṃ",".m.$.pl.$.dat."],
+["i","īhi",".m.$.pl.$.inst."],
+["i","ībhi",".m.$.pl.$.inst."],
+["i","īhi",".m.$.pl.$.abl."],
+["i","ībhi",".m.$.pl.$.abl."],
+["i","īsu",".m.$.pl.$.loc."],
+["i","i",".nt.$.sg.$.nom."],
+["i","i",".nt.$.sg.$.voc."],
+["i","iṃ",".nt.$.sg.$.acc."],
+["i","assa",".nt.$.sg.$.gen."],
+["i","ino",".nt.$.sg.$.gen."],
+["i","assa",".nt.$.sg.$.dat."],
+["i","ino",".nt.$.sg.$.dat."],
+["i","inā",".nt.$.sg.$.inst."],
+["i","inā",".nt.$.sg.$.abl."],
+["i","ismā",".nt.$.sg.$.abl."],
+["i","imhā",".nt.$.sg.$.abl."],
+["i","ismiṃ",".nt.$.sg.$.loc."],
+["i","imhi",".nt.$.sg.$.loc."],
+["i","īni",".nt.$.pl.$.nom."],
+["i","ī",".nt.$.pl.$.nom."],
+["i","īni",".nt.$.pl.$.voc."],
+["i","ī",".nt.$.pl.$.voc."],
+["i","īni",".nt.$.pl.$.acc."],
+["i","ī",".nt.$.pl.$.acc."],
+["i","īnaṃ",".nt.$.pl.$.gen."],
+["i","īnaṃ",".nt.$.pl.$.dat."],
+["i","īhi",".nt.$.pl.$.inst."],
+["i","ībhi",".nt.$.pl.$.inst."],
+["i","īhi",".nt.$.pl.$.abl."],
+["i","ībhi",".nt.$.pl.$.abl."],
+["i","īsu",".nt.$.pl.$.loc."],
+["i","i",".f.$.sg.$.nom."],
+["i","i",".f.$.sg.$.voc."],
+["i","iṃ",".f.$.sg.$.acc."],
+["i","iyā",".f.$.sg.$.gen."],
+["i","yā",".f.$.sg.$.gen.",4],
+["i","iyā",".f.$.sg.$.dat."],
+["i","yā",".f.$.sg.$.dat.",4],
+["i","iyā",".f.$.sg.$.inst."],
+["i","yā",".f.$.sg.$.inst.",4],
+["i","iyā",".f.$.sg.$.abl."],
+["i","yā",".f.$.sg.$.abl.",4],
+["i","iyā",".f.$.sg.$.loc."],
+["i","yā",".f.$.sg.$.loc."],
+["i","iyaṃ",".f.$.sg.$.loc."],
+["i","yaṃ",".f.$.sg.$.loc."],
+["i","ī",".f.$.pl.$.nom."],
+["i","iyo",".f.$.pl.$.nom."],
+["i","yo",".f.$.pl.$.nom.",4],
+["i","ī",".f.$.pl.$.voc."],
+["i","iyo",".f.$.pl.$.voc."],
+["i","yo",".f.$.pl.$.voc.",4],
+["i","ī",".f.$.pl.$.acc."],
+["i","iyo",".f.$.pl.$.acc."],
+["i","yo",".f.$.pl.$.acc.",4],
+["i","īnaṃ",".f.$.pl.$.gen."],
+["i","īnaṃ",".f.$.pl.$.dat."],
+["i","īhi",".f.$.pl.$.inst."],
+["i","ībhi",".f.$.pl.$.inst."],
+["i","īhi",".f.$.pl.$.abl."],
+["i","ībhi",".f.$.pl.$.abl."],
+["i","īsu",".f.$.pl.$.loc."],
+["ī","ī",".m.$.sg.$.nom."],
+["in","ī",".m.$.sg.$.nom."],
+["ī","ī",".m.$.sg.$.voc."],
+["ī","inī",".m.$.sg.$.voc.",4],
+["in","ī",".m.$.sg.$.voc."],
+["in","inī",".m.$.sg.$.voc."],
+["ī","iṃ",".m.$.sg.$.acc."],
+["ī","inaṃ",".m.$.sg.$.acc."],
+["in","iṃ",".m.$.sg.$.acc."],
+["in","inaṃ",".m.$.sg.$.acc."],
+["ī","issa",".m.$.sg.$.gen."],
+["ī","ino",".m.$.sg.$.gen."],
+["in","issa",".m.$.sg.$.gen."],
+["in","ino",".m.$.sg.$.gen."],
+["ī","issa",".m.$.sg.$.dat."],
+["ī","ino",".m.$.sg.$.dat."],
+["in","issa",".m.$.sg.$.dat."],
+["in","ino",".m.$.sg.$.dat."],
+["ī","inā",".m.$.sg.$.inst."],
+["in","inā",".m.$.sg.$.inst."],
+["ī","inā",".m.$.sg.$.abl."],
+["ī","ismā",".m.$.sg.$.abl."],
+["ī","imhā",".m.$.sg.$.abl."],
+["in","inā",".m.$.sg.$.abl."],
+["in","ismā",".m.$.sg.$.abl."],
+["in","imhā",".m.$.sg.$.abl."],
+["ī","ismiṃ",".m.$.sg.$.loc."],
+["ī","imhi",".m.$.sg.$.loc."],
+["in","ismiṃ",".m.$.sg.$.loc."],
+["in","imhi",".m.$.sg.$.loc."],
+["ī","ī",".m.$.pl.$.nom."],
+["ī","ino",".m.$.pl.$.nom."],
+["in","ī",".m.$.pl.$.nom."],
+["in","ino",".m.$.pl.$.nom."],
+["ī","ī",".m.$.pl.$.voc."],
+["ī","ino",".m.$.pl.$.voc."],
+["in","ī",".m.$.pl.$.voc."],
+["in","ino",".m.$.pl.$.voc."],
+["ī","ī",".m.$.pl.$.acc."],
+["ī","ino",".m.$.pl.$.acc."],
+["in","ī",".m.$.pl.$.acc."],
+["in","ino",".m.$.pl.$.acc."],
+["ī","inaṃ",".m.$.pl.$.gen."],
+["in","inaṃ",".m.$.pl.$.gen."],
+["ī","inaṃ",".m.$.pl.$.dat."],
+["in","inaṃ",".m.$.pl.$.dat."],
+["ī","īhi",".m.$.pl.$.inst."],
+["ī","ībhi",".m.$.pl.$.inst."],
+["in","īhi",".m.$.pl.$.inst."],
+["in","ībhi",".m.$.pl.$.inst."],
+["ī","īhi",".m.$.pl.$.abl."],
+["ī","ībhi",".m.$.pl.$.abl."],
+["in","īhi",".m.$.pl.$.abl."],
+["in","ībhi",".m.$.pl.$.abl."],
+["ī","īsu",".m.$.pl.$.loc."],
+["in","īsu",".m.$.pl.$.loc."],
+["ī","ī",".f.$.sg.$.nom."],
+["ī","ī",".f.$.sg.$.voc."],
+["ī","iṃ",".f.$.sg.$.acc."],
+["ī","iyā",".f.$.sg.$.gen."],
+["ī","ayā",".f.$.sg.$.gen."],
+["ī","yā",".f.$.sg.$.gen.",4],
+["ī","iyā",".f.$.sg.$.dat."],
+["ī","ayā",".f.$.sg.$.dat."],
+["ī","yā",".f.$.sg.$.dat.",4],
+["ī","iyā",".f.$.sg.$.inst."],
+["ī","ayā",".f.$.sg.$.inst."],
+["ī","yā",".f.$.sg.$.inst.",4],
+["ī","iyā",".f.$.sg.$.abl."],
+["ī","ayā",".f.$.sg.$.abl."],
+["ī","yā",".f.$.sg.$.abl.",4],
+["ī","iyā",".f.$.sg.$.loc."],
+["ī","ayā",".f.$.sg.$.loc."],
+["ī","yā",".f.$.sg.$.loc.",4],
+["ī","iyaṃ",".f.$.sg.$.loc."],
+["ī","ayaṃ",".f.$.sg.$.loc."],
+["ī","yaṃ",".f.$.sg.$.loc.",4],
+["ī","ī",".f.$.pl.$.nom."],
+["ī","iyo",".f.$.pl.$.nom."],
+["ī","yo",".f.$.pl.$.nom.",4],
+["ī","ī",".f.$.pl.$.voc."],
+["ī","iyo",".f.$.pl.$.voc."],
+["ī","yo",".f.$.pl.$.voc."],
+["ī","ī",".f.$.pl.$.acc."],
+["ī","iyo",".f.$.pl.$.acc."],
+["ī","yo",".f.$.pl.$.acc."],
+["ī","īnaṃ",".f.$.pl.$.gen."],
+["ī","īnaṃ",".f.$.pl.$.dat."],
+["ī","īhi",".f.$.pl.$.inst."],
+["ī","ībhi",".f.$.pl.$.inst."],
+["ī","īhi",".f.$.pl.$.abl."],
+["ī","ībhi",".f.$.pl.$.abl."],
+["ī","īsu",".f.$.pl.$.loc."],
+["u","u",".m.$.sg.$.nom."],
+["u","u",".m.$.sg.$.voc."],
+["u","uṃ",".m.$.sg.$.acc."],
+["u","ussa",".m.$.sg.$.gen."],
+["u","uno",".m.$.sg.$.gen."],
+["u","ussa",".m.$.sg.$.dat."],
+["u","uno",".m.$.sg.$.dat."],
+["u","unā",".m.$.sg.$.inst."],
+["u","unā",".m.$.sg.$.abl."],
+["u","usmā",".m.$.sg.$.abl."],
+["u","umhā",".m.$.sg.$.abl."],
+["u","usmiṃ",".m.$.sg.$.loc."],
+["u","umhi",".m.$.sg.$.loc."],
+["u","ū",".m.$.pl.$.nom."],
+["u","avo",".m.$.pl.$.nom."],
+["u","ū",".m.$.pl.$.voc."],
+["u","avo",".m.$.pl.$.voc."],
+["u","ave",".m.$.pl.$.voc."],
+["u","ū",".m.$.pl.$.acc."],
+["u","avo",".m.$.pl.$.acc."],
+["u","ūnaṃ",".m.$.pl.$.gen."],
+["u","ūnaṃ",".m.$.pl.$.dat."],
+["u","ūhi",".m.$.pl.$.inst."],
+["u","ūbhi",".m.$.pl.$.inst."],
+["u","ūhi",".m.$.pl.$.abl."],
+["u","ūbhi",".m.$.pl.$.abl."],
+["u","ūsu",".m.$.pl.$.loc."],
+["u","u",".nt.$.sg.$.nom."],
+["u","u",".nt.$.sg.$.voc."],
+["u","uṃ",".nt.$.sg.$.acc."],
+["u","ussa",".nt.$.sg.$.gen."],
+["u","uno",".nt.$.sg.$.gen."],
+["u","ussa",".nt.$.sg.$.dat."],
+["u","uno",".nt.$.sg.$.dat."],
+["u","unā",".nt.$.sg.$.inst."],
+["u","unā",".nt.$.sg.$.abl."],
+["u","usmā",".nt.$.sg.$.abl."],
+["u","umhā",".nt.$.sg.$.abl."],
+["u","usmiṃ",".nt.$.sg.$.loc."],
+["u","umhi",".nt.$.sg.$.loc."],
+["u","ū",".nt.$.pl.$.nom."],
+["u","ūni",".nt.$.pl.$.nom."],
+["u","ū",".nt.$.pl.$.voc."],
+["u","ūni",".nt.$.pl.$.voc."],
+["u","ū",".nt.$.pl.$.acc."],
+["u","ūni",".nt.$.pl.$.acc."],
+["u","ūnaṃ",".nt.$.pl.$.gen."],
+["u","ūnaṃ",".nt.$.pl.$.dat."],
+["u","ūhi",".nt.$.pl.$.inst."],
+["u","ūbhi",".nt.$.pl.$.inst."],
+["u","ūhi",".nt.$.pl.$.abl."],
+["u","ūbhi",".nt.$.pl.$.abl."],
+["u","ūsu",".nt.$.pl.$.loc."],
+["u","u",".f.$.sg.$.nom."],
+["u","u",".f.$.sg.$.voc."],
+["u","uṃ",".f.$.sg.$.acc."],
+["u","uyā",".f.$.sg.$.gen."],
+["u","uyā",".f.$.sg.$.dat."],
+["u","uyā",".f.$.sg.$.inst."],
+["u","uyā",".f.$.sg.$.abl."],
+["u","uto",".f.$.sg.$.abl."],
+["u","uyā",".f.$.sg.$.loc."],
+["u","uyaṃ",".f.$.sg.$.loc."],
+["u","ū",".f.$.pl.$.nom."],
+["u","uyo",".f.$.pl.$.nom."],
+["u","ūvo",".f.$.pl.$.nom."],
+["u","ū",".f.$.pl.$.voc."],
+["u","uyo",".f.$.pl.$.voc."],
+["u","ū",".f.$.pl.$.acc."],
+["u","uyo",".f.$.pl.$.acc."],
+["u","ūnaṃ",".f.$.pl.$.gen."],
+["u","ūnaṃ",".f.$.pl.$.dat."],
+["u","ūhi",".f.$.pl.$.inst."],
+["u","ūbhi",".f.$.pl.$.inst."],
+["u","ūhi",".f.$.pl.$.abl."],
+["u","ūbhi",".f.$.pl.$.abl."],
+["u","ūsu",".f.$.pl.$.loc."],
+["ū","ū",".m.$.sg.$.nom."],
+["ū","ū",".m.$.sg.$.voc."],
+["ū","uṃ",".m.$.sg.$.acc."],
+["ū","ussa",".m.$.sg.$.gen."],
+["ū","uno",".m.$.sg.$.gen."],
+["ū","ussa",".m.$.sg.$.dat."],
+["ū","uno",".m.$.sg.$.dat."],
+["ū","unā",".m.$.sg.$.inst."],
+["ū","unā",".m.$.sg.$.abl."],
+["ū","usmā",".m.$.sg.$.abl."],
+["ū","umhā",".m.$.sg.$.abl."],
+["ū","usmiṃ",".m.$.sg.$.loc."],
+["ū","umhi",".m.$.sg.$.loc."],
+["ū","ū",".m.$.pl.$.nom."],
+["ū","avo",".m.$.pl.$.nom."],
+["ū","ū",".m.$.pl.$.voc."],
+["ū","avo",".m.$.pl.$.voc."],
+["ū","ave",".m.$.pl.$.voc."],
+["ū","ū",".m.$.pl.$.acc."],
+["ū","avo",".m.$.pl.$.acc."],
+["ū","ūnaṃ",".m.$.pl.$.gen."],
+["ū","ūnaṃ",".m.$.pl.$.dat."],
+["ū","ūhi",".m.$.pl.$.inst."],
+["ū","ūbhi",".m.$.pl.$.inst."],
+["ū","ūhi",".m.$.pl.$.abl."],
+["ū","ūbhi",".m.$.pl.$.abl."],
+["ū","ūsu",".m.$.pl.$.loc."],
+["ū","ū",".f.$.sg.$.nom."],
+["ū","ū",".f.$.sg.$.voc."],
+["ū","uṃ",".f.$.sg.$.acc."],
+["ū","uyā",".f.$.sg.$.gen."],
+["ū","uyā",".f.$.sg.$.dat."],
+["ū","uyā",".f.$.sg.$.inst."],
+["ū","uyā",".f.$.sg.$.abl."],
+["ū","uto",".f.$.sg.$.abl."],
+["ū","uyā",".f.$.sg.$.loc."],
+["ū","uyaṃ",".f.$.sg.$.loc."],
+["ū","ū",".f.$.pl.$.nom."],
+["ū","uyo",".f.$.pl.$.nom."],
+["ū","ū",".f.$.pl.$.voc."],
+["ū","uyo",".f.$.pl.$.voc."],
+["ū","ū",".f.$.pl.$.acc."],
+["ū","uyo",".f.$.pl.$.acc."],
+["ū","ūnaṃ",".f.$.pl.$.gen."],
+["ū","ūnaṃ",".f.$.pl.$.dat."],
+["ū","ūhi",".f.$.pl.$.inst."],
+["ū","ūbhi",".f.$.pl.$.inst."],
+["ū","ūhi",".f.$.pl.$.abl."],
+["ū","ūbhi",".f.$.pl.$.abl."],
+["ū","ūsu",".f.$.pl.$.loc."],
+["as","o",".m.$.sg.$.nom."],
+["as","aṃ",".m.$.sg.$.nom."],
+["o","o",".m.$.sg.$.nom."],
+["o","aṃ",".m.$.sg.$.nom."],
+["as","o",".m.$.sg.$.voc."],
+["as","aṃ",".m.$.sg.$.voc."],
+["as","ā",".m.$.sg.$.voc."],
+["as","a",".m.$.sg.$.voc."],
+["o","o",".m.$.sg.$.voc."],
+["o","aṃ",".m.$.sg.$.voc."],
+["o","ā",".m.$.sg.$.voc."],
+["o","a",".m.$.sg.$.voc."],
+["as","o",".m.$.sg.$.acc."],
+["as","aṃ",".m.$.sg.$.acc."],
+["o","o",".m.$.sg.$.acc."],
+["o","aṃ",".m.$.sg.$.acc."],
+["as","aso",".m.$.sg.$.gen."],
+["as","assa",".m.$.sg.$.gen."],
+["o","aso",".m.$.sg.$.gen."],
+["o","assa",".m.$.sg.$.gen."],
+["as","aso",".m.$.sg.$.dat."],
+["as","assa",".m.$.sg.$.dat."],
+["o","aso",".m.$.sg.$.dat."],
+["o","assa",".m.$.sg.$.dat."],
+["as","asā",".m.$.sg.$.inst."],
+["as","ena",".m.$.sg.$.inst."],
+["o","asā",".m.$.sg.$.inst."],
+["o","ena",".m.$.sg.$.inst."],
+["as","asā",".m.$.sg.$.abl."],
+["as","asmā",".m.$.sg.$.abl."],
+["as","amhā",".m.$.sg.$.abl."],
+["as","ā",".m.$.sg.$.abl."],
+["o","asā",".m.$.sg.$.abl."],
+["o","asmā",".m.$.sg.$.abl."],
+["o","amhā",".m.$.sg.$.abl."],
+["o","ā",".m.$.sg.$.abl."],
+["as","asi",".m.$.sg.$.loc."],
+["as","e",".m.$.sg.$.loc."],
+["as","asmiṃ",".m.$.sg.$.loc."],
+["as","amhi",".m.$.sg.$.loc."],
+["o","asi",".m.$.sg.$.loc."],
+["o","e",".m.$.sg.$.loc."],
+["o","asmiṃ",".m.$.sg.$.loc."],
+["o","amhi",".m.$.sg.$.loc."],
+["as","ā",".m.$.pl.$.nom."],
+["o","ā",".m.$.pl.$.nom."],
+["as","ā",".m.$.pl.$.voc."],
+["o","ā",".m.$.pl.$.voc."],
+["as","e",".m.$.pl.$.acc."],
+["o","e",".m.$.pl.$.acc."],
+["as","ānaṃ",".m.$.pl.$.gen."],
+["o","ānaṃ",".m.$.pl.$.gen."],
+["as","ānaṃ",".m.$.pl.$.dat."],
+["o","ānaṃ",".m.$.pl.$.dat."],
+["as","ehi",".m.$.pl.$.inst."],
+["as","ebhi",".m.$.pl.$.inst."],
+["o","ehi",".m.$.pl.$.inst."],
+["o","ebhi",".m.$.pl.$.inst."],
+["as","ehi",".m.$.pl.$.abl."],
+["as","ebhi",".m.$.pl.$.abl."],
+["o","ehi",".m.$.pl.$.abl."],
+["o","ebhi",".m.$.pl.$.abl."],
+["as","esu",".m.$.pl.$.loc."],
+["o","esu",".m.$.pl.$.loc."],
+["as","o",".nt.$.sg.$.nom."],
+["as","aṃ",".nt.$.sg.$.nom."],
+["o","o",".nt.$.sg.$.nom."],
+["o","aṃ",".nt.$.sg.$.nom."],
+["as","o",".nt.$.sg.$.voc."],
+["as","aṃ",".nt.$.sg.$.voc."],
+["as","ā",".nt.$.sg.$.voc."],
+["as","a",".nt.$.sg.$.voc."],
+["o","o",".nt.$.sg.$.voc."],
+["o","aṃ",".nt.$.sg.$.voc."],
+["o","ā",".nt.$.sg.$.voc."],
+["o","a",".nt.$.sg.$.voc."],
+["as","o",".nt.$.sg.$.acc."],
+["as","aṃ",".nt.$.sg.$.acc."],
+["o","o",".nt.$.sg.$.acc."],
+["o","aṃ",".nt.$.sg.$.acc."],
+["as","aso",".nt.$.sg.$.gen."],
+["as","assa",".nt.$.sg.$.gen."],
+["o","aso",".nt.$.sg.$.gen."],
+["o","assa",".nt.$.sg.$.gen."],
+["as","aso",".nt.$.sg.$.dat."],
+["as","assa",".nt.$.sg.$.dat."],
+["o","aso",".nt.$.sg.$.dat."],
+["o","assa",".nt.$.sg.$.dat."],
+["as","asā",".nt.$.sg.$.inst."],
+["as","ena",".nt.$.sg.$.inst."],
+["o","asā",".nt.$.sg.$.inst."],
+["o","ena",".nt.$.sg.$.inst."],
+["as","asā",".nt.$.sg.$.abl."],
+["as","asmā",".nt.$.sg.$.abl."],
+["as","amhā",".nt.$.sg.$.abl."],
+["as","ā",".nt.$.sg.$.abl."],
+["o","asā",".nt.$.sg.$.abl."],
+["o","asmā",".nt.$.sg.$.abl."],
+["o","amhā",".nt.$.sg.$.abl."],
+["o","ā",".nt.$.sg.$.abl."],
+["as","asi",".nt.$.sg.$.loc."],
+["as","e",".nt.$.sg.$.loc."],
+["as","asmiṃ",".nt.$.sg.$.loc."],
+["as","amhi",".nt.$.sg.$.loc."],
+["o","asi",".nt.$.sg.$.loc."],
+["o","e",".nt.$.sg.$.loc."],
+["o","asmiṃ",".nt.$.sg.$.loc."],
+["o","amhi",".nt.$.sg.$.loc."],
+["as","ā",".nt.$.pl.$.nom."],
+["o","ā",".nt.$.pl.$.nom."],
+["as","ā",".nt.$.pl.$.voc."],
+["o","ā",".nt.$.pl.$.voc."],
+["as","e",".nt.$.pl.$.acc."],
+["o","e",".nt.$.pl.$.acc."],
+["as","ānaṃ",".nt.$.pl.$.gen."],
+["o","ānaṃ",".nt.$.pl.$.gen."],
+["as","ānaṃ",".nt.$.pl.$.dat."],
+["o","ānaṃ",".nt.$.pl.$.dat."],
+["as","ehi",".nt.$.pl.$.inst."],
+["as","ebhi",".nt.$.pl.$.inst."],
+["o","ehi",".nt.$.pl.$.inst."],
+["o","ebhi",".nt.$.pl.$.inst."],
+["as","ehi",".nt.$.pl.$.abl."],
+["as","ebhi",".nt.$.pl.$.abl."],
+["o","ehi",".nt.$.pl.$.abl."],
+["o","ebhi",".nt.$.pl.$.abl."],
+["as","esu",".nt.$.pl.$.loc."],
+["o","esu",".nt.$.pl.$.loc."],
+["an","ā",".m.$.sg.$.nom."],
+["an","ā",".m.$.sg.$.voc."],
+["an","a",".m.$.sg.$.voc."],
+["an","aṃ",".m.$.sg.$.acc."],
+["an","ānaṃ",".m.$.sg.$.acc."],
+["an","anaṃ",".m.$.sg.$.acc."],
+["an","assa",".m.$.sg.$.gen."],
+["an","ano",".m.$.sg.$.gen."],
+["an","assa",".m.$.sg.$.dat."],
+["an","ano",".m.$.sg.$.dat."],
+["an","ena",".m.$.sg.$.inst."],
+["an","anā",".m.$.sg.$.inst."],
+["an","anā",".m.$.sg.$.abl."],
+["an","asmā",".m.$.sg.$.abl."],
+["an","amhā",".m.$.sg.$.abl."],
+["an","ani",".m.$.sg.$.loc."],
+["an","asmiṃ",".m.$.sg.$.loc."],
+["an","amhi",".m.$.sg.$.loc."],
+["an","ā",".m.$.pl.$.nom."],
+["an","āno",".m.$.pl.$.nom."],
+["an","ā",".m.$.pl.$.voc."],
+["an","āno",".m.$.pl.$.voc."],
+["an","āno",".m.$.pl.$.acc."],
+["an","e",".m.$.pl.$.acc."],
+["an","ānaṃ",".m.$.pl.$.gen."],
+["an","ānaṃ",".m.$.pl.$.dat."],
+["an","anehi",".m.$.pl.$.inst."],
+["an","anebhi",".m.$.pl.$.inst."],
+["an","anehi",".m.$.pl.$.abl."],
+["an","anebhi",".m.$.pl.$.abl."],
+["an","anesu",".m.$.pl.$.loc."],
+["an","aṃ",".nt.$.sg.$.nom."],
+["an","a",".nt.$.sg.$.voc."],
+["an","aṃ",".nt.$.sg.$.acc."],
+["an","assa",".nt.$.sg.$.gen."],
+["an","assa",".nt.$.sg.$.dat."],
+["an","āya",".nt.$.sg.$.dat.",4],
+["an","ena",".nt.$.sg.$.inst."],
+["an","ā",".nt.$.sg.$.abl.",4],
+["an","asmā",".nt.$.sg.$.abl."],
+["an","amhā",".nt.$.sg.$.abl."],
+["an","ato",".nt.$.sg.$.abl.",4],
+["an","e",".nt.$.sg.$.loc.",4],
+["an","asmiṃ",".nt.$.sg.$.loc."],
+["an","amhi",".nt.$.sg.$.loc."],
+["an","āni",".nt.$.pl.$.nom."],
+["an","ā",".nt.$.pl.$.nom."],
+["an","āni",".nt.$.pl.$.voc."],
+["an","ā",".nt.$.pl.$.voc."],
+["an","āni",".nt.$.pl.$.acc."],
+["an","e",".nt.$.pl.$.acc.",4],
+["an","ānaṃ",".nt.$.pl.$.gen."],
+["an","ānaṃ",".nt.$.pl.$.dat."],
+["an","ehi",".nt.$.pl.$.inst."],
+["an","ebhi",".nt.$.pl.$.inst."],
+["an","ehi",".nt.$.pl.$.abl."],
+["an","ebhi",".nt.$.pl.$.abl."],
+["an","esu",".nt.$.pl.$.loc."],
+["ar","ā",".f.$.sg.$.nom."],
+["ar","ā",".f.$.sg.$.voc."],
+["ar","aṃ",".f.$.sg.$.acc."],
+["ar","ānaṃ",".f.$.sg.$.acc."],
+["ar","assa",".f.$.sg.$.gen."],
+["ar","ino",".f.$.sg.$.gen."],
+["ar","assa",".f.$.sg.$.dat."],
+["ar","ino",".f.$.sg.$.dat."],
+["ar","ena",".f.$.sg.$.inst."],
+["ar","inā",".f.$.sg.$.inst."],
+["ar","asmā",".f.$.sg.$.abl."],
+["ar","amhā",".f.$.sg.$.abl."],
+["ar","ini",".f.$.sg.$.loc."],
+["ar","asmiṃ",".f.$.sg.$.loc."],
+["ar","amhi",".f.$.sg.$.loc."],
+["ar","ā",".f.$.pl.$.nom."],
+["ar","āno",".f.$.pl.$.nom."],
+["ar","ā",".f.$.pl.$.voc."],
+["ar","āno",".f.$.pl.$.voc."],
+["ar","ā",".f.$.pl.$.acc."],
+["ar","āno",".f.$.pl.$.acc."],
+["ar","ānaṃ",".f.$.pl.$.gen."],
+["ar","ānaṃ",".f.$.pl.$.dat."],
+["ar","ehi",".f.$.pl.$.inst."],
+["ar","āhi",".f.$.pl.$.inst."],
+["ar","ehi",".f.$.pl.$.abl."],
+["ar","āhi",".f.$.pl.$.abl."],
+["ar","esu",".f.$.pl.$.loc."],
+["ar","āsu",".f.$.pl.$.loc."],
+["ar","ā",".nt.$.sg.$.nom."],
+["ar","ā",".nt.$.sg.$.voc."],
+["ar","aṃ",".nt.$.sg.$.acc."],
+["ar","ānaṃ",".nt.$.sg.$.acc."],
+["ar","assa",".nt.$.sg.$.gen."],
+["ar","ino",".nt.$.sg.$.gen."],
+["ar","assa",".nt.$.sg.$.dat."],
+["ar","ino",".nt.$.sg.$.dat."],
+["ar","ena",".nt.$.sg.$.inst."],
+["ar","inā",".nt.$.sg.$.inst."],
+["ar","asmā",".nt.$.sg.$.abl."],
+["ar","amhā",".nt.$.sg.$.abl."],
+["ar","ini",".nt.$.sg.$.loc."],
+["ar","asmiṃ",".nt.$.sg.$.loc."],
+["ar","amhi",".nt.$.sg.$.loc."],
+["ar","ā",".nt.$.pl.$.nom."],
+["ar","āno",".nt.$.pl.$.nom."],
+["ar","ā",".nt.$.pl.$.voc."],
+["ar","āno",".nt.$.pl.$.voc."],
+["ar","ā",".nt.$.pl.$.acc."],
+["ar","āno",".nt.$.pl.$.acc."],
+["ar","ānaṃ",".nt.$.pl.$.gen."],
+["ar","ānaṃ",".nt.$.pl.$.dat."],
+["ar","ehi",".nt.$.pl.$.inst."],
+["ar","āhi",".nt.$.pl.$.inst."],
+["ar","ehi",".nt.$.pl.$.abl."],
+["ar","āhi",".nt.$.pl.$.abl."],
+["ar","esu",".nt.$.pl.$.loc."],
+["ar","āsu",".nt.$.pl.$.loc."],
+["a","e",".m.$.sg.$.nom.",4],
+["a","ā",".m.$.sg.$.inst.",4],
+["a","asā",".m.$.sg.$.inst.",4],
+["a","ā",".m.$.sg.$.dat.",4],
+["a","āya",".m.$.sg.$.gen.",4],
+["a","ā",".m.$.sg.$.gen.",4],
+["a","asi",".m.$.sg.$.loc.",4],
+["a","e",".m.$.sg.$.voc.",4],
+["a","o",".m.$.sg.$.voc.",4],
+["a","āse",".m.$.pl.$.nom.",4],
+["a","o",".m.$.pl.$.nom.",4],
+["a","ān",".m.$.pl.$.acc.",4],
+["a","e",".m.$.pl.$.inst.",4],
+["a","ato",".m.$.pl.$.abl.",4],
+["a","e",".nt.$.sg.$.nom.",4],
+["a","ā",".nt.$.sg.$.inst.",4],
+["a","asā",".nt.$.sg.$.inst.",4],
+["a","ā",".nt.$.sg.$.dat.",4],
+["a","asi",".nt.$.sg.$.loc.",4],
+["a","ā",".nt.$.sg.$.voc.",4],
+["a","aṃ",".nt.$.sg.$.voc.",4],
+["a","āya",".nt.$.sg.$.gen.",4],
+["a","ā",".nt.$.sg.$.gen.",4],
+["a","o",".nt.$.pl.$.acc.",4],
+["a","ato",".nt.$.pl.$.abl.",4],
+["ā","ā",".f.$.sg.$.inst.",4],
+["ā","āto",".f.$.sg.$.abl.",4],
+["ā","a",".f.$.sg.$.voc.",4],
+["ā","iyo",".f.$.pl.$.voc.",4],
+["i","e",".m.$.sg.$.dat.",4],
+["i","ito",".m.$.sg.$.abl.",4],
+["i","e",".m.$.sg.$.gen.",4],
+["i","ini",".m.$.sg.$.loc.",4],
+["i","e",".m.$.sg.$.loc.",4],
+["i","o",".m.$.sg.$.loc.",4],
+["i","iyo",".m.$.pl.$.nom.",4],
+["i","ino",".m.$.pl.$.nom.",4],
+["i","iyo",".m.$.pl.$.acc.",4],
+["i","ihi",".m.$.pl.$.inst.",4],
+["i","ibhi",".m.$.pl.$.inst.",4],
+["i","inaṃ",".m.$.pl.$.dat.",4],
+["i","ihi",".m.$.pl.$.abl.",4],
+["i","ibhi",".m.$.pl.$.abl.",4],
+["i","inaṃ",".m.$.pl.$.gen.",4],
+["i","isu",".m.$.pl.$.loc.",4],
+["i","iyo",".m.$.pl.$.voc.",4],
+["i","ihi",".nt.$.pl.$.inst."],
+["i","ibhi",".nt.$.pl.$.inst."],
+["i","ihi",".nt.$.pl.$.abl."],
+["i","ibhi",".nt.$.pl.$.abl."],
+["i","inaṃ",".nt.$.pl.$.gen."],
+["i","inaṃ",".nt.$.pl.$.dat."],
+["i","isu",".nt.$.pl.$.loc."],
+["i","iṃ",".nt.$.sg.$.nom.",4],
+["i","i",".nt.$.sg.$.acc.",4],
+["i","e",".nt.$.sg.$.dat.",4],
+["i","ito",".nt.$.sg.$.abl.",4],
+["i","e",".nt.$.sg.$.gen.",4],
+["i","ini",".nt.$.sg.$.loc.",4],
+["i","e",".nt.$.sg.$.loc.",4],
+["i","o",".nt.$.sg.$.loc.",4],
+["i","iṃ",".nt.$.sg.$.voc.",4],
+["i","ī",".f.$.sg.$.nom.",4],
+["i","ito",".f.$.sg.$.abl.",4],
+["i","myā",".f.$.sg.$.gen.",4],
+["i","o",".f.$.sg.$.loc.",4],
+["i","āyaṃ",".f.$.sg.$.loc.",4],
+["i","u",".f.$.sg.$.loc.",4],
+["i","ī",".f.$.sg.$.voc.",4],
+["ī","ini",".m.$.sg.$.loc."],
+["ī","īnaṃ",".m.$.pl.$.gen."],
+["ī","īnaṃ",".m.$.pl.$.dat."],
+["ī","īsu",".m.$.pl.$.loc."],
+["ī","i",".m.$.sg.$.nom.",4],
+["ī","iyo",".m.$.pl.$.nom.",4],
+["ī","iye",".m.$.pl.$.acc.",4],
+["ī","iyaṃ",".m.$.sg.$.acc.",4],
+["ī","ito",".m.$.sg.$.abl."],
+["ī","i",".f.$.sg.$.nom."],
+["ī","iyaṃ",".f.$.sg.$.acc."],
+["ī","ito",".f.$.sg.$.abl.",4],
+["ī","īto",".f.$.sg.$.abl.",4],
+["ī","āyo",".f.$.pl.$.nom.",4],
+["ī","āyo",".f.$.pl.$.nom.",4],
+["ī","āyo",".f.$.pl.$.nom.",4],
+["ī","inaṃ",".f.$.pl.$.gen."],
+["ī","inaṃ",".f.$.pl.$.dat."],
+["ī","īyanaṃ",".f.$.pl.$.gen."],
+["ī","īyanaṃ",".f.$.pl.$.dat."],
+["ī","iyanaṃ",".f.$.pl.$.gen."],
+["ī","iyanaṃ",".f.$.pl.$.dat."],
+["ī","isu",".f.$.pl.$.loc."],
+["ar","ā",".m.$.sg.$.nom."],
+["ar","ā",".m.$.sg.$.voc."],
+["ar","a",".m.$.sg.$.voc."],
+["ar","araṃ",".m.$.sg.$.acc."],
+["ar","āraṃ",".m.$.sg.$.acc."],
+["ar","u",".m.$.sg.$.dat."],
+["ar","ussa",".m.$.sg.$.dat."],
+["ar","uno",".m.$.sg.$.dat."],
+["ar","u",".m.$.sg.$.gen."],
+["ar","ussa",".m.$.sg.$.gen."],
+["ar","uno",".m.$.sg.$.gen."],
+["ar","arā",".m.$.sg.$.inst."],
+["ar","ara",".m.$.sg.$.inst."],
+["ar","āra",".m.$.sg.$.inst."],
+["ar","ārā",".m.$.sg.$.inst."],
+["ar","unā",".m.$.sg.$.inst."],
+["ar","arā",".m.$.sg.$.abl."],
+["ar","ara",".m.$.sg.$.abl."],
+["ar","āra",".m.$.sg.$.abl."],
+["ar","ārā",".m.$.sg.$.abl."],
+["ar","unā",".m.$.sg.$.abl."],
+["ar","ari",".m.$.sg.$.loc."],
+["ar","āro",".m.$.pl.$.nom."],
+["ar","ā",".m.$.pl.$.nom."],
+["ar","āro",".m.$.pl.$.voc."],
+["ar","ā",".m.$.pl.$.voc."],
+["ar","āro",".m.$.pl.$.acc."],
+["ar","āre",".m.$.pl.$.acc."],
+["ar","ānaṃ",".m.$.pl.$.dat."],
+["ar","ārānaṃ",".m.$.pl.$.dat."],
+["ar","ūnaṃ",".m.$.pl.$.dat."],
+["ar","ānaṃ",".m.$.pl.$.gen."],
+["ar","ārānaṃ",".m.$.pl.$.gen."],
+["ar","ūnaṃ",".m.$.pl.$.gen."],
+["ar","ārehi",".m.$.pl.$.inst."],
+["ar","ārebhi",".m.$.pl.$.inst."],
+["ar","ārehi",".m.$.pl.$.abl."],
+["ar","ārebhi",".m.$.pl.$.abl."],
+["ar","āresu",".m.$.pl.$.loc."],
+["ar","ūsu",".m.$.pl.$.loc."],
+["ar","āyo",".m.$.sg.$.voc."],
+["ar","iyo",".m.$.sg.$.voc."],
+["an","ane",".m.$.sg.$.loc."],
+["an","ā",".m.$.pl.$.voc."],
+["an","ubhi",".m.$.pl.$.inst."],
+["an","ūbhi",".m.$.pl.$.inst."],
+["an","uhi",".m.$.pl.$.inst."],
+["an","ūhi",".m.$.pl.$.inst."],
+["an","ūnaṃ",".m.$.pl.$.gen."],
+["an","ūnaṃ",".m.$.pl.$.gen."],
+["an","esu",".m.$.pl.$.loc."],
+["an","ūsu",".m.$.pl.$.loc."],
+["an","usu",".m.$.pl.$.loc."],
+["an","a",".nt.$.sg.$.nom."],
+["an","a",".nt.$.sg.$.acc."],
+["an","anā",".nt.$.sg.$.inst."],
+["an","unā",".nt.$.sg.$.inst."],
+["an","no",".nt.$.sg.$.dat."],
+["an","unā",".nt.$.sg.$.abl."],
+["an","no",".nt.$.sg.$.dat."],
+["an","ani",".nt.$.sg.$.loc."],
+["an","ā",".nt.$.pl.$.voc."],
+["as","āni",".m.$.pl.$.nom."],
+["as","ā",".m.$.pl.$.acc."],
+["as","āni",".m.$.pl.$.acc."],
+["as","āni",".m.$.pl.$.voc."],
+["as","āni",".m.$.pl.$.nom."],
+["as","ā",".m.$.pl.$.acc."],
+["as","āni",".m.$.pl.$.acc."],
+["as","āni",".m.$.pl.$.voc."],
+["as","āni",".m.$.pl.$.nom."],
+["as","ā",".m.$.pl.$.acc."],
+["as","āni",".m.$.pl.$.acc."],
+["as","āni",".m.$.pl.$.voc."],
+["us","u",".m.$.sg.$.nom."],
+["us","uṃ",".m.$.sg.$.nom."],
+["us","u",".m.$.sg.$.voc."],
+["us","uṃ",".m.$.sg.$.voc."],
+["us","u",".m.$.sg.$.acc."],
+["us","uṃ",".m.$.sg.$.acc."],
+["us","ussa",".m.$.sg.$.dat."],
+["us","uno",".m.$.sg.$.dat."],
+["us","ussa",".m.$.sg.$.gen."],
+["us","uno",".m.$.sg.$.gen."],
+["us","unā",".m.$.sg.$.inst."],
+["us","usā",".m.$.sg.$.inst."],
+["us","unā",".m.$.sg.$.abl."],
+["us","usā",".m.$.sg.$.abl."],
+["us","uni",".m.$.sg.$.loc."],
+["us","usi",".m.$.sg.$.loc."],
+["us","ū",".m.$.pl.$.nom."],
+["us","ūni",".m.$.pl.$.nom."],
+["us","ū",".m.$.pl.$.voc."],
+["us","ūni",".m.$.pl.$.voc."],
+["us","ū",".m.$.pl.$.acc."],
+["us","ūni",".m.$.pl.$.acc."],
+["us","ūnaṃ",".m.$.pl.$.dat."],
+["us","ūsaṃ",".m.$.pl.$.dat."],
+["us","ūnaṃ",".m.$.pl.$.gen."],
+["us","ūsaṃ",".m.$.pl.$.gen."],
+["us","ūhi",".m.$.pl.$.inst."],
+["us","ūbhi",".m.$.pl.$.inst."],
+["us","ūhi",".m.$.pl.$.abl."],
+["us","ūbhi",".m.$.pl.$.abl."],
+["us","ūsu",".m.$.pl.$.loc."],
+["a","assā",".m.$.sg.$.gen."],
+["a","assā",".m.$.sg.$.dat."],
+["a","enā",".m.$.sg.$.inst."],
+["a","amhī",".m.$.sg.$.loc."],
+["a","ehī",".m.$.pl.$.inst."],
+["a","ebhī",".m.$.pl.$.inst."],
+["a","ehī",".m.$.pl.$.abl."],
+["a","ebhī",".m.$.pl.$.abl."],
+["a","esū",".m.$.pl.$.loc."],
+["a","assā",".nt.$.sg.$.gen."],
+["a","assā",".nt.$.sg.$.dat."],
+["a","enā",".nt.$.sg.$.inst."],
+["a","amhī",".nt.$.sg.$.loc."],
+["a","ānī",".nt.$.pl.$.nom."],
+["a","ānī",".nt.$.pl.$.voc."],
+["a","ānī",".nt.$.pl.$.acc."],
+["a","ehī",".nt.$.pl.$.inst."],
+["a","ebhī",".nt.$.pl.$.inst."],
+["a","ehī",".nt.$.pl.$.abl."],
+["a","ebhī",".nt.$.pl.$.abl."],
+["a","esū",".nt.$.pl.$.loc."],
+["ā","āhī",".f.$.pl.$.inst."],
+["ā","ābhī",".f.$.pl.$.inst."],
+["ā","āhī",".f.$.pl.$.abl."],
+["ā","ābhī",".f.$.pl.$.abl."],
+["ā","āsū",".f.$.pl.$.loc."],
+["i","issā",".m.$.sg.$.gen."],
+["i","issā",".m.$.sg.$.dat."],
+["i","imhī",".m.$.sg.$.loc."],
+["i","īhī",".m.$.pl.$.inst."],
+["i","ībhī",".m.$.pl.$.inst."],
+["i","īhī",".m.$.pl.$.abl."],
+["i","ībhī",".m.$.pl.$.abl."],
+["i","īsū",".m.$.pl.$.loc."],
+["i","assā",".nt.$.sg.$.gen."],
+["i","assā",".nt.$.sg.$.dat."],
+["i","imhī",".nt.$.sg.$.loc."],
+["i","īnī",".nt.$.pl.$.nom."],
+["i","īnī",".nt.$.pl.$.voc."],
+["i","īnī",".nt.$.pl.$.acc."],
+["i","īhī",".nt.$.pl.$.inst."],
+["i","ībhī",".nt.$.pl.$.inst."],
+["i","īhī",".nt.$.pl.$.abl."],
+["i","ībhī",".nt.$.pl.$.abl."],
+["i","īsū",".nt.$.pl.$.loc."],
+["i","īhī",".f.$.pl.$.inst."],
+["i","ībhī",".f.$.pl.$.inst."],
+["i","īhī",".f.$.pl.$.abl."],
+["i","ībhī",".f.$.pl.$.abl."],
+["i","īsū",".f.$.pl.$.loc."],
+["ī","issā",".m.$.sg.$.gen."],
+["in","issā",".m.$.sg.$.gen."],
+["ī","issā",".m.$.sg.$.dat."],
+["in","issā",".m.$.sg.$.dat."],
+["ī","imhī",".m.$.sg.$.loc."],
+["in","imhī",".m.$.sg.$.loc."],
+["ī","īhī",".m.$.pl.$.inst."],
+["ī","ībhī",".m.$.pl.$.inst."],
+["in","īhī",".m.$.pl.$.inst."],
+["in","ībhī",".m.$.pl.$.inst."],
+["ī","īhī",".m.$.pl.$.abl."],
+["ī","ībhī",".m.$.pl.$.abl."],
+["in","īhī",".m.$.pl.$.abl."],
+["in","ībhī",".m.$.pl.$.abl."],
+["ī","īsū",".m.$.pl.$.loc."],
+["in","īsū",".m.$.pl.$.loc."],
+["ī","īhī",".f.$.pl.$.inst."],
+["ī","ībhī",".f.$.pl.$.inst."],
+["ī","īhī",".f.$.pl.$.abl."],
+["ī","ībhī",".f.$.pl.$.abl."],
+["ī","īsū",".f.$.pl.$.loc."],
+["u","ussā",".m.$.sg.$.gen."],
+["u","ussā",".m.$.sg.$.dat."],
+["u","umhī",".m.$.sg.$.loc."],
+["u","ūhī",".m.$.pl.$.inst."],
+["u","ūbhī",".m.$.pl.$.inst."],
+["u","ūhī",".m.$.pl.$.abl."],
+["u","ūbhī",".m.$.pl.$.abl."],
+["u","ūsū",".m.$.pl.$.loc."],
+["u","ussā",".nt.$.sg.$.gen."],
+["u","ussā",".nt.$.sg.$.dat."],
+["u","umhī",".nt.$.sg.$.loc."],
+["u","ūnī",".nt.$.pl.$.nom."],
+["u","ūnī",".nt.$.pl.$.voc."],
+["u","ūnī",".nt.$.pl.$.acc."],
+["u","ūhī",".nt.$.pl.$.inst."],
+["u","ūbhī",".nt.$.pl.$.inst."],
+["u","ūhī",".nt.$.pl.$.abl."],
+["u","ūbhī",".nt.$.pl.$.abl."],
+["u","ūsū",".nt.$.pl.$.loc."],
+["u","ūhī",".f.$.pl.$.inst."],
+["u","ūbhī",".f.$.pl.$.inst."],
+["u","ūhī",".f.$.pl.$.abl."],
+["u","ūbhī",".f.$.pl.$.abl."],
+["u","ūsū",".f.$.pl.$.loc."],
+["ū","ussā",".m.$.sg.$.gen."],
+["ū","ussā",".m.$.sg.$.dat."],
+["ū","umhī",".m.$.sg.$.loc."],
+["ū","ūhī",".m.$.pl.$.inst."],
+["ū","ūbhī",".m.$.pl.$.inst."],
+["ū","ūhī",".m.$.pl.$.abl."],
+["ū","ūbhī",".m.$.pl.$.abl."],
+["ū","ūsū",".m.$.pl.$.loc."],
+["ū","ūhī",".f.$.pl.$.inst."],
+["ū","ūbhī",".f.$.pl.$.inst."],
+["ū","ūhī",".f.$.pl.$.abl."],
+["ū","ūbhī",".f.$.pl.$.abl."],
+["ū","ūsū",".f.$.pl.$.loc."],
+["as","assā",".m.$.sg.$.gen."],
+["o","assā",".m.$.sg.$.gen."],
+["as","assā",".m.$.sg.$.dat."],
+["o","assā",".m.$.sg.$.dat."],
+["as","enā",".m.$.sg.$.inst."],
+["o","enā",".m.$.sg.$.inst."],
+["as","asī",".m.$.sg.$.loc."],
+["as","amhī",".m.$.sg.$.loc."],
+["o","asī",".m.$.sg.$.loc."],
+["o","amhī",".m.$.sg.$.loc."],
+["as","ehī",".m.$.pl.$.inst."],
+["as","ebhī",".m.$.pl.$.inst."],
+["o","ehī",".m.$.pl.$.inst."],
+["o","ebhī",".m.$.pl.$.inst."],
+["as","ehī",".m.$.pl.$.abl."],
+["as","ebhī",".m.$.pl.$.abl."],
+["o","ehī",".m.$.pl.$.abl."],
+["o","ebhī",".m.$.pl.$.abl."],
+["as","esū",".m.$.pl.$.loc."],
+["o","esū",".m.$.pl.$.loc."],
+["as","assā",".nt.$.sg.$.gen."],
+["o","assā",".nt.$.sg.$.gen."],
+["as","assā",".nt.$.sg.$.dat."],
+["o","assā",".nt.$.sg.$.dat."],
+["as","enā",".nt.$.sg.$.inst."],
+["o","enā",".nt.$.sg.$.inst."],
+["as","asī",".nt.$.sg.$.loc."],
+["as","amhī",".nt.$.sg.$.loc."],
+["o","asī",".nt.$.sg.$.loc."],
+["o","amhī",".nt.$.sg.$.loc."],
+["as","ehī",".nt.$.pl.$.inst."],
+["as","ebhī",".nt.$.pl.$.inst."],
+["o","ehī",".nt.$.pl.$.inst."],
+["o","ebhī",".nt.$.pl.$.inst."],
+["as","ehī",".nt.$.pl.$.abl."],
+["as","ebhī",".nt.$.pl.$.abl."],
+["o","ehī",".nt.$.pl.$.abl."],
+["o","ebhī",".nt.$.pl.$.abl."],
+["as","esū",".nt.$.pl.$.loc."],
+["o","esū",".nt.$.pl.$.loc."],
+["an","assā",".m.$.sg.$.gen."],
+["an","assā",".m.$.sg.$.dat."],
+["an","enā",".m.$.sg.$.inst."],
+["an","anī",".m.$.sg.$.loc."],
+["an","amhī",".m.$.sg.$.loc."],
+["an","anehī",".m.$.pl.$.inst."],
+["an","anebhī",".m.$.pl.$.inst."],
+["an","anehī",".m.$.pl.$.abl."],
+["an","anebhī",".m.$.pl.$.abl."],
+["an","anesū",".m.$.pl.$.loc."],
+["an","assā",".nt.$.sg.$.gen."],
+["an","assā",".nt.$.sg.$.dat."],
+["an","enā",".nt.$.sg.$.inst."],
+["an","amhī",".nt.$.sg.$.loc."],
+["an","ānī",".nt.$.pl.$.nom."],
+["an","ānī",".nt.$.pl.$.voc."],
+["an","ānī",".nt.$.pl.$.acc."],
+["an","ehī",".nt.$.pl.$.inst."],
+["an","ebhī",".nt.$.pl.$.inst."],
+["an","ehī",".nt.$.pl.$.abl."],
+["an","ebhī",".nt.$.pl.$.abl."],
+["an","esū",".nt.$.pl.$.loc."],
+["ar","assā",".f.$.sg.$.gen."],
+["ar","assā",".f.$.sg.$.dat."],
+["ar","enā",".f.$.sg.$.inst."],
+["ar","amhī",".f.$.sg.$.loc."],
+["ar","ehī",".f.$.pl.$.inst."],
+["ar","āhī",".f.$.pl.$.inst."],
+["ar","ehī",".f.$.pl.$.abl."],
+["ar","āhī",".f.$.pl.$.abl."],
+["ar","esū",".f.$.pl.$.loc."],
+["ar","āsū",".f.$.pl.$.loc."],
+["ar","assā",".nt.$.sg.$.gen."],
+["ar","assā",".nt.$.sg.$.dat."],
+["ar","enā",".nt.$.sg.$.inst."],
+["ar","amhī",".nt.$.sg.$.loc."],
+["ar","ehī",".nt.$.pl.$.inst."],
+["ar","āhī",".nt.$.pl.$.inst."],
+["ar","ehī",".nt.$.pl.$.abl."],
+["ar","āhī",".nt.$.pl.$.abl."],
+["ar","esū",".nt.$.pl.$.loc."],
+["ar","āsū",".nt.$.pl.$.loc."],
+["a","asī",".m.$.sg.$.loc.",4],
+["a","asī",".nt.$.sg.$.loc.",4],
+["i","ihī",".m.$.pl.$.inst.",4],
+["i","ibhī",".m.$.pl.$.inst.",4],
+["i","ihī",".m.$.pl.$.abl.",4],
+["i","ibhī",".m.$.pl.$.abl.",4],
+["i","isū",".m.$.pl.$.loc.",4],
+["i","ihī",".nt.$.pl.$.inst."],
+["i","ibhī",".nt.$.pl.$.inst."],
+["i","ihī",".nt.$.pl.$.abl."],
+["i","ibhī",".nt.$.pl.$.abl."],
+["i","isū",".nt.$.pl.$.loc."],
+["ī","īsū",".m.$.pl.$.loc."],
+["ī","isū",".f.$.pl.$.loc."],
+["ar","ussā",".m.$.sg.$.dat."],
+["ar","ussā",".m.$.sg.$.gen."],
+["ar","arī",".m.$.sg.$.loc."],
+["ar","ārehī",".m.$.pl.$.inst."],
+["ar","ārebhī",".m.$.pl.$.inst."],
+["ar","ārehī",".m.$.pl.$.abl."],
+["ar","ārebhī",".m.$.pl.$.abl."],
+["ar","āresū",".m.$.pl.$.loc."],
+["ar","ūsū",".m.$.pl.$.loc."],
+["an","ubhī",".m.$.pl.$.inst."],
+["an","ūbhī",".m.$.pl.$.inst."],
+["an","uhī",".m.$.pl.$.inst."],
+["an","ūhī",".m.$.pl.$.inst."],
+["an","esū",".m.$.pl.$.loc."],
+["an","ūsū",".m.$.pl.$.loc."],
+["an","usū",".m.$.pl.$.loc."],
+["an","anī",".nt.$.sg.$.loc."],
+["as","ānī",".m.$.pl.$.nom."],
+["as","ānī",".m.$.pl.$.acc."],
+["as","ānī",".m.$.pl.$.voc."],
+["as","ānī",".m.$.pl.$.nom."],
+["as","ānī",".m.$.pl.$.acc."],
+["as","ānī",".m.$.pl.$.voc."],
+["as","ānī",".m.$.pl.$.nom."],
+["as","ānī",".m.$.pl.$.acc."],
+["as","ānī",".m.$.pl.$.voc."],
+["us","ussā",".m.$.sg.$.dat."],
+["us","ussā",".m.$.sg.$.gen."],
+["us","unī",".m.$.sg.$.loc."],
+["us","usī",".m.$.sg.$.loc."],
+["us","ūnī",".m.$.pl.$.nom."],
+["us","ūnī",".m.$.pl.$.voc."],
+["us","ūnī",".m.$.pl.$.acc."],
+["us","ūhī",".m.$.pl.$.inst."],
+["us","ūbhī",".m.$.pl.$.inst."],
+["us","ūhī",".m.$.pl.$.abl."],
+["us","ūbhī",".m.$.pl.$.abl."],
+["us","ūsū",".m.$.pl.$.loc."],
+["ant","ā",".m.$.pl.$.nom."],
+["ant","ā",".m.$.pl.$.voc."],
+["ant","ā",".m.$.sg.$.nom."],
+["ant","a",".m.$.sg.$.voc."],
+["ant","ā",".m.$.sg.$.voc."],
+["ant","ā",".nt.$.pl.$.nom."],
+["ant","ā",".nt.$.pl.$.voc."],
+["ant","a",".nt.$.sg.$.voc."],
+["ant","ā",".nt.$.sg.$.voc."],
+["ant","ā",".m.$.sg.$.voc."],
+["ant","ā",".nt.$.sg.$.voc."],
+["ant","aṃ",".m.$.sg.$.acc."],
+["ant","aṃ",".nt.$.sg.$.acc."],
+["ant","aṃ",".nt.$.sg.$.nom."],
+["ant","aṃ",".m.$.sg.$.nom."],
+["ant","aṃ",".m.$.sg.$.voc."],
+["ant","aṃ",".nt.$.sg.$.voc."],
+["ant","aṃ",".m.$.sg.$.voc."],
+["ant","aṃ",".nt.$.sg.$.voc."],
+["ant","ānaṃ",".m.$.pl.$.dat."],
+["ant","ānaṃ",".m.$.pl.$.gen."],
+["ant","e",".m.$.pl.$.acc."],
+["ant","ebhi",".m.$.pl.$.abl."],
+["ant","ebhi",".m.$.pl.$.inst."],
+["ant","ehi",".m.$.pl.$.abl."],
+["ant","ehi",".m.$.pl.$.inst."],
+["ant","esu",".m.$.pl.$.loc."],
+["anta","ā",".m.$.pl.$.nom."],
+["anta","ā",".m.$.pl.$.voc."],
+["anta","ā",".m.$.sg.$.nom."],
+["anta","a",".m.$.sg.$.voc."],
+["anta","ā",".m.$.sg.$.voc."],
+["anta","ā",".nt.$.pl.$.nom."],
+["anta","ā",".nt.$.pl.$.voc."],
+["anta","a",".nt.$.sg.$.voc."],
+["anta","ā",".nt.$.sg.$.voc."],
+["anta","ā",".m.$.sg.$.voc."],
+["anta","ā",".nt.$.sg.$.voc."],
+["anta","aṃ",".m.$.sg.$.acc."],
+["anta","aṃ",".nt.$.sg.$.acc."],
+["anta","aṃ",".nt.$.sg.$.nom."],
+["anta","aṃ",".m.$.sg.$.nom."],
+["anta","aṃ",".m.$.sg.$.voc."],
+["anta","aṃ",".nt.$.sg.$.voc."],
+["anta","aṃ",".m.$.sg.$.voc."],
+["anta","aṃ",".nt.$.sg.$.voc."],
+["anta","ānaṃ",".m.$.pl.$.dat."],
+["anta","ānaṃ",".m.$.pl.$.gen."],
+["anta","e",".m.$.pl.$.acc."],
+["anta","ebhi",".m.$.pl.$.abl."],
+["anta","ebhi",".m.$.pl.$.inst."],
+["anta","ehi",".m.$.pl.$.abl."],
+["anta","ehi",".m.$.pl.$.inst."],
+["anta","esu",".m.$.pl.$.loc."],
+["ti","ti",".3p.$.sg.$.pres."],
+["ti","nti",".3p.$.pl.$.pres."],
+["ti","te",".3p.$.sg.$.pres."],
+["ti","nte",".3p.$.pl.$.pres."],
+["ti","re",".3p.$.pl.$.pres."],
+["ti","ssati",".3p.$.sg.$.fut."],
+["ti","ssanti",".3p.$.pl.$.fut."],
+["ti","ssate",".3p.$.sg.$.fut."],
+["ti","ssante",".3p.$.pl.$.fut."],
+["ti","ssare",".3p.$.pl.$.fut."],
+["ti","tu",".3p.$.sg.$.imp."],
+["ti","ntu",".3p.$.pl.$.imp."],
+["ti","taṃ",".3p.$.sg.$.imp."],
+["ti","ntaṃ",".3p.$.pl.$.imp."],
+["ti","sā",".3p.$.sg.$.cond."],
+["ti","ssa",".3p.$.sg.$.cond."],
+["ti","ssati",".3p.$.sg.$.cond."],
+["ti","ssaṃsu",".3p.$.pl.$.cond."],
+["ti","ssatha",".3p.$.sg.$.cond."],
+["ti","ssiṃsu",".3p.$.pl.$.cond."],
+["ti","si",".3p.$.sg.$.aor."],
+["ti","sī",".3p.$.sg.$.aor."],
+["ti","sā",".3p.$.sg.$.aor."],
+["ti","siṃsu",".3p.$.pl.$.aor."],
+["ti","sṃ",".3p.$.pl.$.aor."],
+["ti","suṃū",".3p.$.pl.$.aor."],
+["ti","sā",".3p.$.sg.$.aor."],
+["ti","sa",".3p.$.sg.$.aor."],
+["ti","stthuṃ",".3p.$.pl.$.aor."],
+["ti","satthuṃ",".3p.$.pl.$.aor."],
+["ti","mi",".1p.$.sg.$.pres."],
+["ti","ma",".1p.$.pl.$.pres."],
+["ti","e",".1p.$.sg.$.pres."],
+["ti","mhe",".1p.$.pl.$.pres."],
+["ti","mahe",".1p.$.pl.$.pres."],
+["ti","mha",".1p.$.pl.$.pres."],
+["ti","mase",".1p.$.pl.$.pres."],
+["ti","mhase",".1p.$.pl.$.pres."],
+["ti","ssāmi",".1p.$.sg.$.fut."],
+["ti","ssāma",".1p.$.pl.$.fut."],
+["ti","ssaṃ",".1p.$.sg.$.fut."],
+["ti","ssāmhe",".1p.$.pl.$.fut."],
+["ti","ssāmase",".1p.$.pl.$.fut."],
+["ti","mi",".1p.$.sg.$.imp."],
+["ti","ma",".1p.$.pl.$.imp."],
+["ti","ssa",".1p.$.sg.$.cond."],
+["ti","ssamhā",".1p.$.pl.$.cond."],
+["ti","ssaṃ",".1p.$.sg.$.cond."],
+["ti","ssāmhase",".1p.$.pl.$.cond."],
+["ti","siṃ",".1p.$.sg.$.aor."],
+["ti","saṃ",".1p.$.sg.$.aor."],
+["ti","sṃ",".1p.$.sg.$.aor."],
+["ti","sa",".1p.$.sg.$.aor."],
+["ti","sā",".1p.$.sg.$.aor."],
+["ti","simha",".1p.$.pl.$.aor."],
+["ti","simhā",".1p.$.pl.$.aor."],
+["ti","sa",".1p.$.sg.$.aor."],
+["ti","simhe",".1p.$.pl.$.aor."],
+["ti","si",".2p.$.sg.$.pres."],
+["ti","tha",".2p.$.pl.$.pres."],
+["ti","se",".2p.$.sg.$.pres."],
+["ti","vhe",".2p.$.pl.$.pres."],
+["ti","ssasi",".2p.$.sg.$.fut."],
+["ti","ssatha",".2p.$.pl.$.fut."],
+["ti","ssase",".2p.$.sg.$.fut."],
+["ti","ssavhe",".2p.$.pl.$.fut."],
+["ti","hi",".2p.$.sg.$.imp."],
+["ti","ta",".2p.$.pl.$.imp."],
+["ti","ssu",".2p.$.sg.$.imp."],
+["ti","vho",".2p.$.pl.$.imp."],
+["ti","se",".2p.$.sg.$.cond."],
+["ti","ssa",".2p.$.sg.$.cond."],
+["ti","ssasi",".2p.$.sg.$.cond."],
+["ti","ssatha",".2p.$.pl.$.cond."],
+["ti","ssase",".2p.$.sg.$.cond."],
+["ti","ssavhe",".2p.$.pl.$.cond."],
+["ti","si",".2p.$.sg.$.aor."],
+["ti","so",".2p.$.sg.$.aor."],
+["ti","sā",".2p.$.sg.$.aor."],
+["ti","sttha",".2p.$.pl.$.aor."],
+["ti","sse",".2p.$.sg.$.aor."],
+["ti","svhaṃ",".2p.$.pl.$.aor."],
+["ti","eyya",".3p.$.sg.$.opt."],
+["ati","eyyuṃ",".3p.$.pl.$.opt."],
+["ati","etha",".3p.$.sg.$.opt."],
+["ati","eraṃ",".3p.$.pl.$.opt."],
+["ati","issati",".3p.$.sg.$.fut."],
+["ati","issanti",".3p.$.pl.$.fut."],
+["ati","issate",".3p.$.sg.$.fut."],
+["ati","issante",".3p.$.pl.$.fut."],
+["ati","issare",".3p.$.pl.$.fut."],
+["ati","i",".3p.$.sg.$.aor."],
+["ati","ī",".3p.$.sg.$.aor."],
+["ati","ā",".3p.$.sg.$.aor."],
+["ati","iṃsu",".3p.$.pl.$.aor."],
+["ati","ṃ",".3p.$.pl.$.aor."],
+["ati","uṃū",".3p.$.pl.$.aor."],
+["ati","ā",".3p.$.sg.$.aor."],
+["ati","a",".3p.$.sg.$.aor."],
+["ati","tthuṃ",".3p.$.pl.$.aor."],
+["ati","atthuṃ",".3p.$.pl.$.aor."],
+["ati","e",".1p.$.sg.$.imp."],
+["ati","āmase",".1p.$.pl.$.imp."],
+["ati","eyyāmi",".1p.$.sg.$.opt."],
+["ati","eyyāma",".1p.$.pl.$.opt."],
+["ati","eyyaṃ",".1p.$.sg.$.opt."],
+["ati","eyyāmhe",".1p.$.pl.$.opt."],
+["ati","issāmi",".1p.$.sg.$.fut."],
+["ati","issāma",".1p.$.pl.$.fut."],
+["ati","issaṃ",".1p.$.sg.$.fut."],
+["ati","issāmhe",".1p.$.pl.$.fut."],
+["ati","issāmase",".1p.$.pl.$.fut."],
+["ati","iṃ",".1p.$.sg.$.aor."],
+["ati","aṃ",".1p.$.sg.$.aor."],
+["ati","ṃ",".1p.$.sg.$.aor."],
+["ati","a",".1p.$.sg.$.aor."],
+["ati","ā",".1p.$.sg.$.aor."],
+["ati","imha",".1p.$.pl.$.aor."],
+["ati","imhā",".1p.$.pl.$.aor."],
+["ati","a",".1p.$.sg.$.aor."],
+["ati","imhe",".1p.$.pl.$.aor."],
+["ati","eyyāsi",".2p.$.sg.$.opt."],
+["ati","eyyātha",".2p.$.pl.$.opt."],
+["ati","etho",".2p.$.sg.$.opt."],
+["ati","eyyavho",".2p.$.pl.$.opt."],
+["ati","issasi",".2p.$.sg.$.fut."],
+["ati","issatha",".2p.$.pl.$.fut."],
+["ati","issase",".2p.$.sg.$.fut."],
+["ati","issavhe",".2p.$.pl.$.fut."],
+["ati","i",".2p.$.sg.$.aor."],
+["ati","o",".2p.$.sg.$.aor."],
+["ati","ā",".2p.$.sg.$.aor."],
+["ati","ttha",".2p.$.pl.$.aor."],
+["ati","se",".2p.$.sg.$.aor."],
+["ati","vhaṃ",".2p.$.pl.$.aor."],
+["āti","etha",".3p.$.sg.$.opt."],
+["āti","eraṃ",".3p.$.pl.$.opt."],
+["āti","issati",".3p.$.sg.$.fut."],
+["āti","issanti",".3p.$.pl.$.fut."],
+["āti","issate",".3p.$.sg.$.fut."],
+["āti","issante",".3p.$.pl.$.fut."],
+["āti","issare",".3p.$.pl.$.fut."],
+["āti","i",".3p.$.sg.$.aor."],
+["āti","ī",".3p.$.sg.$.aor."],
+["āti","ā",".3p.$.sg.$.aor."],
+["āti","iṃsu",".3p.$.pl.$.aor."],
+["āti","ṃ",".3p.$.pl.$.aor."],
+["āti","uṃū",".3p.$.pl.$.aor."],
+["āti","ā",".3p.$.sg.$.aor."],
+["āti","a",".3p.$.sg.$.aor."],
+["āti","tthuṃ",".3p.$.pl.$.aor."],
+["āti","atthuṃ",".3p.$.pl.$.aor."],
+["āti","e",".1p.$.sg.$.imp."],
+["āti","āmase",".1p.$.pl.$.imp."],
+["āti","eyyuṃ",".3p.$.pl.$.opt."],
+["āti","eyyāmi",".1p.$.sg.$.opt."],
+["āti","eyyāma",".1p.$.pl.$.opt."],
+["āti","eyyaṃ",".1p.$.sg.$.opt."],
+["āti","eyyāmhe",".1p.$.pl.$.opt."],
+["āti","issāmi",".1p.$.sg.$.fut."],
+["āti","issāma",".1p.$.pl.$.fut."],
+["āti","issaṃ",".1p.$.sg.$.fut."],
+["āti","issāmhe",".1p.$.pl.$.fut."],
+["āti","issāmase",".1p.$.pl.$.fut."],
+["āti","iṃ",".1p.$.sg.$.aor."],
+["āti","aṃ",".1p.$.sg.$.aor."],
+["āti","ṃ",".1p.$.sg.$.aor."],
+["āti","a",".1p.$.sg.$.aor."],
+["āti","ā",".1p.$.sg.$.aor."],
+["āti","imha",".1p.$.pl.$.aor."],
+["āti","imhā",".1p.$.pl.$.aor."],
+["āti","a",".1p.$.sg.$.aor."],
+["āti","imhe",".1p.$.pl.$.aor."],
+["āti","eyyāsi",".2p.$.sg.$.opt."],
+["āti","eyyātha",".2p.$.pl.$.opt."],
+["āti","etho",".2p.$.sg.$.opt."],
+["āti","eyyavho",".2p.$.pl.$.opt."],
+["āti","issasi",".2p.$.sg.$.fut."],
+["āti","issatha",".2p.$.pl.$.fut."],
+["āti","issase",".2p.$.sg.$.fut."],
+["āti","issavhe",".2p.$.pl.$.fut."],
+["āti","i",".2p.$.sg.$.aor."],
+["āti","o",".2p.$.sg.$.aor."],
+["āti","ā",".2p.$.sg.$.aor."],
+["āti","ttha",".2p.$.pl.$.aor."],
+["āti","se",".2p.$.sg.$.aor."],
+["āti","vhaṃ",".2p.$.pl.$.aor."],
+["eti","etha",".3p.$.sg.$.opt."],
+["eti","eraṃ",".3p.$.pl.$.opt."],
+["eti","issati",".3p.$.sg.$.fut."],
+["eti","issanti",".3p.$.pl.$.fut."],
+["eti","issate",".3p.$.sg.$.fut."],
+["eti","issante",".3p.$.pl.$.fut."],
+["eti","issare",".3p.$.pl.$.fut."],
+["eti","i",".3p.$.sg.$.aor."],
+["eti","ī",".3p.$.sg.$.aor."],
+["eti","ā",".3p.$.sg.$.aor."],
+["eti","iṃsu",".3p.$.pl.$.aor."],
+["eti","ṃ",".3p.$.pl.$.aor."],
+["eti","uṃū",".3p.$.pl.$.aor."],
+["eti","ā",".3p.$.sg.$.aor."],
+["eti","a",".3p.$.sg.$.aor."],
+["eti","tthuṃ",".3p.$.pl.$.aor."],
+["eti","atthuṃ",".3p.$.pl.$.aor."],
+["eti","e",".1p.$.sg.$.imp."],
+["eti","āmase",".1p.$.pl.$.imp."],
+["eti","eyyāmi",".1p.$.sg.$.opt."],
+["eti","eyyuṃ",".3p.$.pl.$.opt."],
+["eti","eyyāma",".1p.$.pl.$.opt."],
+["eti","eyyaṃ",".1p.$.sg.$.opt."],
+["eti","eyyāmhe",".1p.$.pl.$.opt."],
+["eti","issāmi",".1p.$.sg.$.fut."],
+["eti","issāma",".1p.$.pl.$.fut."],
+["eti","issaṃ",".1p.$.sg.$.fut."],
+["eti","issāmhe",".1p.$.pl.$.fut."],
+["eti","issāmase",".1p.$.pl.$.fut."],
+["eti","iṃ",".1p.$.sg.$.aor."],
+["eti","aṃ",".1p.$.sg.$.aor."],
+["eti","ṃ",".1p.$.sg.$.aor."],
+["eti","a",".1p.$.sg.$.aor."],
+["eti","ā",".1p.$.sg.$.aor."],
+["eti","imha",".1p.$.pl.$.aor."],
+["eti","imhā",".1p.$.pl.$.aor."],
+["eti","a",".1p.$.sg.$.aor."],
+["eti","imhe",".1p.$.pl.$.aor."],
+["eti","eyyāsi",".2p.$.sg.$.opt."],
+["eti","eyyātha",".2p.$.pl.$.opt."],
+["eti","etho",".2p.$.sg.$.opt."],
+["eti","eyyavho",".2p.$.pl.$.opt."],
+["eti","issasi",".2p.$.sg.$.fut."],
+["eti","issatha",".2p.$.pl.$.fut."],
+["eti","issase",".2p.$.sg.$.fut."],
+["eti","issavhe",".2p.$.pl.$.fut."],
+["eti","i",".2p.$.sg.$.aor."],
+["eti","o",".2p.$.sg.$.aor."],
+["eti","ā",".2p.$.sg.$.aor."],
+["eti","ttha",".2p.$.pl.$.aor."],
+["eti","se",".2p.$.sg.$.aor."],
+["eti","vhaṃ",".2p.$.pl.$.aor."],
+["oti","etha",".3p.$.sg.$.opt."],
+["oti","eraṃ",".3p.$.pl.$.opt."],
+["oti","issati",".3p.$.sg.$.fut."],
+["oti","issanti",".3p.$.pl.$.fut."],
+["oti","issate",".3p.$.sg.$.fut."],
+["oti","issante",".3p.$.pl.$.fut."],
+["oti","issare",".3p.$.pl.$.fut."],
+["oti","i",".3p.$.sg.$.aor."],
+["oti","ī",".3p.$.sg.$.aor."],
+["oti","ā",".3p.$.sg.$.aor."],
+["oti","iṃsu",".3p.$.pl.$.aor."],
+["oti","ṃ",".3p.$.pl.$.aor."],
+["oti","uṃū",".3p.$.pl.$.aor."],
+["oti","ā",".3p.$.sg.$.aor."],
+["oti","a",".3p.$.sg.$.aor."],
+["oti","tthuṃ",".3p.$.pl.$.aor."],
+["oti","atthuṃ",".3p.$.pl.$.aor."],
+["oti","e",".1p.$.sg.$.imp."],
+["oti","āmase",".1p.$.pl.$.imp."],
+["oti","eyyuṃ",".3p.$.pl.$.opt."],
+["oti","eyyāmi",".1p.$.sg.$.opt."],
+["oti","eyyāma",".1p.$.pl.$.opt."],
+["oti","eyyaṃ",".1p.$.sg.$.opt."],
+["oti","eyyāmhe",".1p.$.pl.$.opt."],
+["oti","issāmi",".1p.$.sg.$.fut."],
+["oti","issāma",".1p.$.pl.$.fut."],
+["oti","issaṃ",".1p.$.sg.$.fut."],
+["oti","issāmhe",".1p.$.pl.$.fut."],
+["oti","issāmase",".1p.$.pl.$.fut."],
+["oti","iṃ",".1p.$.sg.$.aor."],
+["oti","aṃ",".1p.$.sg.$.aor."],
+["oti","ṃ",".1p.$.sg.$.aor."],
+["oti","a",".1p.$.sg.$.aor."],
+["oti","ā",".1p.$.sg.$.aor."],
+["oti","imha",".1p.$.pl.$.aor."],
+["oti","imhā",".1p.$.pl.$.aor."],
+["oti","a",".1p.$.sg.$.aor."],
+["oti","imhe",".1p.$.pl.$.aor."],
+["oti","eyyāsi",".2p.$.sg.$.opt."],
+["oti","eyyātha",".2p.$.pl.$.opt."],
+["oti","etho",".2p.$.sg.$.opt."],
+["oti","eyyavho",".2p.$.pl.$.opt."],
+["oti","issasi",".2p.$.sg.$.fut."],
+["oti","issatha",".2p.$.pl.$.fut."],
+["oti","issase",".2p.$.sg.$.fut."],
+["oti","issavhe",".2p.$.pl.$.fut."],
+["oti","i",".2p.$.sg.$.aor."],
+["oti","o",".2p.$.sg.$.aor."],
+["oti","ā",".2p.$.sg.$.aor."],
+["oti","ttha",".2p.$.pl.$.aor."],
+["oti","se",".2p.$.sg.$.aor."],
+["oti","vhaṃ",".2p.$.pl.$.aor."],
+["ati","ittha",".2p.$.pl.$.aor."]
 
-
-
-
-
- );
+];
  
- $union = array(
-array("ssa","ssāpi"),
-array("ssa","ssāti"),
-array("ena","enāti"),
-array("ena","enāpi"),
-array("ṃ","ñca"),
-array("ṃ","nti"),
-array("a","āti"),
-array("ā","āti"),
-array("ī","īti"),
-array("i","īti"),
-array("o","oti"),
-array("u","ūti"),
-array("ū","ūti"),
-array("ā","āpi"),
-array("a","āpi"),
-array("e","epi"),
-array("ī","īpi"),
-array("i","īpi"),
-array("o","opi"),
-array("e","epi"),
-array("ū","upi"),
-array("u","upi"),
-array("ṃ","mpi"),
-array("o","ova"),
-array("e","eva")
- );
+ $union = [
+["ssa","ssāpi"],
+["ssa","ssāti"],
+["ena","enāti"],
+["ena","enāpi"],
+["ṃ","ñca"],
+["ṃ","nti"],
+["a","āti"],
+["ā","āti"],
+["ī","īti"],
+["i","īti"],
+["o","oti"],
+["u","ūti"],
+["ū","ūti"],
+["ā","āpi"],
+["a","āpi"],
+["e","epi"],
+["ī","īpi"],
+["i","īpi"],
+["o","opi"],
+["e","epi"],
+["ū","upi"],
+["u","upi"],
+["ṃ","mpi"],
+["o","ova"],
+["e","eva"]
+];
 ?>

+ 1 - 1
app/public/js/comm.js

@@ -267,7 +267,7 @@ function testCJK(string){
 	U+3131-U+318E,
 	U+FFA1-U+FFDC
 
-	\u0800-\u4e00 (日文)ひらがな平仮名
+	\u3040-\u309f (日文)ひらがな平仮名
 	U+4E00–U+9FBF 汉字; U+3040–U+309F 平假名; U+30A0–U+30FF 片假名
 	*/
 	reg = /[\u4e00-\u9fa5]+/;//cn

+ 13 - 1
app/public/js/notify.js

@@ -1,5 +1,16 @@
 var ntf_msg_list = new Array();
 var ntf_max_msg_line = 2;
+
+var ntf_time
+function removeFirst()
+{
+	ntf_msg_list.shift();
+	if(ntf_msg_list.length>0){
+		ntf_time=setTimeout("removeFirst()",5000);		
+	}
+
+}
+
 function ntf_init(lines = 5, style = "dialog") {
 	ntf_max_msg_line = lines;
 	var divNotify = document.createElement("div");
@@ -17,7 +28,7 @@ function ntf_init(lines = 5, style = "dialog") {
 	divNotify.style.display = "none";
 }
 var time_out_func;
-function ntf_show(msg, timeout = 8) {
+function ntf_show(msg, timeout = 5) {
 	if (ntf_msg_list.length < ntf_max_msg_line) {
 		ntf_msg_list.push(msg);
 	} else {
@@ -44,5 +55,6 @@ function ntf_show(msg, timeout = 8) {
 	}
 }
 function ntf_hide() {
+	removeFirst();
 	document.getElementById("id_pcd_notify").style.display = "none";
 }

+ 170 - 0
app/reader/get_para1.php

@@ -0,0 +1,170 @@
+<?php
+require_once "../public/_pdo.php";
+require_once "../path.php";
+require_once "../redis/function.php";
+require_once "../db/pali_sent.php";
+require_once "../db/pali_sim_sent.php";
+
+$mRedis = redis_connect();
+
+define("_MAX_CHAPTER_LEN_", 20000);
+
+if (isset($_GET["book"])) {
+    $_book = $_GET["book"];
+} else {
+    $_book = 0;
+}
+if (isset($_GET["par"])) {
+    $_para = $_GET["par"];
+} else {
+    $_para = 0;
+}
+
+if (isset($_GET["start"])) {
+    $_start = $_GET["start"];
+}
+if (isset($_GET["end"])) {
+    $_end = $_GET["end"];
+}
+$_view = $_GET["view"];
+
+$output["toc"] = array();
+$output["sentences"] = array();
+$output["head"] = 0;
+
+$output["title"]="";
+$output["subtitle"]="";
+$output["summary"]="";
+$output["content"]="";
+$output["owner"]="";
+$output["username"]=array("username"=>"","nickname"=>"");
+$output["status"]="";
+
+if ($_view == "sent") {
+    $output["content"] = "{{". $_book . "-" . $_para . "-". $_start . "-" . $_end . "}}";
+    echo json_encode($output, JSON_UNESCAPED_UNICODE);
+    exit;
+}
+if ($_view == "simsent") {
+	$mPaliSent = new PaliSentence($mRedis);
+	$mPaliSim = new PaliSimSentence($mRedis);
+	if(!isset($_GET["id"])){
+		$id = $mPaliSent->getId($_book,$_para,$_begin,$_end);
+	}
+	else{
+		$id = $_GET["id"];
+	}
+	{
+		$sent_list[] = $mPaliSent->getInfo($id);
+		$arrList = $mPaliSim->getSimById($id);
+		if($arrList){
+			foreach ($arrList as $key => $value) {
+				# code...
+				$sent_list = $mPaliSent->getInfo($value["id"]);
+				$output["content"] .= "{{". $sent_list["book"] . "-" . $sent_list["paragraph"] . "-". $sent_list["begin"] . "-" . $sent_list["end"] . "}}";
+			}
+			echo json_encode($output, JSON_UNESCAPED_UNICODE);
+		}
+	}
+	exit;
+}
+
+$paraBegin=0;
+$paraEnd=0;
+
+PDO_Connect(_FILE_DB_PALITEXT_);
+$query = "SELECT level , parent, chapter_len,chapter_strlen FROM 'pali_text'  WHERE book= ? AND paragraph= ?";
+$FetchParInfo = PDO_FetchRow($query, array($_book, $_para));
+if ($FetchParInfo) {
+    switch ($_view) {
+        case 'chapter':
+            # code...
+
+			if($FetchParInfo["level"]>0 && $FetchParInfo["level"]<8){
+				//是标题
+				$paraBegin = $_para;
+            	$paraEnd = $_para + $FetchParInfo["chapter_len"] - 1;
+			}
+            else{
+				#不是标题,加载所在段落
+				$paraBegin = $FetchParInfo["parent"];
+				$query = "SELECT  level , parent, chapter_len,chapter_strlen FROM 'pali_text'  WHERE book= ? AND paragraph= ?";
+				$FetchParInfo = PDO_FetchRow($query, array($_book, $paraBegin));
+            	$paraEnd = $paraBegin + $FetchParInfo["chapter_len"] - 1;
+			}
+            break;
+        case 'para':
+            $paraBegin = $_para;
+            $paraEnd = $_para;
+            # code...
+            break;
+        default:
+            # code...
+            $paraBegin = $_para;
+            $paraEnd = $_para;
+            break;
+    }
+
+    //获取下级目录
+    $query = "SELECT level,paragraph,toc FROM 'pali_text'  WHERE book= ? AND (paragraph BETWEEN ?AND ? ) AND level < 8 ";
+    $toc = PDO_FetchAll($query, array($_book, $paraBegin, $paraEnd));
+	if(count($toc)>0){
+		$output["title"] = $toc[0]["toc"];
+	}
+	if(count($toc)>1){
+		foreach ($toc as $key => $value) {
+			# code...
+			$output["content"] .= "- {$value["toc"]}\n";
+		}		
+	}
+
+
+    if ($FetchParInfo["chapter_strlen"] > _MAX_CHAPTER_LEN_ && $_view === "chapter" && count($output["toc"]) > 1) {
+        #文档过大,只加载目录
+		if ($toc[1]["paragraph"] - $_para > 1) {
+            # 中间有间隔
+            $paraBegin = $_para;
+            $paraEnd = $toc[1]["paragraph"] - 1;
+            $output["head"] = 1;
+        } else {
+            #中间无间隔
+            echo json_encode($output, JSON_UNESCAPED_UNICODE);
+            exit;
+        }
+    }
+
+    PDO_Connect(_FILE_DB_PALI_SENTENCE_);
+
+    $query = "SELECT book,paragraph,begin, end FROM 'pali_sent' WHERE book= ? AND (paragraph BETWEEN ? AND ? ) ";
+    $sent_list = PDO_FetchAll($query, array($_book, $paraBegin, $paraEnd));
+	$iCurrPara=0;
+	$output["sent_list"] = $sent_list;
+	foreach ($sent_list as $key => $value) {
+		# code...
+		if($value["paragraph"]!==$iCurrPara){
+			$output["content"] .= "\n\n";
+			$iCurrPara = $value["paragraph"];
+
+			if($_view=="chapter" && $paraBegin != $_para){
+				if($_para==$value["paragraph"]){
+					$output["content"] .= "<div id='para_focus' class='focus'>\n\n";
+				}
+			}
+			if($_view=="chapter" && $paraBegin!=$_para){
+				if($_para==$value["paragraph"]-1){
+					$output["content"] .= "\n\n</div>";
+				}
+			}
+			$output["content"] .= "<div class='page_number' page='{$iCurrPara}'>{$iCurrPara}</div>\n\n";			
+		}
+
+		$output["content"] .= "{{". $value["book"] . "-" . $value["paragraph"] . "-". $value["begin"] . "-" . $value["end"] . "}}";
+
+	}
+    
+    echo json_encode($output, JSON_UNESCAPED_UNICODE);
+
+} else {
+    echo json_encode($output, JSON_UNESCAPED_UNICODE);
+
+}

+ 1 - 0
app/studio/dict_find_one.php

@@ -44,6 +44,7 @@ if (isset($_GET["debug"])) {
 }
 
 if (mb_strlen($in_word) == 0) {
+	echo json_encode(array(), JSON_UNESCAPED_UNICODE);
     exit;
 }
 

+ 2 - 1
app/studio/editor.php

@@ -69,7 +69,8 @@ else{$currDevice="computer";}
 	<script language="javascript" src="../public/js/comm.js"></script>
 	<script language="javascript" src="../public/js/localforage.min.js"></script>
 	<script language="javascript" src="../public/script/my.js"></script>
-	<script src="../public/js/mermaid.min.js"></script>
+	<script src="../../node_modules/mermaid/dist/mermaid.min.js"></script>
+
 	
 	<script language="javascript" src="module/editor/language/default.js"></script>	
 

+ 3 - 2
app/studio/index_head.php

@@ -67,8 +67,9 @@ require_once '../public/load_lang.php';
 	<script language="javascript" src="../guide/guide.js"></script>
 	<link type="text/css" rel="stylesheet" href="../guide/guide.css"/>
 
-	<script src="../public/js/marked.js"></script>
-	<script src="../public/js/mermaid.min.js"></script>
+	<script src="../../node_modules/marked/marked.min.js"></script>
+	<script src="../../node_modules/mermaid/dist/mermaid.min.js"></script>
+
 
 	<script src="../widget/iframe_modal_win.js"></script>
 	<link type="text/css" rel="stylesheet" href="../widget/iframe_modal_win.css"/>

+ 35 - 20
app/studio/js/editor.js

@@ -4064,7 +4064,7 @@ function editor_parse_doc_xml(xmlText) {
 	updataToc();
 	//渲染数据块
 	blockShow(0);
-	refreshResource();
+	//refreshResource();
 	editro_layout_loadStyle();
 }
 
@@ -4169,23 +4169,35 @@ function on_word_mouse_enter() {
 						url: "./dict_find_one.php",
 						dataType: "json",
 						data: "word=" + paliword,
-						success: function (response) {
-							inline_dict_parse(response);
-							render_word_menu(_curr_mouse_enter_wordid);
-						},
-						error: function (xhr, ajaxOptions, thrownError) {
-							ntf_show(xhr.status + thrownError);
-						},
+					}).done(function (data) {
+						inline_dict_parse(data);
+						render_word_menu(_curr_mouse_enter_wordid);
+					}).fail(function(jqXHR, textStatus, errorThrown){
+						ntf_show(textStatus);
+						switch (textStatus) {
+							case "timeout":
+								break;
+							case "error":
+								switch (jqXHR.status) {
+									case 404:
+										break;
+									case 500:
+										break;				
+									default:
+										break;
+								}
+								break;
+							case "abort":
+								break;
+							case "parsererror":			
+								console.log("parsererror",jqXHR.responseText);
+								break;
+							default:
+								break;
+						}
+						
 					});
-					/*
-					$.get(
-						"dict_find_one.php",
-						{
-							word: paliword,
-						},
-						on_dict_lookup
-					);
-*/
+
 				}
 			}
 		}
@@ -4730,6 +4742,7 @@ function render_word_menu_parent(id) {
 	if (!str_in_array(word_real, sWord)) {
 		sWord.push(word_real);
 	}
+	output += "<a onclick=\"ParentLookup()\">🔍" +gLocal.gui.dict +"</a>";
 
 	for (var iWord in sWord) {
 		var pali = sWord[iWord];
@@ -4743,7 +4756,9 @@ function render_word_menu_parent(id) {
 	}
 	return output;
 }
-
+function ParentLookup(){
+	window.open("../dict/index.php?builtin=true&theme=dark&key="+$("#id_text_parent").val(),target="dict");
+}
 function show_word_menu_partmean(id) {
 	var word_partmean_div = document.getElementById("partmean_" + id);
 	if (word_partmean_div) {
@@ -4832,8 +4847,8 @@ function editor_project_updataProjectInfo() {
 	strInfo += gLocal.gui.innerdict + ":" + iInlineDictCount + "<br />";
 	strInfo += gLocal.gui.vocabulary + CountVocabulary() + "<br />";
 
-	document.getElementById("id_editor_project_infomation").innerHTML = strInfo;
-	document.getElementById("doc_info_title").value = getNodeText(gXmlBookDataHead, "doc_title");
+	//document.getElementById("id_editor_project_infomation").innerHTML = strInfo;
+	//document.getElementById("doc_info_title").value = getNodeText(gXmlBookDataHead, "doc_title");
 	document.getElementById("editor_doc_title").innerHTML = getNodeText(gXmlBookDataHead, "doc_title");
 	document.getElementById("file_title").innerHTML = getNodeText(gXmlBookDataHead, "doc_title");
 }

+ 0 - 255
app/studio/plugin/system_project/gui.html

@@ -1,261 +1,6 @@
 <div class="menu" id="menu_project">
 	<h1><?php echo $module_gui_str['editor_project']['1001']; ?></h1>
 	<div id="project_resouce_manage" class="sub_li_menu">
-		<!--
-				<div id="project_detail" class="submenu">
-					<p class="submenu_title" onclick="submenu_show_detail(this)"><?php echo $module_gui_str['editor_project']['1010'];?>
-						<svg class="icon">
-    							<use xlink:href="svg/icon.svg#ic_add"></use>
-						</svg>
-					</p>
-					<div class="submenu_details">
-
-					</div>
-				</div>
-				-->
-		<div id="project_resouce" class="submenu">
-			<p class="submenu_title" onclick="submenu_show_detail(this)">
-				<?php echo $module_gui_str['editor_project']['1004'];?>
-				<svg class="icon">
-					<use xlink:href="svg/icon.svg#ic_add"></use>
-				</svg></p>
-			<div class="submenu_details">
-				<div id="id_editor_project_res_list">
-					<div>
-						<a onclick="project_res_type_click('doc')">Document</a>
-					</div>
-					<ul>
-						<li>
-							<!--<button type="button" onclick="com_show_sub_tree(this)" ><span>-</span></button>-->
-							<input type="checkbox" checked />
-							<a onclick="project_res_type_click('wbw')"><?php echo $_local->gui->word_by_word;?></a>
-							<ul class="res_list" id="id_editor_project_res_wbw_inner">
-							</ul>
-						</li>
-						<li>
-							<input type="checkbox" checked />
-							<a onclick="project_res_type_click('tran')"><?php echo $_local->gui->translate;?></a>
-							<ul class="res_list" id="id_editor_project_res_translate_inner">
-							</ul>
-						</li>
-						<li>
-							<input type="checkbox" checked />
-							<a onclick="project_res_type_click('note')"><?php echo $_local->gui->note;?></a>
-							<ul class="res_list" id="id_editor_project_res_note_inner">
-							</ul>
-						</li>
-						<li>
-							<input type="checkbox" />
-							<?php echo $module_gui_str['editor_project']['1008'];?>
-							<ul>
-							</ul>
-						</li>
-						<li>
-							<input type="checkbox" />
-							<?php echo $module_gui_str['editor_project']['1009'];?>
-							<ul class="res_list" id="id_editor_project_res_heading_inner">
-							</ul>
-						</li>
-						<li>
-							<input type="checkbox" />
-							<?php echo $module_gui_str['editor_project']['1037'];?>
-							<ul class="res_list" id="id_editor_project_res_ild_inner">
-							</ul>
-						</li>
-
-					</ul>
-				</div>
-				<hr>
-				<div id="project_res_details">
-					<!--文档信息面板-->
-					<div id="id_editor_project_res_docinfo" style="display:none;">
-						<div class="project_res_info_head">
-							文档信息
-						</div>
-						<div id="id_editor_project_doc_info">
-							<span><?php echo $module_gui_str['editor_project']['1036'];?></span><input type="input"
-								id="doc_info_title" onkeydown="match_key(this)" onkeyup="unicode_key(this)"
-								onchange="doc_info_title_change(this)" />
-						</div>
-
-						<div id="id_editor_project_infomation">
-						</div>
-					</div>
-
-					<!--逐词译资源新建 导出面板-->
-					<div id="id_editor_project_res_wbw" class="editor_project_res_info" style="display:none;">
-						<div class="project_res_info_head">
-							新建逐词解析
-						</div>
-						<div>
-							<div class="project_res_add_author">
-								<span style="width: 10em;"><?php echo $_local->gui->language_select;?></span>
-								<select id="id_project_wbw_new_language">
-									<option value="en">English</option>
-									<option value="sc">简体中文</option>
-									<option value="tc">正體中文</option>
-								</select>
-							</div>
-							<div class="project_res_add_author">
-								<span style="width: 10em;"><?php echo $_local->gui->author;?></span>
-								<input id="id_project_wbw_new_author" type="text" value="<?php echo $nickname; ?>" />
-							</div>
-							<div class="project_res_add_author">
-								<span style="width: 10em;"><?php echo $_local->gui->editor;?></span>
-								<input id="id_project_wbw_new_editor" type="text" value="<?php echo $nickname; ?>" />
-							</div>
-							<div class="project_res_add_author">
-								<span style="width: 10em;"><?php echo $_local->gui->revision;?></span>
-								<input id="id_project_wbw_new_revision" type="text" value="" />
-							</div>
-						</div>
-						<button type="button"
-							onclick="editor_project_wbw_new()"><?php echo $_local->gui->new;?></button>
-						<div class="project_res_info_head">
-							导出逐词解析
-						</div>
-						<select id="id_wbw_export_list">
-						</select>
-						<textarea id="id_project_wbw_export_text"></textarea>
-						<button type="button"
-							onclick="editor_project_wbw_export()"><?php echo $_local->gui->export;?></button>
-					</div>
-
-					<!--译文 新建 导出-->
-					<div id="id_editor_project_res_translate" class="editor_project_res_info" style="display:none;">
-						<div class="project_res_info_head">
-							<?php echo $_local->gui->new." ".$_local->gui->translation;?>
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->language_select;?></span>
-							<select id="id_project_translate_new_language">
-								<option value="en">English</option>
-								<option value="zh-cn">简体中文</option>
-								<option value="zh-tw">正體中文</option>
-							</select>
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->author;?></span>
-							<input id="id_project_translate_new_author" type="text" value="<?php echo $nickname; ?>" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->editor;?></span>
-							<input id="id_project_translate_new_editor" type="text" value="<?php echo $nickname; ?>" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;">tag</span>
-							<input id="id_project_translate_new_tag" type="text" value="_trans_" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->base_on;?></span>
-							<select id="id_file_translate_new_type">
-								<option value="sentence"><?php echo $_local->gui->sentence;?></option>
-								<option value="par"><?php echo $_local->gui->paragraph;?></option>
-							</select>
-						</div>
-						<div id="project_new_tran_album"></div>
-
-						<button type="button"
-							onclick="editor_project_translate_addnew(false)"><?php echo $_local->gui->new;?></button>
-
-
-						<div class="project_res_info_head">
-							<?php echo $_local->gui->export." ".$_local->gui->translation;?>
-						</div>
-						<textarea id="id_project_translate_import_text"></textarea>
-						<button type="button"
-							onclick="editor_project_translate_addnew(true)"><?php echo $_local->gui->import;?></button>
-						<div class="project_res_info_head">
-							<?php echo $_local->gui->import." ".$_local->gui->translation;?>
-						</div>
-						<select id="id_translate_export_list">
-						</select>
-						<textarea id="id_project_translate_export_text"></textarea>
-						<button type="button"
-							onclick="editor_project_translate_export()"><?php echo $_local->gui->export;?></button>
-					</div>
-					<!--注解新建 导出面板-->
-					<div id="id_editor_project_res_note" class="editor_project_res_info" style="display:none;">
-						<div class="project_res_info_head">
-							<?php echo $_local->gui->note;?>
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->language_select;?></span>
-							<select id="id_project_note_new_language">
-								<option value="en">English</option>
-								<option value="sc">简体中文</option>
-								<option value="tc">正體中文</option>
-							</select>
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->author;?></span>
-							<input id="id_project_note_new_author" type="text" value="<?php echo $nickname; ?>" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->editor;?></span>
-							<input id="id_project_note_new_editor" type="text" value="<?php echo $nickname; ?>" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->revision;?></span>
-							<input id="id_project_note_new_revision" type="text" value="" />
-						</div>
-
-						<button type="button"
-							onclick="editor_project_note_addnew(false)"><?php echo $_local->gui->new;?></button>
-						<hr />
-						<textarea id="id_project_note_import_text"></textarea>
-						<button type="button"
-							onclick="editor_project_note_addnew(true)"><?php echo $_local->gui->import;?></button>
-						<hr />
-						<select id="id_note_export_list">
-						</select>
-						<textarea id="id_project_note_export_text"></textarea>
-						<button type="button"
-							onclick="editor_project_note_export()"><?php echo $_local->gui->export;?></button>
-					</div>
-					<!--注解新建 导出面板 结束-->
-					<div id="project_res_album_info" style="display:none;">
-						<div id="project_res_info_title" class="project_res_info_head">
-							title...
-						</div>
-						<div class="project_res_album_toolbar">
-							<button type="button"
-								onclick="editor_project_res_info_modify()"><?php echo $_local->gui->modify;?></button>
-							<button type="button"
-								onclick="editor_project_res_remove()"><?php echo $_local->gui->remove;?></button>
-							<button type="button" onclick="editor_project_res_publish()">Publish</button>
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->language_select;?></span>
-							<select id="id_project_res_info_language">
-								<option value="pali">Pali</option>
-								<option value="en">English</option>
-								<option value="sc">简体中文</option>
-								<option value="tc">正體中文</option>
-							</select>
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->author;?></span>
-							<input id="id_project_res_info_author" type="text" value="" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->editor;?></span>
-							<input id="id_project_res_info_editor" type="text" value="" />
-						</div>
-						<div class="project_res_add_author">
-							<span style="width: 10em;"><?php echo $_local->gui->edition;?></span>
-							<input id="id_project_res_info_edition" type="text" value="" />
-						</div>
-
-						<div id="project_album_id">
-
-						</div>
-					</div>
-
-				</div>
-
-			</div>
-		</div>
 
 		<div id="project_tools" class="submenu">
 			<p class="submenu_title" onclick="submenu_show_detail(this)">